Skip to content
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

Bump the minor group in /automap with 5 updates #454

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

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> for LogSpecification.

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, use std::sync::OnceLock instead.

Bump minimal supported rust version to 1.70.

If flexi_logger runs into issues itself, it will try to write error messages into the configured error output channel. By default, flexi_logger panics 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 kv allows making use of the kv feature of log together with flexi_loggers format functions, and adds a dependency to log/kv_serde.

The new feature json adds a format function json_format and dependencies to serde_json, serde and serde_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

Updates lazy_static from 1.4.0 to 1.5.0

Commits

Updates pretty-hex from 0.1.1 to 0.4.1

Commits
  • 2552b74 Bump version
  • 1964235 Merge pull request #12 from rursprung/enable-dependabot
  • 0760dc0 Merge pull request #11 from rursprung/update-heapless
  • f5792ce enable GitHub Dependabot
  • e9b6d77 update to heapless=0.8
  • e55ed42 Bump version
  • 4a889b6 Merge pull request #10 from matcap/master
  • 4d79020 check for underflow when calculating maximum address prefix
  • 78e0aad variable address prefix width
  • 15a9e67 optional 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_atfork return value with panic on error (#1178)
  • More robust reseeding in case ReseedingRng is used from a fork handler (#1178)
  • Fix nightly: remove unused slice_partition_at_index feature (#1215)
  • Fix nightly + simd_support: update packed_simd (#1216)

Rngs

  • StdRng: Switch from HC128 to ChaCha12 on emscripten (#1142). We now use ChaCha12 on all platforms.

Documentation

  • Added docs about rand's use of const generics (#1150)
  • Better random chars example (#1157)

[0.8.4] - 2021-06-15

Additions

  • Use const-generics to support arrays of all sizes (#1104)
  • Implement Clone and Copy for Alphanumeric (#1126)
  • Add Distribution::map to derive a distribution using a closure (#1129)
  • Add Slice distribution (#1107)
  • Add DistString trait with impls for Standard and Alphanumeric (#1133)

Other

  • Reorder asserts in Uniform float distributions for easier debugging of non-finite arguments (#1094, #1108)
  • Add range overflow check in Uniform float distributions (#1108)
  • Deprecate rngs::adapter::ReadRng (#1130)

[0.8.3] - 2021-01-25

Fixes

  • Fix no-std + alloc build by gating choose_multiple_weighted on std (#1088)

[0.8.2] - 2021-01-12

Fixes

  • Fix panic in UniformInt::sample_single_inclusive and Rng::gen_range when providing a full integer range (eg 0..=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

  • The minimum supported Rust version is now 1.36 (#1011)
  • getrandom updated to v0.2 (#1041)
  • Remove wasm-bindgen and stdweb feature flags. For details of WASM support,

... (truncated)

Commits
  • 937320c Update CHANGELOG for 0.8.5 (#1221)
  • 2924af6 Merge pull request #1183 from vks/fill-float-doc
  • dbbc1bf Merge pull request #1218 from Will-Low/master
  • 9f20df0 Making distributions comparable by deriving PartialEq. Tests included
  • a407bdf Merge pull request #1216 from rust-random/work5
  • d3ca11b Update to packed_simd_2 0.3.7
  • fa04c15 Merge pull request #1215 from Lantern-chat/master
  • 73f8ffd Remove unused slice_partition_at_index feature
  • 8f37250 Merge pull request #1208 from newpavlov/rand_distr/fix_no_std
  • 9ef737b update 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 when RegexSet::matches(..).matched_any() returns true).

Bug fixes:

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:

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:

... (truncated)

Commits
  • f39ab4d 1.9.4
  • 3f15f1c deps: bump regex-syntax and regex-automata versions
  • 89b452a regex-automata-0.3.7
  • 990979b regex-syntax-0.7.5
  • e008f83 changelog: 1.9.4
  • c788378 ci: drop mips, add powerpc and s390x
  • de03399 automata: fix incorrect use of Aho-Corasick's "standard" semantics
  • 7536e05 syntax: remove superfluous borrow
  • 81e328a doc: fix typo in module-level doc
  • 10faa44 doc: 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Bumps the minor group in /automap with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [flexi_logger](https://github.com/emabee/flexi_logger) | `0.17.1` | `0.28.5` |
| [lazy_static](https://github.com/rust-lang-nursery/lazy-static.rs) | `1.4.0` | `1.5.0` |
| [pretty-hex](https://github.com/wolandr/pretty-hex) | `0.1.1` | `0.4.1` |
| [rand](https://github.com/rust-random/rand) | `0.7.3` | `0.8.5` |
| [regex](https://github.com/rust-lang/regex) | `1.8.1` | `1.9.4` |


Updates `flexi_logger` from 0.17.1 to 0.28.5
- [Changelog](https://github.com/emabee/flexi_logger/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emabee/flexi_logger/commits)

Updates `lazy_static` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/rust-lang-nursery/lazy-static.rs/releases)
- [Commits](rust-lang-nursery/lazy-static.rs@1.4.0...1.5.0)

Updates `pretty-hex` from 0.1.1 to 0.4.1
- [Commits](wolandr/pretty-hex@v0.1.1...v0.4.1)

Updates `rand` from 0.7.3 to 0.8.5
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.7.3...0.8.5)

Updates `regex` from 1.8.1 to 1.9.4
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.8.1...1.9.4)

---
updated-dependencies:
- dependency-name: flexi_logger
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: lazy_static
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: pretty-hex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: rand
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants