@adobe-commerce/recaptcha 1.2.0-beta.0 → 1.2.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 +26 -0
  2. package/package.json +2 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @adobe-commerce/recaptcha
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - af62897: Update minimum Node.js requirement to 22 LTS
8
+
9
+ Packages are now built with Node.js 22. `elsie` requires `>=22`; browser-only packages (`fetch-graphql`, `event-bus`, `recaptcha`, `storefront-design`, `build-tools`) do not declare an `engines` field as they do not run in Node.js.
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [af62897]
14
+ - @adobe-commerce/fetch-graphql@1.3.0
15
+
16
+ ## 1.2.0-beta.1
17
+
18
+ ### Minor Changes
19
+
20
+ - af62897: Update minimum Node.js requirement to 22 LTS
21
+
22
+ Packages are now built with Node.js 22. `elsie` requires `>=22`; browser-only packages (`fetch-graphql`, `event-bus`, `recaptcha`, `storefront-design`, `build-tools`) do not declare an `engines` field as they do not run in Node.js.
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies [af62897]
27
+ - @adobe-commerce/fetch-graphql@1.3.0-beta.1
28
+
3
29
  ## 1.2.0-beta.0
4
30
 
5
31
  ### Minor Changes
package/package.json CHANGED
@@ -1,11 +1,8 @@
1
1
  {
2
2
  "name": "@adobe-commerce/recaptcha",
3
- "version": "1.2.0-beta.0",
3
+ "version": "1.2.0",
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
- "engines": {
7
- "node": ">=24"
8
- },
9
6
  "main": "src/index.ts",
10
7
  "scripts": {
11
8
  "lint": "eslint",
@@ -14,7 +11,7 @@
14
11
  "build": " "
15
12
  },
16
13
  "dependencies": {
17
- "@adobe-commerce/fetch-graphql": "~1.3.0-beta.0"
14
+ "@adobe-commerce/fetch-graphql": "~1.3.0"
18
15
  },
19
16
  "devDependencies": {}
20
17
  }