@nestlab/google-recaptcha 3.9.0 → 3.11.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 (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +20 -19
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v3.11.0
4
+ - Upgraded axios 1.8.4 => 1.13.2
5
+
6
+ ## v3.10.0
7
+ - Upgraded axios 1.7.7 => 1.8.4
8
+
3
9
  ## v3.9.0
4
10
  - Support NestJS 11. Upgraded peer dependencies versions:
5
11
  - `@nestjs/common`: >=8.0.0 <12.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestlab/google-recaptcha",
3
- "version": "3.9.0",
3
+ "version": "3.11.0",
4
4
  "description": "Google recaptcha module for NestJS.",
5
5
  "keywords": [
6
6
  "nestjs",
@@ -11,7 +11,7 @@
11
11
  "private": false,
12
12
  "main": "index.js",
13
13
  "scripts": {
14
- "build": "rimraf dist && tsc && cp package.json dist && cp README.md dist && cp LICENSE dist && cp CONTRIBUTING.md dist && cp CHANGELOG.md dist",
14
+ "build": "rm -rf dist && tsc && cp package.json dist && cp README.md dist && cp LICENSE dist && cp CONTRIBUTING.md dist && cp CHANGELOG.md dist",
15
15
  "format": "prettier \"**/*.ts\" \"**/*.json\" --ignore-path ./.prettierignore --write",
16
16
  "lint:fix": "eslint . --fix",
17
17
  "lint:check": "eslint . --max-warnings=0",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "homepage": "https://github.com/chvarkov/google-recaptcha",
32
32
  "dependencies": {
33
- "axios": "^1.7.7"
33
+ "axios": "^1.13.2"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@nestjs/common": ">=8.0.0 <12.0.0",
@@ -42,22 +42,23 @@
42
42
  }
43
43
  },
44
44
  "devDependencies": {
45
- "@nestjs/apollo": "^13.0.2",
46
- "@nestjs/axios": "^4.0.0",
47
- "@nestjs/common": "^11.0.6",
48
- "@nestjs/core": "^11.0.6",
49
- "@nestjs/graphql": "^13.0.2",
50
- "@nestjs/platform-express": "^11.0.6",
51
- "@nestjs/testing": "^11.0.6",
52
- "@types/express": "^4.17.13",
53
- "@types/jest": "^29.5.12",
54
- "@types/node": "^18.7.14",
45
+ "@as-integrations/express5": "^1.1.2",
46
+ "@nestjs/apollo": "^13.1.0",
47
+ "@nestjs/axios": "^4.0.1",
48
+ "@nestjs/common": "^11.1.12",
49
+ "@nestjs/core": "^11.1.12",
50
+ "@nestjs/graphql": "^13.2.3",
51
+ "@nestjs/platform-express": "^11.1.12",
52
+ "@nestjs/testing": "^11.1.12",
53
+ "@types/express": "^5.0.6",
54
+ "@types/jest": "^29.5.14",
55
+ "@types/node": "^20.19.30",
55
56
  "@types/supertest": "^2.0.12",
56
- "@typescript-eslint/eslint-plugin": "^5.36.1",
57
- "@typescript-eslint/parser": "^5.36.1",
58
- "apollo-server-express": "^3.10.2",
59
- "eslint": "^8.23.0",
60
- "graphql": "^16.6.0",
57
+ "@typescript-eslint/eslint-plugin": "^8.53.0",
58
+ "@typescript-eslint/parser": "^8.53.0",
59
+ "eslint": "^9.39.2",
60
+ "express": "^5.2.1",
61
+ "graphql": "^16.12.0",
61
62
  "jest": "^29.7.0",
62
63
  "prettier": "^2.7.1",
63
64
  "reflect-metadata": "^0.1.13",
@@ -65,7 +66,7 @@
65
66
  "supertest": "^6.3.3",
66
67
  "ts-jest": "^29.2.5",
67
68
  "ts-loader": "^9.3.1",
68
- "ts-node": "^10.9.1",
69
+ "ts-node": "^10.9.2",
69
70
  "typescript": "^4.9.5"
70
71
  },
71
72
  "jest": {