build(deps-dev): bump all#822
Conversation
6693fee to
8026c0a
Compare
cd39ab0 to
c0b0d3b
Compare
|
Warning Review the following alerts detected in dependencies. According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.
|
ef92697 to
440b6a3
Compare
440b6a3 to
bef78d9
Compare
af6e1aa to
5c4f4f4
Compare
0f6e67e to
56ba551
Compare
1d63142 to
85fb2f4
Compare
85fb2f4 to
85fddf5
Compare
52d4366 to
b177b57
Compare
f31a554 to
c8e6a88
Compare
c8e6a88 to
1d0b5ed
Compare
06d878e to
28e8f98
Compare
37682db to
4e57dd1
Compare
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This PR contains the following updates:
1.5.0→1.10.314.1.1→14.1.2v4.1.6→v4.3.1v4.0.2→v4.4.0a57df69→87999aav3.0.2→v3.0.30.45.1→0.54.05.1.5→5.1.99.1.0→9.1.20.3.9→0.4.03.6.1→3.10.12.29.1→2.32.05.1.0→5.5.12.15.1→2.21.15.0.0→5.1.05.1.3→5.5.66.1.1→6.6.02.5.0→2.10.012.1.0→12.1.11.14.0→1.19.19.0.1→9.2.00.13.0→0.22.10.0.4→0.0.69.1.1→9.15.93.2.5→3.8.42.0.1→2.0.218fcd53→c180f0c3.3.1→3.4.9v1.176.0→v1.314.05.4.5→5.9.311.0.4→11.0.5Release Notes
Shopify/theme-tools (@shopify/prettier-plugin-liquid)
v1.10.3Patch Changes
cacd8f3: [internal] local development fix for breakpointsv1.10.2Compare Source
v1.10.0Compare Source
v1.9.4Compare Source
v1.9.3Compare Source
v1.9.2Compare Source
v1.9.1Compare Source
v1.9.0Compare Source
v1.8.3Compare Source
v1.8.2Compare Source
v1.8.1Compare Source
v1.8.0Compare Source
v1.7.2Compare Source
v1.7.0Compare Source
v1.6.3Compare Source
v1.6.2Compare Source
v1.6.1Compare Source
v1.6.0Compare Source
v1.5.2Compare Source
v1.5.1Compare Source
actions/checkout (actions/checkout)
v4.3.1Compare Source
v4.3.0Compare Source
v4.2.2Compare Source
url-helper.tsnow leverages well-known environment variables by @jww3 in #1941isGhesby @jww3 in #1946v4.2.1Compare Source
v4.2.0Compare Source
v4.1.7Compare Source
actions/setup-node (actions/setup-node)
v4.4.0Compare Source
What's Changed
Bug fixes:
Enhancement:
Dependency update:
New Contributors
Full Changelog: actions/setup-node@v4...v4.4.0
v4.3.0Compare Source
What's Changed
Dependency updates
New Contributors
Full Changelog: actions/setup-node@v4...v4.3.0
v4.2.0Compare Source
What's Changed
@actions/cacheto^4.0.0by @priyagupta108 in #1191New Contributors
Full Changelog: actions/setup-node@v4...v4.2.0
v4.1.0Compare Source
What's Changed
isGheslogic by @jww3 in #1148This addresses issues with caching by adding the architecture (arch) to the cache key, ensuring that cache keys are accurate to prevent conflicts.
Note: This change may break previous cache keys as they will no longer be compatible with the new format.
New Contributors
Full Changelog: actions/setup-node@v4...v4.1.0
v4.0.4Compare Source
What's Changed
Documentation changes:
New Contributors
Full Changelog: actions/setup-node@v4...v4.0.4
v4.0.3Compare Source
What's Changed
Bug fixes:
Documentation changes:
Dependency updates:
New Contributors
Full Changelog: actions/setup-node@v4...v4.0.3
dorny/paths-filter (dorny/paths-filter)
v3.0.3Compare Source
dprint/dprint (dprint)
v0.54.0Compare Source
Changes
--no-gitignoreflag (#1127)Install
Run
dprint upgradeor see https://dprint.dev/install/Checksums
v0.53.2Compare Source
Changes
Install
Run
dprint upgradeor see https://dprint.dev/install/Checksums
v0.53.1Compare Source
Changes
Install
Run
dprint upgradeor see https://dprint.dev/install/Checksums
v0.53.0Compare Source
Changes
dprint addsubcommand as alias fordprint config add(#1101)Install
Run
dprint upgradeor see https://dprint.dev/install/Checksums
v0.52.0Compare Source
Changes
--skip-stable-format(#1075)dprint fmt --fail-on-change(#1073)Install
Run
dprint upgradeor see https://dprint.dev/install/Checksums
v0.51.1Compare Source
Changes
$HOME/.config/dprinton macOS for global config (#1062)dprintexecutable now prefers putting the global config in the folder at$HOME/.config/dprint, but will continue to use the "Application Support" macOS config directory if a config file exists in there.0.51.0 release notes: https://github.com/dprint/dprint/releases/tag/0.51.0
Install
Run
dprint upgradeor see https://dprint.dev/install/Checksums
v0.51.0Compare Source
dprint is a pluggable, configurable code formatting platform written in Rust. It aims to unify all your code formatters in one tool.
Features
Global Configuration File
dprint now supports a global configuration file that can be used when not in a project. (#1040)
Initialize a global config:
dprint init --global # or dprint config init --globalThe global config location is customizable via the
DPRINT_CONFIG_DIRenvironment variable, but by default is stored in (this reflects the update that was published in 0.51.1 after feedback):~/.config/dprint/dprint.jsonc(or$XDG_CONFIG_HOME/dprint/dprint.jsonc)$HOME/Library/Application Support/dprint/dprint.jsoncif it exists%APPDATA%\dprint\dprint.jsoncNote: You can edit the config by running
dprint config edit --globalUse global config for formatting:
Once setup, the global configuration will be used by default when there's no dprint configuration file in the current directory tree; however, to prevent accidentally formatting such directories, a prompt is shown when calling
dprint fmt:As the hint states, you can bypass the confirmation prompt by providing the current directory:
To format files using only the global configuration and ignore local configuration files use:
Manage global config:
Full docs: https://dprint.dev/global-config/
Improved
dprint checkOutputWhen files are not formatted,
dprint checknow suggests runningdprint fmtto fix them, making it clearer for new users contributing to your projects what to do next. (#1056)dprint check --fail-fastStops checking files and exit on the first file that isn't formatted. This is useful when you want even faster feedback. (#1054)
Note: When using
--log-level=silent,--fail-fastis now enabled by default.Breaking Changes
dprint config updateis now non-recursive by default - The command now only updates the configuration file in the current directory by default, rather than updating all config files in descendant directories. Use--recursive(or-r) to update configuration files recursively. (#1053)Other Changes
updateUrltoeditor-infocommand output (#1027)New Plugins
Another announcement is dprint now has an Oxc (JS/TS) and Mago (PHP) plugins:
Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 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.
This PR was generated by Mend Renovate. View the repository job log.