Skip to content

Bump objectboxVersion from 3.8.0 to 4.1.0#252

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

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 3, 2025

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

Release notes

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

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.

Create a Vector (HNSW) index for a floating point vector property. For example, a City with a location vector:

@Entity
public class City {
</tr></table> 

... (truncated)

Changelog

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

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

4.0.0 - Vector Search - 2024-05-16

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.

Create a Vector (HNSW) index for a floating point vector property. For example, a City with a location vector:

... (truncated)

Commits
  • a980f70 Prepare release 4.1.0
  • 5748abe Merge branch '252-sync-client-add-new-jwt-and-multiple-credentials' into dev
  • 2729b0b Add missing obxAdminUser credentials, minor cleanup objectbox-java#252
  • ffbc9c6 sync: add methods to initialize SyncBuilder with multiple auth credentials #252
  • 4926ccf SyncServerImpl: isRunning() should not throw if closed objectbox-java#252
  • 6c3dca7 sync: allow adding multiple credentials for auth objectbox-java#252
  • 621c6a9 BoxStore: increase VERSION to 4.1.0-2025-01-28
  • 1cebcfd Tests: make contains_stringObjectMap use only string values
  • 2f984c5 Tests: ignore broken contains_stringObjectMap due to API changes objectbox#1099
  • 308210d Merge branch '246-add-geo-vector-distance-type' into 'dev'
  • Additional commits viewable in compare view

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

Release notes

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

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.

Create a Vector (HNSW) index for a floating point vector property. For example, a City with a location vector:

@Entity
public class City {
</tr></table> 

... (truncated)

Changelog

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

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

4.0.0 - Vector Search - 2024-05-16

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.

Create a Vector (HNSW) index for a floating point vector property. For example, a City with a location vector:

... (truncated)

Commits
  • a980f70 Prepare release 4.1.0
  • 5748abe Merge branch '252-sync-client-add-new-jwt-and-multiple-credentials' into dev
  • 2729b0b Add missing obxAdminUser credentials, minor cleanup objectbox-java#252
  • ffbc9c6 sync: add methods to initialize SyncBuilder with multiple auth credentials #252
  • 4926ccf SyncServerImpl: isRunning() should not throw if closed objectbox-java#252
  • 6c3dca7 sync: allow adding multiple credentials for auth objectbox-java#252
  • 621c6a9 BoxStore: increase VERSION to 4.1.0-2025-01-28
  • 1cebcfd Tests: make contains_stringObjectMap use only string values
  • 2f984c5 Tests: ignore broken contains_stringObjectMap due to API changes objectbox#1099
  • 308210d Merge branch '246-add-geo-vector-distance-type' into 'dev'
  • 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.1.0.

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

Updates `io.objectbox:objectbox-android` from 3.8.0 to 4.1.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.1.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 Feb 3, 2025
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Feb 3, 2025

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

@github-actions github-actions Bot enabled auto-merge February 3, 2025 21:03
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Mar 10, 2025

Superseded by #268.

@dependabot dependabot Bot closed this Mar 10, 2025
auto-merge was automatically disabled March 10, 2025 22:00

Pull request was closed

@dependabot dependabot Bot deleted the dependabot/gradle/objectboxVersion-4.1.0 branch March 10, 2025 22:00
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