@adobe-commerce/recaptcha 1.2.0-alpha-20260528103153 → 1.2.0-beta.1

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 -5
  2. package/package.json +2 -5
package/CHANGELOG.md CHANGED
@@ -1,12 +1,21 @@
1
1
  # @adobe-commerce/recaptcha
2
2
 
3
- ## 1.2.0-alpha-20260528103153
3
+ ## 1.2.0-beta.1
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - 8e118e2: Upgrade Jest to 30.4.2 and Storybook to 10.4.0
7
+ - af62897: Update minimum Node.js requirement to 22 LTS
8
8
 
9
- Updated testing and component development tools to latest stable versions. Jest 30.4.2 provides enhanced snapshot handling and improved test performance. Storybook 10.4.0 includes updated addon ecosystem, improved Preact Vite integration, and enhanced accessibility features with addon-a11y and addon-coverage support.
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-beta.1
15
+
16
+ ## 1.2.0-beta.0
17
+
18
+ ### Minor Changes
10
19
 
11
20
  - f55a79c: Migrate to Node.js 24 LTS
12
21
 
@@ -14,9 +23,8 @@
14
23
 
15
24
  ### Patch Changes
16
25
 
17
- - Updated dependencies [8e118e2]
18
26
  - Updated dependencies [f55a79c]
19
- - @adobe-commerce/fetch-graphql@1.3.0-alpha-20260528103153
27
+ - @adobe-commerce/fetch-graphql@1.3.0-beta.0
20
28
 
21
29
  ## 1.1.0
22
30
 
package/package.json CHANGED
@@ -1,11 +1,8 @@
1
1
  {
2
2
  "name": "@adobe-commerce/recaptcha",
3
- "version": "1.2.0-alpha-20260528103153",
3
+ "version": "1.2.0-beta.1",
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-alpha-20260528103153"
14
+ "@adobe-commerce/fetch-graphql": "~1.3.0-beta.1"
18
15
  },
19
16
  "devDependencies": {}
20
17
  }