Skip to content

Bump objectboxVersion from 3.8.0 to 4.3.0#285

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

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 19, 2025

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

Release notes

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

V4.3.0

  • Basic support for boolean array properties (boolean[] in Java or BooleanArray in Kotlin).
  • The Windows database library now statically links the MSVC runtime to avoid crashes in incompatible msvcp140.dll shipped with some JDKs.
  • External property types (via MongoDB connector):
    • add JSON_TO_NATIVE to support sub (embedded/nested) documents/arrays in MongoDB
    • support ID mapping to UUIDs (v4 and v7)
  • Admin: add class and dependency diagrams to the schema page (view and download).
  • Admin: improved data view for large vectors by displaying only the first elements and the full vector in a dialog.
  • Admin: detects images stored as bytes and shows them as such (PNG, GIF, JPEG, SVG, WEBP).

Sync

  • Add "Log Events" for important server events, which can be viewed on a new Admin page.
  • Detect and ignore changes for objects that were put but were unchanged.
  • The limit for message size was raised to 32 MB.
  • Transactions above the message size limit now already fail on the client (to better enforce the limit).

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.0 and Gradle 8.0 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

... (truncated)

Changelog

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

4.3.0 - 2025-05-13

  • Basic support for boolean array properties (boolean[] in Java or BooleanArray in Kotlin).
  • The Windows database library now statically links the MSVC runtime to avoid crashes in incompatible msvcp140.dll shipped with some JDKs.
  • External property types (via MongoDB connector):
    • add JSON_TO_NATIVE to support sub (embedded/nested) documents/arrays in MongoDB
    • support ID mapping to UUIDs (v4 and v7)
  • Admin: add class and dependency diagrams to the schema page (view and download).
  • Admin: improved data view for large vectors by displaying only the first elements and the full vector in a dialog.
  • Admin: detects images stored as bytes and shows them as such (PNG, GIF, JPEG, SVG, WEBP).

Sync

  • Add "Log Events" for important server events, which can be viewed on a new Admin page.
  • Detect and ignore changes for objects that were put but were unchanged.
  • The limit for message size was raised to 32 MB.
  • Transactions above the message size limit now already fail on the client (to better enforce the limit).

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

... (truncated)

Commits
  • 1ae98f6 Prepare Java release 4.3.0
  • 1ffb9a3 Merge branch '268-new-externalpropertytype-jsontonative' into 'dev'
  • 49b3b2b JsonToNative: adapt TestEntity changes from integ. tests #268
  • 458e687 JsonToNative: add ExternalPropertyType enum #268
  • f447cb4 Add JsonToNative to ExternalPropertyType #268
  • a304b8c BoxStoreTest: ignore validated pages changes if entity size changes
  • 0c7c3f8 BoxTest: move put and get tests together for easier updating
  • a9483cb TestEntity: use common getter style, fix nullable for setExternalId
  • d802964 BoxStore: increase VERSION to 4.3.0-2025-05-12
  • 0d69ed8 SubscriptionBuilder: simplify and expand on how observer() works
  • Additional commits viewable in compare view

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

Release notes

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

V4.3.0

  • Basic support for boolean array properties (boolean[] in Java or BooleanArray in Kotlin).
  • The Windows database library now statically links the MSVC runtime to avoid crashes in incompatible msvcp140.dll shipped with some JDKs.
  • External property types (via MongoDB connector):
    • add JSON_TO_NATIVE to support sub (embedded/nested) documents/arrays in MongoDB
    • support ID mapping to UUIDs (v4 and v7)
  • Admin: add class and dependency diagrams to the schema page (view and download).
  • Admin: improved data view for large vectors by displaying only the first elements and the full vector in a dialog.
  • Admin: detects images stored as bytes and shows them as such (PNG, GIF, JPEG, SVG, WEBP).

Sync

  • Add "Log Events" for important server events, which can be viewed on a new Admin page.
  • Detect and ignore changes for objects that were put but were unchanged.
  • The limit for message size was raised to 32 MB.
  • Transactions above the message size limit now already fail on the client (to better enforce the limit).

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.0 and Gradle 8.0 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

... (truncated)

Changelog

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

4.3.0 - 2025-05-13

  • Basic support for boolean array properties (boolean[] in Java or BooleanArray in Kotlin).
  • The Windows database library now statically links the MSVC runtime to avoid crashes in incompatible msvcp140.dll shipped with some JDKs.
  • External property types (via MongoDB connector):
    • add JSON_TO_NATIVE to support sub (embedded/nested) documents/arrays in MongoDB
    • support ID mapping to UUIDs (v4 and v7)
  • Admin: add class and dependency diagrams to the schema page (view and download).
  • Admin: improved data view for large vectors by displaying only the first elements and the full vector in a dialog.
  • Admin: detects images stored as bytes and shows them as such (PNG, GIF, JPEG, SVG, WEBP).

Sync

  • Add "Log Events" for important server events, which can be viewed on a new Admin page.
  • Detect and ignore changes for objects that were put but were unchanged.
  • The limit for message size was raised to 32 MB.
  • Transactions above the message size limit now already fail on the client (to better enforce the limit).

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

... (truncated)

Commits
  • 1ae98f6 Prepare Java release 4.3.0
  • 1ffb9a3 Merge branch '268-new-externalpropertytype-jsontonative' into 'dev'
  • 49b3b2b JsonToNative: adapt TestEntity changes from integ. tests #268
  • 458e687 JsonToNative: add ExternalPropertyType enum #268
  • f447cb4 Add JsonToNative to ExternalPropertyType #268
  • a304b8c BoxStoreTest: ignore validated pages changes if entity size changes
  • 0c7c3f8 BoxTest: move put and get tests together for easier updating
  • a9483cb TestEntity: use common getter style, fix nullable for setExternalId
  • d802964 BoxStore: increase VERSION to 4.3.0-2025-05-12
  • 0d69ed8 SubscriptionBuilder: simplify and expand on how observer() works
  • 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.3.0.

Updates `io.objectbox:objectbox-android-objectbrowser` from 3.8.0 to 4.3.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.3.0)

Updates `io.objectbox:objectbox-android` from 3.8.0 to 4.3.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.3.0)

---
updated-dependencies:
- dependency-name: io.objectbox:objectbox-android-objectbrowser
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: io.objectbox:objectbox-android
  dependency-version: 4.3.0
  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 May 19, 2025
@github-actions github-actions Bot enabled auto-merge May 19, 2025 21:05
@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 Aug 19, 2025

Superseded by #315.

@dependabot dependabot Bot closed this Aug 19, 2025
auto-merge was automatically disabled August 19, 2025 15:12

Pull request was closed

@dependabot dependabot Bot deleted the dependabot/gradle/objectboxVersion-4.3.0 branch August 19, 2025 15:12
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