diff --git a/.github/workflows/node-ci.yml b/.github/workflows/node-ci.yml index 891c1c64bf..3dcbc027a1 100644 --- a/.github/workflows/node-ci.yml +++ b/.github/workflows/node-ci.yml @@ -17,7 +17,7 @@ jobs: # output to 14.x and 16.x, so for now lock to the last version in 14 # and 16 before the ICU change. # Once we drop support for node 12 we can consider using 14.x and 16.x - node-version: ['12.22', '14.18', '16.13'] + node-version: ['14.18', '16.13'] timeout-minutes: 15 steps: diff --git a/config/loom/index.ts b/config/loom/index.ts index 959027b88a..4f9103da99 100644 --- a/config/loom/index.ts +++ b/config/loom/index.ts @@ -23,8 +23,8 @@ export function quiltPackage({ const polyfillOptions = polyfill ? {} : {useBuiltIns: false, corejs: false}; const targets = isIsomorphic - ? 'extends @shopify/browserslist-config, node 12.14.0' - : 'node 12.14.0'; + ? 'extends @shopify/browserslist-config, node 14.17.0' + : 'node 14.17.0'; return createComposedProjectPlugin('Quilt.Package', [ buildLibrary({ diff --git a/package.json b/package.json index 79f333b292..0fd279b15b 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "@faker-js/faker": "^5.5.3", "@shopify/app-bridge": "^2.0.3", "@shopify/babel-preset": "^24.1.4", - "@shopify/browserslist-config": "^2.2.4", + "@shopify/browserslist-config": "^3.0.0", "@shopify/eslint-plugin": "^41.1.0", "@shopify/loom": "^1.0.1", "@shopify/loom-cli": "^1.0.1", diff --git a/packages/address-consts/CHANGELOG.md b/packages/address-consts/CHANGELOG.md index 36becfe7f1..20a5b4712d 100644 --- a/packages/address-consts/CHANGELOG.md +++ b/packages/address-consts/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.0.10 - 2022-03-09 diff --git a/packages/address-consts/package.json b/packages/address-consts/package.json index a816515c19..6956e4d171 100644 --- a/packages/address-consts/package.json +++ b/packages/address-consts/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/address-consts/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/address-mocks/CHANGELOG.md b/packages/address-mocks/CHANGELOG.md index 6494904bf1..e44916f1bf 100644 --- a/packages/address-mocks/CHANGELOG.md +++ b/packages/address-mocks/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.0 - 2022-03-10 diff --git a/packages/address-mocks/package.json b/packages/address-mocks/package.json index 66941508dc..f02491ec51 100644 --- a/packages/address-mocks/package.json +++ b/packages/address-mocks/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/address-mocks/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "devDependencies": { "@shopify/jest-dom-mocks": "^2.11.5" @@ -45,7 +45,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/address/CHANGELOG.md b/packages/address/CHANGELOG.md index 973cc15d9c..e7dffa4773 100644 --- a/packages/address/CHANGELOG.md +++ b/packages/address/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.2.0 - 2022-03-10 diff --git a/packages/address/package.json b/packages/address/package.json index 08ac86c1c4..081be85bc3 100644 --- a/packages/address/package.json +++ b/packages/address/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/address/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "devDependencies": { "@shopify/address-mocks": "^2.1.0", @@ -45,7 +45,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/admin-graphql-api-utilities/CHANGELOG.md b/packages/admin-graphql-api-utilities/CHANGELOG.md index 4a1fd5c9c6..c463990bf2 100644 --- a/packages/admin-graphql-api-utilities/CHANGELOG.md +++ b/packages/admin-graphql-api-utilities/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.0.9 - 2022-03-09 diff --git a/packages/admin-graphql-api-utilities/package.json b/packages/admin-graphql-api-utilities/package.json index e1a71f4587..823f31daa1 100644 --- a/packages/admin-graphql-api-utilities/package.json +++ b/packages/admin-graphql-api-utilities/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/admin-graphql-api-utilities/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "sideEffects": false, "files": [ @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/ast-utilities/CHANGELOG.md b/packages/ast-utilities/CHANGELOG.md index 2557309839..da62a1df32 100644 --- a/packages/ast-utilities/CHANGELOG.md +++ b/packages/ast-utilities/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.3.4 - 2022-03-09 diff --git a/packages/ast-utilities/package.json b/packages/ast-utilities/package.json index a00cfe0da1..cf42997f42 100644 --- a/packages/ast-utilities/package.json +++ b/packages/ast-utilities/package.json @@ -31,7 +31,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/ast-utilities/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "devDependencies": { "@babel/core": ">=7.0.0", @@ -82,7 +82,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/async/CHANGELOG.md b/packages/async/CHANGELOG.md index 20802284e5..e4b80ae79b 100644 --- a/packages/async/CHANGELOG.md +++ b/packages/async/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.1.5 - 2022-03-09 diff --git a/packages/async/package.json b/packages/async/package.json index 6c523959c3..865b716af2 100644 --- a/packages/async/package.json +++ b/packages/async/package.json @@ -28,7 +28,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/async/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "devDependencies": { "@babel/core": ">=7.0.0", @@ -57,7 +57,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/browser/CHANGELOG.md b/packages/browser/CHANGELOG.md index 1ba18a992d..48e634a1f4 100644 --- a/packages/browser/CHANGELOG.md +++ b/packages/browser/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.0.9 - 2022-03-09 diff --git a/packages/browser/package.json b/packages/browser/package.json index e02a69e331..b3f14e3931 100644 --- a/packages/browser/package.json +++ b/packages/browser/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/browser/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -41,7 +41,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/csrf-token-fetcher/CHANGELOG.md b/packages/csrf-token-fetcher/CHANGELOG.md index 17a0a4e3ed..744c2318d5 100644 --- a/packages/csrf-token-fetcher/CHANGELOG.md +++ b/packages/csrf-token-fetcher/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.0.8 - 2022-03-09 diff --git a/packages/csrf-token-fetcher/package.json b/packages/csrf-token-fetcher/package.json index 9d50c07001..00639028be 100644 --- a/packages/csrf-token-fetcher/package.json +++ b/packages/csrf-token-fetcher/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/csrf-token-fetcher/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/css-utilities/CHANGELOG.md b/packages/css-utilities/CHANGELOG.md index ce9ddafa03..bab9b2c1ac 100644 --- a/packages/css-utilities/CHANGELOG.md +++ b/packages/css-utilities/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.0.9 - 2022-03-09 diff --git a/packages/css-utilities/package.json b/packages/css-utilities/package.json index 50176f5e7a..1622bf8745 100644 --- a/packages/css-utilities/package.json +++ b/packages/css-utilities/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/css-utilities/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "classnames": "^2.3.1" @@ -41,7 +41,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/dates/CHANGELOG.md b/packages/dates/CHANGELOG.md index ad775328e7..8a0e57828d 100644 --- a/packages/dates/CHANGELOG.md +++ b/packages/dates/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.1.5 - 2022-03-09 diff --git a/packages/dates/package.json b/packages/dates/package.json index 44d5d5a1b9..43ae935441 100644 --- a/packages/dates/package.json +++ b/packages/dates/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/dates/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/decorators": "^2.0.8" @@ -44,7 +44,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/decorators/CHANGELOG.md b/packages/decorators/CHANGELOG.md index f6530c8c5f..312bd3bc4d 100644 --- a/packages/decorators/CHANGELOG.md +++ b/packages/decorators/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.0.8 - 2022-03-09 diff --git a/packages/decorators/package.json b/packages/decorators/package.json index 72ccf7d849..314c5eb47e 100644 --- a/packages/decorators/package.json +++ b/packages/decorators/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/decorators/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -41,7 +41,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/function-enhancers/CHANGELOG.md b/packages/function-enhancers/CHANGELOG.md index 50891861ff..cbb3ab4467 100644 --- a/packages/function-enhancers/CHANGELOG.md +++ b/packages/function-enhancers/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.0.8 - 2022-03-09 diff --git a/packages/function-enhancers/package.json b/packages/function-enhancers/package.json index 197f8c0be1..529ec353a2 100644 --- a/packages/function-enhancers/package.json +++ b/packages/function-enhancers/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/function-enhancers/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/graphql-config-utilities/CHANGELOG.md b/packages/graphql-config-utilities/CHANGELOG.md index 81d3ee6e24..ae375703d9 100644 --- a/packages/graphql-config-utilities/CHANGELOG.md +++ b/packages/graphql-config-utilities/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.0.10 - 2022-03-09 diff --git a/packages/graphql-config-utilities/package.json b/packages/graphql-config-utilities/package.json index 61dc6d791f..95437b75f1 100644 --- a/packages/graphql-config-utilities/package.json +++ b/packages/graphql-config-utilities/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-config-utilities/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "glob": "^7.1.6", @@ -42,8 +42,7 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } }, "tags": [ "graphql", diff --git a/packages/graphql-fixtures/CHANGELOG.md b/packages/graphql-fixtures/CHANGELOG.md index dedd441e5a..7c5aae78cf 100644 --- a/packages/graphql-fixtures/CHANGELOG.md +++ b/packages/graphql-fixtures/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.4.6 - 2022-04-25 diff --git a/packages/graphql-fixtures/package.json b/packages/graphql-fixtures/package.json index 26278c9a6c..883c76217b 100644 --- a/packages/graphql-fixtures/package.json +++ b/packages/graphql-fixtures/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-fixtures/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@faker-js/faker": "^5.5.3", @@ -48,7 +48,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/graphql-mini-transforms/CHANGELOG.md b/packages/graphql-mini-transforms/CHANGELOG.md index 51fb8327fe..e61f2612fb 100644 --- a/packages/graphql-mini-transforms/CHANGELOG.md +++ b/packages/graphql-mini-transforms/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.1.0 - 2022-04-25 diff --git a/packages/graphql-mini-transforms/package.json b/packages/graphql-mini-transforms/package.json index 53fd1fb3fe..90684a524b 100644 --- a/packages/graphql-mini-transforms/package.json +++ b/packages/graphql-mini-transforms/package.json @@ -34,7 +34,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-mini-transforms/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@jest/transform": ">= 27 <29", @@ -82,8 +82,7 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } }, "tags": [ "graphql", diff --git a/packages/graphql-persisted/CHANGELOG.md b/packages/graphql-persisted/CHANGELOG.md index 22c0c6ffae..76a8c3cac9 100644 --- a/packages/graphql-persisted/CHANGELOG.md +++ b/packages/graphql-persisted/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.1.5 - 2022-03-09 diff --git a/packages/graphql-persisted/package.json b/packages/graphql-persisted/package.json index 80b68fd4ad..33b9290a61 100644 --- a/packages/graphql-persisted/package.json +++ b/packages/graphql-persisted/package.json @@ -29,7 +29,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-persisted/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@types/koa": "^2.0.0", @@ -69,7 +69,6 @@ "esnext": "./koa.esnext", "import": "./koa.mjs", "require": "./koa.js" - }, - "./*": "./*" + } } } diff --git a/packages/graphql-testing/CHANGELOG.md b/packages/graphql-testing/CHANGELOG.md index a66a57c617..50ed7a0bf0 100644 --- a/packages/graphql-testing/CHANGELOG.md +++ b/packages/graphql-testing/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 5.1.9 - 2022-03-09 diff --git a/packages/graphql-testing/package.json b/packages/graphql-testing/package.json index d211f891a3..e8b8073e14 100644 --- a/packages/graphql-testing/package.json +++ b/packages/graphql-testing/package.json @@ -28,7 +28,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-testing/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "apollo-cache-inmemory": ">=1.0.0 <2.0.0", @@ -63,7 +63,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/graphql-tool-utilities/CHANGELOG.md b/packages/graphql-tool-utilities/CHANGELOG.md index 811d786d2e..4a6f15abcc 100644 --- a/packages/graphql-tool-utilities/CHANGELOG.md +++ b/packages/graphql-tool-utilities/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.7 - 2022-04-25 diff --git a/packages/graphql-tool-utilities/package.json b/packages/graphql-tool-utilities/package.json index cd8d40ca98..0bee7432cc 100644 --- a/packages/graphql-tool-utilities/package.json +++ b/packages/graphql-tool-utilities/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-tool-utilities/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "apollo-codegen-core": "^0.40.4", @@ -42,8 +42,7 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } }, "tags": [ "graphql", diff --git a/packages/graphql-typed/CHANGELOG.md b/packages/graphql-typed/CHANGELOG.md index c8dca79af2..898115dd95 100644 --- a/packages/graphql-typed/CHANGELOG.md +++ b/packages/graphql-typed/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.1.5 - 2022-03-09 diff --git a/packages/graphql-typed/package.json b/packages/graphql-typed/package.json index 88434a43ab..79a4fb27a7 100644 --- a/packages/graphql-typed/package.json +++ b/packages/graphql-typed/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-typed/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "peerDependencies": { "graphql": ">=14.5.0 <16.0.0" @@ -41,7 +41,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/graphql-typescript-definitions/CHANGELOG.md b/packages/graphql-typescript-definitions/CHANGELOG.md index a1e8ccf8e7..79b8c4340d 100644 --- a/packages/graphql-typescript-definitions/CHANGELOG.md +++ b/packages/graphql-typescript-definitions/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.11 - 2022-04-25 diff --git a/packages/graphql-typescript-definitions/package.json b/packages/graphql-typescript-definitions/package.json index f007b9fb74..5070c0625d 100644 --- a/packages/graphql-typescript-definitions/package.json +++ b/packages/graphql-typescript-definitions/package.json @@ -22,7 +22,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-typescript-definitions/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@babel/generator": "^7.14.5", @@ -64,7 +64,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/graphql-validate-fixtures/CHANGELOG.md b/packages/graphql-validate-fixtures/CHANGELOG.md index 55aa9fd283..0269b7715a 100644 --- a/packages/graphql-validate-fixtures/CHANGELOG.md +++ b/packages/graphql-validate-fixtures/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.8 - 2022-04-25 diff --git a/packages/graphql-validate-fixtures/package.json b/packages/graphql-validate-fixtures/package.json index 40db0014d1..af5147a843 100644 --- a/packages/graphql-validate-fixtures/package.json +++ b/packages/graphql-validate-fixtures/package.json @@ -22,7 +22,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/graphql-validate-fixtures/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "chalk": "^4.0.0", @@ -50,7 +50,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/i18n/CHANGELOG.md b/packages/i18n/CHANGELOG.md index 5e24b25a51..d0e0effef3 100644 --- a/packages/i18n/CHANGELOG.md +++ b/packages/i18n/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.0.9 - 2022-03-09 diff --git a/packages/i18n/package.json b/packages/i18n/package.json index fbeb1e2bc7..e318aeee5d 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/i18n/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "sideEffects": false, "files": [ @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/jest-dom-mocks/CHANGELOG.md b/packages/jest-dom-mocks/CHANGELOG.md index 561abc0a38..477ce3167e 100644 --- a/packages/jest-dom-mocks/CHANGELOG.md +++ b/packages/jest-dom-mocks/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.0.16 - 2022-03-09 diff --git a/packages/jest-dom-mocks/package.json b/packages/jest-dom-mocks/package.json index e7c0753bb2..6261431b39 100644 --- a/packages/jest-dom-mocks/package.json +++ b/packages/jest-dom-mocks/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/jest-dom-mocks/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/async": "^3.1.5", @@ -46,7 +46,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/jest-koa-mocks/CHANGELOG.md b/packages/jest-koa-mocks/CHANGELOG.md index d37f5d3449..fbab735733 100644 --- a/packages/jest-koa-mocks/CHANGELOG.md +++ b/packages/jest-koa-mocks/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.1.5 - 2022-03-09 diff --git a/packages/jest-koa-mocks/package.json b/packages/jest-koa-mocks/package.json index c29d051859..3f2f9f81b4 100644 --- a/packages/jest-koa-mocks/package.json +++ b/packages/jest-koa-mocks/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/jest-koa-mocks/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "koa": "^2.13.4", @@ -46,7 +46,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/koa-liveness-ping/CHANGELOG.md b/packages/koa-liveness-ping/CHANGELOG.md index 403243137f..53fae25b30 100644 --- a/packages/koa-liveness-ping/CHANGELOG.md +++ b/packages/koa-liveness-ping/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.1.5 - 2022-03-09 diff --git a/packages/koa-liveness-ping/package.json b/packages/koa-liveness-ping/package.json index 3c11670af9..e4d080ca00 100644 --- a/packages/koa-liveness-ping/package.json +++ b/packages/koa-liveness-ping/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/koa-liveness-ping/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "devDependencies": { "@shopify/jest-koa-mocks": "^3.1.5", @@ -45,7 +45,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/koa-metrics/CHANGELOG.md b/packages/koa-metrics/CHANGELOG.md index 658e4dd3ed..c43ba0b523 100644 --- a/packages/koa-metrics/CHANGELOG.md +++ b/packages/koa-metrics/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.1.5 - 2022-03-09 diff --git a/packages/koa-metrics/package.json b/packages/koa-metrics/package.json index b8199bba55..239ebb0e71 100644 --- a/packages/koa-metrics/package.json +++ b/packages/koa-metrics/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/koa-metrics/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/statsd": "^3.0.12" @@ -47,7 +47,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/koa-performance/CHANGELOG.md b/packages/koa-performance/CHANGELOG.md index 7f5f61b8b4..85dbd312b7 100644 --- a/packages/koa-performance/CHANGELOG.md +++ b/packages/koa-performance/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.2.0 - 2022-05-03 diff --git a/packages/koa-performance/package.json b/packages/koa-performance/package.json index 17d4170966..0bf0bc2154 100644 --- a/packages/koa-performance/package.json +++ b/packages/koa-performance/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/koa-performance/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/network": "^2.0.8", @@ -54,7 +54,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/koa-shopify-graphql-proxy/CHANGELOG.md b/packages/koa-shopify-graphql-proxy/CHANGELOG.md index b9a6e1499b..e75f1f46be 100644 --- a/packages/koa-shopify-graphql-proxy/CHANGELOG.md +++ b/packages/koa-shopify-graphql-proxy/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 6.0.7 - 2022-03-09 diff --git a/packages/koa-shopify-graphql-proxy/package.json b/packages/koa-shopify-graphql-proxy/package.json index aa292eace6..4c6eda8ca8 100644 --- a/packages/koa-shopify-graphql-proxy/package.json +++ b/packages/koa-shopify-graphql-proxy/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/koa-shopify-graphql-proxy/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@types/koa": "^2.0.0", @@ -45,7 +45,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/koa-shopify-webhooks/CHANGELOG.md b/packages/koa-shopify-webhooks/CHANGELOG.md index 1edc66d89a..37132cb935 100644 --- a/packages/koa-shopify-webhooks/CHANGELOG.md +++ b/packages/koa-shopify-webhooks/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.4.4 - 2022-03-09 diff --git a/packages/koa-shopify-webhooks/package.json b/packages/koa-shopify-webhooks/package.json index 5ebd88a10a..d58e6686af 100644 --- a/packages/koa-shopify-webhooks/package.json +++ b/packages/koa-shopify-webhooks/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/koa-shopify-webhooks/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/network": "^2.0.8", @@ -53,7 +53,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md index e9741dd199..de9dea3852 100644 --- a/packages/logger/CHANGELOG.md +++ b/packages/logger/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.0.11 - 2022-03-09 diff --git a/packages/logger/package.json b/packages/logger/package.json index 0937e735dd..36d99c1f89 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/logger/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "chalk": "^2.4.1", @@ -43,7 +43,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/mime-types/CHANGELOG.md b/packages/mime-types/CHANGELOG.md index 4aff934c81..4c791a005a 100644 --- a/packages/mime-types/CHANGELOG.md +++ b/packages/mime-types/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.2.4 - 2022-03-09 diff --git a/packages/mime-types/package.json b/packages/mime-types/package.json index 96c71f5a9f..ba7eb9baf9 100644 --- a/packages/mime-types/package.json +++ b/packages/mime-types/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/mime-types/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/network/CHANGELOG.md b/packages/network/CHANGELOG.md index 3d3825c14f..fa9bd0ec34 100644 --- a/packages/network/CHANGELOG.md +++ b/packages/network/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.0.8 - 2022-03-09 diff --git a/packages/network/package.json b/packages/network/package.json index 1cdbf5bf6b..d383fc817b 100644 --- a/packages/network/package.json +++ b/packages/network/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/network/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/performance/CHANGELOG.md b/packages/performance/CHANGELOG.md index 11c8b69bae..dafb4679b4 100644 --- a/packages/performance/CHANGELOG.md +++ b/packages/performance/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.0.14 - 2022-03-09 diff --git a/packages/performance/package.json b/packages/performance/package.json index 763f9ac48d..21db691ef0 100644 --- a/packages/performance/package.json +++ b/packages/performance/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/performance/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/polyfills/CHANGELOG.md b/packages/polyfills/CHANGELOG.md index 46e96e25be..bdd410e2c5 100644 --- a/packages/polyfills/CHANGELOG.md +++ b/packages/polyfills/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.1.13 - 2022-04-25 diff --git a/packages/polyfills/package.json b/packages/polyfills/package.json index 9438aff347..496d26b287 100644 --- a/packages/polyfills/package.json +++ b/packages/polyfills/package.json @@ -85,7 +85,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/polyfills/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/useful-types": "^4.0.3", @@ -277,7 +277,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/predicates/CHANGELOG.md b/packages/predicates/CHANGELOG.md index 12cc477d0c..44eca237e8 100644 --- a/packages/predicates/CHANGELOG.md +++ b/packages/predicates/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.0.8 - 2022-03-09 diff --git a/packages/predicates/package.json b/packages/predicates/package.json index 168562a39e..a389faabb4 100644 --- a/packages/predicates/package.json +++ b/packages/predicates/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/predicates/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-app-bridge-universal-provider/CHANGELOG.md b/packages/react-app-bridge-universal-provider/CHANGELOG.md index 33c7a970cb..576496e34a 100644 --- a/packages/react-app-bridge-universal-provider/CHANGELOG.md +++ b/packages/react-app-bridge-universal-provider/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.26 - 2022-04-25 diff --git a/packages/react-app-bridge-universal-provider/package.json b/packages/react-app-bridge-universal-provider/package.json index 1dc748e58e..8350dd547e 100644 --- a/packages/react-app-bridge-universal-provider/package.json +++ b/packages/react-app-bridge-universal-provider/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-app-bridge-universal-provider/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/app-bridge-react": ">=1.5.0", @@ -48,7 +48,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-async/package.json b/packages/react-async/package.json index 1f41edc98c..991142d944 100644 --- a/packages/react-async/package.json +++ b/packages/react-async/package.json @@ -28,7 +28,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-async/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/async": "^3.1.5", @@ -65,7 +65,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-bugsnag/CHANGELOG.md b/packages/react-bugsnag/CHANGELOG.md index 18b802c081..eafb350630 100644 --- a/packages/react-bugsnag/CHANGELOG.md +++ b/packages/react-bugsnag/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.2.12 - 2022-03-09 diff --git a/packages/react-bugsnag/package.json b/packages/react-bugsnag/package.json index ea5e5aecdc..a2857e710e 100644 --- a/packages/react-bugsnag/package.json +++ b/packages/react-bugsnag/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-bugsnag/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@bugsnag/js": "^7.1.1", @@ -45,7 +45,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-compose/CHANGELOG.md b/packages/react-compose/CHANGELOG.md index 81c05ba571..3cc701f6c5 100644 --- a/packages/react-compose/CHANGELOG.md +++ b/packages/react-compose/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.13 - 2022-04-25 diff --git a/packages/react-compose/package.json b/packages/react-compose/package.json index b515939de8..a2870e9a53 100644 --- a/packages/react-compose/package.json +++ b/packages/react-compose/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-compose/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/useful-types": "^4.0.3", @@ -45,7 +45,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-cookie/CHANGELOG.md b/packages/react-cookie/CHANGELOG.md index 015b368fcb..bf2f129dc8 100644 --- a/packages/react-cookie/CHANGELOG.md +++ b/packages/react-cookie/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.2.13 - 2022-04-25 diff --git a/packages/react-cookie/package.json b/packages/react-cookie/package.json index c2ce2c8165..4ac2e0d766 100644 --- a/packages/react-cookie/package.json +++ b/packages/react-cookie/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-cookie/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-hooks": "^2.1.19", @@ -47,7 +47,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-csrf-universal-provider/CHANGELOG.md b/packages/react-csrf-universal-provider/CHANGELOG.md index d88f0ddc39..79ccb66f97 100644 --- a/packages/react-csrf-universal-provider/CHANGELOG.md +++ b/packages/react-csrf-universal-provider/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.23 - 2022-04-25 diff --git a/packages/react-csrf-universal-provider/package.json b/packages/react-csrf-universal-provider/package.json index d4720796ca..89b255d175 100644 --- a/packages/react-csrf-universal-provider/package.json +++ b/packages/react-csrf-universal-provider/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-csrf-universal-provider/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-csrf": "^2.1.10", @@ -49,7 +49,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-csrf/CHANGELOG.md b/packages/react-csrf/CHANGELOG.md index 93308e7f1b..6c75a8fe81 100644 --- a/packages/react-csrf/CHANGELOG.md +++ b/packages/react-csrf/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.10 - 2022-03-09 diff --git a/packages/react-csrf/package.json b/packages/react-csrf/package.json index 66a1e94375..fc0948f204 100644 --- a/packages/react-csrf/package.json +++ b/packages/react-csrf/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-csrf/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "peerDependencies": { "react": ">=16.8.0 <18.0.0" @@ -41,7 +41,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-effect/CHANGELOG.md b/packages/react-effect/CHANGELOG.md index 3649388d5a..284bf2109b 100644 --- a/packages/react-effect/CHANGELOG.md +++ b/packages/react-effect/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.1.12 - 2022-03-15 diff --git a/packages/react-effect/package.json b/packages/react-effect/package.json index 2d37ee85db..fdd0e7ac70 100644 --- a/packages/react-effect/package.json +++ b/packages/react-effect/package.json @@ -28,7 +28,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-effect/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -57,7 +57,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-form-state/CHANGELOG.md b/packages/react-form-state/CHANGELOG.md index f658d09bcc..231ea5d948 100644 --- a/packages/react-form-state/CHANGELOG.md +++ b/packages/react-form-state/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.1.15 - 2022-03-09 diff --git a/packages/react-form-state/package.json b/packages/react-form-state/package.json index 3398fda421..b47bf08c25 100644 --- a/packages/react-form-state/package.json +++ b/packages/react-form-state/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-form-state/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/predicates": "^2.0.8", @@ -45,7 +45,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-form/CHANGELOG.md b/packages/react-form/CHANGELOG.md index cc5e2ec522..08e1c2443a 100644 --- a/packages/react-form/CHANGELOG.md +++ b/packages/react-form/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.1.19 - 2022-04-25 diff --git a/packages/react-form/package.json b/packages/react-form/package.json index 654a8e06c1..031308d54a 100644 --- a/packages/react-form/package.json +++ b/packages/react-form/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-form/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "peerDependencies": { "react": ">=16.8.0 <18.0.0" @@ -47,7 +47,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-google-analytics/CHANGELOG.md b/packages/react-google-analytics/CHANGELOG.md index bae95b7c0a..4d9a43bec4 100644 --- a/packages/react-google-analytics/CHANGELOG.md +++ b/packages/react-google-analytics/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.1.25 - 2022-04-25 diff --git a/packages/react-google-analytics/package.json b/packages/react-google-analytics/package.json index 52566df7f0..3380c3a173 100644 --- a/packages/react-google-analytics/package.json +++ b/packages/react-google-analytics/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-google-analytics/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-import-remote": "^2.1.25" @@ -44,7 +44,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-graphql-universal-provider/CHANGELOG.md b/packages/react-graphql-universal-provider/CHANGELOG.md index 3367854254..a66cc3516d 100644 --- a/packages/react-graphql-universal-provider/CHANGELOG.md +++ b/packages/react-graphql-universal-provider/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.4.13 - 2022-04-25 diff --git a/packages/react-graphql-universal-provider/package.json b/packages/react-graphql-universal-provider/package.json index 71c4561403..9e9aec7bda 100644 --- a/packages/react-graphql-universal-provider/package.json +++ b/packages/react-graphql-universal-provider/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-graphql-universal-provider/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-graphql": "^7.2.0", @@ -54,7 +54,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-graphql/CHANGELOG.md b/packages/react-graphql/CHANGELOG.md index e60b0a532b..6b43dff439 100644 --- a/packages/react-graphql/CHANGELOG.md +++ b/packages/react-graphql/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 7.2.0 - 2022-04-25 diff --git a/packages/react-graphql/package.json b/packages/react-graphql/package.json index 63c7757191..149886bd10 100644 --- a/packages/react-graphql/package.json +++ b/packages/react-graphql/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-graphql/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@apollo/react-common": ">=3.0.0 <4.0.0", @@ -58,7 +58,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-hooks/CHANGELOG.md b/packages/react-hooks/CHANGELOG.md index e2ee8debd6..10c29bb73e 100644 --- a/packages/react-hooks/CHANGELOG.md +++ b/packages/react-hooks/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.19 - 2022-04-25 diff --git a/packages/react-hooks/package.json b/packages/react-hooks/package.json index c88bbb6663..c0fc8230a7 100644 --- a/packages/react-hooks/package.json +++ b/packages/react-hooks/package.json @@ -24,7 +24,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-hooks/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -41,8 +41,7 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } }, "devDependencies": { "@shopify/react-testing": "^3.3.10" diff --git a/packages/react-html/CHANGELOG.md b/packages/react-html/CHANGELOG.md index a9f687144c..b47931ae0c 100644 --- a/packages/react-html/CHANGELOG.md +++ b/packages/react-html/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 11.1.23 - 2022-04-25 diff --git a/packages/react-html/package.json b/packages/react-html/package.json index ce49dada0b..6e7044e5e9 100644 --- a/packages/react-html/package.json +++ b/packages/react-html/package.json @@ -27,7 +27,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-html/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-effect": "^4.1.12", @@ -68,7 +68,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-hydrate/CHANGELOG.md b/packages/react-hydrate/CHANGELOG.md index 4daec517b4..61a8cc7c20 100644 --- a/packages/react-hydrate/CHANGELOG.md +++ b/packages/react-hydrate/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.21 - 2022-04-25 diff --git a/packages/react-hydrate/package.json b/packages/react-hydrate/package.json index f7b5e98503..3bd1982a71 100644 --- a/packages/react-hydrate/package.json +++ b/packages/react-hydrate/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-hydrate/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-effect": "^4.1.12", @@ -45,7 +45,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-i18n-universal-provider/CHANGELOG.md b/packages/react-i18n-universal-provider/CHANGELOG.md index bdc4362a16..967371bfac 100644 --- a/packages/react-i18n-universal-provider/CHANGELOG.md +++ b/packages/react-i18n-universal-provider/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.34 - 2022-04-25 diff --git a/packages/react-i18n-universal-provider/package.json b/packages/react-i18n-universal-provider/package.json index 1915e331dc..f2e3bd798f 100644 --- a/packages/react-i18n-universal-provider/package.json +++ b/packages/react-i18n-universal-provider/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-i18n-universal-provider/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-hooks": "^2.1.19", @@ -49,7 +49,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-i18n/package.json b/packages/react-i18n/package.json index 3aca4ed6e6..038dd3e421 100644 --- a/packages/react-i18n/package.json +++ b/packages/react-i18n/package.json @@ -33,7 +33,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-i18n/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "devDependencies": { "@babel/core": "^7.14.6", @@ -106,7 +106,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-idle/CHANGELOG.md b/packages/react-idle/CHANGELOG.md index 01f7947a2f..4ab5a2b1e6 100644 --- a/packages/react-idle/CHANGELOG.md +++ b/packages/react-idle/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.14 - 2022-04-25 diff --git a/packages/react-idle/package.json b/packages/react-idle/package.json index a4a9656fcf..0be6ce64bc 100644 --- a/packages/react-idle/package.json +++ b/packages/react-idle/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-idle/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/async": "^3.1.5", @@ -45,7 +45,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-import-remote/CHANGELOG.md b/packages/react-import-remote/CHANGELOG.md index 3f2fb17254..21b434243d 100644 --- a/packages/react-import-remote/CHANGELOG.md +++ b/packages/react-import-remote/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.25 - 2022-04-25 diff --git a/packages/react-import-remote/package.json b/packages/react-import-remote/package.json index 9d50dc6bac..27caebb067 100644 --- a/packages/react-import-remote/package.json +++ b/packages/react-import-remote/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-import-remote/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/async": "^3.1.5", @@ -48,7 +48,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-intersection-observer/CHANGELOG.md b/packages/react-intersection-observer/CHANGELOG.md index fadaffca2c..ee8a8cfab0 100644 --- a/packages/react-intersection-observer/CHANGELOG.md +++ b/packages/react-intersection-observer/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.1.11 - 2022-03-09 diff --git a/packages/react-intersection-observer/package.json b/packages/react-intersection-observer/package.json index 4f3debbe09..7c7710f9f5 100644 --- a/packages/react-intersection-observer/package.json +++ b/packages/react-intersection-observer/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-intersection-observer/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -41,7 +41,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-network/CHANGELOG.md b/packages/react-network/CHANGELOG.md index c300d79f77..c62d588022 100644 --- a/packages/react-network/CHANGELOG.md +++ b/packages/react-network/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.2.13 - 2022-04-25 diff --git a/packages/react-network/package.json b/packages/react-network/package.json index 58d71065e3..75f7c0127b 100644 --- a/packages/react-network/package.json +++ b/packages/react-network/package.json @@ -28,7 +28,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-network/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/network": "^2.0.8", @@ -71,7 +71,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-performance/CHANGELOG.md b/packages/react-performance/CHANGELOG.md index 0c2a24785e..054fa32869 100644 --- a/packages/react-performance/CHANGELOG.md +++ b/packages/react-performance/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.14 - 2022-03-09 diff --git a/packages/react-performance/package.json b/packages/react-performance/package.json index b5c21e2609..366f3919f6 100644 --- a/packages/react-performance/package.json +++ b/packages/react-performance/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-performance/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/performance": "^2.0.14" @@ -47,7 +47,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-router/CHANGELOG.md b/packages/react-router/CHANGELOG.md index 5a4378c256..a5a285e646 100644 --- a/packages/react-router/CHANGELOG.md +++ b/packages/react-router/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 1.5.6 - 2022-04-25 diff --git a/packages/react-router/package.json b/packages/react-router/package.json index 43ea9204df..9c209c6830 100644 --- a/packages/react-router/package.json +++ b/packages/react-router/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-router/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-network": "^4.2.13", @@ -47,7 +47,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-server/CHANGELOG.md b/packages/react-server/CHANGELOG.md index a238632747..10c82987cd 100644 --- a/packages/react-server/CHANGELOG.md +++ b/packages/react-server/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.13 - 2022-04-25 diff --git a/packages/react-server/package.json b/packages/react-server/package.json index b7253f58e9..5d3ed096b3 100644 --- a/packages/react-server/package.json +++ b/packages/react-server/package.json @@ -28,7 +28,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-server/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/network": "^2.0.8", @@ -91,7 +91,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-shortcuts/CHANGELOG.md b/packages/react-shortcuts/CHANGELOG.md index dc26fa259b..fc73b26ae6 100644 --- a/packages/react-shortcuts/CHANGELOG.md +++ b/packages/react-shortcuts/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.2.4 - 2022-03-09 diff --git a/packages/react-shortcuts/package.json b/packages/react-shortcuts/package.json index f83d2c7401..109cdc0883 100644 --- a/packages/react-shortcuts/package.json +++ b/packages/react-shortcuts/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-shortcuts/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "peerDependencies": { "react": ">=16.8.0 <18.0.0" @@ -41,7 +41,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-testing/CHANGELOG.md b/packages/react-testing/CHANGELOG.md index d29c22b91e..cbc205e1f6 100644 --- a/packages/react-testing/CHANGELOG.md +++ b/packages/react-testing/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.3.10 - 2022-04-25 diff --git a/packages/react-testing/package.json b/packages/react-testing/package.json index 076b716fab..6a9232e571 100644 --- a/packages/react-testing/package.json +++ b/packages/react-testing/package.json @@ -28,7 +28,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-testing/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/useful-types": "^4.0.3", @@ -62,7 +62,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-tracking-pixel/CHANGELOG.md b/packages/react-tracking-pixel/CHANGELOG.md index 169d4ad275..02a30b3eef 100644 --- a/packages/react-tracking-pixel/CHANGELOG.md +++ b/packages/react-tracking-pixel/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.1.23 - 2022-04-25 diff --git a/packages/react-tracking-pixel/package.json b/packages/react-tracking-pixel/package.json index b4601d9154..6cea279c75 100644 --- a/packages/react-tracking-pixel/package.json +++ b/packages/react-tracking-pixel/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-tracking-pixel/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-html": "^11.1.23" @@ -44,7 +44,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-universal-provider/CHANGELOG.md b/packages/react-universal-provider/CHANGELOG.md index 67adac2b73..44f3e5c37f 100644 --- a/packages/react-universal-provider/CHANGELOG.md +++ b/packages/react-universal-provider/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.1.23 - 2022-04-25 diff --git a/packages/react-universal-provider/package.json b/packages/react-universal-provider/package.json index aaa5d24a0d..2d58c93801 100644 --- a/packages/react-universal-provider/package.json +++ b/packages/react-universal-provider/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-universal-provider/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-effect": "^4.1.12", @@ -45,7 +45,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/react-web-worker/CHANGELOG.md b/packages/react-web-worker/CHANGELOG.md index 1efae9c3cb..23da4f67fe 100644 --- a/packages/react-web-worker/CHANGELOG.md +++ b/packages/react-web-worker/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.0.11 - 2022-04-25 diff --git a/packages/react-web-worker/package.json b/packages/react-web-worker/package.json index ecf94d0cb2..45cf49d2b1 100644 --- a/packages/react-web-worker/package.json +++ b/packages/react-web-worker/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-web-worker/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/react-hooks": "^2.1.19", @@ -47,7 +47,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/semaphore/CHANGELOG.md b/packages/semaphore/CHANGELOG.md index bec574f146..8ffad6f215 100644 --- a/packages/semaphore/CHANGELOG.md +++ b/packages/semaphore/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.0.11 - 2022-03-09 diff --git a/packages/semaphore/package.json b/packages/semaphore/package.json index fbc67d7b93..9e2b4f855a 100644 --- a/packages/semaphore/package.json +++ b/packages/semaphore/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/semaphore/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/sewing-kit-koa/CHANGELOG.md b/packages/sewing-kit-koa/CHANGELOG.md index 82d9b8640a..126d3e5dc1 100644 --- a/packages/sewing-kit-koa/CHANGELOG.md +++ b/packages/sewing-kit-koa/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 8.1.5 - 2022-03-09 diff --git a/packages/sewing-kit-koa/package.json b/packages/sewing-kit-koa/package.json index b5ca38fee0..1c61dff029 100644 --- a/packages/sewing-kit-koa/package.json +++ b/packages/sewing-kit-koa/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/sewing-kit-koa/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@shopify/network": "^2.0.8", @@ -58,7 +58,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/statsd/CHANGELOG.md b/packages/statsd/CHANGELOG.md index 09d1907d81..4735b620b3 100644 --- a/packages/statsd/CHANGELOG.md +++ b/packages/statsd/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 3.0.12 - 2022-03-09 diff --git a/packages/statsd/package.json b/packages/statsd/package.json index 7de3841297..bcd7c499e3 100644 --- a/packages/statsd/package.json +++ b/packages/statsd/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/statsd/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "change-case": "^4.1.1", @@ -42,7 +42,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/storybook-a11y-test/CHANGELOG.md b/packages/storybook-a11y-test/CHANGELOG.md index b6a472529f..6cafa043da 100644 --- a/packages/storybook-a11y-test/CHANGELOG.md +++ b/packages/storybook-a11y-test/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 0.5.1 - 2022-04-25 diff --git a/packages/storybook-a11y-test/package.json b/packages/storybook-a11y-test/package.json index d1a1a7c2a5..606240ecbb 100644 --- a/packages/storybook-a11y-test/package.json +++ b/packages/storybook-a11y-test/package.json @@ -24,7 +24,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/storybook-a11y-test/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": { "@axe-core/puppeteer": "^4.3.2", @@ -57,7 +57,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/useful-types/CHANGELOG.md b/packages/useful-types/CHANGELOG.md index 659fe05f2a..ad2aa97917 100644 --- a/packages/useful-types/CHANGELOG.md +++ b/packages/useful-types/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.0.3 - 2022-04-25 diff --git a/packages/useful-types/package.json b/packages/useful-types/package.json index fb9f8ae4c1..179eb01d1f 100644 --- a/packages/useful-types/package.json +++ b/packages/useful-types/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/useful-types/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/packages/web-worker/CHANGELOG.md b/packages/web-worker/CHANGELOG.md index e3669328b4..eddbf0f62c 100644 --- a/packages/web-worker/CHANGELOG.md +++ b/packages/web-worker/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 4.0.5 - 2022-03-09 diff --git a/packages/web-worker/package.json b/packages/web-worker/package.json index e39789682c..f9551ad3a7 100644 --- a/packages/web-worker/package.json +++ b/packages/web-worker/package.json @@ -32,8 +32,7 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } }, "sideEffects": false, "publishConfig": { @@ -51,7 +50,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/web-worker/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "files": [ "build/", diff --git a/packages/with-env/CHANGELOG.md b/packages/with-env/CHANGELOG.md index 7ff3f1df54..42ef55cc10 100644 --- a/packages/with-env/CHANGELOG.md +++ b/packages/with-env/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Breaking Change + +- Drop support for node 12 and Safari 10, 11 and 12. Remove wildcard export in exports field. [[#2277](https://github.com/Shopify/quilt/pull/2277)] ## 2.0.8 - 2022-03-09 diff --git a/packages/with-env/package.json b/packages/with-env/package.json index 8a1bd48121..7583ad14de 100644 --- a/packages/with-env/package.json +++ b/packages/with-env/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/with-env/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "sideEffects": false, "files": [ @@ -38,7 +38,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/shipit.beta-js.yml b/shipit.beta-js.yml index fd4b4fbd35..05776927c8 100644 --- a/shipit.beta-js.yml +++ b/shipit.beta-js.yml @@ -1,6 +1,5 @@ ci: require: - - node-tests (12.22) - node-tests (14.18) - node-tests (16.13) dependencies: diff --git a/shipit.production-js.yml b/shipit.production-js.yml index fd4b4fbd35..05776927c8 100644 --- a/shipit.production-js.yml +++ b/shipit.production-js.yml @@ -1,6 +1,5 @@ ci: require: - - node-tests (12.22) - node-tests (14.18) - node-tests (16.13) dependencies: diff --git a/templates/package.hbs.json b/templates/package.hbs.json index bf6975765c..0b3791d162 100644 --- a/templates/package.hbs.json +++ b/templates/package.hbs.json @@ -22,7 +22,7 @@ }, "homepage": "https://github.com/Shopify/quilt/blob/main/packages/{{name}}/README.md", "engines": { - "node": ">=12.14.0" + "node": "^14.17.0 || >=16.0.0" }, "dependencies": {}, "files": [ @@ -40,7 +40,6 @@ "esnext": "./index.esnext", "import": "./index.mjs", "require": "./index.js" - }, - "./*": "./*" + } } } diff --git a/yarn.lock b/yarn.lock index 446ec74df4..a8d2903356 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2979,10 +2979,10 @@ babel-plugin-react-test-id "^1.0.2" babel-plugin-transform-inline-environment-variables "^0.4.3" -"@shopify/browserslist-config@^2.2.4": - version "2.2.4" - resolved "https://registry.yarnpkg.com/@shopify/browserslist-config/-/browserslist-config-2.2.4.tgz#fcb0d1b7e3fab70a6d3cead21c6ceeb7b10fe53f" - integrity sha512-jtg92Qj4s6Nh4/Y7+ITkyoh6mcS4rmQFo55OY6B52KO5hs7ORw40Ayj5pbThmcNyvfxFmU4yi2wV2fuwuanoOA== +"@shopify/browserslist-config@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@shopify/browserslist-config/-/browserslist-config-3.0.0.tgz#fedfef0dedc97155a60432c152eff50df88e13d2" + integrity sha512-NzZTZ8EEG6xmM1ApSsQFDqW6C5CmByNhXyLxwWjVX08GzHxkhMc10MSY7WGvTCzd1lQuZEp8Ko/jOCBTQQsEGg== "@shopify/eslint-plugin@^41.1.0": version "41.1.0" @@ -6236,9 +6236,9 @@ caniuse-api@^3.0.0: lodash.uniq "^4.5.0" caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001317: - version "1.0.30001323" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001323.tgz#a451ff80dec7033016843f532efda18f02eec011" - integrity sha512-e4BF2RlCVELKx8+RmklSEIVub1TWrmdhvA5kEUueummz1XyySW0DVk+3x9HyhU9MuWTa2BhqLgEuEmUwASAdCA== + version "1.0.30001341" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001341.tgz#59590c8ffa8b5939cf4161f00827b8873ad72498" + integrity sha512-2SodVrFFtvGENGCv0ChVJIDQ0KPaS1cg7/qtfMaICgeMolDdo/Z2OD32F0Aq9yl6F4YFwGPBS5AaPqNYiW4PoA== capital-case@^1.0.4: version "1.0.4"