solidus_paypal_commerce_platform 0.4.0 → 0.6.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.
- checksums.yaml +4 -4
- data/.circleci/config.yml +23 -4
- data/.github/stale.yml +1 -17
- data/.rubocop.yml +2 -1
- data/CHANGELOG.md +194 -147
- data/Gemfile +14 -1
- data/README.md +2 -2
- data/app/assets/javascripts/spree/frontend/solidus_paypal_commerce_platform/button_actions.js +7 -4
- data/app/controllers/solidus_paypal_commerce_platform/orders_controller.rb +3 -2
- data/app/controllers/solidus_paypal_commerce_platform/paypal_orders_controller.rb +1 -1
- data/app/models/solidus_paypal_commerce_platform/gateway.rb +0 -2
- data/app/models/solidus_paypal_commerce_platform/payment_method.rb +7 -6
- data/app/models/solidus_paypal_commerce_platform/payment_source.rb +1 -1
- data/app/models/solidus_paypal_commerce_platform/paypal_address.rb +6 -2
- data/app/models/solidus_paypal_commerce_platform/paypal_order.rb +26 -34
- data/bin/sandbox +3 -24
- data/lib/generators/solidus_paypal_commerce_platform/install/install_generator.rb +46 -21
- data/lib/paypal/access_token.rb +22 -0
- data/lib/paypal/lib.rb +19 -0
- data/lib/paypal/paypal_checkout_sdk/orders/orders_authorize_request.rb +42 -0
- data/lib/paypal/paypal_checkout_sdk/orders/orders_capture_request.rb +40 -0
- data/lib/paypal/paypal_checkout_sdk/orders/orders_create_request.rb +34 -0
- data/lib/paypal/paypal_checkout_sdk/orders/orders_get_request.rb +24 -0
- data/lib/paypal/paypal_checkout_sdk/orders/orders_patch_request.rb +25 -0
- data/lib/paypal/paypal_checkout_sdk/orders/orders_validate_request.rb +32 -0
- data/lib/paypal/paypal_checkout_sdk/payments/authorizations_capture_request.rb +36 -0
- data/lib/paypal/paypal_checkout_sdk/payments/authorizations_get_request.rb +24 -0
- data/lib/paypal/paypal_checkout_sdk/payments/authorizations_reauthorize_request.rb +43 -0
- data/lib/paypal/paypal_checkout_sdk/payments/authorizations_void_request.rb +25 -0
- data/lib/paypal/paypal_checkout_sdk/payments/captures_get_request.rb +24 -0
- data/lib/paypal/paypal_checkout_sdk/payments/captures_refund_request.rb +38 -0
- data/lib/paypal/paypal_checkout_sdk/payments/refunds_get_request.rb +24 -0
- data/lib/paypal/paypal_environment.rb +39 -0
- data/lib/paypal/paypal_http_client.rb +56 -0
- data/lib/paypal/token_requests.rb +42 -0
- data/lib/solidus_paypal_commerce_platform/access_token_authorization_request.rb +1 -1
- data/lib/solidus_paypal_commerce_platform/client.rb +7 -4
- data/lib/solidus_paypal_commerce_platform/configuration.rb +1 -1
- data/lib/solidus_paypal_commerce_platform/paypal_checkout_sdk/orders/orders_authorize_request.rb +48 -0
- data/lib/solidus_paypal_commerce_platform/paypal_checkout_sdk/orders/orders_capture_request.rb +46 -0
- data/lib/solidus_paypal_commerce_platform/paypal_checkout_sdk/orders/orders_patch_request.rb +27 -0
- data/lib/solidus_paypal_commerce_platform/paypal_checkout_sdk/orders/orders_validate_request.rb +36 -0
- data/lib/solidus_paypal_commerce_platform/paypal_checkout_sdk/payments/authorizations_reauthorize_request.rb +50 -0
- data/lib/solidus_paypal_commerce_platform/paypal_checkout_sdk/payments/captures_refund_request.rb +43 -0
- data/lib/solidus_paypal_commerce_platform/version.rb +1 -1
- data/lib/solidus_paypal_commerce_platform.rb +1 -0
- data/solidus_paypal_commerce_platform.gemspec +8 -7
- metadata +54 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 64ecb1bbe9f5e77a70613976318354d6b0e3011c529e95d410229e31c55c3fb1
|
4
|
+
data.tar.gz: 7d6aae5716b1c2a9aa88a2c843755c0312b7025f5dde7cdd539c5ea7cb059974
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 532b61e156f5a3cd0ff0eca30e65fcdf7f9e70fdfb0c69f299b2528cf3ed96bd9c08540007bafc19f26e17a1e317067270506f1da986f5e52e38dd757ef62605
|
7
|
+
data.tar.gz: 9e79910413c373e01efd301789b1b3dce257976102c7de3ce61383a1aa3e8f32ac13f1ff54e514263ce0dfdad971e49ef2eddb8d7c59deb360e8b98f3a4c06d6
|
data/.circleci/config.yml
CHANGED
@@ -11,15 +11,32 @@ orbs:
|
|
11
11
|
|
12
12
|
jobs:
|
13
13
|
run-specs-with-postgres:
|
14
|
-
executor:
|
14
|
+
executor:
|
15
|
+
name: solidusio_extensions/postgres
|
16
|
+
ruby_version: '3.1'
|
15
17
|
steps:
|
16
|
-
-
|
18
|
+
- checkout
|
19
|
+
- browser-tools/install-chrome
|
17
20
|
- solidusio_extensions/run-tests
|
21
|
+
|
18
22
|
run-specs-with-mysql:
|
19
|
-
executor:
|
23
|
+
executor:
|
24
|
+
name: solidusio_extensions/mysql
|
25
|
+
ruby_version: '3.0'
|
20
26
|
steps:
|
21
|
-
-
|
27
|
+
- checkout
|
28
|
+
- browser-tools/install-chrome
|
22
29
|
- solidusio_extensions/run-tests
|
30
|
+
|
31
|
+
run-specs-with-sqlite:
|
32
|
+
executor:
|
33
|
+
name: solidusio_extensions/sqlite
|
34
|
+
ruby_version: '2.7'
|
35
|
+
steps:
|
36
|
+
- checkout
|
37
|
+
- browser-tools/install-chrome
|
38
|
+
- solidusio_extensions/run-tests
|
39
|
+
|
23
40
|
lint-code:
|
24
41
|
executor: solidusio_extensions/sqlite-memory
|
25
42
|
steps:
|
@@ -30,6 +47,7 @@ workflows:
|
|
30
47
|
jobs:
|
31
48
|
- run-specs-with-postgres
|
32
49
|
- run-specs-with-mysql
|
50
|
+
- run-specs-with-sqlite
|
33
51
|
- lint-code
|
34
52
|
|
35
53
|
"Weekly run specs against master":
|
@@ -43,3 +61,4 @@ workflows:
|
|
43
61
|
jobs:
|
44
62
|
- run-specs-with-postgres
|
45
63
|
- run-specs-with-mysql
|
64
|
+
- run-specs-with-sqlite
|
data/.github/stale.yml
CHANGED
@@ -1,17 +1 @@
|
|
1
|
-
|
2
|
-
daysUntilStale: 60
|
3
|
-
# Number of days of inactivity before a stale issue is closed
|
4
|
-
daysUntilClose: false
|
5
|
-
# Issues with these labels will never be considered stale
|
6
|
-
exemptLabels:
|
7
|
-
- pinned
|
8
|
-
- security
|
9
|
-
# Label to use when marking an issue as stale
|
10
|
-
staleLabel: stale
|
11
|
-
# Comment to post when marking an issue as stale. Set to `false` to disable
|
12
|
-
markComment: >
|
13
|
-
This issue has been automatically marked as stale because it has not had
|
14
|
-
recent activity. It might be closed if no further activity occurs. Thank you
|
15
|
-
for your contributions.
|
16
|
-
# Comment to post when closing a stale issue. Set to `false` to disable
|
17
|
-
closeComment: false
|
1
|
+
_extends: .github
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,224 +1,271 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [v0.
|
3
|
+
## [v0.6.0](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.6.0) (2022-11-25)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/solidusio
|
5
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.6.0...v0.6.0)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- More fixes and improvements extracted from SSF support [\#168](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/168) ([elia](https://github.com/elia))
|
10
|
+
* inline the load_order before action
|
11
|
+
* require the payment_method_id param when loading the payment method
|
12
|
+
* mark the javascript_sdk_url as HTML safe
|
13
|
+
* ensure amounts are presented with 2 decimals for the PayPal API
|
14
|
+
* fixed the sign in requests
|
15
|
+
- Reorganize the install generator and deprecate `--skip-migrations` [\#167](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/167) ([elia](https://github.com/elia))
|
16
|
+
- Move 'shipping\_preference' preference under PaypalOrder\#to\_json [\#152](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/152) ([retsef](https://github.com/retsef))
|
17
|
+
- Truncate the product name to 127 characters [\#139](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/139) ([DanielePalombo](https://github.com/DanielePalombo))
|
18
|
+
- Fix issue on international transactions [\#129](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/129) ([jtapia](https://github.com/jtapia))
|
19
|
+
|
20
|
+
## [v0.6.0](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.6.0) (2022-11-25)
|
21
|
+
|
22
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.5.0...v0.6.0)
|
23
|
+
|
24
|
+
**Fixed bugs:**
|
25
|
+
|
26
|
+
- Gem does not support Ruby 3.0 [\#145](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/145)
|
27
|
+
|
28
|
+
**Closed issues:**
|
29
|
+
|
30
|
+
- Invalid string length error [\#135](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/135)
|
31
|
+
- PayPal SDK JS Error: Disallowed query param: shipping\_preference [\#133](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/133)
|
32
|
+
|
33
|
+
## [v0.5.0](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.5.0) (2022-10-07)
|
34
|
+
|
35
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.4.0...v0.5.0)
|
36
|
+
|
37
|
+
**Merged pull requests:**
|
38
|
+
|
39
|
+
- Update links after moving to @solidusio [\#164](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/164) ([elia](https://github.com/elia))
|
40
|
+
- Assign created orders to users / Require Solidus 3 & Ruby 2.7 [\#163](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/163) ([elia](https://github.com/elia))
|
41
|
+
- Fix master, import paypal-checkout-sdk [\#161](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/161) ([cpfergus1](https://github.com/cpfergus1))
|
42
|
+
- Update to use forked solidus\_frontend when needed [\#160](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/160) ([waiting-for-dev](https://github.com/waiting-for-dev))
|
43
|
+
- Fix paypal\_order name address bug [\#153](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/153) ([RyanofWoods](https://github.com/RyanofWoods))
|
44
|
+
|
45
|
+
## [v0.4.0](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.4.0) (2022-06-03)
|
46
|
+
|
47
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.3.2...v0.4.0)
|
6
48
|
|
7
49
|
**Closed issues:**
|
8
50
|
|
9
|
-
- Gem has RuboCop warnings [\#144](https://github.com/solidusio
|
10
|
-
- Silent Failure In JS [\#130](https://github.com/solidusio
|
11
|
-
- Not Applying Sales Tax [\#126](https://github.com/solidusio
|
51
|
+
- Gem has RuboCop warnings [\#144](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/144)
|
52
|
+
- Silent Failure In JS [\#130](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/130)
|
53
|
+
- Not Applying Sales Tax [\#126](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/126)
|
12
54
|
|
13
55
|
**Merged pull requests:**
|
14
56
|
|
15
|
-
-
|
16
|
-
-
|
17
|
-
- Block \#capture on
|
18
|
-
-
|
19
|
-
-
|
20
|
-
-
|
21
|
-
-
|
22
|
-
-
|
23
|
-
-
|
57
|
+
- Bump SolidusPaypalCommercePlatform to 0.4.0 [\#158](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/158) ([gsmendoza](https://github.com/gsmendoza))
|
58
|
+
- Fix Rails 7 autoloading issues with SolidusPaypalCommercePlatform [\#156](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/156) ([gsmendoza](https://github.com/gsmendoza))
|
59
|
+
- Block \#capture on Pending Payments" [\#155](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/155) ([Naokimi](https://github.com/Naokimi))
|
60
|
+
- Block \#capture on PayPal PENDING Payments [\#154](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/154) ([Naokimi](https://github.com/Naokimi))
|
61
|
+
- Change Venmo integration to use Venmo standalone [\#151](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/151) ([RyanofWoods](https://github.com/RyanofWoods))
|
62
|
+
- Allow enable\_venmo preference to have default Venmo behaviour [\#148](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/148) ([RyanofWoods](https://github.com/RyanofWoods))
|
63
|
+
- Fix RuboCop warnings [\#147](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/147) ([RyanofWoods](https://github.com/RyanofWoods))
|
64
|
+
- Revert "Allow Ruby 3" [\#146](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/146) ([RyanofWoods](https://github.com/RyanofWoods))
|
65
|
+
- Add Venmo as payment option [\#138](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/138) ([RyanofWoods](https://github.com/RyanofWoods))
|
66
|
+
- Wizard\#logo use `image_path` over `image_url`. [\#131](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/131) ([essn](https://github.com/essn))
|
24
67
|
|
25
|
-
## [v0.3.2](https://github.com/solidusio
|
68
|
+
## [v0.3.2](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.3.2) (2021-05-11)
|
26
69
|
|
27
|
-
[Full Changelog](https://github.com/solidusio
|
70
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.3.1...v0.3.2)
|
28
71
|
|
29
72
|
**Closed issues:**
|
30
73
|
|
31
|
-
- Unable To Cancel An Order [\#120](https://github.com/solidusio
|
74
|
+
- Unable To Cancel An Order [\#120](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/120)
|
32
75
|
|
33
76
|
**Merged pull requests:**
|
34
77
|
|
35
|
-
- Update solidus using solidus\_dev\_support [\#124](https://github.com/solidusio
|
36
|
-
- Add NO\_SHIPPING to shipping preference [\#123](https://github.com/solidusio
|
37
|
-
- Support solidus 3.0 [\#122](https://github.com/solidusio
|
78
|
+
- Update solidus using solidus\_dev\_support [\#124](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/124) ([DanielePalombo](https://github.com/DanielePalombo))
|
79
|
+
- Add NO\_SHIPPING to shipping preference [\#123](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/123) ([DanielePalombo](https://github.com/DanielePalombo))
|
80
|
+
- Support solidus 3.0 [\#122](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/122) ([DanielePalombo](https://github.com/DanielePalombo))
|
38
81
|
|
39
|
-
## [v0.3.1](https://github.com/solidusio
|
82
|
+
## [v0.3.1](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.3.1) (2021-04-20)
|
40
83
|
|
41
|
-
[Full Changelog](https://github.com/solidusio
|
84
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.3.0...v0.3.1)
|
42
85
|
|
43
86
|
**Merged pull requests:**
|
44
87
|
|
45
|
-
- Allow Solidus 3 [\#121](https://github.com/solidusio
|
88
|
+
- Allow Solidus 3 [\#121](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/121) ([kennyadsl](https://github.com/kennyadsl))
|
46
89
|
|
47
|
-
## [v0.3.0](https://github.com/solidusio
|
90
|
+
## [v0.3.0](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.3.0) (2021-03-16)
|
48
91
|
|
49
|
-
[Full Changelog](https://github.com/solidusio
|
92
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.2.2...v0.3.0)
|
50
93
|
|
51
94
|
**Closed issues:**
|
52
95
|
|
53
|
-
- Prepare Solidus Paypal Commerce Platform for Solidus 3.0 [\#115](https://github.com/solidusio
|
96
|
+
- Prepare Solidus Paypal Commerce Platform for Solidus 3.0 [\#115](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/115)
|
54
97
|
|
55
98
|
**Merged pull requests:**
|
56
99
|
|
57
|
-
- Use new factories loading method [\#118](https://github.com/solidusio
|
58
|
-
- Update extension for Solidus 3.0 [\#117](https://github.com/solidusio
|
100
|
+
- Use new factories loading method [\#118](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/118) ([kennyadsl](https://github.com/kennyadsl))
|
101
|
+
- Update extension for Solidus 3.0 [\#117](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/117) ([seand7565](https://github.com/seand7565))
|
59
102
|
|
60
|
-
## [v0.2.2](https://github.com/solidusio
|
103
|
+
## [v0.2.2](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.2.2) (2020-11-20)
|
61
104
|
|
62
|
-
[Full Changelog](https://github.com/solidusio
|
105
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.2.1...v0.2.2)
|
63
106
|
|
64
107
|
**Implemented enhancements:**
|
65
108
|
|
66
|
-
- Make the PayPal messaging component a bit more modular [\#112](https://github.com/solidusio
|
67
|
-
- Implement and QA Paypal credit solutions [\#99](https://github.com/solidusio
|
109
|
+
- Make the PayPal messaging component a bit more modular [\#112](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/112)
|
110
|
+
- Implement and QA Paypal credit solutions [\#99](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/99)
|
68
111
|
|
69
112
|
**Closed issues:**
|
70
113
|
|
71
|
-
- Simulated Address Info in Live Order [\#104](https://github.com/solidusio
|
114
|
+
- Simulated Address Info in Live Order [\#104](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/104)
|
72
115
|
|
73
116
|
**Merged pull requests:**
|
74
117
|
|
75
|
-
- Relax SolidusWebhooks dependency [\#114](https://github.com/solidusio
|
76
|
-
- Add information about paypal credit messaging to readme [\#113](https://github.com/solidusio
|
118
|
+
- Relax SolidusWebhooks dependency [\#114](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/114) ([kennyadsl](https://github.com/kennyadsl))
|
119
|
+
- Add information about paypal credit messaging to readme [\#113](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/113) ([seand7565](https://github.com/seand7565))
|
77
120
|
|
78
|
-
## [v0.2.1](https://github.com/solidusio
|
121
|
+
## [v0.2.1](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.2.1) (2020-11-09)
|
79
122
|
|
80
|
-
[Full Changelog](https://github.com/solidusio
|
123
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.2.0...v0.2.1)
|
81
124
|
|
82
125
|
**Closed issues:**
|
83
126
|
|
84
|
-
- There was a problem connecting with paypal. [\#107](https://github.com/solidusio
|
85
|
-
- Bad Request \(400\) when opening PayPal Payment Popup \(eg clicking Pay with PayPal during checkout\) [\#103](https://github.com/solidusio
|
127
|
+
- There was a problem connecting with paypal. [\#107](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/107)
|
128
|
+
- Bad Request \(400\) when opening PayPal Payment Popup \(eg clicking Pay with PayPal during checkout\) [\#103](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/103)
|
86
129
|
|
87
130
|
**Merged pull requests:**
|
88
131
|
|
89
|
-
- Move and rename address decorator [\#111](https://github.com/solidusio
|
90
|
-
- Constrain solidus\_support to 0.5.1 or greater [\#110](https://github.com/solidusio
|
91
|
-
- Add currency to PayPal SDK URL [\#108](https://github.com/solidusio
|
92
|
-
- Update specs to comply with new rubocop regulations [\#106](https://github.com/solidusio
|
93
|
-
- Add address only to initial PayPal request [\#105](https://github.com/solidusio
|
132
|
+
- Move and rename address decorator [\#111](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/111) ([seand7565](https://github.com/seand7565))
|
133
|
+
- Constrain solidus\_support to 0.5.1 or greater [\#110](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/110) ([seand7565](https://github.com/seand7565))
|
134
|
+
- Add currency to PayPal SDK URL [\#108](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/108) ([seand7565](https://github.com/seand7565))
|
135
|
+
- Update specs to comply with new rubocop regulations [\#106](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/106) ([seand7565](https://github.com/seand7565))
|
136
|
+
- Add address only to initial PayPal request [\#105](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/105) ([seand7565](https://github.com/seand7565))
|
94
137
|
|
95
|
-
## [v0.2.0](https://github.com/solidusio
|
138
|
+
## [v0.2.0](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.2.0) (2020-10-13)
|
96
139
|
|
97
|
-
[Full Changelog](https://github.com/solidusio
|
140
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.2.0.alpha.1...v0.2.0)
|
98
141
|
|
99
|
-
**
|
142
|
+
**Merged pull requests:**
|
100
143
|
|
101
|
-
-
|
102
|
-
-
|
103
|
-
-
|
144
|
+
- Add PayPal messaging component [\#102](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/102) ([seand7565](https://github.com/seand7565))
|
145
|
+
- Add partner ID attribute to SDK javascript tag [\#101](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/101) ([seand7565](https://github.com/seand7565))
|
146
|
+
- Set current\_order\_id and token during payment step [\#100](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/100) ([MFRWDesign](https://github.com/MFRWDesign))
|
147
|
+
- Remove incorrect/unclear info from README [\#98](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/98) ([seand7565](https://github.com/seand7565))
|
148
|
+
- Update the extension with the latest solidus\_dev\_support defaults [\#95](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/95) ([elia](https://github.com/elia))
|
149
|
+
- Add skip migration option to installer [\#94](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/94) ([seand7565](https://github.com/seand7565))
|
150
|
+
- Update README to reflect referral fee [\#93](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/93) ([seand7565](https://github.com/seand7565))
|
104
151
|
|
105
|
-
|
152
|
+
## [v0.2.0.alpha.1](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.2.0.alpha.1) (2020-10-07)
|
153
|
+
|
154
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.1.0...v0.2.0.alpha.1)
|
155
|
+
|
156
|
+
**Closed issues:**
|
106
157
|
|
107
|
-
-
|
108
|
-
-
|
109
|
-
-
|
110
|
-
- Remove incorrect/unclear info from README [\#98](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/pull/98) ([seand7565](https://github.com/seand7565))
|
111
|
-
- Update the extension with the latest solidus\_dev\_support defaults [\#95](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/pull/95) ([elia](https://github.com/elia))
|
112
|
-
- Add skip migration option to installer [\#94](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/pull/94) ([seand7565](https://github.com/seand7565))
|
113
|
-
- Update README to reflect referral fee [\#93](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/pull/93) ([seand7565](https://github.com/seand7565))
|
158
|
+
- README lists two different types of PayPal credentials [\#97](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/97)
|
159
|
+
- `paypal_email_confirmed` is not an actual preference [\#96](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/96)
|
160
|
+
- Make this extension the default option for Solidus [\#88](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/88)
|
114
161
|
|
115
|
-
## [v0.1.0](https://github.com/solidusio
|
162
|
+
## [v0.1.0](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.1.0) (2020-09-03)
|
116
163
|
|
117
|
-
[Full Changelog](https://github.com/solidusio
|
164
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/v0.0.1...v0.1.0)
|
118
165
|
|
119
166
|
**Merged pull requests:**
|
120
167
|
|
121
|
-
- Temporarily switch from apparition to cuprite [\#92](https://github.com/solidusio
|
122
|
-
- Update links after moving the repo to solidusio-contrib [\#91](https://github.com/solidusio
|
123
|
-
- Add a configurable state\_guesser class to guess states [\#90](https://github.com/solidusio
|
124
|
-
- Add better error handling to button\_actions.js [\#89](https://github.com/solidusio
|
168
|
+
- Temporarily switch from apparition to cuprite [\#92](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/92) ([elia](https://github.com/elia))
|
169
|
+
- Update links after moving the repo to solidusio-contrib [\#91](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/91) ([elia](https://github.com/elia))
|
170
|
+
- Add a configurable state\_guesser class to guess states [\#90](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/90) ([seand7565](https://github.com/seand7565))
|
171
|
+
- Add better error handling to button\_actions.js [\#89](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/89) ([seand7565](https://github.com/seand7565))
|
125
172
|
|
126
|
-
## [v0.0.1](https://github.com/solidusio
|
173
|
+
## [v0.0.1](https://github.com/solidusio/solidus_paypal_commerce_platform/tree/v0.0.1) (2020-08-10)
|
127
174
|
|
128
|
-
[Full Changelog](https://github.com/solidusio
|
175
|
+
[Full Changelog](https://github.com/solidusio/solidus_paypal_commerce_platform/compare/11111204cc53e8bcfd365ae70506c07940446b0c...v0.0.1)
|
129
176
|
|
130
177
|
**Implemented enhancements:**
|
131
178
|
|
132
|
-
- Frontend users should be able to check out using PayPal [\#6](https://github.com/solidusio
|
133
|
-
- Admin users should be able to style the PayPal buttons on the payment\_method show page [\#5](https://github.com/solidusio
|
134
|
-
- Webhooks [\#83](https://github.com/solidusio
|
135
|
-
- Display paypal email to customer on confirmation [\#54](https://github.com/solidusio
|
136
|
-
- Use an env accessor to control live/sandbox urls and classes [\#31](https://github.com/solidusio
|
137
|
-
- Add response object to API calls to PayPal [\#30](https://github.com/solidusio
|
179
|
+
- Frontend users should be able to check out using PayPal [\#6](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/6)
|
180
|
+
- Admin users should be able to style the PayPal buttons on the payment\_method show page [\#5](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/5)
|
181
|
+
- Webhooks [\#83](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/83) ([elia](https://github.com/elia))
|
182
|
+
- Display paypal email to customer on confirmation [\#54](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/54) ([seand7565](https://github.com/seand7565))
|
183
|
+
- Use an env accessor to control live/sandbox urls and classes [\#31](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/31) ([elia](https://github.com/elia))
|
184
|
+
- Add response object to API calls to PayPal [\#30](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/30) ([seand7565](https://github.com/seand7565))
|
138
185
|
|
139
186
|
**Fixed bugs:**
|
140
187
|
|
141
|
-
- Users can check out with invalid payment [\#19](https://github.com/solidusio
|
142
|
-
- Have different nonce for every click of the wizard button [\#87](https://github.com/solidusio
|
143
|
-
- Correctly communicate errors when updating shipping rates [\#86](https://github.com/solidusio
|
144
|
-
- Add deface to deps [\#57](https://github.com/solidusio
|
188
|
+
- Users can check out with invalid payment [\#19](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/19)
|
189
|
+
- Have different nonce for every click of the wizard button [\#87](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/87) ([elia](https://github.com/elia))
|
190
|
+
- Correctly communicate errors when updating shipping rates [\#86](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/86) ([elia](https://github.com/elia))
|
191
|
+
- Add deface to deps [\#57](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/57) ([elia](https://github.com/elia))
|
145
192
|
|
146
193
|
**Closed issues:**
|
147
194
|
|
148
|
-
- Add something to the README about backend payments [\#75](https://github.com/solidusio
|
149
|
-
- Explore enabling the payment method by default [\#71](https://github.com/solidusio
|
150
|
-
- Explore subscribing to webhooks [\#70](https://github.com/solidusio
|
151
|
-
- We're using the wrong ID for paypal\_order\_id [\#69](https://github.com/solidusio
|
152
|
-
- Handle instrument declined errors [\#68](https://github.com/solidusio
|
153
|
-
- Extend lightbox during customer payment [\#63](https://github.com/solidusio
|
154
|
-
- Add this extension to demo store for integration team walkthrough [\#49](https://github.com/solidusio
|
155
|
-
- Store PayPal Debug ID [\#48](https://github.com/solidusio
|
156
|
-
- PayPal email address needs to be included on the confirm step [\#47](https://github.com/solidusio
|
157
|
-
- Digital goods should be set as not requiring shipment [\#46](https://github.com/solidusio
|
158
|
-
- Allow checkout on product/cart page to complete the order [\#44](https://github.com/solidusio
|
159
|
-
- PayPal uses different states than Solidus for some countries [\#38](https://github.com/solidusio
|
160
|
-
- Validate amount charged with PayPal [\#37](https://github.com/solidusio
|
161
|
-
- Allow order simulator to be a configurable class [\#36](https://github.com/solidusio
|
162
|
-
- Admin users have the option to edit payment amount [\#29](https://github.com/solidusio
|
163
|
-
- Add PayPal button to product page [\#27](https://github.com/solidusio
|
164
|
-
- Add PayPal button to cart page [\#26](https://github.com/solidusio
|
165
|
-
- Add `commit=false` to javascript SDK URL [\#18](https://github.com/solidusio
|
166
|
-
- Explore using Rails secrets to encode and decrypt PayPal client id and secret [\#17](https://github.com/solidusio
|
167
|
-
- Backend users should be able to checkout & admin payments [\#15](https://github.com/solidusio
|
168
|
-
- Change static sandbox URL and objects to dynamic [\#14](https://github.com/solidusio
|
169
|
-
- PayPal response address change [\#13](https://github.com/solidusio
|
170
|
-
- Ensure the email is verified before activating the payment method [\#9](https://github.com/solidusio
|
171
|
-
- Add a URL generator for the PayPal JS SDK [\#8](https://github.com/solidusio
|
172
|
-
- Allow users to onboard with PayPal [\#1](https://github.com/solidusio
|
195
|
+
- Add something to the README about backend payments [\#75](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/75)
|
196
|
+
- Explore enabling the payment method by default [\#71](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/71)
|
197
|
+
- Explore subscribing to webhooks [\#70](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/70)
|
198
|
+
- We're using the wrong ID for paypal\_order\_id [\#69](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/69)
|
199
|
+
- Handle instrument declined errors [\#68](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/68)
|
200
|
+
- Extend lightbox during customer payment [\#63](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/63)
|
201
|
+
- Add this extension to demo store for integration team walkthrough [\#49](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/49)
|
202
|
+
- Store PayPal Debug ID [\#48](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/48)
|
203
|
+
- PayPal email address needs to be included on the confirm step [\#47](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/47)
|
204
|
+
- Digital goods should be set as not requiring shipment [\#46](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/46)
|
205
|
+
- Allow checkout on product/cart page to complete the order [\#44](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/44)
|
206
|
+
- PayPal uses different states than Solidus for some countries [\#38](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/38)
|
207
|
+
- Validate amount charged with PayPal [\#37](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/37)
|
208
|
+
- Allow order simulator to be a configurable class [\#36](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/36)
|
209
|
+
- Admin users have the option to edit payment amount [\#29](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/29)
|
210
|
+
- Add PayPal button to product page [\#27](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/27)
|
211
|
+
- Add PayPal button to cart page [\#26](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/26)
|
212
|
+
- Add `commit=false` to javascript SDK URL [\#18](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/18)
|
213
|
+
- Explore using Rails secrets to encode and decrypt PayPal client id and secret [\#17](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/17)
|
214
|
+
- Backend users should be able to checkout & admin payments [\#15](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/15)
|
215
|
+
- Change static sandbox URL and objects to dynamic [\#14](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/14)
|
216
|
+
- PayPal response address change [\#13](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/13)
|
217
|
+
- Ensure the email is verified before activating the payment method [\#9](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/9)
|
218
|
+
- Add a URL generator for the PayPal JS SDK [\#8](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/8)
|
219
|
+
- Allow users to onboard with PayPal [\#1](https://github.com/solidusio/solidus_paypal_commerce_platform/issues/1)
|
173
220
|
|
174
221
|
**Merged pull requests:**
|
175
222
|
|
176
|
-
- Use live partner ids [\#85](https://github.com/solidusio
|
177
|
-
- Update README to account for checkouts without a confirmation step [\#84](https://github.com/solidusio
|
178
|
-
- Replace order simulator with something simpler [\#82](https://github.com/solidusio
|
179
|
-
- Cleanup [\#81](https://github.com/solidusio
|
180
|
-
- Send line\_item and shipping promotions to PayPal [\#80](https://github.com/solidusio
|
181
|
-
- Change outstanding\_balance to total in order total checker [\#79](https://github.com/solidusio
|
182
|
-
- Add overlay to ease transition to confirmation page [\#78](https://github.com/solidusio
|
183
|
-
- Default available\_to\_users to true [\#77](https://github.com/solidusio
|
184
|
-
- Add info about PayPal Terminal to README [\#76](https://github.com/solidusio
|
185
|
-
- Return a payment declined error on the frontend [\#74](https://github.com/solidusio
|
186
|
-
- Only use the necessary data to let the spec pass [\#73](https://github.com/solidusio
|
187
|
-
- Display capture\_id instead of order\_id to admin user [\#72](https://github.com/solidusio
|
188
|
-
- Use options instead of preferences [\#67](https://github.com/solidusio
|
189
|
-
- Update README to reflect new preferences [\#66](https://github.com/solidusio
|
190
|
-
- Add version to cache\_key [\#65](https://github.com/solidusio
|
191
|
-
- Include payment method information in pricing options cache key [\#62](https://github.com/solidusio
|
192
|
-
- Only use available payment\_methods [\#61](https://github.com/solidusio
|
193
|
-
- Explicitly require deface [\#60](https://github.com/solidusio
|
194
|
-
- Verify email address is verified before allowing payment method to be available [\#59](https://github.com/solidusio
|
195
|
-
- Use the ORB definition of lint-code [\#58](https://github.com/solidusio
|
196
|
-
- Send amount of payment to PayPal on capture [\#56](https://github.com/solidusio
|
197
|
-
- Verify amount to charge with order total [\#55](https://github.com/solidusio
|
198
|
-
- Linting the project with rubocop [\#53](https://github.com/solidusio
|
199
|
-
- Add PayPal Debug ID to log entries [\#52](https://github.com/solidusio
|
200
|
-
- Fix PayPal request success message en.yml paths [\#51](https://github.com/solidusio
|
201
|
-
- Add configuration options to SolidusPaypalCommercePlatform [\#50](https://github.com/solidusio
|
202
|
-
- Add PayPal button to product page [\#45](https://github.com/solidusio
|
203
|
-
- Add PayPal Button To Cart Page [\#43](https://github.com/solidusio
|
204
|
-
- Add ability to change address on PayPal [\#42](https://github.com/solidusio
|
205
|
-
- Add a basic codecov config to show commit status [\#41](https://github.com/solidusio
|
206
|
-
- Add CI & Coverage badges to the readme [\#40](https://github.com/solidusio
|
207
|
-
- Rely on sdk request classes [\#39](https://github.com/solidusio
|
208
|
-
- Use "commit=false" in the JS SDK url when "confirm" step is present [\#33](https://github.com/solidusio
|
209
|
-
- Renames: Gateway → PaymentMethod / Requests → Gateway [\#32](https://github.com/solidusio
|
210
|
-
- Add PayPal Virtual Terminal notice to backend [\#25](https://github.com/solidusio
|
211
|
-
- Add missing partials necessary for backend [\#24](https://github.com/solidusio
|
212
|
-
- Add the ability to void authorized payments [\#23](https://github.com/solidusio
|
213
|
-
- Fix order controller response [\#22](https://github.com/solidusio
|
214
|
-
- Add refund ability to admin payment management [\#21](https://github.com/solidusio
|
215
|
-
- Fixes and refactoring [\#20](https://github.com/solidusio
|
216
|
-
- Add ability for admin users to customize paypal button [\#16](https://github.com/solidusio
|
217
|
-
- Restore the generic bin/rails command [\#11](https://github.com/solidusio
|
218
|
-
- Add PayPal buttons to frontend checkout flow [\#10](https://github.com/solidusio
|
219
|
-
- Update readme to reflect onboarding and wizards 🧙 [\#4](https://github.com/solidusio
|
220
|
-
- Add setup wizard for paypal commerce platform [\#3](https://github.com/solidusio
|
221
|
-
- Add paypal\_commerce\_platform as a payment method [\#2](https://github.com/solidusio
|
223
|
+
- Use live partner ids [\#85](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/85) ([elia](https://github.com/elia))
|
224
|
+
- Update README to account for checkouts without a confirmation step [\#84](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/84) ([seand7565](https://github.com/seand7565))
|
225
|
+
- Replace order simulator with something simpler [\#82](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/82) ([seand7565](https://github.com/seand7565))
|
226
|
+
- Cleanup [\#81](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/81) ([elia](https://github.com/elia))
|
227
|
+
- Send line\_item and shipping promotions to PayPal [\#80](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/80) ([seand7565](https://github.com/seand7565))
|
228
|
+
- Change outstanding\_balance to total in order total checker [\#79](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/79) ([seand7565](https://github.com/seand7565))
|
229
|
+
- Add overlay to ease transition to confirmation page [\#78](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/78) ([seand7565](https://github.com/seand7565))
|
230
|
+
- Default available\_to\_users to true [\#77](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/77) ([seand7565](https://github.com/seand7565))
|
231
|
+
- Add info about PayPal Terminal to README [\#76](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/76) ([seand7565](https://github.com/seand7565))
|
232
|
+
- Return a payment declined error on the frontend [\#74](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/74) ([seand7565](https://github.com/seand7565))
|
233
|
+
- Only use the necessary data to let the spec pass [\#73](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/73) ([elia](https://github.com/elia))
|
234
|
+
- Display capture\_id instead of order\_id to admin user [\#72](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/72) ([seand7565](https://github.com/seand7565))
|
235
|
+
- Use options instead of preferences [\#67](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/67) ([seand7565](https://github.com/seand7565))
|
236
|
+
- Update README to reflect new preferences [\#66](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/66) ([seand7565](https://github.com/seand7565))
|
237
|
+
- Add version to cache\_key [\#65](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/65) ([seand7565](https://github.com/seand7565))
|
238
|
+
- Include payment method information in pricing options cache key [\#62](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/62) ([seand7565](https://github.com/seand7565))
|
239
|
+
- Only use available payment\_methods [\#61](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/61) ([seand7565](https://github.com/seand7565))
|
240
|
+
- Explicitly require deface [\#60](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/60) ([elia](https://github.com/elia))
|
241
|
+
- Verify email address is verified before allowing payment method to be available [\#59](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/59) ([seand7565](https://github.com/seand7565))
|
242
|
+
- Use the ORB definition of lint-code [\#58](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/58) ([elia](https://github.com/elia))
|
243
|
+
- Send amount of payment to PayPal on capture [\#56](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/56) ([seand7565](https://github.com/seand7565))
|
244
|
+
- Verify amount to charge with order total [\#55](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/55) ([seand7565](https://github.com/seand7565))
|
245
|
+
- Linting the project with rubocop [\#53](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/53) ([elia](https://github.com/elia))
|
246
|
+
- Add PayPal Debug ID to log entries [\#52](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/52) ([seand7565](https://github.com/seand7565))
|
247
|
+
- Fix PayPal request success message en.yml paths [\#51](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/51) ([seand7565](https://github.com/seand7565))
|
248
|
+
- Add configuration options to SolidusPaypalCommercePlatform [\#50](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/50) ([seand7565](https://github.com/seand7565))
|
249
|
+
- Add PayPal button to product page [\#45](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/45) ([seand7565](https://github.com/seand7565))
|
250
|
+
- Add PayPal Button To Cart Page [\#43](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/43) ([seand7565](https://github.com/seand7565))
|
251
|
+
- Add ability to change address on PayPal [\#42](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/42) ([seand7565](https://github.com/seand7565))
|
252
|
+
- Add a basic codecov config to show commit status [\#41](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/41) ([elia](https://github.com/elia))
|
253
|
+
- Add CI & Coverage badges to the readme [\#40](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/40) ([elia](https://github.com/elia))
|
254
|
+
- Rely on sdk request classes [\#39](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/39) ([elia](https://github.com/elia))
|
255
|
+
- Use "commit=false" in the JS SDK url when "confirm" step is present [\#33](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/33) ([elia](https://github.com/elia))
|
256
|
+
- Renames: Gateway → PaymentMethod / Requests → Gateway [\#32](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/32) ([elia](https://github.com/elia))
|
257
|
+
- Add PayPal Virtual Terminal notice to backend [\#25](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/25) ([seand7565](https://github.com/seand7565))
|
258
|
+
- Add missing partials necessary for backend [\#24](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/24) ([seand7565](https://github.com/seand7565))
|
259
|
+
- Add the ability to void authorized payments [\#23](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/23) ([seand7565](https://github.com/seand7565))
|
260
|
+
- Fix order controller response [\#22](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/22) ([seand7565](https://github.com/seand7565))
|
261
|
+
- Add refund ability to admin payment management [\#21](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/21) ([seand7565](https://github.com/seand7565))
|
262
|
+
- Fixes and refactoring [\#20](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/20) ([elia](https://github.com/elia))
|
263
|
+
- Add ability for admin users to customize paypal button [\#16](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/16) ([seand7565](https://github.com/seand7565))
|
264
|
+
- Restore the generic bin/rails command [\#11](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/11) ([elia](https://github.com/elia))
|
265
|
+
- Add PayPal buttons to frontend checkout flow [\#10](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/10) ([seand7565](https://github.com/seand7565))
|
266
|
+
- Update readme to reflect onboarding and wizards 🧙 [\#4](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/4) ([seand7565](https://github.com/seand7565))
|
267
|
+
- Add setup wizard for paypal commerce platform [\#3](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/3) ([seand7565](https://github.com/seand7565))
|
268
|
+
- Add paypal\_commerce\_platform as a payment method [\#2](https://github.com/solidusio/solidus_paypal_commerce_platform/pull/2) ([seand7565](https://github.com/seand7565))
|
222
269
|
|
223
270
|
|
224
271
|
|
data/Gemfile
CHANGED
@@ -4,7 +4,13 @@ source 'https://rubygems.org'
|
|
4
4
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
5
5
|
|
6
6
|
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
|
7
|
-
|
7
|
+
solidus_git, solidus_frontend_git = if (branch == 'master') || (branch >= 'v3.2')
|
8
|
+
%w[solidusio/solidus solidusio/solidus_frontend]
|
9
|
+
else
|
10
|
+
%w[solidusio/solidus] * 2
|
11
|
+
end
|
12
|
+
gem 'solidus', github: solidus_git, branch: branch
|
13
|
+
gem 'solidus_frontend', github: solidus_frontend_git, branch: branch
|
8
14
|
|
9
15
|
# Needed to help Bundler figure out how to resolve dependencies,
|
10
16
|
# otherwise it takes forever to resolve them.
|
@@ -23,6 +29,13 @@ else
|
|
23
29
|
gem 'sqlite3'
|
24
30
|
end
|
25
31
|
|
32
|
+
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3')
|
33
|
+
# 'net/smtp' is required by 'mail', see:
|
34
|
+
# - https://github.com/ruby/net-protocol/issues/10
|
35
|
+
# - https://stackoverflow.com/a/72474475
|
36
|
+
gem 'net-smtp', require: false
|
37
|
+
end
|
38
|
+
|
26
39
|
gemspec
|
27
40
|
|
28
41
|
# Use a local Gemfile to include development dependencies that might not be
|