shopify_api 10.0.0 → 10.0.3

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 (32) hide show
  1. checksums.yaml +4 -4
  2. data/.github/pull_request_template.md +2 -2
  3. data/.github/workflows/build.yml +1 -0
  4. data/CHANGELOG.md +238 -212
  5. data/Gemfile.lock +6 -6
  6. data/README.md +2 -6
  7. data/RELEASING.md +18 -0
  8. data/Rakefile +1 -1
  9. data/docs/usage/rest.md +5 -5
  10. data/lib/shopify_api/admin_versions.rb +14 -9
  11. data/lib/shopify_api/auth/jwt_payload.rb +6 -3
  12. data/lib/shopify_api/context.rb +2 -2
  13. data/lib/shopify_api/rest/base.rb +73 -31
  14. data/lib/shopify_api/rest/resources/2021_07/abandoned_checkout.rb +3 -4
  15. data/lib/shopify_api/rest/resources/2021_07/article.rb +9 -2
  16. data/lib/shopify_api/rest/resources/2021_07/gift_card_adjustment.rb +1 -1
  17. data/lib/shopify_api/rest/resources/2021_07/variant.rb +6 -2
  18. data/lib/shopify_api/rest/resources/2021_10/abandoned_checkout.rb +3 -4
  19. data/lib/shopify_api/rest/resources/2021_10/article.rb +9 -2
  20. data/lib/shopify_api/rest/resources/2021_10/gift_card_adjustment.rb +1 -1
  21. data/lib/shopify_api/rest/resources/2021_10/variant.rb +6 -2
  22. data/lib/shopify_api/rest/resources/2022_01/abandoned_checkout.rb +3 -4
  23. data/lib/shopify_api/rest/resources/2022_01/article.rb +9 -2
  24. data/lib/shopify_api/rest/resources/2022_01/gift_card_adjustment.rb +1 -1
  25. data/lib/shopify_api/rest/resources/2022_01/variant.rb +6 -2
  26. data/lib/shopify_api/rest/resources/2022_04/abandoned_checkout.rb +3 -4
  27. data/lib/shopify_api/rest/resources/2022_04/article.rb +9 -2
  28. data/lib/shopify_api/rest/resources/2022_04/gift_card_adjustment.rb +1 -1
  29. data/lib/shopify_api/rest/resources/2022_04/variant.rb +6 -2
  30. data/lib/shopify_api/version.rb +1 -1
  31. metadata +3 -3
  32. data/RELEASING +0 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c176457d998b9931226f755fdc278d952efab223a7575bdd56e940b7e581ead8
4
- data.tar.gz: ec0fafe2ca693fd8e2797a8af64c0c7ec18c7b807d5744b3975588442e2dc338
3
+ metadata.gz: 81babe6da64bc6c8b0e413213fff00c818778c5bc5cf9bd79b1acb25fd3ea3d1
4
+ data.tar.gz: b9dda7bb0992365df524d1e22d70ee34fee776a68c5dc9e958b826d49c6c0541
5
5
  SHA512:
6
- metadata.gz: dfc2828ff4b3c1c43ef5bacd2616425294089060031f87f455f1245130da17549f1167579744ae0a91c2ca1db7e88318a95f696f48e985aea193d09d417aa116
7
- data.tar.gz: f1a072eb58fd2b718e58f76d6ec2f2f8a0f769290aaa56cfab4ce61d67f2225ef90bfc957cbadd5b9bc08113ecf9172342f7fc8a7bc6ed888f01b50b28f06dde
6
+ metadata.gz: cb1eeacedfe1a0fdd8f0262e0bb63ea52996aa6a98f1ffee803481a2ce38424f31d8aa0658108f53a376fef29d5a65acf7bb1384d6d87ce21e52eabdc4926da8
7
+ data.tar.gz: 03c666d05fc413b5da1951a0693818ca97c48064bb2735facb019a4e04a55581525ee061e19dc1c1406e4c67a0949ded89ffec69ef5cab1f1d8866f8d514277f
@@ -1,6 +1,6 @@
1
1
  ## Description
2
2
 
3
- Fixes https://github.com/Shopify/first-party-library-planning/issues/<issue-number>
3
+ Fixes #<issue-number>
4
4
 
5
5
  Please, include a summary of what the PR is for:
6
6
  - What is the problem it is solving?
@@ -17,4 +17,4 @@ Please, describe the tests that you ran to verify your changes.
17
17
  - [ ] I have performed a self-review of my own code.
18
18
  - [ ] I have added tests that prove my fix is effective or that my feature works.
19
19
  - [ ] I have updated the project documentation.
20
- - [ ] I have added a changelog line.
20
+ - [ ] I have added a changelog line.
@@ -2,6 +2,7 @@ name: CI
2
2
 
3
3
  on:
4
4
  - push
5
+ - pull_request
5
6
 
6
7
  jobs:
7
8
  build: