Skip to content

Releases: rancher/wrangler

v2.1.3

06 Feb 17:40
eb3864d
Compare
Choose a tag to compare

What's Changed

  • [release-2.1] Use indexer when listing cached types by hash by @aruiz14 in #355
  • [release-2.1] Allow GeneratingHandlers to skip Apply if resource version didn't change by @aruiz14 in #356
  • [v1.28] Cherry pick from master | Bump dependencies to support k8s 1.28 by @chiukapoor in #358

Full Changelog: v2.1.2...v2.1.3

v1.1.2

10 Jan 15:44
b5a5a52
Compare
Choose a tag to compare

What's Changed

  • [v1.1] Fix CI by @aruiz14 in #352
  • [v1.1] Use indexer when listing cached types by hash by @aruiz14 in #324
  • [v1.1] Allow GeneratingHandlers to skip Apply if resource version didn't change by @aruiz14 in #351

Full Changelog: v1.1.1...v1.1.2

v2.1.2

10 Jan 14:22
060ae2b
Compare
Choose a tag to compare

Wrangle v2 with client-go == v0.28

What's Changed

  • [Backport]: Configurable leader election 2.1 by @rmweir in #329
  • update client-go to 0.28 and update resource lease lock by @galal-hussein in #315

New Contributors

Full Changelog: v2.1.0...v2.1.2

v2.0.2

10 Jan 14:45
548af4d
Compare
Choose a tag to compare

Wrangler v2

This is the first release of Wrangler v2 that includes breaking changes from v1.

Breaking Changes

  1. Generic controllers by @KevinJoiner in #264
    • This Change is only breaking because the generated files for Controllers and Clients changed.
    • The interface signature and logic for the clients and Controllers were left intact and are backward compatible with Wrangler v1.1 Client and Controller interface. This means this change should not require any changes to code using Wrangler Clients or Controllers.
  2. Removes git pkg by @KevinJoiner in #289
    • This change removes the wrangler's git package. Wrangler does not provide an alternative git package and instead recommends users use a supported git library such as https://github.com/go-git/go-git

What's Changed

New Contributors

Full Changelog: v1.1.0...v2.0.2

v1.1.1

25 Apr 04:49
8a1858d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.1.1

v1.1.0

21 Feb 18:02
76adc44
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.2...v1.1.0

v1.0.0

05 Jul 18:12
5167c04
Compare
Choose a tag to compare

What's Changed

  • Breaking change to add 1.24 functionality. See: 6bd33ae

Full Changelog: v0.8.10...v1.0.0

v0.8.10

30 Nov 20:24
6970ad9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.8.9...v0.8.10

v0.8.9

11 Nov 22:26
a8647af
Compare
Choose a tag to compare

What's Changed

  • fixed permissions errors when applying multiple namespaces by @paynejacob in #183

New Contributors

Full Changelog: v0.8.8...v0.8.9

v0.8.8

04 Nov 02:44
9460166
Compare
Choose a tag to compare

Added new signals pkg with shutdown func for windows services. The SetupSignalHandler now returns a channel so if you are using something like...

ctx := signals.SetupSignalHandler(context.Background())

There is now a func that returns the context that will do the context.Background call for you so switch to

ctx := signals.SetupSignalContext()