Skip to content

Commit a420d98

Browse files
Update to spec version 2025-01 (#37)
Update the .NET SDK to use the 2025-01 API version --------- Co-authored-by: Niels Swimberghe <3382717+Swimburger@users.noreply.github.com>
1 parent 1fe6f12 commit a420d98

File tree

90 files changed

+3516
-650
lines changed

Some content is hidden

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

90 files changed

+3516
-650
lines changed

.fernignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@
33
src/Pinecone/PineconeClient.cs
44
src/Pinecone/Core/Public/SourceTagOption.cs
55
src/Pinecone/Core/Public/IsTlsEnabledOption.cs
6+
src/Pinecone/Types/Embedding.cs
67
src/Pinecone.Test/Integration
8+
src/Pinecone.Test/Unit/EmbeddingTest.cs
9+
src/Pinecone.Test/Unit/AdditionalPropertiesTest.cs
710
src/Pinecone.Test/Unit/UserAgentTest.cs
811
src/Pinecone.Test/Unit/UnexpectedErrorTest.cs
12+
src/Pinecone.Test/Unit/MockServer/EmbedTest.cs
913
.github/workflows/ci.yml
10-
11-
# The following file should always be .fernignore'd.
12-
1314
CONTRIBUTING.md
1415
README.md
1516
icon.png
17+
LICENSE
1618
src/Pinecone/Pinecone.Custom.props

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,45 +44,45 @@ jobs:
4444
4545
- name: Run Unit Tests
4646
run: |
47-
dotnet test src --filter "FullyQualifiedName~Pinecone.Test.Unit"
47+
dotnet test src --filter "(FullyQualifiedName~Pinecone.Test.Unit) | (FullyQualifiedName~Pinecone.Test.Core)"
4848
4949
integration-test:
5050
runs-on: ubuntu-latest
5151
steps:
5252
- name: Checkout repo
5353
uses: actions/checkout@v3
54-
54+
5555
- uses: actions/checkout@master
56-
56+
5757
- name: Setup .NET
5858
uses: actions/setup-dotnet@v1
5959
with:
6060
dotnet-version: 8.x
61-
61+
6262
- name: Install tools
6363
run: |
6464
dotnet tool restore
65-
65+
6666
- name: Run Integration Tests
6767
env:
6868
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}
6969
run: |
7070
dotnet test src --filter "FullyQualifiedName~Pinecone.Test.Integration"
71-
71+
7272
publish:
7373
needs: [compile]
7474
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
7575
runs-on: ubuntu-latest
76-
76+
7777
steps:
7878
- name: Checkout repo
7979
uses: actions/checkout@v3
80-
80+
8181
- name: Setup .NET
8282
uses: actions/setup-dotnet@v1
8383
with:
8484
dotnet-version: 8.x
85-
85+
8686
- name: Publish
8787
env:
8888
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}

0 commit comments

Comments
 (0)