Skip to content

Commit 23ff901

Browse files
authored
chore: Bump Node deps & Trunk upgrade (#240)
1 parent 934423b commit 23ff901

File tree

10 files changed

+834
-967
lines changed

10 files changed

+834
-967
lines changed

.trunk/trunk.yaml

+11-9
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,31 @@
22
# To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
33
version: 0.1
44
cli:
5-
version: 1.22.6
5+
version: 1.22.10
66
# Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins)
77
plugins:
88
sources:
99
- id: trunk
10-
ref: v1.6.3
10+
ref: v1.6.7
1111
uri: https://github.com/trunk-io/plugins
1212
# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
1313
runtimes:
1414
enabled:
15-
1615
16+
definitions:
17+
- type: node
18+
system_version: allowed
1719
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
1820
lint:
1921
enabled:
20-
22+
2123
2224
- git-diff-check
23-
- markdownlint@0.42.0
24-
25-
- prettier@3.3.3
26-
- trivy@0.56.2
27-
- trufflehog@3.82.8
25+
- markdownlint@0.44.0
26+
27+
- prettier@3.4.2
28+
- trivy@0.59.1
29+
- trufflehog@3.88.4
2830
2931
actions:
3032
enabled:

app/api/auth/[...nextauth]/route.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ const aj = arcjet
3030
// Protect the sensitive actions e.g. login, signup, etc with Arcjet
3131
const ajProtectedPOST = async (req: NextRequest) => {
3232
// Next.js 15 doesn't provide the IP address in the request object so we use
33-
// the Arcjet utility package to parse the headers and find it
34-
const userIp = ip(req);
33+
// the Arcjet utility package to parse the headers and find it. If we're
34+
// running in development mode, we'll use a local IP address.
35+
const userIp = process.env.NODE_ENV === "development" ? "127.0.0.1" : ip(req);
3536
const decision = await aj.protect(req, { fingerprint: userIp });
3637

3738
if (decision.isDenied()) {

app/attack/test/route.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ const aj = arcjet.withRule(
1616

1717
export async function GET(req: NextRequest) {
1818
// Next.js 15 doesn't provide the IP address in the request object so we use
19-
// the Arcjet utility package to parse the headers and find it
20-
const userIp = ip(req);
19+
// the Arcjet utility package to parse the headers and find it. If we're
20+
// running in development mode, we'll use a local IP address.
21+
const userIp = process.env.NODE_ENV === "development" ? "127.0.0.1" : ip(req);
2122
// The protect method returns a decision object that contains information
2223
// about the request.
2324
const decision = await aj.protect(req, { fingerprint: userIp });

app/bots/test/route.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ const aj = arcjet
2626

2727
export async function GET(req: NextRequest) {
2828
// Next.js 15 doesn't provide the IP address in the request object so we use
29-
// the Arcjet utility package to parse the headers and find it
30-
const userIp = ip(req);
29+
// the Arcjet utility package to parse the headers and find it. If we're
30+
// running in development mode, we'll use a local IP address.
31+
const userIp = process.env.NODE_ENV === "development" ? "127.0.0.1" : ip(req);
3132
// The protect method returns a decision object that contains information
3233
// about the request.
3334
const decision = await aj.protect(req, { fingerprint: userIp });

app/rate-limiting/test/route.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ export async function POST(req: NextRequest) {
4646
console.log("Session: ", session);
4747

4848
// Next.js 15 doesn't provide the IP address in the request object so we use
49-
// the Arcjet utility package to parse the headers and find it
50-
const userIp = ip(req);
49+
// the Arcjet utility package to parse the headers and find it. If we're
50+
// running in development mode, we'll use a local IP address.
51+
const userIp = process.env.NODE_ENV === "development" ? "127.0.0.1" : ip(req);
5152

5253
// Use the user ID if the user is logged in, otherwise use the IP address
5354
const fingerprint = session?.user?.id ?? userIp;

app/sensitive-info/test/route.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ const aj = arcjet
2626

2727
export async function POST(req: NextRequest) {
2828
// Next.js 15 doesn't provide the IP address in the request object so we use
29-
// the Arcjet utility package to parse the headers and find it
30-
const userIp = ip(req);
29+
// the Arcjet utility package to parse the headers and find it. If we're
30+
// running in development mode, we'll use a local IP address.
31+
const userIp = process.env.NODE_ENV === "development" ? "127.0.0.1" : ip(req);
3132
// The protect method returns a decision object that contains information
3233
// about the request.
3334
const decision = await aj.protect(req, { fingerprint: userIp });

app/signup/test/route.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ export async function POST(req: NextRequest) {
5757
const { email } = data.data;
5858

5959
// Next.js 15 doesn't provide the IP address in the request object so we use
60-
// the Arcjet utility package to parse the headers and find it
61-
const userIp = ip(req);
60+
// the Arcjet utility package to parse the headers and find it. If we're
61+
// running in development mode, we'll use a local IP address.
62+
const userIp = process.env.NODE_ENV === "development" ? "127.0.0.1" : ip(req);
6263
// The protect method returns a decision object that contains information
6364
// about the request.
6465
const decision = await aj.protect(req, { fingerprint: userIp, email });

next-env.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
5+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

0 commit comments

Comments
 (0)