v1.2.1 Release
Fixed: Uber jar
The META-INF/services
directory contains service provider configuration files. It wasn't shaded correctly so the users were seeing NameResolverProvider
error when running a data plane operation such as upsert using the uber jar.
Error:
Exception in thread "main" java.lang.IllegalArgumentException: Could not find a NameResolverProvider for index-name-somehost.pinecone.io
.
The error is now fixed and users can use the uber jar for data plane operations successfully.
Example
The following example demonstrates how to use the uber jar in a pom.xml for a maven project:
<dependencies>
<dependency>
<groupId>io.pinecone</groupId>
<artifactId>pinecone-client</artifactId>
<version>1.2.1</version>
<classifier>all</classifier>
</dependency>
</dependencies>
What's Changed
- Shadow META-INF/services directory by @rohanshah18 in #134
- Release v1.2.1 by @rohanshah18 in #135
Full Changelog: v1.2.0...v1.2.1