Skip to content

Commit

Permalink
Version Packages (#683)
Browse files Browse the repository at this point in the history
* Version Packages

* Update CHANGELOG.md

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Vincent Voyer <[email protected]>
  • Loading branch information
3 people authored May 27, 2024
1 parent d02e08a commit d63d2de
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 27 deletions.
26 changes: 0 additions & 26 deletions .changeset/rare-poems-try.md

This file was deleted.

29 changes: 29 additions & 0 deletions packages/kv/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @vercel/kv

## 2.0.0

### Major Changes

- d02e08a: Enable auto pipelining by default.
We're making this a major release for safety, but we believe
most applications can upgrade from 1.x to 2.x without any changes.
Auto pipelining should work by default and improve performance.

_BREAKING_ CHANGE: Auto pipelining is on by default now. See
https://upstash.com/docs/oss/sdks/ts/redis/pipelining/auto-pipeline. This
brings performance benefits to any code making multiple redis commands
simultaneously.

If you detect bugs because of this, please open them at
https://github.com/vercel/storage/issues.

You can disable this new behavior with:

```js
import { createClient } from '@vercel/kv';

const kv = createClient({
url: ..,
token: ..,
enableAutoPipelining: false
});
```

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/kv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vercel/kv",
"version": "1.0.1",
"version": "2.0.0",
"description": "Durable Redis",
"homepage": "https://vercel.com",
"repository": {
Expand Down

0 comments on commit d63d2de

Please sign in to comment.