@graphcommerce/magento-payment-braintree 5.0.0-canary.14 → 5.1.0-canary.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 +34 -0
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Change Log
2
2
 
3
+ ## 5.1.0-canary.0
4
+
5
+ ## 5.0.0
6
+
7
+ ### Major Changes
8
+
9
+ - [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@github-actions](https://github.com/apps/github-actions))
10
+
11
+ ### Minor Changes
12
+
13
+ - [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`f08bffd63`](https://github.com/graphcommerce-org/graphcommerce/commit/f08bffd63780cb626f072b25c2fd4da37543b6f7) - Moved all Payment methods to the [GraphCommerce plugin system](https://www.graphcommerce.org/docs/framework/plugins)
14
+
15
+ Upgrade guide:
16
+
17
+ - The upgrade removes all the payment gateway packages from the `package.json`, remove them for now.
18
+ - Proceed to upgrade normally
19
+ - Add back all the payment modules following the [GraphCommerce Magento docs](https://graphcommerce.org/docs/magento).
20
+
21
+ (This removes the requirement to cleanup the payment methods when creating a first installation. 🎉) ([@paales](https://github.com/paales))
22
+
23
+ ### Patch Changes
24
+
25
+ - [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`b2d73c726`](https://github.com/graphcommerce-org/graphcommerce/commit/b2d73c726fa123435fa6c54b4e0fd0db2df7c4ab) - Move to <Prev/> instead of <Component/> to call the plugin component ([@paales](https://github.com/paales))
26
+
27
+ - [#1729](https://github.com/graphcommerce-org/graphcommerce/pull/1729) [`4f85e4878`](https://github.com/graphcommerce-org/graphcommerce/commit/4f85e4878e4ad0dd528d60ad35826da0677059a9) - Add the ability to specificy plugins on the package name (e.g. `@graphcommerce/magento-cart-payment-method`) ([@paales](https://github.com/paales))
28
+
29
+ - [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`be10e8cd1`](https://github.com/graphcommerce-org/graphcommerce/commit/be10e8cd1dce172a914ee9e5f65fdca4d0929fc8) - Migrated payment methods to use the new `onSuccess` method from `PaymentMethodContextProvider` instead of redirecting manually, makes sure the onSuccess method can be used by plugins. ([@paales](https://github.com/paales))
30
+
31
+ - [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`52882a63e`](https://github.com/graphcommerce-org/graphcommerce/commit/52882a63e96c0d3ba9641c3714d288fa4f420c82) - Do not forward the Prev prop in plugins ([@paales](https://github.com/paales))
32
+
3
33
  ## 5.0.0-canary.14
4
34
 
5
35
  ## 5.0.0-canary.13
@@ -52,6 +82,10 @@
52
82
 
53
83
  ## 4.13.2-canary.0
54
84
 
85
+ ## 4.13.3
86
+
87
+ ## 4.13.2
88
+
55
89
  ## 4.13.1
56
90
 
57
91
  ## 4.13.1-canary.2
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-payment-braintree",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "5.0.0-canary.14",
5
+ "version": "5.1.0-canary.0",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,24 +12,24 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "^5.0.0-canary.14",
16
- "@graphcommerce/magento-cart-shipping-address": "5.0.0-canary.14",
17
- "@graphcommerce/magento-product": "5.0.0-canary.14",
18
- "@graphcommerce/magento-product-configurable": "5.0.0-canary.14",
19
- "@graphcommerce/prettier-config-pwa": "^5.0.0-canary.14",
20
- "@graphcommerce/typescript-config-pwa": "^5.0.0-canary.14",
15
+ "@graphcommerce/eslint-config-pwa": "^5.1.0-canary.0",
16
+ "@graphcommerce/magento-cart-shipping-address": "5.1.0-canary.0",
17
+ "@graphcommerce/magento-product": "5.1.0-canary.0",
18
+ "@graphcommerce/magento-product-configurable": "5.1.0-canary.0",
19
+ "@graphcommerce/prettier-config-pwa": "^5.1.0-canary.0",
20
+ "@graphcommerce/typescript-config-pwa": "^5.1.0-canary.0",
21
21
  "@playwright/test": "^1.21.1",
22
22
  "@types/braintree-web": "^3.75.20",
23
23
  "type-fest": "^2.12.2"
24
24
  },
25
25
  "dependencies": {
26
- "@graphcommerce/graphql": "5.0.0-canary.14",
27
- "@graphcommerce/image": "5.0.0-canary.14",
28
- "@graphcommerce/magento-cart": "5.0.0-canary.14",
29
- "@graphcommerce/magento-cart-payment-method": "5.0.0-canary.14",
30
- "@graphcommerce/magento-store": "5.0.0-canary.14",
31
- "@graphcommerce/next-ui": "5.0.0-canary.14",
32
- "@graphcommerce/react-hook-form": "5.0.0-canary.14",
26
+ "@graphcommerce/graphql": "5.1.0-canary.0",
27
+ "@graphcommerce/image": "5.1.0-canary.0",
28
+ "@graphcommerce/magento-cart": "5.1.0-canary.0",
29
+ "@graphcommerce/magento-cart-payment-method": "5.1.0-canary.0",
30
+ "@graphcommerce/magento-store": "5.1.0-canary.0",
31
+ "@graphcommerce/next-ui": "5.1.0-canary.0",
32
+ "@graphcommerce/react-hook-form": "5.1.0-canary.0",
33
33
  "braintree-web": "^3.86.0"
34
34
  },
35
35
  "peerDependencies": {