From 4788b085712364c74a57b15018867c380f5bcc94 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 1 Jun 2026 22:27:14 +0000 Subject: [PATCH] chore(release): 9.0.0 --- CHANGELOG.md | 19 +++++++++++++++++++ package.json | 2 +- packages/browserslist-config/CHANGELOG.md | 12 ++++++++++++ packages/browserslist-config/package.json | 2 +- packages/eslint-config/CHANGELOG.md | 10 ++++++++++ packages/eslint-config/package.json | 2 +- packages/lint-package-json/CHANGELOG.md | 12 ++++++++++++ packages/lint-package-json/package.json | 2 +- .../npm-package-json-lint-config/CHANGELOG.md | 12 ++++++++++++ .../npm-package-json-lint-config/package.json | 2 +- packages/oxlint-config/CHANGELOG.md | 15 +++++++++++++++ packages/oxlint-config/package.json | 2 +- packages/project-files/CHANGELOG.md | 10 ++++++++++ packages/project-files/package.json | 2 +- packages/scripts/CHANGELOG.md | 10 ++++++++++ packages/scripts/package.json | 2 +- packages/stylelint-config/CHANGELOG.md | 10 ++++++++++ packages/stylelint-config/package.json | 2 +- 18 files changed, 119 insertions(+), 9 deletions(-) create mode 100644 packages/oxlint-config/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a453bb..746f7b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.4.0...v9.0.0) (2026-06-01) + +### ⚠ BREAKING CHANGES + +* **browserslist-config,eslint-config,lint-package-json,npm-package-json-lint-config,oxlint-config,project-files,scripts,stylelint-config:** node >= 22 now is minimal supported version +* **lint-package-json,npm-package-json-lint-config:** package type changed to `module` (#161) +* **browserslist-config:** package type changed to `module` (#159) + +### Features + +* **browserslist-config,eslint-config,lint-package-json,npm-package-json-lint-config,oxlint-config,project-files,scripts,stylelint-config:** node >= 22 now is minimal supported version ([fbfaf0d](https://github.com/TrigenSoftware/scripts/commit/fbfaf0d6cdf19a0c1e8128b67b8e472c5844533e)) +* **browserslist-config:** package type changed to `module` ([#159](https://github.com/TrigenSoftware/scripts/issues/159)) ([64e020a](https://github.com/TrigenSoftware/scripts/commit/64e020ab6e3a23bf0fd449e3fabc4b2fe9dd1fa5)) +* **lint-package-json,npm-package-json-lint-config:** package type changed to `module` ([#161](https://github.com/TrigenSoftware/scripts/issues/161)) ([5d3076d](https://github.com/TrigenSoftware/scripts/commit/5d3076d933a8863314e2ed58c57477cedf0af822)) +* **oxlint-config:** brand new oxlint config ([#162](https://github.com/TrigenSoftware/scripts/issues/162)) ([073316d](https://github.com/TrigenSoftware/scripts/commit/073316d95569906318add265217c5b5b03fa7afd)) + +### Bug Fixes + +* **deps:** update dependency stylelint-gamut to v2 ([#152](https://github.com/TrigenSoftware/scripts/issues/152)) ([abeb0f9](https://github.com/TrigenSoftware/scripts/commit/abeb0f99c2441e57a278675affd9b86f3084d08c)) + ## [8.4.0](https://github.com/TrigenSoftware/scripts/compare/v8.3.1...v8.4.0) (2026-03-29) ### Features diff --git a/package.json b/package.json index ac87668..217e02b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "scripts", "type": "module", "private": true, - "version": "8.4.0", + "version": "9.0.0", "description": "Scripts and configs for TrigenSoftware's projects.", "author": "dangreen", "license": "MIT", diff --git a/packages/browserslist-config/CHANGELOG.md b/packages/browserslist-config/CHANGELOG.md index 41aea08..1c1bb24 100644 --- a/packages/browserslist-config/CHANGELOG.md +++ b/packages/browserslist-config/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.4.0...v9.0.0) (2026-06-01) + +### ⚠ BREAKING CHANGES + +* node >= 22 now is minimal supported version +* package type changed to `module` (#159) + +### Features + +* node >= 22 now is minimal supported version ([fbfaf0d](https://github.com/TrigenSoftware/scripts/commit/fbfaf0d6cdf19a0c1e8128b67b8e472c5844533e)) +* package type changed to `module` ([#159](https://github.com/TrigenSoftware/scripts/issues/159)) ([64e020a](https://github.com/TrigenSoftware/scripts/commit/64e020ab6e3a23bf0fd449e3fabc4b2fe9dd1fa5)) + ## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) ## [8.0.0-alpha.33](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.32...v8.0.0-alpha.33) (2025-01-01) diff --git a/packages/browserslist-config/package.json b/packages/browserslist-config/package.json index ff01acc..aa1efc2 100644 --- a/packages/browserslist-config/package.json +++ b/packages/browserslist-config/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/browserslist-config", "type": "module", - "version": "8.0.0", + "version": "9.0.0", "description": "Trigen's Browserslist config.", "author": "dangreen", "license": "MIT", diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index fe718a6..5a3bd3a 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.4.0...v9.0.0) (2026-06-01) + +### ⚠ BREAKING CHANGES + +* node >= 22 now is minimal supported version + +### Features + +* node >= 22 now is minimal supported version ([fbfaf0d](https://github.com/TrigenSoftware/scripts/commit/fbfaf0d6cdf19a0c1e8128b67b8e472c5844533e)) + ## [8.4.0](https://github.com/TrigenSoftware/scripts/compare/v8.3.1...v8.4.0) (2026-03-29) ### Features diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index bb596e3..aef6c19 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/eslint-config", "type": "module", - "version": "8.4.0", + "version": "9.0.0", "description": "Trigen's ESLint config.", "author": "dangreen", "license": "MIT", diff --git a/packages/lint-package-json/CHANGELOG.md b/packages/lint-package-json/CHANGELOG.md index 9729694..a39d78f 100644 --- a/packages/lint-package-json/CHANGELOG.md +++ b/packages/lint-package-json/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.4.0...v9.0.0) (2026-06-01) + +### ⚠ BREAKING CHANGES + +* node >= 22 now is minimal supported version +* package type changed to `module` (#161) + +### Features + +* node >= 22 now is minimal supported version ([fbfaf0d](https://github.com/TrigenSoftware/scripts/commit/fbfaf0d6cdf19a0c1e8128b67b8e472c5844533e)) +* package type changed to `module` ([#161](https://github.com/TrigenSoftware/scripts/issues/161)) ([5d3076d](https://github.com/TrigenSoftware/scripts/commit/5d3076d933a8863314e2ed58c57477cedf0af822)) + ## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) ## [8.0.0-alpha.33](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.32...v8.0.0-alpha.33) (2025-01-01) diff --git a/packages/lint-package-json/package.json b/packages/lint-package-json/package.json index 1c65c27..bcee80c 100644 --- a/packages/lint-package-json/package.json +++ b/packages/lint-package-json/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/lint-package-json", "type": "module", - "version": "8.0.0", + "version": "9.0.0", "description": "Shortcut to run npm-package-json-lint with @trigen/npm-package-json-lint-config.", "author": "dangreen", "license": "MIT", diff --git a/packages/npm-package-json-lint-config/CHANGELOG.md b/packages/npm-package-json-lint-config/CHANGELOG.md index 062f6e4..22bfab5 100644 --- a/packages/npm-package-json-lint-config/CHANGELOG.md +++ b/packages/npm-package-json-lint-config/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.4.0...v9.0.0) (2026-06-01) + +### ⚠ BREAKING CHANGES + +* node >= 22 now is minimal supported version +* package type changed to `module` (#161) + +### Features + +* node >= 22 now is minimal supported version ([fbfaf0d](https://github.com/TrigenSoftware/scripts/commit/fbfaf0d6cdf19a0c1e8128b67b8e472c5844533e)) +* package type changed to `module` ([#161](https://github.com/TrigenSoftware/scripts/issues/161)) ([5d3076d](https://github.com/TrigenSoftware/scripts/commit/5d3076d933a8863314e2ed58c57477cedf0af822)) + ## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) ## [8.0.0-alpha.33](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.32...v8.0.0-alpha.33) (2025-01-01) diff --git a/packages/npm-package-json-lint-config/package.json b/packages/npm-package-json-lint-config/package.json index dbc02f0..d7a6ae0 100644 --- a/packages/npm-package-json-lint-config/package.json +++ b/packages/npm-package-json-lint-config/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/npm-package-json-lint-config", "type": "module", - "version": "8.0.0", + "version": "9.0.0", "description": "Trigen's npm-package-json-lint config.", "author": "dangreen", "license": "MIT", diff --git a/packages/oxlint-config/CHANGELOG.md b/packages/oxlint-config/CHANGELOG.md new file mode 100644 index 0000000..b1c03d1 --- /dev/null +++ b/packages/oxlint-config/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [9.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.4.0...v9.0.0) (2026-06-01) + +### ⚠ BREAKING CHANGES + +* node >= 22 now is minimal supported version + +### Features + +* brand new oxlint config ([#162](https://github.com/TrigenSoftware/scripts/issues/162)) ([073316d](https://github.com/TrigenSoftware/scripts/commit/073316d95569906318add265217c5b5b03fa7afd)) +* node >= 22 now is minimal supported version ([fbfaf0d](https://github.com/TrigenSoftware/scripts/commit/fbfaf0d6cdf19a0c1e8128b67b8e472c5844533e)) diff --git a/packages/oxlint-config/package.json b/packages/oxlint-config/package.json index a744537..23e1e9b 100644 --- a/packages/oxlint-config/package.json +++ b/packages/oxlint-config/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/oxlint-config", "type": "module", - "version": "8.4.0", + "version": "9.0.0", "description": "Trigen's Oxlint config.", "author": "dangreen", "license": "MIT", diff --git a/packages/project-files/CHANGELOG.md b/packages/project-files/CHANGELOG.md index 9624955..e3613ff 100644 --- a/packages/project-files/CHANGELOG.md +++ b/packages/project-files/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.4.0...v9.0.0) (2026-06-01) + +### ⚠ BREAKING CHANGES + +* node >= 22 now is minimal supported version + +### Features + +* node >= 22 now is minimal supported version ([fbfaf0d](https://github.com/TrigenSoftware/scripts/commit/fbfaf0d6cdf19a0c1e8128b67b8e472c5844533e)) + ## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) ## [8.0.0-alpha.33](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.32...v8.0.0-alpha.33) (2025-01-01) diff --git a/packages/project-files/package.json b/packages/project-files/package.json index 290f188..10ec1f0 100644 --- a/packages/project-files/package.json +++ b/packages/project-files/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/project-files", "type": "module", - "version": "8.0.0", + "version": "9.0.0", "description": "CLI tool for download snippets files.", "author": "dangreen", "license": "MIT", diff --git a/packages/scripts/CHANGELOG.md b/packages/scripts/CHANGELOG.md index 8941ce3..2fb3754 100644 --- a/packages/scripts/CHANGELOG.md +++ b/packages/scripts/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.4.0...v9.0.0) (2026-06-01) + +### ⚠ BREAKING CHANGES + +* node >= 22 now is minimal supported version + +### Features + +* node >= 22 now is minimal supported version ([fbfaf0d](https://github.com/TrigenSoftware/scripts/commit/fbfaf0d6cdf19a0c1e8128b67b8e472c5844533e)) + ## [8.0.4](https://github.com/TrigenSoftware/scripts/compare/v8.0.3...v8.0.4) (2025-07-13) ### Bug Fixes diff --git a/packages/scripts/package.json b/packages/scripts/package.json index a171f11..9b8f9f1 100644 --- a/packages/scripts/package.json +++ b/packages/scripts/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/scripts", "type": "module", - "version": "8.0.4", + "version": "9.0.0", "description": "CLI tool for running scripts.", "author": "dangreen", "license": "MIT", diff --git a/packages/stylelint-config/CHANGELOG.md b/packages/stylelint-config/CHANGELOG.md index f6437d4..ce3f5ed 100644 --- a/packages/stylelint-config/CHANGELOG.md +++ b/packages/stylelint-config/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.4.0...v9.0.0) (2026-06-01) + +### ⚠ BREAKING CHANGES + +* node >= 22 now is minimal supported version + +### Features + +* node >= 22 now is minimal supported version ([fbfaf0d](https://github.com/TrigenSoftware/scripts/commit/fbfaf0d6cdf19a0c1e8128b67b8e472c5844533e)) + ## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) ### Features diff --git a/packages/stylelint-config/package.json b/packages/stylelint-config/package.json index 9a30129..e53ef09 100644 --- a/packages/stylelint-config/package.json +++ b/packages/stylelint-config/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/stylelint-config", "type": "module", - "version": "8.0.0", + "version": "9.0.0", "description": "Trigen's Stylelint config.", "author": "dangreen", "license": "MIT",