Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Packages for release #601

Merged
merged 3 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .changeset/big-humans-tease.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chilled-singers-return.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/empty-queens-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/few-pots-breathe.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fifty-points-push.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/fresh-bottles-tell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/friendly-laws-yell.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/lucky-cooks-glow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ninety-mugs-agree.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/proud-knives-happen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/serious-bears-brake.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sixty-boxes-matter.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/sixty-pans-wave.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/soft-knives-pretend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-peas-lay.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thick-wombats-clap.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/twenty-moles-help.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-vans-carry.md

This file was deleted.

26 changes: 20 additions & 6 deletions packages/shopify-app-express/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 4.1.0

### Minor Changes

- 64e0246: Update shopify-api version to 9.2.0

### Patch Changes

- f5742c1: Updated dependency on `@shopify/shopify-api`
- Updated dependencies [f5742c1]
- Updated dependencies [64e0246]
- @shopify/[email protected]
- @shopify/[email protected]

## 4.0.1

### Patch Changes
Expand Down Expand Up @@ -69,19 +83,19 @@ If you need to explicitly set those generics, you'll need to use the `AppConfigP
Before:

```ts
import {ShopifyApp} from '@shopify/shopify-app-express';
import {restResources} from '@shopify/shopify-api/rest/admin/2023-10';
import {MemorySessionStorage} from '@shopify/shopify-app-session-storage-memory';
import { ShopifyApp } from "@shopify/shopify-app-express";
import { restResources } from "@shopify/shopify-api/rest/admin/2023-10";
import { MemorySessionStorage } from "@shopify/shopify-app-session-storage-memory";

const myVariable: ShopifyApp<typeof restResources, MemorySessionStorage>;
```

After:

```ts
import {ShopifyApp, AppConfigParams} from '@shopify/shopify-app-express';
import {restResources} from '@shopify/shopify-api/rest/admin/2023-10';
import {MemorySessionStorage} from '@shopify/shopify-app-session-storage-memory';
import { ShopifyApp, AppConfigParams } from "@shopify/shopify-app-express";
import { restResources } from "@shopify/shopify-api/rest/admin/2023-10";
import { MemorySessionStorage } from "@shopify/shopify-app-session-storage-memory";

const myVariable: ShopifyApp<
AppConfigParams<typeof restResources, MemorySessionStorage>
Expand Down
6 changes: 3 additions & 3 deletions packages/shopify-app-express/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/shopify-app-express",
"version": "4.0.1",
"version": "4.1.0",
"description": "Shopify Express Middleware - to simplify the building of Shopify Apps with Express",
"repository": {
"type": "git",
Expand Down Expand Up @@ -31,8 +31,8 @@
],
"dependencies": {
"@shopify/shopify-api": "^9.2.0",
"@shopify/shopify-app-session-storage": "^2.0.4",
"@shopify/shopify-app-session-storage-memory": "^2.0.4",
"@shopify/shopify-app-session-storage": "^2.1.0",
"@shopify/shopify-app-session-storage-memory": "^3.0.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.1",
"semver": "^7.5.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-express/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const SHOPIFY_EXPRESS_LIBRARY_VERSION = '4.0.1';
export const SHOPIFY_EXPRESS_LIBRARY_VERSION = '4.1.0';
Loading
Loading