Skip to content
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

Bump kube-derive from 0.69.1 to 0.70.0 in /cmd/pinniped-proxy #4

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 21, 2022

Bumps kube-derive from 0.69.1 to 0.70.0.

Release notes

Sourced from kube-derive's releases.

0.70.0

Highlights

Support for EC keys with rustls

This was one of the big blockers for using rustls against clusters like k3d or k3s While not sufficient to fix using those clusters out of the box, it is now possible to use them with a workarodund

More ergonomic reconciler

The signature and end the Ok action in reconcile fns has been simplified slightly, and requires the following user updates:

-async fn reconcile(obj: Arc<MyObject>, ctx: Context<Data>) -> Result<ReconcilerAction, Error> {
-    ...
-    Ok(ReconcilerAction {
-        requeue_after: Some(Duration::from_secs(300)),
-    })
+async fn reconcile(obj: Arc<MyObject>, ctx: Context<Data>) -> Result<Action, Error> {
+    ...
+    Ok(Action::requeue(Duration::from_secs(300)))

The Action import lives in the same place as the old ReconcilerAction.

What's Changed

Added

Changed

Fixed

New Contributors

Full Changelog: kube-rs/kube@0.69.0...0.70.0

Changelog

Sourced from kube-derive's changelog.

0.70.0 / 2022-03-20

Highlights

Support for EC keys with rustls

This was one of the big blockers for using rustls against clusters like k3d or k3s While not sufficient to fix using those clusters out of the box, it is now possible to use them with a workarodund

More ergonomic reconciler

The signature and end the Ok action in reconcile fns has been simplified slightly, and requires the following user updates:

-async fn reconcile(obj: Arc<MyObject>, ctx: Context<Data>) -> Result<ReconcilerAction, Error> {
-    ...
-    Ok(ReconcilerAction {
-        requeue_after: Some(Duration::from_secs(300)),
-    })
+async fn reconcile(obj: Arc<MyObject>, ctx: Context<Data>) -> Result<Action, Error> {
+    ...
+    Ok(Action::requeue(Duration::from_secs(300)))

The Action import lives in the same place as the old ReconcilerAction.

What's Changed

Added

Changed

Fixed

Commits
  • 4e542a6 release 0.70.0
  • a9d9975 Merge pull request #852 from stackabletech/fix/enum-descriptions
  • 10cfc4b cargo +nightly clippy
  • 98fc31a Remove uneeded .to_string()
  • 2d56b21 Refactor if let clauses. Removed extended docs
  • 07ad307 panic when list of properties has not exactly one item
  • 90b95d7 Always take the description anyway
  • 24fbd19 refactor metadata to use get_or_insert_with
  • dd77a4a Fix invalid CRD when Enum variants have descriptions
  • 931cd48 Change ReconcileAction to Action and add associated ctors (#851)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [kube-derive](https://github.com/kube-rs/kube-rs) from 0.69.1 to 0.70.0.
- [Release notes](https://github.com/kube-rs/kube-rs/releases)
- [Changelog](https://github.com/kube-rs/kube-rs/blob/master/CHANGELOG.md)
- [Commits](kube-rs/kube@0.69.1...0.70.0)

---
updated-dependencies:
- dependency-name: kube-derive
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 21, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 22, 2022

Looks like kube-derive is up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Mar 22, 2022
@dependabot dependabot bot deleted the dependabot/cargo/cmd/pinniped-proxy/kube-derive-0.70.0 branch March 22, 2022 07:04
gfichtenholt added a commit that referenced this pull request Oct 18, 2022
gfichtenholt added a commit that referenced this pull request Oct 22, 2022
…mware-tanzu#2881  (vmware-tanzu#5410)

* integration test intermittent failures

* incremental

* add flux e2e test

* incremental

* incremental

* clean up log.Info

* bump flux version

* fix merge error

* fix merge error #2

* fix merge #3

* fix merge #4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants