spree_square 0.1.0 → 0.1.1
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/CHANGELOG.md +8 -0
- data/README.md +4 -0
- data/app/services/spree_square/oauth_client.rb +1 -0
- data/lib/spree_square/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e77dabce99dbae4bf55167dc863b5f8a01f49cdeeff5bdd1cf05b34ef55773f
|
|
4
|
+
data.tar.gz: '0709cf13b8ba11aecacae6314937acde7d98994a4f62982dbbcc5d37c120785b'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3290d9b771ac252b623f0180a1a8e16f5b7e679172cf9c2690c664b6129cde31e3eec13dd8f413f8f1bf85334755e00a04fd3b71eb89e895e1a0eb1cb5afe2e
|
|
7
|
+
data.tar.gz: 777e7a21465fd95d3e5e32eaeacc4a270f17be68a1e752ec7f5414794e338b0ae96ccae17eec73b73e0ee60105e4763da42672a7026cded812959fe8656bb171
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project are documented here.
|
|
4
4
|
|
|
5
|
+
## 0.1.1
|
|
6
|
+
|
|
7
|
+
- OAuth now requests `PAYMENTS_READ` in addition to the existing scopes. Without it, reading
|
|
8
|
+
payment/refund state (`Client#payments`/raw `refunds` calls) fails with `INSUFFICIENT_SCOPES`
|
|
9
|
+
even though creating payments (`PAYMENTS_WRITE`) already worked. Existing connections need a
|
|
10
|
+
disconnect/reconnect in the admin to pick up the wider grant — Square doesn't expand scopes on
|
|
11
|
+
a token in place.
|
|
12
|
+
|
|
5
13
|
## 0.1.0
|
|
6
14
|
|
|
7
15
|
Initial public release.
|
data/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Spree Square
|
|
2
2
|
|
|
3
|
+
[](https://rubygems.org/gems/spree_square)
|
|
4
|
+
[](https://github.com/amitkssolanki/spree_square/releases)
|
|
5
|
+
[](LICENSE.md)
|
|
6
|
+
|
|
3
7
|
This is a Square extension for [Spree Commerce](https://spreecommerce.org), an open source e-commerce platform built with Ruby on Rails.
|
|
4
8
|
|
|
5
9
|
## Installation
|
data/lib/spree_square/version.rb
CHANGED