-
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
Update dependency stern/stern to v1.32.0 #125
Open
renovate
wants to merge
1
commit into
develop
Choose a base branch
from
renovate/stern-stern-1.x
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
b546080
to
5ebb8dd
Compare
5ebb8dd
to
acff0af
Compare
acff0af
to
0b2f342
Compare
0b2f342
to
c389325
Compare
c389325
to
19c013a
Compare
19c013a
to
9f0c26f
Compare
9f0c26f
to
c4ab2c6
Compare
c4ab2c6
to
3f264dc
Compare
3f264dc
to
2669c14
Compare
2669c14
to
6c42d5c
Compare
6c42d5c
to
ac8be9a
Compare
ac8be9a
to
f0cc6f3
Compare
f929c05
to
c5421c8
Compare
c5421c8
to
a589b59
Compare
a589b59
to
f1a297f
Compare
f1a297f
to
6fac2c7
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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:
v1.22.0
->v1.32.0
Release Notes
stern/stern (stern/stern)
v1.32.0
Compare Source
⚡ Notable Changes
A new template function
prettyJSON
You can now use a new template function
prettyJSON
that parse input and emit it as pretty printed JSON. If it parse fails output string as is.v1.31.0
Compare Source
Changes
c2b4410
(Takashi Kusumi)a4fdcc9
(Takashi Kusumi)v1.30.0
Compare Source
⚡ Notable Changes
Add support for configuring colors for pods and containers
You can now configure highlight colors for pods and containers in the config file using a comma-separated list of SGR (Select Graphic Rendition) sequences. See the "Customize highlight colors" section for details.
Example configuration:
v1.29.0
Compare Source
⚡ Notable Changes
A new
--stdin
flag for parsing logs from stdinA new
--stdin
flag has been added, allowing parsing logs from stdin. This flag is helpful when applying the same template to local logs.Additionally, this feature helps test your template with arbitrary logs.
Add support for UNIX time with nanoseconds to template functions
The following template functions now support UNIX time seconds with nanoseconds (e.g.,
1136171056.02
).toRFC3339Nano
toTUC
toTimestamp
Changes
0d580ff
(Takashi Kusumi)ac36420
(Takashi Kusumi)c1649ca
(Thomas Güttler)d82cc9f
(Kazuki Suda)--stdin
forstdin
log parsing (#292)53fc746
(Jimmie Högklint)v1.28.0
Compare Source
⚡ Notable Changes
Highlight matched strings in the log lines with the highlight option
Some part of a log line can be highlighted while still displaying all other logs lines.
--highlight
flag now highlight matched strings in the log lines.v1.27.0
Compare Source
⚡ Notable Changes
Add new template function:
toTimestamp
The
toTimestamp
function takes in an object, a layout, and optionally a timezone. This allows for more custom time parsing, for instance, if a user doesn't care about seeing the date of the log and only the time (in their own timezone) they can use a template such as:Add generic kubectl options
stern now has the generic options that kubectl has, and a new
--show-hidden-options
option.The number of kubectl generic options is so large that it makes it difficult to see stern's own list of options, so we usually hide them. Use
--show-hidden-options
if you want to list.Changes
f315819
(Kazuki Suda)5445cd5
(Will Anderson)v1.26.0
Compare Source
⚡ Notable Changes
Add new template functions
The following template functions have been added in v1.26.0:
extractJSONParts
: Parse string as JSON and concatenate the given keystryExtractJSONParts
: Attempt to parse string as JSON and concatenate the given keys, returning text on failureChanges
v1.25.0
Compare Source
⚡ Notable Changes
Add support for the config file
You can now use the config file to change the default values of stern options. The default config file path is
~/.config/stern/config.yaml
.v1.24.0
Compare Source
⚡ Notable Changes
Add a short format for timestamps
--timestamps
flag now accepts a format, one ofdefault
orshort
.default
: the original format2006-01-02T15:04:05.000000000Z07:00
(RFC3339Nano with trailing zeros)short
: the new format01-02 15:04:05
(time.DateTime without year).If
--timestamps
is specified but without value,default
is used to maintain backward compatibility.Add
--node
flag to filter on a specific nodeNew
--node
flag allows you to filter pods on a specific node. This flag will be helpful when we debug pods on the specific node.v1.23.0
Compare Source
New features
Add
--no-follow
flag to exit when all logs have been shownNew
--no-follow
flag allows you to exit when all logs have been shown.Support
<resource>/<name>
form as a queryStern now supports a Kubernetes resource query in the form
<resource>/<name>
. Pod query can still be used.The following Kubernetes resources are supported:
Shell completion of stern already supports this feature.
Add --verbosity flag to set log level verbosity
New
--verbosity
flag allows you to set the log level verbosity of Kubernetes client-go. This feature is useful when you want to know how stern interacts with a Kubernetes API server in troubleshooting.Add --only-log-lines flag to print only log lines
New
--only-log-lines
flag allows you to print only log lines (and errors if occur). The difference between not specifying the flag and specifying it is as follows:Changes
<resource>/<name>
form as a query (#208) 7bc45f0 (Takashi Kusumi)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.