1
0
mirror of synced 2026-02-07 21:00:08 -05:00

Compare commits

...

2 Commits

Author SHA1 Message Date
github-actions[bot]
107254ece9 Version Packages (#4425)
* Version Packages

* pnpm lock update

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Siddharth Suresh <siddh.suresh@gmail.com>
2025-02-24 13:38:29 +00:00
Siddharth Suresh
816330b9d0 fix: Overriden custom cookies used inside withBlitzAuth (#4424)
* fix: use append rather than set

* Create ninety-stingrays-double.md
2025-02-24 18:47:50 +05:30
33 changed files with 318 additions and 415 deletions

View File

@@ -12,15 +12,15 @@
"schema": "prisma/schema.prisma" "schema": "prisma/schema.prisma"
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@hookform/error-message": "2.0.0", "@hookform/error-message": "2.0.0",
"@hookform/resolvers": "2.9.10", "@hookform/resolvers": "2.9.10",
"@prisma/client": "^4.5.0", "@prisma/client": "^4.5.0",
"@tanstack/react-query": "5.51.1", "@tanstack/react-query": "5.51.1",
"blitz": "3.0.0", "blitz": "3.0.1",
"flatted": "3.2.7", "flatted": "3.2.7",
"next": "15.0.1", "next": "15.0.1",
"prisma": "^4.5.0", "prisma": "^4.5.0",

View File

@@ -23,14 +23,14 @@
] ]
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@hookform/error-message": "2.0.0", "@hookform/error-message": "2.0.0",
"@hookform/resolvers": "2.9.10", "@hookform/resolvers": "2.9.10",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "15.0.1", "next": "15.0.1",
"openid-client": "5.2.1", "openid-client": "5.2.1",
"prisma": "6.1.0", "prisma": "6.1.0",

View File

@@ -24,14 +24,14 @@
] ]
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@hookform/error-message": "2.0.0", "@hookform/error-message": "2.0.0",
"@hookform/resolvers": "2.9.10", "@hookform/resolvers": "2.9.10",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "15.0.1", "next": "15.0.1",
"next-auth": "4.24.7", "next-auth": "4.24.7",
"prisma": "6.1.0", "prisma": "6.1.0",

View File

@@ -16,14 +16,14 @@
"schema": "./db/schema.prisma" "schema": "./db/schema.prisma"
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"@types/jest": "29.2.2", "@types/jest": "29.2.2",
"@types/passport-twitter": "1.0.37", "@types/passport-twitter": "1.0.37",
"blitz": "3.0.0", "blitz": "3.0.1",
"jest": "29.3.0", "jest": "29.3.0",
"jest-environment-jsdom": "29.3.0", "jest-environment-jsdom": "29.3.0",
"next": "15.0.1", "next": "15.0.1",

View File

@@ -17,14 +17,14 @@
"prisma:studio": "prisma studio" "prisma:studio": "prisma studio"
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@hookform/error-message": "2.0.0", "@hookform/error-message": "2.0.0",
"@hookform/resolvers": "2.9.10", "@hookform/resolvers": "2.9.10",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"delay": "5.0.0", "delay": "5.0.0",
"next": "15.0.1", "next": "15.0.1",
"prisma": "6.1.0", "prisma": "6.1.0",

View File

@@ -17,11 +17,11 @@
"prisma:studio": "prisma studio" "prisma:studio": "prisma studio"
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"lowdb": "3.0.0", "lowdb": "3.0.0",
"next": "15.0.1", "next": "15.0.1",
"prisma": "6.1.0", "prisma": "6.1.0",

View File

@@ -16,11 +16,11 @@
"schema": "db/schema.prisma" "schema": "db/schema.prisma"
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"lowdb": "2.1.0", "lowdb": "2.1.0",
"next": "15.0.1", "next": "15.0.1",
"prisma": "6.1.0", "prisma": "6.1.0",
@@ -28,7 +28,7 @@
"react-dom": "19.0.0" "react-dom": "19.0.0"
}, },
"devDependencies": { "devDependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@next/bundle-analyzer": "12.0.8", "@next/bundle-analyzer": "12.0.8",
"@types/express": "4.17.13", "@types/express": "4.17.13",
"@types/fs-extra": "9.0.13", "@types/fs-extra": "9.0.13",

View File

@@ -11,10 +11,10 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next" "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next"
}, },
"dependencies": { "dependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "15.0.1", "next": "15.0.1",
"react": "19.0.0", "react": "19.0.0",
"react-dom": "19.0.0" "react-dom": "19.0.0"

View File

@@ -17,12 +17,12 @@
"prisma:studio": "prisma studio" "prisma:studio": "prisma studio"
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"lowdb": "2.1.0", "lowdb": "2.1.0",
"next": "15.0.1", "next": "15.0.1",
"prisma": "6.1.0", "prisma": "6.1.0",

View File

@@ -16,11 +16,11 @@
"prisma:studio": "prisma studio" "prisma:studio": "prisma studio"
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"lowdb": "3.0.0", "lowdb": "3.0.0",
"next": "15.0.1", "next": "15.0.1",
"prisma": "6.1.0", "prisma": "6.1.0",
@@ -28,7 +28,7 @@
"react-dom": "19.0.0" "react-dom": "19.0.0"
}, },
"devDependencies": { "devDependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@next/bundle-analyzer": "12.0.8", "@next/bundle-analyzer": "12.0.8",
"@types/express": "4.17.13", "@types/express": "4.17.13",
"@types/fs-extra": "9.0.13", "@types/fs-extra": "9.0.13",

View File

@@ -8,13 +8,13 @@
"clean": "rm -rf .turbo && rm -rf node_modules" "clean": "rm -rf .turbo && rm -rf node_modules"
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"@tanstack/react-query": "5.51.1", "@tanstack/react-query": "5.51.1",
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "15.0.1", "next": "15.0.1",
"prisma": "6.1.0", "prisma": "6.1.0",
"react": "19.0.0", "react": "19.0.0",

View File

@@ -16,10 +16,10 @@
"schema": "db/schema.prisma" "schema": "db/schema.prisma"
}, },
"dependencies": { "dependencies": {
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"lowdb": "3.0.0", "lowdb": "3.0.0",
"next": "15.0.1", "next": "15.0.1",
"prisma": "6.1.0", "prisma": "6.1.0",
@@ -27,7 +27,7 @@
"react-dom": "19.0.0" "react-dom": "19.0.0"
}, },
"devDependencies": { "devDependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@next/bundle-analyzer": "12.0.8", "@next/bundle-analyzer": "12.0.8",
"@types/express": "4.17.13", "@types/express": "4.17.13",
"@types/fs-extra": "9.0.13", "@types/fs-extra": "9.0.13",

View File

@@ -7,10 +7,10 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next" "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next"
}, },
"dependencies": { "dependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "15.0.1", "next": "15.0.1",
"react": "19.0.0", "react": "19.0.0",
"react-dom": "19.0.0" "react-dom": "19.0.0"

View File

@@ -7,10 +7,10 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next" "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next"
}, },
"dependencies": { "dependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "15.0.1", "next": "15.0.1",
"react": "19.0.0", "react": "19.0.0",
"react-dom": "19.0.0" "react-dom": "19.0.0"

View File

@@ -16,11 +16,11 @@
"schema": "db/schema.prisma" "schema": "db/schema.prisma"
}, },
"dependencies": { "dependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/next": "3.0.0", "@blitzjs/next": "3.0.1",
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@prisma/client": "6.1.0", "@prisma/client": "6.1.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"lowdb": "3.0.0", "lowdb": "3.0.0",
"next": "15.0.1", "next": "15.0.1",
"prisma": "6.1.0", "prisma": "6.1.0",
@@ -28,7 +28,7 @@
"react-dom": "19.0.0" "react-dom": "19.0.0"
}, },
"devDependencies": { "devDependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@next/bundle-analyzer": "12.0.8", "@next/bundle-analyzer": "12.0.8",
"@types/express": "4.17.13", "@types/express": "4.17.13",
"@types/fs-extra": "9.0.13", "@types/fs-extra": "9.0.13",

View File

@@ -3,9 +3,9 @@
"version": "0.0.0", "version": "0.0.0",
"private": true, "private": true,
"devDependencies": { "devDependencies": {
"@blitzjs/config": "workspace:3.0.0", "@blitzjs/config": "workspace:3.0.1",
"@blitzjs/next": "workspace:3.0.0", "@blitzjs/next": "workspace:3.0.1",
"@blitzjs/rpc": "workspace:3.0.0", "@blitzjs/rpc": "workspace:3.0.1",
"@tanstack/react-query": "4.13.0", "@tanstack/react-query": "4.13.0",
"@testing-library/react": "16.0.1", "@testing-library/react": "16.0.1",
"@types/express": "4.17.13", "@types/express": "4.17.13",

View File

@@ -1,5 +1,12 @@
# @blitzjs/auth # @blitzjs/auth
## 3.0.1
### Patch Changes
- 816330b9d: fix: Overriden custom cookies used inside `withBlitzAuth`
- blitz@3.0.1
## 3.0.0 ## 3.0.0
### Major Changes ### Major Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@blitzjs/auth", "name": "@blitzjs/auth",
"version": "3.0.0", "version": "3.0.1",
"homepage": "https://blitzjs.com/", "homepage": "https://blitzjs.com/",
"repository": { "repository": {
"type": "git", "type": "git",
@@ -50,7 +50,7 @@
"url": "0.11.0" "url": "0.11.0"
}, },
"peerDependencies": { "peerDependencies": {
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "*", "next": "*",
"next-auth": "*", "next-auth": "*",
"secure-password": "4.0.0" "secure-password": "4.0.0"
@@ -67,14 +67,14 @@
} }
}, },
"devDependencies": { "devDependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@testing-library/react": "16.0.1", "@testing-library/react": "16.0.1",
"@types/cookie": "0.4.1", "@types/cookie": "0.4.1",
"@types/debug": "4.1.7", "@types/debug": "4.1.7",
"@types/jsonwebtoken": "8.5.8", "@types/jsonwebtoken": "8.5.8",
"@types/react": "npm:types-react@19.0.0", "@types/react": "npm:types-react@19.0.0",
"@types/react-dom": "npm:types-react-dom@19.0.0", "@types/react-dom": "npm:types-react-dom@19.0.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "15.0.1", "next": "15.0.1",
"next-auth": "4.24.7", "next-auth": "4.24.7",
"react": "19.0.0", "react": "19.0.0",

View File

@@ -466,7 +466,7 @@ export class SessionContextClass implements SessionContext {
} }
const cookieHeaders = this._headers.get("set-cookie") const cookieHeaders = this._headers.get("set-cookie")
if (response instanceof Response) { if (response instanceof Response) {
response.headers.set("Set-Cookie", cookieHeaders!) response.headers.append("Set-Cookie", cookieHeaders!)
} else { } else {
response.setHeader("Set-Cookie", splitCookiesString(cookieHeaders!)) response.setHeader("Set-Cookie", splitCookiesString(cookieHeaders!))
} }

View File

@@ -1,5 +1,12 @@
# @blitzjs/next # @blitzjs/next
## 3.0.1
### Patch Changes
- @blitzjs/rpc@3.0.1
- blitz@3.0.1
## 3.0.0 ## 3.0.0
### Major Changes ### Major Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@blitzjs/next", "name": "@blitzjs/next",
"version": "3.0.0", "version": "3.0.1",
"homepage": "https://blitzjs.com/", "homepage": "https://blitzjs.com/",
"repository": { "repository": {
"type": "git", "type": "git",
@@ -29,7 +29,7 @@
"eslint.js" "eslint.js"
], ],
"dependencies": { "dependencies": {
"@blitzjs/rpc": "3.0.0", "@blitzjs/rpc": "3.0.1",
"@types/hoist-non-react-statics": "3.3.1", "@types/hoist-non-react-statics": "3.3.1",
"copy-webpack-plugin": "11.0.0", "copy-webpack-plugin": "11.0.0",
"debug": "4.3.3", "debug": "4.3.3",
@@ -39,13 +39,13 @@
"supports-color": "8.1.1" "supports-color": "8.1.1"
}, },
"peerDependencies": { "peerDependencies": {
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "*", "next": "*",
"react": "*", "react": "*",
"tslog": "4.9.0" "tslog": "4.9.0"
}, },
"devDependencies": { "devDependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@testing-library/dom": "8.13.0", "@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.3", "@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "16.0.1", "@testing-library/react": "16.0.1",
@@ -55,7 +55,7 @@
"@types/react": "npm:types-react@19.0.0", "@types/react": "npm:types-react@19.0.0",
"@types/react-dom": "npm:types-react-dom@19.0.0", "@types/react-dom": "npm:types-react-dom@19.0.0",
"@types/testing-library__react-hooks": "4.0.0", "@types/testing-library__react-hooks": "4.0.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"cross-spawn": "7.0.3", "cross-spawn": "7.0.3",
"find-up": "4.1.0", "find-up": "4.1.0",
"next": "15.0.1", "next": "15.0.1",

View File

@@ -1,5 +1,11 @@
# @blitzjs/rpc # @blitzjs/rpc
## 3.0.1
### Patch Changes
- blitz@3.0.1
## 3.0.0 ## 3.0.0
### Major Changes ### Major Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@blitzjs/rpc", "name": "@blitzjs/rpc",
"version": "3.0.0", "version": "3.0.1",
"homepage": "https://blitzjs.com/", "homepage": "https://blitzjs.com/",
"repository": { "repository": {
"type": "git", "type": "git",
@@ -37,18 +37,18 @@
}, },
"peerDependencies": { "peerDependencies": {
"@tanstack/query-core": "5.51.1", "@tanstack/query-core": "5.51.1",
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "*", "next": "*",
"react": "*" "react": "*"
}, },
"devDependencies": { "devDependencies": {
"@blitzjs/auth": "3.0.0", "@blitzjs/auth": "3.0.1",
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@tanstack/query-core": "5.51.1", "@tanstack/query-core": "5.51.1",
"@types/debug": "4.1.7", "@types/debug": "4.1.7",
"@types/react": "npm:types-react@19.0.0", "@types/react": "npm:types-react@19.0.0",
"@types/react-dom": "npm:types-react-dom@19.0.0", "@types/react-dom": "npm:types-react-dom@19.0.0",
"blitz": "3.0.0", "blitz": "3.0.1",
"next": "15.0.1", "next": "15.0.1",
"react": "19.0.0", "react": "19.0.0",
"react-dom": "19.0.0", "react-dom": "19.0.0",

View File

@@ -1,5 +1,11 @@
# blitz # blitz
## 3.0.1
### Patch Changes
- @blitzjs/generator@3.0.1
## 3.0.0 ## 3.0.0
### Major Changes ### Major Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "blitz", "name": "blitz",
"version": "3.0.0", "version": "3.0.1",
"homepage": "https://blitzjs.com/", "homepage": "https://blitzjs.com/",
"repository": { "repository": {
"type": "git", "type": "git",
@@ -29,7 +29,7 @@
"blitz": "bin/blitz" "blitz": "bin/blitz"
}, },
"dependencies": { "dependencies": {
"@blitzjs/generator": "3.0.0", "@blitzjs/generator": "3.0.1",
"@mrleebo/prisma-ast": "0.4.1", "@mrleebo/prisma-ast": "0.4.1",
"@types/global-agent": "2.1.1", "@types/global-agent": "2.1.1",
"arg": "5.0.1", "arg": "5.0.1",
@@ -79,7 +79,7 @@
"watchpack": "2.1.1" "watchpack": "2.1.1"
}, },
"devDependencies": { "devDependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@types/cookie": "0.4.1", "@types/cookie": "0.4.1",
"@types/cross-spawn": "6.0.2", "@types/cross-spawn": "6.0.2",
"@types/debug": "4.1.7", "@types/debug": "4.1.7",

View File

@@ -1,5 +1,12 @@
# @blitzjs/codemod # @blitzjs/codemod
## 3.0.1
### Patch Changes
- @blitzjs/generator@3.0.1
- blitz@3.0.1
## 3.0.0 ## 3.0.0
### Major Changes ### Major Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@blitzjs/codemod", "name": "@blitzjs/codemod",
"version": "3.0.0", "version": "3.0.1",
"scripts": { "scripts": {
"build": "unbuild", "build": "unbuild",
"dev": "watch unbuild src --wait=0.2", "dev": "watch unbuild src --wait=0.2",
@@ -25,9 +25,9 @@
"@babel/plugin-proposal-class-properties": "7.17.12", "@babel/plugin-proposal-class-properties": "7.17.12",
"@babel/plugin-syntax-jsx": "7.17.12", "@babel/plugin-syntax-jsx": "7.17.12",
"@babel/plugin-syntax-typescript": "7.17.12", "@babel/plugin-syntax-typescript": "7.17.12",
"@blitzjs/generator": "3.0.0", "@blitzjs/generator": "3.0.1",
"arg": "5.0.1", "arg": "5.0.1",
"blitz": "3.0.0", "blitz": "3.0.1",
"chalk": "^4.1.0", "chalk": "^4.1.0",
"cross-spawn": "7.0.3", "cross-spawn": "7.0.3",
"debug": "4.3.3", "debug": "4.3.3",
@@ -38,7 +38,7 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/preset-env": "7.12.10", "@babel/preset-env": "7.12.10",
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@types/jscodeshift": "0.11.2", "@types/jscodeshift": "0.11.2",
"@types/node": "18.11.9", "@types/node": "18.11.9",
"ast-types": "0.14.2", "ast-types": "0.14.2",

View File

@@ -1,5 +1,7 @@
# @blitzjs/config # @blitzjs/config
## 3.0.1
## 3.0.0 ## 3.0.0
### Major Changes ### Major Changes

View File

@@ -1,7 +1,7 @@
{ {
"name": "@blitzjs/config", "name": "@blitzjs/config",
"private": true, "private": true,
"version": "3.0.0", "version": "3.0.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/eslint-plugin": "5.42.1", "@typescript-eslint/eslint-plugin": "5.42.1",

View File

@@ -1,5 +1,7 @@
# @blitzjs/generator # @blitzjs/generator
## 3.0.1
## 3.0.0 ## 3.0.0
### Major Changes ### Major Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@blitzjs/generator", "name": "@blitzjs/generator",
"version": "3.0.0", "version": "3.0.1",
"homepage": "https://blitzjs.com/", "homepage": "https://blitzjs.com/",
"repository": { "repository": {
"type": "git", "type": "git",
@@ -54,7 +54,7 @@
"zod": "3.23.8" "zod": "3.23.8"
}, },
"devDependencies": { "devDependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@juanm04/cpx": "2.0.1", "@juanm04/cpx": "2.0.1",
"@types/babel__core": "7.1.19", "@types/babel__core": "7.1.19",
"@types/diff": "5.0.2", "@types/diff": "5.0.2",

View File

@@ -25,7 +25,7 @@
"@typescript-eslint/parser": "5.9.1" "@typescript-eslint/parser": "5.9.1"
}, },
"devDependencies": { "devDependencies": {
"@blitzjs/config": "3.0.0", "@blitzjs/config": "3.0.1",
"@types/react": "npm:types-react@19.0.0", "@types/react": "npm:types-react@19.0.0",
"@types/react-dom": "npm:types-react-dom@19.0.0", "@types/react-dom": "npm:types-react-dom@19.0.0",
"react": "19.0.0", "react": "19.0.0",

498
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff