Skip to content

chore: release main #213

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"packages/blobs": "9.1.2",
"packages/cache": "1.11.2",
"packages/dev": "2.3.1",
"packages/dev-utils": "2.2.0",
"packages/functions": "3.1.10",
"packages/headers": "0.0.0",
"packages/otel": "1.1.0",
"packages/redirects": "1.1.4",
"packages/runtime": "2.2.2",
"packages/runtime-utils": "1.3.1",
"packages/static": "1.1.4",
"packages/types": "1.2.0",
"packages/vite-plugin": "0.3.1"
"packages/blobs": "9.1.3",
"packages/cache": "2.0.0",
"packages/dev": "3.0.0",
"packages/dev-utils": "3.0.0",
"packages/functions": "4.0.0",
"packages/headers": "1.0.0",
"packages/otel": "2.0.0",
"packages/redirects": "2.0.0",
"packages/runtime": "3.0.0",
"packages/runtime-utils": "2.0.0",
"packages/static": "2.0.0",
"packages/types": "2.0.0",
"packages/vite-plugin": "1.0.0"
}
74 changes: 37 additions & 37 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions packages/blobs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [9.1.3](https://github.com/netlify/primitives/compare/blobs-v9.1.2...blobs-v9.1.3) (2025-05-28)


### Bug Fixes

* remove unused dependencies, add undeclared dependencies ([#230](https://github.com/netlify/primitives/issues/230)) ([180546a](https://github.com/netlify/primitives/commit/180546aa03b569000ed52cafb07014e9a4c76a1a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @netlify/dev-utils bumped from 2.2.0 to 3.0.0
* @netlify/runtime-utils bumped from 1.3.1 to 2.0.0

## [9.1.2](https://github.com/netlify/primitives/compare/blobs-v9.1.1...blobs-v9.1.2) (2025-05-23)


Expand Down
6 changes: 3 additions & 3 deletions packages/blobs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@netlify/blobs",
"version": "9.1.2",
"version": "9.1.3",
"description": "TypeScript client for Netlify Blobs",
"type": "module",
"engines": {
Expand Down Expand Up @@ -76,7 +76,7 @@
"vitest": "^3.0.0"
},
"dependencies": {
"@netlify/dev-utils": "2.2.0",
"@netlify/runtime-utils": "1.3.1"
"@netlify/dev-utils": "3.0.0",
"@netlify/runtime-utils": "2.0.0"
}
}
27 changes: 27 additions & 0 deletions packages/cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Changelog

## [2.0.0](https://github.com/netlify/primitives/compare/cache-v1.11.2...cache-v2.0.0) (2025-05-28)


### ⚠ BREAKING CHANGES

* fix `engines.node` ([#210](https://github.com/netlify/primitives/issues/210))

### Bug Fixes

* remove unused dependencies, add undeclared dependencies ([#230](https://github.com/netlify/primitives/issues/230)) ([180546a](https://github.com/netlify/primitives/commit/180546aa03b569000ed52cafb07014e9a4c76a1a))
* retain request headers in cache lookups ([#204](https://github.com/netlify/primitives/issues/204)) ([6fa04b5](https://github.com/netlify/primitives/commit/6fa04b5990bafaecfef70cb9a510c24fd31a8e15))


### Build System

* fix `engines.node` ([#210](https://github.com/netlify/primitives/issues/210)) ([5604545](https://github.com/netlify/primitives/commit/56045450d0f6c24988a8956c1946209bda4502bc))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @netlify/runtime-utils bumped from 1.3.1 to 2.0.0
* devDependencies
* @netlify/dev-utils bumped from 2.2.0 to 3.0.0
* @netlify/types bumped from 1.2.0 to 2.0.0

## [1.11.2](https://github.com/netlify/primitives/compare/cache-v1.11.1...cache-v1.11.2) (2025-05-23)


Expand Down
8 changes: 4 additions & 4 deletions packages/cache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@netlify/cache",
"version": "1.11.2",
"version": "2.0.0",
"description": "TypeScript utilities for interacting with the Netlify cache",
"type": "module",
"engines": {
Expand Down Expand Up @@ -68,13 +68,13 @@
},
"author": "Netlify Inc.",
"devDependencies": {
"@netlify/dev-utils": "2.2.0",
"@netlify/types": "1.2.0",
"@netlify/dev-utils": "3.0.0",
"@netlify/types": "2.0.0",
"npm-run-all2": "^7.0.2",
"tsup": "^8.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@netlify/runtime-utils": "1.3.1"
"@netlify/runtime-utils": "2.0.0"
}
}
22 changes: 22 additions & 0 deletions packages/dev-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## [3.0.0](https://github.com/netlify/primitives/compare/dev-utils-v2.2.0...dev-utils-v3.0.0) (2025-05-28)


### ⚠ BREAKING CHANGES

* fix `engines.node` ([#210](https://github.com/netlify/primitives/issues/210))

### Features

* add support for headers config ([#200](https://github.com/netlify/primitives/issues/200)) ([dca313e](https://github.com/netlify/primitives/commit/dca313ec82980231724a2d801bcc739df1d27924))


### Bug Fixes

* **deps:** update dependency @whatwg-node/server to ^0.10.0 ([#214](https://github.com/netlify/primitives/issues/214)) ([b3ea166](https://github.com/netlify/primitives/commit/b3ea1661c63b223f8c0722910ae76ee936f754b4))
* remove unused dependencies, add undeclared dependencies ([#230](https://github.com/netlify/primitives/issues/230)) ([180546a](https://github.com/netlify/primitives/commit/180546aa03b569000ed52cafb07014e9a4c76a1a))


### Build System

* fix `engines.node` ([#210](https://github.com/netlify/primitives/issues/210)) ([5604545](https://github.com/netlify/primitives/commit/56045450d0f6c24988a8956c1946209bda4502bc))

## [2.2.0](https://github.com/netlify/primitives/compare/dev-utils-v2.1.1...dev-utils-v2.2.0) (2025-05-23)


Expand Down
2 changes: 1 addition & 1 deletion packages/dev-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@netlify/dev-utils",
"version": "2.2.0",
"version": "3.0.0",
"description": "TypeScript utilities for the local emulation of the Netlify environment",
"type": "module",
"engines": {
Expand Down
Loading