Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the patches group across 1 directory with 8 updates #35

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 18, 2024

Bumps the patches group with 8 updates in the / directory:

Package From To
vue-router 4.4.0 4.4.5
@rushstack/eslint-patch 1.10.3 1.10.4
@vitejs/plugin-vue 5.1.3 5.1.4
npm-run-all2 6.2.0 6.2.3
prettier 3.3.2 3.3.3
tailwindcss 3.4.10 3.4.12
vite 5.4.3 5.4.6
vue-tsc 2.1.4 2.1.6

Updates vue-router from 4.4.0 to 4.4.5

Release notes

Sourced from vue-router's releases.

v4.4.5

Please refer to CHANGELOG.md for details.

v4.4.4

Please refer to CHANGELOG.md for details.

v4.4.3

Please refer to CHANGELOG.md for details.

v4.4.2

Please refer to CHANGELOG.md for details.

v4.4.1

Please refer to CHANGELOG.md for details.

Commits

Updates @rushstack/eslint-patch from 1.10.3 to 1.10.4

Changelog

Sourced from @​rushstack/eslint-patch's changelog.

1.10.4

Sat, 27 Jul 2024 00:10:27 GMT

Patches

  • Include CHANGELOG.md in published releases again
Commits

Updates @vitejs/plugin-vue from 5.1.3 to 5.1.4

Release notes

Sourced from @​vitejs/plugin-vue's releases.

[email protected]

Please refer to CHANGELOG.md for details.

Changelog

Sourced from @​vitejs/plugin-vue's changelog.

