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 with stable version (minor) #2255

Merged
merged 1 commit into from
Jul 23, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 27, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
cypress (source) ^13.11.0 -> ^13.13.0 age adoption passing confidence devDependencies minor 13.13.1
eslint (source) ^9.5.0 -> ^9.7.0 age adoption passing confidence devDependencies minor
inquirer (source) ^9.2.23 -> ^9.3.5 age adoption passing confidence devDependencies minor 9.3.6
node (source) 20.14.0 -> 20.15.1 age adoption passing confidence minor
node (source) 20.14.0 -> 20.15.1 age adoption passing confidence volta minor
pnpm (source) 9.3.0 -> 9.5.0 age adoption passing confidence packageManager minor 9.6.0
pnpm (source) 9.3.0 -> 9.5.0 age adoption passing confidence volta minor 9.6.0
stylelint (source) ^16.6.1 -> ^16.7.0 age adoption passing confidence devDependencies minor
stylelint-config-recommended-scss ^14.0.0 -> ^14.1.0 age adoption passing confidence devDependencies minor
typescript (source) ^5.4.5 -> ^5.5.3 age adoption passing confidence devDependencies minor 5.5.4
vite-plugin-vue-devtools (source) ^7.2.1 -> ^7.3.5 age adoption passing confidence devDependencies minor 7.3.6
vitepress (source) ^1.2.3 -> ^1.3.0 age adoption passing confidence devDependencies minor 1.3.1
vue-router ^4.3.3 -> ^4.4.0 age adoption passing confidence peerDependencies minor
vue-router ^4.3.3 -> ^4.4.0 age adoption passing confidence devDependencies minor

Release Notes

cypress-io/cypress (cypress)

v13.13.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-0

v13.12.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-12-0

eslint/eslint (eslint)

v9.7.0

Compare Source

Features

  • 7bd9839 feat: add support for es2025 duplicate named capturing groups (#​18630) (Yosuke Ota)
  • 1381394 feat: add regex option in no-restricted-imports (#​18622) (Nitin Kumar)

Bug Fixes

  • 14e9f81 fix: destructuring in catch clause in no-unused-vars (#​18636) (Francesco Trotta)

Documentation

  • 9f416db docs: Add Powered by Algolia label to the search. (#​18633) (Amaresh S M)
  • c8d26cb docs: Open JS Foundation -> OpenJS Foundation (#​18649) (Milos Djermanovic)
  • 6e79ac7 docs: loadESLint does not support option cwd (#​18641) (Francesco Trotta)

Chores

v9.6.0

Compare Source

SBoudrias/Inquirer.js (inquirer)

v9.3.5

Compare Source

  • Fix issue with plugins relying on internal inquirer packages file structure.

v9.3.4

Compare Source

v9.3.3

Compare Source

v9.3.2

Compare Source

v9.3.1

Compare Source

  • Fix risk of prototype injection.

v9.3.0

Compare Source

  • Replace chalk with picolors.
  • Drop many dependencies in favour of native functions when possible.

No impact expected, but it's a large changes in dependencies. Let us know if you run into any issues upgrading!

nodejs/node (node)

v20.15.1

Compare Source

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
pnpm/pnpm (pnpm)

v9.5.0

Compare Source

v9.4.0

Compare Source

stylelint/stylelint (stylelint)

v16.7.0

Compare Source

stylelint-scss/stylelint-config-recommended-scss (stylelint-config-recommended-scss)

v14.1.0

Compare Source

  • Changed: replaced deprecated scss/at-import-partial-extension rule with scss/load-partial-extension rule.
  • Changed: updated to stylelint-scss@6.4.0.
Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

v5.5.2

Compare Source

vuejs/devtools-next (vite-plugin-vue-devtools)

v7.3.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.3.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.3.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.3.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.3.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.3.0

Compare Source

   🚀 Features

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added dependencies Pull requests that update a dependency file renovate-bot labels Jun 27, 2024
@renovate renovate bot requested review from kaiarrowood and a team as code owners June 27, 2024 07:23
@renovate renovate bot enabled auto-merge (squash) June 27, 2024 07:23
Copy link

netlify bot commented Jun 27, 2024

Deploy Preview for kongponents ready!

Name Link
🔨 Latest commit 4ff9747
🔍 Latest deploy log https://app.netlify.com/sites/kongponents/deploys/669f44a43c8daa0008d0d820
😎 Deploy Preview https://deploy-preview-2255--kongponents.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e9af341 to 125920d Compare June 28, 2024 06:59
@renovate renovate bot changed the title chore(deps): update dependency vite-plugin-vue-devtools to ^7.3.0 chore(deps): update all non-major dependencies with stable version (minor) Jun 28, 2024
kongponents-bot
kongponents-bot previously approved these changes Jul 1, 2024
adamdehaven
adamdehaven previously approved these changes Jul 1, 2024
@renovate renovate bot dismissed stale reviews from adamdehaven and kongponents-bot via dc90633 July 2, 2024 06:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2ff7041 to dc90633 Compare July 2, 2024 06:10
kongponents-bot
kongponents-bot previously approved these changes Jul 2, 2024
kongponents-bot
kongponents-bot previously approved these changes Jul 3, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a4a99f5 to 65a44ff Compare July 4, 2024 06:35
kongponents-bot
kongponents-bot previously approved these changes Jul 4, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 580f502 to b8fd97a Compare July 17, 2024 08:21
@renovate renovate bot merged commit e1495f0 into main Jul 23, 2024
10 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch July 23, 2024 15:35
@kongponents-bot
Copy link
Collaborator

🎉 This PR is included in version 9.0.19 🎉

The release is available on:

Your semantic-release bot 📦🚀

@kongponents-bot
Copy link
Collaborator

Preview package from this PR in consuming application

In consuming application project install preview version of kongponents generated by this PR:

@kong/kongponents@pr-2255

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 released renovate-bot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants