Skip to content

Commit

Permalink
Update dependency @edge-runtime/primitives to v6 (#3272)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@edge-runtime/primitives](https://edge-runtime.vercel.app/packages/primitives) ([source](https://redirect.github.com/vercel/edge-runtime/tree/HEAD/packages/primitives)) | [`5.1.1` -> `6.0.0`](https://renovatebot.com/diffs/npm/@edge-runtime%2fprimitives/4.1.0/6.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@edge-runtime%2fprimitives/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@edge-runtime%2fprimitives/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@edge-runtime%2fprimitives/4.1.0/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@edge-runtime%2fprimitives/4.1.0/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>vercel/edge-runtime (@&#8203;edge-runtime/primitives)</summary>

### [`v6.0.0`](https://redirect.github.com/vercel/edge-runtime/blob/HEAD/packages/primitives/CHANGELOG.md#600)

[Compare Source](https://redirect.github.com/vercel/edge-runtime/compare/@edge-runtime/[email protected]...@edge-runtime/[email protected])

##### Major Changes

-   drop node16 ([#&#8203;1045](https://redirect.github.com/vercel/edge-runtime/pull/1045))

### [`v5.1.1`](https://redirect.github.com/vercel/edge-runtime/blob/HEAD/packages/primitives/CHANGELOG.md#511)

[Compare Source](https://redirect.github.com/vercel/edge-runtime/compare/@edge-runtime/[email protected]...@edge-runtime/[email protected])

##### Patch Changes

-   force bumping primitives as format changed and it didn't trigger a rebuild ([#&#8203;1027](https://redirect.github.com/vercel/edge-runtime/pull/1027))

### [`v5.1.0`](https://redirect.github.com/vercel/edge-runtime/blob/HEAD/packages/primitives/CHANGELOG.md#510)

[Compare Source](https://redirect.github.com/vercel/edge-runtime/compare/@edge-runtime/[email protected]...@edge-runtime/[email protected])

##### Minor Changes

-   remove custom entries() iterator in favor of Undici's default implementation ([#&#8203;942](https://redirect.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"]]
    ```

### [`v5.0.1`](https://redirect.github.com/vercel/edge-runtime/blob/HEAD/packages/primitives/CHANGELOG.md#501)

[Compare Source](https://redirect.github.com/vercel/edge-runtime/compare/@edge-runtime/[email protected]...@edge-runtime/[email protected])

##### Patch Changes

-   minify source texts ([#&#8203;925](https://redirect.github.com/vercel/edge-runtime/pull/925))

### [`v5.0.0`](https://redirect.github.com/vercel/edge-runtime/blob/HEAD/packages/primitives/CHANGELOG.md#500)

[Compare Source](https://redirect.github.com/vercel/edge-runtime/compare/@edge-runtime/[email protected]...@edge-runtime/[email protected])

##### Major Changes

-   use MIT license ([#&#8203;909](https://redirect.github.com/vercel/edge-runtime/pull/909))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/X-oss-byte/Nextjs).
  • Loading branch information
renovate[bot] authored Dec 7, 2024
1 parent 0cb0e7a commit 76dc1ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
"@capsizecss/metrics": "3.4.0",
"@edge-runtime/cookies": "6.0.0",
"@edge-runtime/ponyfill": "4.0.0",
"@edge-runtime/primitives": "5.1.1",
"@edge-runtime/primitives": "6.0.0",
"@hapi/accept": "6.0.3",
"@jest/transform": "29.7.0",
"@jest/types": "29.6.3",
Expand Down

0 comments on commit 76dc1ef

Please sign in to comment.