Skip to content

chore(deps)(deps): bump io.pinecone:pinecone-client from 6.1.0 to 6.2.0#141

Merged
xavidop merged 1 commit intomainfrom
dependabot/maven/io.pinecone-pinecone-client-6.2.0
Apr 6, 2026
Merged

chore(deps)(deps): bump io.pinecone:pinecone-client from 6.1.0 to 6.2.0#141
xavidop merged 1 commit intomainfrom
dependabot/maven/io.pinecone-pinecone-client-6.2.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 6, 2026

Bumps io.pinecone:pinecone-client from 6.1.0 to 6.2.0.

Release notes

Sourced from io.pinecone:pinecone-client's releases.

v6.2.0 Release

Extended observability fields in ResponseMetadata

The ResponseMetadata listener now surfaces three new nullable fields giving you visibility into per-request consumption and operation outcomes:

  • getReadUnits() — read units consumed (available on query, fetch, and list operations)
  • getUpsertedCount() — number of vectors upserted (available on upsert operations)
  • getMatchedRecords() — number of records matched (available on update operations)

These fields return null when not applicable to the operation type.

import io.pinecone.clients.Pinecone;
import io.pinecone.clients.Index;
import java.util.Arrays;
Pinecone pinecone = new Pinecone.Builder(System.getenv("PINECONE_API_KEY"))
.withResponseMetadataListener(metadata -> {
System.out.printf("Operation: %s | Client: %dms | Server: %dms | Network: %dms%n",
metadata.getOperationName(),
metadata.getClientDurationMs(),
metadata.getServerDurationMs(),
metadata.getNetworkOverheadMs());
    if (metadata.getReadUnits() != null) {
        System.out.printf("Read units consumed: %d%n", metadata.getReadUnits());
    }
    if (metadata.getUpsertedCount() != null) {
        System.out.printf("Upserted count: %d%n", metadata.getUpsertedCount());
    }
    if (metadata.getMatchedRecords() != null) {
        System.out.printf("Matched records: %d%n", metadata.getMatchedRecords());
    }
})
.build();

Index index = pinecone.getIndexConnection("example-index");
index.query(5, Arrays.asList(1.0f, 2.0f, 3.0f));
// Output: Operation: query | Client: 45ms | Server: 32ms | Network: 13ms
//         Read units consumed: 5
index.upsert("v1", Arrays.asList(1.0f, 2.0f, 3.0f));
// Output: Operation: upsert | Client: 52ms | Server: 38ms | Network: 14ms
//         Upserted count: 1
` ``
What's Changed

chore: add Cursor IDE configuration and development tools by @jhamon in pinecone-io/pinecone-java-client#211
Automated test resource cleanup by @jhamon in pinecone-io/pinecone-java-client#212
</tr></table>

... (truncated)

Changelog

Sourced from io.pinecone:pinecone-client's changelog.

6.2.0

  • Add readUnits, upsertedCount, and matchedRecords to ResponseMetadata
  • Add List operation to ResponseMetadataInterceptor
Commits
  • 6072a1d Bump version to 6.2.0, resolve integration test flakiness (#219)
  • e57171b feat: Add readUnits, upsertedCount, and matchedRecords to ResponseMetadata (#...
  • f259f23 fix: client build failure in test cleanup utility (#214)
  • 4e0f948 Automated test resource cleanup (#212)
  • 66946b5 chore: add Cursor IDE configuration and development tools (#211)
  • See full diff in compare view

Dependabot compatibility score

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 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)

Bumps [io.pinecone:pinecone-client](https://github.com/pinecone-io/pinecone-java-client) from 6.1.0 to 6.2.0.
- [Release notes](https://github.com/pinecone-io/pinecone-java-client/releases)
- [Changelog](https://github.com/pinecone-io/pinecone-java-client/blob/main/CHANGELOG.md)
- [Commits](pinecone-io/pinecone-java-client@v6.1.0...v6.2.0)

---
updated-dependencies:
- dependency-name: io.pinecone:pinecone-client
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 6, 2026

Labels

The following labels could not be found: maven. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 6, 2026
@xavidop xavidop merged commit 9c13695 into main Apr 6, 2026
8 checks passed
@dependabot dependabot bot deleted the dependabot/maven/io.pinecone-pinecone-client-6.2.0 branch April 6, 2026 09:55
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant