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

chore(deps): update all non-major dependencies #123

Merged
merged 1 commit into from
Nov 30, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cyco130/eslint-config ^5.0.0 -> ^5.0.1 age adoption passing confidence
@fastify/static ^8.0.2 -> ^8.0.3 age adoption passing confidence
@nestjs/common (source) ^10.4.6 -> ^10.4.12 age adoption passing confidence
@nestjs/core (source) ^10.4.6 -> ^10.4.12 age adoption passing confidence
@nestjs/platform-express (source) ^10.4.6 -> ^10.4.12 age adoption passing confidence
@swc/core (source) ^1.7.42 -> ^1.9.3 age adoption passing confidence
@types/node (source) ^18.19.63 -> ^18.19.67 age adoption passing confidence
@vitejs/plugin-react (source) ^4.3.3 -> ^4.3.4 age adoption passing confidence
@vitejs/plugin-vue (source) ^5.1.4 -> ^5.2.1 age adoption passing confidence
eslint (source) ^9.14.0 -> ^9.16.0 age adoption passing confidence
husky ^9.1.6 -> ^9.1.7 age adoption passing confidence
prettier (source) ^3.3.3 -> ^3.4.1 age adoption passing confidence
puppeteer (source) ^23.6.1 -> ^23.9.0 age adoption passing confidence
typescript (source) ^5.6.3 -> ^5.7.2 age adoption passing confidence
vike ^0.4.199 -> ^0.4.205 age adoption passing confidence
vite (source) ^5.4.10 -> ^5.4.11 age adoption passing confidence
vite-tsconfig-paths ^5.0.1 -> ^5.1.3 age adoption passing confidence
vitest (source) ^2.1.4 -> ^2.1.6 age adoption passing confidence
vue (source) ^3.5.12 -> ^3.5.13 age adoption passing confidence

Release Notes

cyco130/eslint-config (@​cyco130/eslint-config)

v5.0.1

Compare Source

fastify/fastify-static (@​fastify/static)

v8.0.3

Compare Source

What's Changed
New Contributors

Full Changelog: fastify/fastify-static@v8.0.2...v8.0.3

nestjs/nest (@​nestjs/common)

v10.4.12

Compare Source

v10.4.11

Compare Source

v10.4.10

Compare Source

v10.4.9

Compare Source

v10.4.8

Compare Source

v10.4.8 (2024-11-15)
Bug fixes
Enhancements
Committers: 3

v10.4.7

Compare Source

nestjs/nest (@​nestjs/core)

v10.4.12

Compare Source

v10.4.11

Compare Source

v10.4.10

Compare Source

v10.4.9

Compare Source

v10.4.8

Compare Source

v10.4.8 (2024-11-15)
Bug fixes
Enhancements
Committers: 3

v10.4.7

Compare Source

nestjs/nest (@​nestjs/platform-express)

v10.4.12

Compare Source

v10.4.11

Compare Source

v10.4.10

Compare Source

v10.4.9

Compare Source

v10.4.8

Compare Source

v10.4.8 (2024-11-15)

Bug fixes
Enhancements
Committers: 3

v10.4.7

Compare Source

swc-project/swc (@​swc/core)

v1.9.3

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
Performance
Refactor

v1.9.2

Compare Source

Bug Fixes
Features

v1.9.1

Compare Source

Bug Fixes

v1.9.0

Compare Source

Bug Fixes
Features
Miscellaneous Tasks

v1.8.0

Compare Source

Bug Fixes
  • (es/typescript) Handle multiline type parameters in async arrow functions (#​9704) (c5ed19c)

  • (es/typescript) Handle ASI hazards in fast type strip (#​9707) (c135f71)

Features
Performance
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.4

Compare Source

Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

Force Babel to output spec compliant import attributes #​386

The default was an old spec (with type: "json"). We now enforce spec compliant (with { type: "json" })

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.2.1

v5.2.0

  • feat: add a feature option to support custom component id generator (#​461) (7a1fc4c), closes #​461

v5.1.5

eslint/eslint (eslint)

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

v9.15.0

Compare Source

typicode/husky (husky)

v9.1.7

Compare Source

prettier/prettier (prettier)

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

puppeteer/puppeteer (puppeteer)

v23.9.0: puppeteer: v23.9.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.8.0 to 23.9.0

v23.8.0: puppeteer: v23.8.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.7.1 to 23.8.0

v23.7.1: puppeteer: v23.7.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.7.0 to 23.7.1

v23.7.0: puppeteer: v23.7.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
microsoft/TypeScript (typescript)

v5.7.2

Compare Source

vikejs/vike (vike)

v0.4.205

Compare Source

Bug Fixes
Features

v0.4.204

Compare Source

Bug Fixes
  • fix export assertion (fix #​1964) (162a660)
  • fix resolving of relative URL with hash (9f54397)
  • improve client-side init execution order (fix #​1962) (#​1965) (1b14559)
  • improve detection of hash navigation link (953f625)
  • improve type of hashOriginal and searchOriginal (6c69cb5)
  • minor hash scrolling fix (b4c0f11)
  • workaround Firefox bug upon clicking hash link that doesn't change URL (fix #​1962) (cb7f3ff)

v0.4.203

Compare Source

Bug Fixes

v0.4.202

Compare Source

Bug Fixes
  • ignore + files in ejected/ (1a64227)
  • polish error message (2ce82b8)
  • remove outdated extension name assertion (efe809b)
  • skip convention for ejected Vike extension (5584b7d)

v0.4.201

Compare Source

Bug Fixes

v0.4.200

Compare Source

Bug Fixes
Features
vitejs/vite (vite)

v5.4.11

Compare Source

Please refer to CHANGELOG.md for details.

aleclarson/vite-tsconfig-paths (vite-tsconfig-paths)

v5.1.3

Compare Source

  • fix: Once an importer is matched, end directory traversal (b0d8ecb)
  • feat: Add vite-tsconfig-paths:resolve debug logs (7160d6e)
  • chore: Ensure debug logs can be enabled in vitest (0dc9a8b)

v5.1.2

Compare Source

  • fix Windows regression introduced in v5.1.1 (#​162)

v5.1.1

Compare Source

  • support ${configDir} syntax in include/exclude (#​156)

v5.1.0

Compare Source

  • Add skip option for adding additional directories to be skipped when searching for tsconfig.json files (#​146)
  • Fix path resolution on Windows when other Vite plugins neglect to normalize the importer path before calling this.resolve in their resolveId hooks (#​157)
  • Allow both tsconfig.json and jsconfig.json in the same directory (4124b09)
vitest-dev/vitest (vitest)

v2.1.6

Compare Source

🚀 Features

  • Support VIte 6
    View changes on GitHub

v2.1.5

Compare Source

   🚀 Features
   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 783b3a2 to 75959eb Compare September 30, 2024 00:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from daf0172 to 60cb6c7 Compare October 9, 2024 00:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from abdae9c to 201ca5b Compare October 16, 2024 16:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 3380664 to 42ed283 Compare November 17, 2024 20:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 6f4d7be to 01f16eb Compare November 23, 2024 06:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 82c7942 to 3afce27 Compare November 29, 2024 22:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3afce27 to 11add09 Compare November 30, 2024 13:32
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Nov 30, 2024
@cyco130 cyco130 merged commit 87fab5b into main Nov 30, 2024
6 checks passed
@cyco130 cyco130 deleted the renovate/all-minor-patch branch November 30, 2024 17:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant