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: openshift/kubernetes-code-generator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: soltysh/kubernetes-code-generator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 15 commits
  • 430 files changed
  • 6 contributors

Commits on Sep 20, 2017

  1. code-generator: rename _test to _examples

    Kubernetes-commit: 0cf745db7654118c64d618f7d8e843e7d3133d4a
    sttts authored and k8s-publish-robot committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    68502ee View commit details
    Browse the repository at this point in the history
  2. code-generator: turn hack/update-codegen.sh into re-usable generate-{…

    …internal,}-groups.sh scripts
    
    Kubernetes-commit: 0c0bb7e25be3115c631c85dbd7a86abddc881f4c
    sttts authored and k8s-publish-robot committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    860ab6b View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2017

  1. Merge remote-tracking branch 'origin/master' into release-1.8

    Kubernetes-commit: 27446377d3dc8e7f4e4c5c2053ca7255e158b1a1
    k8s-publish-robot committed Sep 22, 2017
    Configuration menu
    Copy the full SHA
    efd7cc0 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into release-1.8

    Kubernetes-commit: bc1eb4db847332568cf8b25ed35556b653fd7bdf
    k8s-publish-robot committed Sep 22, 2017
    Configuration menu
    Copy the full SHA
    860572c View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'origin/master' into release-1.8

    Kubernetes-commit: 4294b6f026f9600be6488c885192c73613f52503
    k8s-publish-robot committed Sep 22, 2017
    Configuration menu
    Copy the full SHA
    a11e1d2 View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/master' into release-1.8

    Kubernetes-commit: a213f6cf886986250a8ba34a23d3cd92078d1101
    k8s-publish-robot committed Sep 22, 2017
    Configuration menu
    Copy the full SHA
    79f701d View commit details
    Browse the repository at this point in the history
  5. Merge remote-tracking branch 'origin/master' into release-1.8

    Kubernetes-commit: bfab46cf2543ac17f8c0e75b80631555ac7a6aed
    k8s-publish-robot committed Sep 22, 2017
    Configuration menu
    Copy the full SHA
    42f0582 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2017

  1. Update generated files

    Kubernetes-commit: 8d0033bd2a6754202a0910faa0e91b432d6b40a5
    sttts authored and k8s-publish-robot committed Sep 28, 2017
    Configuration menu
    Copy the full SHA
    de040a0 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2017

  1. Merge pull request #53449 from sttts/automated-cherry-pick-of-#52186-…

    …upstream-release-1.8
    
    Automatic merge from submit-queue.
    
    Automated cherry pick of #52186
    
    ```release-note
    Add generate-groups.sh and generate-internal-groups.sh to k8s.io/code-generator to easily run generators against CRD or User API Server types.
    ```
    
    Kubernetes-commit: bac43fb2c732d19dfc90e9646ddac72131cd9db9
    k8s-publish-robot committed Oct 10, 2017
    Configuration menu
    Copy the full SHA
    0c5165a View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2017

  1. manual SHA

    deads2k committed Nov 20, 2017
    Configuration menu
    Copy the full SHA
    599e804 View commit details
    Browse the repository at this point in the history
  2. UPSTREAM: <carry>: update clientset generator for openshift groups

    :100644 100644 e0d958f... 8239bd5... M	cmd/client-gen/generators/client_generator.go
    :100644 100644 4054b57... f2e64d6... M	cmd/informer-gen/generators/generic.go
    :100644 100644 593e56a... 949fe74... M	cmd/informer-gen/generators/packages.go
    :100644 100644 9466e3c... 65e5ed6... M	cmd/lister-gen/generators/lister.go
    mfojtik authored and deads2k committed Nov 20, 2017
    Configuration menu
    Copy the full SHA
    d5b5633 View commit details
    Browse the repository at this point in the history
  3. UPSTREAM: 54257: Use GetByKey() in typeLister_NonNamespacedGet

    The Get() function of non-namespace lister passes a temporary object to
    indexer.Get() in order to fetch the actual object from the indexer. This
    may cause Go to allocate the temporary object on the heap instead of the
    stack, as it is passed into interfaces. For non-namespaced objects,
    Get(&Type{ObjectMeta: v1.ObjectMeta{Name: name}}) should be equivalent
    to GetByKey(name).
    
    This could be the root cause of excessive allocations, e.g. in tests
    clusterRoleLister.Get() has trigger 4 billion allocations. See
    openshift/origin#16954
    
    Signed-off-by: Christian Heimes <cheimes@redhat.com>
    
    :100644 100644 65e5ed6... c01a4ad... M	cmd/lister-gen/generators/lister.go
    tiran authored and deads2k committed Nov 20, 2017
    Configuration menu
    Copy the full SHA
    cb6b9ea View commit details
    Browse the repository at this point in the history
  4. UPSTREAM: 55223: Fix protobuf generator for aliases to repeated types

    :100644 100644 d29e3e4... a76d670... M	cmd/go-to-protobuf/protobuf/generator.go
    mfojtik authored and deads2k committed Nov 20, 2017
    Configuration menu
    Copy the full SHA
    179b1ae View commit details
    Browse the repository at this point in the history
  5. UPSTREAM: 55703: use full gopath for externalTypes

    :100644 100644 0f1e0d495e... 6275fc8f35... M	pkg/api/v1/doc.go
    :100644 100644 ba1eabc... b918745... M	staging/src/k8s.io/code-generator/cmd/conversion-gen/generators/conversion.go
    
    :100644 100644 ba1eabc... b918745... M	cmd/conversion-gen/generators/conversion.go
    soltysh authored and deads2k committed Nov 20, 2017
    Configuration menu
    Copy the full SHA
    faf2ad1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9967634 View commit details
    Browse the repository at this point in the history
Loading