Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump objectbox, objectbox_generator and objectbox_flutter_libs #76

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 27, 2024

Bumps objectbox, objectbox_generator and objectbox_flutter_libs. These dependencies needed to be updated together.
Updates objectbox from 2.5.1 to 4.0.2

Release notes

Sourced from objectbox's releases.

v4.0.2

Note: this release includes the same versions of the Android library and ObjectBox pod as release 4.0.0. See update instructions there.

v4.0.1

  • Export ObjectWithScore and IdWithScore used by the new find with score Query methods. #637
  • Add simple vectorsearch_cities Dart Native example application.

Note: this release includes the same versions of the Android library and ObjectBox pod as release 4.0.0. See update instructions there.

V4.0 Vector Search

To upgrade to this major release run flutter pub upgrade objectbox --major-versions (or for Dart Native apps dart pub upgrade objectbox --major-versions).

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()
class City {
@​HnswIndex(dimensions: 2)
@​Property(type: PropertyType.floatVector)
List<double>? location;
}

Perform a nearest neighbor search using the new nearestNeighborsF32(queryVector, maxResultCount) query condition and the new "find with scores" query methods (the score is the distance to the query vector). For example, find the 2 closest cities:

final madrid = [40.416775, -3.703790];
final query = box
    .query(City_.location.nearestNeighborsF32(madrid, 2))
    .build();
final closest = query.findWithScores()[0].object;

For an introduction to Vector Search, more details and other supported languages see the Vector Search documentation.

  • The generator correctly errors when using an unsupported index on a vector type.

... (truncated)

Commits
  • 27b29f8 Prepare release 4.0.2
  • 23f0c23 Merge branch '117-sync-shared-global-ids' into 'main'
  • 05e170b Sync: note combined annotation and configuration class
  • 130edc9 Sync global IDs: add and detect annotation parameter, set entity flag
  • f07afeb Merge branch 'readme-update-examples' into 'main'
  • 0791184 READMEs: update code examples to match website, more complex query
  • 2bb12c3 Merge branch 'relation-docs-updates' into 'main'
  • 772c1f1 ToOne: update get, set and set ID methods, note important details
  • 4377c1c ToMany: document add, remove and get, note important details
  • 6ab66b4 ToOne/ToMany: improve class descriptions, notable things first
  • Additional commits viewable in compare view

Updates objectbox_generator from 2.5.1 to 4.0.2

Release notes

Sourced from objectbox_generator's releases.

v4.0.2

Note: this release includes the same versions of the Android library and ObjectBox pod as release 4.0.0. See update instructions there.

v4.0.1

  • Export ObjectWithScore and IdWithScore used by the new find with score Query methods. #637
  • Add simple vectorsearch_cities Dart Native example application.

Note: this release includes the same versions of the Android library and ObjectBox pod as release 4.0.0. See update instructions there.

V4.0 Vector Search

To upgrade to this major release run flutter pub upgrade objectbox --major-versions (or for Dart Native apps dart pub upgrade objectbox --major-versions).

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()
class City {
@​HnswIndex(dimensions: 2)
@​Property(type: PropertyType.floatVector)
List<double>? location;
}

Perform a nearest neighbor search using the new nearestNeighborsF32(queryVector, maxResultCount) query condition and the new "find with scores" query methods (the score is the distance to the query vector). For example, find the 2 closest cities:

final madrid = [40.416775, -3.703790];
final query = box
    .query(City_.location.nearestNeighborsF32(madrid, 2))
    .build();
final closest = query.findWithScores()[0].object;

For an introduction to Vector Search, more details and other supported languages see the Vector Search documentation.

  • The generator correctly errors when using an unsupported index on a vector type.

... (truncated)

Commits
  • 27b29f8 Prepare release 4.0.2
  • 23f0c23 Merge branch '117-sync-shared-global-ids' into 'main'
  • 05e170b Sync: note combined annotation and configuration class
  • 130edc9 Sync global IDs: add and detect annotation parameter, set entity flag
  • f07afeb Merge branch 'readme-update-examples' into 'main'
  • 0791184 READMEs: update code examples to match website, more complex query
  • 2bb12c3 Merge branch 'relation-docs-updates' into 'main'
  • 772c1f1 ToOne: update get, set and set ID methods, note important details
  • 4377c1c ToMany: document add, remove and get, note important details
  • 6ab66b4 ToOne/ToMany: improve class descriptions, notable things first
  • Additional commits viewable in compare view

Updates objectbox_flutter_libs from 2.5.1 to 4.0.2

Release notes

Sourced from objectbox_flutter_libs's releases.

v4.0.2

Note: this release includes the same versions of the Android library and ObjectBox pod as release 4.0.0. See update instructions there.

v4.0.1

  • Export ObjectWithScore and IdWithScore used by the new find with score Query methods. #637
  • Add simple vectorsearch_cities Dart Native example application.

Note: this release includes the same versions of the Android library and ObjectBox pod as release 4.0.0. See update instructions there.

V4.0 Vector Search

To upgrade to this major release run flutter pub upgrade objectbox --major-versions (or for Dart Native apps dart pub upgrade objectbox --major-versions).

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()
class City {
@​HnswIndex(dimensions: 2)
@​Property(type: PropertyType.floatVector)
List<double>? location;
}

Perform a nearest neighbor search using the new nearestNeighborsF32(queryVector, maxResultCount) query condition and the new "find with scores" query methods (the score is the distance to the query vector). For example, find the 2 closest cities:

final madrid = [40.416775, -3.703790];
final query = box
    .query(City_.location.nearestNeighborsF32(madrid, 2))
    .build();
final closest = query.findWithScores()[0].object;

For an introduction to Vector Search, more details and other supported languages see the Vector Search documentation.

  • The generator correctly errors when using an unsupported index on a vector type.

... (truncated)

Commits
  • 27b29f8 Prepare release 4.0.2
  • 23f0c23 Merge branch '117-sync-shared-global-ids' into 'main'
  • 05e170b Sync: note combined annotation and configuration class
  • 130edc9 Sync global IDs: add and detect annotation parameter, set entity flag
  • f07afeb Merge branch 'readme-update-examples' into 'main'
  • 0791184 READMEs: update code examples to match website, more complex query
  • 2bb12c3 Merge branch 'relation-docs-updates' into 'main'
  • 772c1f1 ToOne: update get, set and set ID methods, note important details
  • 4377c1c ToMany: document add, remove and get, note important details
  • 6ab66b4 ToOne/ToMany: improve class descriptions, notable things first
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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)

@dependabot dependabot bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Aug 27, 2024
@dependabot dependabot bot force-pushed the dependabot/pub/multi-4f88817d0f branch from 66ce55c to db3bf5d Compare September 7, 2024 21:56
…r_libs

Bumps [objectbox](https://github.com/objectbox/objectbox-dart), [objectbox_generator](https://github.com/objectbox/objectbox-dart) and [objectbox_flutter_libs](https://github.com/objectbox/objectbox-dart). These dependencies needed to be updated together.

Updates `objectbox` from 2.5.1 to 4.0.2
- [Release notes](https://github.com/objectbox/objectbox-dart/releases)
- [Commits](objectbox/objectbox-dart@v2.5.1...v4.0.2)

Updates `objectbox_generator` from 2.5.1 to 4.0.2
- [Release notes](https://github.com/objectbox/objectbox-dart/releases)
- [Commits](objectbox/objectbox-dart@v2.5.1...v4.0.2)

Updates `objectbox_flutter_libs` from 2.5.1 to 4.0.2
- [Release notes](https://github.com/objectbox/objectbox-dart/releases)
- [Commits](objectbox/objectbox-dart@v2.5.1...v4.0.2)

---
updated-dependencies:
- dependency-name: objectbox
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: objectbox_generator
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: objectbox_flutter_libs
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pub/multi-4f88817d0f branch from db3bf5d to d94df45 Compare September 9, 2024 22:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dart Pull requests that update Dart code dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants