Skip to content

chore(deps): update dependencies (non-major)#44

Merged
ocavue merged 1 commit intomasterfrom
renovate/dependencies-non-major
Sep 10, 2025
Merged

chore(deps): update dependencies (non-major)#44
ocavue merged 1 commit intomasterfrom
renovate/dependencies-non-major

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Sep 1, 2024

This PR contains the following updates:

Package Change Age Confidence
@antfu/ni ^0.22.0 -> ^0.23.2 age confidence
eslint (source) ^8.57.0 -> ^8.57.1 age confidence
prettier (source) ^3.3.3 -> ^3.6.2 age confidence
prosemirror-example-setup ^1.2.2 -> ^1.2.3 age confidence
prosemirror-menu ^1.2.4 -> ^1.2.5 age confidence
prosemirror-model ^1.22.2 -> ^1.25.3 age confidence
prosemirror-schema-basic ^1.2.3 -> ^1.2.4 age confidence
prosemirror-schema-list ^1.4.1 -> ^1.5.1 age confidence
prosemirror-view ^1.33.9 -> ^1.41.0 age confidence
typescript (source) ^5.5.4 -> ^5.9.2 age confidence
vite (source) ^5.3.5 -> ^5.4.20 age confidence
vitest (source) ^1.6.0 -> ^1.6.1 age confidence

Release Notes

antfu-collective/ni (@​antfu/ni)

v0.23.2

Compare Source

No significant changes

    View changes on GitHub

v0.23.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.23.0

Compare Source

   🚨 Breaking Changes
    View changes on GitHub

v0.22.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.22.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.22.2

Compare Source

No significant changes

    View changes on GitHub

v0.22.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v8.57.1

Compare Source

Bug Fixes
  • a19072f fix: add logic to handle fixTypes in the lintText() method (#​18900) (Francesco Trotta)
  • 04c7188 fix: Don't lint same file multiple times (#​18899) (Francesco Trotta)
  • 87ec3c4 fix: do not throw when defining a global named __defineSetter__ (#​18898) (Francesco Trotta)
  • 60a1267 fix: Provide helpful error message for nullish configs (#​18889) (Milos Djermanovic)
  • a0dea8e fix: allow name in global ignores, fix --no-ignore for non-global (#​18875) (Milos Djermanovic)
  • 3836bb4 fix: do not crash on error in fs.walk filter (#​18886) (Milos Djermanovic)
  • 2dec349 fix: skip processor code blocks that match only universal patterns (#​18880) (Milos Djermanovic)
Documentation
Build Related
  • 35d366a build: Support updates to previous major versions (#​18870) (Milos Djermanovic)
Chores
prettier/prettier (prettier)

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

v3.5.3

Compare Source

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

v3.5.0

Compare Source

diff

🔗 Release Notes

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

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

prosemirror/prosemirror-example-setup (prosemirror-example-setup)

v1.2.3

Compare Source

Bug fixes

Make the type of the fullMenu option MenuElement[][] instead of MenuItem[][].

prosemirror/prosemirror-menu (prosemirror-menu)

v1.2.5

Compare Source

Bug fixes

Make sure the menu is re-rendered when the editor's root changes, so that it doesn't reference icons whose SVG lives in another root.

prosemirror/prosemirror-model (prosemirror-model)

v1.25.3

Compare Source

Bug fixes

Fix a bug in Slice that made it possible for invalid ReplaceAroundSteps to be applied in some situations.

v1.25.2

Compare Source

Bug fixes

Suppress lint warnings about dereferencing methods by making Schema.nodeFromJSON and markFromJSON properties instead of methods.

Avoid using setAttribute("style", ...) to stay clear of content security policies.

v1.25.1

Compare Source

Bug fixes

Make the DOM parser not discard nodes whose document representation cannot be placed inside the represenation of some parent DOM node.

v1.25.0

Compare Source

New features

Mark specs can now be marked with a code property.

v1.24.1

Compare Source

Bug fixes

The parser now automatically preserves whitespace inside <pre> or white-space: pre elements.

v1.24.0

Compare Source

New features

Fragment.content and Node.children now expose a node's set of children as an array.

v1.23.0

Compare Source

New features

The new NodeType.isInGroup method can be used to query group membership.

v1.22.3

Compare Source

Bug fixes

Fix some corner cases in the way the DOM parser tracks active marks.

prosemirror/prosemirror-schema-basic (prosemirror-schema-basic)

v1.2.4

Compare Source

Bug fixes

Add a code flag to the code mark.

prosemirror/prosemirror-schema-list (prosemirror-schema-list)

v1.5.1

Compare Source

Bug fixes

Fix an issue where liftListItem would, in some circumstances, join lists of different types when they ended up on the same level.

v1.5.0

Compare Source

New features

The new wrapRangeInList function provides the implementation of the wrapInList command as a more flexible function.

prosemirror/prosemirror-view (prosemirror-view)

v1.41.0

Compare Source

Bug fixes

Make sure transformPasted is properly called when pasting into a code block.

Fix an issue where the editor didn't properly set the DOM selection in a shadow DOM on Safari in some situations.

Work around a Safari issue that broke composition right after changing the set of active marks.

New features

Pass an argument to transformPasted that tells the handler whether the paste is plain text. Call transformPasted when pasting into a code block

v1.40.1

Compare Source

Bug fixes

Fix an issue where, for some Android virtual keyboards, joining textblocks that contain an image with Backspace would run the handler for Enter instead.

Fix an issue causing posAtCoords to get confused by table cells sticking out of their parent row elements.

v1.40.0

Compare Source

Bug fixes

Suppress lint warnings about dereferencing methods by making EditorView.dispatch a property instead of a method.

New features

The "handleTextInput" prop now takes an additional argument that can be used to generate the default transaction for that text change.

Widget decorations now support a relaxedSide option which can be used to allow the DOM cursor to appear at either side.

v1.39.3

Compare Source

Bug fixes

Fix an issue where clicks using different mouse buttons could be grouped into a single double- or triple-click.

Only delete the selection when starting a composition when it crosses block boundaries.

v1.39.2

Compare Source

Bug fixes

Default to using trustedTypes.defaultPolicy for clipboard input, when available.

Fix an issue where pasting multiple lines from the virtual keyboard on Android would have only the effect of an enter press.

v1.39.1

Compare Source

v1.39.0

Compare Source

Bug fixes

Fix an issue where, with some types of schemas, pressing Enter on Android with a Chinese keyboard wouldn't properly detect the Enter press.

New features

The new dragCopies prop can be used to configure whether a drag event inside the editor copies or moves content.

v1.38.1

Compare Source

Bug fixes

Fix a regression in 1.38.0 that breaks scrolling back to the selection after Chrome tries to reset it on focus.

Remove some internally used types from the public type declaration files. Include file extension in web test local imports

Fix an issue where scrolling the cursor into view could inappropriately scroll parent nodes of absolutely positioned elements.

v1.38.0

Compare Source

New features

The clipboard serialization logic is now available as a serializeToClipboard method on the view object.

v1.37.2

Compare Source

Bug fixes

Fix a bug that caused EditorView.nodeDOM to sometimes not return a DOM node when querying a node next to a widget.

Fix an issue where an editor would, when scrolling the selection into view, try to do so even if the selection wasn't in that editor.

v1.37.1

Compare Source

Bug fixes

Fix an issue where display: content elements could break posAtCoords.

Work around an issue with Chrome reporting the selection incorrectly during composition.

v1.37.0

Compare Source

Bug fixes

Fix an issue on Safari where the (incorrect) top-level selection was used, instead of the workaround that also works inside shadow roots.

New features

Mark views can now provide an ignoreMutation method. Add ViewMutationRecord to doc template

v1.36.0

Compare Source

Bug fixes

Don't recreated TrustedTypePolicy objects for every paste.

New features

Add support for a destroy method on custom mark views. Add MarkView to the doc template

v1.35.0

Compare Source

New features

The new NodeView.multiType flag is now required to opt into handling different node types in a single node view. It used to be the default, but this tripped too many people up.

v1.34.3

Compare Source

Bug fixes

Fix an issue that would, during some types of document updates, leave the document DOM in an improper form.

Handle the case where drag-selecting in Firefox creates a selection with multiple distinct ranges.

v1.34.2

Compare Source

Bug fixes

Fix pasting in Chrome with the require-trusted-types-for CSP enabled.

Fix an issue where, for some kinds of IME on Windows, pressing Enter while in a composition would execute the resulting command on the wrong selection, erasing some typed content.

v1.34.1

Compare Source

Bug fixes

Fix null dereferences caused by the behavior of Chrome's newly supported caretPositionFromPoint method.

Fix an issue where on Android, with GBoard, enter presses in code blocks while a spell correction was selected didn't insert a new line.

v1.34.0

Compare Source

New features

The DecorationGroup interface now has a forEachSet method to iterate though the contained decoration sets.

v1.33.11

Compare Source

Bug fixes

Delete the selection on composition start when on a mark boundary to force Chrome to apply the correct style to the composition.

When the browser starts a composition and the selection spans across blocks, start by clearing it to make sure the composed text node lands in a valid position.

v1.33.10

Compare Source

Bug fixes

Prevent triple clicks and clicks on atom nodes from dispatching a selection update when the new selection is equal to the current selection.

Don't crash when window.getSelection() returns null.

Create a cursor wrapper when starting a composition with a selection that spans mark boundaries, to avoid odd DOM forms created by Chrome in such a situation.

microsoft/TypeScript (typescript)

v5.9.2

Compare Source

v5.8.3

Compare Source

v5.8.2

Compare Source

v5.7.3: TypeScript 5.7.3

Compare Source

For release notes, check out the release announcement.

Downloads are available on npm

v5.7.2: TypeScript 5.7

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

v5.6.3: TypeScript 5.6.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:

v5.6.2: TypeScript 5.6

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.4.20

Compare Source

v5.4.19

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.18

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.17

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.16

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.15

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.14

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.13

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.12

Compare Source

This version contains a breaking change due to security fixes. See GHSA-vg6x-rcgg-rjx6 for more details.

Please refer to CHANGELOG.md for details.

v5.4.11

Compare Source

Vite 6 is out!

Today, we're taking another big step in Vite's story. The Vite team, contributors, and ecosystem partners are excited to announce the release of the next Vite major:

We want to thank the more than 1K contributors to Vite Core and the maintainers and contributors of Vite plugins, integrations, tools, and translations that have helped us craft this new major. We invite you to get involved and help us improve Vite for the whole ecosystem. Learn more at our Contributing Guide.

⚠ BREAKING CHANGES
  • drop node 21 support in version ranges (#​18729)
  • deps: update dependency dotenv-expand to v12 (#​18697)
  • resolve: allow removing conditions (#​18395)
  • html: support more asset sources (#​11138)
  • remove fs.cachedChecks option (#​18493)
  • proxy bypass with WebSocket (#​18070)
  • css: remove default import in ssr dev (#​17922)
  • lib: use package name for css output file name (#​18488)
  • update to chokidar v4 (#​18453)
  • support file:// resolution (#​18422)
  • deps: update postcss-load-config to v6 (#​15235)
  • css: change default sass api to modern/modern-compiler (#​17937)
  • css: load postcss config within workspace root only (#​18440)
  • default build.cssMinify to 'esbuild' for SSR (#​15637)
  • json: add json.stringify: 'auto' and make that the default (#​18303)
  • bump minimal terser version to 5.16.0 (#​18209)
  • deps: migrate fast-glob to tinyglobby (#​18243)
Features

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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/dependencies-non-major branch from dbb7674 to 3c4cb07 Compare September 1, 2024 13:50
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 3c4cb07 to 86a4176 Compare September 3, 2024 09:07
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 86a4176 to 746f40d Compare September 3, 2024 16:12
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 746f40d to 36af90b Compare September 4, 2024 01:46
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 36af90b to 316a5f9 Compare September 4, 2024 23:03
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 316a5f9 to 2500537 Compare September 9, 2024 16:50
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 2500537 to 25fe11e Compare September 11, 2024 10:10
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 25fe11e to 3b7db6f Compare September 13, 2024 11:09
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 3b7db6f to aac5465 Compare September 16, 2024 16:42
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from aac5465 to 70af6ab Compare September 16, 2024 22:06
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 70af6ab to 8b9447f Compare September 19, 2024 22:08
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 8b9447f to aa5e13e Compare September 24, 2024 00:01
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from aa5e13e to 59e2177 Compare September 25, 2024 01:06
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 59e2177 to 89a51f3 Compare September 25, 2024 20:09
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 89a51f3 to ebdf04d Compare September 25, 2024 23:16
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 052c124 to 3d0ce60 Compare October 19, 2024 04:51
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 3d0ce60 to f169ea0 Compare October 22, 2024 05:15
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from f169ea0 to 4a26ce3 Compare October 23, 2024 05:13
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 4a26ce3 to 6dfe401 Compare October 23, 2024 16:16
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 6dfe401 to be4f25b Compare October 25, 2024 14:20
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from be4f25b to fdd8193 Compare October 28, 2024 22:36
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from fdd8193 to 64126e7 Compare October 29, 2024 13:24
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 64126e7 to a51fcfb Compare October 29, 2024 19:22
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from a51fcfb to 7f473ca Compare October 31, 2024 06:29
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 7f473ca to 564787e Compare October 31, 2024 18:40
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 564787e to 418d1f4 Compare November 3, 2024 06:11
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 418d1f4 to 9c4ecc0 Compare November 5, 2024 15:56
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 9c4ecc0 to e907015 Compare November 19, 2024 03:20
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from e907015 to 0646c8c Compare November 22, 2024 19:27
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 0646c8c to 2da3321 Compare November 23, 2024 07:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant