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

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 11, 2023
1 parent 81a155a commit 1bd78b4
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 30 deletions.
2 changes: 0 additions & 2 deletions .changeset/brown-flowers-explode.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eight-shoes-kneel.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/olive-insects-tie.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/sixty-months-fetch.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/slimy-walls-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wicked-forks-rhyme.md

This file was deleted.

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

## 8.0.0

### Major Changes

- 737838dd: Removed support for Node 14, and removed existing code deprecations.

<!-- markdown-link-check-disable -->

For details on what's changed in this version, please see the [V8 migration guide](/packages/shopify-api/docs/migrating-to-v8.md).

<!-- markdown-link-check-enable -->

### Minor Changes

- df5fb586: Added support for the `future` configuration option. This will allow apps to opt in to upcoming features without needing to install RC packages.
- cf60b3d1: Added support for the 2023-10 API version.

## 7.7.0

### Minor Changes
Expand Down Expand Up @@ -322,15 +339,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/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/shopify-api",
"version": "7.7.0",
"version": "8.0.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

0 comments on commit 1bd78b4

Please sign in to comment.