@fastify/cookie 10.0.0-pre.fv5.1 → 10.0.0-pre.fv5.2

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.
@@ -17,7 +17,7 @@ on:
17
17
 
18
18
  jobs:
19
19
  test:
20
- uses: fastify/workflows/.github/workflows/plugins-ci.yml@v4.2.1
20
+ uses: fastify/workflows/.github/workflows/plugins-ci.yml@v5.0.0
21
21
  with:
22
22
  license-check: true
23
23
  lint: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastify/cookie",
3
- "version": "10.0.0-pre.fv5.1",
3
+ "version": "10.0.0-pre.fv5.2",
4
4
  "description": "Plugin for fastify to add support for cookies",
5
5
  "main": "plugin.js",
6
6
  "type": "commonjs",
@@ -41,14 +41,14 @@
41
41
  "homepage": "https://github.com/fastify/fastify-cookie#readme",
42
42
  "devDependencies": {
43
43
  "@fastify/pre-commit": "^2.1.0",
44
- "@types/node": "^20.11.6",
44
+ "@types/node": "^22.0.0",
45
45
  "benchmark": "^2.1.4",
46
46
  "fastify": "^5.0.0-alpha.3",
47
47
  "sinon": "^18.0.0",
48
48
  "snazzy": "^9.0.0",
49
49
  "standard": "^17.1.0",
50
50
  "tap": "^18.6.1",
51
- "tsd": "^0.30.4"
51
+ "tsd": "^0.31.1"
52
52
  },
53
53
  "dependencies": {
54
54
  "fastify-plugin": "^5.0.0-pre.fv5.1",
package/plugin.js CHANGED
@@ -188,7 +188,7 @@ function getHook (hook = 'onRequest') {
188
188
  }
189
189
 
190
190
  const fastifyCookie = fp(plugin, {
191
- fastify: '4.x',
191
+ fastify: '5.x',
192
192
  name: '@fastify/cookie'
193
193
  })
194
194