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 (v1) #157

Open
wants to merge 1 commit into
base: v1
Choose a base branch
from

Conversation

hywax-assistant
Copy link
Collaborator

@hywax-assistant hywax-assistant commented Dec 1, 2024

This PR contains the following updates:

Package Type Update Change
@commitlint/cli (source) devDependencies patch ^19.6.0 -> ^19.6.1
@hywax/tools-eslint devDependencies minor ^1.0.0 -> ^1.1.0
@iconify/json (source) devDependencies patch ^2.2.277 -> ^2.2.284
@nuxt/ui (source) dependencies patch ^3.0.0-alpha.9 -> ^3.0.0-alpha.10
@nuxt/ui-pro dependencies patch ^3.0.0-alpha.9 -> ^3.0.0-alpha.10
@nuxtjs/i18n (source) devDependencies patch ^9.1.0 -> ^9.1.1
@types/node (source) devDependencies patch ^22.10.1 -> ^22.10.2
lint-staged devDependencies patch ^15.2.10 -> ^15.2.11
node final minor 22.11-alpine -> 22.12.0-alpine
node stage minor 22.11-alpine -> 22.12.0-alpine
nuxt-zod-i18n devDependencies patch ^1.11.0 -> ^1.11.2
pnpm (source) packageManager minor 9.14.2 -> 9.15.0
unocss devDependencies minor ^0.64.1 -> ^0.65.1
unplugin-vue-components devDependencies minor ^0.27.5 -> ^0.28.0
vite (source) devDependencies patch ^6.0.1 -> ^6.0.3
zod (source) dependencies minor ^3.23.8 -> ^3.24.1

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.6.1

Compare Source

Note: Version bump only for package @​commitlint/cli

iconify/icon-sets (@​iconify/json)

v2.2.284

Compare Source

v2.2.283

Compare Source

v2.2.282

Compare Source

v2.2.281

Compare Source

v2.2.280

Compare Source

v2.2.279

Compare Source

v2.2.278

Compare Source

nuxt/ui (@​nuxt/ui)

v3.0.0-alpha.10

Compare Source

⚠ BREAKING CHANGES
  • module: migrate to reka-ui (#​2448)
  • Form: resolve async validation in yup & issue directly mutate state (#​2702)
Features
Bug Fixes
nuxt-modules/i18n (@​nuxtjs/i18n)

v9.1.1

Compare Source

This changelog is generated by GitHub Releases

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
lint-staged/lint-staged (lint-staged)

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

nodejs/node (node)

v22.12.0: 2024-12-03, Version 22.12.0 'Jod' (LTS), @​ruyadorno

Compare Source

Notable Changes
require(esm) is now enabled by default

Support for loading native ES modules using require() had been available on v20.x and v22.x under the command line flag --experimental-require-module, and available by default on v23.x. In this release, it is now no longer behind a flag on v22.x.

This feature is still experimental, and we are looking for user feedback to make more final tweaks before fully stabilizing it. For this reason, on v22.x, when the Node.js instance encounters a native ES module in require() for the first time, it will emit an experimental warning unless require() comes from a path that contains node_modules. If there happens to be any regressions caused by this feature, users can report it to the Node.js issue tracker. Meanwhile this feature can also be disabled using --no-experimental-require-module as a workaround.

With this feature enabled, Node.js will no longer throw ERR_REQUIRE_ESM if require() is used to load a ES module. It can, however, throw ERR_REQUIRE_ASYNC_MODULE if the ES module being loaded or its dependencies contain top-level await. When the ES module is loaded successfully by require(), the returned object will either be a ES module namespace object similar to what's returned by import(), or what gets exported as "module.exports" in the ES module.

Users can check process.features.require_module to see whether require(esm) is enabled in the current Node.js instance. For packages, the "module-sync" exports condition can be used as a way to detect require(esm) support in the current Node.js instance and allow both require() and import to load the same native ES module. See the documentation for more details about this feature.

Contributed by Joyee Cheung in #​55085

Added resizable ArrayBuffer support in Buffer

When a Buffer is created using a resizable ArrayBuffer, the Buffer length will now correctly change as the underlying ArrayBuffer size is changed.

const ab = new ArrayBuffer(10, { maxByteLength: 20 });
const buffer = Buffer.from(ab);
console.log(buffer.byteLength); 10
ab.resize(15);
console.log(buffer.byteLength); 15
ab.resize(5);
console.log(buffer.byteLength); 5

Contributed by James Snell in #​55377

Update root certificates to NSS 3.104

This is the version of NSS that shipped in Firefox 131.0 on 2024-10-01.

Certificates added:

  • FIRMAPROFESIONAL CA ROOT-A WEB
  • TWCA CYBER Root CA
  • SecureSign Root CA12
  • SecureSign Root CA14
  • SecureSign Root CA15

Contributed by Richard Lau in #​55681

Other Notable Changes
  • [4920869935] - (SEMVER-MINOR) assert: make assertion_error use Myers diff algorithm (Giovanni Bucci) #​54862
  • [ccffd3b819] - doc: enforce strict policy to semver-major releases (Rafael Gonzaga) #​55732
  • [acc6806900] - doc: add jazelly to collaborators (Jason Zhang) #​55531
  • [88d91e8bc2] - esm: mark import attributes and JSON module as stable (Nicolò Ribaudo) #​55333
  • [98bfc7dce5] - (SEMVER-MINOR) http: add diagnostic channel http.client.request.created (Marco Ippolito) #​55586
  • [337f61fb25] - (SEMVER-MINOR) lib: add UV_UDP_REUSEPORT for udp (theanarkh) #​55403
  • [1628c48ad6] - (SEMVER-MINOR) net: add UV_TCP_REUSEPORT for tcp (theanarkh) #​55408
  • [457e73f4c9] - (SEMVER-MINOR) sqlite: add support for SQLite Session Extension (Bart Louwers) #​54181
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 Hywax Assistant.

@hywax-assistant hywax-assistant added 1.x Changes in 1.x version dependencies Pull requests that update a dependency file labels Dec 1, 2024
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch 5 times, most recently from 8589136 to e9bfc21 Compare December 6, 2024 19:02
@hywax-assistant hywax-assistant changed the title chore(deps): update all non-major dependencies (v1) chore(deps): update node.js to v22.12.0 (v1) Dec 8, 2024
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch from e9bfc21 to cb6fef5 Compare December 10, 2024 19:01
@hywax-assistant hywax-assistant changed the title chore(deps): update node.js to v22.12.0 (v1) chore(deps): update all non-major dependencies (v1) Dec 10, 2024
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch 3 times, most recently from 530869f to 77bccf5 Compare December 15, 2024 19:01
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch from 77bccf5 to 8740b45 Compare December 16, 2024 19:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1.x Changes in 1.x version dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant