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 #1010 from Shopify/changeset-release/main
Browse files Browse the repository at this point in the history
Packages for release
  • Loading branch information
paulomarg authored Oct 12, 2023
2 parents 4cde6c8 + bb2a550 commit 3a274a5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .changeset/poor-books-do.md

This file was deleted.

10 changes: 8 additions & 2 deletions packages/shopify-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 8.0.1

### Patch Changes

- c8eebf30: Fixing publishing process to prevent empty packages

## 8.0.0

### Major Changes
Expand Down Expand Up @@ -339,15 +345,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 = '8.0.0';
export const SHOPIFY_API_LIBRARY_VERSION = '8.0.1';
2 changes: 1 addition & 1 deletion packages/shopify-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/shopify-api",
"version": "8.0.0",
"version": "8.0.1",
"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

0 comments on commit 3a274a5

Please sign in to comment.