Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit 356f86c

Browse files
Version Packages
1 parent b0ed54a commit 356f86c

File tree

17 files changed

+50
-44
lines changed

17 files changed

+50
-44
lines changed

.changeset/clean-cougars-switch.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fair-nails-hear.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/gentle-doors-complain.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/grumpy-numbers-count.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/neat-pans-nail.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/shaggy-apes-argue.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/sixty-rocks-teach.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/admin-api-client/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @shopify/admin-api-client
22

3+
## 0.2.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [e9652b7]
8+
- @shopify/graphql-client@0.10.3
9+
310
## 0.2.7
411

512
### Patch Changes

packages/admin-api-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/admin-api-client",
3-
"version": "0.2.7",
3+
"version": "0.2.8",
44
"description": "Shopify Admin API Client - A lightweight JS client to interact with Shopify's Admin API",
55
"repository": {
66
"type": "git",
@@ -60,7 +60,7 @@
6060
"dist/**/*.*"
6161
],
6262
"dependencies": {
63-
"@shopify/graphql-client": "^0.10.2"
63+
"@shopify/graphql-client": "^0.10.3"
6464
},
6565
"devDependencies": {
6666
"jest-environment-jsdom": "^29.5.0",

packages/api-codegen-preset/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.0.5
4+
5+
### Patch Changes
6+
7+
- 8e06306: Replaced @shopify/hydrogen-codegen with its more generic successor, @shopify/graphql-codegen. All of the changes are internal, so this package is unchanged.
8+
39
## 0.0.4
410

511
### Patch Changes

packages/api-codegen-preset/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/api-codegen-preset",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "Preset for graphql-codegen to parse and type queries to Shopify APIs",
55
"author": "Shopify",
66
"license": "MIT",

packages/graphql-client/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @shopify/graphql-client
22

3+
## 0.10.3
4+
5+
### Patch Changes
6+
7+
- e9652b7: Remove `Partial` around the `ClientStreamResponse.data` type
8+
39
## 0.10.2
410

511
### Patch Changes

packages/graphql-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/graphql-client",
3-
"version": "0.10.2",
3+
"version": "0.10.3",
44
"description": "Shopify GraphQL Client - A lightweight generic GraphQL JS client to interact with Shopify GraphQL APIs",
55
"repository": {
66
"type": "git",

packages/shopify-api/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## 9.5.0
4+
5+
### Minor Changes
6+
7+
- 01371f7: Add function to authenticate fulfillment service requests
8+
9+
### Patch Changes
10+
11+
- 4e7c479: Show an INFO log for disabled future flags to encourage apps to migrate ahead of time, making major version bumps simpler.
12+
- 13a230d: Enabled returning the full response object in `Customer.search()` and `GiftCard.search()`, so that apps can paginate through the results.
13+
- f57712c: Refactor HMAC validation to use a common function.
14+
- 01a803d: Reintroduced logging of HTTP requests for OAuth processes, which was incorrectly removed when the new clients were introduced.
15+
- @shopify/admin-api-client@0.2.8
16+
- @shopify/storefront-api-client@0.3.3
17+
318
## 9.4.1
419

520
### Patch Changes

packages/shopify-api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/shopify-api",
3-
"version": "9.4.1",
3+
"version": "9.5.0",
44
"description": "Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks",
55
"main": "./lib/index.js",
66
"types": "./lib/index.d.ts",
@@ -70,9 +70,9 @@
7070
"node-fetch": "^2.6.7"
7171
},
7272
"dependencies": {
73-
"@shopify/admin-api-client": "^0.2.7",
73+
"@shopify/admin-api-client": "^0.2.8",
7474
"@shopify/network": "^3.2.1",
75-
"@shopify/storefront-api-client": "^0.3.2",
75+
"@shopify/storefront-api-client": "^0.3.3",
7676
"compare-versions": "^6.1.0",
7777
"isbot": "^4.4.0",
7878
"jose": "^5.2.2",

packages/storefront-api-client/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @shopify/storefront-api-client
22

3+
## 0.3.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [e9652b7]
8+
- @shopify/graphql-client@0.10.3
9+
310
## 0.3.2
411

512
### Patch Changes

packages/storefront-api-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/storefront-api-client",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "Shopify Storefront API Client - A lightweight JS client to interact with Shopify's Storefront API",
55
"repository": {
66
"type": "git",
@@ -83,7 +83,7 @@
8383
"!node_modules"
8484
],
8585
"dependencies": {
86-
"@shopify/graphql-client": "^0.10.2"
86+
"@shopify/graphql-client": "^0.10.3"
8787
},
8888
"devDependencies": {
8989
"jest-environment-jsdom": "^29.5.0"

0 commit comments

Comments
 (0)