Skip to content

fix(deps): update all non-major dependencies #1167

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 5, 2024

This PR contains the following updates:

Package Type Update Change Age Confidence
colored dependencies minor 2.1.0 -> 2.2.0 age confidence
etcetera dependencies minor 0.8.0 -> 0.10.0 age confidence
flate2 dependencies minor 1.0.34 -> 1.1.2 age confidence
indicatif dependencies minor 0.17.8 -> 0.18.0 age confidence
miette dependencies minor 7.2.0 -> 7.6.0 age confidence
node (source) minor 20.14.0 -> 20.19.4 age confidence
node-semver dependencies minor 2.1.0 -> 2.2.0 age confidence
pnpm (source) packageManager minor 9.1.4 -> 9.15.9 age confidence
pnpm/action-setup action minor v4.0.0 -> v4.1.0 age confidence
sysinfo dependencies minor 0.30.12 -> 0.36.0 age confidence
tempfile (source) dependencies minor 3.13.0 -> 3.20.0 age confidence

Release Notes

mackwic/colored (colored)

v2.2.0

Compare Source

  • Updated top-level docs to include a note about ColoredString's role in the Colorize pipeline as well as link to it to suggest learning more about how to manipulate existing ColoredString's.
  • Changes to ColoredString:
    • Expose fields.
    • [DEPRECATION]: Deprecated methods fgcolor, bgcolor, and style due to their obsolescence in the face of the exposing of their represented fields.
    • Add methods for clearing specific elements of fgcolor, bgcolor, and style.
    • Change Default implementation to be via derive as Style now implements Default (see changes to Style below).
    • Add implementation of DerefMut.
    • Updated docs to reflect the above changes as well as generally greatly expand them.
  • Changes to Style:
    • Implemented Default for Style (returns CLEAR). This exposes a method by which users can create plain Style's from scratch.
    • Implemented From<Styles> for Style. This lets users easily create Style's from specific styles.
    • Exposed previously private method add.
    • Created method remove which essentially does the opposite.
    • Added builder-style methods in the vein of Colorize to add stylings (e.g. bold, underline, italic, strikethrough).
    • Implemented bitwise operators BitAnd, BitOr, BitXor, and Not as well as their representative assignment operators. You can also use a Styles as an operand for these.
    • Implemented FromIterator<Styles> for Style.
  • Changes to Styles:
    • Implemented bitwise operators BitAnd, BitOr, BitXor, and Not which all combine Styles's and output Style's. These can also take a Style as an operand.
  • Added additional testing for all of the above changes.
  • Added methods with_style and with_color_and_style to Colorize.
lunacookies/etcetera (etcetera)

v0.10.0

Compare Source

What's Changed

This version raises MSRV to 1.81.0. But if you pin home to <0.5.11 in Cargo.lock, then the MSRV will be 1.70.0.

Full Changelog: lunacookies/etcetera@v0.9.0...v0.10.0

v0.9.0

Compare Source

What's Changed

Full Changelog: lunacookies/etcetera@v0.8.0...v0.9.0

rust-lang/flate2-rs (flate2)

v1.1.2

Compare Source

What's Changed

Full Changelog: rust-lang/flate2-rs@1.1.1...1.1.2

v1.1.1

Compare Source

This release should be smaller and thus faster to download.
Additionally, when using the zlib-rs backend, duplicate symbol issues shouldn't occur anymore.

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.1.0...1.1.1

v1.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.35...1.1.0

v1.0.35: - security update to zlib-rs

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.34...1.0.35

console-rs/indicatif (indicatif)

v0.18.0

Compare Source

Unfortunately 0.17.12 had to be yanked because the console upgrade was a semver-incompatible change. Rerelease as 0.18.0 instead.

What's Changed

v0.17.12

Compare Source

What's Changed

v0.17.11

Compare Source

What's Changed

v0.17.10

Compare Source

What's Changed

With some great performance improvements from @​jaheba.

v0.17.9

Compare Source

What's Changed

zkat/miette (miette)

v7.6.0

Bug Fixes
Features
  • graphical: support rendering related diagnostics as nested (#​417) (771a0751)
  • labels: add support for disabling the primary label line/col information (#​419) (f2ef693d)
  • deps: update thiserror from 1.0.56 to 2.0.11 (#​426) (59c81617)

v7.5.0

Features
  • graphical: support rendering related diagnostics as nested (#​417) (771a0751)
Bug Fixes
  • graphical: prevent leading newline when no link/code (#​418) (1e1938a0)

v7.4.0

Compare Source

Features

v7.3.0

Compare Source

Features
Performance
Bug Fixes
Documentation
nodejs/node (node)

v20.19.4

Compare Source

v20.19.3

Compare Source

v20.19.2

Compare Source

v20.19.1

Compare Source

v20.19.0: 2025-03-13, Version 20.19.0 'Iron' (LTS), @​marco-ippolito

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 under the command line flag --experimental-require-module, and available by default on v22.x and v23.x. In this release, it is now no longer behind a flag on v20.x.

This feature has been tested on v23.x and v22.x, and we are looking for user feedback from v20.x to make more final tweaks before fully stabilizing it. When the Node.js instance encounters a native ES module in require() somewhere outside node_modules 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

Module syntax detection is now enabled by default

Module syntax detection (the --experimental-detect-module flag) is now
enabled by default. Use --no-experimental-detect-module to disable it if
needed.

Syntax detection attempts to run ambiguous files as CommonJS, and if the module
fails to parse as CommonJS due to ES module syntax, Node.js tries again and runs
the file as an ES module.
Ambiguous files are those with a .js or no extension, where the nearest parent
package.json has no "type" field (either "type": "module" or
"type": "commonjs").
Syntax detection should have no performance impact on CommonJS modules, but it
incurs a slight performance penalty for ES modules; add "type": "module" to
the nearest parent package.json file to eliminate the performance cost.
A use case unlocked by this feature is the ability to use ES module syntax in
extensionless scripts with no nearby package.json.

Thanks to Geoffrey Booth for making this work on #​53619.

Other Notable Changes
  • [285bb4ee14] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #​56566
  • [73b5c16684] - (SEMVER-MINOR) worker: add postMessageToThread (Paolo Insogna) #​53682
  • [de313b2336] - (SEMVER-MINOR) module: only emit require(esm) warning under --trace-require-module (Joyee Cheung) #​56194
  • [4fba01911d] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #​55241
  • [df8a045afe] - (SEMVER-MINOR) module: implement the "module-sync" exports condition (Joyee Cheung) #​54648
  • [f9dc1eaef5] - (SEMVER-MINOR) module: add __esModule to require()'d ESM (Joyee Cheung) #​52166
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 added the PR: Dependency Update A dependency was updated label Jun 5, 2024
Copy link

changeset-bot bot commented Jun 5, 2024

⚠️ No Changeset found

Latest commit: 9fe6a2e

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

vercel bot commented Jun 5, 2024

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

Name Status Preview Comments Updated (UTC)
fnm ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 28, 2025 10:50am

@renovate renovate bot changed the title chore(deps): update pnpm to v9.2.0 chore(deps): update pnpm to v9.3.0 Jun 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 617e577 to c068e07 Compare June 10, 2024 13:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c068e07 to 6e3e341 Compare June 17, 2024 19:54
@renovate renovate bot changed the title chore(deps): update pnpm to v9.3.0 chore(deps): update pnpm to v9.4.0 Jun 17, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6e3e341 to 25aed9a Compare June 20, 2024 18:36
@renovate renovate bot changed the title chore(deps): update pnpm to v9.4.0 chore(deps): update all non-major dependencies Jun 20, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 25aed9a to 0971509 Compare July 7, 2024 19:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0971509 to d7a1364 Compare July 8, 2024 19:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d7a1364 to 5ac8bde Compare July 22, 2024 02:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5ac8bde to 3649435 Compare July 24, 2024 14:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3649435 to aac16a0 Compare July 31, 2024 15:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aac16a0 to 9c77924 Compare August 2, 2024 22:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9c77924 to 527cd4c Compare August 6, 2024 09:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 527cd4c to 1847abe Compare August 6, 2024 20:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1847abe to b346de9 Compare August 7, 2024 01:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bf4f4bf to 158b433 Compare April 22, 2025 10:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 158b433 to c31b3ca Compare April 27, 2025 06:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c31b3ca to 35b6535 Compare May 1, 2025 22:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 35b6535 to 32ecb05 Compare May 11, 2025 22:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 32ecb05 to 62e615b Compare May 13, 2025 10:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 62e615b to e0c3f57 Compare May 14, 2025 23:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e0c3f57 to a9f97cf Compare June 7, 2025 04:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a9f97cf to 03164d9 Compare June 9, 2025 07:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 03164d9 to d86c354 Compare June 23, 2025 17:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d86c354 to 219d5df Compare July 2, 2025 17:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 219d5df to 06154c4 Compare July 4, 2025 10:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 06154c4 to d2eabc5 Compare July 10, 2025 17:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d2eabc5 to b3fcd76 Compare July 16, 2025 04:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
PR: Dependency Update A dependency was updated
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants