@adobe-commerce/recaptcha 1.1.0 → 2.0.0-alpha-20260514091936

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 +13 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @adobe-commerce/recaptcha
2
2
 
3
+ ## 2.0.0-alpha-20260514091936
4
+
5
+ ### Major Changes
6
+
7
+ - 6f2484e: Migrate to Node.js 24 LTS
8
+
9
+ BREAKING CHANGE: Minimum required Node.js version is now 24. Updated `engines.node` from `>=16`/`>=18` to `>=24` across all packages. Regenerated lockfile under Node 24. Updated CI workflows to use `storefront-workflows@v6` with Node 24 support.
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [6f2484e]
14
+ - @adobe-commerce/fetch-graphql@2.0.0-alpha-20260514091936
15
+
3
16
  ## 1.1.0
4
17
 
5
18
  ### Minor Changes
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@adobe-commerce/recaptcha",
3
- "version": "1.1.0",
3
+ "version": "2.0.0-alpha-20260514091936",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "description": "Module allows to efficiently verify that users are humans, not bots or spammers",
6
6
  "engines": {
7
- "node": ">=16"
7
+ "node": ">=24"
8
8
  },
9
9
  "main": "src/index.ts",
10
10
  "scripts": {
@@ -14,7 +14,7 @@
14
14
  "build": " "
15
15
  },
16
16
  "dependencies": {
17
- "@adobe-commerce/fetch-graphql": "~1.2.3"
17
+ "@adobe-commerce/fetch-graphql": "2.0.0-alpha-20260514091936"
18
18
  },
19
19
  "devDependencies": {}
20
20
  }