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

🌱 Prepare for release 0.14 #2100

Merged
merged 20 commits into from Dec 14, 2022

Commits on Dec 9, 2022

  1. Update OWNERS: remove inactive members, promote fillzpp sbueringer

    Signed-off-by: Vince Prignano <vince@prigna.com>
    vincepri committed Dec 9, 2022
    Copy the full SHA
    344e96e View commit details
    Browse the repository at this point in the history
  2. Bump k8s.io deps to v0.26.0

    Signed-off-by: Luca Comellini <luca.com@gmail.com>
    lucacome committed Dec 9, 2022
    Copy the full SHA
    c774453 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2088 from vincepri/promote-active-…

    …folks
    
    🌱 Update OWNERS: remove inactive members, promote fillzpp sbueringer
    k8s-ci-robot committed Dec 9, 2022
    Copy the full SHA
    1e77334 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2087 from lucacome/bump-k8s-deps

    🌱 Bump k8s.io deps to v0.26.0
    k8s-ci-robot committed Dec 9, 2022
    Copy the full SHA
    fb5e346 View commit details
    Browse the repository at this point in the history
  5. Bump golang.org/x/time

    Signed-off-by: Luca Comellini <luca.com@gmail.com>
    lucacome committed Dec 9, 2022
    Copy the full SHA
    7165850 View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes-sigs#2089 from lucacome/bump-time

    🌱 Bump golang.org/x/time
    k8s-ci-robot committed Dec 9, 2022
    Copy the full SHA
    a8c8ff5 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2022

  1. Copy the full SHA
    fa88a73 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2022

  1. Merge pull request kubernetes-sigs#2090 from alvaroaleman/started

    🐛 Prevent manager from getting started a second time
    k8s-ci-robot committed Dec 11, 2022
    Copy the full SHA
    222fb66 View commit details
    Browse the repository at this point in the history
  2. ✨Builder: Do not require For

    Requiring For does not make sense for all controllers as it is possible
    that their primary event triggering is not an object in the current
    cluster but for example an object in a different cluster or a
    source.Channel.
    alvaroaleman committed Dec 11, 2022
    Copy the full SHA
    ca7cda4 View commit details
    Browse the repository at this point in the history
  3. 🏃 Clean up OWNERS who haven't been active in the last year

    Otherwise ppl will ask them to review their changes without any
    realistic chance of that happening.
    alvaroaleman committed Dec 11, 2022
    Copy the full SHA
    c54fcd5 View commit details
    Browse the repository at this point in the history
  4. ✨ Add Get functionality to SubResourceClient

    This changes enabled the SubResourceClient to retrieve subresources,
    thereby completing it for CRUD subresources (under the assumption that
    there is no such thing as a Delete for subresources, which does hold
    true for core resources).
    alvaroaleman committed Dec 11, 2022
    Copy the full SHA
    7eb8134 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2022

  1. Merge pull request kubernetes-sigs#2092 from alvaroaleman/cleanup-2

    🏃 Clean up OWNERS who haven't been active in the last year
    k8s-ci-robot committed Dec 12, 2022
    Copy the full SHA
    c773bef View commit details
    Browse the repository at this point in the history
  2. ⚠️ Allow configuring RecoverPanic for controllers globally

    This change allows configuring the RecoverPanic setting for controllers
    globally. It is a breaking change as it requires changing the field type
    of the setting to *bool from bool in order to be able to check if it has
    been set already.
    alvaroaleman committed Dec 12, 2022
    Copy the full SHA
    da7dd5d View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2093 from alvaroaleman/recover-pan…

    …ic-globally
    
    ⚠️ Allow configuring RecoverPanic for controllers globally
    k8s-ci-robot committed Dec 12, 2022
    Copy the full SHA
    a387bf4 View commit details
    Browse the repository at this point in the history
  4. Generate files and update modules

    Signed-off-by: Luca Comellini <luca.com@gmail.com>
    lucacome committed Dec 12, 2022
    Copy the full SHA
    d4f1e82 View commit details
    Browse the repository at this point in the history
  5. 🌱 Bump github.com/onsi/ginkgo/v2 from 2.5.1 to 2.6.0

    Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.5.1 to 2.6.0.
    - [Release notes](https://github.com/onsi/ginkgo/releases)
    - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
    - [Commits](onsi/ginkgo@v2.5.1...v2.6.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/ginkgo/v2
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 12, 2022
    Copy the full SHA
    7333aed View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2022

  1. Merge pull request kubernetes-sigs#2097 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/onsi/ginkgo/v2-2.6.0
    
    🌱 Bump github.com/onsi/ginkgo/v2 from 2.5.1 to 2.6.0
    k8s-ci-robot committed Dec 13, 2022
    Copy the full SHA
    5673341 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2096 from lucacome/generate

    🌱 Generate files and update modules
    k8s-ci-robot committed Dec 13, 2022
    Copy the full SHA
    ca4b4de View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2022

  1. Merge pull request kubernetes-sigs#2091 from alvaroaleman/no-for

    ✨Builder: Do not require For
    k8s-ci-robot committed Dec 14, 2022
    Copy the full SHA
    8738e91 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2094 from alvaroaleman/subresoruce…

    …-get
    
    ⚠️ Add Get functionality to SubResourceClient
    k8s-ci-robot committed Dec 14, 2022
    Copy the full SHA
    69f0938 View commit details
    Browse the repository at this point in the history