@wearejh/m2-pwa-engine 0.56.0 → 0.61.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.
- package/CHANGELOG.md +43 -0
- package/README.md +3 -3
- package/lib/runtime/runtime.register.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,49 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.61.0](https://github.com/WeareJH/mage-mono/compare/v0.60.0...v0.61.0) (2026-06-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @wearejh/m2-pwa-engine
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [0.60.0](https://github.com/WeareJH/mage-mono/compare/v0.59.0...v0.60.0) (2026-06-11)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @wearejh/m2-pwa-engine
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [0.59.0](https://github.com/WeareJH/mage-mono/compare/v0.58.0...v0.59.0) (2026-06-11)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @wearejh/m2-pwa-engine
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [0.58.0](https://github.com/WeareJH/mage-mono/compare/v0.57.0...v0.58.0) (2026-06-11)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @wearejh/m2-pwa-engine
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
# [0.57.0](https://github.com/WeareJH/mage-mono/compare/v0.56.0...v0.57.0) (2026-06-11)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Features
|
|
42
|
+
|
|
43
|
+
* **m2-pwa-engine, m2-pwa-server:** add staging4 environment support ([803c290](https://github.com/WeareJH/mage-mono/commit/803c290c75e6801963ecd0b1b8aaebccd26de303))
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
6
49
|
# [0.56.0](https://github.com/WeareJH/mage-mono/compare/v0.55.0...v0.56.0) (2026-05-20)
|
|
7
50
|
|
|
8
51
|
**Note:** Version bump only for package @wearejh/m2-pwa-engine
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ The `m2-pwa-engine` package serves as the backbone of the Magento 2 PWA ecosyste
|
|
|
11
11
|
- **Redux Store Management**: Lazy access to the Redux store with proper typing
|
|
12
12
|
- **Apollo GraphQL Integration**: Client configuration and provider setup for Magento GraphQL API
|
|
13
13
|
- **Routing Infrastructure**: Core routing utilities and components
|
|
14
|
-
- **Environment Configuration**: Multi-environment support (development, staging, production)
|
|
14
|
+
- **Environment Configuration**: Multi-environment support (development, staging, staging2, staging3, staging4, production)
|
|
15
15
|
- **Service Worker Support**: PWA capabilities and offline functionality
|
|
16
16
|
- **TypeScript Support**: Full TypeScript definitions and type safety
|
|
17
17
|
|
|
@@ -35,7 +35,7 @@ graph TD
|
|
|
35
35
|
|
|
36
36
|
G --> M[Magento GraphQL]
|
|
37
37
|
H --> N[Page Components]
|
|
38
|
-
I --> O[staging/staging3/production]
|
|
38
|
+
I --> O[staging/staging2/staging3/staging4/production]
|
|
39
39
|
|
|
40
40
|
style A fill:#e1f5fe
|
|
41
41
|
style B fill:#f3e5f5
|
|
@@ -55,7 +55,7 @@ Built-in Apollo Client configuration enables seamless communication with Magento
|
|
|
55
55
|
### Environment Support
|
|
56
56
|
The package includes configuration for multiple deployment environments:
|
|
57
57
|
- Development
|
|
58
|
-
- Staging (staging3
|
|
58
|
+
- Staging (staging2, staging3, staging4)
|
|
59
59
|
- Production
|
|
60
60
|
|
|
61
61
|
### Modular Architecture
|
|
@@ -22,7 +22,7 @@ export type RuntimeEnv = {
|
|
|
22
22
|
NODE_ENV: 'production' | 'development' | 'storybook';
|
|
23
23
|
REDUX_STORE_TOOLS: boolean;
|
|
24
24
|
SERVICE_WORKER: boolean;
|
|
25
|
-
RELEASE_STAGE: 'local' | 'develop' | 'staging' | 'staging2' | 'staging3' | 'production';
|
|
25
|
+
RELEASE_STAGE: 'local' | 'develop' | 'staging' | 'staging2' | 'staging3' | 'staging4' | 'production';
|
|
26
26
|
VERSION: string;
|
|
27
27
|
DOMAIN: string;
|
|
28
28
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wearejh/m2-pwa-engine",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.61.0",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "Shane Osbourne <shane.osbourne8@gmail.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
],
|
|
19
19
|
"scripts": {},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wearejh/m2-pwa-vars": "^0.
|
|
22
|
-
"@wearejh/swagger-rxjs": "^0.
|
|
21
|
+
"@wearejh/m2-pwa-vars": "^0.61.0",
|
|
22
|
+
"@wearejh/swagger-rxjs": "^0.61.0",
|
|
23
23
|
"history": "^4.10.1",
|
|
24
24
|
"loadcss": "^0.0.2"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "0f0f3e87d6e5826a925f53d75b2c3fcfc7d8f2b3"
|
|
27
27
|
}
|