1
0
mirror of synced 2026-02-08 06:00:13 -05:00

Compare commits

..

6 Commits

Author SHA1 Message Date
github-actions[bot]
0959a11fc6 Version Packages (beta) (#3930)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-11-04 15:52:57 -04:00
Siddharth Suresh
4545912936 Include resolvers in src in blitz console (#3933)
* optimse only-db flag and add src directory to find resolvers in console

* default parameter
2022-11-04 12:32:45 -04:00
Brandon Bayer
55a43ce1f8 maybe fix anon session CSRF issue + add ability to customize anon session expiry time (#3945)
* maybe fix anon session CSRF issue + add ability to customize anon session expiry time
2022-11-04 12:12:15 -04:00
Aleksandra
1569bd53e0 Upgrade tslog to latest version (#3946)
* Upgrade tslog to latest version
2022-11-04 11:59:13 -04:00
Siddharth Suresh
8e5903c0fa Fix cannot find module db error in JavaScript template (#3940)
* use AST to parse the config and allow blitz server to be in `src`
2022-11-02 09:22:49 -04:00
Brandon Bayer
11b548edee make logger optional (will default to BlitzLogger) (#3939)
* make logger optional (will default to BlitzLogger)
2022-11-01 15:28:57 -04:00
55 changed files with 208 additions and 100 deletions

View File

@@ -0,0 +1,6 @@
---
"blitz": patch
"@blitzjs/generator": patch
---
Upgrade `tslog` to the latest version

View File

@@ -0,0 +1,6 @@
---
"@blitzjs/auth": minor
"@blitzjs/rpc": minor
---
maybe fix anon session CSRF issue + add ability to customize anon session expiry time

View File

@@ -0,0 +1,6 @@
---
"blitz": patch
"@blitzjs/generator": patch
---
Fix `cannot find module db error` in JavaScript template. Replace requiring the config using `esbuild` with parsing using `jscodeshift` to get the `cliConfig` values. Added logic to find the `blitz-server` file in `src` directory

View File

@@ -0,0 +1,5 @@
---
"@blitzjs/next": minor
---
Change setupBlitzServer logger config to be optional. Will default to BlitzLogger

View File

@@ -48,6 +48,7 @@
},
"changesets": [
"afraid-dancers-juggle",
"afraid-ears-repair",
"big-phones-bow",
"blue-flowers-peel",
"blue-pigs-tan",
@@ -117,6 +118,7 @@
"healthy-rice-shout",
"heavy-apes-judge",
"heavy-cobras-own",
"heavy-students-buy",
"hip-buttons-dance",
"honest-candles-yawn",
"honest-cherries-push",
@@ -125,6 +127,7 @@
"hot-drinks-approve",
"hungry-baboons-swim",
"hungry-pens-collect",
"itchy-cups-double",
"itchy-houses-marry",
"itchy-spoons-tan",
"khaki-ducks-cheer",
@@ -135,6 +138,7 @@
"lemon-pillows-switch",
"lemon-seas-push",
"light-donkeys-double",
"light-squids-draw",
"little-pears-ring",
"long-bees-hope",
"long-dancers-jog",
@@ -162,6 +166,7 @@
"ninety-lies-press",
"ninety-pets-heal",
"ninety-rice-tickle",
"odd-bears-run",
"olive-bees-buy",
"olive-feet-rhyme",
"olive-kings-invent",
@@ -218,6 +223,7 @@
"spotty-peas-hope",
"spotty-zoos-film",
"stale-jobs-drum",
"stale-parents-yawn",
"strong-apes-reply",
"strong-keys-lie",
"stupid-walls-sell",

View File

@@ -0,0 +1,5 @@
---
"blitz": patch
---
Include resolvers in `src` directory in blitz console

View File

@@ -29,7 +29,7 @@
"@blitzjs/rpc": "workspace:*",
"@hookform/resolvers": "2.8.8",
"@prisma/client": "4.0.0",
"blitz": "workspace:2.0.0-beta.15",
"blitz": "workspace:2.0.0-beta.16",
"next": "12.2.5",
"openid-client": "5.1.8",
"prisma": "4.0.0",

View File

@@ -29,7 +29,7 @@
"@blitzjs/rpc": "workspace:*",
"@hookform/resolvers": "2.8.8",
"@prisma/client": "4.0.0",
"blitz": "workspace:2.0.0-beta.15",
"blitz": "workspace:2.0.0-beta.16",
"next": "12.2.5",
"prisma": "4.0.0",
"react": "18.2.0",

View File

@@ -21,7 +21,7 @@
"@blitzjs/config": "workspace:*",
"@blitzjs/next": "workspace:*",
"@prisma/client": "4.0.0",
"blitz": "workspace:2.0.0-beta.15",
"blitz": "workspace:2.0.0-beta.16",
"lowdb": "3.0.0",
"next": "12.2.5",
"prisma": "4.0.0",

View File

@@ -1,5 +1,19 @@
# @blitzjs/auth
## 2.0.0-beta.16
### Minor Changes
- 55a43ce1: maybe fix anon session CSRF issue + add ability to customize anon session expiry time
### Patch Changes
- Updated dependencies [1569bd53]
- Updated dependencies [ceb7db27]
- Updated dependencies [8e5903c0]
- Updated dependencies [45459129]
- blitz@2.0.0-beta.16
## 2.0.0-beta.15
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@blitzjs/auth",
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"scripts": {
"build": "unbuild",
"predev": "wait-on -d 250 ../blitz/dist/index-server.d.ts",
@@ -26,7 +26,7 @@
"@types/secure-password": "3.1.1",
"b64-lite": "1.4.0",
"bad-behavior": "1.0.1",
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"cookie": "0.4.1",
"cookie-session": "2.0.0",
"debug": "4.3.3",
@@ -40,7 +40,7 @@
"url": "0.11.0"
},
"devDependencies": {
"@blitzjs/config": "workspace:2.0.0-beta.15",
"@blitzjs/config": "workspace:2.0.0-beta.16",
"@testing-library/react": "13.0.0",
"@testing-library/react-hooks": "7.0.2",
"@types/cookie": "0.4.1",

View File

@@ -116,10 +116,17 @@ export const getPublicDataStore = (): PublicDataStore => {
return (window as any).__publicDataStore
}
export const getAntiCSRFToken = () => {
// because safari automatically deletes non-httponly cookies after 7 days
export const backupAntiCSRFTokenToLocalStorage = () => {
const cookieValue = readCookie(COOKIE_CSRF_TOKEN())
if (cookieValue) {
localStorage.setItem(LOCALSTORAGE_CSRF_TOKEN(), cookieValue)
}
}
export const getAntiCSRFToken = () => {
const cookieValue = readCookie(COOKIE_CSRF_TOKEN())
if (cookieValue) {
return cookieValue
} else {
return localStorage.getItem(LOCALSTORAGE_CSRF_TOKEN())

View File

@@ -1,7 +1,8 @@
import {SessionConfig} from "./shared/types"
import {AuthPluginOptions} from "./server"
import {SessionConfigMethods} from "./shared"
declare global {
var sessionConfig: SessionConfig
var sessionConfig: AuthPluginOptions & SessionConfigMethods
var __BLITZ_SESSION_COOKIE_PREFIX: string | undefined
var __BLITZ_SUSPENSE_ENABLED: boolean
}

View File

@@ -7,6 +7,7 @@ import {getSession} from "./auth-sessions"
interface SessionConfigOptions {
cookiePrefix?: string
sessionExpiryMinutes?: number
anonSessionExpiryMinutes?: number
method?: "essential" | "advanced"
sameSite?: "none" | "lax" | "strict"
secureCookies?: boolean
@@ -69,13 +70,14 @@ export const PrismaStorage = <Client extends PrismaClientWithSession>(
const defaultConfig_: SessionConfigOptions = {
sessionExpiryMinutes: 30 * 24 * 60, // Sessions expire after 30 days of being idle
anonSessionExpiryMinutes: 5 * 365 * 24 * 60, // Sessions expire after 5 years of being idle
method: "essential",
sameSite: "lax",
publicDataKeysToSyncAcrossSessions: ["role", "roles"],
secureCookies: !process.env.DISABLE_SECURE_COOKIES && process.env.NODE_ENV === "production",
}
interface AuthPluginOptions extends Partial<SessionConfigOptions>, IsAuthorized {
export interface AuthPluginOptions extends Partial<SessionConfigOptions>, IsAuthorized {
storage: SessionConfigMethods
}

View File

@@ -690,7 +690,10 @@ async function createNewSession(
const anonymousSessionToken = createAnonymousSessionToken(payload)
const publicDataToken = createPublicDataToken(args.publicData)
const expiresAt = addYears(new Date(), 30)
const expiresAt = addMinutes(
new Date(),
global.sessionConfig.anonSessionExpiryMinutes as number,
)
setAnonymousSessionCookie(req, res, anonymousSessionToken, expiresAt)
setCSRFCookie(req, res, antiCSRFToken, expiresAt)
setPublicDataCookie(req, res, publicDataToken, expiresAt)

View File

@@ -50,17 +50,6 @@ export interface SessionConfigMethods {
deleteSession: (handle: string) => Promise<SessionModel | undefined>
}
export interface SessionConfig extends SessionConfigMethods {
cookiePrefix?: string
sessionExpiryMinutes?: number
method?: "essential" | "advanced"
sameSite?: "none" | "lax" | "strict"
secureCookies?: boolean
domain?: string
publicDataKeysToSyncAcrossSessions?: string[]
isAuthorized: (data: {ctx: BlitzCtx; args: any}) => boolean
}
export interface SessionContextBase {
$handle: string | null
$publicData: unknown

View File

@@ -1,5 +1,17 @@
# @blitzjs/next
## 2.0.0-beta.16
### Minor Changes
- 11b548ed: Change setupBlitzServer logger config to be optional. Will default to BlitzLogger
### Patch Changes
- Updated dependencies [55a43ce1]
- Updated dependencies [ceb7db27]
- @blitzjs/rpc@2.0.0-beta.16
## 2.0.0-beta.15
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@blitzjs/next",
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"scripts": {
"build": "unbuild",
"dev": "pnpm predev && pnpm watch unbuild src --wait=0.2",
@@ -24,7 +24,7 @@
"eslint.js"
],
"dependencies": {
"@blitzjs/rpc": "2.0.0-beta.15",
"@blitzjs/rpc": "2.0.0-beta.16",
"@tanstack/react-query": "4.0.10",
"@types/hoist-non-react-statics": "3.3.1",
"debug": "4.3.3",
@@ -34,7 +34,7 @@
"supports-color": "8.1.1"
},
"devDependencies": {
"@blitzjs/config": "workspace:2.0.0-beta.15",
"@blitzjs/config": "workspace:2.0.0-beta.16",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "13.0.0",
@@ -44,7 +44,7 @@
"@types/react": "18.0.17",
"@types/react-dom": "17.0.14",
"@types/testing-library__react-hooks": "4.0.0",
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"cross-spawn": "7.0.3",
"find-up": "4.1.0",
"next": "12.2.5",

View File

@@ -52,7 +52,7 @@ export type NextApiHandler<TResult> = (
type SetupBlitzOptions = {
plugins: BlitzServerPlugin<RequestMiddleware, Ctx>[]
onError?: (err: Error) => void
logger: ReturnType<typeof BlitzLogger>
logger?: ReturnType<typeof BlitzLogger>
}
export type Redirect =
@@ -131,7 +131,7 @@ const prefetchQueryFactory = (
}
export const setupBlitzServer = ({plugins, onError, logger}: SetupBlitzOptions) => {
initializeLogger(logger)
initializeLogger(logger ?? BlitzLogger())
const middlewares = plugins.flatMap((p) => p.requestMiddlewares)
const contextMiddleware = plugins.flatMap((p) => p.contextMiddleware).filter(Boolean)

View File

@@ -1,5 +1,18 @@
# @blitzjs/rpc
## 2.0.0-beta.16
### Minor Changes
- 55a43ce1: maybe fix anon session CSRF issue + add ability to customize anon session expiry time
### Patch Changes
- ceb7db27: Add an opt-in GET request support to RPC specification by exporting a `config` object that has the `httpMethod` property.
from `query` files.
- Updated dependencies [55a43ce1]
- @blitzjs/auth@2.0.0-beta.16
## 2.0.0-beta.15
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@blitzjs/rpc",
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"scripts": {
"build": "unbuild",
"predev": "wait-on -d 400 ../blitz/dist/index-server.d.ts && wait-on -d 400 ../blitz-auth/dist/index-browser.d.ts",
@@ -20,7 +20,7 @@
"dist/**"
],
"dependencies": {
"@blitzjs/auth": "2.0.0-beta.15",
"@blitzjs/auth": "2.0.0-beta.16",
"@swc/core": "1.3.7",
"@tanstack/react-query": "4.0.10",
"b64-lite": "1.4.0",
@@ -31,11 +31,11 @@
"supports-color": "8.1.1"
},
"devDependencies": {
"@blitzjs/config": "workspace:2.0.0-beta.15",
"@blitzjs/config": "workspace:2.0.0-beta.16",
"@types/debug": "4.1.7",
"@types/react": "18.0.17",
"@types/react-dom": "17.0.14",
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",

View File

@@ -8,6 +8,7 @@ import {stringify} from "superjson"
import {
getAntiCSRFToken,
getPublicDataStore,
backupAntiCSRFTokenToLocalStorage,
HEADER_CSRF,
HEADER_CSRF_ERROR,
HEADER_PUBLIC_DATA_TOKEN,
@@ -121,6 +122,7 @@ export function __internal_buildRpcClient({
.then(async (response) => {
debug("Received request for", routePath)
if (response.headers) {
backupAntiCSRFTokenToLocalStorage()
if (response.headers.get(HEADER_PUBLIC_DATA_TOKEN)) {
getPublicDataStore().updateState()
debug("Public data updated")

View File

@@ -1,5 +1,18 @@
# blitz
## 2.0.0-beta.16
### Patch Changes
- 1569bd53: Upgrade `tslog` to the latest version
- ceb7db27: Add an opt-in GET request support to RPC specification by exporting a `config` object that has the `httpMethod` property.
from `query` files.
- 8e5903c0: Fix `cannot find module db error` in JavaScript template. Replace requiring the config using `esbuild` with parsing using `jscodeshift` to get the `cliConfig` values. Added logic to find the `blitz-server` file in `src` directory
- 45459129: Include resolvers in `src` directory in blitz console
- Updated dependencies [1569bd53]
- Updated dependencies [8e5903c0]
- @blitzjs/generator@2.0.0-beta.16
## 2.0.0-beta.15
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "blitz",
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"scripts": {
"build": "unbuild",
"dev": "pnpm run predev && watch unbuild src --wait=0.2",
@@ -25,7 +25,7 @@
"blitz": "bin/blitz"
},
"dependencies": {
"@blitzjs/generator": "2.0.0-beta.15",
"@blitzjs/generator": "2.0.0-beta.16",
"@mrleebo/prisma-ast": "0.2.6",
"@types/global-agent": "2.1.1",
"arg": "5.0.1",
@@ -69,11 +69,11 @@
"tar": "6.1.11",
"ts-node": "10.7.0",
"tsconfig-paths": "4.0.0",
"tslog": "3.3.1",
"tslog": "3.3.4",
"watchpack": "2.1.1"
},
"devDependencies": {
"@blitzjs/config": "workspace:2.0.0-beta.15",
"@blitzjs/config": "workspace:2.0.0-beta.16",
"@types/cookie": "0.4.1",
"@types/cross-spawn": "6.0.2",
"@types/debug": "4.1.7",

View File

@@ -71,32 +71,30 @@ export const forceRequire = (modulePath: string) => {
}
}
export async function getBlitzModulePaths() {
export async function getBlitzModulePaths(onlyDb = false) {
const projectRoot = getProjectRootSync()
const {globby} = await import("globby")
const paths = await globby(
[
"app/**/{queries,mutations}/**/*.{js,ts,tsx}",
"utils/*.{js,ts,tsx}",
"jobs/**/*.{js,ts,tsx}",
"integrations/**/*.{js,ts,tsx}",
"!**/*.test.*",
"!**/*.spec.*",
],
{cwd: projectRoot, gitignore: true},
)
paths.push(getDbFolder())
debug("Paths", paths)
const paths = [getDbFolder()]
if (!onlyDb) {
const {globby} = await import("globby")
paths.push(
...(await globby(
[
"{app,src}/**/{queries,mutations}/**/*.{js,ts,tsx}",
"utils/*.{js,ts,tsx}",
"jobs/**/*.{js,ts,tsx}",
"integrations/**/*.{js,ts,tsx}",
"!**/*.test.*",
"!**/*.spec.*",
],
{cwd: projectRoot, gitignore: true},
)),
)
}
return [...paths.map((p: string) => path.join(projectRoot, p))]
}
export const loadBlitz = async (onlyDb: boolean, module = "") => {
let paths = await getBlitzModulePaths()
if (onlyDb) {
paths = paths.filter((p) => p.includes(getDbFolder()))
}
let paths = await getBlitzModulePaths(onlyDb)
if (module) {
paths = paths.filter((p) => module.includes(p) || p.includes(module))

View File

@@ -1,5 +1,16 @@
# @blitzjs/codemod
## 2.0.0-beta.16
### Patch Changes
- Updated dependencies [1569bd53]
- Updated dependencies [ceb7db27]
- Updated dependencies [8e5903c0]
- Updated dependencies [45459129]
- blitz@2.0.0-beta.16
- @blitzjs/generator@2.0.0-beta.16
## 2.0.0-beta.15
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@blitzjs/codemod",
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"scripts": {
"build": "unbuild",
"dev": "watch unbuild src --wait=0.2",
@@ -25,9 +25,9 @@
"@babel/plugin-proposal-class-properties": "7.17.12",
"@babel/plugin-syntax-jsx": "7.17.12",
"@babel/plugin-syntax-typescript": "7.17.12",
"@blitzjs/generator": "2.0.0-beta.15",
"@blitzjs/generator": "2.0.0-beta.16",
"arg": "5.0.1",
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"chalk": "^4.1.0",
"cross-spawn": "7.0.3",
"debug": "4.3.3",

View File

@@ -1,5 +1,7 @@
# @blitzjs/config
## 2.0.0-beta.16
## 2.0.0-beta.15
## 2.0.0-beta.14

View File

@@ -1,7 +1,7 @@
{
"name": "@blitzjs/config",
"private": true,
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.9.1",

View File

@@ -1,5 +1,12 @@
# @blitzjs/generator
## 2.0.0-beta.16
### Patch Changes
- 1569bd53: Upgrade `tslog` to the latest version
- 8e5903c0: Fix `cannot find module db error` in JavaScript template. Replace requiring the config using `esbuild` with parsing using `jscodeshift` to get the `cliConfig` values. Added logic to find the `blitz-server` file in `src` directory
## 2.0.0-beta.15
## 2.0.0-beta.14

View File

@@ -1,6 +1,6 @@
{
"name": "@blitzjs/generator",
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"scripts": {
"dev": "watch unbuild src --wait=0.2",
"build": "unbuild && pnpm build:templates",
@@ -42,12 +42,12 @@
"prettier": "^2.5.1",
"recast": "0.20.5",
"supports-color": "8.1.1",
"tslog": "3.3.1",
"tslog": "3.3.4",
"username": "5.1.0",
"vinyl": "2.2.1"
},
"devDependencies": {
"@blitzjs/config": "2.0.0-beta.15",
"@blitzjs/config": "2.0.0-beta.16",
"@juanm04/cpx": "2.0.1",
"@types/babel__core": "7.1.19",
"@types/diff": "5.0.2",

View File

@@ -25,7 +25,7 @@
"@typescript-eslint/parser": "5.9.1"
},
"devDependencies": {
"@blitzjs/config": "2.0.0-beta.15",
"@blitzjs/config": "2.0.0-beta.16",
"@types/react": "18.0.17",
"@types/react-dom": "17.0.14",
"react": "18.2.0",

26
pnpm-lock.yaml generated
View File

@@ -450,7 +450,7 @@ importers:
"@vitejs/plugin-react": 1.3.0
delay: 5.0.0
eslint: 7.32.0
eslint-config-next: 13.0.0_hrkuebk64jiu2ut2d2sm4oylnu
eslint-config-next: 13.0.1_hrkuebk64jiu2ut2d2sm4oylnu
eslint-plugin-testing-library: 5.0.1_hrkuebk64jiu2ut2d2sm4oylnu
jsdom: 19.0.0
typescript: 4.6.3
@@ -715,7 +715,7 @@ importers:
test-listen: 1.1.0
ts-node: 10.7.0
tsconfig-paths: 4.0.0
tslog: 3.3.1
tslog: 3.3.4
typescript: ^4.5.3
unbuild: 0.7.6
watch: 1.0.2
@@ -766,7 +766,7 @@ importers:
tar: 6.1.11
ts-node: 10.7.0_typescript@4.6.3
tsconfig-paths: 4.0.0
tslog: 3.3.1
tslog: 3.3.4
watchpack: 2.1.1
devDependencies:
"@blitzjs/config": link:../config
@@ -1077,7 +1077,7 @@ importers:
react: 18.2.0
recast: 0.20.5
supports-color: 8.1.1
tslog: 3.3.1
tslog: 3.3.4
typescript: ^4.5.3
unbuild: 0.6.9
username: 5.1.0
@@ -1106,7 +1106,7 @@ importers:
prettier: 2.6.2
recast: 0.20.5
supports-color: 8.1.1
tslog: 3.3.1
tslog: 3.3.4
username: 5.1.0
vinyl: 2.2.1
devDependencies:
@@ -2608,7 +2608,7 @@ packages:
peerDependencies:
"@babel/core": ^7.0.0-0
dependencies:
"@babel/core": 7.12.10_supports-color@8.1.1
"@babel/core": 7.12.10
"@babel/helper-plugin-utils": 7.17.12
dev: false
@@ -4489,10 +4489,10 @@ packages:
dependencies:
glob: 7.1.7
/@next/eslint-plugin-next/13.0.0:
/@next/eslint-plugin-next/13.0.1:
resolution:
{
integrity: sha512-z+gnX4Zizatqatc6f4CQrcC9oN8Us3Vrq/OLyc98h7K/eWctrnV91zFZodmJHUjx0cITY8uYM7LXD7IdYkg3kg==,
integrity: sha512-t3bggJhKE/oB4pvMM7hMNnmIpIqsMGJ+OLklk8llOkSeXtfCV+MBQbhImWxf5QODkxNAmMK3IJGAAecQhBTc/Q==,
}
dependencies:
glob: 7.1.7
@@ -9975,10 +9975,10 @@ packages:
- supports-color
dev: false
/eslint-config-next/13.0.0_hrkuebk64jiu2ut2d2sm4oylnu:
/eslint-config-next/13.0.1_hrkuebk64jiu2ut2d2sm4oylnu:
resolution:
{
integrity: sha512-y2nqWS2tycWySdVhb+rhp6CuDmDazGySqkzzQZf3UTyfHyC7og1m5m/AtMFwCo5mtvDqvw1BENin52kV9733lg==,
integrity: sha512-/N9UpSwkbEMj5pIiB235p7QHaSW08ta/iKVaIHF44wufxr+PuJVLwg5LzlAaQbmCZCBpYvVttl3ZxTusP1g2sg==,
}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
@@ -9987,7 +9987,7 @@ packages:
typescript:
optional: true
dependencies:
"@next/eslint-plugin-next": 13.0.0
"@next/eslint-plugin-next": 13.0.1
"@rushstack/eslint-patch": 1.1.3
"@typescript-eslint/parser": 5.28.0_hrkuebk64jiu2ut2d2sm4oylnu
eslint: 7.32.0
@@ -18443,10 +18443,10 @@ packages:
integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==,
}
/tslog/3.3.1:
/tslog/3.3.4:
resolution:
{
integrity: sha512-An3uyXX95uU/X7v5H6G9OKW6ip/gVOpvsERGJ/nR4Or5TP5GwoI9nUjhNWEc8mJOWC7uhPMg2UzkrVDUtadELg==,
integrity: sha512-N0HHuHE0e/o75ALfkioFObknHR5dVchUad4F0XyFf3gXJYB++DewEzwGI/uIOM216E5a43ovnRNEeQIq9qgm4Q==,
}
engines: {node: ">=10"}
dependencies:

View File

@@ -23,7 +23,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -22,7 +22,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -24,7 +24,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -24,7 +24,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -22,7 +22,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -24,6 +24,6 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15"
"blitz": "2.0.0-beta.16"
}
}

View File

@@ -24,6 +24,6 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15"
"blitz": "2.0.0-beta.16"
}
}

View File

@@ -23,7 +23,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -22,7 +22,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0",
"uuid": "^8.3.1"
},

View File

@@ -23,7 +23,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -23,7 +23,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -23,7 +23,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -23,6 +23,6 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15"
"blitz": "2.0.0-beta.16"
}
}

View File

@@ -22,6 +22,6 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15"
"blitz": "2.0.0-beta.16"
}
}

View File

@@ -23,7 +23,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -22,6 +22,6 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15"
"blitz": "2.0.0-beta.16"
}
}

View File

@@ -22,7 +22,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0",
"uuid": "^8.3.1"
},

View File

@@ -24,7 +24,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -24,7 +24,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -22,7 +22,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -23,7 +23,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {

View File

@@ -25,7 +25,7 @@
},
"homepage": "https://github.com/blitz-js/blitz#readme",
"dependencies": {
"blitz": "2.0.0-beta.15",
"blitz": "2.0.0-beta.16",
"jscodeshift": "0.13.0"
},
"devDependencies": {