chore(deps): update minor and patch version dependencies (master) #24

Merged
EndMove merged 1 commits from renovate/master-minor-and-patch-version-dependencies into master 2024-06-09 16:28:11 +02:00
Collaborator

This PR contains the following updates:

Package Type Update Change
eslint-plugin-cypress dependencies patch ^2.15.1 -> ^2.15.2
eslint-plugin-vue (source) dependencies minor ^9.24.1 -> ^9.26.0
prettier (source) dependencies minor ^3.2.5 -> ^3.3.1

Release Notes

cypress-io/eslint-plugin-cypress (eslint-plugin-cypress)

v2.15.2

Compare Source

Bug Fixes
  • deps: update semantic-release to 19.0.3 (573be16)
vuejs/eslint-plugin-vue (eslint-plugin-vue)

v9.26.0

Compare Source

Enhancements

? Bug Fixes

Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.25.0...v9.26.0

v9.25.0

Compare Source

Enhancements

? Bug Fixes

Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.24.1...v9.25.0

prettier/prettier (prettier)

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

? Release Notes


Configuration

? Schedule: Branch creation - At any time (no schedule defined), 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [eslint-plugin-cypress](https://github.com/cypress-io/eslint-plugin-cypress) | dependencies | patch | [`^2.15.1` -> `^2.15.2`](https://renovatebot.com/diffs/npm/eslint-plugin-cypress/2.15.1/2.15.2) | | [eslint-plugin-vue](https://eslint.vuejs.org) ([source](https://github.com/vuejs/eslint-plugin-vue)) | dependencies | minor | [`^9.24.1` -> `^9.26.0`](https://renovatebot.com/diffs/npm/eslint-plugin-vue/9.24.1/9.26.0) | | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | dependencies | minor | [`^3.2.5` -> `^3.3.1`](https://renovatebot.com/diffs/npm/prettier/3.2.5/3.3.1) | --- ### Release Notes <details> <summary>cypress-io/eslint-plugin-cypress (eslint-plugin-cypress)</summary> ### [`v2.15.2`](https://github.com/cypress-io/eslint-plugin-cypress/releases/tag/v2.15.2) [Compare Source](https://github.com/cypress-io/eslint-plugin-cypress/compare/v2.15.1...v2.15.2) ##### Bug Fixes - **deps:** update semantic-release to 19.0.3 ([573be16](https://github.com/cypress-io/eslint-plugin-cypress/commit/573be1681451b954dbdaf7b4b47db81eff34d183)) </details> <details> <summary>vuejs/eslint-plugin-vue (eslint-plugin-vue)</summary> ### [`v9.26.0`](https://github.com/vuejs/eslint-plugin-vue/releases/tag/v9.26.0) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v9.25.0...v9.26.0) #### ✨ Enhancements - [#&#8203;2457](https://github.com/vuejs/eslint-plugin-vue/issues/2457) Improved some rules to understand MathML elements: - [`vue/component-name-in-template-casing`](https://eslint.vuejs.org/rules/component-name-in-template-casing.html) - [`vue/no-deprecated-html-element-is`](https://eslint.vuejs.org/rules/no-deprecated-html-element-is.html) - [`vue/no-undef-components`](https://eslint.vuejs.org/rules/no-undef-components.html) - [`vue/no-unused-components`](https://eslint.vuejs.org/rules/no-unused-components.html) - [`vue/script-setup-uses-vars`](https://eslint.vuejs.org/rules/script-setup-uses-vars.html) (note that this rule is deprecated!) #### ? Bug Fixes - [#&#8203;2456](https://github.com/vuejs/eslint-plugin-vue/issues/2456) Fixed [`vue/require-default-prop` rule](https://eslint.vuejs.org/rules/require-default-prop.html) to ignore the spread and continue checking. - [#&#8203;2427](https://github.com/vuejs/eslint-plugin-vue/issues/2427) Fixed [`vue/require-typed-ref` rule](https://eslint.vuejs.org/rules/require-typed-ref.html) to ignore `<script>` blocks without `lang="ts"` in `.vue` files. **Full Changelog**: https://github.com/vuejs/eslint-plugin-vue/compare/v9.25.0...v9.26.0 ### [`v9.25.0`](https://github.com/vuejs/eslint-plugin-vue/releases/tag/v9.25.0) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v9.24.1...v9.25.0) #### ✨ Enhancements - [#&#8203;2441](https://github.com/vuejs/eslint-plugin-vue/issues/2441) Added support for Pinia methods to [`vue/no-unused-properties`](https://eslint.vuejs.org/rules/no-unused-properties.html) rule. #### ? Bug Fixes - [#&#8203;2438](https://github.com/vuejs/eslint-plugin-vue/issues/2438) Improved [`vue/no-use-computed-property-like-method`](https://eslint.vuejs.org/rules/no-use-computed-property-like-method.html) rule to understand logical expressions. - [#&#8203;2435](https://github.com/vuejs/eslint-plugin-vue/issues/2435) Fixed false negatives for props in template in [`vue/no-unused-properties`](https://eslint.vuejs.org/rules/no-unused-properties.html) rule. **Full Changelog**: https://github.com/vuejs/eslint-plugin-vue/compare/v9.24.1...v9.25.0 </details> <details> <summary>prettier/prettier (prettier)</summary> ### [`v3.3.1`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#331) [Compare Source](https://github.com/prettier/prettier/compare/3.3.0...3.3.1) [diff](https://github.com/prettier/prettier/compare/3.3.0...3.3.1) ##### Preserve empty lines in front matter ([#&#8203;16347](https://github.com/prettier/prettier/pull/16347) by [@&#8203;fisker](https://github.com/fisker)) <!-- prettier-ignore --> ```markdown <!-- Input --> --- foo: - bar1 - bar2 - bar3 --- Markdown <!-- Prettier 3.3.0 --> --- foo: - bar1 - bar2 - bar3 --- Markdown <!-- Prettier 3.3.1 --> --- foo: - bar1 - bar2 - bar3 --- Markdown ``` ##### Preserve explicit language in front matter ([#&#8203;16348](https://github.com/prettier/prettier/pull/16348) by [@&#8203;fisker](https://github.com/fisker)) <!-- prettier-ignore --> ```markdown <!-- Input --> ---yaml title: Hello slug: home --- <!-- Prettier 3.3.0 --> --- title: Hello slug: home --- <!-- Prettier 3.3.1 --> ---yaml title: Hello slug: home --- ``` ##### Avoid line breaks in import attributes ([#&#8203;16349](https://github.com/prettier/prettier/pull/16349) by [@&#8203;fisker](https://github.com/fisker)) <!-- prettier-ignore --> ```jsx // Input import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" }; // Prettier 3.3.0 import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" }; // Prettier 3.3.1 import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" }; ``` ### [`v3.3.0`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#330) [Compare Source](https://github.com/prettier/prettier/compare/3.2.5...3.3.0) [diff](https://github.com/prettier/prettier/compare/3.2.5...3.3.0) ? [Release Notes](https://prettier.io/blog/2024/06/01/3.3.0.html) </details> --- ### Configuration ? **Schedule**: Branch creation - At any time (no schedule defined), 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](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yOTIuMSIsInVwZGF0ZWRJblZlciI6IjM3LjI5Mi4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlIl19-->
renovate added 1 commit 2024-04-21 02:24:39 +02:00
chore(deps): update minor and patch version dependencies
All checks were successful
continuous-integration/drone/push Build is passing
17e9545530
renovate force-pushed renovate/master-minor-and-patch-version-dependencies from 17e9545530 to 06d1a98602 2024-05-19 15:49:56 +02:00 Compare
renovate force-pushed renovate/master-minor-and-patch-version-dependencies from 06d1a98602 to 061409e89b 2024-06-02 02:16:14 +02:00 Compare
renovate force-pushed renovate/master-minor-and-patch-version-dependencies from 061409e89b to 769404be86 2024-06-09 02:13:57 +02:00 Compare
EndMove merged commit a3bc1ffccf into master 2024-06-09 16:28:11 +02:00
EndMove deleted branch renovate/master-minor-and-patch-version-dependencies 2024-06-09 16:28:11 +02:00
Sign in to join this conversation.
No reviewers
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: IO-ProjectsOfficial/eslint-config#24
No description provided.