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

Observed generation #1

Merged
merged 137 commits into from
May 20, 2024
Merged

Observed generation #1

merged 137 commits into from
May 20, 2024

Commits on Oct 20, 2023

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

Commits on Oct 21, 2023

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

Commits on Oct 23, 2023

  1. Merge pull request crossplane#56 from crossplane/renovate/github-code…

    …ql-action-digest
    
    Update github/codeql-action digest to 49abf0b
    phisco authored Oct 23, 2023
    Configuration menu
    Copy the full SHA
    fb08653 View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#57 from crossplane/renovate/fkirc-skip-…

    …duplicate-actions-5.x
    
    Update fkirc/skip-duplicate-actions action to v5.3.1
    phisco authored Oct 23, 2023
    Configuration menu
    Copy the full SHA
    6eb6cc8 View commit details
    Browse the repository at this point in the history
  3. Run golangci-lint with --fix by default

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    3207167 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    36bee0c View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Sync with upstream crossplane-runtime changes

    * Bump crossplane-runtime
    * Update GetInteger to handle floats locally
    * Use new claim.Reference type
    
    Signed-off-by: Steven Borrelli <[email protected]>
    stevendborrelli authored Oct 24, 2023
    Configuration menu
    Copy the full SHA
    66fe852 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Configuration menu
    Copy the full SHA
    164fdaf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    49cb9cd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2627b46 View commit details
    Browse the repository at this point in the history
  4. Merge pull request crossplane#61 from crossplane/renovate/kubernetes-…

    …deps
    
    Update module sigs.k8s.io/yaml to v1.4.0
    negz authored Oct 25, 2023
    Configuration menu
    Copy the full SHA
    43a7da5 View commit details
    Browse the repository at this point in the history
  5. Merge pull request crossplane#62 from crossplane/renovate/github.com-…

    …crossplane-crossplane-runtime-1.x
    
    Update module github.com/crossplane/crossplane-runtime to v1.14.0-rc.1
    negz authored Oct 25, 2023
    Configuration menu
    Copy the full SHA
    b9c77eb View commit details
    Browse the repository at this point in the history
  6. Merge pull request crossplane#63 from crossplane/renovate/aquasecurit…

    …y-trivy-action-0.x
    
    Update aquasecurity/trivy-action action to v0.13.0
    negz authored Oct 25, 2023
    Configuration menu
    Copy the full SHA
    142a5c0 View commit details
    Browse the repository at this point in the history
  7. Bump golangci-lint to v1.55.1

    Notably this includes a handy new linter that warns when you don't use
    GetFoo methods to access protobuf fields.
    
    Signed-off-by: Nic Cope <[email protected]>
    negz committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    a11b5d9 View commit details
    Browse the repository at this point in the history
  8. Merge pull request crossplane#64 from negz/protocol

    Bump golangci-lint to v1.55.1
    negz authored Oct 25, 2023
    Configuration menu
    Copy the full SHA
    086e9dd View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2023

  1. Configuration menu
    Copy the full SHA
    97ccac5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#66 from crossplane/renovate/github-code…

    …ql-action-digest
    
    Update github/codeql-action digest to 74483a3
    phisco authored Oct 27, 2023
    Configuration menu
    Copy the full SHA
    0745c2a View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2023

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

Commits on Oct 30, 2023

  1. Demonstrate that MR structs marshal with extraneous fields

    Signed-off-by: Nic Cope <[email protected]>
    negz committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    9fc84aa View commit details
    Browse the repository at this point in the history
  2. Use go-json-experiment (and hacks) to trim empty fields

    This is necessary for functions to be able to return JSON (as
    structpb.Struct) that can be used as server side apply fully specified
    intent. Without it we include empty structs that are non-nil, even if
    they have the omitempty marker.
    
    Signed-off-by: Nic Cope <[email protected]>
    negz committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    09f878b View commit details
    Browse the repository at this point in the history
  3. Use a runtime.Scheme to load GVK using From

    I don't love the package-scoped state here but this seems like the
    nicest API to offer callers.
    
    Signed-off-by: Nic Cope <[email protected]>
    negz committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    8106890 View commit details
    Browse the repository at this point in the history
  4. Merge pull request crossplane#70 from negz/typical

    Marshal MR structs in a (more) server-side apply compatible way
    negz authored Oct 30, 2023
    Configuration menu
    Copy the full SHA
    7a3f487 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3023c88 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    74179c3 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    17c14e3 View commit details
    Browse the repository at this point in the history
  8. Clear out empty object metadata if it exists after conversion

    Without this change any resource that has no ObjectMeta will end up with
    an empty metadata (like "metadata": {}) when rendered. This is because
    json serialization adds the generation field. We then delete it,
    resulting in an empty metadata object.
    
    This isn't actually so bad because Crossplane will always add a few
    labels, owner refs, etc before the metadata becomes part of the SSA
    fully-specified intent. So in reality we'll never ask the API server to
    make metadata an empty object. It is misleading in unit tests though.
    
    Signed-off-by: Nic Cope <[email protected]>
    negz committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    82371e3 View commit details
    Browse the repository at this point in the history
  9. Merge pull request crossplane#72 from negz/hacks-on-hacks-on-hacks

    Clear out empty object metadata if it exists after conversion
    negz authored Oct 30, 2023
    Configuration menu
    Copy the full SHA
    80ca76d View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Configuration menu
    Copy the full SHA
    341c3a7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#71 from crossplane/renovate/go-github.c…

    …om/docker/docker-vulnerability
    
    Update module github.com/docker/docker to v24.0.7+incompatible [SECURITY]
    negz authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    81ac1ac View commit details
    Browse the repository at this point in the history
  3. Merge pull request crossplane#67 from crossplane/renovate/github.com-…

    …bufbuild-buf-1.x
    
    Update module github.com/bufbuild/buf to v1.27.2
    negz authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    8a0673b View commit details
    Browse the repository at this point in the history
  4. Merge pull request crossplane#65 from crossplane/renovate/github.com-…

    …go-logr-logr-1.x
    
    Update module github.com/go-logr/logr to v1.3.0
    negz authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    93a885b View commit details
    Browse the repository at this point in the history
  5. Merge pull request crossplane#69 from crossplane/renovate/zeebe-io-ba…

    …ckport-action-2.x
    
    Update zeebe-io/backport-action action to v2
    negz authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    9361a37 View commit details
    Browse the repository at this point in the history
  6. Merge pull request crossplane#73 from crossplane/renovate/aquasecurit…

    …y-trivy-action-0.x
    
    Update aquasecurity/trivy-action action to v0.13.1
    negz authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    8835a3e View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2023

  1. Link to documentation in README

    Remove the big example, there's now something better in the docs.
    
    The linked guide won't exist until the below PR is merged.
    
    crossplane/docs#597
    
    Signed-off-by: Nic Cope <[email protected]>
    negz committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    c079c3a View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#74 from negz/release-prep

    Link to documentation in README
    negz authored Nov 1, 2023
    Configuration menu
    Copy the full SHA
    dfeac94 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    32714c0 View commit details
    Browse the repository at this point in the history
  4. Merge pull request crossplane#75 from crossplane/renovate/github.com-…

    …crossplane-crossplane-runtime-1.x
    
    Update module github.com/crossplane/crossplane-runtime to v1.14.0
    phisco authored Nov 1, 2023
    Configuration menu
    Copy the full SHA
    a69a7e7 View commit details
    Browse the repository at this point in the history
  5. Remove superfluous /v/ in latest release badge

    Signed-off-by: Nic Cope <[email protected]>
    negz committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    cecf531 View commit details
    Browse the repository at this point in the history
  6. Merge pull request crossplane#77 from negz/release-prep

    Remove superfluous /v/ in latest release badge
    negz authored Nov 1, 2023
    Configuration menu
    Copy the full SHA
    86c5e02 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2023

  1. Configuration menu
    Copy the full SHA
    4a06f2d View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#78 from crossplane/renovate/github.com-…

    …crossplane-crossplane-runtime-1.x
    
    Update module github.com/crossplane/crossplane-runtime to v1.14.1
    phisco authored Nov 2, 2023
    Configuration menu
    Copy the full SHA
    4c1750c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4724d84 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. Merge pull request crossplane#79 from crossplane/renovate/github.com-…

    …upbound-provider-aws-0.x
    
    Update module github.com/upbound/provider-aws to v0.43.1
    negz authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    1757c1c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    56e6e4a View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2023

  1. Merge pull request crossplane#80 from crossplane/renovate/github.com-…

    …go-logr-zapr-1.x
    
    Update module github.com/go-logr/zapr to v1.3.0
    negz authored Nov 4, 2023
    Configuration menu
    Copy the full SHA
    18b681d View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

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

Commits on Nov 13, 2023

  1. Merge pull request crossplane#84 from crossplane/renovate/golang-1.x

    Update dependency golang to v1.21.4
    phisco authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    ab9baab View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Configuration menu
    Copy the full SHA
    74c80ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e1d2e30 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b1fb133 View commit details
    Browse the repository at this point in the history
  4. Merge pull request crossplane#81 from crossplane/renovate/golangci-go…

    …langci-lint-1.x
    
    Update dependency golangci/golangci-lint to v1.55.2
    phisco authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    8525644 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d9d3e43 View commit details
    Browse the repository at this point in the history
  6. Merge pull request crossplane#86 from crossplane/renovate/actions-git…

    …hub-script-7.x
    
    Update actions/github-script action to v7
    phisco authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    419df59 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f5d4ad9 View commit details
    Browse the repository at this point in the history
  8. Merge pull request crossplane#87 from crossplane/renovate/github-code…

    …ql-action-digest
    
    Update github/codeql-action digest to 689fdc5
    phisco authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    cf8475b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b307d06 View commit details
    Browse the repository at this point in the history
  10. fix: regenerate with new buf version

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Nov 16, 2023
    Configuration menu
    Copy the full SHA
    5810cc0 View commit details
    Browse the repository at this point in the history
  11. Merge pull request crossplane#85 from crossplane/renovate/github.com-…

    …bufbuild-buf-1.x
    
    Update module github.com/bufbuild/buf to v1.28.1
    phisco authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    247513f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    093b844 View commit details
    Browse the repository at this point in the history
  13. Merge pull request crossplane#89 from crossplane/renovate/github.com-…

    …crossplane-crossplane-runtime-1.x
    
    Update module github.com/crossplane/crossplane-runtime to v1.14.2
    phisco authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    d7cb09d View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    52ecaee View commit details
    Browse the repository at this point in the history
  15. Merge pull request crossplane#90 from crossplane/renovate/github-code…

    …ql-action-digest
    
    Update github/codeql-action digest to 66b90a5
    phisco authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    22b59a3 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    5c50472 View commit details
    Browse the repository at this point in the history
  17. Merge pull request crossplane#83 from crossplane/renovate/aquasecurit…

    …y-trivy-action-0.x
    
    Update aquasecurity/trivy-action action to v0.14.0
    negz authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    b873679 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    552e9d0 View commit details
    Browse the repository at this point in the history
  19. Merge pull request crossplane#88 from crossplane/renovate/kubernetes-…

    …deps
    
    Update kubernetes deps to v0.28.4
    negz authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    3ea079d View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    170f02d View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Merge pull request crossplane#91 from crossplane/renovate/github.com-…

    …upbound-provider-aws-0.x
    
    Update module github.com/upbound/provider-aws to v0.44.0
    negz authored Nov 17, 2023
    Configuration menu
    Copy the full SHA
    40d347d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4985e4b View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2023

  1. Merge pull request crossplane#92 from crossplane/renovate/actions-git…

    …hub-script-digest
    
    Update actions/github-script digest to 60a0d83
    phisco authored Nov 20, 2023
    Configuration menu
    Copy the full SHA
    b722787 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

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

Commits on Nov 27, 2023

  1. Merge pull request crossplane#94 from crossplane/renovate/github-code…

    …ql-action-digest
    
    Update github/codeql-action digest to 407ffaf
    phisco authored Nov 27, 2023
    Configuration menu
    Copy the full SHA
    fe9b3ca View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

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

Commits on Dec 8, 2023

  1. Merge pull request crossplane#99 from crossplane/renovate/github.com-…

    …crossplane-crossplane-runtime-1.x
    
    Update module github.com/crossplane/crossplane-runtime to v1.14.3
    phisco authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    c3bf80d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    05d6dad View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. Merge pull request crossplane#100 from crossplane/renovate/github-cod…

    …eql-action-digest
    
    Update github/codeql-action digest to c0d1daa
    phisco authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    a98c2aa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea84f80 View commit details
    Browse the repository at this point in the history
  3. Merge pull request crossplane#101 from crossplane/renovate/golang-1.x

    Update dependency golang to v1.21.5
    phisco authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    636de21 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    41ade7a View commit details
    Browse the repository at this point in the history
  5. Merge pull request crossplane#102 from crossplane/renovate/aquasecuri…

    …ty-trivy-action-0.x
    
    Update aquasecurity/trivy-action action to v0.16.0
    phisco authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    174f149 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b5a6d8e View commit details
    Browse the repository at this point in the history
  7. Merge pull request crossplane#103 from crossplane/renovate/zeebe-io-b…

    …ackport-action-2.x
    
    Update zeebe-io/backport-action action to v2.2.0
    phisco authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    2edc403 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b8e69e8 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2023

  1. Merge pull request crossplane#104 from crossplane/renovate/actions-se…

    …tup-go-5.x
    
    Update actions/setup-go action to v5
    phisco authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    d0c5dae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cbe6104 View commit details
    Browse the repository at this point in the history
  3. Merge pull request crossplane#105 from crossplane/renovate/github-cod…

    …eql-action-digest
    
    Update github/codeql-action digest to 03e7845
    phisco authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    c9b5e1f View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2024

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

Commits on Jan 4, 2024

  1. Merge pull request crossplane#98 from crossplane/renovate/k8s.io-util…

    …s-digest
    
    Update k8s.io/utils digest to e7106e6
    negz authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    30996ac View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3eb944e View commit details
    Browse the repository at this point in the history
  3. Merge pull request crossplane#95 from crossplane/renovate/github.com-…

    …upbound-provider-aws-0.x
    
    Update module github.com/upbound/provider-aws to v0.47.1
    negz authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    3d7c2df View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1c7fbb2 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2024

  1. Merge pull request crossplane#111 from crossplane/renovate/google.gol…

    …ang.org-grpc-1.x
    
    Update module google.golang.org/grpc to v1.60.1
    phisco authored Jan 8, 2024
    Configuration menu
    Copy the full SHA
    49844f1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e5e9384 View commit details
    Browse the repository at this point in the history
  3. chore: regenerate with buf 1.32.0

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    8927bb3 View commit details
    Browse the repository at this point in the history
  4. Merge pull request crossplane#112 from crossplane/renovate/google.gol…

    …ang.org-protobuf-1.x
    
    Update module google.golang.org/protobuf to v1.32.0
    phisco authored Jan 8, 2024
    Configuration menu
    Copy the full SHA
    e6d6526 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f94e04b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    41f7fef View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Configuration menu
    Copy the full SHA
    696c484 View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#107 from crossplane/renovate/github.com…

    …-go-logr-logr-1.x
    
    Update module github.com/go-logr/logr to v1.4.1
    phisco authored Jan 9, 2024
    Configuration menu
    Copy the full SHA
    c1d7d6d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4925321 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Merge pull request crossplane#113 from crossplane/renovate/zeebe-io-b…

    …ackport-action-2.x
    
    Update zeebe-io/backport-action action to v2.3.0
    phisco authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    20f0962 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d63b092 View commit details
    Browse the repository at this point in the history
  3. Merge pull request crossplane#110 from crossplane/renovate/aquasecuri…

    …ty-trivy-action-0.x
    phisco authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    f160cb9 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

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

Commits on Jan 12, 2024

  1. Merge pull request crossplane#116 from crossplane/renovate/actions-ca…

    …che-digest
    
    Update actions/cache digest to e12d46a
    phisco authored Jan 12, 2024
    Configuration menu
    Copy the full SHA
    4d63c40 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. feat: extra resources

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    bb797d1 View commit details
    Browse the repository at this point in the history
  2. review

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    9e73fdc View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2024

  1. review: switch to oneOf

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    d73e859 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

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

Commits on Jan 25, 2024

  1. Merge pull request crossplane#115 from crossplane/renovate/golang-1.x

    Update dependency golang to v1.21.6
    negz authored Jan 25, 2024
    Configuration menu
    Copy the full SHA
    f466e52 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

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

Commits on Feb 14, 2024

  1. Reject unknown fields when converting from Struct to Object

    This is mostly useful when a function loads its input from the
    RunFunctionRequest. Crossplane isn't (yet) aware of input schema and
    will send anything the user supplies.
    
    Right now that could include extra unknown, misindented, or typod fields
    and those will be silently ignored by the function. With this change in
    place they will result in an error.
    
    This code will also be used to load desired and observed resource state,
    but it's unlikely for those to be invalid.
    
    This is a small behavior change, but I feel okay with it. The new
    behavior is safer, probably won't affect anyone, and we're pre 1.0.
    
    crossplane-contrib/function-patch-and-transform#91 (comment)
    
    Signed-off-by: Nic Cope <[email protected]>
    negz committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    48e6829 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2024

  1. Fix error formatting for GetInput

    Signed-off-by: Nic Cope <[email protected]>
    negz committed Feb 17, 2024
    Configuration menu
    Copy the full SHA
    1335c4b View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. Merge pull request crossplane#120 from crossplane/renovate/github.com…

    …-bufbuild-buf-1.x
    
    Update module github.com/bufbuild/buf to v1.29.0
    negz authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    f1c048d View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#124 from negz/rejection

    Reject unknown fields when converting from Struct to Object
    negz authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    9a5beef View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0068bd6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request crossplane#96 from crossplane/renovate/github.com-…

    …go-json-experiment-json-digest
    
    Update github.com/go-json-experiment/json digest to 2e55bd4
    negz authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    c987192 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

  1. Configuration menu
    Copy the full SHA
    94f0334 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    97d0983 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Merge pull request crossplane#128 from negz/error-error

    Fix error formatting for GetInput
    negz authored Feb 28, 2024
    Configuration menu
    Copy the full SHA
    0b5c830 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Configuration menu
    Copy the full SHA
    e20ca68 View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#117 from crossplane/renovate/actions-ca…

    …che-4.x
    
    Update actions/cache action to v4
    negz authored Feb 29, 2024
    Configuration menu
    Copy the full SHA
    b53051e View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2024

  1. Configuration menu
    Copy the full SHA
    5d3a939 View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#131 from crossplane/renovate/go-github.…

    …com/docker/docker-vulnerability
    phisco authored Mar 24, 2024
    Configuration menu
    Copy the full SHA
    29b53ad View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Configuration menu
    Copy the full SHA
    9c1dc04 View commit details
    Browse the repository at this point in the history
  2. chore: regenerate

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    0c09a20 View commit details
    Browse the repository at this point in the history
  3. Merge pull request crossplane#132 from crossplane/renovate/github.com…

    …-bufbuild-buf-1.x
    
    Update module github.com/bufbuild/buf to v1.30.0
    phisco authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    aab701c View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

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

Commits on Apr 19, 2024

  1. Merge pull request crossplane#122 from crossplane/renovate/codecov-co…

    …decov-action-digest
    
    Update codecov/codecov-action digest to 8450866
    phisco authored Apr 19, 2024
    Configuration menu
    Copy the full SHA
    33e7e0e View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2024

  1. Configuration menu
    Copy the full SHA
    4cc6150 View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#133 from crossplane/renovate/go-golang.…

    …org/x/net-vulnerability
    phisco authored Apr 20, 2024
    Configuration menu
    Copy the full SHA
    cd6ab94 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. Switch to crossplane/build

    Signed-off-by: Nic Cope <[email protected]>
    negz committed May 16, 2024
    Configuration menu
    Copy the full SHA
    909e6bd View commit details
    Browse the repository at this point in the history
  2. Merge pull request crossplane#136 from negz/its-happening-dot-gif

    Switch to crossplane/build
    negz authored May 16, 2024
    Configuration menu
    Copy the full SHA
    aa077cf View commit details
    Browse the repository at this point in the history

Commits on May 20, 2024

  1. add observedGeneration

    Signed-off-by: Steven Borrelli <[email protected]>
    stevendborrelli committed May 20, 2024
    Configuration menu
    Copy the full SHA
    8ff4cae View commit details
    Browse the repository at this point in the history
  2. fix lint error

    Signed-off-by: Steven Borrelli <[email protected]>
    stevendborrelli committed May 20, 2024
    Configuration menu
    Copy the full SHA
    434972f View commit details
    Browse the repository at this point in the history
  3. update comments to match resource type

    Signed-off-by: Steven Borrelli <[email protected]>
    stevendborrelli committed May 20, 2024
    Configuration menu
    Copy the full SHA
    53155a2 View commit details
    Browse the repository at this point in the history