Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Revert Node version to support versions greater than 14 and publish packages #731

Merged
merged 8 commits into from
Feb 12, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 2.3.0 - (February 11, 2022)

* Changed
* Revert Node version to support versions greater than 14.

## 2.2.0 - (February 8, 2022)

* Changed
Expand Down
4 changes: 4 additions & 0 deletions packages/duplicate-package-checker-webpack-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ Packages with different major versions introduce backward incompatible changes a

It is suggested that strict mode is kept enabled since this improves visibility into your bundle and can help in solving and identifying potential issues.

## Node version support

This package was developed and tested using Node 10 up to Node 14. This package has not been tested by us using Node 16 or greater. We don't want to restrict consumers on Node 16 or greater from using this package. For this reason the node version in package.json is set to `>=10` to allow Node 16 and above to use the package. No known issues were reported in newer Node versions but it is recommended that consumers to fully test it if you're using Node 16 or greater and report any issue.
benbcai marked this conversation as resolved.
Show resolved Hide resolved

## Resolving duplicate packages in your bundle

There are multiple ways you can go about resolving duplicate packages in your bundle, the right solution mostly depends on what tools you're using and on each particular case.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@cerner/duplicate-package-checker-webpack-plugin",
"version": "2.2.0",
"version": "2.3.0",
"description": "Webpack plugin that warns you when multiple versions of the same package exist in a build.",
"main": "lib/index.js",
"engines": {
"node": "^10.0.0 || ^12.0.0 || ^14.0.0"
"node": ">=10"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 7 additions & 1 deletion packages/eslint-config-terra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 5.4.0 - (February 11, 2022)

* Changed
* Revert Node version to support versions greater than 14.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: "support" makes it sound like we officially support. How about:

Suggested change
* Revert Node version to support versions greater than 14.
* Revert limiting upper Node version to 14.


## 5.3.0 - (February 8, 2022)

* Changed
Expand Down Expand Up @@ -139,14 +144,15 @@

* Changed
* Update ESLint and related dependencies to ESLint v5 compatible versions
* Disabled the deprecated `jsx-a11y/label-has-for rule`. More info about this rule deprecation here: https://github.com/evcohen/eslint-plugin-jsx-a11y/releases/tag/v6.1.0
* Disabled the deprecated `jsx-a11y/label-has-for rule`. More info about this rule deprecation here: <https://github.com/evcohen/eslint-plugin-jsx-a11y/releases/tag/v6.1.0>
* Replaced `jsx-a11y/label-has-for` rule with new `jsx-a11y/label-has-associated-control` rule
* Disabled `react/destructuring-assignment` rule

## 1.1.0 - (July 11, 2018)

* Changed
* Updated 'jsx-a11y/label-has-for' to require id or nested input for label mapping

## 1.0.1 - (June 19, 2018)

* Changed
Expand Down
4 changes: 4 additions & 0 deletions packages/eslint-config-terra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ Then, [define the browsers](https://github.com/amilajack/eslint-plugin-compat#ta
}
```

## Node version support

This package was developed and tested using Node 10 up to Node 14. This package has not been tested by us using Node 16 or greater. We don't want to restrict consumers on Node 16 or greater from using this package. For this reason the node version in package.json is set to `>=10.13.0` to allow Node 16 and above to use the package. No known issues were reported in newer Node versions but it is recommended that consumers to fully test it if you're using Node 16 or greater and report any issue.

## Versioning

eslint-config-terra is considered to be stable and will follow [SemVer](http://semver.org/) for versioning.
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-terra/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cerner/eslint-config-terra",
"version": "5.3.0",
"version": "5.4.0",
"description": "Terra Eslint Config",
"main": "eslint.config.js",
"publishConfig": {
Expand All @@ -23,7 +23,7 @@
"url": "https://github.com/cerner/terra-toolkit/issues"
},
"engines": {
"node": "^10.13.0 || ^12.0.0 || ^14.0.0"
"node": ">=10.13.0"
},
"homepage": "https://github.com/cerner/terra-toolkit",
"scripts": {
Expand Down
5 changes: 5 additions & 0 deletions packages/jest-config-terra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 1.5.0 - (February 11, 2022)

* Changed
* Revert Node version to support versions greater than 14.

## 1.4.0 - (February 8, 2022)

* Changed
Expand Down
4 changes: 4 additions & 0 deletions packages/jest-config-terra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

A base jest config for the terra application framework.

## Node version support

This package was developed and tested using Node 10 up to Node 14. This package has not been tested by us using Node 16 or greater. We don't want to restrict consumers on Node 16 or greater from using this package. For this reason the node version in package.json is set to `>=10.13.0` to allow Node 16 and above to use the package. No known issues were reported in newer Node versions but it is recommended that consumers to fully test it if you're using Node 16 or greater and report any issue.

## Versioning

jest-config-terra is considered to be stable and will follow [SemVer](http://semver.org/) for versioning.
Expand Down
6 changes: 3 additions & 3 deletions packages/jest-config-terra/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cerner/jest-config-terra",
"version": "1.4.0",
"version": "1.5.0",
"description": "A base jest config for the terra application framework.",
"main": "jest.config.js",
"publishConfig": {
Expand All @@ -23,7 +23,7 @@
"url": "https://github.com/cerner/terra-toolkit/issues"
},
"engines": {
"node": "^10.13.0 || ^12.0.0 || ^14.0.0"
"node": ">=10.13.0"
},
"homepage": "https://github.com/cerner/terra-toolkit",
"files": [
Expand All @@ -36,7 +36,7 @@
"jest": "jest --config ../../jest.config.js"
},
"dependencies": {
"@cerner/terra-cli": "^1.8.0",
"@cerner/terra-cli": "^1.9.0",
"@jest/reporters": "^25.3.0",
"babel-jest": "^26.6.3",
"identity-obj-proxy": "^3.0.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/package-json-lint-config-terra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@

## Unreleased

## 1.4.0 - (February 11, 2022)

* Changed
* Revert Node version to support versions greater than 14.

## 1.3.0 - (February 8, 2022)

* Changed
* Updated component to support Node 14.

* Changed
* Minor dependency bump

## 1.2.0 - (October 12, 2021)

* Added
Expand Down
4 changes: 4 additions & 0 deletions packages/package-json-lint-config-terra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ First, include the configuration defined by `@cerner/package-json-lint-config-te
}
```

## Node version support

This package was developed and tested using Node 10 up to Node 14. This package has not been tested by us using Node 16 or greater. We don't want to restrict consumers on Node 16 or greater from using this package. For this reason the node version in package.json is set to `>=10.13.0` to allow Node 16 and above to use the package. No known issues were reported in newer Node versions but it is recommended that consumers to fully test it if you're using Node 16 or greater and report any issue.

## Versioning

@cerner/package-json-lint-config-terra is considered to be stable and will follow [SemVer](http://semver.org/) for versioning.
Expand Down
4 changes: 2 additions & 2 deletions packages/package-json-lint-config-terra/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cerner/package-json-lint-config-terra",
"version": "1.3.0",
"version": "1.4.0",
"description": "Package Json Lint Config",
"main": "package-json-lint.config.js",
"publishConfig": {
Expand All @@ -26,7 +26,7 @@
"url": "https://github.com/cerner/terra-toolkit/issues"
},
"engines": {
"node": "^10.13.0 || ^12.0.0 || ^14.0.0"
"node": ">=10.13.0"
},
"homepage": "https://github.com/cerner/terra-toolkit",
"scripts": {
Expand Down
5 changes: 5 additions & 0 deletions packages/package-json-lint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 1.5.0 - (February 11, 2022)

* Changed
* Revert Node version to support versions greater than 14.

## 1.4.0 - (February 8, 2022)

* Changed
Expand Down
4 changes: 4 additions & 0 deletions packages/package-json-lint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

Linter for package.json files.

## Node version support

This package was developed and tested using Node 10 up to Node 14. This package has not been tested by us using Node 16 or greater. We don't want to restrict consumers on Node 16 or greater from using this package. For this reason the node version in package.json is set to `>=10` to allow Node 16 and above to use the package. No known issues were reported in newer Node versions but it is recommended that consumers to fully test it if you're using Node 16 or greater and report any issue.

## Versioning

package-json-lint is considered to be stable and will follow [SemVer](http://semver.org/) for versioning.
Expand Down
6 changes: 3 additions & 3 deletions packages/package-json-lint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cerner/package-json-lint",
"version": "1.4.0",
"version": "1.5.0",
"description": "Package JSON linter",
"publishConfig": {
"access": "public"
Expand All @@ -24,7 +24,7 @@
"url": "https://github.com/cerner/terra-toolkit/issues"
},
"engines": {
"node": "^10.0.0 || ^12.0.0 || ^14.0.0"
"node": ">=10"
},
"homepage": "https://github.com/cerner/terra-toolkit",
"scripts": {
Expand All @@ -47,7 +47,7 @@
"@cerner/terra-cli": "^1.0.0"
},
"devDependencies": {
"@cerner/terra-cli": "^1.8.0",
"@cerner/terra-cli": "^1.9.0",
"strip-ansi": "^6.0.0",
"yargs": "^16.1.1"
}
Expand Down
5 changes: 5 additions & 0 deletions packages/stylelint-config-terra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 4.3.0 - (February 11, 2022)

* Changed
* Revert Node version to support versions greater than 14.

## 4.2.0 - (February 8, 2022)

* Changed
Expand Down
4 changes: 4 additions & 0 deletions packages/stylelint-config-terra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ The following custom rules are enabled by default.
* [terra/custom-property-pattern](https://github.com/cerner/terra-toolkit/blob/main/packages/stylelint-config-terra/src/rules/custom-property-pattern): Requires custom properties to be written in lowercase alphanumeric characters and hyphens.
* [terra/custom-property-pseudo-selectors](https://github.com/cerner/terra-toolkit/blob/main/packages/stylelint-config-terra/src/rules/custom-property-pseudo-selectors): Requires custom properties to include all ancestor pseudo selectors in order.

## Node version support

This package was developed and tested using Node 10 up to Node 14. This package has not been tested by us using Node 16 or greater. We don't want to restrict consumers on Node 16 or greater from using this package. For this reason the node version in package.json is set to `>=10` to allow Node 16 and above to use the package. No known issues were reported in newer Node versions but it is recommended that consumers to fully test it if you're using Node 16 or greater and report any issue.

## Contributing

Please read through our [contributing guidelines](CONTRIBUTING.md). Included are directions for issue reporting and pull requests.
Expand Down
4 changes: 2 additions & 2 deletions packages/stylelint-config-terra/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cerner/stylelint-config-terra",
"version": "4.2.0",
"version": "4.3.0",
"description": "Terra Stylelint Shared Config",
"main": "stylelint.config.js",
"repository": {
Expand All @@ -23,7 +23,7 @@
"linter"
],
"engines": {
"node": "^10.13.0 || ^12.0.0 || ^14.0.0"
"node": ">=10"
},
"author": "Cerner Corporation",
"license": "Apache-2.0",
Expand Down
5 changes: 5 additions & 0 deletions packages/terra-aggregate-translations/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 2.4.0 - (February 11, 2022)

* Changed
* Revert Node version to support versions greater than 14.

## 2.3.0 - (February 8, 2022)

* Changed
Expand Down
4 changes: 4 additions & 0 deletions packages/terra-aggregate-translations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ environment.resolvedModules.append('aggregated-translations', 'tmp/aggregated-tr
module.exports = environment
```

## Node version support

This package was developed and tested using Node 10 up to Node 14. This package has not been tested by us using Node 16 or greater. We don't want to restrict consumers on Node 16 or greater from using this package. For this reason the node version in package.json is set to `>=10` to allow Node 16 and above to use the package. No known issues were reported in newer Node versions but it is recommended that consumers to fully test it if you're using Node 16 or greater and report any issue.

## LICENSE

Copyright 2019 - present Cerner Innovation, Inc.
Expand Down
4 changes: 2 additions & 2 deletions packages/terra-aggregate-translations/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@cerner/terra-aggregate-translations",
"version": "2.3.0",
"version": "2.4.0",
"description": "The terra-aggregate-translations pre-build tool assists with creating the translation, intl loader and translation loader files that are configured for the specified locales. This tool is offered as a CLI script and as a setup function.",
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^10.0.0 || ^12.0.0 || ^14.0.0"
"node": ">=10"
},
"repository": {
"type": "git",
Expand Down
5 changes: 5 additions & 0 deletions packages/terra-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 1.9.0 - (February 11, 2022)

* Changed
* Revert Node version to support versions greater than 14.

## 1.8.0 - (February 8, 2022)

* Changed
Expand Down
4 changes: 4 additions & 0 deletions packages/terra-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

Terra's common CLI for package commands.

## Node version support

This package was developed and tested using Node 10 up to Node 14. This package has not been tested by us using Node 16 or greater. We don't want to restrict consumers on Node 16 or greater from using this package. For this reason the node version in package.json is set to `>=10.13.0` to allow Node 16 and above to use the package. No known issues were reported in newer Node versions but it is recommended that consumers to fully test it if you're using Node 16 or greater and report any issue.

## Versioning

terra-cli is considered to be stable and will follow [SemVer](http://semver.org/) for versioning.
Expand Down
4 changes: 2 additions & 2 deletions packages/terra-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cerner/terra-cli",
"version": "1.8.0",
"version": "1.9.0",
"description": "Terra Cli",
"main": "index.js",
"bin": {
Expand All @@ -26,7 +26,7 @@
"url": "https://github.com/cerner/terra-toolkit/issues"
},
"engines": {
"node": "^10.13.0 || ^12.0.0 || ^14.0.0"
"node": ">=10.13.0"
},
"homepage": "https://github.com/cerner/terra-toolkit",
"scripts": {
Expand Down
5 changes: 5 additions & 0 deletions packages/terra-enzyme-intl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 4.6.0 - (February 11, 2022)

* Changed
* Revert Node version to support versions greater than 14.

## 4.5.0 - (February 8, 2022)

* Changed
Expand Down
4 changes: 4 additions & 0 deletions packages/terra-enzyme-intl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,10 @@ const result = foo(id, mockIntl);
expect(result).toMatchSnapshot(); // OK, doesn't depend on real translations
```

## Node version support

This package was developed and tested using Node 10 up to Node 14. This package has not been tested by us using Node 16 or greater. We don't want to restrict consumers on Node 16 or greater from using this package. For this reason the node version in package.json is set to `>=10` to allow Node 16 and above to use the package. No known issues were reported in newer Node versions but it is recommended that consumers to fully test it if you're using Node 16 or greater and report any issue.

## LICENSE

Copyright 2018 - 2020 Cerner Innovation, Inc.
Expand Down
4 changes: 2 additions & 2 deletions packages/terra-enzyme-intl/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@cerner/terra-enzyme-intl",
"version": "4.5.0",
"version": "4.6.0",
"description": "Enzyme helpers for fortifying tests that depend on react-intl by decoupling the need for actual translations.",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^10.0.0 || ^12.0.0 || ^14.0.0"
"node": ">=10"
},
"repository": {
"type": "git",
Expand Down
Loading