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

Commit

Permalink
Merge pull request #1208 from Shopify/changeset-release/main
Browse files Browse the repository at this point in the history
Packages for release
  • Loading branch information
lizkenyon authored Feb 15, 2024
2 parents 4d5c1f5 + aea27f1 commit bc1a3cb
Show file tree
Hide file tree
Showing 17 changed files with 56 additions and 44 deletions.
5 changes: 0 additions & 5 deletions .changeset/clean-eagles-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curly-boxes-switch.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/honest-walls-design.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-cats-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/serious-toes-reflect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silly-spiders-repair.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/admin-api-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @shopify/admin-api-client

## 0.2.4

### Patch Changes

- Updated dependencies [295859d6]
- @shopify/graphql-client@0.9.4

## 0.2.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/admin-api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/admin-api-client",
"version": "0.2.3",
"version": "0.2.4",
"description": "Shopify Admin API Client - A lightweight JS client to interact with Shopify's Admin API",
"repository": {
"type": "git",
Expand Down Expand Up @@ -60,7 +60,7 @@
"dist/**/*.*"
],
"dependencies": {
"@shopify/graphql-client": "^0.9.3"
"@shopify/graphql-client": "^0.9.4"
},
"devDependencies": {
"jest-environment-jsdom": "^29.5.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/api-codegen-preset/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.0.3

### Patch Changes

- e10395ca: Update @graphql-codegen/typescript from 4.0.1 to 4.0.4.

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/api-codegen-preset/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/api-codegen-preset",
"version": "0.0.2",
"version": "0.0.3",
"description": "Preset for graphql-codegen to parse and type queries to Shopify APIs",
"author": "Shopify",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/graphql-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @shopify/graphql-client

## 0.9.4

### Patch Changes

- 295859d6: Fix GraphQL client validations for store hosts starting with http

## 0.9.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/graphql-client",
"version": "0.9.3",
"version": "0.9.4",
"description": "Shopify GraphQL Client - A lightweight generic GraphQL JS client to interact with Shopify GraphQL APIs",
"repository": {
"type": "git",
Expand Down
27 changes: 20 additions & 7 deletions packages/shopify-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 9.3.0

### Minor Changes

- 35e06823: Add webhook subtopic as an additional option field when creating webhook subscriptions

### Patch Changes

- fbae4bcc: Bumps compare-versions from 5.0.3 to 6.1.0.
- cc52aaca: Fix linked reference for session in token exchange docs
- @shopify/admin-api-client@0.2.4
- @shopify/storefront-api-client@0.2.4

## 9.2.0

### Minor Changes
Expand Down Expand Up @@ -78,13 +91,13 @@
Before:
```ts
import {gdprTopics} from '@shopify/shopify-api';
import { gdprTopics } from "@shopify/shopify-api";
```
After:
```ts
import {privacyTopics} from '@shopify/shopify-api';
import { privacyTopics } from "@shopify/shopify-api";
```
### Minor Changes
Expand Down Expand Up @@ -137,13 +150,13 @@
{
interval: BillingInterval.Usage,
amount: 30,
currencyCode: 'USD',
terms: 'per 1000 emails',
currencyCode: "USD",
terms: "per 1000 emails",
},
{
interval: BillingInterval.Every30Days,
amount: 30,
currencyCode: 'USD',
currencyCode: "USD",
discount: {
durationLimitInIntervals: 3,
value: {
Expand Down Expand Up @@ -515,15 +528,15 @@
Before:
```js
app.post('/graphql', async (req, res) => {
app.post("/graphql", async (req, res) => {
await Shopify.Utils.graphqlProxy(req, res);
});
```
After:
```js
app.post('/graphql', async (req, res) => {
app.post("/graphql", async (req, res) => {
const response = await Shopify.Utils.graphqlProxy(req, res);
res.status(200).send(response.body);
});
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-api/lib/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const SHOPIFY_API_LIBRARY_VERSION = '9.2.0';
export const SHOPIFY_API_LIBRARY_VERSION = '9.3.0';
6 changes: 3 additions & 3 deletions packages/shopify-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/shopify-api",
"version": "9.2.0",
"version": "9.3.0",
"description": "Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down Expand Up @@ -70,9 +70,9 @@
"node-fetch": "^2.6.7"
},
"dependencies": {
"@shopify/admin-api-client": "^0.2.3",
"@shopify/admin-api-client": "^0.2.4",
"@shopify/network": "^3.2.1",
"@shopify/storefront-api-client": "^0.2.3",
"@shopify/storefront-api-client": "^0.2.4",
"compare-versions": "^6.1.0",
"isbot": "^4.4.0",
"jose": "^5.2.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/storefront-api-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @shopify/storefront-api-client

## 0.2.4

### Patch Changes

- Updated dependencies [295859d6]
- @shopify/graphql-client@0.9.4

## 0.2.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/storefront-api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/storefront-api-client",
"version": "0.2.3",
"version": "0.2.4",
"description": "Shopify Storefront API Client - A lightweight JS client to interact with Shopify's Storefront API",
"repository": {
"type": "git",
Expand Down Expand Up @@ -83,7 +83,7 @@
"!node_modules"
],
"dependencies": {
"@shopify/graphql-client": "^0.9.3"
"@shopify/graphql-client": "^0.9.4"
},
"devDependencies": {
"jest-environment-jsdom": "^29.5.0"
Expand Down

0 comments on commit bc1a3cb

Please sign in to comment.