Skip to content

Commit e458ad3

Browse files
committed
Merge remote-tracking branch 'origin/main' into test/function-304
2 parents 2b83efd + 4386ac8 commit e458ad3

File tree

14 files changed

+77
-22
lines changed

14 files changed

+77
-22
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
* @netlify/team-runtime
22
/packages/dev/* @netlify/ecosystem-pod-frameworks
33
/packages/dev-utils/* @netlify/ecosystem-pod-frameworks
4-
/packages/vite-plugin/* @netlify/ecosystem-pod-frameworks
4+
/packages/nuxt-module/* @netlify/ecosystem-pod-frameworks
5+
/packages/vite-plugin/* @netlify/ecosystem-pod-frameworks

.release-please-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"packages/blobs": "10.0.6",
33
"packages/cache": "3.0.7",
4-
"packages/dev": "4.4.4",
4+
"packages/dev": "4.4.5",
55
"packages/dev-utils": "4.0.0",
66
"packages/edge-functions": "2.16.1",
7-
"packages/functions": "4.1.12",
7+
"packages/functions": "4.1.13",
88
"packages/headers": "2.0.6",
99
"packages/images": "1.2.2",
10-
"packages/nuxt-module": "0.1.4",
10+
"packages/nuxt-module": "0.1.5",
1111
"packages/otel": "3.1.0",
1212
"packages/redirects": "3.0.6",
1313
"packages/runtime": "4.0.10",
1414
"packages/runtime-utils": "2.1.0",
1515
"packages/static": "3.0.6",
1616
"packages/types": "2.0.2",
17-
"packages/vite-plugin": "2.4.4"
17+
"packages/vite-plugin": "2.4.5"
1818
}

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dev/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [4.4.5](https://github.com/netlify/primitives/compare/dev-v4.4.4...dev-v4.4.5) (2025-07-21)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @netlify/functions bumped from 4.1.12 to 4.1.13
11+
312
## [4.4.4](https://github.com/netlify/primitives/compare/dev-v4.4.3...dev-v4.4.4) (2025-07-21)
413

514

packages/dev/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netlify/dev",
3-
"version": "4.4.4",
3+
"version": "4.4.5",
44
"description": "Emulation of the Netlify environment for local development",
55
"type": "module",
66
"engines": {
@@ -56,7 +56,7 @@
5656
"@netlify/config": "^23.2.0",
5757
"@netlify/dev-utils": "4.0.0",
5858
"@netlify/edge-functions": "2.16.1",
59-
"@netlify/functions": "4.1.12",
59+
"@netlify/functions": "4.1.13",
6060
"@netlify/headers": "2.0.6",
6161
"@netlify/images": "1.2.2",
6262
"@netlify/redirects": "3.0.6",

packages/functions/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [4.1.13](https://github.com/netlify/primitives/compare/functions-v4.1.12...functions-v4.1.13) (2025-07-21)
4+
5+
6+
### Bug Fixes
7+
8+
* **deps:** update dependency @netlify/zip-it-and-ship-it to v14 ([#334](https://github.com/netlify/primitives/issues/334)) ([fe935fe](https://github.com/netlify/primitives/commit/fe935fe999b18440b3c051b68b3cf4867979d2c0))
9+
310
## [4.1.12](https://github.com/netlify/primitives/compare/functions-v4.1.11...functions-v4.1.12) (2025-07-17)
411

512

packages/functions/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232
}
3333
},
34-
"version": "4.1.12",
34+
"version": "4.1.13",
3535
"description": "TypeScript utilities for interacting with Netlify Functions",
3636
"files": [
3737
"dist/**/*.js",
@@ -82,7 +82,7 @@
8282
"dependencies": {
8383
"@netlify/blobs": "10.0.6",
8484
"@netlify/dev-utils": "4.0.0",
85-
"@netlify/serverless-functions-api": "2.1.3",
85+
"@netlify/types": "2.0.2",
8686
"@netlify/zip-it-and-ship-it": "^14.1.0",
8787
"cron-parser": "^4.9.0",
8888
"decache": "^4.6.2",

packages/functions/src/function/v2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export type { Context } from '@netlify/serverless-functions-api'
1+
export type { Context } from '@netlify/types'
22

33
type Path = `/${string}`
44
type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS'

packages/nuxt-module/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.1.5](https://github.com/netlify/primitives/compare/nuxt-v0.1.4...nuxt-v0.1.5) (2025-07-21)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @netlify/dev bumped from ^4.4.4 to ^4.4.5
11+
312
## [0.1.4](https://github.com/netlify/primitives/compare/nuxt-v0.1.3...nuxt-v0.1.4) (2025-07-21)
413

514

packages/nuxt-module/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netlify/nuxt",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Nuxt module providing local emulation of the Netlify environment",
55
"type": "module",
66
"engines": {
@@ -50,7 +50,7 @@
5050
},
5151
"author": "Netlify Inc.",
5252
"dependencies": {
53-
"@netlify/dev": "^4.4.4",
53+
"@netlify/dev": "^4.4.5",
5454
"@netlify/dev-utils": "^4.0.0",
5555
"@nuxt/kit": "^4.0.0",
5656
"h3": "^1.15.3"

0 commit comments

Comments
 (0)