Skip to content

Commit

Permalink
Merge branch 'main' into liz/return-401
Browse files Browse the repository at this point in the history
  • Loading branch information
lizkenyon authored Dec 4, 2023
2 parents 9d0fc6f + 17ae60b commit a941ab8
Show file tree
Hide file tree
Showing 17 changed files with 39 additions and 20 deletions.
17 changes: 17 additions & 0 deletions .changeset/rare-mirrors-cry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
'@shopify/shopify-app-session-storage-postgresql': patch
'@shopify/shopify-app-session-storage-test-utils': patch
'@shopify/shopify-app-session-storage-dynamodb': patch
'@shopify/shopify-app-session-storage-mongodb': patch
'@shopify/shopify-app-session-storage-memory': patch
'@shopify/shopify-app-session-storage-prisma': patch
'@shopify/shopify-app-session-storage-sqlite': patch
'@shopify/shopify-app-session-storage-mysql': patch
'@shopify/shopify-app-session-storage-redis': patch
'@shopify/shopify-app-session-storage-kv': patch
'@shopify/shopify-app-session-storage': patch
'@shopify/shopify-app-express': patch
'@shopify/shopify-app-remix': patch
---

Bump shopify-api to ^8.1.1
2 changes: 1 addition & 1 deletion packages/shopify-app-express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"Storefront API"
],
"dependencies": {
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1",
"@shopify/shopify-app-session-storage-memory": "^2.0.1",
"cookie-parser": "^1.4.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
},
"dependencies": {
"@remix-run/server-runtime": "^2.0.0",
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1",
"isbot": "^3.6.5",
"semver": "^7.5.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/shopify-app-remix/src/server/config-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface AppConfigArg<
| 'isEmbeddedApp'
| 'apiVersion'
| 'isCustomStoreApp'
| 'future'
> {
/**
* The URL your app is running on.
Expand Down Expand Up @@ -224,7 +225,7 @@ export interface AppConfigArg<
}

export interface AppConfig<Storage extends SessionStorage = SessionStorage>
extends ApiConfig {
extends Omit<ApiConfig, 'future'> {
canUseLoginForm: boolean;
appUrl: string;
auth: AuthConfig;
Expand Down
1 change: 1 addition & 0 deletions packages/shopify-app-remix/src/server/shopify-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ function deriveApi(appConfig: AppConfigArg) {
isEmbeddedApp: appConfig.isEmbeddedApp ?? true,
apiVersion: appConfig.apiVersion ?? LATEST_API_VERSION,
isCustomStoreApp: appConfig.distribution === AppDistribution.ShopifyAdmin,
future: {},
});
}

Expand Down
4 changes: 2 additions & 2 deletions packages/shopify-app-session-storage-dynamodb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1"
},
"devDependencies": {
"@shopify/eslint-plugin": "^42.1.0",
"@shopify/prettier-config": "^1.1.2",
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1",
"@shopify/shopify-app-session-storage-test-utils": "^1.0.1",
"eslint": "^8.40.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-session-storage-kv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-session-storage-memory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-session-storage-mongodb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-session-storage-mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/shopify-app-session-storage-prisma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
},
"peerDependencies": {
"@prisma/client": "^4.13.0",
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1",
"prisma": "^4.13.0"
},
"devDependencies": {
"@prisma/client": "^4.13.0",
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1",
"prisma": "^4.13.0",
"@shopify/eslint-plugin": "^42.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-session-storage-redis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-session-storage-sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^8.0.2",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-session-storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^8.0.2"
"@shopify/shopify-api": "^8.1.1"
},
"devDependencies": {
"@shopify/eslint-plugin": "^42.1.0",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3143,10 +3143,10 @@
jest-matcher-utils "^26.6.2"
react-reconciler "^0.28.0"

"@shopify/shopify-api@^8.0.2":
version "8.0.2"
resolved "https://registry.yarnpkg.com/@shopify/shopify-api/-/shopify-api-8.0.2.tgz#765bf03cf0c953ca9c2cde0aae91fba45c6d5def"
integrity sha512-hvVLoEsYglE4GRqFhr9D6oMr2bV6tEdsD9PxuNZ6bYDptoD+kQFKsaP83jE1qtHhB3ve0DeevaVVYjS/2TU7MA==
"@shopify/shopify-api@^8.1.1":
version "8.1.1"
resolved "https://registry.yarnpkg.com/@shopify/shopify-api/-/shopify-api-8.1.1.tgz#d3f400a27d9fe2eaa7647bbd33134b75fe52463a"
integrity sha512-0JO3Mhv9Sb8VKPw/LUdacHJj9wbT/txyByr2TF03yjqoV++G3NxNMUAA1tcpoSvOAv20KlQjwpoFnXqBmPFW7Q==
dependencies:
"@shopify/network" "^3.2.1"
compare-versions "^5.0.3"
Expand Down

0 comments on commit a941ab8

Please sign in to comment.