Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/jest-and-types/jest-…
Browse files Browse the repository at this point in the history
…29.7.0
  • Loading branch information
paulomarg authored Feb 23, 2024
2 parents 883e870 + bb2c5ff commit 8c24042
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 19 deletions.
5 changes: 5 additions & 0 deletions .changeset/flat-clouds-camp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@shopify/shopify-app-express': patch
---

increase max body size to 500kb
6 changes: 0 additions & 6 deletions .changeset/mighty-bikes-sneeze.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/shy-glasses-pump.md

This file was deleted.

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

## 4.1.2

### Patch Changes

- 6deb1bd: Updated dependency on `semver`

## 4.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion 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.1.1",
"version": "4.1.2",
"description": "Shopify Express Middleware - to simplify the building of Shopify Apps with Express",
"repository": {
"type": "git",
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.1.1';
export const SHOPIFY_EXPRESS_LIBRARY_VERSION = '4.1.2';
2 changes: 1 addition & 1 deletion packages/shopify-app-express/src/webhooks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function processWebhooks({
mountWebhooks(api, config, webhookHandlers);

return [
express.text({type: '*/*'}),
express.text({type: '*/*', limit: '500kb'}),
async (req: Request, res: Response) => {
await process({
req,
Expand Down
7 changes: 7 additions & 0 deletions packages/shopify-app-remix/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @shopify/shopify-app-remix

## 2.6.1

### Patch Changes

- c95cfdf: Update AppConfig type to Readonly. The config should not be modified after it is created.
- 6deb1bd: Updated dependency on `semver`

## 2.6.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-remix/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/shopify-app-remix",
"version": "2.6.0",
"version": "2.6.1",
"description": "Shopify Remix - to simplify the building of Shopify Apps with Remix",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-app-remix/src/server/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const SHOPIFY_REMIX_LIBRARY_VERSION = '2.6.0';
export const SHOPIFY_REMIX_LIBRARY_VERSION = '2.6.1';
6 changes: 6 additions & 0 deletions packages/shopify-app-session-storage-kv/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @shopify/shopify-app-session-storage-kv

## 3.0.2

### Patch Changes

- 6deb1bd: Updated dependency on `semver`

## 3.0.1

### Patch Changes
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
@@ -1,6 +1,6 @@
{
"name": "@shopify/shopify-app-session-storage-kv",
"version": "3.0.1",
"version": "3.0.2",
"description": "Shopify App Session Storage for KV",
"repository": {
"type": "git",
Expand Down

0 comments on commit 8c24042

Please sign in to comment.