Skip to content

Commit

Permalink
Do not lock AppSignal version for Next.js
Browse files Browse the repository at this point in the history
The Next.js test setups, due to a Webpack limitation, do not use the
source code of the integration at `nodejs/integration`, instead
installing it from the NPM servers.

Due to this, it makes sense for its bound to be set to `latest`, to
prevent accidentally testing against a very old version of the
integration.
  • Loading branch information
unflxw committed Jul 26, 2024
1 parent bc73f64 commit 91ba285
Show file tree
Hide file tree
Showing 8 changed files with 1,128 additions and 409 deletions.
2 changes: 1 addition & 1 deletion nodejs/nextjs-13-app/app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nodejs/nextjs-13-app/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@appsignal/nodejs": "^3.0.17",
"@appsignal/nodejs": "latest",
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
Expand Down
2 changes: 1 addition & 1 deletion nodejs/nextjs-13-pages/app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nodejs/nextjs-13-pages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"@appsignal/javascript": "^1.3.26",
"@appsignal/nodejs": "^3.0.13",
"@appsignal/nodejs": "latest",
"@appsignal/react": "^1.0.22",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
Expand Down
1,485 changes: 1,101 additions & 384 deletions nodejs/nextjs-14-app/app/package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions nodejs/nextjs-14-app/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
"lint": "next lint"
},
"dependencies": {
"react": "^18",
"react-dom": "^18",
"@appsignal/nodejs": "latest",
"next": "14.2.1",
"@appsignal/nodejs": "^3.3.2"
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react": "18.3.3",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.1"
"eslint-config-next": "14.2.1",
"typescript": "5.5.4"
}
}
20 changes: 11 additions & 9 deletions nodejs/nextjs-14-pages/app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions nodejs/nextjs-14-pages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
"lint": "next lint"
},
"dependencies": {
"react": "^18",
"react-dom": "^18",
"@appsignal/nodejs": "latest",
"next": "14.2.1",
"@appsignal/nodejs": "^3.3.2"
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react": "18.3.3",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.1"
"eslint-config-next": "14.2.1",
"typescript": "5.5.4"
}
}

0 comments on commit 91ba285

Please sign in to comment.