@trieb.work/nextjs-turbo-redis-cache 1.12.0 → 1.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/.github/workflows/ci.yml +11 -13
  2. package/.github/workflows/release.yml +68 -7
  3. package/CHANGELOG.md +28 -0
  4. package/README.md +29 -21
  5. package/dist/index.d.mts +8 -3
  6. package/dist/index.d.ts +8 -3
  7. package/dist/index.js +64 -7
  8. package/dist/index.js.map +1 -1
  9. package/dist/index.mjs +54 -7
  10. package/dist/index.mjs.map +1 -1
  11. package/package.json +6 -3
  12. package/playwright.config.ts +1 -1
  13. package/src/CacheComponentsHandler.ts +11 -5
  14. package/src/CachedHandler.ts +16 -2
  15. package/src/RedisStringsHandler.ts +4 -2
  16. package/src/utils/prefix.test.ts +115 -0
  17. package/src/utils/prefix.ts +44 -0
  18. package/test/cache-components/cache-components.integration.spec.ts +1 -1
  19. package/test/integration/build-id-prefix.integration.test.ts +102 -0
  20. package/test/integration/next-app-15-0-3/pnpm-lock.yaml +32 -1
  21. package/test/integration/next-app-15-3-2/pnpm-lock.yaml +33 -1
  22. package/test/integration/next-app-15-4-7/pnpm-lock.yaml +36 -1
  23. package/test/integration/next-app-16-0-3/pnpm-lock.yaml +37 -1
  24. package/test/integration/next-app-16-0-3/postcss.config.mjs +7 -7
  25. package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/package.json +3 -3
  26. package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/pnpm-lock.yaml +98 -55
  27. package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/postcss.config.mjs +7 -7
  28. package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/package.json +3 -3
  29. package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/pnpm-lock.yaml +98 -55
  30. package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/postcss.config.mjs +7 -7
  31. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/README.md +0 -0
  32. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/eslint.config.mjs +0 -0
  33. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/next.config.ts +0 -0
  34. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/cached-static-fetch/route.ts +0 -0
  35. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/nested-fetch-in-api-route/revalidated-fetch/route.ts +0 -0
  36. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/revalidatePath/route.ts +0 -0
  37. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/revalidateTag/route.ts +0 -0
  38. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/revalidated-fetch/route.ts +0 -0
  39. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/uncached-fetch/route.ts +0 -0
  40. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/favicon.ico +0 -0
  41. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/globals.css +0 -0
  42. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/layout.tsx +0 -0
  43. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/page.tsx +0 -0
  44. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/cached-static-fetch/default--force-dynamic-page/page.tsx +0 -0
  45. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/cached-static-fetch/revalidate15--default-page/page.tsx +0 -0
  46. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/cached-static-fetch/revalidate15--force-dynamic-page/page.tsx +0 -0
  47. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/no-fetch/default-page/page.tsx +0 -0
  48. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/revalidated-fetch/default--force-dynamic-page/page.tsx +0 -0
  49. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/revalidated-fetch/revalidate15--default-page/page.tsx +0 -0
  50. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/revalidated-fetch/revalidate15--force-dynamic-page/page.tsx +0 -0
  51. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/uncached-fetch/default--force-dynamic-page/page.tsx +0 -0
  52. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/uncached-fetch/revalidate15--default-page/page.tsx +0 -0
  53. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/uncached-fetch/revalidate15--force-dynamic-page/page.tsx +0 -0
  54. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/revalidation-interface.tsx +0 -0
  55. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/update-tag-test/page.tsx +0 -0
  56. /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/tsconfig.json +0 -0
  57. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/README.md +0 -0
  58. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/cache-handler.js +0 -0
  59. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/eslint.config.mjs +0 -0
  60. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/next.config.ts +0 -0
  61. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/public/file.svg +0 -0
  62. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/public/globe.svg +0 -0
  63. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/public/next.svg +0 -0
  64. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/public/vercel.svg +0 -0
  65. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/public/window.svg +0 -0
  66. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/api/cached-static-fetch/route.ts +0 -0
  67. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/api/cached-with-tag/route.ts +0 -0
  68. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/api/revalidate-tag/route.ts +0 -0
  69. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/api/revalidated-fetch/route.ts +0 -0
  70. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/cachelife-short/page.tsx +0 -0
  71. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/page.tsx +0 -0
  72. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/runtime-data-suspense/page.tsx +0 -0
  73. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/stale-while-revalidate/page.tsx +0 -0
  74. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/tag-invalidation/page.tsx +0 -0
  75. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/use-cache-nondeterministic/page.tsx +0 -0
  76. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/favicon.ico +0 -0
  77. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/globals.css +0 -0
  78. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/layout.tsx +0 -0
  79. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/page.tsx +0 -0
  80. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/revalidation-interface.tsx +0 -0
  81. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/update-tag-test/page.tsx +0 -0
  82. /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/tsconfig.json +0 -0
@@ -215,89 +215,105 @@ packages:
215
215
  resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
216
216
  cpu: [arm64]
217
217
  os: [linux]
218
+ libc: [glibc]
218
219
 
219
220
  '@img/sharp-libvips-linux-arm@1.2.4':
220
221
  resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
221
222
  cpu: [arm]
222
223
  os: [linux]
224
+ libc: [glibc]
223
225
 
224
226
  '@img/sharp-libvips-linux-ppc64@1.2.4':
225
227
  resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
226
228
  cpu: [ppc64]
227
229
  os: [linux]
230
+ libc: [glibc]
228
231
 
229
232
  '@img/sharp-libvips-linux-riscv64@1.2.4':
230
233
  resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
231
234
  cpu: [riscv64]
232
235
  os: [linux]
236
+ libc: [glibc]
233
237
 
234
238
  '@img/sharp-libvips-linux-s390x@1.2.4':
235
239
  resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
236
240
  cpu: [s390x]
237
241
  os: [linux]
242
+ libc: [glibc]
238
243
 
239
244
  '@img/sharp-libvips-linux-x64@1.2.4':
240
245
  resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
241
246
  cpu: [x64]
242
247
  os: [linux]
248
+ libc: [glibc]
243
249
 
244
250
  '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
245
251
  resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
246
252
  cpu: [arm64]
247
253
  os: [linux]
254
+ libc: [musl]
248
255
 
249
256
  '@img/sharp-libvips-linuxmusl-x64@1.2.4':
250
257
  resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
251
258
  cpu: [x64]
252
259
  os: [linux]
260
+ libc: [musl]
253
261
 
254
262
  '@img/sharp-linux-arm64@0.34.5':
255
263
  resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
256
264
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
257
265
  cpu: [arm64]
258
266
  os: [linux]
267
+ libc: [glibc]
259
268
 
260
269
  '@img/sharp-linux-arm@0.34.5':
261
270
  resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
262
271
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
263
272
  cpu: [arm]
264
273
  os: [linux]
274
+ libc: [glibc]
265
275
 
266
276
  '@img/sharp-linux-ppc64@0.34.5':
267
277
  resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
268
278
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
269
279
  cpu: [ppc64]
270
280
  os: [linux]
281
+ libc: [glibc]
271
282
 
272
283
  '@img/sharp-linux-riscv64@0.34.5':
273
284
  resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
274
285
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
275
286
  cpu: [riscv64]
276
287
  os: [linux]
288
+ libc: [glibc]
277
289
 
278
290
  '@img/sharp-linux-s390x@0.34.5':
279
291
  resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
280
292
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
281
293
  cpu: [s390x]
282
294
  os: [linux]
295
+ libc: [glibc]
283
296
 
284
297
  '@img/sharp-linux-x64@0.34.5':
285
298
  resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
286
299
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
287
300
  cpu: [x64]
288
301
  os: [linux]
302
+ libc: [glibc]
289
303
 
290
304
  '@img/sharp-linuxmusl-arm64@0.34.5':
291
305
  resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
292
306
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
293
307
  cpu: [arm64]
294
308
  os: [linux]
309
+ libc: [musl]
295
310
 
296
311
  '@img/sharp-linuxmusl-x64@0.34.5':
297
312
  resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
298
313
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
299
314
  cpu: [x64]
300
315
  os: [linux]
316
+ libc: [musl]
301
317
 
302
318
  '@img/sharp-wasm32@0.34.5':
303
319
  resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
@@ -364,24 +380,28 @@ packages:
364
380
  engines: {node: '>= 10'}
365
381
  cpu: [arm64]
366
382
  os: [linux]
383
+ libc: [glibc]
367
384
 
368
385
  '@next/swc-linux-arm64-musl@16.0.3':
369
386
  resolution: {integrity: sha512-CEErFt78S/zYXzFIiv18iQCbRbLgBluS8z1TNDQoyPi8/Jr5qhR3e8XHAIxVxPBjDbEMITprqELVc5KTfFj0gg==}
370
387
  engines: {node: '>= 10'}
371
388
  cpu: [arm64]
372
389
  os: [linux]
390
+ libc: [musl]
373
391
 
374
392
  '@next/swc-linux-x64-gnu@16.0.3':
375
393
  resolution: {integrity: sha512-Tc3i+nwt6mQ+Dwzcri/WNDj56iWdycGVh5YwwklleClzPzz7UpfaMw1ci7bLl6GRYMXhWDBfe707EXNjKtiswQ==}
376
394
  engines: {node: '>= 10'}
377
395
  cpu: [x64]
378
396
  os: [linux]
397
+ libc: [glibc]
379
398
 
380
399
  '@next/swc-linux-x64-musl@16.0.3':
381
400
  resolution: {integrity: sha512-zTh03Z/5PBBPdTurgEtr6nY0vI9KR9Ifp/jZCcHlODzwVOEKcKRBtQIGrkc7izFgOMuXDEJBmirwpGqdM/ZixA==}
382
401
  engines: {node: '>= 10'}
383
402
  cpu: [x64]
384
403
  os: [linux]
404
+ libc: [musl]
385
405
 
386
406
  '@next/swc-win32-arm64-msvc@16.0.3':
387
407
  resolution: {integrity: sha512-Jc1EHxtZovcJcg5zU43X3tuqzl/sS+CmLgjRP28ZT4vk869Ncm2NoF8qSTaL99gh6uOzgM99Shct06pSO6kA6g==}
@@ -484,24 +504,28 @@ packages:
484
504
  engines: {node: '>= 10'}
485
505
  cpu: [arm64]
486
506
  os: [linux]
507
+ libc: [glibc]
487
508
 
488
509
  '@tailwindcss/oxide-linux-arm64-musl@4.1.17':
489
510
  resolution: {integrity: sha512-HvZLfGr42i5anKtIeQzxdkw/wPqIbpeZqe7vd3V9vI3RQxe3xU1fLjss0TjyhxWcBaipk7NYwSrwTwK1hJARMg==}
490
511
  engines: {node: '>= 10'}
491
512
  cpu: [arm64]
492
513
  os: [linux]
514
+ libc: [musl]
493
515
 
494
516
  '@tailwindcss/oxide-linux-x64-gnu@4.1.17':
495
517
  resolution: {integrity: sha512-M3XZuORCGB7VPOEDH+nzpJ21XPvK5PyjlkSFkFziNHGLc5d6g3di2McAAblmaSUNl8IOmzYwLx9NsE7bplNkwQ==}
496
518
  engines: {node: '>= 10'}
497
519
  cpu: [x64]
498
520
  os: [linux]
521
+ libc: [glibc]
499
522
 
500
523
  '@tailwindcss/oxide-linux-x64-musl@4.1.17':
501
524
  resolution: {integrity: sha512-k7f+pf9eXLEey4pBlw+8dgfJHY4PZ5qOUFDyNf7SI6lHjQ9Zt7+NcscjpwdCEbYi6FI5c2KDTDWyf2iHcCSyyQ==}
502
525
  engines: {node: '>= 10'}
503
526
  cpu: [x64]
504
527
  os: [linux]
528
+ libc: [musl]
505
529
 
506
530
  '@tailwindcss/oxide-wasm32-wasi@4.1.17':
507
531
  resolution: {integrity: sha512-cEytGqSSoy7zK4JRWiTCx43FsKP/zGr0CsuMawhH67ONlH+T79VteQeJQRO/X7L0juEUA8ZyuYikcRBf0vsxhg==}
@@ -537,7 +561,7 @@ packages:
537
561
  '@trieb.work/nextjs-turbo-redis-cache@file:../../..':
538
562
  resolution: {directory: ../../.., type: directory}
539
563
  peerDependencies:
540
- next: '>=15.0.3 <= 15.4.7'
564
+ next: '>=15.0.3 <16.3.0'
541
565
  redis: 4.7.0
542
566
 
543
567
  '@tybys/wasm-util@0.10.1':
@@ -661,41 +685,49 @@ packages:
661
685
  resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
662
686
  cpu: [arm64]
663
687
  os: [linux]
688
+ libc: [glibc]
664
689
 
665
690
  '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
666
691
  resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
667
692
  cpu: [arm64]
668
693
  os: [linux]
694
+ libc: [musl]
669
695
 
670
696
  '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
671
697
  resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
672
698
  cpu: [ppc64]
673
699
  os: [linux]
700
+ libc: [glibc]
674
701
 
675
702
  '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
676
703
  resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
677
704
  cpu: [riscv64]
678
705
  os: [linux]
706
+ libc: [glibc]
679
707
 
680
708
  '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
681
709
  resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
682
710
  cpu: [riscv64]
683
711
  os: [linux]
712
+ libc: [musl]
684
713
 
685
714
  '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
686
715
  resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
687
716
  cpu: [s390x]
688
717
  os: [linux]
718
+ libc: [glibc]
689
719
 
690
720
  '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
691
721
  resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
692
722
  cpu: [x64]
693
723
  os: [linux]
724
+ libc: [glibc]
694
725
 
695
726
  '@unrs/resolver-binding-linux-x64-musl@1.11.1':
696
727
  resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
697
728
  cpu: [x64]
698
729
  os: [linux]
730
+ libc: [musl]
699
731
 
700
732
  '@unrs/resolver-binding-wasm32-wasi@1.11.1':
701
733
  resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
@@ -1457,24 +1489,28 @@ packages:
1457
1489
  engines: {node: '>= 12.0.0'}
1458
1490
  cpu: [arm64]
1459
1491
  os: [linux]
1492
+ libc: [glibc]
1460
1493
 
1461
1494
  lightningcss-linux-arm64-musl@1.30.2:
1462
1495
  resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
1463
1496
  engines: {node: '>= 12.0.0'}
1464
1497
  cpu: [arm64]
1465
1498
  os: [linux]
1499
+ libc: [musl]
1466
1500
 
1467
1501
  lightningcss-linux-x64-gnu@1.30.2:
1468
1502
  resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
1469
1503
  engines: {node: '>= 12.0.0'}
1470
1504
  cpu: [x64]
1471
1505
  os: [linux]
1506
+ libc: [glibc]
1472
1507
 
1473
1508
  lightningcss-linux-x64-musl@1.30.2:
1474
1509
  resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
1475
1510
  engines: {node: '>= 12.0.0'}
1476
1511
  cpu: [x64]
1477
1512
  os: [linux]
1513
+ libc: [musl]
1478
1514
 
1479
1515
  lightningcss-win32-arm64-msvc@1.30.2:
1480
1516
  resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
@@ -1,7 +1,7 @@
1
- const config = {
2
- plugins: {
3
- "@tailwindcss/postcss": {},
4
- },
5
- };
6
-
7
- export default config;
1
+ const config = {
2
+ plugins: {
3
+ "@tailwindcss/postcss": {},
4
+ },
5
+ };
6
+
7
+ export default config;
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "next-app-16-1-1",
2
+ "name": "next-app-16-2-3",
3
3
  "version": "0.1.0",
4
4
  "private": true,
5
5
  "scripts": {
@@ -9,7 +9,7 @@
9
9
  "lint": "eslint"
10
10
  },
11
11
  "dependencies": {
12
- "next": "16.1.1",
12
+ "next": "16.2.3",
13
13
  "react": "19.2.0",
14
14
  "react-dom": "19.2.0",
15
15
  "redis": "4.7.0",
@@ -21,7 +21,7 @@
21
21
  "@types/react": "^19",
22
22
  "@types/react-dom": "^19",
23
23
  "eslint": "^9",
24
- "eslint-config-next": "16.0.7",
24
+ "eslint-config-next": "16.2.3",
25
25
  "tailwindcss": "^4",
26
26
  "typescript": "^5"
27
27
  }