Skip to content

Bump objectboxVersion from 3.8.0 to 4.2.0#268

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/objectboxVersion-4.2.0
Closed

Bump objectboxVersion from 3.8.0 to 4.2.0#268
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/objectboxVersion-4.2.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 10, 2025

Bumps objectboxVersion from 3.8.0 to 4.2.0.
Updates io.objectbox:objectbox-android-objectbrowser from 3.8.0 to 4.2.0

Release notes

Sourced from io.objectbox:objectbox-android-objectbrowser's releases.

V4.2.0

  • Add new query conditions equalKeyValue, greaterKeyValue, lessKeyValue, lessOrEqualKeyValue, and greaterOrEqualKeyValue that are helpful to write complex queries for string maps. These methods support String, long and double data types for the values in the string map.
  • Deprecate the containsKeyValue condition, use the new equalKeyValue condition instead.
  • Android: to build, at least Android Plugin 8.1.1 and Gradle 8.2.1 are required.

V4.1.0

  • Vector Search: add new VectorDistanceType.GEO distance type to perform vector searches on geographical coordinates. This is particularly useful for location-based applications.
  • Android: require Android 5.0 (API level 21) or higher.
  • Note on Windows JVM: We've seen crashes on Windows when creating a BoxStore on some JVM versions. If this should happen to you, make sure to update your JVM to the latest patch release (8.0.432+6, 11.0.25+9, 17.0.13+11 and 21.0.5+11-LTS are known to work).

Sync

  • Add JWT authentication
  • Sync clients can now send multiple credentials for login

V4.0.3

  • Make closing the Store more robust. In addition to transactions, it also waits for ongoing queries. This is just an additional safety net. Your apps should still make sure to finish all Store operations, like queries, before closing it.
  • Flex properties support null map and list values.
  • Some minor vector search performance improvements.

Sync

  • Fix a serious regression, please update as soon as possible.
  • Add new options, notably for cluster configuration, when building SyncServer. Improve documentation. Deprecate the old peer options in favor of the new cluster options.
  • Add SyncHybrid, a combination of a Sync client and a Sync server. It can be used in local cluster setups, in which a "hybrid" functions as a client & cluster peer (server).

V4.0.2

  • Add convenience oneOf and notOneOf conditions that accept Date to avoid manual conversion using getTime().
  • When BoxStore is closing, briefly wait on active transactions to finish.
  • Guard against crashes when BoxStore was closed, but database operations do still occur concurrently (transactions are still active).

V4.0.1

V4.0.0 - Vector Search

ObjectBox now supports Vector Search to enable efficient similarity searches.

This is particularly useful for AI/ML/RAG applications, e.g. image, audio, or text similarity. Other use cases include semantic search or recommendation engines.

... (truncated)

Changelog

Sourced from io.objectbox:objectbox-android-objectbrowser's changelog.

4.2.0 - 2025-03-04

  • Add new query conditions equalKeyValue, greaterKeyValue, lessKeyValue, lessOrEqualKeyValue, and greaterOrEqualKeyValue that are helpful to write complex queries for string maps. These methods support String, long and double data types for the values in the string map.
  • Deprecate the containsKeyValue condition, use the new equalKeyValue condition instead.
  • Android: to build, at least Android Plugin 8.1.1 and Gradle 8.2.1 are required.

4.1.0 - 2025-01-30

  • Vector Search: add new VectorDistanceType.GEO distance type to perform vector searches on geographical coordinates. This is particularly useful for location-based applications.
  • Android: require Android 5.0 (API level 21) or higher.
  • Note on Windows JVM: We've seen crashes on Windows when creating a BoxStore on some JVM versions. If this should happen to you, make sure to update your JVM to the latest patch release (8.0.432+6, 11.0.25+9, 17.0.13+11 and 21.0.5+11-LTS are known to work).

Sync

  • Add JWT authentication
  • Sync clients can now send multiple credentials for login

4.0.3 - 2024-10-15

  • Make closing the Store more robust. In addition to transactions, it also waits for ongoing queries. This is just an additional safety net. Your apps should still make sure to finish all Store operations, like queries, before closing it.
  • Flex properties support null map and list values.
  • Some minor vector search performance improvements.

Sync

  • Fix a serious regression, please update as soon as possible.
  • Add new options, notably for cluster configuration, when building SyncServer. Improve documentation. Deprecate the old peer options in favor of the new cluster options.
  • Add SyncHybrid, a combination of a Sync client and a Sync server. It can be used in local cluster setups, in which a "hybrid" functions as a client & cluster peer (server).

4.0.2 - 2024-08-20

  • Add convenience oneOf and notOneOf conditions that accept Date to avoid manual conversion using getTime().
  • When BoxStore is closing, briefly wait on active transactions to finish.
  • Guard against crashes when BoxStore was closed, but database operations do still occur concurrently (transactions are still active).

4.0.1 - 2024-06-03

... (truncated)

Commits
  • 6f844c4 Changelog: note min. Android Plugin 8.1.1 and Gradle 8.2.1 requirement
  • 774a27a Prepare Java release 4.2.0
  • 49f17d8 Merge branch '239-externaltype-annotation' into 'dev'
  • 6b8ba61 External type: also support, smoke test for standalone ToMany objectbox-java#239
  • b4eee52 ModelBuilder: make relation buildable, extract common builder code
  • 04f5d38 External type: add annotation, model API and smoke test objectbox-java#239
  • b568219 External type: update FlatBuffers generated code objectbox-java#239
  • b5bd9e4 Merge branch '252-jwt-and-multi-credentials-fixes' into 'dev'
  • eeb7fe9 SyncServer: require new server-specific auth options for JWT auth #252
  • 142107e SyncServer: shorten JWT auth builder options prefix #252
  • Additional commits viewable in compare view

Updates io.objectbox:objectbox-android from 3.8.0 to 4.2.0

Release notes

Sourced from io.objectbox:objectbox-android's releases.

V4.2.0

  • Add new query conditions equalKeyValue, greaterKeyValue, lessKeyValue, lessOrEqualKeyValue, and greaterOrEqualKeyValue that are helpful to write complex queries for string maps. These methods support String, long and double data types for the values in the string map.
  • Deprecate the containsKeyValue condition, use the new equalKeyValue condition instead.
  • Android: to build, at least Android Plugin 8.1.1 and Gradle 8.2.1 are required.

V4.1.0

  • Vector Search: add new VectorDistanceType.GEO distance type to perform vector searches on geographical coordinates. This is particularly useful for location-based applications.
  • Android: require Android 5.0 (API level 21) or higher.
  • Note on Windows JVM: We've seen crashes on Windows when creating a BoxStore on some JVM versions. If this should happen to you, make sure to update your JVM to the latest patch release (8.0.432+6, 11.0.25+9, 17.0.13+11 and 21.0.5+11-LTS are known to work).

Sync

  • Add JWT authentication
  • Sync clients can now send multiple credentials for login

V4.0.3

  • Make closing the Store more robust. In addition to transactions, it also waits for ongoing queries. This is just an additional safety net. Your apps should still make sure to finish all Store operations, like queries, before closing it.
  • Flex properties support null map and list values.
  • Some minor vector search performance improvements.

Sync

  • Fix a serious regression, please update as soon as possible.
  • Add new options, notably for cluster configuration, when building SyncServer. Improve documentation. Deprecate the old peer options in favor of the new cluster options.
  • Add SyncHybrid, a combination of a Sync client and a Sync server. It can be used in local cluster setups, in which a "hybrid" functions as a client & cluster peer (server).

V4.0.2

  • Add convenience oneOf and notOneOf conditions that accept Date to avoid manual conversion using getTime().
  • When BoxStore is closing, briefly wait on active transactions to finish.
  • Guard against crashes when BoxStore was closed, but database operations do still occur concurrently (transactions are still active).

V4.0.1

V4.0.0 - Vector Search

ObjectBox now supports Vector Search to enable efficient similarity searches.

This is particularly useful for AI/ML/RAG applications, e.g. image, audio, or text similarity. Other use cases include semantic search or recommendation engines.

... (truncated)

Changelog

Sourced from io.objectbox:objectbox-android's changelog.

4.2.0 - 2025-03-04

  • Add new query conditions equalKeyValue, greaterKeyValue, lessKeyValue, lessOrEqualKeyValue, and greaterOrEqualKeyValue that are helpful to write complex queries for string maps. These methods support String, long and double data types for the values in the string map.
  • Deprecate the containsKeyValue condition, use the new equalKeyValue condition instead.
  • Android: to build, at least Android Plugin 8.1.1 and Gradle 8.2.1 are required.

4.1.0 - 2025-01-30

  • Vector Search: add new VectorDistanceType.GEO distance type to perform vector searches on geographical coordinates. This is particularly useful for location-based applications.
  • Android: require Android 5.0 (API level 21) or higher.
  • Note on Windows JVM: We've seen crashes on Windows when creating a BoxStore on some JVM versions. If this should happen to you, make sure to update your JVM to the latest patch release (8.0.432+6, 11.0.25+9, 17.0.13+11 and 21.0.5+11-LTS are known to work).

Sync

  • Add JWT authentication
  • Sync clients can now send multiple credentials for login

4.0.3 - 2024-10-15

  • Make closing the Store more robust. In addition to transactions, it also waits for ongoing queries. This is just an additional safety net. Your apps should still make sure to finish all Store operations, like queries, before closing it.
  • Flex properties support null map and list values.
  • Some minor vector search performance improvements.

Sync

  • Fix a serious regression, please update as soon as possible.
  • Add new options, notably for cluster configuration, when building SyncServer. Improve documentation. Deprecate the old peer options in favor of the new cluster options.
  • Add SyncHybrid, a combination of a Sync client and a Sync server. It can be used in local cluster setups, in which a "hybrid" functions as a client & cluster peer (server).

4.0.2 - 2024-08-20

  • Add convenience oneOf and notOneOf conditions that accept Date to avoid manual conversion using getTime().
  • When BoxStore is closing, briefly wait on active transactions to finish.
  • Guard against crashes when BoxStore was closed, but database operations do still occur concurrently (transactions are still active).

4.0.1 - 2024-06-03

... (truncated)

Commits
  • 6f844c4 Changelog: note min. Android Plugin 8.1.1 and Gradle 8.2.1 requirement
  • 774a27a Prepare Java release 4.2.0
  • 49f17d8 Merge branch '239-externaltype-annotation' into 'dev'
  • 6b8ba61 External type: also support, smoke test for standalone ToMany objectbox-java#239
  • b4eee52 ModelBuilder: make relation buildable, extract common builder code
  • 04f5d38 External type: add annotation, model API and smoke test objectbox-java#239
  • b568219 External type: update FlatBuffers generated code objectbox-java#239
  • b5bd9e4 Merge branch '252-jwt-and-multi-credentials-fixes' into 'dev'
  • eeb7fe9 SyncServer: require new server-specific auth options for JWT auth #252
  • 142107e SyncServer: shorten JWT auth builder options prefix #252
  • Additional commits viewable in compare view

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps `objectboxVersion` from 3.8.0 to 4.2.0.

Updates `io.objectbox:objectbox-android-objectbrowser` from 3.8.0 to 4.2.0
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Changelog](https://github.com/objectbox/objectbox-java/blob/main/CHANGELOG.md)
- [Commits](objectbox/objectbox-java@V3.8.0...V4.2.0)

Updates `io.objectbox:objectbox-android` from 3.8.0 to 4.2.0
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Changelog](https://github.com/objectbox/objectbox-java/blob/main/CHANGELOG.md)
- [Commits](objectbox/objectbox-java@V3.8.0...V4.2.0)

---
updated-dependencies:
- dependency-name: io.objectbox:objectbox-android-objectbrowser
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: io.objectbox:objectbox-android
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Mar 10, 2025
@github-actions github-actions Bot enabled auto-merge March 10, 2025 22:00
@github-actions
Copy link
Copy Markdown
Contributor

I'm not approving this PR because it includes a major update of a dependency used in production

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 19, 2025

Superseded by #285.

@dependabot dependabot Bot closed this May 19, 2025
auto-merge was automatically disabled May 19, 2025 21:05

Pull request was closed

@dependabot dependabot Bot deleted the dependabot/gradle/objectboxVersion-4.2.0 branch May 19, 2025 21:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants