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

1.12.0 #55

Merged
merged 4 commits into from
Oct 8, 2024
Merged

1.12.0 #55

merged 4 commits into from
Oct 8, 2024

Conversation

agourlay
Copy link
Member

@agourlay agourlay commented Oct 4, 2024

New APIs examples

Points.SearchMatrixOffsets offsets =
        client
            .searchMatrixOffsetsAsync(
                Points.SearchMatrixPoints.newBuilder()
                    .setCollectionName(testName)
                    .setFilter(Filter.newBuilder().addMust(matchKeyword("foo", "hello")).build())
                    .setSample(3)
                    .setLimit(2)
                    .build())
            .get();
Points.SearchMatrixPairs pairs =
        client
            .searchMatrixPairsAsync(
                Points.SearchMatrixPoints.newBuilder()
                    .setCollectionName(testName)
                    .setFilter(Filter.newBuilder().addMust(matchKeyword("foo", "hello")).build())
                    .setSample(3)
                    .setLimit(2)
                    .build())
            .get();
    List<Points.FacetHit> facets =
        client
            .facetAsync(
                Points.FacetCounts.newBuilder()
                    .setCollectionName(testName)
                    .setFilter(Filter.newBuilder().addMust(matchKeyword("bar", "hello")).build())
                    .setKey("foo")
                    .setLimit(2)
                    .build())
            .get();

TODO

  • bump version after container release

@agourlay agourlay marked this pull request as ready for review October 4, 2024 09:59
@agourlay agourlay requested a review from Anush008 October 4, 2024 09:59
gradle.properties Outdated Show resolved Hide resolved
Copy link
Member

@Anush008 Anush008 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🫡

gradle.properties Outdated Show resolved Hide resolved
@agourlay
Copy link
Member Author

agourlay commented Oct 8, 2024

Final versions updated ✔️

@agourlay agourlay merged commit 9600bb8 into master Oct 8, 2024
2 checks passed
@agourlay agourlay deleted the 1.12.0 branch October 8, 2024 14:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants