Skip to content

Releases: rancher/wrangler

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()

v0.8.7: Merge pull request #181 from dramich/applylogs

14 Oct 21:16
bf9045f
Compare
Choose a tag to compare

v0.8.5: Merge pull request #174 from watjt/bugfix_ticker_context

04 Aug 23:03
1013bc2
Compare
Choose a tag to compare
fix goroutine leaks, when using 'for range ticker.Context()' in gorou…