Skip to content

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

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

Merged
merged 1 commit into from
Dec 21, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 4, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/types (source) ^7.23.4 -> ^7.23.6 age adoption passing confidence
@types/node (source) ^20.10.0 -> ^20.10.5 age adoption passing confidence
@vitejs/plugin-vue (source) ^4.5.0 -> ^4.5.2 age adoption passing confidence
bumpp ^9.2.0 -> ^9.2.1 age adoption passing confidence
lint-staged ^15.1.0 -> ^15.2.0 age adoption passing confidence
monaco-editor-core ^0.44.0 -> ^0.45.0 age adoption passing confidence
pnpm (source) 8.11.0 -> 8.12.1 age adoption passing confidence
prettier (source) ^3.1.0 -> ^3.1.1 age adoption passing confidence
shikiji (source) ^0.9.6 -> ^0.9.10 age adoption passing confidence
shikiji-monaco (source) ^0.9.6 -> ^0.9.10 age adoption passing confidence
typescript (source) ^5.3.2 -> ^5.3.3 age adoption passing confidence
vite (source) ^5.0.2 -> ^5.0.10 age adoption passing confidence
vite-plugin-dts ^3.6.3 -> ^3.6.4 age adoption passing confidence
vue (source) ^3.3.9 -> ^3.3.13 age adoption passing confidence

Release Notes

babel/babel (@​babel/types)

v7.23.6

Compare Source

👓 Spec Compliance
  • babel-generator, babel-parser, babel-types
  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-types
🐛 Bug Fix
  • babel-generator
  • babel-helpers, babel-plugin-proposal-explicit-resource-management
  • babel-plugin-proposal-decorators, babel-plugin-transform-class-properties
    • #​16161 Ensure the [[@​@​toPrimitive]] call of a decorated class member key is invoked once (@​JLHwung)
    • #​16148 Support named evaluation for decorated anonymous class exp (@​JLHwung)
  • babel-plugin-transform-for-of, babel-preset-env
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-plugin-transform-typescript
🔬 Output optimization
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-helpers, babel-plugin-proposal-decorators

v7.23.5

Compare Source

👓 Spec Compliance
  • babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators
🐛 Bug Fix
  • babel-traverse, babel-types
  • babel-plugin-transform-classes
  • babel-generator
  • babel-helpers
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties, babel-plugin-transform-typescript
  • babel-generator, babel-plugin-transform-modules-commonjs, babel-plugin-transform-parameters, babel-plugin-transform-typescript, babel-traverse
  • babel-eslint-plugin
🔬 Output optimization
antfu/bumpp (bumpp)

v9.2.1

Compare Source

   🚀 Features
    View changes on GitHub
okonet/lint-staged (lint-staged)

v15.2.0

Compare Source

Minor Changes
  • #​1371 f3378be Thanks @​iiroj! - Using the --no-stash flag no longer discards all unstaged changes to partially staged files, which resulted in inadvertent data loss. This fix is available with a new flag --no-hide-partially-staged that is automatically enabled when --no-stash is used.
Patch Changes
pnpm/pnpm (pnpm)

v8.12.1

Compare Source

Patch Changes

  • Don't report dependencies with optional dependencies as being added on repeat install. This was a bug in reporting #​7384.
  • Fix a bug where --fix-lockfile crashes on tarballs #​7368.
  • Do not create empty patch directory.
  • Installation should not fail if an empty node_modules directory cannot be removed #​7405.

Our Gold Sponsors

Our Silver Sponsors

v8.12.0

Compare Source

Minor Changes

  • Add support for basic authorization header #​7371.

Patch Changes

  • Fix a bug where pnpm incorrectly passes a flag to a run handler as a fallback command #​7244.
  • When dedupe-direct-deps is set to true, commands of dependencies should be deduplicated #​7359.

Our Gold Sponsors

Our Silver Sponsors

prettier/prettier (prettier)

v3.1.1

Compare Source

diff

Fix config file search (#​15363 by @​fisker)

Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.

├─ .prettierrc
└─ test.js         (A directory)
  └─ .prettierrc
// Prettier 3.1.0
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/test.js/.prettierrc

// Prettier 3.1.1
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/.prettierrc
Skip explicitly passed symbolic links with --no-error-on-unmatched-pattern (#​15533 by @​sanmai-NL)

Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.

In Prettier 3.1.1, you can use --no-error-on-unmatched-pattern to simply skip symbolic links.

Consistently use tabs in ternaries when useTabs is true (#​15662 by @​auvred)
// Input
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;

// Prettier 3.1.0
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;

// Prettier 3.1.1
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
		? ddddddddddddddd
		: eeeeeeeeeeeeeee
			? fffffffffffffff
			: gggggggggggggggg;
Improve config file search (#​15663 by @​fisker)

The Prettier config file search performance has been improved by more effective cache strategy.

Fix unstable and ugly formatting for comments in destructuring patterns (#​15708 by @​sosukesuzuki)
// Input
const {
  foo,
  // bar
  // baz
}: Foo = expr;

// Prettier 3.1.0
const {
  foo1,
} // bar
// baz
: Foo = expr;

// Prettier 3.1.0 second output
const {
  foo1, // bar
} // baz
: Foo = expr;

// Prettier 3.1.1
const {
  foo1,
  // bar
  // baz
}: Foo = expr;
Support "Import Attributes" (#​15718 by @​fisker)

TypeScript 5.3 supports the latest updates to the import attributes proposal.

import something from "./something.json" with { type: "json" };
Fix false claim in docs that cursorOffset is incompatible with rangeStart/rangeEnd (#​15750 by @​ExplodingCabbage)

The cursorOffset option has in fact been compatible with rangeStart/rangeEnd for over 5 years, thanks to work by @​ds300. However, Prettier's documentation (including the CLI --help text) continued to claim otherwise, falsely. The documentation is now fixed.

Keep curly braces and from keyword in empty import statements (#​15756 by @​fisker)
// Input
import { } from 'foo';
import { /* comment */ } from 'bar';

// Prettier 3.1.0
import {} from "foo";
import /* comment */ "bar";

// Prettier 3.1.1
import {} from "foo";
import {} from /* comment */ "bar";
Keep empty import attributes and assertions (#​15757 by @​fisker)
// Input
import foo from "foo" with {};
import bar from "bar" assert {};

// Prettier 3.1.0
import foo from "foo";
import bar from "bar";

// Prettier 3.1.1
import foo from "foo" with {};
import bar from "bar" assert {};
antfu/shikiji (shikiji)

v0.9.10

Compare Source

   🚀 Features
  • Change source from shiki to tm-grammars and tm-themes  -  by @​antfu (be0c9)
   🏎 Performance
    View changes on GitHub

v0.9.9

Compare Source

   🚀 Features
    View changes on GitHub

v0.9.8

Compare Source

   🚀 Features
    View changes on GitHub

v0.9.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
Microsoft/TypeScript (typescript)

v5.3.3: TypeScript 5.3.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vitejs/vite (vite)

v5.0.10

Compare Source

v5.0.9

Compare Source

v5.0.8

Compare Source

v5.0.7

Compare Source

v5.0.6

Compare Source

v5.0.5

Compare Source

v5.0.4

Compare Source

v5.0.3

Compare Source

qmhc/vite-plugin-dts (vite-plugin-dts)

v3.6.4

Compare Source

Bug Fixes
  • should match as default export syntax (6e2d16d), closes #​285
  • using more noticeable diagnostics log (4ad9a81)
vuejs/core (vue)

v3.3.13

Compare Source

Bug Fixes

v3.3.12

Compare Source

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 has been generated by Mend Renovate. View repository job log here.

Copy link

vercel bot commented Dec 4, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
repl ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 21, 2023 2:03pm

@renovate renovate bot added the dependencies label Dec 4, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6a51055 to 6d2545a Compare December 4, 2023 10:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6d2545a to e3817a7 Compare December 4, 2023 16:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e3817a7 to 24ed50d Compare December 6, 2023 10:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 24ed50d to af56839 Compare December 6, 2023 22:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from af56839 to cf3fdbb Compare December 7, 2023 09:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cf3fdbb to a66e71b Compare December 7, 2023 13:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a66e71b to d4c45c4 Compare December 7, 2023 16:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d4c45c4 to 0567325 Compare December 8, 2023 07:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0567325 to f94b648 Compare December 8, 2023 13:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f94b648 to 8a80ae3 Compare December 9, 2023 01:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8a80ae3 to 0a25066 Compare December 9, 2023 23:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0a25066 to dcbf769 Compare December 10, 2023 09:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dcbf769 to eeee7d3 Compare December 11, 2023 14:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eeee7d3 to e6c373f Compare December 12, 2023 10:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b96e4e3 to fb82864 Compare December 21, 2023 14:02
@sxzz sxzz merged commit 97edd69 into main Dec 21, 2023
@sxzz sxzz deleted the renovate/all-minor-patch branch December 21, 2023 14:03
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