diff --git a/packages/a11y/CHANGELOG.md b/packages/a11y/CHANGELOG.md index f12bda946e1fc8..9c4a14aa1df09d 100644 --- a/packages/a11y/CHANGELOG.md +++ b/packages/a11y/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.15.0 (2021-03-17) ## 2.9.0 (2020-04-15) diff --git a/packages/a11y/README.md b/packages/a11y/README.md index 46cf83291fd301..5f44a3d22cf39e 100644 --- a/packages/a11y/README.md +++ b/packages/a11y/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/a11y --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/a11y/package.json b/packages/a11y/package.json index cbf1633fcc9ec6..4096a016e0b5d4 100644 --- a/packages/a11y/package.json +++ b/packages/a11y/package.json @@ -20,6 +20,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/annotations/CHANGELOG.md b/packages/annotations/CHANGELOG.md index dad14cc38f45d6..68bcfbe0f708b6 100644 --- a/packages/annotations/CHANGELOG.md +++ b/packages/annotations/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.25.0 (2021-03-17) ## 1.24.0 (2020-12-17) diff --git a/packages/annotations/README.md b/packages/annotations/README.md index af3a2263d1175e..5c3f3b59d6d7cd 100644 --- a/packages/annotations/README.md +++ b/packages/annotations/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/annotations --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Getting Started diff --git a/packages/annotations/package.json b/packages/annotations/package.json index 7e34e9b075484f..62bd28467e38d1 100644 --- a/packages/annotations/package.json +++ b/packages/annotations/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/api-fetch/CHANGELOG.md b/packages/api-fetch/CHANGELOG.md index 9169fafa457b72..ee59df0a793c97 100644 --- a/packages/api-fetch/CHANGELOG.md +++ b/packages/api-fetch/CHANGELOG.md @@ -2,9 +2,14 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ### Breaking changes -- `OPTIONS` requests which are handled by the preloading middleware are no longer resolved as unparsed responses unless you explicitly set `parse: false`, for consistency with other request methods. If you expect an unparsed response, add `{ parse: false }` to your request options to preserve the previous behavior. +- `OPTIONS` requests which are handled by the preloading middleware are no longer resolved as unparsed responses unless you explicitly set `parse: false`, for consistency with other request methods. If you expect an unparsed response, add `{ parse: false }` to your request options to preserve the previous behavior. ## 3.23.1 (2021-04-15) diff --git a/packages/api-fetch/README.md b/packages/api-fetch/README.md index 3fd2db8605ec94..eb1882a9d6e2d5 100644 --- a/packages/api-fetch/README.md +++ b/packages/api-fetch/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/api-fetch --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/api-fetch/package.json b/packages/api-fetch/package.json index 86f3135080228f..3165bbdba46530 100644 --- a/packages/api-fetch/package.json +++ b/packages/api-fetch/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/autop/CHANGELOG.md b/packages/autop/CHANGELOG.md index b6ba6555736ff4..16aef2c4e12adc 100644 --- a/packages/autop/CHANGELOG.md +++ b/packages/autop/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.12.0 (2021-03-17) ## 2.7.0 (2020-04-15) diff --git a/packages/autop/README.md b/packages/autop/README.md index 882affe18946ec..43d6a0ca123d1a 100644 --- a/packages/autop/README.md +++ b/packages/autop/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/autop --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ### API diff --git a/packages/autop/package.json b/packages/autop/package.json index c00b9249ee4933..822aefcbeee30c 100644 --- a/packages/autop/package.json +++ b/packages/autop/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/babel-preset-default/CHANGELOG.md b/packages/babel-preset-default/CHANGELOG.md index 46433925ebad56..e319e422762d6f 100644 --- a/packages/babel-preset-default/CHANGELOG.md +++ b/packages/babel-preset-default/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 5.2.0 (2021-04-06) ### Enhancements diff --git a/packages/babel-preset-default/package.json b/packages/babel-preset-default/package.json index 906a6951641136..e75aa03e8a1aca 100644 --- a/packages/babel-preset-default/package.json +++ b/packages/babel-preset-default/package.json @@ -21,7 +21,7 @@ "url": "https://github.com/WordPress/gutenberg/issues" }, "engines": { - "node": ">=12" + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" }, "files": [ "index.js" diff --git a/packages/blob/CHANGELOG.md b/packages/blob/CHANGELOG.md index bd12b7a03757e8..f4591dff45fdb5 100644 --- a/packages/blob/CHANGELOG.md +++ b/packages/blob/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.13.0 (2021-03-17) ## 2.11.0 (2020-10-19) diff --git a/packages/blob/package.json b/packages/blob/package.json index aae6bf44d7f61b..1e06981fa1f624 100644 --- a/packages/blob/package.json +++ b/packages/blob/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/block-directory/CHANGELOG.md b/packages/block-directory/CHANGELOG.md index 9255db7059ea93..3ba2785d3f712a 100644 --- a/packages/block-directory/CHANGELOG.md +++ b/packages/block-directory/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.19.0 (2021-03-17) ## 1.18.0 (2020-12-17) diff --git a/packages/block-directory/README.md b/packages/block-directory/README.md index f43474acffb7af..a0c5ea8cd7b0d2 100644 --- a/packages/block-directory/README.md +++ b/packages/block-directory/README.md @@ -12,7 +12,7 @@ Install the module npm install @wordpress/block-directory --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/block-directory/package.json b/packages/block-directory/package.json index f6ff0734026c42..7f6c99cebcf6f1 100644 --- a/packages/block-directory/package.json +++ b/packages/block-directory/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/block-editor/CHANGELOG.md b/packages/block-editor/CHANGELOG.md index 5b420e088ea021..45a556795d90f8 100644 --- a/packages/block-editor/CHANGELOG.md +++ b/packages/block-editor/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 5.3.0 (2021-03-17) - Add `JustifyToolbar` component abstracted out of the Navigation block so can be used elsewhere. diff --git a/packages/block-editor/README.md b/packages/block-editor/README.md index c4527462306082..8c721164c71e83 100644 --- a/packages/block-editor/README.md +++ b/packages/block-editor/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/block-editor --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/block-editor/package.json b/packages/block-editor/package.json index 231b7062a1b865..0c3168a4d2bd58 100644 --- a/packages/block-editor/package.json +++ b/packages/block-editor/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/block-library/CHANGELOG.md b/packages/block-library/CHANGELOG.md index f62720071c2995..5d78d0bad00bbd 100644 --- a/packages/block-library/CHANGELOG.md +++ b/packages/block-library/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.29.0 (2021-03-17) ### Bug Fixes diff --git a/packages/block-library/README.md b/packages/block-library/README.md index 356e4778653d1b..7b500f4a3b9831 100644 --- a/packages/block-library/README.md +++ b/packages/block-library/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/block-library --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Building JavaScript for the browser diff --git a/packages/block-library/package.json b/packages/block-library/package.json index f36c4685759e14..e482dfeeee8ff3 100644 --- a/packages/block-library/package.json +++ b/packages/block-library/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/block-serialization-default-parser/CHANGELOG.md b/packages/block-serialization-default-parser/CHANGELOG.md index 84330eb95d1378..9cba9a20f4fa03 100644 --- a/packages/block-serialization-default-parser/CHANGELOG.md +++ b/packages/block-serialization-default-parser/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 3.10.0 (2021-03-17) ## 2.0.3 (2019-01-03) diff --git a/packages/block-serialization-default-parser/README.md b/packages/block-serialization-default-parser/README.md index e7cf1987b45d5f..731b5c138b5399 100644 --- a/packages/block-serialization-default-parser/README.md +++ b/packages/block-serialization-default-parser/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/block-serialization-default-parser --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/block-serialization-default-parser/package.json b/packages/block-serialization-default-parser/package.json index 06fa932dcf419d..e9f6fc425b2fc4 100644 --- a/packages/block-serialization-default-parser/package.json +++ b/packages/block-serialization-default-parser/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/block-serialization-spec-parser/CHANGELOG.md b/packages/block-serialization-spec-parser/CHANGELOG.md index 7f2bf53e597324..36b10c3ec8b86c 100644 --- a/packages/block-serialization-spec-parser/CHANGELOG.md +++ b/packages/block-serialization-spec-parser/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 3.8.0 (2021-03-17) ## 3.0.0 (2019-03-06) diff --git a/packages/block-serialization-spec-parser/package.json b/packages/block-serialization-spec-parser/package.json index adf82f4d1a48ef..b644a10d39f4ba 100644 --- a/packages/block-serialization-spec-parser/package.json +++ b/packages/block-serialization-spec-parser/package.json @@ -20,6 +20,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "parser.js", "sideEffects": false, "dependencies": { diff --git a/packages/blocks/CHANGELOG.md b/packages/blocks/CHANGELOG.md index 498eb1bd418252..9c789cda9192ca 100644 --- a/packages/blocks/CHANGELOG.md +++ b/packages/blocks/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ### New API - `registerBlockTypeFromMetadata` method can be used to register a block type using the metadata loaded from `block.json` file ([#30293](https://github.com/WordPress/gutenberg/pull/30293)). diff --git a/packages/blocks/README.md b/packages/blocks/README.md index 3d39a3651ae252..34275c1db2180d 100644 --- a/packages/blocks/README.md +++ b/packages/blocks/README.md @@ -14,7 +14,7 @@ Install the module npm install @wordpress/blocks --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Getting Started diff --git a/packages/blocks/package.json b/packages/blocks/package.json index 8e785dafd0c6d9..d1f378b180532b 100644 --- a/packages/blocks/package.json +++ b/packages/blocks/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/browserslist-config/CHANGELOG.md b/packages/browserslist-config/CHANGELOG.md index 71c3da7a35a9b6..eb64d324a1836f 100644 --- a/packages/browserslist-config/CHANGELOG.md +++ b/packages/browserslist-config/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 3.0.0 (2021-01-21) ### Breaking Changes diff --git a/packages/browserslist-config/package.json b/packages/browserslist-config/package.json index e6dd56a971058b..9cbec493d3d3e6 100644 --- a/packages/browserslist-config/package.json +++ b/packages/browserslist-config/package.json @@ -20,7 +20,7 @@ "url": "https://github.com/WordPress/gutenberg/issues" }, "engines": { - "node": ">=12" + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" }, "files": [ "index.js" diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index 7dfa5a68dabd61..66f577fb28f993 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 13.0.0 (2021-03-17) ### Breaking Change diff --git a/packages/components/README.md b/packages/components/README.md index a035497b5d59db..058683d5d5e103 100644 --- a/packages/components/README.md +++ b/packages/components/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/components --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/components/package.json b/packages/components/package.json index 4ef9c0373016e9..c902ff7b9ba609 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/compose/CHANGELOG.md b/packages/compose/CHANGELOG.md index cd82c4700b12e5..040e7be9d86bac 100644 --- a/packages/compose/CHANGELOG.md +++ b/packages/compose/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 3.25.0 (2021-03-17) ## 3.24.0 (2021-01-21) diff --git a/packages/compose/README.md b/packages/compose/README.md index 674eb97b5c6b46..15e30c394b9d7c 100644 --- a/packages/compose/README.md +++ b/packages/compose/README.md @@ -53,7 +53,7 @@ Install the module npm install @wordpress/compose --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/compose/package.json b/packages/compose/package.json index 11e1ef1b67b2ee..17b50b33ff552e 100644 --- a/packages/compose/package.json +++ b/packages/compose/package.json @@ -20,6 +20,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/core-data/CHANGELOG.md b/packages/core-data/CHANGELOG.md index 3b5b0030eba3c8..9385a5f5d3d896 100644 --- a/packages/core-data/CHANGELOG.md +++ b/packages/core-data/CHANGELOG.md @@ -1,6 +1,14 @@ ## Unreleased + +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + +### Enhancements + - The `getEntityRecords` resolver has been updated and now uses the batched variants of start and finish resolution actions. ## 2.26.0 (2021-03-17) diff --git a/packages/core-data/README.md b/packages/core-data/README.md index 18a1834c6b0985..c73ee20101a219 100644 --- a/packages/core-data/README.md +++ b/packages/core-data/README.md @@ -12,7 +12,7 @@ Install the module npm install @wordpress/core-data --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Example diff --git a/packages/core-data/package.json b/packages/core-data/package.json index 16630164cabee7..aadaa215697ba0 100644 --- a/packages/core-data/package.json +++ b/packages/core-data/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/customize-widgets/CHANGELOG.md b/packages/customize-widgets/CHANGELOG.md index e04ce921cdfdc4..a7832b42c96187 100644 --- a/packages/customize-widgets/CHANGELOG.md +++ b/packages/customize-widgets/CHANGELOG.md @@ -2,4 +2,4 @@ ## Unreleased -Initial release. +- Initial release of the package. diff --git a/packages/customize-widgets/README.md b/packages/customize-widgets/README.md index 6ed533cde09b24..771e81f7a8bcc7 100644 --- a/packages/customize-widgets/README.md +++ b/packages/customize-widgets/README.md @@ -12,6 +12,6 @@ Install the module npm install @wordpress/customize-widgets ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._

Code is Poetry.

diff --git a/packages/customize-widgets/package.json b/packages/customize-widgets/package.json index 673d09b9274246..ff2245f343fc3c 100644 --- a/packages/customize-widgets/package.json +++ b/packages/customize-widgets/package.json @@ -17,6 +17,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/data-controls/CHANGELOG.md b/packages/data-controls/CHANGELOG.md index 028f28de309e4f..0f2698df60fc4f 100644 --- a/packages/data-controls/CHANGELOG.md +++ b/packages/data-controls/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.21.0 (2021-03-17) ## 1.18.0 (2020-10-06) diff --git a/packages/data-controls/README.md b/packages/data-controls/README.md index 7b692694ef57f7..561a621d755979 100644 --- a/packages/data-controls/README.md +++ b/packages/data-controls/README.md @@ -12,7 +12,7 @@ Install the module npm install @wordpress/data-controls --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ The following controls are available on the object returned by the module: diff --git a/packages/data-controls/package.json b/packages/data-controls/package.json index db68e883e79e66..2eee72b6c9a571 100644 --- a/packages/data-controls/package.json +++ b/packages/data-controls/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/data/CHANGELOG.md b/packages/data/CHANGELOG.md index 27ed36f133da2e..a0d07c507d6b0b 100644 --- a/packages/data/CHANGELOG.md +++ b/packages/data/CHANGELOG.md @@ -1,6 +1,14 @@ ## Unreleased + +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + +### New Features + - Added new `startResolutions` and `finishResolutions` actions as batched variants of `startResolution` and `finishResolutions` actions. ## 4.27.0 (2021-03-17) diff --git a/packages/data/README.md b/packages/data/README.md index 8cc50e75dcf0da..ff224e345755ff 100644 --- a/packages/data/README.md +++ b/packages/data/README.md @@ -12,7 +12,7 @@ Install the module npm install @wordpress/data --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Registering a Store diff --git a/packages/data/package.json b/packages/data/package.json index 7e7f4c6935c671..6c1edb3005350b 100644 --- a/packages/data/package.json +++ b/packages/data/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/date/CHANGELOG.md b/packages/date/CHANGELOG.md index ae3810696e4a1e..41f163bf92379b 100644 --- a/packages/date/CHANGELOG.md +++ b/packages/date/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 3.15.0 (2021-04-06) ### New Feature diff --git a/packages/date/README.md b/packages/date/README.md index d2d9c04ba7a91e..7e1488f8c18b37 100644 --- a/packages/date/README.md +++ b/packages/date/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/date --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/date/package.json b/packages/date/package.json index 189618b2a49063..9b7fb1ff4b5f1a 100644 --- a/packages/date/package.json +++ b/packages/date/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/deprecated/CHANGELOG.md b/packages/deprecated/CHANGELOG.md index 2a15b1c91a7aa6..66d0ffc1b7f8ff 100644 --- a/packages/deprecated/CHANGELOG.md +++ b/packages/deprecated/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.12.0 (2021-03-17) ## 2.11.0 (2020-12-17) diff --git a/packages/deprecated/README.md b/packages/deprecated/README.md index 67155d92db13a5..166e2eccfda4ce 100644 --- a/packages/deprecated/README.md +++ b/packages/deprecated/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/deprecated --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Hook diff --git a/packages/deprecated/package.json b/packages/deprecated/package.json index ef10541a895d09..08dbe17c8ecae6 100644 --- a/packages/deprecated/package.json +++ b/packages/deprecated/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/docgen/CHANGELOG.md b/packages/docgen/CHANGELOG.md index d878e01870e25a..f16de9424e2672 100644 --- a/packages/docgen/CHANGELOG.md +++ b/packages/docgen/CHANGELOG.md @@ -5,8 +5,8 @@ ### New Features - Add support for array and object destructured arguments in TypeScript documentation generation. -- Add support for default arguments in TypeScript. -- Add support for static non-function variable type extraction in TypeScript. +- Add support for default arguments in TypeScript. +- Add support for static non-function variable type extraction in TypeScript. ## 1.16.0 (2021-03-17) diff --git a/packages/dom-ready/CHANGELOG.md b/packages/dom-ready/CHANGELOG.md index 752bb471ff5aac..91eaa87c052595 100644 --- a/packages/dom-ready/CHANGELOG.md +++ b/packages/dom-ready/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.13.0 (2021-03-17) ## 2.9.0 (2020-04-15) diff --git a/packages/dom-ready/README.md b/packages/dom-ready/README.md index d3d4801b19236e..92c09bc33bbd03 100644 --- a/packages/dom-ready/README.md +++ b/packages/dom-ready/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/dom-ready --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/dom-ready/package.json b/packages/dom-ready/package.json index dd8718789a17d5..0887dffd6a1a41 100644 --- a/packages/dom-ready/package.json +++ b/packages/dom-ready/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/dom/CHANGELOG.md b/packages/dom/CHANGELOG.md index 1e12d0d2f3ea2d..1b6dbf9398dc74 100644 --- a/packages/dom/CHANGELOG.md +++ b/packages/dom/CHANGELOG.md @@ -2,9 +2,14 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ### New Feature -- Export type definitions +- Export type definitions. ## 2.17.0 (2021-03-17) diff --git a/packages/dom/package.json b/packages/dom/package.json index 3cbacb06572303..41cb96b1a6dc84 100644 --- a/packages/dom/package.json +++ b/packages/dom/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/edit-navigation/CHANGELOG.md b/packages/edit-navigation/CHANGELOG.md index 6ed52df1077824..2e271ef03a604b 100644 --- a/packages/edit-navigation/CHANGELOG.md +++ b/packages/edit-navigation/CHANGELOG.md @@ -1,3 +1,5 @@ ## Unreleased + +- Initial version of the package. diff --git a/packages/edit-navigation/README.md b/packages/edit-navigation/README.md index 91f25fcc8cf283..08afd5dae7a813 100644 --- a/packages/edit-navigation/README.md +++ b/packages/edit-navigation/README.md @@ -59,6 +59,6 @@ return ( ); ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._

Code is Poetry.

diff --git a/packages/edit-navigation/package.json b/packages/edit-navigation/package.json index 329c46d793fc07..750b02fb88bec9 100644 --- a/packages/edit-navigation/package.json +++ b/packages/edit-navigation/package.json @@ -20,6 +20,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/edit-post/CHANGELOG.md b/packages/edit-post/CHANGELOG.md index aa2e5f5d972f59..4745659cf65b25 100644 --- a/packages/edit-post/CHANGELOG.md +++ b/packages/edit-post/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 3.27.0 (2021-03-17) ### New Features diff --git a/packages/edit-post/README.md b/packages/edit-post/README.md index 4f3611fc67a200..b0da4cf07844c7 100644 --- a/packages/edit-post/README.md +++ b/packages/edit-post/README.md @@ -12,7 +12,7 @@ Install the module npm install @wordpress/edit-post ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Extending the post editor UI diff --git a/packages/edit-post/package.json b/packages/edit-post/package.json index ab963f5787b041..41e9f9f8837e6d 100644 --- a/packages/edit-post/package.json +++ b/packages/edit-post/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/edit-site/CHANGELOG.md b/packages/edit-site/CHANGELOG.md index 7b430762bf7646..8afef93dc0b9c1 100644 --- a/packages/edit-site/CHANGELOG.md +++ b/packages/edit-site/CHANGELOG.md @@ -2,10 +2,15 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.17.0 (2021-03-17) ## 1.0.0 (2020-01-13) ### New Feature -- Initial version of the module. +- Initial version of the package. diff --git a/packages/edit-site/README.md b/packages/edit-site/README.md index e466df16ed2fcf..84cbeccee52c4a 100644 --- a/packages/edit-site/README.md +++ b/packages/edit-site/README.md @@ -26,6 +26,6 @@ import blockEditorSettings from './block-editor-settings'; initialize( '#editor-root', blockEditorSettings ); ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._

Code is Poetry.

diff --git a/packages/edit-site/package.json b/packages/edit-site/package.json index aab006b2a13d28..8b7f1bc8db5d0d 100644 --- a/packages/edit-site/package.json +++ b/packages/edit-site/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/edit-widgets/CHANGELOG.md b/packages/edit-widgets/CHANGELOG.md index 83b61d2622cd62..40a148447eee98 100644 --- a/packages/edit-widgets/CHANGELOG.md +++ b/packages/edit-widgets/CHANGELOG.md @@ -2,10 +2,15 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.3.0 (2021-03-17) ## 0.1.0 (2019-03-06) ### New Features -- Initial version of the module. +- Initial version of the package. diff --git a/packages/edit-widgets/README.md b/packages/edit-widgets/README.md index 2aec3fae4a03b0..9dbada72717b5d 100644 --- a/packages/edit-widgets/README.md +++ b/packages/edit-widgets/README.md @@ -16,7 +16,7 @@ Install the module npm install @wordpress/edit-widgets ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._

Code is Poetry.

diff --git a/packages/edit-widgets/package.json b/packages/edit-widgets/package.json index 34e27c08c9784d..6fba0e2d82e6c3 100644 --- a/packages/edit-widgets/package.json +++ b/packages/edit-widgets/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/editor/CHANGELOG.md b/packages/editor/CHANGELOG.md index 1ffd37b6f1236b..4a9192ad610f63 100644 --- a/packages/editor/CHANGELOG.md +++ b/packages/editor/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 9.26.0 (2021-03-17) ## 9.25.0 (2020-12-17) diff --git a/packages/editor/README.md b/packages/editor/README.md index b8345adb19dd74..46a35fd648f6c7 100644 --- a/packages/editor/README.md +++ b/packages/editor/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/editor --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## How it works diff --git a/packages/editor/package.json b/packages/editor/package.json index a08239b92b1299..d0ee9ea7149fb7 100644 --- a/packages/editor/package.json +++ b/packages/editor/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/element/CHANGELOG.md b/packages/element/CHANGELOG.md index b5c32cde47cd2f..0491331e33b28c 100644 --- a/packages/element/CHANGELOG.md +++ b/packages/element/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.20.0 (2021-03-17) ## 2.17.1 (2020-09-17) diff --git a/packages/element/README.md b/packages/element/README.md index d89498c1cace8c..b09cca79c8afb1 100755 --- a/packages/element/README.md +++ b/packages/element/README.md @@ -21,7 +21,7 @@ Install the module npm install @wordpress/element --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/element/package.json b/packages/element/package.json index 768c8cd1dcfe98..e3f72dfb6dc8a9 100644 --- a/packages/element/package.json +++ b/packages/element/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/escape-html/CHANGELOG.md b/packages/escape-html/CHANGELOG.md index 3b41bbc97a6068..b04fa722fa5705 100644 --- a/packages/escape-html/CHANGELOG.md +++ b/packages/escape-html/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.12.0 (2021-03-17) ## 1.8.0 (2020-04-15) diff --git a/packages/escape-html/README.md b/packages/escape-html/README.md index 8d9f451d3403af..2b35b9ff8daf75 100644 --- a/packages/escape-html/README.md +++ b/packages/escape-html/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/escape-html ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/escape-html/package.json b/packages/escape-html/package.json index a9ab95193793ae..60a9944c037b58 100644 --- a/packages/escape-html/package.json +++ b/packages/escape-html/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/format-library/CHANGELOG.md b/packages/format-library/CHANGELOG.md index 1cd726bac4fb98..8ffa1bd326501c 100644 --- a/packages/format-library/CHANGELOG.md +++ b/packages/format-library/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.27.0 (2021-03-17) ## 1.8.0 (2019-08-29) diff --git a/packages/format-library/README.md b/packages/format-library/README.md index 69d6f157279d07..8615dfcfda9bf3 100644 --- a/packages/format-library/README.md +++ b/packages/format-library/README.md @@ -10,6 +10,6 @@ Install the module npm install @wordpress/format-library --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._

Code is Poetry.

diff --git a/packages/format-library/package.json b/packages/format-library/package.json index d8bec03267964a..ebf5455e26f498 100644 --- a/packages/format-library/package.json +++ b/packages/format-library/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/hooks/CHANGELOG.md b/packages/hooks/CHANGELOG.md index 86de3fa4fbc218..555248f947debf 100644 --- a/packages/hooks/CHANGELOG.md +++ b/packages/hooks/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.12.0 (2021-03-17) ### New Feature diff --git a/packages/hooks/README.md b/packages/hooks/README.md index ffc15114d387d7..3b780a8dd52c7a 100644 --- a/packages/hooks/README.md +++ b/packages/hooks/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/hooks --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ### Usage diff --git a/packages/hooks/package.json b/packages/hooks/package.json index 2587a53ebf13e9..7c837b642a13da 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/html-entities/CHANGELOG.md b/packages/html-entities/CHANGELOG.md index 1c478dbc60083e..52c91be69ba30c 100644 --- a/packages/html-entities/CHANGELOG.md +++ b/packages/html-entities/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.11.0 (2021-03-17) ## 2.7.0 (2020-04-15) diff --git a/packages/html-entities/README.md b/packages/html-entities/README.md index 562c835faf53b3..f51848b18c74ee 100644 --- a/packages/html-entities/README.md +++ b/packages/html-entities/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/html-entities --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/html-entities/package.json b/packages/html-entities/package.json index 9e1c655865b5db..0deeee1dc2092d 100644 --- a/packages/html-entities/package.json +++ b/packages/html-entities/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/i18n/CHANGELOG.md b/packages/i18n/CHANGELOG.md index 455e792603d07a..2419ccc99bb077 100644 --- a/packages/i18n/CHANGELOG.md +++ b/packages/i18n/CHANGELOG.md @@ -2,7 +2,14 @@ ## Unreleased -- Add new `resetLocaleData` method to reset the existing Tannin locale data. +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + +### New Features + +- Add new `resetLocaleData` method to reset the existing Tannin locale data. ## 3.19.0 (2021-03-17) diff --git a/packages/i18n/README.md b/packages/i18n/README.md index 061dbbb0257fce..7c4982a9caa77c 100644 --- a/packages/i18n/README.md +++ b/packages/i18n/README.md @@ -10,7 +10,7 @@ Install the module: npm install @wordpress/i18n --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 95e1e932ef183f..968dcdfc19f58d 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 62cee734faa8e7..c1a0589069c20b 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.10.0 (2021-03-17) ## 2.0.0 (2020-05-14) diff --git a/packages/icons/README.md b/packages/icons/README.md index d6f4aecf917d68..825bd1b1fc086b 100644 --- a/packages/icons/README.md +++ b/packages/icons/README.md @@ -10,7 +10,7 @@ Install the module: npm install @wordpress/icons --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/icons/package.json b/packages/icons/package.json index 05826fc9a94684..76f787ae520e39 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -20,6 +20,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/interface/CHANGELOG.md b/packages/interface/CHANGELOG.md index 13392b234397a4..56dc51092bbc35 100644 --- a/packages/interface/CHANGELOG.md +++ b/packages/interface/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.0.0 (2021-04-06) ### Breaking Changes diff --git a/packages/interface/README.md b/packages/interface/README.md index e115aa64783714..8dfebc7dc842d2 100644 --- a/packages/interface/README.md +++ b/packages/interface/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/interface --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API Usage diff --git a/packages/interface/package.json b/packages/interface/package.json index b18edd06ef63a1..a1d21ef0fd1eb7 100644 --- a/packages/interface/package.json +++ b/packages/interface/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/is-shallow-equal/CHANGELOG.md b/packages/is-shallow-equal/CHANGELOG.md index e213da1182d0ea..3ad7f2359d4cc4 100644 --- a/packages/is-shallow-equal/CHANGELOG.md +++ b/packages/is-shallow-equal/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 3.1.0 (2021-03-17) ## 3.0.0 (2020-12-17) diff --git a/packages/is-shallow-equal/package.json b/packages/is-shallow-equal/package.json index 243d4046b05e4c..7ad5f282cea2e8 100644 --- a/packages/is-shallow-equal/package.json +++ b/packages/is-shallow-equal/package.json @@ -20,6 +20,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "files": [ "build", "build-module", diff --git a/packages/keyboard-shortcuts/CHANGELOG.md b/packages/keyboard-shortcuts/CHANGELOG.md index aa72fe476631c7..ea9e958d8a9050 100644 --- a/packages/keyboard-shortcuts/CHANGELOG.md +++ b/packages/keyboard-shortcuts/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.14.0 (2021-03-17) ## 1.13.0 (2020-12-17) diff --git a/packages/keyboard-shortcuts/README.md b/packages/keyboard-shortcuts/README.md index 3a060fdf23af6c..57172f1eb49b44 100644 --- a/packages/keyboard-shortcuts/README.md +++ b/packages/keyboard-shortcuts/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/keyboard-shortcuts --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/keyboard-shortcuts/package.json b/packages/keyboard-shortcuts/package.json index 7e31dc1a30f838..5dfb86bf145de3 100644 --- a/packages/keyboard-shortcuts/package.json +++ b/packages/keyboard-shortcuts/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/keycodes/CHANGELOG.md b/packages/keycodes/CHANGELOG.md index 6f01d011b238f3..03323cbd97b6c1 100644 --- a/packages/keycodes/CHANGELOG.md +++ b/packages/keycodes/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.19.0 (2021-03-17) ## 2.18.0 (2021-01-05) diff --git a/packages/keycodes/README.md b/packages/keycodes/README.md index 6752d99548857c..4924adf04a25f6 100644 --- a/packages/keycodes/README.md +++ b/packages/keycodes/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/keycodes --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/keycodes/package.json b/packages/keycodes/package.json index e52c3bf364780b..e77d0d5cecdc9c 100644 --- a/packages/keycodes/package.json +++ b/packages/keycodes/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/lazy-import/README.md b/packages/lazy-import/README.md index 06a943f23ce7d7..396e5cc2248e1c 100644 --- a/packages/lazy-import/README.md +++ b/packages/lazy-import/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/lazy-import --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Requirements diff --git a/packages/list-reusable-blocks/CHANGELOG.md b/packages/list-reusable-blocks/CHANGELOG.md index 10fcefa3712675..6c3d99ee24002c 100644 --- a/packages/list-reusable-blocks/CHANGELOG.md +++ b/packages/list-reusable-blocks/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.26.0 (2021-03-17) ## 1.1.18 (2019-01-03) diff --git a/packages/list-reusable-blocks/README.md b/packages/list-reusable-blocks/README.md index f14e9dd2e59790..5021be6b4608f4 100644 --- a/packages/list-reusable-blocks/README.md +++ b/packages/list-reusable-blocks/README.md @@ -12,6 +12,6 @@ Install the module npm install @wordpress/list-reusable-blocks --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._

Code is Poetry.

diff --git a/packages/list-reusable-blocks/package.json b/packages/list-reusable-blocks/package.json index 0d7b6182824c4f..c6876099fbe5ef 100644 --- a/packages/list-reusable-blocks/package.json +++ b/packages/list-reusable-blocks/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "dependencies": { diff --git a/packages/media-utils/CHANGELOG.md b/packages/media-utils/CHANGELOG.md index a9fe18389bf11a..a897a861572777 100644 --- a/packages/media-utils/CHANGELOG.md +++ b/packages/media-utils/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.20.0 (2021-03-17) ## 0.1.0 (2019-01-03) diff --git a/packages/media-utils/README.md b/packages/media-utils/README.md index a80ea9ac9ca73b..818d17dce6340a 100644 --- a/packages/media-utils/README.md +++ b/packages/media-utils/README.md @@ -11,7 +11,7 @@ Install the module npm install @wordpress/media-utils --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/media-utils/package.json b/packages/media-utils/package.json index db94b40c3f4163..b75796b384b183 100644 --- a/packages/media-utils/package.json +++ b/packages/media-utils/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "dependencies": { diff --git a/packages/notices/CHANGELOG.md b/packages/notices/CHANGELOG.md index a0a039cd6c6f6c..71366a57eb1de6 100644 --- a/packages/notices/CHANGELOG.md +++ b/packages/notices/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.13.0 (2021-03-17) ## 2.12.0 (2020-12-17) diff --git a/packages/notices/README.md b/packages/notices/README.md index 9b3a591fc1abc2..bce5583c71ab6d 100644 --- a/packages/notices/README.md +++ b/packages/notices/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/notices ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/notices/package.json b/packages/notices/package.json index 3731b4a4637f76..98b98eb7a47e97 100644 --- a/packages/notices/package.json +++ b/packages/notices/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/nux/CHANGELOG.md b/packages/nux/CHANGELOG.md index 727006c2556b1b..aa64a00f0ae9d6 100644 --- a/packages/nux/CHANGELOG.md +++ b/packages/nux/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 3.25.0 (2021-03-17) ## 3.24.0 (2020-12-17) diff --git a/packages/nux/README.md b/packages/nux/README.md index 5a9b14bfa9829c..1c234c87350a36 100644 --- a/packages/nux/README.md +++ b/packages/nux/README.md @@ -14,7 +14,7 @@ Install the module npm install @wordpress/nux --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## DotTip diff --git a/packages/nux/package.json b/packages/nux/package.json index e2d0f3bf7e4870..3102611b8ba2ae 100644 --- a/packages/nux/package.json +++ b/packages/nux/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/plugins/CHANGELOG.md b/packages/plugins/CHANGELOG.md index 457a3ce544d099..f8f86c228f69d0 100644 --- a/packages/plugins/CHANGELOG.md +++ b/packages/plugins/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.25.0 (2021-03-17) ### New Features diff --git a/packages/plugins/README.md b/packages/plugins/README.md index dc435b4ed157c9..c47c77206fb55c 100644 --- a/packages/plugins/README.md +++ b/packages/plugins/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/plugins --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ### Plugins API diff --git a/packages/plugins/package.json b/packages/plugins/package.json index c6f73a4a85572f..b7c31d3bcc937f 100644 --- a/packages/plugins/package.json +++ b/packages/plugins/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/primitives/CHANGELOG.md b/packages/primitives/CHANGELOG.md index 54ed36be26154a..4cef7e37d1a94a 100644 --- a/packages/primitives/CHANGELOG.md +++ b/packages/primitives/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.12.0 (2021-03-17) ## 1.5.0 (2020-05-14) diff --git a/packages/primitives/README.md b/packages/primitives/README.md index 66ed22d7518db7..1056276d289061 100644 --- a/packages/primitives/README.md +++ b/packages/primitives/README.md @@ -27,6 +27,6 @@ const myElement = ( ); ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._

Code is Poetry.

diff --git a/packages/primitives/package.json b/packages/primitives/package.json index 669f0816a55f3f..4733a570d64770 100644 --- a/packages/primitives/package.json +++ b/packages/primitives/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/priority-queue/CHANGELOG.md b/packages/priority-queue/CHANGELOG.md index b8200a86721794..d66b683eac3e1e 100644 --- a/packages/priority-queue/CHANGELOG.md +++ b/packages/priority-queue/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.11.0 (2021-03-17) ## 1.6.0 (2020-04-15) diff --git a/packages/priority-queue/README.md b/packages/priority-queue/README.md index 600a82240cbb8e..64e13011238cef 100644 --- a/packages/priority-queue/README.md +++ b/packages/priority-queue/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/priority-queue --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/priority-queue/package.json b/packages/priority-queue/package.json index d9b8f1d7b684d3..6745043f9a5115 100644 --- a/packages/priority-queue/package.json +++ b/packages/priority-queue/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/react-i18n/CHANGELOG.md b/packages/react-i18n/CHANGELOG.md new file mode 100644 index 00000000000000..192f89b8fa10d0 --- /dev/null +++ b/packages/react-i18n/CHANGELOG.md @@ -0,0 +1,12 @@ + + +## Unreleased + +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + +## 1.0.0 (2021-03-17) + +- Initial version of the package. diff --git a/packages/react-i18n/README.md b/packages/react-i18n/README.md index 68dbf54a7a0c50..16b9341d4180b1 100644 --- a/packages/react-i18n/README.md +++ b/packages/react-i18n/README.md @@ -10,7 +10,7 @@ Install the module: npm install @wordpress/react-i18n ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/react-i18n/package.json b/packages/react-i18n/package.json index e78ecb2d609de9..b734a31d5952e4 100644 --- a/packages/react-i18n/package.json +++ b/packages/react-i18n/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/redux-routine/CHANGELOG.md b/packages/redux-routine/CHANGELOG.md index 41c526aea55256..29f907dd08d5c2 100644 --- a/packages/redux-routine/CHANGELOG.md +++ b/packages/redux-routine/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 3.14.0 (2021-03-17) ## 3.7.0 (2020-02-04) diff --git a/packages/redux-routine/package.json b/packages/redux-routine/package.json index 820bc39e9d97b2..6dc0a9108b30c8 100644 --- a/packages/redux-routine/package.json +++ b/packages/redux-routine/package.json @@ -20,6 +20,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/reusable-blocks/CHANGELOG.md b/packages/reusable-blocks/CHANGELOG.md index 030bcbce7d6d50..51b6bcc3af2b05 100644 --- a/packages/reusable-blocks/CHANGELOG.md +++ b/packages/reusable-blocks/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.2.0 (2021-03-17) ## 1.1.0 (2020-12-17) diff --git a/packages/reusable-blocks/README.md b/packages/reusable-blocks/README.md index 9c9c656d2dd93a..20aa4982e1c343 100644 --- a/packages/reusable-blocks/README.md +++ b/packages/reusable-blocks/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/reusable-blocks --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## How it works diff --git a/packages/reusable-blocks/package.json b/packages/reusable-blocks/package.json index 1fea20a2a10cf7..cca47db6513dc5 100644 --- a/packages/reusable-blocks/package.json +++ b/packages/reusable-blocks/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/rich-text/CHANGELOG.md b/packages/rich-text/CHANGELOG.md index b5d3675acd5900..da315043353bd2 100644 --- a/packages/rich-text/CHANGELOG.md +++ b/packages/rich-text/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 3.25.0 (2021-03-17) ## 3.24.0 (2020-12-17) diff --git a/packages/rich-text/README.md b/packages/rich-text/README.md index 8f0fc331b27c83..08c0712043c35b 100644 --- a/packages/rich-text/README.md +++ b/packages/rich-text/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/rich-text ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/rich-text/package.json b/packages/rich-text/package.json index f1ff5604a43635..444b820d15a530 100644 --- a/packages/rich-text/package.json +++ b/packages/rich-text/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/scripts/CHANGELOG.md b/packages/scripts/CHANGELOG.md index fd963ee2832051..56ef81687c3e35 100644 --- a/packages/scripts/CHANGELOG.md +++ b/packages/scripts/CHANGELOG.md @@ -4,6 +4,8 @@ ### Breaking Changes +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. - The bundled `puppeteer-core` (`^5.5.0`) dependency has been upgraded to version `^9.0.0`. Puppeteer uses Chromium v91 instead of Chromium v88. See the full list of breaking changes of [9.0.0](https://github.com/puppeteer/puppeteer/releases/tag/v9.0.0) and lower versions ([#31138](https://github.com/WordPress/gutenberg/pull/31138)). ### New Features diff --git a/packages/scripts/package.json b/packages/scripts/package.json index c994786398f952..bdb293e7630fba 100644 --- a/packages/scripts/package.json +++ b/packages/scripts/package.json @@ -19,7 +19,7 @@ "url": "https://github.com/WordPress/gutenberg/issues" }, "engines": { - "node": ">=12", + "node": "^12.13.0 || ^14.15.0 || >=15.0.0", "npm": ">=6.9" }, "files": [ diff --git a/packages/server-side-render/CHANGELOG.md b/packages/server-side-render/CHANGELOG.md index 609237ab7a4ffd..12b19d13af094f 100644 --- a/packages/server-side-render/CHANGELOG.md +++ b/packages/server-side-render/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.21.0 (2021-03-17) ## 1.17.0 (2020-09-03) diff --git a/packages/server-side-render/README.md b/packages/server-side-render/README.md index 26d33cd94def46..50743c8281370e 100644 --- a/packages/server-side-render/README.md +++ b/packages/server-side-render/README.md @@ -18,7 +18,7 @@ Install the module npm install @wordpress/server-side-render --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/server-side-render/package.json b/packages/server-side-render/package.json index 287b1bd1b750ac..c6db0d04361027 100644 --- a/packages/server-side-render/package.json +++ b/packages/server-side-render/package.json @@ -19,6 +19,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/shortcode/CHANGELOG.md b/packages/shortcode/CHANGELOG.md index d58f344a745227..5ded07930e5a9d 100644 --- a/packages/shortcode/CHANGELOG.md +++ b/packages/shortcode/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.13.0 (2021-03-17) ## 2.0.1 (2018-09-30) diff --git a/packages/shortcode/README.md b/packages/shortcode/README.md index 1179a3a3d24720..1beaba7e6ec343 100644 --- a/packages/shortcode/README.md +++ b/packages/shortcode/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/shortcode --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/shortcode/package.json b/packages/shortcode/package.json index 008e69cf9867da..b6b185d4a93b0c 100644 --- a/packages/shortcode/package.json +++ b/packages/shortcode/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/token-list/CHANGELOG.md b/packages/token-list/CHANGELOG.md index 966d1c8214ffa4..93dc8cd4282bc2 100644 --- a/packages/token-list/CHANGELOG.md +++ b/packages/token-list/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.15.0 (2021-03-17) ## 1.10.0 (2020-04-15) diff --git a/packages/token-list/README.md b/packages/token-list/README.md index 2a80ee8667283b..e47cc35e04101b 100644 --- a/packages/token-list/README.md +++ b/packages/token-list/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/token-list ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/token-list/package.json b/packages/token-list/package.json index 8fde438611e744..07ee1b6c94a041 100644 --- a/packages/token-list/package.json +++ b/packages/token-list/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/url/CHANGELOG.md b/packages/url/CHANGELOG.md index e7562fd0d66d0f..1a5b1abb0060e7 100644 --- a/packages/url/CHANGELOG.md +++ b/packages/url/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.22.0 (2021-03-17) ## 2.21.0 (2021-01-05) diff --git a/packages/url/README.md b/packages/url/README.md index 84d5aa67961ead..bec8886687b66d 100644 --- a/packages/url/README.md +++ b/packages/url/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/url --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/url/package.json b/packages/url/package.json index ba52c6cfd8fafa..419d267427fba0 100644 --- a/packages/url/package.json +++ b/packages/url/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/viewport/CHANGELOG.md b/packages/viewport/CHANGELOG.md index a119f0d02b9b20..c118774799555f 100644 --- a/packages/viewport/CHANGELOG.md +++ b/packages/viewport/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.26.0 (2021-03-17) ## 2.25.0 (2020-12-17) diff --git a/packages/viewport/README.md b/packages/viewport/README.md index 6c15ad6aa15709..ae12f4547e3a1d 100644 --- a/packages/viewport/README.md +++ b/packages/viewport/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/viewport --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Usage diff --git a/packages/viewport/package.json b/packages/viewport/package.json index e2d35d8013f8dc..ab34f84a07ce17 100644 --- a/packages/viewport/package.json +++ b/packages/viewport/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/warning/CHANGELOG.md b/packages/warning/CHANGELOG.md index a2b38504a9018d..076d81f69bad9f 100644 --- a/packages/warning/CHANGELOG.md +++ b/packages/warning/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 1.4.0 (2021-03-17) ## 1.1.0 (2020-04-15) diff --git a/packages/warning/README.md b/packages/warning/README.md index 034991251c89ca..47a72705506922 100644 --- a/packages/warning/README.md +++ b/packages/warning/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/warning --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## Reducing bundle size diff --git a/packages/warning/package.json b/packages/warning/package.json index 699bdcc3c098ae..0177ad2027dc9f 100644 --- a/packages/warning/package.json +++ b/packages/warning/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index", diff --git a/packages/wordcount/CHANGELOG.md b/packages/wordcount/CHANGELOG.md index 73641a2ccea9eb..1cfe49e8267616 100644 --- a/packages/wordcount/CHANGELOG.md +++ b/packages/wordcount/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Breaking Changes + +- Drop support for Internet Explorer 11 ([#31110](https://github.com/WordPress/gutenberg/pull/31110)). Learn more at https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/. +- Increase the minimum Node.js versions to match Long Term Support releases ([#31270](https://github.com/WordPress/gutenberg/pull/31270)). Learn more at https://nodejs.org/en/about/releases/. + ## 2.15.0 (2021-03-17) ## 2.0.3 (2018-10-29) diff --git a/packages/wordcount/README.md b/packages/wordcount/README.md index 9ffff147f474c3..ace076c97108cf 100644 --- a/packages/wordcount/README.md +++ b/packages/wordcount/README.md @@ -10,7 +10,7 @@ Install the module npm install @wordpress/wordcount --save ``` -_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ +_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._ ## API diff --git a/packages/wordcount/package.json b/packages/wordcount/package.json index 2640fa5fb4fd11..2a8b34385394a6 100644 --- a/packages/wordcount/package.json +++ b/packages/wordcount/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/WordPress/gutenberg/issues" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + }, "main": "build/index.js", "module": "build-module/index.js", "react-native": "src/index",