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

build: bump the development-dependencies group across 1 directory with 14 updates #154

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 30, 2024

Bumps the development-dependencies group with 14 updates in the / directory:

Package From To
prettier 3.2.5 3.3.3
nodemon 3.1.0 3.1.4
tslib 2.6.2 2.7.0
typescript 5.4.5 5.5.4
@iconify-json/bi 1.1.23 1.1.24
@rushstack/eslint-patch 1.10.2 1.10.4
@types/swagger-ui-dist 3.30.4 3.30.5
@vue/compiler-sfc 3.4.26 3.4.38
eslint-plugin-vue 9.25.0 9.27.0
license-downloader 1.0.9 1.1.0
sass 1.76.0 1.77.8
unplugin-icons 0.19.0 0.19.2
unplugin-vue-components 0.27.2 0.27.4
vite-plugin-pwa 0.20.0 0.20.2

Updates prettier from 3.2.5 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

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 nodemon from 3.1.0 to 3.1.4

Release notes

Sourced from nodemon's releases.

v3.1.4

3.1.4 (2024-06-20)

Bug Fixes

v3.1.3

3.1.3 (2024-06-03)

Bug Fixes

  • cast the nodemon function as Nodemon type (eaa1d54), closes #2206

v3.1.2

3.1.2 (2024-05-29)

Bug Fixes

v3.1.1

3.1.1 (2024-05-25)

Bug Fixes

  • add types to help with required nodemon usage (#2204) (cd27c0b)
Commits

Updates tslib from 2.6.2 to 2.7.0

Release notes

Sourced from tslib's releases.

v2.7.0

What's Changed

Full Changelog: microsoft/tslib@v2.6.3...v2.7.0

v2.6.3

What's Changed

Full Changelog: microsoft/tslib@v2.6.2...v2.6.3

Commits

Updates typescript from 5.4.5 to 5.5.4

Release notes

Sourced from typescript's releases.

TypeScript 5.5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) into release-5.5 (#...
  • Additional commits viewable in compare view

Updates @iconify-json/bi from 1.1.23 to 1.1.24

Commits

Updates @rushstack/eslint-patch from 1.10.2 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

1.10.3

Fri, 17 May 2024 00:10:40 GMT

Patches

  • [eslint-patch] Allow use of ESLint v9
Commits

Updates @types/swagger-ui-dist from 3.30.4 to 3.30.5

Commits

Updates @vue/compiler-sfc from 3.4.26 to 3.4.38

Release notes

Sourced from @​vue/compiler-sfc's releases.

v3.4.38

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.37

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.36

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.35

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.34

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.33

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.32

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.31

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.30

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.29

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.28

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.27

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from @​vue/compiler-sfc's changelog.

3.4.38 (2024-08-15)

Bug Fixes

  • build: revert entities to 4.5 to avoid runtime resolution errors (f349af7), closes #11603
  • compiler-core: use ast-based check for function expressions when possible (236cac3), closes #11615
  • compiler-sfc: handle keyof operator with index object (#11581) (74d26db)
  • types: add fallback stub for DOM types when DOM lib is absent (#11598) (4db0085)

3.4.37 (2024-08-08)

Bug Fixes

  • compiler-core: use isProp.arg.loc instead of isProp.loc (#11547) (236fb7a)
  • custom-element: fix custom-element double render on immediate prop change (978ff3c), closes #9885 #11335
  • defineModel: detect changes respect custom getter and setter (#11543) (e042888), closes #11541 #11526 #11527
  • keep-alive: avoid cache suspense comment root (#11479) (a917c05)
  • keep-alive: fix render error in cached is undefined (#11496) (81351dc), closes #11427 #11431
  • Revert "fix(types/ref): allow getter and setter types to be unrelated (#11442)" (b1abac0)
  • Revert "fix(types/ref): correct type inference for nested refs (#11536)" (3a56315)
  • runtime-core: fix warning for missing event handler (#11489) (e359ff0), closes #4803 #8268
  • runtime-core: prioritize using the provides from currentApp in nested createApp (#11502) (7e75de0), closes #11488
    • Note: this change will break inject calls inside Pinia stores that expects to be able to inject provided values from the component using the store. This is expected because the usage is relying on previously incorrect behavior.
  • runtime-dom: apply css vars before mount (#11538) (fdc2a31), closes #11533
  • ssr: ensure content is valid when rendering normal slot (#11491) (6c90324), closes #11326
  • types/ref: correct type inference for nested refs (#11536) (536f623), closes #11532 #11537
  • types: allow DirectiveArguments third parameter to accept undefined (#11540) (1058ce8)

3.4.36 (2024-08-06)

Bug Fixes

  • compiler-core: fix expression transform for try...catch block params (077a1ae), closes #11465 #11467
  • compiler-core: properly handle for loop variable declarations in expression transforms (67bb820), ref #11467
  • compiler-ssr: don't render v-if comments in TransitionGroup + static tag (#11515) (275354c), closes #11514
  • hydration: force hydrate custom element dynamic props (7d473b7), closes #7203 #8038
  • ssr: respect textContent/innerHTML from getSSRProps in optimized SSR output (79602f9), closes #8112
  • types/withDefaults: ensure default values of type any do not include undefined (#11490) (4592b63)

3.4.35 (2024-07-31)

... (truncated)

Commits

Updates eslint-plugin-vue from 9.25.0 to 9.27.0

Release notes

Sourced from eslint-plugin-vue's releases.

v9.27.0

✨ Enhancements

🐛 Bug Fixes

⚙️ Updates

Full Changelog: vuejs/eslint-plugin-vue@v9.26.0...v9.27.0

v9.26.0

✨ Enhancements

🐛 Bug Fixes

Full Changelog: vuejs/eslint-plugin-vue@v9.25.0...v9.26.0

Commits

Updates license-downloader from 1.0.9 to 1.1.0

Changelog

Sourced from license-downloader's changelog.

1.1.0 (2024-06-30)

Features

  • add --help flag for cli to show short documentation (cb02040)

Bug Fixes

  • fix handling of authorization
  • fix handling of packages with long package path or not ending with '.git'

1.0.12 (2024-06-22)

1.0.11 (2024-06-22)

1.0.10 (2024-06-05)

Commits
  • 39d303e chore(release): 1.1.0
  • cb02040 feat: add --help flag for cli to show short documentation
  • 02460d1 docs: mention fine-grained access tokens in the README ("authorization")
  • 6f07af2 Merge pull request #60 from orgads/rate-limit-warning
  • b6925ac Merge pull request #61 from orgads/long-urls
  • ccf8a6f Fix package name resolving for longer URLs
  • 76da1a5 Merge pull request #58 from orgads/fix-token
  • ab952db Merge pull request #59 from orgads/no-pwa
  • a9a6855 WebService: Show a proper warning on rate limit exceeded
  • e6b5d5d VSCode: Replace obsolete pwa-node with node
  • Additional commits viewable in compare view

Updates sass from 1.76.0 to 1.77.8

Release notes

Sourced from sass's releases.

Dart Sass 1.77.8

To install Sass 1.77.8, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.5

To install Sass 1.77.5, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fully trim redundant selectors generated by @extend.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.4

To install Sass 1.77.4, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

Embedded Sass

  • Support passing Version input for fatalDeprecations as string over embedded protocol.

  • Fix a bug in the JS Embedded Host where Version could be incorrectly accepted as input for silenceDeprecations and futureDeprecations in pure JS.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.3

To install Sass 1.77.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

Dart API

... (truncated)

Changelog

Sourced from sass's changelog.

1.77.8

  • No user-visible changes.

1.77.7

  • Declarations that appear after nested rules are deprecated, because the semantics Sass has historically used are different from the semantics specified by CSS. In the future, Sass will adopt the standard CSS semantics.

    See the Sass website for details.

  • Potentially breaking bug fix: // in certain places such as unknown at-rule values was being preserved in the CSS output, leading to potentially invalid CSS. It's now properly parsed as a silent comment and omitted from the CSS output.

1.77.6

  • Fix a few cases where comments and occasionally even whitespace wasn't allowed between the end of Sass statements and the following semicolon.

1.77.5

  • Fully trim redundant selectors generated by @extend.

1.77.4

Embedded Sass

  • Support passing Version input for fatalDeprecations as string over embedded protocol.

  • Fix a bug in the JS Embedded Host where Version could be incorrectly accepted as input for silenceDeprecations and futureDeprecations in pure JS.

1.77.3

Dart API

  • Deprecation.duplicateVariableFlags has been deprecated and replaced with Deprecation.duplicateVarFlags to make it consistent with the duplicate-var-flags name used on the command line and in the JS API.

1.77.2

  • Don't emit deprecation warnings for functions and mixins beginning with __.

  • Allow user-defined functions whose names begin with _ and otherwise look like vendor-prefixed functions with special CSS syntax.

... (truncated)

Commits
  • be9c3ac Run Windows ARM64 releases on windows-latest instead (#2275)
  • d4b1939 Run pub in verbose mode on windows-arm64
  • c96b5e2 Fix windows-arm64 release (#2274)
  • 7203d65 Deprecated mixed declarations (#2267)
  • 1edc247 Avoid [this] in Dartdoc comments (#2273)
  • a164889 Enable AOT build for windows-arm64 (#2270)
  • 04b6251 Parse silent comments in _interpolatedDeclarationValue() (#2266)
  • 860eb5a Fix linux-ia32, linux-arm-musl, and windows-arm64 releases (#2265)
  • 7aae1e6 Fix a bug where comments were incorrectly forbidden in some cases (#2264)
  • cf6f9d0 Build AOT releases with native arm64 runners (#2262)
  • Additional commits viewable in compare view

Updates unplugin-icons from 0.19.0 to 0.19.2

Release notes

Sourced from unplugin-icons's releases.

v0.19.2

   🚀 Features

    View changes on GitHub

v0.19.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates unplugin-vue-components from 0.27.2 to 0.27.4

Release notes

Sourced from unplugin-vue-components's releases.

v0.27.4

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.27.3

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates vite-plugin-pwa from 0.20.0 to 0.20.2

Release notes

Sourced from vite-plugin-pwa's releases.

v0.20.2

   🚀 Features

    View changes on GitHub

v0.20.1

No significant changes

    View changes on GitHub
Commits

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 30, 2024
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/development-dependencies-7105cc0879 branch from cb395ce to 7e170a9 Compare August 30, 2024 12:04
…h 14 updates

Bumps the development-dependencies group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.3` |
| [nodemon](https://github.com/remy/nodemon) | `3.1.0` | `3.1.4` |
| [tslib](https://github.com/Microsoft/tslib) | `2.6.2` | `2.7.0` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.5` | `5.5.4` |
| [@iconify-json/bi](https://github.com/iconify/icon-sets) | `1.1.23` | `1.1.24` |
| [@rushstack/eslint-patch](https://github.com/microsoft/rushstack/tree/HEAD/eslint/eslint-patch) | `1.10.2` | `1.10.4` |
| [@types/swagger-ui-dist](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/swagger-ui-dist) | `3.30.4` | `3.30.5` |
| [@vue/compiler-sfc](https://github.com/vuejs/core/tree/HEAD/packages/compiler-sfc) | `3.4.26` | `3.4.38` |
| [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) | `9.25.0` | `9.27.0` |
| [license-downloader](https://github.com/BePo65/license-downloader) | `1.0.9` | `1.1.0` |
| [sass](https://github.com/sass/dart-sass) | `1.76.0` | `1.77.8` |
| [unplugin-icons](https://github.com/unplugin/unplugin-icons) | `0.19.0` | `0.19.2` |
| [unplugin-vue-components](https://github.com/unplugin/unplugin-vue-components) | `0.27.2` | `0.27.4` |
| [vite-plugin-pwa](https://github.com/vite-pwa/vite-plugin-pwa) | `0.20.0` | `0.20.2` |



Updates `prettier` from 3.2.5 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.2.5...3.3.3)

Updates `nodemon` from 3.1.0 to 3.1.4
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v3.1.0...v3.1.4)

Updates `tslib` from 2.6.2 to 2.7.0
- [Release notes](https://github.com/Microsoft/tslib/releases)
- [Commits](microsoft/tslib@v2.6.2...v2.7.0)

Updates `typescript` from 5.4.5 to 5.5.4
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.5...v5.5.4)

Updates `@iconify-json/bi` from 1.1.23 to 1.1.24
- [Commits](iconify/icon-sets@1.1.23...1.1.24)

Updates `@rushstack/eslint-patch` from 1.10.2 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 `@types/swagger-ui-dist` from 3.30.4 to 3.30.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/swagger-ui-dist)

Updates `@vue/compiler-sfc` from 3.4.26 to 3.4.38
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/v3.4.38/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/commits/v3.4.38/packages/compiler-sfc)

Updates `eslint-plugin-vue` from 9.25.0 to 9.27.0
- [Release notes](https://github.com/vuejs/eslint-plugin-vue/releases)
- [Commits](vuejs/eslint-plugin-vue@v9.25.0...v9.27.0)

Updates `license-downloader` from 1.0.9 to 1.1.0
- [Changelog](https://github.com/BePo65/license-downloader/blob/main/CHANGELOG.md)
- [Commits](BePo65/license-downloader@v1.0.9...v1.1.0)

Updates `sass` from 1.76.0 to 1.77.8
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.76.0...1.77.8)

Updates `unplugin-icons` from 0.19.0 to 0.19.2
- [Release notes](https://github.com/unplugin/unplugin-icons/releases)
- [Commits](unplugin/unplugin-icons@v0.19.0...v0.19.2)

Updates `unplugin-vue-components` from 0.27.2 to 0.27.4
- [Release notes](https://github.com/unplugin/unplugin-vue-components/releases)
- [Commits](unplugin/unplugin-vue-components@v0.27.2...v0.27.4)

Updates `vite-plugin-pwa` from 0.20.0 to 0.20.2
- [Release notes](https://github.com/vite-pwa/vite-plugin-pwa/releases)
- [Commits](vite-pwa/vite-plugin-pwa@v0.20.0...v0.20.2)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: nodemon
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: tslib
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@iconify-json/bi"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@rushstack/eslint-patch"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/swagger-ui-dist"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@vue/compiler-sfc"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-vue
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: license-downloader
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: unplugin-icons
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: unplugin-vue-components
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: vite-plugin-pwa
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/development-dependencies-7105cc0879 branch from 7e170a9 to d47d594 Compare August 30, 2024 12:10
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 30, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Aug 30, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-dependencies-7105cc0879 branch August 30, 2024 12:24
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant