Skip to content

Commit 59b4ef6

Browse files
authored
Generate core based on oas and protos (#204)
## Problem Update core based on 2025-10 specs ## Solution Generated and updated the core based on the 2025-10 OAS and protos. Note that the code had already been generated from the 2025-10 specs, but some fixes were made to the OAS, so I had to regenerate it. ## Type of Change - [ ] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update - [ ] Infrastructure change (CI configs, etc) - [ ] Non-code change (docs, etc) - [ ] None of the above: (explain here) ## Test Plan No new functionalities are added in this pr so existing integration tests should pass.
1 parent 279faa1 commit 59b4ef6

File tree

211 files changed

+8654
-520
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+8654
-520
lines changed

codegen/apis

Submodule apis updated from bbad89b to d5ac931

codegen/buf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ breaking:
99
deps:
1010
- buf.build/googleapis/googleapis
1111
modules:
12-
- path: apis/_build/2025-04
12+
- path: apis/_build/2025-10

src/main/java/io/pinecone/configs/PineconeConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ private ProxyDetector getProxyDetector() {
178178
private static Metadata assembleMetadata(PineconeConfig config) {
179179
Metadata metadata = new Metadata();
180180
metadata.put(Metadata.Key.of("api-key", Metadata.ASCII_STRING_MARSHALLER), config.getApiKey());
181-
metadata.put(Metadata.Key.of("X-Pinecone-api-version", Metadata.ASCII_STRING_MARSHALLER), "2025-04");
181+
metadata.put(Metadata.Key.of("X-Pinecone-api-version", Metadata.ASCII_STRING_MARSHALLER), "2025-10");
182182
return metadata;
183183
}
184184

0 commit comments

Comments
 (0)