kwctl
kwctl copied to clipboard
build(deps): update all minor level dependencies
This PR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
flate2 | dependencies | minor | 1.0.35 -> 1.1.0 |
pulldown-cmark | dependencies | minor | 0.12.1 -> 0.13.0 |
taiki-e/install-action | action | minor | v2.48.22 -> v2.49.5 |
tempfile (source) | dev-dependencies | minor | 3.16.0 -> 3.17.1 |
Release Notes
rust-lang/flate2-rs (flate2)
v1.1.0
What's Changed
- Fix cfgs by @kornelski in https://github.com/rust-lang/flate2-rs/pull/441
- update CI to use new wasi target by @oyvindln in https://github.com/rust-lang/flate2-rs/pull/444
- Implement
Clone
forCompressError
andDecompressError
by @mkrasnitski in https://github.com/rust-lang/flate2-rs/pull/445 - Update LICENSE-MIT by @maximevtush in https://github.com/rust-lang/flate2-rs/pull/448
- feat: replace custom u16 le parser with existent rust method by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/450
- Fix CI by @Byron in https://github.com/rust-lang/flate2-rs/pull/449
- Do not use cloudflare-zlib-sys 0.3.4 by @jongiddy in https://github.com/rust-lang/flate2-rs/pull/451
- Increase minimum compiler version to 1.67 by @jongiddy in https://github.com/rust-lang/flate2-rs/pull/452
- deps: bump miniz_oxide to 0.8.4 by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/459
- deps(dev): update rand to 0.9 by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/458
- docs: fix spelling mistake in flate2::zlib::write::ZlibDecoder by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/455
- feat: remove explicit default impls by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/457
- Change private bounds from
R: Read
toR: BufRead
by @JonathanBrouwer in https://github.com/rust-lang/flate2-rs/pull/453 - feat: replace manual copy loop with rust-provided function by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/456
- feat: reduce CrcReader::sum calls in GzEncoder::read_footer by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/454
- feat: remove redundant if guard on option value match by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/464
- feat: add Error associated type in zio::Ops to handle multiple errors by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/461
- feat: remove explicit redundant lifetime by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/465
- feat: impl From<Flush> to MZFlush by @CosminPerRam in https://github.com/rust-lang/flate2-rs/pull/462
- upgrade zlib-rs to version
0.4.2
by @folkertdev in https://github.com/rust-lang/flate2-rs/pull/466
New Contributors
- @mkrasnitski made their first contribution in https://github.com/rust-lang/flate2-rs/pull/445
- @maximevtush made their first contribution in https://github.com/rust-lang/flate2-rs/pull/448
- @CosminPerRam made their first contribution in https://github.com/rust-lang/flate2-rs/pull/450
- @JonathanBrouwer made their first contribution in https://github.com/rust-lang/flate2-rs/pull/453
Full Changelog: https://github.com/rust-lang/flate2-rs/compare/1.0.35...1.1.0
raphlinus/pulldown-cmark (pulldown-cmark)
v0.13.0
Breaking Changes
- super and sub script support by @jim-taylor-business in https://github.com/pulldown-cmark/pulldown-cmark/pull/966
- Implement extension WikiLinks;
Options::ENABLE_WIKILINKS
by @frostu8 in https://github.com/pulldown-cmark/pulldown-cmark/pull/991
New Features
- feat: add
-D
CLI option to enable definition lists by @ytmimi in https://github.com/pulldown-cmark/pulldown-cmark/pull/972
Bug Fixes and Code Enhancements
- Safer definition lists implementation by @mondeja in https://github.com/pulldown-cmark/pulldown-cmark/pull/974
- Factor duplicate code out of parsers by @notriddle in https://github.com/pulldown-cmark/pulldown-cmark/pull/976
- Stop using string slicing for math where bytes will do by @notriddle in https://github.com/pulldown-cmark/pulldown-cmark/pull/977
- Make indent calc for definition lists match commonmark-hs closer by @notriddle in https://github.com/pulldown-cmark/pulldown-cmark/pull/978
- Ensure "parse" fuzz target covers all options by @ollpu in https://github.com/pulldown-cmark/pulldown-cmark/pull/980
- Change subscript CLI flag to -B by @ollpu in https://github.com/pulldown-cmark/pulldown-cmark/pull/993
- Fix OOB access due to erroneous shift in process_mask by @ollpu in https://github.com/pulldown-cmark/pulldown-cmark/pull/990
- Use slice patterns for
unescape
by @notriddle in https://github.com/pulldown-cmark/pulldown-cmark/pull/996 - Use slice patterns for
scan_eol
by @notriddle in https://github.com/pulldown-cmark/pulldown-cmark/pull/998 - Stop using scan_ch when get will do by @notriddle in https://github.com/pulldown-cmark/pulldown-cmark/pull/1003
- Fix panic when symbols are present in wikilink before pipe by @frostu8 in https://github.com/pulldown-cmark/pulldown-cmark/pull/1004
- Added a WASM build step to github actions #1005 by @rimutaka in https://github.com/pulldown-cmark/pulldown-cmark/pull/1006
- Use an explicit node for tight paragraphs by @notriddle in https://github.com/pulldown-cmark/pulldown-cmark/pull/1015
- Fix tasklist parsing bugs by @notriddle in https://github.com/pulldown-cmark/pulldown-cmark/pull/1017
- Prevent definition list defs from interrupting non-paragraphs by @notriddle in https://github.com/pulldown-cmark/pulldown-cmark/pull/1018
Docs
- Add basic skeleton for developer docs by @systemsoverload in https://github.com/pulldown-cmark/pulldown-cmark/pull/988
- docs: Added a doc-comment for ENABLE_SMART_PUNCTUATION option. by @rimutaka in https://github.com/pulldown-cmark/pulldown-cmark/pull/1007
- Document more Events and Tags by @ModProg in https://github.com/pulldown-cmark/pulldown-cmark/pull/1010
New Contributors
- @ytmimi made their first contribution in https://github.com/pulldown-cmark/pulldown-cmark/pull/972
- @mondeja made their first contribution in https://github.com/pulldown-cmark/pulldown-cmark/pull/974
- @jim-taylor-business made their first contribution in https://github.com/pulldown-cmark/pulldown-cmark/pull/966
- @systemsoverload made their first contribution in https://github.com/pulldown-cmark/pulldown-cmark/pull/988
- @frostu8 made their first contribution in https://github.com/pulldown-cmark/pulldown-cmark/pull/991
- @rimutaka made their first contribution in https://github.com/pulldown-cmark/pulldown-cmark/pull/1006
- @ModProg made their first contribution in https://github.com/pulldown-cmark/pulldown-cmark/pull/1010
Full Changelog: https://github.com/pulldown-cmark/pulldown-cmark/compare/v0.12.2...v0.13.0
taiki-e/install-action (taiki-e/install-action)
v2.49.5
: 2.49.5
-
Update
wasmtime@latest
to 30.0.2. -
Update
release-plz@latest
to 0.3.123.
v2.49.4
: 2.49.4
- Update
typos@latest
to 1.29.10.
v2.49.3
: 2.49.3
-
Update
wash@latest
to 0.39.0. -
Update
cargo-nextest@latest
to 0.9.92.
v2.49.2
: 2.49.2
-
Update
sccache@latest
to 0.10.0. -
Update
cargo-machete@latest
to 0.8.0.
v2.49.1
: 2.49.1
- Update
cargo-deny@latest
to 0.18.0.
v2.49.0
: 2.49.0
- Allow installing pre-release versions using binstall. (#868)
Stebalien/tempfile (tempfile)
v3.17.1
- Fix build with
windows-sys
0.52. Unfortunately, we have no CI for olderwindows-sys
versions at the moment...
v3.17.0
- Make sure to use absolute paths in when creating unnamed temporary files (avoids a small race in the "immediate unlink" logic) and in
Builder::make_in
(when creating temporary files of arbitrary types). - Prevent a theoretical crash that could (maybe) happen when a temporary file is created from a drop function run in a TLS destructor. Nobody has actually reported a case of this happening in practice and I have been unable to create this scenario in a test.
- When reseeding with
getrandom
, use platform (e.g., CPU) specific randomness sources where possible. - Clarify some documentation.
- Unlink unnamed temporary files on windows immediately when possible instead of waiting for the handle to be closed. We open files with "Unix" semantics, so this is generally possible.
Configuration
📅 Schedule: Branch creation - "* 0-4,22-23 * * 1-5,* * * * 0,6" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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 was generated by Mend Renovate. View the repository job log.