5.1.4 (2024-09-16)

  • chore: format (07b29a6)
  • chore(deps): update dependency rollup to ^4.21.3 (#440) (98766c2), closes #440
  • fix: skip checking private properties of typeParameters (#443) (e4f5fff), closes #443
  • fix(plugin-vue): allow overwrite esbuild config (#444) (1344294), closes #444
Commits

Updates npm-run-all2 from 6.2.0 to 6.2.3

Release notes

Sourced from npm-run-all2's releases.

v6.2.3

Commits

  • Merge pull request #151 from bcomnes/fix-pnpm-agian c43fa2b
  • Avoid passing config fields as flags for pnpm dc2d7da

v6.2.2

Commits

  • Revert "Compatibility: npm, yarn and pnpm run scripts" fc35f0d

v6.2.1

Merged

Changelog

Sourced from npm-run-all2's changelog.

v6.2.3

Commits

  • Merge pull request #151 from bcomnes/fix-pnpm-agian c43fa2b
  • Avoid passing config fields as flags for pnpm dc2d7da

v6.2.2 - 2024-07-04

Commits

  • Revert "Compatibility: npm, yarn and pnpm run scripts" fc35f0d

v6.2.1 - 2024-07-03

Merged

Commits
  • 97d19db 6.2.3
  • c43fa2b Merge pull request #151 from bcomnes/fix-pnpm-agian
  • dc2d7da Avoid passing config fields as flags for pnpm
  • bac3905 6.2.2
  • fc35f0d Revert "Compatibility: npm, yarn and pnpm run scripts"
  • c707195 6.2.1
  • 32a4b46 Merge pull request #143 from ayu-exorcist/master
  • b8d3ded Compatibility: npm, yarn and pnpm run scripts
  • 25738ae Use neostandard + add more static code analysis (#142)
  • 6be8fff Upgrade: Bump c8 from 9.1.0 to 10.0.0 (#141)
  • Additional commits viewable in compare view

Updates prettier from 3.3.2 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// 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 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}
// Prettier 3.3.2
@​footagged template
class X {}
// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​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:

... (truncated)

Commits

Updates tailwindcss from 3.4.10 to 3.4.12

Release notes

Sourced from tailwindcss's releases.

v3.4.12

Fixed

  • Ensure using @apply with utilities that use @defaults works with rules defined in the base layer when using optimizeUniversalDefaults (#14427)

v3.4.11

Fixed

  • Allow anchor-size(…) in arbitrary values (#14393)
Changelog

Sourced from tailwindcss's changelog.

[3.4.12] - 2024-09-17

Fixed

  • Ensure using @apply with utilities that use @defaults works with rules defined in the base layer when using optimizeUniversalDefaults (#14427)

[3.4.11] - 2024-09-11

Fixed

  • Allow anchor-size(…) in arbitrary values (#14393)
Commits

Updates vite from 5.4.3 to 5.4.6

Changelog

Sourced from vite's changelog.

5.4.6 (2024-09-16)

5.4.5 (2024-09-13)

5.4.4 (2024-09-11)

Commits

Updates vue-tsc from 2.1.4 to 2.1.6

Release notes

Sourced from vue-tsc's releases.

v2.1.6

Features

  • language-plugin-pug: support initial indentation (#4774)
  • language-service: JSDoc display support when typing props on component template (#4796) - Thanks to @​joy-yu!
  • language-core: typed directives in template (#4807) - Thanks to @​KazariEX!

Bug Fixes

  • language-core: wrap template refs with unref in interpolation (#4777) - Thanks to @​KazariEX!
  • language-core: ensure to pass tsc on inline global types (#4782) - Thanks to @​KazariEX!
  • language-core: infer native template ref as build-in element interface (#4786) - Thanks to @​KazariEX!
  • language-core: generate __VLS_StyleModules after template (#4790) - Thanks to @​KazariEX!
  • language-core: make expose of non-generic template ref required (#4795) - Thanks to @​zhiyuanzmj!
  • language-core: avoid using __typeProps with runtime props (#4800) - Thanks to @​KazariEX!
  • language-core: ignore unknown attrs error when strictTemplates is not enabled (#4785)
  • language-core: prevent append globalTypes to virtual file (#4806) - Thanks to @​zhiyuanzmj!
  • language-core: prevent type error when use defineSlots and non-template (#4809) - Thanks to @​zhiyuanzmj!
  • typescript-plugin: disconnect socket on error (#4672)

Performance

  • language-core: don't emit event lnlayhint when content is none (#4776) - Thanks to @​Gehbt!

Other Changes

  • language-core: split __VLS_templateResult (#4781) - Thanks to @​KazariEX!
  • language-core: wrap template virtual code into a function (#4784)
  • language-core: move templateRef into composibles (#4791) - Thanks to @​KazariEX!
  • language-core: generate global types for the first parsed Vue component if cannot write global types file

Tests

  • language-server: add renaming case for template ref() (#4794) - Thanks to @​KazariEX!
  • tsc: update to Vue 3.5 (#4725)
  • tsc: unknown props on non-strict generic component (#4792)

Please refer to CHANGELOG.md for details.

Sponsors

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

2.1.6 official, 2.1.7 insiders (2024-09-05)

Features

  • language-plugin-pug: support initial indentation (#4774)
  • language-service: JSDoc display support when typing props on component template (#4796) - Thanks to @​joy-yu!
  • language-core: typed directives in template (#4807) - Thanks to @​KazariEX!

Bug Fixes

  • language-core: wrap template refs with unref in interpolation (#4777) - Thanks to @​KazariEX!
  • language-core: ensure to pass tsc on inline global types (#4782) - Thanks to @​KazariEX!
  • language-core: infer native template ref as build-in element interface (#4786) - Thanks to @​KazariEX!
  • language-core: generate __VLS_StyleModules after template (#4790) - Thanks to @​KazariEX!
  • language-core: make expose of non-generic template ref required (#4795) - Thanks to @​zhiyuanzmj!
  • language-core: avoid using __typeProps with runtime props (#4800) - Thanks to @​KazariEX!
  • language-core: ignore unknown attrs error when strictTemplates is not enabled (#4785)
  • language-core: prevent append globalTypes to virtual file (#4806) - Thanks to @​zhiyuanzmj!
  • language-core: prevent type error when use defineSlots and non-template (#4809) - Thanks to @​zhiyuanzmj!
  • typescript-plugin: disconnect socket on error (#4672)

Performance

  • language-core: don't emit event lnlayhint when content is none (#4776) - Thanks to @​Gehbt!

Other Changes

  • language-core: split __VLS_templateResult (#4781) - Thanks to @​KazariEX!
  • language-core: wrap template virtual code into a function (#4784)
  • language-core: move templateRef into composibles (#4791) - Thanks to @​KazariEX!
  • language-core: generate global types for the first parsed Vue component if cannot write global types file

Tests

  • language-server: add renaming case for template ref() (#4794) - Thanks to @​KazariEX!
  • tsc: update to Vue 3.5 (#4725)
  • tsc: unknown props on non-strict generic component (#4792)
Commits
  • a8038a6 v2.1.6 (#4808)
  • b14b8a9 refactor(language-core): generate global types for the first parsed Vue compo...
  • e3f8b91 fix(language-core): prevent append globalTypes to virtual file (#4806)
  • cd7c2fd test: always run TS-next test for test:update script
  • 4c89e20 test(tsc): update to Vue 3.5 (#4725)
  • ece125b refactor(language-core): wrap template virtual code into a function (#4784)
  • 2bb3cc1 refactor(language-core): split __VLS_templateResult (#4781)
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the patches group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [vue-router](https://github.com/vuejs/router) | `4.4.0` | `4.4.5` |
| [@rushstack/eslint-patch](https://github.com/microsoft/rushstack/tree/HEAD/eslint/eslint-patch) | `1.10.3` | `1.10.4` |
| [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `5.1.3` | `5.1.4` |
| [npm-run-all2](https://github.com/bcomnes/npm-run-all2) | `6.2.0` | `6.2.3` |
| [prettier](https://github.com/prettier/prettier) | `3.3.2` | `3.3.3` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.10` | `3.4.12` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.3` | `5.4.6` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `2.1.4` | `2.1.6` |



Updates `vue-router` from 4.4.0 to 4.4.5
- [Release notes](https://github.com/vuejs/router/releases)
- [Commits](vuejs/router@v4.4.0...v4.4.5)

Updates `@rushstack/eslint-patch` from 1.10.3 to 1.10.4
- [Changelog](https://github.com/microsoft/rushstack/blob/main/eslint/eslint-patch/CHANGELOG.md)
- [Commits](https://github.com/microsoft/rushstack/commits/@rushstack/eslint-patch_v1.10.4/eslint/eslint-patch)

Updates `@vitejs/plugin-vue` from 5.1.3 to 5.1.4
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/[email protected]/packages/plugin-vue)

Updates `npm-run-all2` from 6.2.0 to 6.2.3
- [Release notes](https://github.com/bcomnes/npm-run-all2/releases)
- [Changelog](https://github.com/bcomnes/npm-run-all2/blob/master/CHANGELOG.md)
- [Commits](bcomnes/npm-run-all2@v6.2.0...v6.2.3)

Updates `prettier` from 3.3.2 to 3.3.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.2...3.3.3)

Updates `tailwindcss` from 3.4.10 to 3.4.12
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.12/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.10...v3.4.12)

Updates `vite` from 5.4.3 to 5.4.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.6/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.6/packages/vite)

Updates `vue-tsc` from 2.1.4 to 2.1.6
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v2.1.6/packages/tsc)

---
updated-dependencies:
- dependency-name: vue-router
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: "@rushstack/eslint-patch"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: "@vitejs/plugin-vue"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: npm-run-all2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: vue-tsc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patches
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants