Skip to content
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

Blitz recipe-install support for NextJS App Router projects #4287

Closed
wants to merge 44 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
737630b
Initial commit working towards making the Blitz installer compatible …
Doc0x1 Jan 21, 2024
019bf27
Changeset Update
Doc0x1 Jan 21, 2024
f25aac0
Added codemod support for legacy projects with a /src folder (#4290)
Doc0x1 Jan 25, 2024
0a8d4bf
(meta) added @Doc0x1 as contributor
blitzjs-bot Jan 25, 2024
dd604c7
perf: add filter to query only non expired sessions (#4288)
siddhsuresh Feb 6, 2024
28a7904
feat: export `BlitzServerMiddleware` from blitz-next (#4296)
siddhsuresh Feb 6, 2024
71b9950
fix: ajv dependency was not installed with blitz new (#4297)
siddhsuresh Feb 6, 2024
e8f564e
Version Packages (#4292)
github-actions[bot] Feb 6, 2024
6f54841
fix: getBlitzContext() can only be used in React Server Components in…
siddhsuresh Feb 16, 2024
8a41753
feat: remove restriction to use secure cookies in localhost (#4300)
siddhsuresh Feb 16, 2024
6f44c23
Version Packages (#4301)
github-actions[bot] Feb 17, 2024
76a2544
fix: process.kill("SIGABRT") not supported on windows (#4308)
lmisea Mar 7, 2024
0f5297f
(meta) added @lmisea as contributor
blitzjs-bot Mar 7, 2024
744242f
chore: remove `--no-frozen-lockfile` install step for release workflow
siddhsuresh Mar 7, 2024
5a587a6
fix: production issue (#4311)
gengjiawen Apr 1, 2024
a674897
(meta) added @gengjiawen as contributor
blitzjs-bot Apr 1, 2024
60a4d90
chore: override version of mime blocking release CI
siddhsuresh Apr 2, 2024
9b075db
chore: upgrade release CI to latest versions
siddhsuresh Apr 2, 2024
bbe1a54
Version Packages (#4316)
github-actions[bot] Apr 2, 2024
178c152
fix: pages and app directory - `Uncaught Error: DYNAMIC_SERVER_USAGE`…
siddhsuresh Apr 2, 2024
5d9570f
chore: update dependencies of CI workflows
siddhsuresh Apr 3, 2024
451ead0
chore: try fixing the pr release for usage with forks
siddhsuresh Apr 3, 2024
ee7bf87
Turbopack support for Blitz (#4314)
timneutkens Apr 5, 2024
b7dab1d
(meta) added @timneutkens as contributor
blitzjs-bot Apr 5, 2024
19afc57
internal: unblock the changeset release
siddhsuresh Apr 5, 2024
22e402a
Version Packages (#4320)
github-actions[bot] Apr 5, 2024
7755546
fix: add missing host in next-auth adapter (#4325)
siddhsuresh Apr 17, 2024
5e61a16
bug: merge existing and blitz turbo config (#4323)
siddhsuresh Apr 17, 2024
6e8eeb1
Version Packages (#4327)
github-actions[bot] Apr 17, 2024
5a14306
regression: export `enhancePrisma` from the brower (#4326)
siddhsuresh May 9, 2024
ad94bee
Version Packages (#4333)
github-actions[bot] May 9, 2024
0df3683
Delete .node-version (#4340)
tordans May 27, 2024
318e974
feat: upgrade to latest next-auth v4 version (#4345)
siddhsuresh Jun 3, 2024
3193bde
Version Packages (#4346)
github-actions[bot] Jun 4, 2024
721461a
chore: update pnpm lock to latest
siddhsuresh Jun 4, 2024
2f3c552
fix: use the correct SHA for `pr-release.yml` (#4348)
avivkeller Jun 13, 2024
f02469a
(meta) added @RedYetiDev as contributor
blitzjs-bot Jun 13, 2024
e0cfa32
fix: use correct bash syntax (#4349)
avivkeller Jun 26, 2024
2560175
chore: remove check for comment time in PR release action (#4351)
siddhsuresh Jun 26, 2024
43bc6df
Initial commit working towards making the Blitz installer compatible …
Doc0x1 Jan 21, 2024
34f4085
Upstream Rebase
Doc0x1 Jan 21, 2024
bfbadae
Updated tailwind.config.js
Doc0x1 Jun 27, 2024
c315c1e
Merge branch 'main' of github.com:Doc0x1/blitz
Doc0x1 Jun 27, 2024
0289d65
pnpm-lock.yaml fix
Doc0x1 Jun 27, 2024
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
50 changes: 50 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -4024,6 +4024,56 @@
"doc",
"code"
]
},
{
"login": "Doc0x1",
"name": "Doc0x1",
"avatar_url": "https://avatars.githubusercontent.com/u/19937034?v=4",
"profile": "https://hacknex.us",
"contributions": [
"doc",
"code"
]
},
{
"login": "lmisea",
"name": "Luis Isea",
"avatar_url": "https://avatars.githubusercontent.com/u/106825636?v=4",
"profile": "https://github.com/lmisea",
"contributions": [
"doc",
"code"
]
},
{
"login": "gengjiawen",
"name": "Jiawen Geng",
"avatar_url": "https://avatars.githubusercontent.com/u/3759816?v=4",
"profile": "https://www.gengjiawen.com",
"contributions": [
"doc",
"code"
]
},
{
"login": "timneutkens",
"name": "Tim Neutkens",
"avatar_url": "https://avatars.githubusercontent.com/u/6324199?v=4",
"profile": "https://timn.tech",
"contributions": [
"doc",
"code",
"test"
]
},
{
"login": "RedYetiDev",
"name": "Aviv Keller",
"avatar_url": "https://avatars.githubusercontent.com/u/38299977?v=4",
"profile": "https://redyetidev.github.io",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7,
Expand Down
6 changes: 6 additions & 0 deletions .changeset/curvy-rules-bake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"blitz": minor
"@blitzjs/recipe-tailwind": minor
---

Added NextJS App Router path support to blitz/installer/utils/paths.ts to check for and provide appropriate files to recipes for the App Router. Primarily a check function to determine if the project is using a root layout file, because if so, that's an App Router setup. Changed the Tailwind recipe to accomodate for NextJS's globals.css file, which is located in /app or /src/app, decided to just add a next/ folder with a globals.css file in it for that. In the index.ts file for the recipe I added a couple of check functions (example: `templatePath: isUsingAppRouter() ? join(__dirname, "next") : join(__dirname, "templates", "styles")`). These changes are mainly just to attempt to solve the issue, relatively speaking refactoring will likely be the easier part. There's still much to do before this issue can be considered "fixed", but I figured this was an adequate start for now. As I get more familiar with the recipe system and all the moving parts my commits will become much more substantial than this one.
26 changes: 16 additions & 10 deletions .github/workflows/pr-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,29 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: resolve pr refs
id: refs
uses: eficode/resolve-pr-refs@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Fetch PR information
id: pr_info
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pr="$(gh api repos/${{ github.repository }}/pulls/${{ github.event.issue.number }})"
head_sha="$(echo "$pr" | jq -r .head.sha)"

echo "head_sha=$head_sha" >> $GITHUB_OUTPUT

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ steps.refs.outputs.head_ref }}
ref: ${{ steps.pr_info.outputs.head_sha }}

- name: Setup PNPM
uses: pnpm/[email protected]
uses: pnpm/action-setup@646cdf48217256a3d0b80361c5a50727664284f2
with:
version: 8.9.0

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
registry-url: "https://registry.npmjs.org"
cache: "pnpm"

Expand Down
21 changes: 8 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Node.js 16.x
uses: actions/setup-node@v2
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x

- name: Creating .npmrc
run: |
Expand All @@ -37,8 +37,10 @@ jobs:
- name: Pre-publish
uses: pnpm/action-setup@646cdf48217256a3d0b80361c5a50727664284f2
with:
version: 6.32.6
- run: pnpm install --no-frozen-lockfile
version: 8.9.0
- run: pnpm install
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- run: pnpm build

- name: Create Release Pull Request
Expand All @@ -49,10 +51,3 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

# - name: Github Release
# uses: release-drafter/[email protected]
# with:
# config-name: release-drafter.yml
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 0 additions & 1 deletion .node-version

This file was deleted.

9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<img alt="" src="https://img.shields.io/badge/Join%20our%20community-6700EB.svg?style=for-the-badge&labelColor=000000&logoWidth=20&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAQ9SURBVHgB7d3dVdtAEIbhcSpICUoH0IEogQqSVBBSAU4FSSpIOoAORAfQgSghHXzZ1U/YcMD4R9rZmf2ec3y448LyiNf27iLiGIAmPLrweC9Un3DhrzG6EarLNP09nlwJ1SOZ/lQr5N80/S/p2QMVCBf5N17XCfm1Y/rBHqjAG9PPHvBsz+mf9WAP+HLA9M/YA14cOP2payH7jpj+VCtk1wnTP+vj7xCy6cTpn7EHLMLp059iD1iD8eveJbVCNsSLheX1YA/YgOWnf8YeKB3Wmf7Ud6Fy4f/FHmtpxbl3YlC4MJ/Cj0bWdwPnPbARg+L0S54XQHS32WwuxClzd4CM0z9rPfeAuTtA5ulPXYQ7wZ04Y+oOoDD9KZc9YOoOoDj9s4dwFzgXR6w1wIPoOvPWA9buAHEJ173o3gWiy3AnuBUHLEbgmYwvAk1/wuM8vAgexThzbwPDkx7/DHwVXfFOxP2GmsKd4Ab6zPeAyU8CI7AHFmH2BRCBPXAyk18GzUrqAXCTiR4ssyj0VFw/oCU8+e+RZ33AWz6KMaYbIIWxB+JSLs1bsbkeMN0AqakHvoku9oA2sAfqBvbAQdw0QArsgb25aYBUQT3QgT2gB+yBuqGcHij2UCqXDZACe2Anlw2QYg/QAOyBuoE98CL3DZDCuK4/rh/Q7oGL6U+TOvcNkJoijN8X1C48+T+g75eQDrAH/qmqAVJgDwyqaoAUe4AGYA/UDZX3QLUNkEIZPRCd5+6BahsgVUgPROwBTSijB7jpVAvGHriHvmw9wAZ4BpX1ABvgmakHtPcbRuwBTWAPULgAV9D/jKDY9YRvwvgEaurD44uQHvAol7qBW7WKluVtIHiUS7GyvA0s6CiXDnxrpQfsgbqBS7GKk/2jYHCrVlGyfxTMrVo0ALdq1Q3sgSKofh0M9oA61a+D2QM0AHugbmAPqClmSRjK2apVVQ8UsySsoK1aHdgDesCtWnUDeyCrIpeFg1u3sylyWTi3btMA7IG6gT2wuuK3hoE9sKrit4YVslWLPaAN7IG6ocKt2zmY2h4O9sDiTG0PZw/QANy6XTewBxZj9ogYVHy025LMHhEz9cBn0We6B0yfERReBLfhx0/R1YQHPx/QBPbA0VwcEwf2wNFcHBPHHjiem3MC2QPHcXdSaJjA+KfgTPQ8hhfjBzHC40mhlzJ+Xq9lK4a4PCs43AVaGTed5mZq+iOXZwWHi3AnOj2wFWNcnxYe7gTxLtBKHuamP/J+Wnh8a5irB7ZC5Yk9gPX1QuXC+usHWqGyhYvUYR0a7zboUOFCNVhnk0krZAOW7wFOvzXhom2xnEbIHizTA1wEYhWW6YFGyC6c1gOcfg9wfA80Qj7g8B7g9HuCww+haIR8wf49wOn3Cvv9k8tGyC/s7gFOv3fY3QONkH+v9MBWqB7PeqDn9FcIT//kcitUn6kHOu/T/xfWzlQy3dEHhwAAAABJRU5ErkJggg==">
</a>
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
<a aria-label="All Contributors" href="#contributors-"><img alt="" src="https://img.shields.io/badge/all_contributors-424-17BB8A.svg?style=for-the-badge&labelColor=000000"></a>
<a aria-label="All Contributors" href="#contributors-"><img alt="" src="https://img.shields.io/badge/all_contributors-429-17BB8A.svg?style=for-the-badge&labelColor=000000"></a>
<!-- ALL-CONTRIBUTORS-BADGE:END -->
<a aria-label="License" href="https://github.com/blitz-js/blitz/blob/main/LICENSE">
<img alt="" src="https://img.shields.io/npm/l/blitz.svg?style=for-the-badge&labelColor=000000&color=blue">
Expand Down Expand Up @@ -748,6 +748,13 @@ Thanks to these wonderful people ([emoji key](https://allcontributors.org/docs/e
<td align="center"><a href="https://github.com/potikhanovsergey"><img src="https://avatars.githubusercontent.com/u/71494201?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Sergey</b></sub></a><br /><a href="https://github.com/blitz-js/blitz/commits?author=potikhanovsergey" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/papsavas"><img src="https://avatars.githubusercontent.com/u/50584606?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Savvas Papageorgiadis</b></sub></a><br /><a href="https://github.com/blitz-js/blitz/commits?author=papsavas" title="Documentation">📖</a> <a href="https://github.com/blitz-js/blitz/commits?author=papsavas" title="Code">💻</a></td>
<td align="center"><a href="https://flow-office.eu/"><img src="https://avatars.githubusercontent.com/u/77194479?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Leonidas</b></sub></a><br /><a href="https://github.com/blitz-js/blitz/commits?author=LeonMueller-OneAndOnly" title="Documentation">📖</a> <a href="https://github.com/blitz-js/blitz/commits?author=LeonMueller-OneAndOnly" title="Code">💻</a></td>
<td align="center"><a href="https://hacknex.us"><img src="https://avatars.githubusercontent.com/u/19937034?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Doc0x1</b></sub></a><br /><a href="https://github.com/blitz-js/blitz/commits?author=Doc0x1" title="Documentation">📖</a> <a href="https://github.com/blitz-js/blitz/commits?author=Doc0x1" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/lmisea"><img src="https://avatars.githubusercontent.com/u/106825636?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Luis Isea</b></sub></a><br /><a href="https://github.com/blitz-js/blitz/commits?author=lmisea" title="Documentation">📖</a> <a href="https://github.com/blitz-js/blitz/commits?author=lmisea" title="Code">💻</a></td>
<td align="center"><a href="https://www.gengjiawen.com"><img src="https://avatars.githubusercontent.com/u/3759816?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jiawen Geng</b></sub></a><br /><a href="https://github.com/blitz-js/blitz/commits?author=gengjiawen" title="Documentation">📖</a> <a href="https://github.com/blitz-js/blitz/commits?author=gengjiawen" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://timn.tech"><img src="https://avatars.githubusercontent.com/u/6324199?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Neutkens</b></sub></a><br /><a href="https://github.com/blitz-js/blitz/commits?author=timneutkens" title="Documentation">📖</a> <a href="https://github.com/blitz-js/blitz/commits?author=timneutkens" title="Code">💻</a> <a href="https://github.com/blitz-js/blitz/commits?author=timneutkens" title="Tests">⚠️</a></td>
<td align="center"><a href="https://redyetidev.github.io"><img src="https://avatars.githubusercontent.com/u/38299977?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aviv Keller</b></sub></a><br /><a href="https://github.com/blitz-js/blitz/commits?author=RedYetiDev" title="Code">💻</a></td>
</tr>
</table>

Expand Down
82 changes: 82 additions & 0 deletions apps/next13/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,87 @@
# next-blitz-auth

## 0.1.11

### Patch Changes

- Updated dependencies [318e9740d]
- @blitzjs/[email protected]
- [email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]

## 0.1.10

### Patch Changes

- Updated dependencies [5a14306f7]
- @blitzjs/[email protected]
- @blitzjs/[email protected]
- [email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]

## 0.1.9

### Patch Changes

- Updated dependencies [5e61a1681]
- Updated dependencies [77555468f]
- @blitzjs/[email protected]
- [email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]

## 0.1.8

### Patch Changes

- Updated dependencies [ee7bf87ec]
- Updated dependencies [178c152b2]
- [email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]

## 0.1.7

### Patch Changes

- Updated dependencies [76a2544f9]
- Updated dependencies [5a587a6c3]
- [email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]

## 0.1.6

### Patch Changes

- Updated dependencies [6f54841b7]
- Updated dependencies [8a417533f]
- @blitzjs/[email protected]
- [email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]

## 0.1.5

### Patch Changes

- Updated dependencies [dd604c767]
- Updated dependencies [28a79040e]
- @blitzjs/[email protected]
- [email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]
- @blitzjs/[email protected]

## 0.1.4

### Patch Changes
Expand Down
8 changes: 8 additions & 0 deletions apps/next13/next.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
const {withBlitz} = require("@blitzjs/next")

const loaderClient = require.resolve("@blitzjs/rpc/dist/loader-client.cjs")
const loaderServer = require.resolve("@blitzjs/rpc/dist/loader-server.cjs")
const loaderServerResolvers = require.resolve("@blitzjs/rpc/dist/loader-server-resolvers.cjs")

console.log("loaderClient", loaderClient)
console.log("loaderServer", loaderServer)
console.log("loaderServerResolvers", loaderServerResolvers)

/** @type {import('next').NextConfig} */
const nextConfig = {}

Expand Down
14 changes: 7 additions & 7 deletions apps/next13/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-blitz-auth",
"version": "0.1.4",
"version": "0.1.11",
"private": true,
"scripts": {
"blitz:dev": "next dev",
Expand All @@ -12,17 +12,17 @@
"schema": "prisma/schema.prisma"
},
"dependencies": {
"@blitzjs/auth": "2.0.3",
"@blitzjs/config": "2.0.3",
"@blitzjs/next": "2.0.3",
"@blitzjs/rpc": "2.0.3",
"@blitzjs/auth": "2.0.10",
"@blitzjs/config": "2.0.10",
"@blitzjs/next": "2.0.10",
"@blitzjs/rpc": "2.0.10",
"@hookform/error-message": "2.0.0",
"@hookform/resolvers": "2.9.10",
"@prisma/client": "^4.5.0",
"@tanstack/react-query": "4.0.10",
"blitz": "2.0.3",
"blitz": "2.0.10",
"flatted": "3.2.7",
"next": "14.0.4",
"next": "canary",
"prisma": "^4.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
12 changes: 6 additions & 6 deletions apps/toolkit-app-passportjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@
]
},
"dependencies": {
"@blitzjs/auth": "2.0.3",
"@blitzjs/config": "2.0.3",
"@blitzjs/next": "2.0.3",
"@blitzjs/rpc": "2.0.3",
"@blitzjs/auth": "2.0.10",
"@blitzjs/config": "2.0.10",
"@blitzjs/next": "2.0.10",
"@blitzjs/rpc": "2.0.10",
"@hookform/error-message": "2.0.0",
"@hookform/resolvers": "2.9.10",
"@prisma/client": "4.6.1",
"blitz": "2.0.3",
"next": "14.0.4",
"blitz": "2.0.10",
"next": "canary",
"openid-client": "5.2.1",
"prisma": "4.6.1",
"react": "18.2.0",
Expand Down
14 changes: 7 additions & 7 deletions apps/toolkit-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@
]
},
"dependencies": {
"@blitzjs/auth": "2.0.3",
"@blitzjs/config": "2.0.3",
"@blitzjs/next": "2.0.3",
"@blitzjs/rpc": "2.0.3",
"@blitzjs/auth": "2.0.10",
"@blitzjs/config": "2.0.10",
"@blitzjs/next": "2.0.10",
"@blitzjs/rpc": "2.0.10",
"@hookform/error-message": "2.0.0",
"@hookform/resolvers": "2.9.10",
"@prisma/client": "4.6.1",
"blitz": "2.0.3",
"next": "14.0.4",
"next-auth": "4.18.7",
"blitz": "2.0.10",
"next": "canary",
"next-auth": "4.24.7",
"prisma": "4.6.1",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
12 changes: 6 additions & 6 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
"schema": "./db/schema.prisma"
},
"dependencies": {
"@blitzjs/auth": "2.0.3",
"@blitzjs/config": "2.0.3",
"@blitzjs/next": "2.0.3",
"@blitzjs/rpc": "2.0.3",
"@blitzjs/auth": "2.0.10",
"@blitzjs/config": "2.0.10",
"@blitzjs/next": "2.0.10",
"@blitzjs/rpc": "2.0.10",
"@prisma/client": "4.6.1",
"@types/jest": "29.2.2",
"@types/passport-twitter": "1.0.37",
"blitz": "2.0.3",
"blitz": "2.0.10",
"jest": "29.3.0",
"jest-environment-jsdom": "29.3.0",
"next": "14.0.4",
"next": "canary",
"passport-mock-strategy": "2.0.0",
"passport-twitter": "1.0.4",
"prisma": "4.6.1",
Expand Down
12 changes: 6 additions & 6 deletions integration-tests/auth-with-rpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
"prisma:studio": "prisma studio"
},
"dependencies": {
"@blitzjs/auth": "2.0.3",
"@blitzjs/config": "2.0.3",
"@blitzjs/next": "2.0.3",
"@blitzjs/rpc": "2.0.3",
"@blitzjs/auth": "2.0.10",
"@blitzjs/config": "2.0.10",
"@blitzjs/next": "2.0.10",
"@blitzjs/rpc": "2.0.10",
"@hookform/error-message": "2.0.0",
"@hookform/resolvers": "2.9.10",
"@prisma/client": "4.6.1",
"blitz": "2.0.3",
"blitz": "2.0.10",
"delay": "5.0.0",
"next": "14.0.4",
"next": "canary",
"prisma": "4.6.1",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
Loading
Loading