vercel / modelfusion

The TypeScript library for building AI applications.
https://modelfusion.dev
MIT License
1.1k stars 78 forks source link

Bump @pinecone-database/pinecone from 0.1.6 to 1.1.0 #116

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps @pinecone-database/pinecone from 0.1.6 to 1.1.0.

Release notes

Sourced from @​pinecone-database/pinecone's releases.

v1.1.0 Release

Fixed: Next.js fetch compatibility

In this release we made some adjustments to how we polyfill fetch (which is not natively supported in all versions of node) to avoid conflicting with the Next.js framework. Next.js expects you to use @vercel/fetch and stubs out other polyfills to keep the bundle small, so the cross-fetch polyfill we depend on was not working as expected.

We have tested these changes in an updated version of our pinecone-vercel-starter sample app deployed on Vercel, so we think this resolves the known issues (#124) using the Pinecone TypeScript client in combination with Next.js.

If you encounter other problems with Vercel Edge Runtime or next.js, please file a new issue and we'll work on it ASAP. Smoothing out this experience is important to us.

Added: Replacements for some deprecated utilities

Following up on a conversation about v1 replacements for the deprecated utils methods waitUntilIndexIsReady and createIndexIfNotExists, you can now pass additional options to the create method.

import { Pinecone } from '@pinecone-database/pinecone`;

const pinecone = new Pinecone()

await pinecone.createIndex({ name: indexName, dimension: 1536,

// This option tells the client not to throw if the index already exists. // It serves as replacement for createIndexIfNotExists suppressConflicts: true,

// This option tells the client not to resolve the promise until the // index is ready. It replaces waitUntilIndexIsReady. waitUntilReady: true })

Changelog

Bug fixes

Features

Doc improvements

Full Changelog: https://github.com/pinecone-io/pinecone-ts-client/compare/v1.0.1...v1.1.0

v1.0.1 Release

This fast-follow to last week's v1 release addresses a number of issues that have been reported by our users. Thank you to everyone who provided feedback.

Bugs addressed in this release

... (truncated)

Commits
  • 6a753e3 [skip ci] Publish release v1.1.0
  • b34f41b [Bugfix] Implement next.js fetch compatibility (#126)
  • 4f93203 Expose an option in createIndex to suppress the 409 conflict error (#125)
  • 699b5dd Add docstrings to Index class properties and methods (#123)
  • f711645 Fix example in README
  • fc42ef5 Migration guide improvements (#120)
  • 5bcfb62 [skip ci] Publish release v1.0.1
  • cd964fc Update typedoc.json configurations and type exports (#119)
  • 39db0a4 Use semantic-search example app as client integration test (#116)
  • 4ef21d3 Resolve typescript compilation problems (#114)
  • Additional commits viewable 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show 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)
vercel[bot] commented 11 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
modelfusion ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 28, 2023 11:46am
dependabot[bot] commented 11 months ago

Looks like @pinecone-database/pinecone is no longer a dependency, so this is no longer needed.