VirtualLiveLab / js-config

A config library for js projects in Virtual Live Lab
5 stars 0 forks source link

fix(deps): update dependencies #137

Closed renovate[bot] closed 1 month ago

renovate[bot] commented 2 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-config-flat-gitignore ^0.1.5 -> ^0.1.8 age adoption passing confidence
eslint-plugin-astro (source) ^1.2.2 -> ^1.2.3 age adoption passing confidence
eslint-plugin-react ^7.34.3 -> ^7.34.4 age adoption passing confidence
globals ^15.6.0 -> ^15.8.0 age adoption passing confidence
prettier (source) ^3.3.2 -> ^3.3.3 age adoption passing confidence
stylelint (source) ^16.6.1 -> ^16.7.0 age adoption passing confidence
typescript-eslint (source) ^7.14.1 -> ^7.16.1 age adoption passing confidence

Release Notes

antfu/eslint-config-flat-gitignore (eslint-config-flat-gitignore) ### [`v0.1.8`](https://togithub.com/antfu/eslint-config-flat-gitignore/compare/v0.1.7...a034c1570602c41e920970964ccc02f4742fc966) [Compare Source](https://togithub.com/antfu/eslint-config-flat-gitignore/compare/v0.1.7...a034c1570602c41e920970964ccc02f4742fc966) ### [`v0.1.7`](https://togithub.com/antfu/eslint-config-flat-gitignore/releases/tag/v0.1.7) [Compare Source](https://togithub.com/antfu/eslint-config-flat-gitignore/compare/v0.1.6...v0.1.7) #####    🐞 Bug Fixes - Revert `name` field, fix [#​11](https://togithub.com/antfu/eslint-config-flat-gitignore/issues/11)  -  by [@​antfu](https://togithub.com/antfu) in [https://github.com/antfu/eslint-config-flat-gitignore/issues/11](https://togithub.com/antfu/eslint-config-flat-gitignore/issues/11) [(77d7b)](https://togithub.com/antfu/eslint-config-flat-gitignore/commit/77d7bb9) #####     [View changes on GitHub](https://togithub.com/antfu/eslint-config-flat-gitignore/compare/v0.1.6...v0.1.7) ### [`v0.1.6`](https://togithub.com/antfu/eslint-config-flat-gitignore/releases/tag/v0.1.6) [Compare Source](https://togithub.com/antfu/eslint-config-flat-gitignore/compare/v0.1.5...v0.1.6) #####    🚀 Features - Re-add name field to the config  -  by [@​IgorKowalczyk](https://togithub.com/IgorKowalczyk) in [https://github.com/antfu/eslint-config-flat-gitignore/issues/10](https://togithub.com/antfu/eslint-config-flat-gitignore/issues/10) [(b2d59)](https://togithub.com/antfu/eslint-config-flat-gitignore/commit/b2d59db) #####     [View changes on GitHub](https://togithub.com/antfu/eslint-config-flat-gitignore/compare/v0.1.5...v0.1.6)
ota-meshi/eslint-plugin-astro (eslint-plugin-astro) ### [`v1.2.3`](https://togithub.com/ota-meshi/eslint-plugin-astro/blob/HEAD/CHANGELOG.md#123) [Compare Source](https://togithub.com/ota-meshi/eslint-plugin-astro/compare/v1.2.2...v1.2.3) ##### Patch Changes - [#​405](https://togithub.com/ota-meshi/eslint-plugin-astro/pull/405) [`a77445e`](https://togithub.com/ota-meshi/eslint-plugin-astro/commit/a77445e353f8bd38c4348529c58ce242d18d36c2) Thanks [@​smilosevic](https://togithub.com/smilosevic)! - no-export-from-components - allow "partial" exception
jsx-eslint/eslint-plugin-react (eslint-plugin-react) ### [`v7.34.4`](https://togithub.com/jsx-eslint/eslint-plugin-react/blob/HEAD/CHANGELOG.md#7344---20240713) [Compare Source](https://togithub.com/jsx-eslint/eslint-plugin-react/compare/v7.34.3...v7.34.4) ##### Fixed - \[`prop-types`]: fix `className` missing in prop validation false negative ([#​3749] [@​akulsr0](https://togithub.com/akulsr0)) - \[`sort-prop-types`]: Check for undefined before accessing `node.typeAnnotation.typeAnnotation` ([#​3779] [@​tylerlaprade](https://togithub.com/tylerlaprade)) [7.34.4]: https://togithub.com/jsx-eslint/eslint-plugin-react/compare/v7.34.3...v7.34.4 [#​3779]: https://togithub.com/jsx-eslint/eslint-plugin-react/pull/3779 [#​3749]: https://togithub.com/jsx-eslint/eslint-plugin-react/pull/3749
sindresorhus/globals (globals) ### [`v15.8.0`](https://togithub.com/sindresorhus/globals/compare/v15.7.0...f6b39781bad9a1884427137b3f20fe93cef8df34) [Compare Source](https://togithub.com/sindresorhus/globals/compare/v15.7.0...v15.8.0) ### [`v15.7.0`](https://togithub.com/sindresorhus/globals/releases/tag/v15.7.0) [Compare Source](https://togithub.com/sindresorhus/globals/compare/v15.6.0...v15.7.0) - Update globals ([#​255](https://togithub.com/sindresorhus/globals/issues/255)) [`f017b0f`](https://togithub.com/sindresorhus/globals/commit/f017b0f)
prettier/prettier (prettier) ### [`v3.3.3`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#333) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) [diff](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) ##### Add parentheses for nullish coalescing in ternary ([#​16391](https://togithub.com/prettier/prettier/pull/16391) by [@​cdignam-segment](https://togithub.com/cdignam-segment)) This change adds clarity to operator precedence. ```js // Input foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; // Prettier 3.3.2 foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; // Prettier 3.3.3 foo ? (bar ?? foo) : baz; (foo ?? bar) ? a : b; a ? b : (foo ?? bar); ``` ##### Add parentheses for decorator expressions ([#​16458](https://togithub.com/prettier/prettier/pull/16458) by [@​y-schneider](https://togithub.com/y-schneider)) Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5. ```ts // Input @​(foo`tagged template`) class X {} // Prettier 3.3.2 @​foo`tagged template` class X {} // Prettier 3.3.3 @​(foo`tagged template`) class X {} ``` ##### Support `@let` declaration syntax ([#​16474](https://togithub.com/prettier/prettier/pull/16474) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) Adds support for Angular v18 `@let` declaration syntax. Please see the following code example. The `@let` declaration allows you to define local variables within the template: ```html @​let name = 'Frodo';

Dashboard for {{name}}

Hello, {{name}} ``` For more details, please refer to the excellent blog post by the Angular Team: [Introducing @​let in Angular](https://blog.angular.dev/introducing-let-in-angular-686f9f383f0f). We also appreciate the Angular Team for kindly answering our questions to implement this feature.
stylelint/stylelint (stylelint) ### [`v16.7.0`](https://togithub.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#1670) [Compare Source](https://togithub.com/stylelint/stylelint/compare/16.6.1...16.7.0) - Changed: `tap` formatter to support TAP14 ([#​7759](https://togithub.com/stylelint/stylelint/pull/7759)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Added: `url` secondary option ([#​7743](https://togithub.com/stylelint/stylelint/pull/7743)) ([@​emmacharp](https://togithub.com/emmacharp)). - Fixed: `at-rule-no-unknown` false positives for `@historical-forms` and `@font-palette-values` ([#​7774](https://togithub.com/stylelint/stylelint/pull/7774)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `at-rule-no-unknown` false positives for `@view-transition` ([#​7753](https://togithub.com/stylelint/stylelint/pull/7753)) ([@​sebdanielsson](https://togithub.com/sebdanielsson)). - Fixed: `at-rule-no-vendor-prefix` false negatives for `@-moz-document` and `@-webkit-viewport` ([#​7772](https://togithub.com/stylelint/stylelint/pull/7772)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `comment-whitespace-inside` end positions ([#​7744](https://togithub.com/stylelint/stylelint/pull/7744)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `declaration-block-no-duplicate-properties` reported ranges ([#​7758](https://togithub.com/stylelint/stylelint/pull/7758)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `declaration-block-no-redundant-longhand-properties`/`declaration-block-no-shorthand-property-overrides` false negatives for `font-variant` ([#​7734](https://togithub.com/stylelint/stylelint/pull/7734)) ([@​Bilie](https://togithub.com/Bilie)). - Fixed: `font-family-name-quotes` false negatives for `-moz-*`/`-webkit-*` keywords ([#​7777](https://togithub.com/stylelint/stylelint/pull/7777)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `font-family-no-missing-generic-family-keyword` false negatives for font families which names match a CSS3 `font-variant` keyword ([#​7823](https://togithub.com/stylelint/stylelint/pull/7823)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `function-name-case` end positions ([#​7747](https://togithub.com/stylelint/stylelint/pull/7747)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `function-no-unknown` performance by reducing file read count ([#​7801](https://togithub.com/stylelint/stylelint/pull/7801)) ([@​ybiquitous](https://togithub.com/ybiquitous)). - Fixed: `media-feature-name-no-vendor-prefix` autofix ([#​7770](https://togithub.com/stylelint/stylelint/pull/7770)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `no-invalid-double-slash-comments` reported ranges ([#​7768](https://togithub.com/stylelint/stylelint/pull/7768)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `property-no-unknown` false positives for `navigation` and miscellaneous legacy properties ([#​7764](https://togithub.com/stylelint/stylelint/pull/7764)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `quietDeprecationWarnings` to suppress `stylelint:003` warning ([#​7837](https://togithub.com/stylelint/stylelint/pull/7837)) ([@​ybiquitous](https://togithub.com/ybiquitous)). - Fixed: `selector-no-vendor-prefix` autofix ([#​7763](https://togithub.com/stylelint/stylelint/pull/7763)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `selector-not-notation` end positions when new lines are part of the selector ([#​7755](https://togithub.com/stylelint/stylelint/pull/7755)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `selector-type-case` end positions ([#​7752](https://togithub.com/stylelint/stylelint/pull/7752)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `shorthand-property-no-redundant-values` false negatives for logical properties, `overflow`, `overscroll-behavior`, `scroll-margin` and `scroll-padding` ([#​7808](https://togithub.com/stylelint/stylelint/pull/7808)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `string-no-newline` false positives for escaped multi-line ([#​7818](https://togithub.com/stylelint/stylelint/pull/7818)) ([@​romainmenke](https://togithub.com/romainmenke)). - Fixed: `value-keyword-case` end positions ([#​7760](https://togithub.com/stylelint/stylelint/pull/7760)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `stylelint.utils.checkAgainstRule()` for Promise-based rules ([#​7821](https://togithub.com/stylelint/stylelint/pull/7821)) ([@​aaronccasanova](https://togithub.com/aaronccasanova)). - Fixed: `stylelint.utils.checkAgainstRule()` to use `result.stylelint` if present ([#​7833](https://togithub.com/stylelint/stylelint/pull/7833)) ([@​ybiquitous](https://togithub.com/ybiquitous)). - Fixed: YAML diagnostic block *end marker line* of the `tap` formatter ([#​7759](https://togithub.com/stylelint/stylelint/pull/7759)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: autofix of incorrectly implemented plugins when unscoped stylelint commands are present ([#​7733](https://togithub.com/stylelint/stylelint/pull/7733)) ([@​romainmenke](https://togithub.com/romainmenke)).
typescript-eslint/typescript-eslint (typescript-eslint) ### [`v7.16.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#7161-2024-07-15) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.16.0...v7.16.1) This was a version bump only for typescript-eslint to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v7.16.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#7160-2024-07-08) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.15.0...v7.16.0) ##### 🚀 Features - **eslint-plugin:** \[no-unnecessary-parameter-property-assignment] add new rule ##### 🩹 Fixes - **deps:** update dependency [@​eslint-community/regexpp](https://togithub.com/eslint-community/regexpp) to v4.11.0 - **website:** react key error on internal pages of website ##### ❤️ Thank You - Abraham Guo - auvred - Josh Goldberg ✨ - Juan Sanchez - Vinccool96 - YeonJuan - Yukihiro Hasegawa You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v7.15.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#7150-2024-07-01) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.14.1...v7.15.0) ##### 🚀 Features - **eslint-plugin:** back-port new rules around empty object types from v8 ##### 🩹 Fixes - disable `EXPERIMENTAL_useProjectService` in `disabled-type-checked` shared config ##### ❤️ Thank You - auvred - Kim Sang Du - rgehbt - Vinccool96 You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.

Configuration

📅 Schedule: Branch creation - "before 10am on the first day of the month,every weekend,before 5:00am" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Mend Renovate. View repository job log here.

changeset-bot[bot] commented 2 months ago

⚠️ No Changeset found

Latest commit: 8a3d626739e3b4b0b22e39515c671f7a7639da80

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR