@dropins/storefront-auth 4.0.0-beta.4 → 4.0.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 +27 -6
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @dropins/storefront-auth
2
2
 
3
+ ## 4.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 515ce05: Add support for Remote Shopping Assistance feature that enables store administrators to help customers with purchases. The implementation includes admin session management via JWT token validation, a consent UI component for customer approval, and enhanced cookie security with proper encoding and SameSite protection for all authentication cookies
8
+
9
+ ### Minor Changes
10
+
11
+ - f208291: Upgraded Elsie package to use the 1.9.0-beta.0 version
12
+ - f208291: Migrate to Node.js 24 LTS
13
+
14
+ Minimum required Node.js version is now 24. Updated engines.node from >=20 to >=24.
15
+
16
+ - 572b81a: Removed the `engines.node` constraint from `package.json`. This package targets browser environments exclusively and does not depend on a specific Node.js runtime version. The package is now built and distributed using Node.js 22 LTS.
17
+
18
+ ### Patch Changes
19
+
20
+ - f208291: Ensure `getCustomerRolePermissions` always emits `auth/permissions` so consumers (e.g. account navigation) keep working. For non-admin customers with no granular ACL tree from GraphQL, set `Magento_Sales::place_order` so storefront checkout does not treat B2C users as denied.
21
+ - 2870239: Bump to StorefrontSDK stable version
22
+ - 1c0576b: Bump @adobe-commerce/elsie to v1.9.0-beta.3
23
+
24
+ ## 4.0.0-beta.5
25
+
26
+ ### Patch Changes
27
+
28
+ - 2870239: Bump to StorefrontSDK stable version
29
+
3
30
  ## 4.0.0-beta.4
4
31
 
5
32
  ### Patch Changes
@@ -26,12 +53,6 @@
26
53
 
27
54
  ## 3.3.0-beta.0
28
55
 
29
- ### Minor Changes
30
-
31
- - 85883d0: Migrate to Node.js 24 LTS
32
-
33
- Minimum required Node.js version is now 24. Updated engines.node from >=20 to >=24.
34
-
35
56
  ### Patch Changes
36
57
 
37
58
  - 3cadf48: Ensure `getCustomerRolePermissions` always emits `auth/permissions` so consumers (e.g. account navigation) keep working. For non-admin customers with no granular ACL tree from GraphQL, set `Magento_Sales::place_order` so storefront checkout does not treat B2C users as denied.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@dropins/storefront-auth",
3
- "version": "4.0.0-beta.4",
3
+ "version": "4.0.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md"
5
5
  }