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

Sync upstream main #146

Merged
merged 77 commits into from
Nov 5, 2024
Merged

Sync upstream main #146

merged 77 commits into from
Nov 5, 2024

Commits on Aug 22, 2024

  1. readded changes after merge problems

    Signed-off-by: Thomas Baehr <[email protected]>
    TheBelgarion committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    d0aad8c View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2024

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

Commits on Sep 12, 2024

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

Commits on Oct 2, 2024

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

Commits on Oct 11, 2024

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

Commits on Oct 18, 2024

  1. docs: update contributing guide with new contributor getting started …

    …info
    
    Signed-off-by: Jared Watts <[email protected]>
    jbw976 committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    43bc818 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

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

Commits on Oct 23, 2024

  1. build: bump golang to 1.22.8

    Signed-off-by: Jared Watts <[email protected]>
    jbw976 committed Oct 23, 2024
    Configuration menu
    Copy the full SHA
    f6dd1bf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2d42bd1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #6024 from jbw976/bump-golang

    build: bump golang to 1.22.8
    phisco authored Oct 23, 2024
    Configuration menu
    Copy the full SHA
    79c3d34 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2024

  1. feat(Compositions): drop spec.environmentConfigRefs

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

Commits on Oct 25, 2024

  1. fix default registry bug

    Signed-off-by: ezgidemirel <[email protected]>
    ezgidemirel committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    c555808 View commit details
    Browse the repository at this point in the history
  2. feat(crank): beta covert composition-environment implementation

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    32bb6be View commit details
    Browse the repository at this point in the history
  3. feat: rework pipeline-composition to avoid dropping fields

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    1f77470 View commit details
    Browse the repository at this point in the history
  4. review

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    48d84f2 View commit details
    Browse the repository at this point in the history
  5. log to stderr if no change needed

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    ce2f236 View commit details
    Browse the repository at this point in the history
  6. fix: no-op if already pipeline mode

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    3be61d9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3a1d69b View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2024

  1. Configuration menu
    Copy the full SHA
    c88f6c7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #6023 from ezgidemirel/e2e-dep-up

    test(e2e): Update test packages and add more tests to dependency update
    turkenh authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    c999b73 View commit details
    Browse the repository at this point in the history
  3. fixed nit: container nameming loop variable

    Signed-off-by: Thomas Baehr <[email protected]>
    TheBelgarion committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    5c76394 View commit details
    Browse the repository at this point in the history
  4. Update contributing/README.md

    Co-authored-by: Philippe Scorsolini <[email protected]>
    Signed-off-by: Jared Watts <[email protected]>
    jbw976 and phisco authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    97a3f33 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #6015 from jbw976/contrib-getting-started

    docs: update contributing guide with new contributor getting started info
    jbw976 authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    ac27bec View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6a7c477 View commit details
    Browse the repository at this point in the history
  7. Fix package metadata CRD generation

    Earthly wasn't persisting these to cluster/meta. We didn't notice
    because nothing really uses these CRDs. The package metadata files
    aren't custom resources, in that they're never actually applied to the
    API server.
    
    Signed-off-by: Nic Cope <[email protected]>
    negz committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    8f15fd1 View commit details
    Browse the repository at this point in the history
  8. Have the resolver controller watch package revisions

    We want to enqueue a reconcile of the Lock controller when any package
    revision changes, but we weren't.
    
    It wasn't watching function revisions at all. It was watching provider
    and configuration revisions, but using the Owns() builder method. This
    method enqeueus requests for the controller reference of the watched
    object. The lock isn't the controller reference (or even an owner
    reference) of any package revision, so we wouldn't be enqueuing
    reconciles for it.
    
    Signed-off-by: Nic Cope <[email protected]>
    negz committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    51ead1d View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. Define api types for image verification

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    f628886 View commit details
    Browse the repository at this point in the history
  2. Bootstrap signature verification reconciler

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    807434d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d19bf4a View commit details
    Browse the repository at this point in the history
  4. Define and add conditions for verification

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    b13bab5 View commit details
    Browse the repository at this point in the history
  5. Add signature verification controller

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    149be69 View commit details
    Browse the repository at this point in the history
  6. Add unit tests for signature verification

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    dd7eea6 View commit details
    Browse the repository at this point in the history
  7. Add e2e test for keyless verification of a private image

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    449ac44 View commit details
    Browse the repository at this point in the history
  8. Simplify signature verification skipping policy controller

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    333c6b3 View commit details
    Browse the repository at this point in the history
  9. Copy attestation.go from cosign repo

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    58b2a3a View commit details
    Browse the repository at this point in the history
  10. Simplify attestation verification skipping policy controller

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    a0b5487 View commit details
    Browse the repository at this point in the history
  11. Resolve comments in signature verification

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    12bc156 View commit details
    Browse the repository at this point in the history
  12. Signature verification controller reconciles package revisions

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    2a51db4 View commit details
    Browse the repository at this point in the history
  13. Put signature verification behing an alpha flag

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    6361d8b View commit details
    Browse the repository at this point in the history
  14. Add unit tests for signature verification reconciler

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    52653a1 View commit details
    Browse the repository at this point in the history
  15. Document how to access e2e cluster while tests are running

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    d554fc2 View commit details
    Browse the repository at this point in the history
  16. Merge pull request #6022 from turkenh/package-image-config-verification

    Package signature verification with `Cosign` via `ImageConfig` API
    turkenh authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    8410e24 View commit details
    Browse the repository at this point in the history
  17. Merge pull request #5936 from crossplane/renovate/main-actions-create…

    …-github-app-token-digest
    
    chore(deps): update actions/create-github-app-token digest to 5d869da (main)
    turkenh authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    198c46e View commit details
    Browse the repository at this point in the history
  18. fix(crank): convert pipeline-composition skip if no environment defin…

    …ed at all
    
    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    9e89e41 View commit details
    Browse the repository at this point in the history
  19. Merge pull request #5941 from crossplane/renovate/main-actions-upload…

    …-artifact-digest
    
    chore(deps): update actions/upload-artifact digest to b4b15b8 (main)
    turkenh authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    3fdf3cb View commit details
    Browse the repository at this point in the history
  20. Merge pull request #5942 from crossplane/renovate/main-codecov-codeco…

    …v-action-digest
    
    chore(deps): update codecov/codecov-action digest to b9fd7d1 (main)
    turkenh authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    6377dd9 View commit details
    Browse the repository at this point in the history
  21. Merge pull request #5944 from crossplane/renovate/main-docker-login-a…

    …ction-digest
    
    chore(deps): update docker/login-action digest to 9780b0c (main)
    turkenh authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    9e897ab View commit details
    Browse the repository at this point in the history
  22. chore: refactor patchsets handling for consistency, adding test coverage

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    b6f2f6d View commit details
    Browse the repository at this point in the history
  23. feat(pkg-mgr): Add condition to lock object

    Signed-off-by: ezgidemirel <[email protected]>
    ezgidemirel committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    0b287eb View commit details
    Browse the repository at this point in the history
  24. Merge pull request #6033 from phisco/no-env-is-fine

    fix(crank): convert pipeline-composition skip if no environment defined at all
    phisco authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    8ddec4c View commit details
    Browse the repository at this point in the history
  25. Merge pull request #6031 from ezgidemirel/lock-condition

    feat(pkg-mgr): Add condition to lock object
    turkenh authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    bd3edd3 View commit details
    Browse the repository at this point in the history
  26. feat(xfn): Consider composite ready state in function response

    Signed-off-by: Maximilian Blatt <[email protected]>
    MisterMX committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    eea8f82 View commit details
    Browse the repository at this point in the history
  27. Bump crossplane runtime to v1.19.0-rc.0

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    6ac686f View commit details
    Browse the repository at this point in the history
  28. Bump controller-tools to v0.16.5 and unique controller names

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    b0a1429 View commit details
    Browse the repository at this point in the history
  29. Skip name validation in controller engine

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    ed67b92 View commit details
    Browse the repository at this point in the history
  30. Merge pull request #6021 from MisterMX/feat/function-composite-ready-…

    …state
    
    feat(xfn): Consider composite ready state in function response
    phisco authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    8714042 View commit details
    Browse the repository at this point in the history
  31. Merge pull request #6036 from turkenh/bump-runtime-v1.19.0-rc.0

    Bump crossplane runtime to v1.19.0-rc.0
    turkenh authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    cfb6b7b View commit details
    Browse the repository at this point in the history
  32. Add release-1.18 to renovate base branches

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    28bb0d6 View commit details
    Browse the repository at this point in the history
  33. Merge pull request #6040 from turkenh/bump-base-branches

    Add release-1.18 to renovate base branches
    turkenh authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    0a030eb View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2024

  1. Configuration menu
    Copy the full SHA
    d7a341c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fbe58bd View commit details
    Browse the repository at this point in the history
  3. Merge pull request #6045 from crossplane/renovate/main-go-github.com-…

    …docker-docker-vulnerability
    
    fix(deps): update module github.com/docker/docker to v27.1.1+incompatible [security] (main)
    jbw976 authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    05da2e6 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2024

  1. Merge branch 'master' into named-container-support

    Signed-off-by: Thomas Baehr <[email protected]>
    TheBelgarion committed Nov 2, 2024
    Configuration menu
    Copy the full SHA
    a7a2b69 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5878 from TheBelgarion/named-container-support

    added the option to name docker container for functions and reuse them.
    jbw976 authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    959f288 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #6044 from crossplane/renovate/main-go-github.com-…

    …open-policy-agent-opa-vulnerability
    
    chore(deps): update module github.com/open-policy-agent/opa to v0.68.0 [security] (main)
    jbw976 authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    c2febe4 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2024

  1. fix(crank): beta validate properly pulling crossplane image

    Signed-off-by: Philippe Scorsolini <[email protected]>
    phisco committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    122316d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e4d72e5 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. build: bump meta CRDs via +generate

    Signed-off-by: Jared Watts <[email protected]>
    jbw976 committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    c7b6640 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #6054 from negz/dependent

    Have the resolver (`Lock`) controller watch package revisions
    negz authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    eae6b41 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. Fix unknown field warnings

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    6e2ae7e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #6064 from turkenh/fix-warnings

    Fix unknown fields warnings
    turkenh authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    82e5465 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7357378 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #6066 from crossplane/renovate/main-go-github.com-…

    …golang-jwt-jwt-v4-vulnerability
    
    chore(deps): update module github.com/golang-jwt/jwt/v4 to v4.5.1 [security] (main)
    turkenh authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    1d38953 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5abd87d View commit details
    Browse the repository at this point in the history
  6. Update releases table and base branches

    Signed-off-by: Hasan Turken <[email protected]>
    turkenh committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    9cdde00 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #6072 from turkenh/update-releases-table-1.18

    Update releases table and base branches
    turkenh authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    586bd39 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9daa175 View commit details
    Browse the repository at this point in the history