@graphcommerce/googleanalytics 5.1.0-canary.8 → 5.1.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 +25 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1754](https://github.com/graphcommerce-org/graphcommerce/pull/1754) [`f9cc9d45e`](https://github.com/graphcommerce-org/graphcommerce/commit/f9cc9d45ec500a719fd0b5f4c5673d23838ee77e) - Google analytics now supports configuration for multiple locales ([@FrankHarland](https://github.com/FrankHarland))
|
|
8
|
+
|
|
9
|
+
- [#1754](https://github.com/graphcommerce-org/graphcommerce/pull/1754) [`f9cc9d45e`](https://github.com/graphcommerce-org/graphcommerce/commit/f9cc9d45ec500a719fd0b5f4c5673d23838ee77e) - New events added to Google analytics: purchase and add_to_cart (when adding and updating items) ([@FrankHarland](https://github.com/FrankHarland))
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
|
|
14
|
+
|
|
15
|
+
- Updated the @mui/material package
|
|
16
|
+
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
17
|
+
- Upgraded dependencies including type-fest and graphql-mesh
|
|
18
|
+
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
19
|
+
|
|
20
|
+
- [#1757](https://github.com/graphcommerce-org/graphcommerce/pull/1757) [`566beeee3`](https://github.com/graphcommerce-org/graphcommerce/commit/566beeee3b8300e836cb4cdb8102f1a239c281d7) - Make sure we can handle deeply nested items in a list ([@paales](https://github.com/paales))
|
|
21
|
+
|
|
22
|
+
## 5.1.0-canary.11
|
|
23
|
+
|
|
24
|
+
## 5.1.0-canary.10
|
|
25
|
+
|
|
26
|
+
## 5.1.0-canary.9
|
|
27
|
+
|
|
3
28
|
## 5.1.0-canary.8
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/googleanalytics",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "5.1.0
|
|
5
|
+
"version": "5.1.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,18 +12,18 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@graphcommerce/graphql-mesh": "5.1.0
|
|
16
|
-
"@graphcommerce/magento-cart": "5.1.0
|
|
17
|
-
"@graphcommerce/magento-cart-payment-method": "5.1.0
|
|
18
|
-
"@graphcommerce/magento-cart-shipping-method": "5.1.0
|
|
19
|
-
"@graphcommerce/magento-product": "5.1.0
|
|
20
|
-
"@graphcommerce/next-config": "5.1.0
|
|
21
|
-
"@graphcommerce/next-ui": "5.1.0
|
|
15
|
+
"@graphcommerce/graphql-mesh": "5.1.0",
|
|
16
|
+
"@graphcommerce/magento-cart": "5.1.0",
|
|
17
|
+
"@graphcommerce/magento-cart-payment-method": "5.1.0",
|
|
18
|
+
"@graphcommerce/magento-cart-shipping-method": "5.1.0",
|
|
19
|
+
"@graphcommerce/magento-product": "5.1.0",
|
|
20
|
+
"@graphcommerce/next-config": "5.1.0",
|
|
21
|
+
"@graphcommerce/next-ui": "5.1.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@graphcommerce/eslint-config-pwa": "5.1.0
|
|
25
|
-
"@graphcommerce/prettier-config-pwa": "5.1.0
|
|
26
|
-
"@graphcommerce/typescript-config-pwa": "5.1.0
|
|
24
|
+
"@graphcommerce/eslint-config-pwa": "5.1.0",
|
|
25
|
+
"@graphcommerce/prettier-config-pwa": "5.1.0",
|
|
26
|
+
"@graphcommerce/typescript-config-pwa": "5.1.0",
|
|
27
27
|
"@types/gtag.js": "^0.0.12"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|