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

fix(deps): update all non-major dependencies with stable version (minor) #52

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 18, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@mdit-vue/plugin-frontmatter (source) ^2.0.0 -> ^2.1.3 age adoption passing confidence dependencies minor
@mdit-vue/types (source) ^2.0.0 -> ^2.1.0 age adoption passing confidence devDependencies minor
@types/node (source) ^20.10.8 -> ^20.14.7 age adoption passing confidence devDependencies minor 20.14.9 (+1)
@vueuse/core (source) ^10.9.0 -> ^10.11.0 age adoption passing confidence dependencies minor
eslint (source) ^9.4.0 -> ^9.5.0 age adoption passing confidence devDependencies minor 9.6.0
markdown-it ^14.0.0 -> ^14.1.0 age adoption passing confidence dependencies minor
mermaid ^10.7.0 -> ^10.9.1 age adoption passing confidence dependencies minor
node (source) 20.11.0 -> 20.15.0 age adoption passing confidence minor
node (source) 20.11.0 -> 20.15.0 age adoption passing confidence volta minor
pnpm (source) 9.1.2 -> 9.4.0 age adoption passing confidence volta minor
postcss-html ^1.6.0 -> ^1.7.0 age adoption passing confidence devDependencies minor
stylelint (source) ^16.2.0 -> ^16.6.1 age adoption passing confidence devDependencies minor
typescript (source) ^5.3.3 -> ^5.5.2 age adoption passing confidence devDependencies minor
vite (source) ^5.1.4 -> ^5.3.1 age adoption passing confidence devDependencies minor 5.3.2
vite-plugin-vue-devtools (source) ^7.0.13 -> ^7.3.2 age adoption passing confidence devDependencies minor 7.3.5 (+2)
vitest (source) 1.3.1 -> 1.6.0 age adoption passing confidence devDependencies minor

Release Notes

mdit-vue/mdit-vue (@​mdit-vue/plugin-frontmatter)

v2.1.3

Compare Source

Note: Version bump only for package @​mdit-vue/monorepo

v2.1.2

Compare Source

Bug Fixes

v2.1.0

Compare Source

Features
  • upgrade markdown-it types to v14 (6839be8)
vueuse/vueuse (@​vueuse/core)

v10.11.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v10.10.1

Compare Source

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

v9.5.0

Compare Source

markdown-it/markdown-it (markdown-it)

v14.1.0

Compare Source

Changed
  • Updated CM spec compatibility to 0.31.2, #​1009.
Fixed
  • Fixed quadratic complexity when parsing references, #​996.
  • Fixed quadratic output size with pathological user input in tables, #​1000.
mermaid-js/mermaid (mermaid)

v10.9.1

Compare Source

What's Changed

BugFixes

  • Cleaning of labels in Block diagram by @​knsv

Docs

New Contributors

Full Changelog: mermaid-js/mermaid@v10.9.0...v10.9.1

v10.9.0

Compare Source

Release Notes

We now have Katex support!

image
Demo

🚀 Features

🧰 Maintenance

📚 Documentation

🎉 Thanks to all contributors helping with this release! 🎉

nodejs/node (node)

v20.15.0: 2024-06-20, Version 20.15.0 'Iron' (LTS), @​marco-ippolito

Compare Source

test_runner: support test plans

It is now possible to count the number of assertions and subtests that are expected to run within a test. If the number of assertions and subtests that run does not match the expected count, the test will fail.

test('top level test', (t) => {
  t.plan(2);
  t.assert.ok('some relevant assertion here');
  t.subtest('subtest', () => {});
});

Contributed by Colin Ihrig in #​52860

inspector: introduce the --inspect-wait flag

This release introduces the --inspect-wait flag, which allows debugger to wait for attachement. This flag is useful when you want to debug the code from the beginning. Unlike --inspect-brk, which breaks on the first line, this flag waits for debugger to be connected and then runs the code as soon as a session is established.

Contributed by Kohei Ueno in #​52734

zlib: expose zlib.crc32()

This release exposes the crc32() function from zlib to user-land.

It computes a 32-bit Cyclic Redundancy Check checksum of data. If
value is specified, it is used as the starting value of the checksum,
otherwise, 0 is used as the starting value.

The CRC algorithm is designed to compute checksums and to detect error
in data transmission. It's not suitable for cryptographic authentication.

const zlib = require('node:zlib');
const { Buffer } = require('node:buffer');

let crc = zlib.crc32('hello');  // 907060870
crc = zlib.crc32('world', crc);  // 4192936109

crc = zlib.crc32(Buffer.from('hello', 'utf16le'));  // 1427272415
crc = zlib.crc32(Buffer.from('world', 'utf16le'), crc);  // 4150509955

Contributed by Joyee Cheung in #​52692

cli: allow running wasm in limited vmem with --disable-wasm-trap-handler

By default, Node.js enables trap-handler-based WebAssembly bound
checks. As a result, V8 does not need to insert inline bound checks
int the code compiled from WebAssembly which may speedup WebAssembly
execution significantly, but this optimization requires allocating
a big virtual memory cage (currently 10GB). If the Node.js process
does not have access to a large enough virtual memory address space
due to system configurations or hardware limitations, users won't
be able to run any WebAssembly that involves allocation in this
virtual memory cage and will see an out-of-memory error.

$ ulimit -v 5000000
$ node -p "new WebAssembly.Memory({ initial: 10, maximum: 100 });"
[eval]:1
new WebAssembly.Memory({ initial: 10, maximum: 100 });
^

RangeError: WebAssembly.Memory(): could not allocate memory
    at [eval]:1:1
    at runScriptInThisContext (node:internal/vm:209:10)
    at node:internal/process/execution:118:14
    at [eval]-wrapper:6:24
    at runScript (node:internal/process/execution:101:62)
    at evalScript (node:internal/process/execution:136:3)
    at node:internal/main/eval_string:49:3

--disable-wasm-trap-handler disables this optimization so that
users can at least run WebAssembly (with a less optimial performance)
when the virtual memory address space available to their Node.js
process is lower than what the V8 WebAssembly memory cage needs.

Contributed by Joyee Cheung in #​52766

Other Notable Changes
Commits

v20.14.0

Compare Source

v20.13.1: 2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito

Compare Source

2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito

Revert "tools: install npm PowerShell scripts on Windows"

Due to a regression in the npm installation on Windows, this commit reverts the change that installed npm PowerShell scripts on Windows.

Commits
  • [b7d80802cc] - Revert "tools: install npm PowerShell scripts on Windows" (marco-ippolito) #​52897

v20.13.0

Compare Source

v20.12.2: 2024-04-10, Version 20.12.2 'Iron' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
  • CVE-2024-27980 - Command injection via args parameter of child_process.spawn without shell option enabled on Windows
Commits

v20.12.1

Compare Source

v20.12.0

Compare Source

v20.11.1

Compare Source

pnpm/pnpm (pnpm)

v9.4.0

Compare Source

v9.3.0

Compare Source

Minor Changes

  • Semi-breaking. Dependency key names in the lockfile are shortened if they are longer than 1000 characters. We don't expect this change to affect many users. Affected users most probably can't run install successfully at the moment. This change is required to fix some edge cases in which installation fails with an out-of-memory error or "Invalid string length (RangeError: Invalid string length)" error. The max allowed length of the dependency key can be controlled with the peers-suffix-max-length setting #​8177.

Patch Changes

  • Set reporter-hide-prefix to true by default for pnpm exec. In order to show prefix, the user now has to explicitly set reporter-hide-prefix=false #​8174.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors


Configuration

📅 Schedule: Branch creation - "before 5am every weekday" in timezone America/New_York, Automerge - "every weekday" in timezone America/New_York.

🚦 Automerge: Enabled.

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.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 18, 2024
@renovate renovate bot requested review from adamdehaven, jillztom and a team as code owners March 18, 2024 04:06
@renovate renovate bot enabled auto-merge (squash) March 18, 2024 04:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 148b839 to 09e5b33 Compare March 19, 2024 07:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 09e5b33 to f6fcd19 Compare March 20, 2024 04:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f6fcd19 to b6e5ce7 Compare March 22, 2024 04:36
@renovate renovate bot changed the title fix(deps): update all non-major dependencies with stable version (minor) chore(deps): update all non-major dependencies with stable version (minor) Mar 22, 2024
adamdehaven
adamdehaven previously approved these changes Mar 30, 2024
@renovate renovate bot dismissed stale reviews from adamdehaven and kongponents-bot via 957ff07 April 1, 2024 04:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 660e18c to 957ff07 Compare April 1, 2024 04:40
kongponents-bot
kongponents-bot previously approved these changes Apr 1, 2024
kongponents-bot
kongponents-bot previously approved these changes Apr 2, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ec475d8 to b403897 Compare June 19, 2024 08:23
@adamdehaven adamdehaven closed this Jul 1, 2024
auto-merge was automatically disabled July 1, 2024 18:08

Pull request was closed

@adamdehaven adamdehaven deleted the renovate/all-minor-patch branch July 1, 2024 18:08
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 renovate-bot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants