Skip to content

fix(deps): update all non-major dependencies

SWE Renovate requested to merge renovate/all-minor-patch into master

This MR contains the following updates:

Package Type Update Change
git.psu.edu/swe-golang/psu-security-operator require minor v0.6.1 -> v0.13.0
github.com/distribution/distribution replace minor v2.7.1+incompatible -> v2.8.3+incompatible
github.com/fatih/color require minor v1.12.0 -> v1.16.0
github.com/fluxcd/helm-operator require patch v1.4.0 -> v1.4.4
github.com/spf13/cobra require minor v1.2.1 -> v1.8.0
k8s.io/apimachinery require minor v0.22.1 -> v0.30.0
sigs.k8s.io/yaml require minor v1.2.0 -> v1.4.0

Release Notes

swe-golang/psu-security-operator (git.psu.edu/swe-golang/psu-security-operator)

<code data-sourcepos="20:7-20:13">v0.13.0</code>

Compare Source

<code data-sourcepos="24:7-24:13">v0.12.1</code>

Compare Source

<code data-sourcepos="28:7-28:13">v0.12.0</code>

Compare Source

<code data-sourcepos="32:7-32:13">v0.11.1</code>

Compare Source

<code data-sourcepos="36:7-36:13">v0.11.0</code>

Compare Source

<code data-sourcepos="40:7-40:13">v0.10.1</code>

Compare Source

<code data-sourcepos="44:7-44:13">v0.10.0</code>

Compare Source

<code data-sourcepos="48:7-48:12">v0.9.1</code>

Compare Source

<code data-sourcepos="52:7-52:12">v0.9.0</code>

Compare Source

<code data-sourcepos="56:7-56:12">v0.8.2</code>

Compare Source

<code data-sourcepos="60:7-60:12">v0.8.1</code>

Compare Source

<code data-sourcepos="64:7-64:12">v0.8.0</code>

Compare Source

<code data-sourcepos="68:7-68:12">v0.7.1</code>

Compare Source

<code data-sourcepos="72:7-72:12">v0.7.0</code>

Compare Source

distribution/distribution (github.com/distribution/distribution)

v2.8.3+incompatible

Compare Source

v2.8.2+incompatible

Compare Source

v2.8.1+incompatible

Compare Source

v2.8.0+incompatible

Compare Source

fatih/color (github.com/fatih/color)

v1.16.0

Compare Source

What's Changed

Dependency updates

New Contributors

Full Changelog: https://github.com/fatih/color/compare/v1.15.0...v1.16.0

v1.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/fatih/color/compare/v1.14.1...v1.15.0

v1.14.1

Compare Source

What's Changed

Full Changelog: https://github.com/fatih/color/compare/v1.14.0...v1.14.1

v1.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/fatih/color/compare/v1.13.0...v1.14.0

v1.13.0

Compare Source

This release updates the following dependencies:

github.com/mattn/go-colorable v0.1.9
github.com/mattn/go-isatty v0.0.14
fluxcd/helm-operator (github.com/fluxcd/helm-operator)

v1.4.4: Helm operator 1.4.4

Compare Source

This release of Helm Operator removes the telemetry collection in accordance with the CNCF's published policies against default telemetry. Some deprecation notices are now emitted by the installer, please upgrade to Flux v2 or open an issue if you are blocked.

The Helm Operator has been rebuilt against a fresh base image and had its dependencies updated in order to mitigate upstream CVEs.

Maintenance

Helm Operator and Flux v1 are in maintenance: Please note, while we continue the Helm Operator support, there are some known issues in Helm Operator that cannot be addressed. Users are advised strongly to plan their infrastructure upgrades and migrate to Flux v2 and Helm Controller as soon as possible, as Helm Operator will soon no longer be maintained.

v1.4.3: Helm operator 1.4.3

Compare Source

This release of Helm Operator has no internal changes; the Helm Operator has been rebuilt against a fresh base image and had its dependencies updated in order to mitigate upstream CVEs.

Maintenance

Helm Operator and Flux v1 are in maintenance:

Please note, while we continue the Helm Operator support, there are some known issues in Helm Operator that cannot be addressed. Users are advised strongly to plan their infrastructure upgrades and migrate to Flux v2 and Helm Controller as soon as possible, as Helm Operator will soon no longer be maintained.

v1.4.2

Compare Source

v1.4.1

Compare Source

spf13/cobra (github.com/spf13/cobra)

v1.8.0

Compare Source

Features

🐛 Bug fixes

🔧 Maintenance

🧪 Testing & CI/CD

️ Documentation


Thank you everyone who contributed to this release and all your hard work! Cobra and this community would never be possible without all of you!!!! 🐍

Full Changelog: https://github.com/spf13/cobra/compare/v1.7.0...v1.8.0

v1.7.0

Compare Source

Features
🐛 Bug fixes
🧪 Testing & CI/CD
🔧 Maintenance
️ Documentation

This release contains several long running fixes, improvements to powershell completions, and further optimizations for completions.

Thank you everyone who contributed to this release and all your hard work! Cobra and this community would never be possible without all of you! 🐍

Full changelog: https://github.com/spf13/cobra/compare/v1.6.1...v1.7.0

v1.6.1

Compare Source

Bug fixes 🐛
  • Fixes a panic when AddGroup isn't called before AddCommand(my-sub-command) is executed. This can happen within more complex cobra file structures that have many different inits to be executed. Now, the check for groups has been moved to ExecuteC and provides more flexibility when working with grouped commands - @​marckhouzam (and shout out to @​aawsome, @​andig and @​KINGSABRI for a deep investigation into this! 👏🏼)

v1.6.0

Compare Source

Summer 2022 Release

Some exciting changes make their way to Cobra! Command completions continue to get better and better (including adding --help and --version automatic flags to the completions list). Grouping is now possible in your help output as well! And you can now use the OnFinalize method to cleanup things when all "work" is done. Checkout the full changelog below:


Features 🌠
Deprecation 👎🏼
  • ExactValidArgs is deprecated (but not being removed entirely). This is abit nuanced, so checkout #​1643 for further information and the updated user_guide.md on how this may affect you (and how you can take advantage of the correct behavior in the validators): @​umarcor #​1643
Bug fixes 🐛
Dependencies 🗳
Testing 🤔
Docs
Misc 💭

Note: Per #​1804, we will be moving away from "seasonal" releases and doing more generic point release targets. Continue to track the milestones and issues in the spf13/cobra GitHub repository for more information!

Great work everyone! Cobra would never be possible without your contributions! 🐍

Full Changelog: https://github.com/spf13/cobra/compare/v1.5.0...v1.6.0

v1.5.0

Compare Source

Spring 2022 Release 🌥

Hello everyone! Welcome to another release of cobra. Completions continue to get better and better. This release adds a few really cool new features. We also continue to patch versions of our dependencies as they become available via dependabot. Happy coding!

Active help 👐🏼

Shout out to @​marckhouzam for a big value add: Active Help https://github.com/spf13/cobra/pull/1482. With active help, a program can provide some inline warnings or hints for users as they hit tab. Now, your CLIs can be even more intuitive to use!

Currently active help is only supported for bash V2 and zsh. Marc wrote a whole guide on how to do this, so make sure to give it a good read to learn how you can add this to your cobra code! https://github.com/spf13/cobra/blob/master/active_help.md

Group flags 🧑🏼🤝‍🧑🏼

Cobra now has the ability to mark flags as required or exclusive as a group. Shout out to our newest maintainer @​johnSchnake for this! https://github.com/spf13/cobra/pull/1654 Let's say you have a username flag that MUST be partnered with a password flag. Well, now, you can enforce those as being required together:

rootCmd.Flags().StringVarP(&u, "username", "u", "", "Username (required if password is set)")
rootCmd.Flags().StringVarP(&pw, "password", "p", "", "Password (required if username is set)")
rootCmd.MarkFlagsRequiredTogether("username", "password")

Flags may also be marked as "mutally exclusive" with the MarkFlagsMutuallyExclusive(string, string ... ) command API. Refer to our user guide documentation for further info!

Completions 👀

Documentation 📝

Testing & CI

Beep boop, bot commits 🤖

Misc 💭

Shoutout to ALL our contributors (and all the new first time contributors!!) - great work everyone!! Cobra and it's huge impact wouldn't be possible without you 👏🏼 🚀 🐍

Full Changelog: https://github.com/spf13/cobra/compare/v1.4.0...v1.5.0

v1.4.0

Compare Source

Winter 2022 Release

Another season, another release!

Goodbye viper! 🐍 🚀

The core Cobra library no longer requires Viper and all of its indirect dependencies. This means that Cobra's dependency tree has been drastically thinned! The Viper dependency was included because of the cobra CLI generation tool. This tool has migrated to spf13/cobra-cli.

It's pretty unlikely you were importing and using the bootstrapping CLI tool as part of your application (after all, it's just a tool to get going with core cobra).

But if you were, replace occurrences of

"github.com/spf13/cobra/cobra"

with

"github.com/spf13/cobra-cli"

And in your go.mod, you'll want to also include this dependency:

github.com/spf13/cobra-cli v1.3.0

Again, the maintainers do not anticipate this being a breaking change to users of the core cobra library, so minimal work should be required for users to integrate with this new release. Moreover, this means the dependency tree for your application using Cobra should no longer require dependencies that were inherited from Viper. Huzzah! 🥳

If you'd like to read more

Documentation 📝

Other 💭

Shoutout to our awesome contributors helping to make this cobra release possible!! @​spf13 @​marckhouzam @​johnSchnake @​jpmcb @​liggitt @​umarcor @​hiljusti @​marians @​shyim @​htroisi

v1.3.0

Compare Source

v1.3.0 - The Fall 2021 release 🍁

Completion fixes & enhancements 💇🏼

In v1.2.0, we introduced a new model for completions. Thanks to everyone for trying it, giving feedback, and providing numerous fixes! Continue to work with the new model as the old one (as noted in code comments) will be deprecated in a coming release.

  • DisableFlagParsing now triggers custom completions for flag names #​1161
  • Fixed unbound variables in bash completions causing edge case errors #​1321
  • help completion formatting improvements & fixes #​1444
  • All completions now follow the help example: short desc are now capitalized and removes extra spacing from long description #​1455
  • Typo fixes in bash & zsh completions #​1459
  • Fixed mixed tab/spaces indentation in completion scripts. Now just 4 spaces #​1473
  • Support for different bash completion options. Bash completions v2 supports descriptions and requires descriptions to be removed for menu-complete, menu-complete-backward and insert-completions. These descriptions are now purposefully removed in support of this model. #​1509
  • Fix for invalid shell completions when using ~/.cobra.yaml. Log message Using config file: ~/.cobra.yaml now printed to stderr #​1510
  • Removes unnecessary trailing spaces from completion command descriptions #​1520
  • Option to hide default completion command #​1541
  • Remove __complete command for programs without subcommands #​1563

Generator changes

Thanks to @​spf13 for providing a number of changes to the Cobra generator tool, streamlining it for new users!

  • The Cobra generator now won't automatically include Viper and cleans up a number of unused imports when not using Viper.
  • The Cobra generator's default license is now none
  • The Cobra generator now works with Go modules
  • Documentation to reflect these changes

New Features

  • License can be specified by their SPDX identifiers #​1159
  • MatchAll allows combining several PositionalArgs to work in concert. This now allows for enabling composing PositionalArgs #​896

Bug Fixes 🐛

Testing 👀

  • Now testing golang 1.16.x and 1.17.x in CI #​1425
  • Fix for running diff test to ignore CR for windows #​949
  • Added helper functions and reduced code reproduction in args_test #​1426
  • Now using official golangci-lint github action #​1477

Security 🔏

Documentation 📝

  • Multiple projects added to the projects_using_cobra.md file: #​1377 #​1501 #​1454
  • Removed ToC from main readme file as it is now automagically displayed by GitHub #​1429
  • Documentation correct for when the --author flag is specified #​1009
  • shell_completions.md has an easier to use snippet for copying and pasting shell completions #​1372

Other 💭

  • Bump version of cpuguy83/go-md2man to v2.0.1 #​1460
  • Removed lesser typo from the GPL-2.0 license #​880
  • Fixed spelling errors #​1514

Thank you to all our amazing contributors 🐍🚀

kubernetes/apimachinery (k8s.io/apimachinery)

v0.30.0

Compare Source

v0.29.4

Compare Source

v0.29.3

Compare Source

v0.29.2

Compare Source

v0.29.1

Compare Source

v0.29.0

Compare Source

v0.28.9

Compare Source

v0.28.8

Compare Source

v0.28.7

Compare Source

v0.28.6

Compare Source

v0.28.5

Compare Source

v0.28.4

Compare Source

v0.28.3

Compare Source

v0.28.2

Compare Source

v0.28.1

Compare Source

v0.28.0

Compare Source

v0.27.13

Compare Source

v0.27.12

Compare Source

v0.27.11

Compare Source

v0.27.10

Compare Source

v0.27.9

Compare Source

v0.27.8

Compare Source

v0.27.7

Compare Source

v0.27.6

Compare Source

v0.27.5

Compare Source

v0.27.4

Compare Source

v0.27.3

Compare Source

v0.27.2

Compare Source

v0.27.1

Compare Source

v0.27.0

Compare Source

v0.26.15

Compare Source

v0.26.14

Compare Source

v0.26.13

Compare Source

v0.26.12

Compare Source

v0.26.11

Compare Source

v0.26.10

Compare Source

v0.26.9

Compare Source

v0.26.8

Compare Source

v0.26.7

Compare Source

v0.26.6

Compare Source

v0.26.5

Compare Source

v0.26.4

Compare Source

v0.26.3

Compare Source

v0.26.2

Compare Source

v0.26.1

Compare Source

v0.26.0

Compare Source

v0.25.16

Compare Source

v0.25.15

Compare Source

v0.25.14

Compare Source

v0.25.13

Compare Source

v0.25.12

Compare Source

v0.25.11

Compare Source

v0.25.10

Compare Source

v0.25.9

Compare Source

v0.25.8

Compare Source

v0.25.7

Compare Source

v0.25.6

Compare Source

v0.25.5

Compare Source

v0.25.4

Compare Source

v0.25.3

Compare Source

v0.25.2

Compare Source

v0.25.1

Compare Source

v0.25.0

Compare Source

v0.24.17

Compare Source

v0.24.16

Compare Source

v0.24.15

Compare Source

v0.24.14

Compare Source

v0.24.13

Compare Source

v0.24.12

Compare Source

v0.24.11

Compare Source

v0.24.10

Compare Source

v0.24.9

Compare Source

v0.24.8

Compare Source

v0.24.7

Compare Source

v0.24.6

Compare Source

v0.24.5

Compare Source

v0.24.4

Compare Source

v0.24.3

Compare Source

v0.24.2

Compare Source

v0.24.1

Compare Source

v0.24.0

Compare Source

v0.23.17

Compare Source

v0.23.16

Compare Source

v0.23.15

Compare Source

v0.23.14

Compare Source

v0.23.13

Compare Source

v0.23.12

Compare Source

v0.23.11

Compare Source

v0.23.10

Compare Source

v0.23.9

Compare Source

v0.23.8

Compare Source

v0.23.7

Compare Source

v0.23.6

Compare Source

v0.23.5

Compare Source

v0.23.4

Compare Source

v0.23.3

Compare Source

v0.23.2

Compare Source

v0.23.1

Compare Source

v0.23.0

Compare Source

v0.22.17

Compare Source

v0.22.16

Compare Source

v0.22.15

Compare Source

v0.22.14

Compare Source

v0.22.13

Compare Source

v0.22.12

Compare Source

v0.22.11

Compare Source

v0.22.10

Compare Source

v0.22.9

Compare Source

v0.22.8

Compare Source

v0.22.7

Compare Source

v0.22.6

Compare Source

v0.22.5

Compare Source

v0.22.4

Compare Source

v0.22.3

Compare Source

v0.22.2

Compare Source

kubernetes-sigs/yaml (sigs.k8s.io/yaml)

v1.4.0

Compare Source

  • Adds a goyaml.v2 subpackage containing a fork of gopkg.in/yaml.v2 at v2.4.0
  • Adds a goyaml.v3 subpackage containing a fork of gopkg.in/yaml.v3 at v3.0.1
  • Adds an Encoder#CompactSeqIndent() encoder option to sigs.k8.io/goyaml.v3 to allow opting into indentation compatible with gopkg.in/yaml.v2

v1.3.0

Compare Source

Updates minimum required version of gopkg.in/yaml.v2 to v2.4.0


Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Edited by SWE Renovate

Merge request reports