Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: operator-framework/api
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.1
Choose a base ref
...
head repository: operator-framework/api
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.14.0
Choose a head ref
  • 20 commits
  • 3,048 files changed
  • 10 contributors

Commits on Jan 15, 2022

  1. chore: Bump k8s dependencies to 1.23 (#212)

    Some notable bumps in versions:
    1. Controller-runtime to 0.11.0
    2. Controller-tools to 0.8.0
    3. K8s modules to 1.23+
    4. Go to 1.17
    varshaprasad96 authored Jan 15, 2022
    Configuration menu
    Copy the full SHA
    12a70c0 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2022

  1. fix: alm-example parse check should not fail when the annotation if e…

    …mpty (#215)
    
    * fix: alm-example parse check should not fail when the annotation if empty
    
    * applying review
    camilamacedo86 authored Jan 17, 2022
    Configuration menu
    Copy the full SHA
    77b3984 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2022

  1. Added field for optional manifests (#209)

    Signed-off-by: Frederic Giloux <fgiloux@redhat.com>
    fgiloux authored Jan 18, 2022
    Configuration menu
    Copy the full SHA
    6b187a1 View commit details
    Browse the repository at this point in the history
  2. Update OWNERS (#216)

    estroz authored Jan 18, 2022
    Configuration menu
    Copy the full SHA
    330a17e View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2022

  1. Configuration menu
    Copy the full SHA
    b69651f View commit details
    Browse the repository at this point in the history
  2. (catsrc) add custom unmarshaller for registry poll interval (#169)

    This PR implements a custom unmarshaller for the CatalogSourceSpec.UpdateStrategy.
    When a value that cannot be unmarshalled to *metav1.Duration was being passed to
    UpdateStrategy.RegistryPoll.Interval, the catalogSource sync loops in the catalog
    operator was stuck in an infinite loop instead of backing off and performing other
    syncs. The custom unmarshaller tries to unmarshall the input to the field to
    *metav1.Duration, and if it fails, it sets a default value of 15m for the field.
    Otherwise it accepts the value passed to the field.
    anik120 authored Jan 19, 2022
    Configuration menu
    Copy the full SHA
    7c97612 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2022

  1. Add perdasilva to approvers

    Signed-off-by: perdasilva <perdasilva@redhat.com>
    perdasilva committed Jan 24, 2022
    Configuration menu
    Copy the full SHA
    75c6c24 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #219 from perdasilva/add_per_to_approvers

    Add perdasilva to approvers
    perdasilva authored Jan 24, 2022
    Configuration menu
    Copy the full SHA
    fc492d5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bfa93d1 View commit details
    Browse the repository at this point in the history
  4. Purge the root vendor directory (#213)

    * Ignore the root vendor directory
    
    * Remove the root vendor directory
    
    Signed-off-by: timflannagan <timflannagan@gmail.com>
    
    * Ignore the root bin directory
    
    * Remove tool dependencies that are installed at runtime from root module
    
    * Update workflows and Makefile to avoid referencing the vendor directory
    
    Signed-off-by: timflannagan <timflannagan@gmail.com>
    timflannagan authored Jan 24, 2022
    Configuration menu
    Copy the full SHA
    73f2f9e View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2022

  1. .github/workflows: Add workflow_dispatch event trigger (#214)

    Update the go/verify workflows and specify the `workflow_dispatch` event
    trigger, so operator-framework members can trigger CI runs of these
    workflow definitions without having to open "empty" PRs.
    
    Signed-off-by: timflannagan <timflannagan@gmail.com>
    timflannagan authored Jan 25, 2022
    Configuration menu
    Copy the full SHA
    97011d2 View commit details
    Browse the repository at this point in the history
  2. feat: add warning for olm.properties being defined when validating csv (

    #217)
    
    Signed-off-by: Tyler Slaton <tyslaton@redhat.com>
    tylerslaton authored Jan 25, 2022
    Configuration menu
    Copy the full SHA
    82aa2d4 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2022

  1. refactor(constraint): update none compound constraint to be not (#221)

    Signed-off-by: Tyler Slaton <tyslaton@redhat.com>
    tylerslaton authored Jan 26, 2022
    Configuration menu
    Copy the full SHA
    96da8f9 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2022

  1. .github/workflows: Update the pull_request trigger for the Go workflow (

    #224)
    
    Update the Go workflow and update the pull_request trigger to run GHA
    checks on any branches to remain consistent with the verify workflow
    behavior.
    
    Signed-off-by: timflannagan <timflannagan@gmail.com>
    timflannagan authored Jan 28, 2022
    Configuration menu
    Copy the full SHA
    8e593f1 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2022

  1. Configuration menu
    Copy the full SHA
    2e47b5a View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2022

  1. add bundle size validator check (#210)

    * add bundle size validator check
    
    Co-authored-by: Brett Tofel btofel@redhat.com
    
    * applying suggetions - review
    
    * add operator-registry as dep and use gzip method to check bundle size
    
    * go mod vendor
    
    * go fmt
    
    * add enconding to the api
    
    * refac name
    camilamacedo86 authored Feb 8, 2022
    Configuration menu
    Copy the full SHA
    e8208e3 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2022

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

Commits on Feb 25, 2022

  1. fix: bundle size validator: ammount compressed scenarios should be lo…

    …wer than < ~1MB and add improvement to show uncompressed ammount
    camilamacedo86 committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    02354fc View commit details
    Browse the repository at this point in the history
  2. fix apidif

    camilamacedo86 committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    4ffeb35 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #229 from camilamacedo86/fix-ammout

    bundle size validator: fix and improvements
    kevinrizza authored Feb 25, 2022
    Configuration menu
    Copy the full SHA
    ca536d7 View commit details
    Browse the repository at this point in the history
Loading