Skip to content

Commit b6e6805

Browse files
v8.3.0
1 parent 3d4eb6e commit b6e6805

File tree

84 files changed

+1281
-1299
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+1281
-1299
lines changed

__fixtures__/test-project/api/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "0.0.0",
44
"private": true,
55
"dependencies": {
6-
"@redwoodjs/api": "8.2.0",
7-
"@redwoodjs/auth-dbauth-api": "8.2.0",
8-
"@redwoodjs/graphql-server": "8.2.0"
6+
"@redwoodjs/api": "8.3.0",
7+
"@redwoodjs/auth-dbauth-api": "8.3.0",
8+
"@redwoodjs/graphql-server": "8.3.0"
99
}
1010
}

__fixtures__/test-project/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
]
88
},
99
"devDependencies": {
10-
"@redwoodjs/core": "8.2.0",
11-
"@redwoodjs/project-config": "8.2.0"
10+
"@redwoodjs/core": "8.3.0",
11+
"@redwoodjs/project-config": "8.3.0"
1212
},
1313
"eslintConfig": {
1414
"extends": "@redwoodjs/eslint-config",

__fixtures__/test-project/web/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
]
1212
},
1313
"dependencies": {
14-
"@redwoodjs/auth-dbauth-web": "8.2.0",
15-
"@redwoodjs/forms": "8.2.0",
16-
"@redwoodjs/router": "8.2.0",
17-
"@redwoodjs/web": "8.2.0",
14+
"@redwoodjs/auth-dbauth-web": "8.3.0",
15+
"@redwoodjs/forms": "8.3.0",
16+
"@redwoodjs/router": "8.3.0",
17+
"@redwoodjs/web": "8.3.0",
1818
"humanize-string": "2.1.0",
1919
"react": "18.3.1",
2020
"react-dom": "18.3.1"
2121
},
2222
"devDependencies": {
23-
"@redwoodjs/vite": "8.2.0",
23+
"@redwoodjs/vite": "8.3.0",
2424
"@types/react": "^18.2.55",
2525
"@types/react-dom": "^18.2.19",
2626
"autoprefixer": "^10.4.20",

lerna.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"version": "8.2.0",
2+
"version": "8.3.0",
33
"npmClient": "yarn",
44
"command": {
55
"publish": {
66
"verifyAccess": false
77
}
88
},
99
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
10-
}
10+
}

packages/adapters/fastify/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/fastify-web",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/api-server/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/api-server",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"description": "Redwood's HTTP server for Serverless Functions",
55
"repository": {
66
"type": "git",
@@ -31,11 +31,11 @@
3131
"dependencies": {
3232
"@fastify/multipart": "8.3.0",
3333
"@fastify/url-data": "5.4.0",
34-
"@redwoodjs/context": "workspace:*",
35-
"@redwoodjs/fastify-web": "workspace:*",
36-
"@redwoodjs/internal": "workspace:*",
37-
"@redwoodjs/project-config": "workspace:*",
38-
"@redwoodjs/web-server": "workspace:*",
34+
"@redwoodjs/context": "8.3.0",
35+
"@redwoodjs/fastify-web": "8.3.0",
36+
"@redwoodjs/internal": "8.3.0",
37+
"@redwoodjs/project-config": "8.3.0",
38+
"@redwoodjs/web-server": "8.3.0",
3939
"chalk": "4.1.2",
4040
"chokidar": "3.6.0",
4141
"dotenv-defaults": "5.0.2",
@@ -51,7 +51,7 @@
5151
"yargs": "17.7.2"
5252
},
5353
"devDependencies": {
54-
"@redwoodjs/framework-tools": "workspace:*",
54+
"@redwoodjs/framework-tools": "8.3.0",
5555
"@types/aws-lambda": "8.10.145",
5656
"@types/lodash": "4.17.9",
5757
"@types/qs": "6.9.16",
@@ -63,7 +63,7 @@
6363
"vitest": "2.0.5"
6464
},
6565
"peerDependencies": {
66-
"@redwoodjs/graphql-server": "workspace:*"
66+
"@redwoodjs/graphql-server": "8.3.0"
6767
},
6868
"peerDependenciesMeta": {
6969
"@redwoodjs/graphql-server": {

packages/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/api",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/auth0/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-auth0-api",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/auth0/setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-auth0-setup",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/auth0/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-auth0-web",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/azureActiveDirectory/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-azure-active-directory-api",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/azureActiveDirectory/setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-azure-active-directory-setup",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/azureActiveDirectory/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-azure-active-directory-web",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/clerk/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-clerk-api",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/clerk/setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-clerk-setup",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/clerk/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-clerk-web",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/custom/setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-custom-setup",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/dbAuth/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-dbauth-api",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/dbAuth/middleware/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-dbauth-middleware",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/dbAuth/setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-dbauth-setup",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/dbAuth/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-dbauth-web",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/firebase/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-firebase-api",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/firebase/setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-firebase-setup",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/firebase/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-firebase-web",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/netlify/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-netlify-api",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/netlify/setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-netlify-setup",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/netlify/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-netlify-web",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/supabase/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-supabase-api",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/supabase/middleware/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-supabase-middleware",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/supabase/setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-supabase-setup",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/supabase/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-supabase-web",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/supertokens/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-supertokens-api",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/supertokens/setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-supertokens-setup",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth-providers/supertokens/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth-supertokens-web",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/auth/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/auth",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/babel-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/babel-config",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/cli-helpers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/cli-helpers",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/cli-packages/dataMigrate/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/cli-data-migrate",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",

packages/cli-packages/storybook-vite/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redwoodjs/cli-storybook-vite",
3-
"version": "8.2.0",
3+
"version": "8.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/redwoodjs/redwood.git",
@@ -22,19 +22,19 @@
2222
"test:unit": "vitest run"
2323
},
2424
"dependencies": {
25-
"@redwoodjs/cli-helpers": "workspace:*",
26-
"@redwoodjs/project-config": "workspace:*",
27-
"@redwoodjs/telemetry": "workspace:*",
25+
"@redwoodjs/cli-helpers": "8.3.0",
26+
"@redwoodjs/project-config": "8.3.0",
27+
"@redwoodjs/telemetry": "8.3.0",
2828
"chalk": "4.1.2",
2929
"execa": "5.1.1",
3030
"storybook": "7.6.17",
31-
"storybook-framework-redwoodjs-vite": "workspace:*",
31+
"storybook-framework-redwoodjs-vite": "8.3.0",
3232
"terminal-link": "2.1.1",
3333
"vitest": "2.0.5",
3434
"yargs": "17.7.2"
3535
},
3636
"devDependencies": {
37-
"@redwoodjs/framework-tools": "workspace:*",
37+
"@redwoodjs/framework-tools": "8.3.0",
3838
"@types/yargs": "17.0.33",
3939
"tsx": "4.19.1",
4040
"typescript": "5.6.2"

0 commit comments

Comments
 (0)