Releases: rancher/wrangler
Releases · rancher/wrangler
v2.1.2
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
- @galal-hussein made their first contribution in #315
Full Changelog: v2.1.0...v2.1.2
v2.0.2
Wrangler v2
This is the first release of Wrangler v2 that includes breaking changes from v1.
Breaking Changes
- 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.
- 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
- Wrangler CI by @KevinJoiner in #270
- Bump golang.org/x/tools from 0.1.12 to 0.6.0 by @dependabot in #269
- Adding a section to the README on releases and where updates happen by @mattfarina in #274
- Fix CI testing by @mattfarina in #278
- Moving linting to GitHub Actions by @mattfarina in #276
- Generic controllers by @KevinJoiner in #264
- Bump github.com/sirupsen/logrus from 1.8.1 to 1.9.0 by @dependabot in #246
- Fix typo for word "annotate" by @tlehman in #280
- Bump golang.org/x/net from 0.6.0 to 0.7.0 by @dependabot in #273
- Add test to Controller implemented Client methods. by @KevinJoiner in #283
- Bump actions/setup-go from 3 to 4 by @dependabot in #290
- Add documentation to name.Limit by @manno in #279
- Fix schema generation for IntOrString by @brandond in #298
- Update release info in README.md by @rmweir in #293
- Wrangler client with impersonation by @KevinJoiner in #303
- Crd generation by @KevinJoiner in #310
- Update v2 2.0 by @rmweir in #318
New Contributors
- @dependabot made their first contribution in #269
- @tlehman made their first contribution in #280
Full Changelog: v1.1.0...v2.0.2
v1.1.1
What's Changed
- Wrangler CI by @KevinJoiner in #270
- Bump golang.org/x/tools from 0.1.12 to 0.6.0 by @dependabot in #269
- Merge security fix and ci add by @rmweir in #275
Full Changelog: v1.1.0...v1.1.1
v1.1.0
What's Changed
- fix truncated job annotations by @luthermonson in #206
- Updating the go.mod to include indirect deps by @mattfarina in #211
- Remove beta from README by @KevinJoiner in #212
- Add dependabot config by @manno in #207
- Add to README by @rmweir in #220
- Adds webhook documentation and makes Request fully public. by @KevinJoiner in #226
- leaderelection: exit 0 when exit requested by @mattfarina in #240
- Leader election: do not wait 2 hours for retry, even in dev mode by @moio in #232
- Support k8s 1.25 by @jiaqiluo in #241
- go generate by @rmweir in #242
- Fix CreateUnknownIfNotExists to work on status objects by @jakefhyde in #253
- [Forwardport] v2.7: Add function to copy factory and add user agent by @rmweir in #254
- Add codegen for EndpointSlices (discovery.k8s.io) by @brandond in #257
- Fix git reset command by @KevinJoiner in #263
New Contributors
- @mattfarina made their first contribution in #211
- @moio made their first contribution in #232
- @jiaqiluo made their first contribution in #241
- @jakefhyde made their first contribution in #253
Full Changelog: v1.0.2...v1.1.0
v1.0.0
v0.8.10
What's Changed
- Fixed distinct namespaces resolution in Apply by @snasovich in #187
Full Changelog: v0.8.9...v0.8.10
v0.8.9
What's Changed
- fixed permissions errors when applying multiple namespaces by @paynejacob in #183
New Contributors
- @paynejacob made their first contribution in #183
Full Changelog: v0.8.8...v0.8.9
v0.8.8
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
Expand apply debug log
v0.8.5: Merge pull request #174 from watjt/bugfix_ticker_context
fix goroutine leaks, when using 'for range ticker.Context()' in gorou…