-
Notifications
You must be signed in to change notification settings - Fork 0
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
fix(deps): update rust crate flexi_logger to 0.29.0 #168
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [trim-newlines](https://github.com/sindresorhus/trim-newlines) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/sindresorhus/trim-newlines/releases) - [Commits](https://github.com/sindresorhus/trim-newlines/commits) --- updated-dependencies: - dependency-name: trim-newlines dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
…newlines-3.0.1
`flexi_logger` version `0.18.0` broke a lot of stuff, this fixes those broken things.
fix(deps): update rust crate flexi_logger to 0.18.0
Instead of being given the option to start all of the sub-servers (`whirl run` or `whirl run all`), you are now given the option to specify a selection of sub-servers by passing a comma-seperated list to the `run` sub-command (`whirl run distributor,hub`). Despite the changes, `whirl run` still starts all of the available sub-servers!
fix(deps): update rust crate tokio to 1.6.2
I guess at some point I accidentally inserted a newline to the end of the `.license_template` file, don't know how I didn't notice until now but this commit fixes the errors that rustfmt would report.
fix(deps): update rust crate tokio to 1.7.0
Issue came back, reverted commit, issue is gone...
At the moment, the `version` key is never accessed, but once Whirl's "`1.0`" release is out, the configuration schema will need to be standardized, the `version` key will regulate that and also ensure no one is left behind when updating. BREAKING CHANGE: `version` key is created
fix(deps): update rust crate mimalloc to 0.1.26
renovate
bot
force-pushed
the
renovate/flexi_logger-0.x
branch
from
August 25, 2024 19:27
afd226d
to
0e47bec
Compare
renovate
bot
changed the title
fix(deps): update rust crate flexi_logger to 0.28.0
fix(deps): update rust crate flexi_logger to 0.29.0
Aug 25, 2024
renovate
bot
force-pushed
the
renovate/flexi_logger-0.x
branch
from
September 25, 2024 02:52
0e47bec
to
f873066
Compare
Fuwn
force-pushed
the
renovate/flexi_logger-0.x
branch
2 times, most recently
from
October 21, 2024 03:50
55be388
to
f873066
Compare
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update ( If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.22.3
->0.29.0
Release Notes
emabee/flexi_logger (flexi_logger)
v0.29.0
Revised
SyslogWriter
(-> version bump): introduced builder pattern,added a configuration option for the message format
(resolves issue #168, kudos to krims0n32).
LoggerHandle::existing_log_files
now also returns a meaningful result if file rotation is notused. Kudos to drdo for
discussion 170.
v0.28.5
Remove unnecessary dependency to
is-terminal
.Add impl
From<LevelFilter>
forLogSpecification
.Kudos to Oakchris1955.
v0.28.4
Fix issue #162
(FileLogWriter does not follow its max_level), kudos to JoeWildfong.
v0.28.3
Add special handling for empty current infix to
Naming::TimestampsCustomFormat
(issue #161).
v0.28.2
Add variant
Naming::TimestampsCustomFormat
(issue #158),kudos to jb-alvarado.
v0.28.1
Introduce
flexi_logger::init()
as super-minimal entry usage.Update dependencies.
v0.28.0
Detach from
lazy_static
, usestd::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 configurederror 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 thekv
feature oflog
together withflexi_logger
sformat functions, and adds a dependency to
log/kv_serde
.The new feature
json
adds a format functionjson_format
and dependencies toserde_json
,serde
andserde_derive
.v0.27.4
Add ability to omit the basename cleanly, without leading underscore
(issue #153,
kudos to krystejj.
v0.27.3
Fix issue #152.
v0.27.2
Fix wrong timestamp handling for the second rotation (second part of
issue #150).
v0.27.1
Fix issues with sub-second rotations and with cleanup when all logfiles should be compressed
(issue #150).
v0.27.0
Revise, and modify the signature of,
LoggerHande::existing_log_files()
(version bump).Extend the trait
LogWriter
with an optional methodrotate
.Extend impact of
LoggerHande::trigger_rotation()
to all configured writers.v0.26.1
Introduce new naming variants that work without
_rCURRENT
files:Naming::TimestampsDirect
and
Naming::NumbersDirect
(delivers #127).Improve documentation of filename handling.
Introduce
LoggerHandle.trigger_rotation()
(delivers #147).v0.26.0
Re-open output also for other writers (delivers #143).
Rename method to re-open output from LoggerHandle (leads to version bump).
Use
dep:
in Cargo.toml for references to most dependencies, in order to avoid implicit "features".Fix #145 (minor internal optimization).
v0.25.6
Add methods
LoggerHandle::adapt_duplication_to_stderr
andLoggerHandle::adapt_duplication_to_stdout
(realizes issue #142).
Extend docu on providing custom format.
Use rust-script instead of cargo-script for qualification scripts.
Update dependencies.
v0.25.5
Use display (rather than debug) formatting for thread names
(kudos to mpalmer).
v0.25.4
Add
LoggerHandle::existing_log_files()
.v0.25.3
Introduce additional
WriteMode
variantSupportCapture
.v0.25.2
Replace dependency
atty
withis-terminal
, due toRUSTSEC-2021-0145.
v0.25.1
Use chrono's support for rfc3339. Improve tests for
DeferredNow
.v0.25.0
Fix issues #132 and #133.
Update dependencies.
Bump MSRV to 1.60, because toml needs it now.
Improve documentation of feature dependencies.
Minor stuff.
v0.24.2
Move from unmaintained
ansi_term
tonu-ansi-term
.Fix new clippies.
v0.24.1
Some improvements in respect to
use_utc
:v0.24.0
Revert back to using
chrono
, sincechrono
is now fortunately maintained again and its timezonehandling is fixed meanwhile
DeferredNow
use_chrono_for_offset
became obsolete and is removedOn linux and Mac, improve the logic that handles the issue described again in
issue-122.
v0.23.3
Re-introduce
LoggerHandle::clone()
.v0.23.2
Fix security advisory (see #117) by replacing the dependency from
notify 4.0
withnotify-debouncer-mini 0.2
(which depends onnotify 5.0
). As a side-effect,the thread
flexi_logger-specfile-watcher
is replaced withnotify-rs debouncer loop
.Adapt and simplify the submodule
trc
a bit.v0.23.1
Fix a panic that can happen if
Naming::Timestamps
andFileSpec::o_suffix(None)
are used androtation happens within a second (issue-116).
Bump MSRV to 1.59 (because the
time
crate did this).v0.23.0
Switch to edition 2021, use latest patch of
time
version "0.3",bump minimal supported rust version to "1.57.0".
v0.22.6
Add interconversions between log::LevelFilter and flexi_logger::Duplicate
(kudos to rlee287).
v0.22.5
Only depend on the parts of crossbeam that are used (kudos to
bsilver8192).
v0.22.4
Add support for Rfc3164 to
SyslogWriter
(kudos to mbodmer).Add
Clone
andCopy
implementations to enum Duplicate (kudos toComplexSpaces).
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 was generated by Mend Renovate. View the repository job log.