From f4031cd178cbe77651b6e71c4e8b163edcc88104 Mon Sep 17 00:00:00 2001 From: "shopify-github-actions-access[bot]" <109624739+shopify-github-actions-access[bot]@users.noreply.github.com> Date: Thu, 23 Feb 2023 14:56:21 -0800 Subject: [PATCH] Version Packages (#365) Co-authored-by: github-actions[bot] --- .changeset/clever-tables-know.md | 9 -------- .changeset/gold-penguins-allow.md | 5 ---- .changeset/shaggy-pugs-visit.md | 13 ----------- .changeset/shiny-badgers-draw.md | 5 ---- .changeset/thick-rockets-confess.md | 5 ---- .changeset/tough-squids-divide.md | 5 ---- packages/stylelint-plugin/CHANGELOG.md | 32 ++++++++++++++++++++++++++ packages/stylelint-plugin/package.json | 2 +- 8 files changed, 33 insertions(+), 43 deletions(-) delete mode 100644 .changeset/clever-tables-know.md delete mode 100644 .changeset/gold-penguins-allow.md delete mode 100644 .changeset/shaggy-pugs-visit.md delete mode 100644 .changeset/shiny-badgers-draw.md delete mode 100644 .changeset/thick-rockets-confess.md delete mode 100644 .changeset/tough-squids-divide.md diff --git a/.changeset/clever-tables-know.md b/.changeset/clever-tables-know.md deleted file mode 100644 index c084c571..00000000 --- a/.changeset/clever-tables-know.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@shopify/stylelint-plugin': major ---- - -Updating our stylelint rules to support stylelint@^15 - -- Removing [76 rules](https://stylelint.io/user-guide/rules#deprecated) deprecated rules. -- Enable a new [`declaration-property-value-no-unknown`](https://github.com/stylelint/stylelint/blob/main/lib/rules/declaration-property-value-no-unknown/README.md) rule. -- Only support `stylelint` >= 15 diff --git a/.changeset/gold-penguins-allow.md b/.changeset/gold-penguins-allow.md deleted file mode 100644 index 355ddd25..00000000 --- a/.changeset/gold-penguins-allow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@shopify/stylelint-plugin': patch ---- - -Update `postcss` to version ^8.4.21 diff --git a/.changeset/shaggy-pugs-visit.md b/.changeset/shaggy-pugs-visit.md deleted file mode 100644 index c118cdca..00000000 --- a/.changeset/shaggy-pugs-visit.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@shopify/stylelint-plugin': minor ---- - -Updating `stylelint-scss` to version `^4.4.0`. - -This version support new rules: - -- [`scss/dollar-variable-no-namespaced-assignment`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/dollar-variable-no-namespaced-assignment/README.md) -- [`scss/at-use-no-unnamespaced`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/at-use-no-unnamespaced/README.md) -- [`scss/function-no-unknown`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/function-no-unknown/README.md) -- [`scss/at-import-partial-extension`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/at-import-partial-extension/README.md) -- [`scss/at-rule-no-unknown`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/at-rule-no-unknown/README.md) diff --git a/.changeset/shiny-badgers-draw.md b/.changeset/shiny-badgers-draw.md deleted file mode 100644 index a6d7cad9..00000000 --- a/.changeset/shiny-badgers-draw.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@shopify/stylelint-plugin': patch ---- - -Updating stylelint-prettier to `^3.0.0` diff --git a/.changeset/thick-rockets-confess.md b/.changeset/thick-rockets-confess.md deleted file mode 100644 index 1ebe5f6a..00000000 --- a/.changeset/thick-rockets-confess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@shopify/stylelint-plugin': patch ---- - -Update `stylelint-order` to version `^6.0.0` diff --git a/.changeset/tough-squids-divide.md b/.changeset/tough-squids-divide.md deleted file mode 100644 index 3dd7eeee..00000000 --- a/.changeset/tough-squids-divide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@shopify/stylelint-plugin': patch ---- - -Remove a layer of indirection by specifying rules in `index.js` instead of having that import content from `config/*.js` diff --git a/packages/stylelint-plugin/CHANGELOG.md b/packages/stylelint-plugin/CHANGELOG.md index 2a6fb087..14115ca3 100644 --- a/packages/stylelint-plugin/CHANGELOG.md +++ b/packages/stylelint-plugin/CHANGELOG.md @@ -1,5 +1,37 @@ # Changelog +## 12.0.0 + +### Major Changes + +- [#364](https://github.com/Shopify/web-configs/pull/364) [`2283dfe`](https://github.com/Shopify/web-configs/commit/2283dfed0a3ecbe0db7d995e77df308dca623b57) Thanks [@alexandcote](https://github.com/alexandcote)! - Updating our stylelint rules to support stylelint@^15 + + - Removing [76 rules](https://stylelint.io/user-guide/rules#deprecated) deprecated rules. + - Enable a new [`declaration-property-value-no-unknown`](https://github.com/stylelint/stylelint/blob/main/lib/rules/declaration-property-value-no-unknown/README.md) rule. + - Only support `stylelint` >= 15 + +### Minor Changes + +- [#364](https://github.com/Shopify/web-configs/pull/364) [`2283dfe`](https://github.com/Shopify/web-configs/commit/2283dfed0a3ecbe0db7d995e77df308dca623b57) Thanks [@alexandcote](https://github.com/alexandcote)! - Updating `stylelint-scss` to version `^4.4.0`. + + This version support new rules: + + - [`scss/dollar-variable-no-namespaced-assignment`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/dollar-variable-no-namespaced-assignment/README.md) + - [`scss/at-use-no-unnamespaced`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/at-use-no-unnamespaced/README.md) + - [`scss/function-no-unknown`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/function-no-unknown/README.md) + - [`scss/at-import-partial-extension`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/at-import-partial-extension/README.md) + - [`scss/at-rule-no-unknown`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/at-rule-no-unknown/README.md) + +### Patch Changes + +- [#364](https://github.com/Shopify/web-configs/pull/364) [`2283dfe`](https://github.com/Shopify/web-configs/commit/2283dfed0a3ecbe0db7d995e77df308dca623b57) Thanks [@alexandcote](https://github.com/alexandcote)! - Update `postcss` to version ^8.4.21 + +- [#364](https://github.com/Shopify/web-configs/pull/364) [`2283dfe`](https://github.com/Shopify/web-configs/commit/2283dfed0a3ecbe0db7d995e77df308dca623b57) Thanks [@alexandcote](https://github.com/alexandcote)! - Updating stylelint-prettier to `^3.0.0` + +- [#364](https://github.com/Shopify/web-configs/pull/364) [`2283dfe`](https://github.com/Shopify/web-configs/commit/2283dfed0a3ecbe0db7d995e77df308dca623b57) Thanks [@alexandcote](https://github.com/alexandcote)! - Update `stylelint-order` to version `^6.0.0` + +- [#366](https://github.com/Shopify/web-configs/pull/366) [`33f12e4`](https://github.com/Shopify/web-configs/commit/33f12e48ee0e7c95bfa35392ef0d2a9c27329d68) Thanks [@BPScott](https://github.com/BPScott)! - Remove a layer of indirection by specifying rules in `index.js` instead of having that import content from `config/*.js` + ## 11.0.1 - 2021-12-07 ### Changed diff --git a/packages/stylelint-plugin/package.json b/packages/stylelint-plugin/package.json index 9f5d25c0..29bc9175 100644 --- a/packages/stylelint-plugin/package.json +++ b/packages/stylelint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@shopify/stylelint-plugin", - "version": "11.0.1", + "version": "12.0.0", "license": "MIT", "description": "Shopify's stylelint rules and config", "keywords": [