Skip to content

Commit

Permalink
Version Packages (#943)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 19, 2024
1 parent 6a869f1 commit 8b52174
Show file tree
Hide file tree
Showing 11 changed files with 56 additions and 26 deletions.
21 changes: 0 additions & 21 deletions .changeset/dirty-timers-reply.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/jest-environment/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @edge-runtime/jest-environment

## 3.0.2

### Patch Changes

- Updated dependencies []:
- @edge-runtime/vm@4.0.2

## 3.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-environment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@edge-runtime/jest-environment",
"description": "A Jest integration to run assertions in Edge Runtime context.",
"homepage": "https://edge-runtime.vercel.app/packages/jest-environment",
"version": "3.0.1",
"version": "3.0.2",
"main": "dist/index.js",
"repository": {
"directory": "packages/jest-environment",
Expand Down
22 changes: 22 additions & 0 deletions packages/primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @edge-runtime/primitives

## 5.1.0

### Minor Changes

- remove custom entries() iterator in favor of Undici's default implementation ([#942](https://github.com/vercel/edge-runtime/pull/942))

The difference will be that `set-cookie` headers will be emitted independently.

```ts
const headers = new Headers()
headers.append('set-cookie', 'a=1')
headers.append('set-cookie', 'b=2')

const entries = [...headers.entries()]

// previous implementation
console.log(entries) // [["set-cookie", "a=1, b=2"]]

// new implementation (undici's native implementation)
console.log(entries) // [["set-cookie", "a=1"], ["set-cookie", "b=2"]]
```

## 5.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@edge-runtime/primitives",
"description": "A set of primitives to build Vercel Edge Runtime.",
"homepage": "https://edge-runtime.vercel.app/packages/primitives",
"version": "5.0.1",
"version": "5.1.0",
"main": "dist/index.js",
"repository": {
"directory": "packages/primitives",
Expand Down
8 changes: 8 additions & 0 deletions packages/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# edge-runtime

## 3.0.2

### Patch Changes

- Updated dependencies []:
- @edge-runtime/ponyfill@3.0.0
- @edge-runtime/vm@4.0.2

## 3.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "edge-runtime",
"description": "Run any Edge Function from CLI or Node.js module.",
"homepage": "https://edge-runtime.vercel.app/packages/runtime",
"version": "3.0.1",
"version": "3.0.2",
"main": "dist/index.js",
"bin": {
"edge-runtime": "dist/cli/index.js"
Expand Down
7 changes: 7 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @edge-runtime/types

## 3.0.2

### Patch Changes

- Updated dependencies [[`6a869f12121f80cc6490ec2b81484453672b7b6b`](https://github.com/vercel/edge-runtime/commit/6a869f12121f80cc6490ec2b81484453672b7b6b)]:
- @edge-runtime/primitives@5.1.0

## 3.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@edge-runtime/types",
"description": "TypeScript global types for using Edge Runtime.",
"homepage": "https://edge-runtime.vercel.app/packages/types",
"version": "3.0.1",
"version": "3.0.2",
"repository": {
"directory": "packages/types",
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/vm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @edge-runtime/vm

## 4.0.2

### Patch Changes

- Updated dependencies [[`6a869f12121f80cc6490ec2b81484453672b7b6b`](https://github.com/vercel/edge-runtime/commit/6a869f12121f80cc6490ec2b81484453672b7b6b)]:
- @edge-runtime/primitives@5.1.0

## 4.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@edge-runtime/vm",
"description": "Low level bindings for creating Web Standard contexts.",
"homepage": "https://edge-runtime.vercel.app/packages/vm",
"version": "4.0.1",
"version": "4.0.2",
"main": "dist/index.js",
"repository": {
"directory": "packages/vm",
Expand Down

0 comments on commit 8b52174

Please sign in to comment.