magic-akari / lrc-maker

歌词滚动姬|可能是你所能见到的最好用的歌词制作工具
https://lrc-maker.github.io
MIT License
865 stars 97 forks source link

chore(deps): update dependency dprint to ^0.45.0 #104

Closed renovate[bot] closed 10 months ago

renovate[bot] commented 11 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
dprint ^0.43.0 -> ^0.45.0 age adoption passing confidence

Release Notes

dprint/dprint (dprint) ### [`v0.45.0`](https://togithub.com/dprint/dprint/releases/tag/0.45.0) [Compare Source](https://togithub.com/dprint/dprint/compare/0.44.0...0.45.0) #### Changes - feat: experimental lsp ([#​803](https://togithub.com/dprint/dprint/issues/803)) - feat: protect against plugin formatting non-empty file above 300 chars to empty file ([#​807](https://togithub.com/dprint/dprint/issues/807)) - fix: upgrade wasmer to 4.2.5 ([#​809](https://togithub.com/dprint/dprint/issues/809)) - fix: respect [`NO_COLOR`](https://no-color.org/) env var ([#​808](https://togithub.com/dprint/dprint/issues/808)) ##### Experimental Language Server This release adds a language server to `dprint` found at `dprint lsp`. This will allow more easily using dprint in editors beside vscode and intellij, such as Neovim. To try it out in vscode, add `"dprint.experimentalLsp": true` to your vscode settings. Please try it out and let me know if you run into any issues. Outstanding tasks: - Figure out how to do completions for dprint.json files ([https://github.com/dprint/dprint/issues/806](https://togithub.com/dprint/dprint/issues/806)) - Document how to use `dprint lsp` with editors such as Neovim ([https://github.com/dprint/dprint/issues/810](https://togithub.com/dprint/dprint/issues/810)) - If you use Neovim or any other editor that easily supports the LSP, please consider contributing some setup documentation instructions as I'm very unfamiliar with other editors. #### Install Run `dprint upgrade` or see https://dprint.dev/install/ #### Checksums |Artifact|SHA-256 Checksum| |:--|:--| |dprint-x86\_64-apple-darwin.zip|6df01e0357049ad3bc62bbd2f60c9c448bd747b650ebf20f7ab5a38cefd36b44| |dprint-aarch64-apple-darwin.zip|cf23ab2785ca25f27ed5ca5127663dfe0131ae146d0b8d5159b06e0694ad74ac| |dprint-x86\_64-pc-windows-msvc.zip|0a5a83b521f152cd83cfb95ef119286e472b3b43077b3ffaeb4b3297fbb52e7f| |dprint-x86\_64-pc-windows-msvc-installer.exe|88d7bd63ce389f0ac2cacb53b020de1319bbe9ea104aa8390788cbfe10a74bea| |dprint-x86\_64-unknown-linux-gnu.zip|581e44d57631498edfed6baad5dd77d832116a12c94dd6fb394045ed40af18ea| |dprint-x86\_64-unknown-linux-musl.zip|8fb959aeeb441e0038217a7973f3a8e246e7aa46b77b33ba5f5e2f38d86f531b| |dprint-aarch64-unknown-linux-gnu.zip|45af380a82a65ebe173de25329093fc2e27cf64f3aeef9e39f723873b12fba7f| |dprint-aarch64-unknown-linux-musl.zip|48ba9f0910e32a66c869cffc6fd96d2d8f000ffb3d11234e71ae952f322dc849| ### [`v0.44.0`](https://togithub.com/dprint/dprint/releases/tag/0.44.0) [Compare Source](https://togithub.com/dprint/dprint/compare/0.43.2...0.44.0) #### Changes This is a breaking change for how the CLI uses the file patterns passed to it. 1. Paths provided to the CLI (ex. `dprint fmt **/*.js`) are now an intersection with the config includes patterns. - In other words, this only matches file patterns provided as CLI args that also match the config. 2. Paths provided as `--excludes` (ex. `dprint fmt --excludes **/data`) are now a union with the config excludes patterns. - In other words, this excludes files/directories in addition to what's excluded in the config. The old behaviour may be useful in some rare cases. To get it, you can use these new CLI flags: 1. `--includes-override` - overrides/replaces the patterns derived from the config. This is the previous behaviour of providing file patterns as CLI args. 2. `--excludes-override` - overrides/replaces the "excludes" value in the config. This is the previous behaviour of `--excludes`. #### Install Run `dprint upgrade` or see https://dprint.dev/install/ #### Checksums |Artifact|SHA-256 Checksum| |:--|:--| |dprint-x86\_64-apple-darwin.zip|758f501e3f47be0d880e79449dc3ebc269a8c52efc4a7fc53a5756fd1b673005| |dprint-aarch64-apple-darwin.zip|68fc1abebe70b3947ec7e019bb3c3d47939cb71a8c0877f1a632b552edfaf6e0| |dprint-x86\_64-pc-windows-msvc.zip|7e100d917a6c2c76458acedf7b9745ceb8cd380c56a5b1f09f6e27c8f41a94d8| |dprint-x86\_64-pc-windows-msvc-installer.exe|db85a0671896fc2c669efdca9f41772e676bf3e7112f111dc19d5803e73c46d1| |dprint-x86\_64-unknown-linux-gnu.zip|acc510e33e4f0b0336e420f42322f81109ffc52d74939450614c97988d09b5b2| |dprint-x86\_64-unknown-linux-musl.zip|1407c11d0855d6eb5ed4b2891b4fc7effcdaa276a7d77b5b20b65540ef90f58f| |dprint-aarch64-unknown-linux-gnu.zip|578a72d23703ac584ca4d15bea3cff7a56f33b800f74d15b9f9d8cc7d4715a2d| |dprint-aarch64-unknown-linux-musl.zip|7ec71a031c7374b43122c065d49768cacf6561ae8980d0aa09202d7de01749f6| ### [`v0.43.2`](https://togithub.com/dprint/dprint/releases/tag/0.43.2) [Compare Source](https://togithub.com/dprint/dprint/compare/0.43.1...0.43.2) #### Changes - fix: cli include args should not override negated includes in config ([#​797](https://togithub.com/dprint/dprint/issues/797)) - fix: support formatting `Vec` (not just utf-8 strings) ([#​792](https://togithub.com/dprint/dprint/issues/792)) - Also a slight perf improvement. ##### dprint-plugin-jupyter There is now a Jupyter Notebook plugin to format code blocks in Jupyter Notebooks using any other dprint plugin. https://dprint.dev/plugins/jupyter/ #### Install Run `dprint upgrade` or see https://dprint.dev/install/ #### Checksums |Artifact|SHA-256 Checksum| |:--|:--| |dprint-x86\_64-apple-darwin.zip|f860091eb4be0958b23d9aed2010e2a225ccc8d99ad79e408005d4f132d51d4b| |dprint-aarch64-apple-darwin.zip|de523a8df01b2843d89ddd145463d70c10d813b5a0814b7094022daf14e2b9e7| |dprint-x86\_64-pc-windows-msvc.zip|3a0b473ece37be2b61ecfbe8480cf4af8fb5936c1f2f3125bd12c797950b79c5| |dprint-x86\_64-pc-windows-msvc-installer.exe|b396bc622cd2bc9ceb0dd7fdb94c40b1f1c9d56f71e7466eab5e0b622a6624d6| |dprint-x86\_64-unknown-linux-gnu.zip|89a7e33416dfab15c61ac2aad19e82c2bdb3b57f874f9fe3806312a27aa7afd4| |dprint-x86\_64-unknown-linux-musl.zip|68bfc2e1c46ebc1794a76dfb99e971ad7461892a875bc3c5ac6da80f871e16e4| |dprint-aarch64-unknown-linux-gnu.zip|a273da2e9940de338687a067d5551af63b2435821dd2ea7b868dd3ad1b88f34d| |dprint-aarch64-unknown-linux-musl.zip|f8dcf95da927ada9c0f8c360bc5f2644d6f012d37fcc1563a6da26b2a4d95dea| ### [`v0.43.1`](https://togithub.com/dprint/dprint/releases/tag/0.43.1) [Compare Source](https://togithub.com/dprint/dprint/compare/0.43.0...0.43.1) #### Changes - fix: smarter 'no files found' error when providing cli args and has nested configs ([#​789](https://togithub.com/dprint/dprint/issues/789)) - fix: recommend running with --allow-no-files in some cases ([#​788](https://togithub.com/dprint/dprint/issues/788)) - fix: resolve 'system' newline global config in CLI ([#​787](https://togithub.com/dprint/dprint/issues/787)) - fix: config glob matching was somewhat broken if cwd was descendant dir ([#​786](https://togithub.com/dprint/dprint/issues/786)) #### Install Run `dprint upgrade` or see https://dprint.dev/install/ #### Checksums |Artifact|SHA-256 Checksum| |:--|:--| |dprint-x86\_64-apple-darwin.zip|b4c937c76038ff3198b9e3494119fb6405e54256a2c0ee7db797486cde4eef9f| |dprint-aarch64-apple-darwin.zip|ea479f5ab3a2c8933256e61e77c5a68ffda8d6c77be968b87d80374121686959| |dprint-x86\_64-pc-windows-msvc.zip|ce017e44244ce0dc837a9c6536d50ef5de6e24c07fa6d0c915b14a1b64082c3e| |dprint-x86\_64-pc-windows-msvc-installer.exe|42c5efbbec24062c82e241a80743288552873a0242b55acffb1d3c64c2f57d78| |dprint-x86\_64-unknown-linux-gnu.zip|ae2e4c6530994218a07440ba2245b6106fb137093b15d3703dbf83509a8af2ba| |dprint-x86\_64-unknown-linux-musl.zip|069c27da39ebb3c7227643cec6e4efec38f4e3ad8cef61290482e8a3e2702655| |dprint-aarch64-unknown-linux-gnu.zip|608d1241acb4392b997677c7c5d96e25dca3ec5d3557f8e632de243ad83b75d6| |dprint-aarch64-unknown-linux-musl.zip|e4fb458f1affc0c8e81cb2e158144672eb5c6bc3064a48bb32f0fbd57c2c9aee|

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

vercel[bot] commented 11 months ago

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

Name Status Preview Comments Updated (UTC)
lrc-maker ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 15, 2024 0:30am
cloudflare-workers-and-pages[bot] commented 11 months ago

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: 2817f42
Status: ✅  Deploy successful!
Preview URL: https://81591a5f.lrc-maker.pages.dev
Branch Preview URL: https://renovate-dprint-0-x.lrc-maker.pages.dev

View logs

netlify[bot] commented 11 months ago

Deploy Preview for lrc-maker ready!

Name Link
Latest commit 2817f4252ed725756fab461ac8452c616e004157
Latest deploy log https://app.netlify.com/sites/lrc-maker/deploys/65a5256e671a32000844c21b
Deploy Preview https://deploy-preview-104--lrc-maker.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.