Bump the minor group in /automap with 5 updates
Bumps the minor group in /automap with 5 updates:
| Package | From | To |
|---|---|---|
| flexi_logger | 0.17.1 |
0.28.5 |
| lazy_static | 1.4.0 |
1.5.0 |
| pretty-hex | 0.1.1 |
0.4.1 |
| rand | 0.7.3 |
0.8.5 |
| regex | 1.8.1 |
1.9.4 |
Updates flexi_logger from 0.17.1 to 0.28.5
Changelog
Sourced from flexi_logger's changelog.
[0.28.5] - 2024-06-21
Remove unnecessary dependency to
is-terminal.Add impl
From<LevelFilter>forLogSpecification.Kudos to Oakchris1955.
[0.28.4] - 2024-06-14
Fix [issue #162](emabee/flexi_logger#162) (FileLogWriter does not follow its max_level), kudos to JoeWildfong.
[0.28.3] - 2024-06-10
Add special handling for empty current infix to
Naming::TimestampsCustomFormat([issue #161](emabee/flexi_logger#161)).[0.28.2] - 2024-06-09
Add variant
Naming::TimestampsCustomFormat([issue #158](emabee/flexi_logger#158)), kudos to jb-alvarado.[0.28.1] - 2024-06-01
Introduce
flexi_logger::init()as super-minimal entry usage.Update dependencies.
[0.28.0] - 2024-03-16
Detach from
lazy_static, usestd::sync::OnceLockinstead.Bump minimal supported rust version to 1.70.
If
flexi_loggerruns into issues itself, it will try to write error messages into the configured error output channel. By default,flexi_loggerpanics if writing to the error output channel fails. It is now possible to gracefully "swallow" the error messages and continue (see panic_if_error_channel_is_broken).The new feature
kvallows making use of thekvfeature oflogtogether withflexi_loggers format functions, and adds a dependency tolog/kv_serde.The new feature
jsonadds a format functionjson_formatand dependencies toserde_json,serdeandserde_derive.[0.27.4] - 2024-01-20
Add ability to omit the basename cleanly, without leading underscore ([issue #153](emabee/flexi_logger#153),
... (truncated)
Commits
- See full diff in compare view
Updates lazy_static from 1.4.0 to 1.5.0
Commits
be7c1c4point readme version to 1.5.08971a27update readme build badge15691ecModernize lazy-static infra (#219)2660041Merge pull request #206 from TheBotlyNoob/master6ace970Merge pull request #216 from frewsxcv/patch-1a203105Update README.mdcfd89acUpdate README.mdfc8e466Update README.mda8afb21Update README.md41fa234Update README to indicate how to replace withstd::sync::OnceLock- Additional commits viewable in compare view
Updates pretty-hex from 0.1.1 to 0.4.1
Commits
2552b74Bump version1964235Merge pull request #12 from rursprung/enable-dependabot0760dc0Merge pull request #11 from rursprung/update-heaplessf5792ceenable GitHub Dependabote9b6d77update toheapless=0.8e55ed42Bump version4a889b6Merge pull request #10 from matcap/master4d79020check for underflow when calculating maximum address prefix78e0aadvariable address prefix width15a9e67optional offset added to displayed address prefix- Additional commits viewable in compare view
Updates rand from 0.7.3 to 0.8.5
Changelog
Sourced from rand's changelog.
[0.8.5] - 2021-08-20
Fixes
- Fix build on non-32/64-bit architectures (#1144)
- Fix "min_const_gen" feature for
no_std(#1173)- Check
libc::pthread_atforkreturn value with panic on error (#1178)- More robust reseeding in case
ReseedingRngis used from a fork handler (#1178)- Fix nightly: remove unused
slice_partition_at_indexfeature (#1215)- Fix nightly +
simd_support: updatepacked_simd(#1216)Rngs
StdRng: Switch from HC128 to ChaCha12 on emscripten (#1142). We now use ChaCha12 on all platforms.Documentation
[0.8.4] - 2021-06-15
Additions
- Use const-generics to support arrays of all sizes (#1104)
- Implement
CloneandCopyforAlphanumeric(#1126)- Add
Distribution::mapto derive a distribution using a closure (#1129)- Add
Slicedistribution (#1107)- Add
DistStringtrait with impls forStandardandAlphanumeric(#1133)Other
- Reorder asserts in
Uniformfloat distributions for easier debugging of non-finite arguments (#1094, #1108)- Add range overflow check in
Uniformfloat distributions (#1108)- Deprecate
rngs::adapter::ReadRng(#1130)[0.8.3] - 2021-01-25
Fixes
- Fix
no-std+allocbuild by gatingchoose_multiple_weightedonstd(#1088)[0.8.2] - 2021-01-12
Fixes
- Fix panic in
UniformInt::sample_single_inclusiveandRng::gen_rangewhen providing a full integer range (eg0..=MAX) (#1087)[0.8.1] - 2020-12-31
Other
- Enable all stable features in the playground (#1081)
[0.8.0] - 2020-12-18
Platform support
... (truncated)
Commits
937320cUpdate CHANGELOG for 0.8.5 (#1221)2924af6Merge pull request #1183 from vks/fill-float-docdbbc1bfMerge pull request #1218 from Will-Low/master9f20df0Making distributions comparable by deriving PartialEq. Tests includeda407bdfMerge pull request #1216 from rust-random/work5d3ca11bUpdate to packed_simd_2 0.3.7fa04c15Merge pull request #1215 from Lantern-chat/master73f8ffdRemove unusedslice_partition_at_indexfeature8f37250Merge pull request #1208 from newpavlov/rand_distr/fix_no_std9ef737bupdate changelog- Additional commits viewable in compare view
Updates regex from 1.8.1 to 1.9.4
Changelog
Sourced from regex's changelog.
1.9.4 (2023-08-26)
This is a patch release that fixes a bug where
RegexSet::is_match(..)could incorrectly return false (even whenRegexSet::matches(..).matched_any()returns true).Bug fixes:
- [BUG #1070](rust-lang/regex#1070): Fix a bug where a prefilter was incorrectly configured for a
RegexSet.1.9.3 (2023-08-05)
This is a patch release that fixes a bug where some searches could result in incorrect match offsets being reported. It is difficult to characterize the types of regexes susceptible to this bug. They generally involve patterns that contain no prefix or suffix literals, but have an inner literal along with a regex prefix that can conditionally match.
Bug fixes:
- [BUG #1060](rust-lang/regex#1060): Fix a bug with the reverse inner literal optimization reporting incorrect match offsets.
1.9.2 (2023-08-05)
This is a patch release that fixes another memory usage regression. This particular regression occurred only when using a
RegexSet. In some cases, much more heap memory (by one or two orders of magnitude) was allocated than in versions prior to 1.9.0.Bug fixes:
- [BUG #1059](rust-lang/regex#1059): Fix a memory usage regression when using a
RegexSet.1.9.1 (2023-07-07)
This is a patch release which fixes a memory usage regression. In the regex 1.9 release, one of the internal engines used a more aggressive allocation strategy than what was done previously. This patch release reverts to the prior on-demand strategy.
Bug fixes:
- [BUG #1027](rust-lang/regex#1027):
... (truncated)
Commits
f39ab4d1.9.43f15f1cdeps: bump regex-syntax and regex-automata versions89b452aregex-automata-0.3.7990979bregex-syntax-0.7.5e008f83changelog: 1.9.4c788378ci: drop mips, add powerpc and s390xde03399automata: fix incorrect use of Aho-Corasick's "standard" semantics7536e05syntax: remove superfluousborrow81e328adoc: fix typo in module-level doc10faa44doc: fix a couple typos- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency -
@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions