shopify_app 21.6.0 → 21.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a92631c8bf253b232ab525ca71c8eb4e9dd9803d040942994d6c82aa440a3a83
4
- data.tar.gz: 27bc111e45acffb302e8c794e8ecbffe9c558ab0deb3234b9512050565d8e866
3
+ metadata.gz: '008956269ae292bfcb408c5701406a310047edbf97fb9296842187dd007d3b9c'
4
+ data.tar.gz: dc745806e7b7704ee849fe492860aebc9e4d3ff6a45dde83cad944c96cd7721a
5
5
  SHA512:
6
- metadata.gz: 5b1ff59a290a9ef78dde26b03ce51b01ab31569e1d3ea29daca6df81dfec1903e9f785b06db4aa5fbe7dd66a078c4647ff981f5e3a02508b7457c07e84a5cc51
7
- data.tar.gz: 25d4baeebf8988d25bf3ac545deba5746ed6ff56e33d8ea0de8413fff50ae711e4804e2a10da2b893e2a741561be20b05b58d26ba9ab458fb29f582009dbd2f3
6
+ metadata.gz: b5c923af9c94e9c95278febd2b528bd1f51b6e4ff59693f9f32937c37bec078eee4ff06c801f52a2f7424df46b13c0616989e413a4c849b85e74b9394b02cae9
7
+ data.tar.gz: 93511dc7c71caeec004438d7131d9289eae5dd285365e9fd10fbb771e5567818e561c747607cefe12ff76e32c4f913f59704008db90e13bbab4c216486b7d734
data/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
1
  Unreleased
2
2
  ----------
3
3
 
4
+ 21.7.0 (Oct 12, 2023)
5
+ ----------
6
+ * Fixes typo in webhook generator [#1704](https://github.com/Shopify/shopify_app/pull/1704)
7
+ * Fix registration of event_bridge and pub_sub webhooks [#1635](https://github.com/Shopify/shopify_app/pull/1635)
8
+ * Adds support for adding any number of trial days within `EnsureBilling` by adding the `trial_days` field to `BillingConfiguration`
9
+ * Updated AppBridge to 3.7.8 [#1680](https://github.com/Shopify/shopify_app/pull/1680)
10
+ * Support falling back to 2 letter language code locales [#1711](https://github.com/Shopify/shopify_app/pull/1711)
11
+ * Fix locale leaks across requests [#1711](https://github.com/Shopify/shopify_app/pull/1711)
12
+ * Fix bug in `InMemoryUserSessionStore#store`, this can now be used out of box. [#1716](https://github.com/Shopify/shopify_app/pull/1716)
13
+ * Adds support for 2023-10 API version [#1734](https://github.com/Shopify/shopify_app/pull/1734)
14
+
4
15
  21.6.0 (July 11, 2023)
5
16
  ----------
6
17
  * Adds support for toggling test charges within `EnsureBilling` by adding `test` field to `BillingConfiguration` and pulling in environment variable [#1688](https://github.com/Shopify/shopify_app/pull/1688)
data/CONTRIBUTING.md CHANGED
@@ -23,7 +23,7 @@ Shopify has an official message board with dedicated forums to discuss all thing
23
23
  * [Shopify Apps](https://community.shopify.com/c/Shopify-Apps/bd-p/shopify-apps)
24
24
  * [Shopify APIs & SDKs](https://community.shopify.com/c/Shopify-APIs-SDKs/bd-p/shopify-apis-and-technology)
25
25
 
26
- If you prefer to chat instead, join the [Shopify Partners Slack Community group](https://www.shopify.com/partners/community#conversation). This Slack group hosts an active community of thousands of app developers.
26
+ If you prefer to chat instead, join the [Shopify Partners Slack Community group](https://community.shopify.com/c/partners-and-developers/ct-p/appdev). This Slack group hosts an active community of thousands of app developers.
27
27
 
28
28
  By participating in the Community forum or Slack group, you agree to adhere to the forum [Code of Conduct](https://community.shopify.com/c/Announcements/Code-of-Conduct/m-p/491969#M23) outlined.
29
29
 
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shopify_app (21.6.0)
4
+ shopify_app (21.7.0)
5
5
  activeresource
6
6
  addressable (~> 2.7)
7
7
  browser_sniffer (~> 2.0)
8
8
  jwt (>= 2.2.3)
9
9
  rails (> 5.2.1)
10
10
  redirect_safely (~> 1.0)
11
- shopify_api (~> 13.1)
11
+ shopify_api (~> 13.2)
12
12
  sprockets-rails (>= 2.0.0)
13
13
 
14
14
  GEM
@@ -217,7 +217,7 @@ GEM
217
217
  ruby-progressbar (1.13.0)
218
218
  ruby2_keywords (0.0.5)
219
219
  securerandom (0.2.2)
220
- shopify_api (13.1.0)
220
+ shopify_api (13.2.0)
221
221
  activesupport
222
222
  concurrent-ruby
223
223
  hash_diff
data/README.md CHANGED
@@ -107,7 +107,7 @@ You can find documentation on gem usage, concepts, mixins, installation, and mor
107
107
  * [Controller Concerns](/docs/shopify_app/controller-concerns.md)
108
108
  * [Generators](/docs/shopify_app/generators.md)
109
109
  * [ScriptTags](/docs/shopify_app/script-tags.md)
110
- * [Session repository](/docs/shopify_app/session-repository.md)
110
+ * [Sessions](/docs/shopify_app/sessions.md)
111
111
  * [Handling changes in access scopes](/docs/shopify_app/handling-access-scopes-changes.md)
112
112
  * [Testing](/docs/shopify_app/testing.md)
113
113
  * [Webhooks](/docs/shopify_app/webhooks.md)