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

[pull] main from helm:main #1

Open
wants to merge 1,221 commits into
base: main
Choose a base branch
from
Open

[pull] main from helm:main #1

wants to merge 1,221 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Aug 31, 2023

  1. Merge pull request #12348 from joejulian/group_k8s.io_updates

    use dependabot's group support for k8s.io dependencies
    joejulian committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    387ba9c View commit details
    Browse the repository at this point in the history
  2. make the dependabot k8s.io group explicit

    Signed-off-by: Joe Julian <me@joejulian.name>
    joejulian committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    ca3a05e View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. Pin gox to specific commit

    Signed-off-by: Antony Chazapis <chazapis@ics.forth.gr>
    chazapis committed Sep 1, 2023
    Configuration menu
    Copy the full SHA
    0403305 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. chore(deps): bump github.com/cyphar/filepath-securejoin

    Bumps [github.com/cyphar/filepath-securejoin](https://github.com/cyphar/filepath-securejoin) from 0.2.3 to 0.2.4.
    - [Release notes](https://github.com/cyphar/filepath-securejoin/releases)
    - [Commits](cyphar/filepath-securejoin@v0.2.3...v0.2.4)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/cyphar/filepath-securejoin
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    b9fd7f5 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. Merge pull request #12245 from hiddeco/json-index

    Add support for creating repository indexes in JSON format
    joejulian committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    e7bb860 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2023

  1. Merge pull request #12356 from joejulian/group_k8s.io_updates_explicitly

    make the dependabot k8s.io group explicit
    mattfarina committed Sep 13, 2023
    Configuration menu
    Copy the full SHA
    ed84ab6 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2023

  1. Merge pull request #12375 from helm/dependabot/go_modules/github.com/…

    …cyphar/filepath-securejoin-0.2.4
    
    chore(deps): bump github.com/cyphar/filepath-securejoin from 0.2.3 to 0.2.4
    mattfarina committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    df49c4c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12019 from GOodCoffeeLover/feat/rw-psql

    sql driver with rw-roles
    mattfarina committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    4feafb5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11294 from Juneezee/test/t.TempDir

    test: replace `ensure.TempDir` with `t.TempDir`
    mattfarina committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    5a1475e View commit details
    Browse the repository at this point in the history
  4. Update Helm to use k8s 1.28.2 libraries

    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    c2ab954 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #12274 from mih-kopylov/get-metadata

    Restore `helm get metadata` command
    mattfarina committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    ef02caf View commit details
    Browse the repository at this point in the history
  6. chore(deps): bump github/codeql-action from 2.21.5 to 2.21.7

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.21.5 to 2.21.7.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@00e563e...04daf01)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    610217f View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2023

  1. Increased release information key name max length.

    Helm release names are limited to 53 characters. By default, Release information is stored in Kubernetes as secrets, and the secret's name structure follows the pattern "sh.helm.release.v1.<release name up to 53 characters>.v<release revision>." However, in the case of using an SQL backend, this release information key is stored in the release_v1 table, and the table constraint currently limits the key name length to 67 characters. This limitation may not be suitable for release names that are within Helm's 53-character limit and need to accommodate the additional "sh.helm.release.v1." prefix and the release revision suffix. 
    
    Signed-off-by: abrarcv170 <78675575+abrarcv170@users.noreply.github.com>
    abrarcv170 committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    4199be8 View commit details
    Browse the repository at this point in the history
  2. Write latest version to get.helm.sh bucket

    The purpose of this change is leverage this output
    for the get-helm script.
    
    It will provide the following benefits:
    - Use true semver so a future release of a patch version
      so a future release of a patch version does not cause
      an unexpected minor/major version downgrade
    
    - Avoid reliance on the github api which has rate limiting.
      This will also increase availability by reducing the
      number of systems the get-helm script depends on.
    
    - Simplify the script so parsing json is not necessary
    
    - Increase uptime by only requiring the Azure CDN to be
      available
    
    Signed-off-by: Ian Zink <zforce@gmail.com>
    z4ce committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    0619d08 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12393 from helm/dependabot/github_actions/github/…

    …codeql-action-2.21.7
    
    chore(deps): bump github/codeql-action from 2.21.5 to 2.21.7
    mattfarina committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    09db2da View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2023

  1. Merge pull request #12390 from mattfarina/bump-k8s-1.28.2

    Update Helm to use k8s 1.28.2 libraries
    mattfarina committed Sep 16, 2023
    Configuration menu
    Copy the full SHA
    5f2cd25 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump golang.org/x/text from 0.11.0 to 0.13.0

    Bumps [golang.org/x/text](https://github.com/golang/text) from 0.11.0 to 0.13.0.
    - [Release notes](https://github.com/golang/text/releases)
    - [Commits](golang/text@v0.11.0...v0.13.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/text
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 16, 2023
    Configuration menu
    Copy the full SHA
    58ccfc0 View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump github.com/containerd/containerd from 1.7.3 to 1.7.6

    Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.7.3 to 1.7.6.
    - [Release notes](https://github.com/containerd/containerd/releases)
    - [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md)
    - [Commits](containerd/containerd@v1.7.3...v1.7.6)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/containerd/containerd
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 16, 2023
    Configuration menu
    Copy the full SHA
    417040d View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2023

  1. Merge pull request #12383 from helm/dependabot/go_modules/github.com/…

    …containerd/containerd-1.7.6
    
    chore(deps): bump github.com/containerd/containerd from 1.7.3 to 1.7.6
    mattfarina committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    f902947 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump github.com/evanphx/json-patch

    Bumps [github.com/evanphx/json-patch](https://github.com/evanphx/json-patch) from 5.6.0+incompatible to 5.7.0+incompatible.
    - [Release notes](https://github.com/evanphx/json-patch/releases)
    - [Commits](evanphx/json-patch@v5.6.0...v5.7.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/evanphx/json-patch
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    8b0a78c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11372 from vovtz/#11369-fix-custom-repo-cache-for…

    …-unmanaged-dependency-updates
    
    #11369 Fix custom repo index cache directory for unmanaged dependency updates
    mattfarina committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    70cbaa0 View commit details
    Browse the repository at this point in the history
  4. Fix leaking goroutines in Install

    Signed-off-by: Michał Słapek <28485371+mslapek@users.noreply.github.com>
    mslapek committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    169561a View commit details
    Browse the repository at this point in the history
  5. Merge pull request #12088 from mslapek/fix/11971-run-with-ctx

    Fix leaking goroutines in Install
    mattfarina committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    30254de View commit details
    Browse the repository at this point in the history
  6. Merge pull request #10913 from sureshdsk/pluginbug

    fix: plugin does not load when helm base dir contains space
    mattfarina committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    dbef83e View commit details
    Browse the repository at this point in the history
  7. bump version to v3.13.0

    Signed-off-by: Matt Farina <matt.farina@suse.com>
    (cherry picked from commit 825e86f)
    mattfarina committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    c372b15 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2023

  1. Merge pull request #12405 from mattfarina/bump-version-3.13

    bump version to v3.13.0
    mattfarina committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    b520327 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12365 from helm/dependabot/go_modules/golang.org/…

    …x/text-0.13.0
    
    chore(deps): bump golang.org/x/text from 0.11.0 to 0.13.0
    mattfarina committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    b5e55bf View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump github/codeql-action from 2.21.7 to 2.21.8

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.21.7 to 2.21.8.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@04daf01...6a28655)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    2505592 View commit details
    Browse the repository at this point in the history
  4. chore(deps): bump oras.land/oras-go from 1.2.3 to 1.2.4

    Bumps [oras.land/oras-go](https://github.com/oras-project/oras-go) from 1.2.3 to 1.2.4.
    - [Release notes](https://github.com/oras-project/oras-go/releases)
    - [Commits](oras-project/oras-go@v1.2.3...v1.2.4)
    
    ---
    updated-dependencies:
    - dependency-name: oras.land/oras-go
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    102e931 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2023

  1. Merge pull request #12396 from z4ce/write-helm-latest-version

    Write latest version to get.helm.sh bucket
    mattfarina committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    6ec681f View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2023

  1. Add qps/HELM_QPS parameter

    Signed-off-by: Andy Smith <iamasmith.home@gmail.com>
    iamasmith committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    415af5b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12410 from helm/dependabot/github_actions/github/…

    …codeql-action-2.21.8
    
    chore(deps): bump github/codeql-action from 2.21.7 to 2.21.8
    mattfarina committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    46265d8 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2023

  1. Merge pull request #12337 from y-yagi/patch-1

    Remove `GoFish` from package managers for installing  the binary
    mattfarina committed Sep 25, 2023
    Configuration menu
    Copy the full SHA
    cad5810 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12394 from abrarcv170/patch-1

    Increased release information key name max length.
    mattfarina committed Sep 25, 2023
    Configuration menu
    Copy the full SHA
    162b3ef View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2023

  1. Merge pull request #11880 from Bhargav-InfraCloud/fail-on-no-result

    helm search: new CLI flag `--fail-on-no-result` to fail when no results found for search (repo and hub)
    mattfarina committed Sep 26, 2023
    Configuration menu
    Copy the full SHA
    0e72b64 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2023

  1. Merge pull request #12411 from helm/dependabot/go_modules/oras.land/o…

    …ras-go-1.2.4
    
    chore(deps): bump oras.land/oras-go from 1.2.3 to 1.2.4
    mattfarina committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    fa918d1 View commit details
    Browse the repository at this point in the history
  2. Fix missing run statement on release action

    Signed-off-by: Ian Zink <zforce@gmail.com>
    z4ce committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    21ea847 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12425 from z4ce/write-helm-latest-version

    Fix missing run statement on release action
    mattfarina committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    4a5e26b View commit details
    Browse the repository at this point in the history
  4. Fix grammatical error

    Signed-off-by: Matt Carr <mcarr@kinaxis.com>
    matt-carr committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    c25736c View commit details
    Browse the repository at this point in the history
  5. fix(registry): unswallow error

    Signed-off-by: Hidde Beydals <hidde@hhh.computer>
    hiddeco committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    da3c666 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2023

  1. fix(registry): address anonymous pull issue

    The assumption that either a username and/or password OR an error is
    returned appears to be wrong, and results in an error later on which
    looks something like the following:
    
    ```
    failed to authorize: failed to fetch anonymous token: unexpected status
    from GET request to https://auth.docker.io/token?scope=repository%3AXXX%2FYYY%3Apull&service=registry.docker.io:
    401 Unauthorized
    ```
    
    To mitigate this, confirm we actually have one of the values before
    setting the `Authorization` header.
    
    Co-authored-by: Joe Julian <me@joejulian.name>
    Signed-off-by: Hidde Beydals <hidde@hhh.computer>
    hiddeco and joejulian committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    fe4c01f View commit details
    Browse the repository at this point in the history
  2. FIX Default ServiceAccount yaml

    As described in issue #12432 (#12432) the default serviceaccount yaml will be created wrong. This commit will fix this. 
    
    Signed-off-by: Lars Zimmermann <info@zimmermann-lars.de>
    larszi committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    828763e View commit details
    Browse the repository at this point in the history
  3. Add missing with clause to release gh action

    Signed-off-by: Ian Zink <zforce@gmail.com>
    z4ce committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    9d3d17a View commit details
    Browse the repository at this point in the history
  4. Merge pull request #12424 from hiddeco/fix-anonymous-pull

    fix(registry): address anonymous pull issue
    mattfarina committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    c288f0b View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2023

  1. remove useless print during prepareUpgrade

    Signed-off-by: b4nks <b4nks@protonmail.com>
    manslaughter03 committed Oct 2, 2023
    Configuration menu
    Copy the full SHA
    f004d42 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2023

  1. Allow using label selectors for system labels for secrets and configmap

    backends.
    
    Fixes #12435
    
    Signed-off-by: Dmitry Chepurovskiy <me@dm3ch.net>
    dm3ch committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    e219c75 View commit details
    Browse the repository at this point in the history
  2. Allow using label selectors for system labels for sql backend.

    Fixes #12435
    
    Signed-off-by: Dmitry Chepurovskiy <me@dm3ch.net>
    dm3ch committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    e6d9b99 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2023

  1. chore(create): indent to spaces

    Signed-off-by: genofire <geno+dev@fireorbit.de>
    genofire committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    919bffe View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2023

  1. Added support for hiding notes from install/upgrade output

    Signed-off-by: Miles Wilson <wilson.mil@icloud.com>
    miles-w-3 committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    0c54139 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. Merge pull request #12445 from manslaughter03/fix/useless-print-onupg…

    …rade
    
    remove useless print during prepareUpgrade
    mattfarina committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    3871583 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12429 from hiddeco/fix-swallowed-err

    fix(registry): unswallow error
    mattfarina committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    ff8f027 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12433 from larszi/fix-12432-helm-create-serviceac…

    …count
    
    FIX Default ServiceAccount yaml
    mattfarina committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    1b260d0 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2023

  1. Merge pull request #12437 from z4ce/write-helm-latest-version

    Add missing with clause to release gh action
    mattfarina committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    ee4e03e View commit details
    Browse the repository at this point in the history
  2. Fixing precedence issue with the import of values.

    The ordering should be:
    1. User specified values (e.g CLI)
    2. Parent chart values
    3. Imported values
    4. Sub-chart values
    
    This enables parnet charts to import large set of values from a
    child and then override select values.
    
    This change is needed for backwards compatibility.
    
    Fixes #12460
    
    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    25371e2 View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump golang.org/x/net from 0.13.0 to 0.17.0

    Bumps [golang.org/x/net](https://github.com/golang/net) from 0.13.0 to 0.17.0.
    - [Commits](golang/net@v0.13.0...v0.17.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/net
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    544cabb View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. Merge pull request #12480 from mattfarina/fix-12460

    Fixing precedence issue with the import of values.
    mattfarina committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    fe595b6 View commit details
    Browse the repository at this point in the history
  2. feat: print failed hook name

    Add more details when a hook fails.
    
    Signed-off-by: Serge Logvinov <serge.logvinov@sinextra.dev>
    sergelogvinov committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    b0d1637 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2023

  1. Update get-helm-3 to get version through get.helm.sh

    Updates the script to use the new method of getting
    the latest version that avoids the github API and
    the associated rate limits. See the matching PR
    at #12396 for
    the server side change.
    
    Signed-off-by: Ian Zink <zforce@gmail.com>
    z4ce committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    f94e5db View commit details
    Browse the repository at this point in the history
  2. Apply review suggestions

    Co-authored-by: French Ben <FrenchBen@users.noreply.github.com>
    Signed-off-by: Dmitry Chepurovskiy <me@dm3ch.net>
    dm3ch and FrenchBen committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    0ec47f8 View commit details
    Browse the repository at this point in the history
  3. Drop filterSystemLabels usage from Query method

    Signed-off-by: Dmitry Chepurovskiy <me@dm3ch.net>
    dm3ch committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    250f0bd View commit details
    Browse the repository at this point in the history
  4. chore(deps): bump github/codeql-action from 2.21.8 to 2.22.3

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.21.8 to 2.22.3.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@6a28655...0116bc2)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    a1a21ae View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

  1. Merge pull request #12493 from helm/dependabot/github_actions/github/…

    …codeql-action-2.22.3
    
    chore(deps): bump github/codeql-action from 2.21.8 to 2.22.3
    mattfarina committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    c5d78b8 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2023

  1. chore(deps): bump actions/checkout from 3.6.0 to 4.1.1

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.1.1.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@f43a0e5...b4ffde6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 17, 2023
    Configuration menu
    Copy the full SHA
    372ccca View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. Merge pull request #12397 from z4ce/update-get-helm-script

    Update get-helm-3 to get version through get.helm.sh
    joejulian committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    1fe01a2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12481 from helm/dependabot/go_modules/golang.org/…

    …x/net-0.17.0
    
    chore(deps): bump golang.org/x/net from 0.13.0 to 0.17.0
    joejulian committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    1338ffe View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

  1. chore(deps): bump github/codeql-action from 2.22.3 to 2.22.4

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.3 to 2.22.4.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@0116bc2...49abf0b)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    6d1f6cd View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2023

  1. Update get-helm-3

    add quite switch to prevent output  like progress information in downloaded data
    
    Signed-off-by: Marcel Humburg <Marcel.Humburg@protonmail.ch>
    MarHum26 committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    81362d9 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Merge pull request #12515 from helm/dependabot/github_actions/github/…

    …codeql-action-2.22.4
    
    chore(deps): bump github/codeql-action from 2.22.3 to 2.22.4
    mattfarina committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    8fbbc86 View commit details
    Browse the repository at this point in the history
  2. Revert "fix(registry): address anonymous pull issue"

    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    992dc58 View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump google.golang.org/grpc from 1.54.0 to 1.56.3

    Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.54.0 to 1.56.3.
    - [Release notes](https://github.com/grpc/grpc-go/releases)
    - [Commits](grpc/grpc-go@v1.54.0...v1.56.3)
    
    ---
    updated-dependencies:
    - dependency-name: google.golang.org/grpc
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    c5fe7dd View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2023

  1. Merge pull request #12524 from helm/revert-12424-fix-anonymous-pull

    Revert "fix(registry): address anonymous pull issue"
    mattfarina committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    b091c14 View commit details
    Browse the repository at this point in the history
  2. Revert "fix(main): fix basic auth for helm pull or push"

    This reverts commit 4a27baa.
    
    Note, PR #11129 was layered in along with this change so the revert
    preserves this API addition.
    
    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    24e2864 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12527 from mattfarina/revert-12237

    Revert "fix(main): fix basic auth for helm pull or push"
    mattfarina committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    f3099cd View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2023

  1. feat: move livenessProbe and readinessProbe values to default values …

    …file
    
    Signed-off-by: Denis Policastro <denis.policastro@gmail.com>
    refl3ction committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    9f0313e View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump github/codeql-action from 2.22.4 to 2.22.5

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.4 to 2.22.5.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@49abf0b...74483a3)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    d6e9197 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2023

  1. chore(deps): bump github.com/docker/docker

    Bumps [github.com/docker/docker](https://github.com/docker/docker) from 24.0.6+incompatible to 24.0.7+incompatible.
    - [Release notes](https://github.com/docker/docker/releases)
    - [Commits](moby/moby@v24.0.6...v24.0.7)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/docker/docker
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    c54e39a View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. Fixing release labelling in rollback

    1. Fixed propagating labels to rollback release
    
    Signed-off-by: Marcin Chojnacki <marcin.chojnacki@nokia.com>
    chojnack committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    8814bfb View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2023

  1. Merge pull request #9653 from Okhoshi/feat/reset-then-reuse-flag

    feat(helm): Add --reset-then-reuse-values flag to 'helm upgrade'
    scottrigby committed Nov 4, 2023
    Configuration menu
    Copy the full SHA
    2745909 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Merge pull request #12447 from dm3ch/allow-filtering-using-system-labels

    Allow using label selectors for system labels for secrets and configmap
    mattfarina committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    dae8783 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12539 from chojnack/main

    Fixing release labelling in rollback
    mattfarina committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    c682fdf View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12535 from helm/dependabot/go_modules/github.com/…

    …docker/docker-24.0.7incompatible
    
    chore(deps): bump github.com/docker/docker from 24.0.6+incompatible to 24.0.7+incompatible
    mattfarina committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    d65990e View commit details
    Browse the repository at this point in the history
  4. Merge pull request #12519 from MarHum26/patch-1

    fix version retrieval of get-helm-3
    mattfarina committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    65088ad View commit details
    Browse the repository at this point in the history
  5. Merge pull request #12525 from helm/dependabot/go_modules/google.gola…

    …ng.org/grpc-1.56.3
    
    chore(deps): bump google.golang.org/grpc from 1.54.0 to 1.56.3
    mattfarina committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    d70e293 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Merge pull request #12531 from helm/dependabot/github_actions/github/…

    …codeql-action-2.22.5
    
    chore(deps): bump github/codeql-action from 2.22.4 to 2.22.5
    mattfarina committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    1ed713c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12392 from helm/dependabot/go_modules/github.com/…

    …evanphx/json-patch-5.7.0incompatible
    
    chore(deps): bump github.com/evanphx/json-patch from 5.6.0+incompatible to 5.7.0+incompatible
    mattfarina committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    a960878 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12457 from genofire/patch-1

    chore(create): indent to spaces
    mattfarina committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    0592b38 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Update CONTRIBUTING.md

    needs --> need
    themself  -->  themselves
    
    Signed-off-by: lixin18 <68135097+lixin963@users.noreply.github.com>
    lixin963 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    312a073 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. Merge pull request #12554 from lixin963/patch-1

    Update CONTRIBUTING.md
    mattfarina committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    8219565 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. chore(deps): bump github/codeql-action from 2.22.5 to 2.22.7

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.5 to 2.22.7.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@74483a3...66b90a5)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 16, 2023
    Configuration menu
    Copy the full SHA
    42c5af2 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Merge pull request #12576 from helm/dependabot/github_actions/github/…

    …codeql-action-2.22.7
    
    chore(deps): bump github/codeql-action from 2.22.5 to 2.22.7
    mattfarina committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    ff94455 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

  1. chore(deps): bump github/codeql-action from 2.22.7 to 2.22.8

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.7 to 2.22.8.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@66b90a5...407ffaf)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    3cb6b06 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2023

  1. Remove excessive logging

    Resolves helm unittest issue helm-unittest/helm-unittest#237
    
    Signed-off-by: Sean Mills <sean.m.mills@gmail.com>
    Sean Mills committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    ce87ece View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2023

  1. Merge pull request #12591 from helm/dependabot/github_actions/github/…

    …codeql-action-2.22.8
    
    chore(deps): bump github/codeql-action from 2.22.7 to 2.22.8
    mattfarina committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    47c5742 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12604 from seanmmills/remove-excessive-logging

    Remove excessive logging
    mattfarina committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    e6edb15 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2023

  1. chore(deps): bump github/codeql-action from 2.22.8 to 2.22.9

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.8 to 2.22.9.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@407ffaf...c0d1daa)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    2a211bf View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. Merge pull request #12619 from helm/dependabot/github_actions/github/…

    …codeql-action-2.22.9
    
    chore(deps): bump github/codeql-action from 2.22.8 to 2.22.9
    mattfarina committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    a75bf43 View commit details
    Browse the repository at this point in the history
  2. Updating Helm libraries for k8s 1.28.4

    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    015e174 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12501 from helm/dependabot/github_actions/actions…

    …/checkout-4.1.1
    
    chore(deps): bump actions/checkout from 3.6.0 to 4.1.1
    mattfarina committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    c6d2f6d View commit details
    Browse the repository at this point in the history
  4. chore(deps): bump actions/setup-go from 4.1.0 to 5.0.0

    Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4.1.0 to 5.0.0.
    - [Release notes](https://github.com/actions/setup-go/releases)
    - [Commits](actions/setup-go@93397be...0c52d54)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-go
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    f980ad3 View commit details
    Browse the repository at this point in the history
  5. chore(deps): bump github/codeql-action from 2.22.9 to 2.22.10

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.9 to 2.22.10.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@c0d1daa...305f654)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    be10183 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2023

  1. Merge pull request #12633 from mattfarina/k8s-1.28.4

    Updating Helm libraries for k8s 1.28.4
    mattfarina committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    6322812 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12634 from helm/dependabot/github_actions/github/…

    …codeql-action-2.22.10
    
    chore(deps): bump github/codeql-action from 2.22.9 to 2.22.10
    mattfarina committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    8b4be22 View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump github/codeql-action from 2.22.10 to 3.22.11

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.10 to 3.22.11.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@305f654...b374143)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    70c1519 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2023

  1. feature(pkg/engine): introduce RenderWithClientProvider

    Signed-off-by: Marcin Owsiany <porridge@redhat.com>
    porridge committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    bfec4ec View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12641 from helm/dependabot/github_actions/github/…

    …codeql-action-3.22.11
    
    chore(deps): bump github/codeql-action from 2.22.10 to 3.22.11
    mattfarina committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    973e86b View commit details
    Browse the repository at this point in the history
  3. Updating to Kubernetes 1.29.0 libraries

    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    e5fff68 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2023

  1. Merge pull request #12654 from mattfarina/bump-k8s-1.29.0

    Updating to Kubernetes 1.29.0 libraries
    mattfarina committed Dec 20, 2023
    Configuration menu
    Copy the full SHA
    276121c View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0

    Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.14.0 to 0.17.0.
    - [Commits](golang/crypto@v0.14.0...v0.17.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/crypto
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 20, 2023
    Configuration menu
    Copy the full SHA
    b3cb20a View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2023

  1. Make the ignore pkg public again

    Signed-off-by: Ismail Alidzhikov <i.alidjikov@gmail.com>
    ialidzhikov committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    5586760 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2023

  1. Improve release action

    Signed-off-by: George Jenkins <gjenkins8@bloomberg.net>
    gjenkins8 committed Dec 28, 2023
    Configuration menu
    Copy the full SHA
    4790bb9 View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2024

  1. tests(pkg/engine): test RenderWithClientProvider

    Signed-off-by: Marcin Owsiany <porridge@redhat.com>
    porridge committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    a997de1 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2024

  1. Removing Asset Transparency

    The transparencylog project is inactive. The CLI has been archived
    and the homebrew tap was last updated about 2 years ago. Removing
    it as the project does not appear to be active.
    
    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    803cf2d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12689 from mattfarina/remove-asset-transparency

    Removing Asset Transparency
    joejulian committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    cf26077 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12655 from helm/dependabot/go_modules/golang.org/…

    …x/crypto-0.17.0
    
    chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0
    joejulian committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    ef62478 View commit details
    Browse the repository at this point in the history
  4. chore(deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.0

    Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.7.0 to 1.8.0.
    - [Release notes](https://github.com/spf13/cobra/releases)
    - [Commits](spf13/cobra@v1.7.0...v1.8.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/spf13/cobra
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    30e1a2c View commit details
    Browse the repository at this point in the history
  5. Merge pull request #12350 from iamasmith/qps-iamasmith-1

    QPS parameter proposal
    joejulian committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    30c3516 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #12551 from helm/dependabot/go_modules/github.com/…

    …spf13/cobra-1.8.0
    
    chore(deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.0
    joejulian committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    00aed34 View commit details
    Browse the repository at this point in the history
  7. chore(deps): bump github.com/containerd/containerd from 1.7.6 to 1.7.11

    Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.7.6 to 1.7.11.
    - [Release notes](https://github.com/containerd/containerd/releases)
    - [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md)
    - [Commits](containerd/containerd@v1.7.6...v1.7.11)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/containerd/containerd
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    08ea59c View commit details
    Browse the repository at this point in the history
  8. Merge pull request #12662 from ialidzhikov/enh/make-ignore-pkg-public

    Make the `ignore` pkg public again
    joejulian committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    c3742e6 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #12440 from sergelogvinov/hook-name

    print failed hook name
    joejulian committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    35e94bb View commit details
    Browse the repository at this point in the history
  10. Merge pull request #12630 from helm/dependabot/go_modules/github.com/…

    …containerd/containerd-1.7.11
    
    chore(deps): bump github.com/containerd/containerd from 1.7.6 to 1.7.11
    joejulian committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    8fa4ec8 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #11387 from zak905/fix_post_install_hook_issue

    fix post install hook deletion due to before-hook-creation policy
    joejulian committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    99b8f44 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #11878 from Exchizz/feature/pass-basic-auth-to-dow…

    …nload-plugin
    
    feat: pass basic auth to env-vars when running download plugins
    joejulian committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    c9366c3 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2024

  1. Merge pull request #12530 from refl3ction/patch-1

    helm create: move livenessProbe and readinessProbe values to default values file
    joejulian committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    e06a143 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12204 from CARV-ICS-FORTH/riscv64

    Add support for RISC-V
    joejulian committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    6d96283 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2024

  1. Update to Go 1.21 for builds

    Noteis:
    1. This moves golangci scanning to a GitHub action. This will
       enable inline pointers to issues in the PR where linting fails.
    2. Go 1.21 is specified in the go.mod because Kubernetes libs
       require it.
    3. The lint issues were removed. Some were fixed while others
       were handled by skipping linting or using _ as an argument.
       Many of these can be refactored later for better cleanup.
    
    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    847369c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #9176 from dastrobu/#9169/lint-dependency-shadowing

    lint and validate dependency metadata to reference dependencies with …
    mattfarina committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    83a76ce View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump github.com/DATA-DOG/go-sqlmock from 1.5.0 to 1.5.2

    Bumps [github.com/DATA-DOG/go-sqlmock](https://github.com/DATA-DOG/go-sqlmock) from 1.5.0 to 1.5.2.
    - [Release notes](https://github.com/DATA-DOG/go-sqlmock/releases)
    - [Commits](DATA-DOG/go-sqlmock@v1.5.0...v1.5.2)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/DATA-DOG/go-sqlmock
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    5f9533f View commit details
    Browse the repository at this point in the history
  4. chore(deps): bump github/codeql-action from 3.22.11 to 3.23.0

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.22.11 to 3.23.0.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@b374143...e5f05b8)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    8cab7c1 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #12688 from mattfarina/bump-go-1.21

    Update to Go 1.21 for builds
    joejulian committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    762a1c7 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #11351 from greed42/fast-tpl

    Speed up `tpl`
    sabre1041 committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    77d54d7 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. lint: Add --kube-version flag to set capabilities and deprecation rules

    Signed-off-by: Antoine Deschênes <antoine@antoinedeschenes.com>
    antoinedeschenes committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    869c1d2 View commit details
    Browse the repository at this point in the history
  2. fix test to use the default code's k8sVersionMinor

    Signed-off-by: Joe Julian <me@joejulian.name>
    joejulian committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    6e5332e View commit details
    Browse the repository at this point in the history
  3. Merge pull request #10677 from antoinedeschenes/lint-kube-version

    lint: Add --kube-version flag to set capabilities and deprecation rules
    mattfarina committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    1ccde5a View commit details
    Browse the repository at this point in the history
  4. Merge pull request #12617 from porridge/dynamic-client

    feature(pkg/engine): introduce RenderWithClientProvider
    mattfarina committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    7fd0804 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #10920 from muang0/readiness-generation-check

    Verify generation in readiness checks
    mattfarina committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    b299359 View commit details
    Browse the repository at this point in the history
  6. Fix issues when verify generation readiness was merged

    CI, tests, and building failed after #10920 was merged. This change
    fixes the issues that were introduced.
    
    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    c042264 View commit details
    Browse the repository at this point in the history
  7. fix: wrong cli description

    Signed-off-by: xiaowu.zhu <xiaowu.zhu@daocloud.io>
    yyzxw authored and xiaowu.zhu committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    bf4d6f2 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #12698 from mattfarina/fix-10920

    Fix issues when verify generation readiness was merged
    mattfarina committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    27921d0 View commit details
    Browse the repository at this point in the history
  9. bump version to

    Signed-off-by: Matt Farina <matt.farina@suse.com>
    (cherry picked from commit 69dcc92)
    mattfarina committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    f4c37e7 View commit details
    Browse the repository at this point in the history
  10. Merge remote-tracking branch 'upstream/main' into fixup_release

    Signed-off-by: George Jenkins <gvjenkins@gmail.com>
    gjenkins8 committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    5726511 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Merge pull request #12672 from gjenkins8/fixup_release

    Fixup release
    mattfarina committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    dcf6819 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. Update architecture detection method

    ```
    In some OS, obtaining the processor type from `uname - p` may fail.
    For Golang programs, we should use `go env GOARCH` to obtain the architecture
    
    =====================
    $ go env GOARCH
    amd64
    $ uname -m
    x86_64
    $ uname -p
    unknown
    ```
    
    Signed-off-by: weidongkl <weidong@uniontech.com>
    weidongkl committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    57a1bb8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12697 from helm/dependabot/github_actions/github/…

    …codeql-action-3.23.0
    
    chore(deps): bump github/codeql-action from 3.22.11 to 3.23.0
    mattfarina committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    984c233 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12704 from weidongkl/main

    Update architecture detection method
    mattfarina committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    1df81d0 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2024

  1. Merge pull request #12696 from helm/dependabot/go_modules/github.com/…

    …DATA-DOG/go-sqlmock-1.5.2
    
    chore(deps): bump github.com/DATA-DOG/go-sqlmock from 1.5.0 to 1.5.2
    mattfarina committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    d3118c1 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump github.com/containerd/containerd from 1.7.11 to 1.7.12

    Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.7.11 to 1.7.12.
    - [Release notes](https://github.com/containerd/containerd/releases)
    - [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md)
    - [Commits](containerd/containerd@v1.7.11...v1.7.12)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/containerd/containerd
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    a2dd34b View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. Merge pull request #12713 from helm/dependabot/go_modules/github.com/…

    …containerd/containerd-1.7.12
    
    chore(deps): bump github.com/containerd/containerd from 1.7.11 to 1.7.12
    mattfarina committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    3a9d4e7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12616 from helm/dependabot/github_actions/actions…

    …/setup-go-5.0.0
    
    chore(deps): bump actions/setup-go from 4.1.0 to 5.0.0
    mattfarina committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    33ab351 View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump github/codeql-action from 3.23.0 to 3.23.1

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.23.0 to 3.23.1.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@e5f05b8...0b21cf2)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    de332ae View commit details
    Browse the repository at this point in the history
  4. chore(deps): bump actions/setup-go from 4.1.0 to 5.0.0

    Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4.1.0 to 5.0.0.
    - [Release notes](https://github.com/actions/setup-go/releases)
    - [Commits](actions/setup-go@v4.1.0...0c52d54)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-go
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    cbab6d6 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. Merge pull request #12723 from helm/dependabot/github_actions/github/…

    …codeql-action-3.23.1
    
    chore(deps): bump github/codeql-action from 3.23.0 to 3.23.1
    mattfarina committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    ead84c6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12428 from matt-carr/main

    fix(helm): fix grammatical error in default NOTES.txt
    mattfarina committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    e81f614 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. bug: add proxy support for oci getter

    adds missing proxy support on oci chart getter.
    
    Signed-off-by: Ricardo Maraschini <ricardo.maraschini@gmail.com>
    ricardomaraschini committed Jan 31, 2024
    Configuration menu
    Copy the full SHA
    94c1dea View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. validation fix

    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    8e6a514 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Fix: Ignore alias validation error for index load

    Signed-off-by: George Jenkins <gvjenkins@gmail.com>
    gjenkins8 committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    68294fd View commit details
    Browse the repository at this point in the history
  2. add error messages

    Signed-off-by: George Jenkins <gvjenkins@gmail.com>
    gjenkins8 committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    8d19bcb View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. chore(deps): bump golangci/golangci-lint-action from 3.7.0 to 4.0.0

    Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.7.0 to 4.0.0.
    - [Release notes](https://github.com/golangci/golangci-lint-action/releases)
    - [Commits](golangci/golangci-lint-action@3a91952...3cfe3a4)
    
    ---
    updated-dependencies:
    - dependency-name: golangci/golangci-lint-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    e6db0ec View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2024

  1. Merge pull request from GHSA-v53g-5gjp-272r

    validation fix
    mattfarina committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    0d0f91d View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. chore(deps): bump github/codeql-action from 3.23.1 to 3.24.3

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.23.1 to 3.24.3.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@0b21cf2...3796146)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    5bc97b9 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2024

  1. Merge pull request #12789 from gjenkins8/fix_chart_index_load_invalid…

    …_alias
    
    Fix: Ignore alias validation error for index load
    mattfarina committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    c7f318c View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. Some fixes

    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    764557c View commit details
    Browse the repository at this point in the history
  2. Merge pull request from GHSA-r53h-jv2g-vpx6

    Some fixes
    mattfarina committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    bb4cc91 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. Merge pull request #12801 from helm/dependabot/github_actions/github/…

    …codeql-action-3.24.3
    
    chore(deps): bump github/codeql-action from 3.23.1 to 3.24.3
    mattfarina committed Feb 22, 2024
    Configuration menu
    Copy the full SHA
    c5698e5 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

  1. chore(deps): bump github/codeql-action from 3.24.3 to 3.24.5

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.24.3 to 3.24.5.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@3796146...47b3d88)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Feb 23, 2024
    Configuration menu
    Copy the full SHA
    4f200fa View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Merge pull request #12816 from helm/dependabot/github_actions/github/…

    …codeql-action-3.24.5
    
    chore(deps): bump github/codeql-action from 3.24.3 to 3.24.5
    mattfarina committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    3764b48 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. chore(deps): bump github/codeql-action from 3.24.5 to 3.24.6

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.24.5 to 3.24.6.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@47b3d88...8a470fd)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    e22d881 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. Updating .gitignore

    Adding a line to ignore the .devcontainer/ to the .gitignore file so I can use containers to develop with Helm.
    
    Signed-off-by: Robert Sirchia <rsirchia@outlook.com>
    robertsirc committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    8b424ba View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12834 from robertsirc/main

    Updating .gitignore
    mattfarina committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    15d116b View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. chore(deps): bump golang.org/x/term from 0.15.0 to 0.18.0

    Bumps [golang.org/x/term](https://github.com/golang/term) from 0.15.0 to 0.18.0.
    - [Commits](golang/term@v0.15.0...v0.18.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/term
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 4, 2024
    Configuration menu
    Copy the full SHA
    275f2ab View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2024

  1. fix typo in load_plugins.go

    Signed-off-by: yxxhero <aiopsclub@163.com>
    yxxhero committed Mar 10, 2024
    Configuration menu
    Copy the full SHA
    7fbde33 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12833 from helm/dependabot/github_actions/github/…

    …codeql-action-3.24.6
    
    chore(deps): bump github/codeql-action from 3.24.5 to 3.24.6
    mattfarina committed Mar 10, 2024
    Configuration menu
    Copy the full SHA
    32f3691 View commit details
    Browse the repository at this point in the history
  3. Remove Helm 2 instructions from CONTRIBUTING.md

    Signed-off-by: George Jenkins <gvjenkins@gmail.com>
    gjenkins8 committed Mar 10, 2024
    Configuration menu
    Copy the full SHA
    7700be5 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2024

  1. Merge pull request #12792 from helm/dependabot/github_actions/golangc…

    …i/golangci-lint-action-4.0.0
    
    chore(deps): bump golangci/golangci-lint-action from 3.7.0 to 4.0.0
    mattfarina committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    098eed2 View commit details
    Browse the repository at this point in the history
  2. Add a note about --dry-run displaying secrets

    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    a23dd9e View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12859 from mattfarina/update-dry-run-messaging

    Add a note about --dry-run displaying secrets
    mattfarina committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    106f7a8 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #12724 from helm/dependabot/github_actions/actions…

    …/setup-go-5.0.0
    
    chore(deps): bump actions/setup-go from 4.1.0 to 5.0.0
    mattfarina committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    fa47752 View commit details
    Browse the repository at this point in the history
  5. Fixing all the linting errors

    Cleaned up all the linting errors we are getting.
    
    Signed-off-by: Robert Sirchia <rsirchia@outlook.com>
    robertsirc committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    d58d7b3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    571f69d View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. feat(load.go): add warning on requirements.lock

    Signed-off-by: Aaron U'Ren <aauren@users.noreply.github.com>
    aauren committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    29ab5c4 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump github/codeql-action from 3.24.6 to 3.24.7

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.24.6 to 3.24.7.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@8a470fd...3ab4101)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    ff94e93 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Enabling hide secrets on install and upgrade dry run

    This change adds a new flag to the install and upgrade commands in
    the Helm client and properties to the install and upgrade action.
    The new flag is --hide-secret and can only be used with the
    --dry-run flag.
    
    The --dry-run flag is designed to send all chart rendered manifests to
    stdout so that they can be inspected.
    
    When the --hide-secret flag is used the Secret content is removed from
    the output.
    
    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    25c4738 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12873 from helm/dependabot/github_actions/github/…

    …codeql-action-3.24.7
    
    chore(deps): bump github/codeql-action from 3.24.6 to 3.24.7
    mattfarina committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    d37e2e9 View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0

    Bumps google.golang.org/protobuf from 1.31.0 to 1.33.0.
    
    ---
    updated-dependencies:
    - dependency-name: google.golang.org/protobuf
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    7f53529 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2024

  1. Merge pull request #12871 from mattfarina/hide-secret-flag

    Enabling hide secrets on install and upgrade dry run
    mattfarina committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    122fdaf View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11790 from Nordix/waitRetry

    Add robustness to wait status checks
    mattfarina committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    2dea5bf View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12761 from ricardomaraschini/proxy-for-oci-download

    bug: add proxy support for oci getter
    mattfarina committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    976ed8c View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. chore(deps): bump github.com/docker/docker

    Bumps [github.com/docker/docker](https://github.com/docker/docker) from 24.0.7+incompatible to 24.0.9+incompatible.
    - [Release notes](https://github.com/docker/docker/releases)
    - [Commits](moby/moby@v24.0.7...v24.0.9)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/docker/docker
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    aaaf112 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Modified how created annotation is populated based on package creatio…

    …n time
    
    Signed-off-by: Andrew Block <andy.block@gmail.com>
    sabre1041 committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    0a69a0d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12903 from sabre1041/oci-created-annotation

    Modified how created annotation is populated based on package creation time
    joejulian committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    95d5874 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12839 from helm/dependabot/go_modules/golang.org/…

    …x/term-0.18.0
    
    chore(deps): bump golang.org/x/term from 0.15.0 to 0.18.0
    joejulian committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    833bbfa View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2024

  1. chore: remove repetitive words

    Signed-off-by: deterclosed <fliter@outlook.com>
    deterclosed committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    dd37787 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. chore(deps): bump github/codeql-action from 3.24.7 to 3.24.10

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.24.7 to 3.24.10.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@3ab4101...4355270)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    167d576 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2024

  1. Merge pull request #12927 from helm/dependabot/github_actions/github/…

    …codeql-action-3.24.10
    
    chore(deps): bump github/codeql-action from 3.24.7 to 3.24.10
    mattfarina committed Apr 6, 2024
    Configuration menu
    Copy the full SHA
    e5e3fac View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. Add error details when a dependent chart's version cannot be found in…

    … a repo
    
    Signed-off-by: Andreas Sommer <andreas.sommer87@googlemail.com>
    AndiDog committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    ac75eae View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12899 from helm/dependabot/go_modules/github.com/…

    …docker/docker-24.0.9incompatible
    
    chore(deps): bump github.com/docker/docker from 24.0.7+incompatible to 24.0.9+incompatible
    mattfarina committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    97c1651 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12878 from helm/dependabot/go_modules/google.gola…

    …ng.org/protobuf-1.33.0
    
    chore(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0
    mattfarina committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    47167ae View commit details
    Browse the repository at this point in the history
  4. Merge pull request #12905 from deterclosed/main

    chore: remove repetitive words
    mattfarina committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    635b8cf View commit details
    Browse the repository at this point in the history
  5. Merge pull request #12866 from robertsirc/Correcting-Linting-Errors

    Correcting linting errors
    mattfarina committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    a753ee7 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #11569 from alex-petrov-vt/iss-11553

    fix: reinstall previously uninstalled chart with --keep-history
    mattfarina committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    14d0c13 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. chore(deps): bump golang.org/x/net from 0.17.0 to 0.23.0

    Bumps [golang.org/x/net](https://github.com/golang/net) from 0.17.0 to 0.23.0.
    - [Commits](golang/net@v0.17.0...v0.23.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/net
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    dac23c8 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2024

  1. Update testdata PKI with keys that have validity until 3393 (Fixes #1…

    …2880)
    
    The ca.crt had to be regenerated because there was no ca.key. Added
    new ca.key so that going forward only the certs need to be updated.
    
    Signed-off-by: Dirk Müller <dirk@dmllr.de>
    dirkmueller committed Apr 21, 2024
    Configuration menu
    Copy the full SHA
    1b75d48 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Fix namespace on kubeconfig error

    Signed-off-by: Calvin Krist <calvin.krist@yahoo.com>
    CalvinKrist committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    214fb6e View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Merge pull request #12979 from CalvinKrist/fix-namespace-on-kube-error

    12124: Fix namespace on kubeconfig error
    joejulian committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    c6beb16 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. bump oras minor version

    Signed-off-by: Austin Abro <AustinAbro321@gmail.com>
    AustinAbro321 committed May 2, 2024
    Configuration menu
    Copy the full SHA
    e111320 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump actions/setup-go from 5.0.0 to 5.0.1

    Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.0.0 to 5.0.1.
    - [Release notes](https://github.com/actions/setup-go/releases)
    - [Commits](actions/setup-go@0c52d54...cdcb360)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-go
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 2, 2024
    Configuration menu
    Copy the full SHA
    53177e0 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

  1. Merge pull request #12966 from helm/dependabot/go_modules/golang.org/…

    …x/net-0.23.0
    
    chore(deps): bump golang.org/x/net from 0.17.0 to 0.23.0
    joejulian committed May 6, 2024
    Configuration menu
    Copy the full SHA
    1df0064 View commit details
    Browse the repository at this point in the history
  2. merge

    Signed-off-by: Austin Abro <AustinAbro321@gmail.com>
    AustinAbro321 committed May 6, 2024
    Configuration menu
    Copy the full SHA
    469a732 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Merge pull request #12971 from dirkmueller/cert_extended_range

    Update testdata PKI with keys that have validity until 3393 (closes #12880)
    mattfarina committed May 8, 2024
    Configuration menu
    Copy the full SHA
    cf823d4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12701 from mattfarina/bump-version-3.14

    bump version to 3.14
    mattfarina committed May 8, 2024
    Configuration menu
    Copy the full SHA
    7b70fdf View commit details
    Browse the repository at this point in the history
  3. bump version to v3.15.0

    Signed-off-by: Matt Farina <matt@mattfarina.com>
    (cherry picked from commit d7afa3b)
    mattfarina committed May 8, 2024
    Configuration menu
    Copy the full SHA
    886e626 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #12999 from helm/dependabot/github_actions/actions…

    …/setup-go-5.0.1
    
    chore(deps): bump actions/setup-go from 5.0.0 to 5.0.1
    mattfarina committed May 8, 2024
    Configuration menu
    Copy the full SHA
    518c692 View commit details
    Browse the repository at this point in the history
  5. chore(deps): bump github/codeql-action from 3.24.10 to 3.25.4

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.24.10 to 3.25.4.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@4355270...ccf74c9)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 8, 2024
    Configuration menu
    Copy the full SHA
    abd42d4 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Updating to k8s 1.30

    Signed-off-by: Matt Farina <matt.farina@suse.com>
    mattfarina committed May 9, 2024
    Configuration menu
    Copy the full SHA
    d209b9b View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Merge pull request #13021 from mattfarina/bump-k8s-1.30

    Updating to k8s 1.30
    mattfarina committed May 10, 2024
    Configuration menu
    Copy the full SHA
    2d85884 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.0.1

    Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 4.0.0 to 6.0.1.
    - [Release notes](https://github.com/golangci/golangci-lint-action/releases)
    - [Commits](golangci/golangci-lint-action@3cfe3a4...a4f60bb)
    
    ---
    updated-dependencies:
    - dependency-name: golangci/golangci-lint-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 10, 2024
    Configuration menu
    Copy the full SHA
    e68e82d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #13018 from helm/dependabot/github_actions/github/…

    …codeql-action-3.25.4
    
    chore(deps): bump github/codeql-action from 3.24.10 to 3.25.4
    mattfarina committed May 10, 2024
    Configuration menu
    Copy the full SHA
    d36ee15 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2024

  1. [mk] Add windows arm64 build targets

    Signed-off-by: Asmit De <asmit.de@outlook.com>
    asmitde committed May 12, 2024
    Configuration menu
    Copy the full SHA
    5cef143 View commit details
    Browse the repository at this point in the history
  2. [scripts] Add windows arm64 entries in install and release notes scripts

    Signed-off-by: Asmit De <asmit.de@outlook.com>
    asmitde committed May 12, 2024
    Configuration menu
    Copy the full SHA
    f615c1a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12860 from gjenkins8/patch-2

    Remove Helm 2 instructions from CONTRIBUTING.md
    sabre1041 committed May 12, 2024
    Configuration menu
    Copy the full SHA
    e24e31f View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Update github.com/asaskevich/govalidator

    Signed-off-by: Shahar Harari <shahar.harari@sap.com>
    shahar-h committed May 13, 2024
    Configuration menu
    Copy the full SHA
    65b03d7 View commit details
    Browse the repository at this point in the history
  2. merge

    Signed-off-by: Austin Abro <AustinAbro321@gmail.com>
    AustinAbro321 committed May 13, 2024
    Configuration menu
    Copy the full SHA
    bb6e399 View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump github/codeql-action from 3.25.4 to 3.25.5

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.4 to 3.25.5.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@ccf74c9...b7cec75)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 13, 2024
    Configuration menu
    Copy the full SHA
    63ba355 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. Merge pull request #13033 from helm/dependabot/github_actions/github/…

    …codeql-action-3.25.5
    
    chore(deps): bump github/codeql-action from 3.25.4 to 3.25.5
    mattfarina committed May 14, 2024
    Configuration menu
    Copy the full SHA
    5a88dd1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #13019 from helm/dependabot/github_actions/golangc…

    …i/golangci-lint-action-6.0.1
    
    chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.0.1
    mattfarina committed May 14, 2024
    Configuration menu
    Copy the full SHA
    7a77824 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #13031 from shahar-h/update-go-validator

    Update github.com/asaskevich/govalidator
    mattfarina committed May 14, 2024
    Configuration menu
    Copy the full SHA
    ee49972 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. Merge pull request #12867 from aauren/add_requirements.lock_warning

    feat(load.go): add warning on requirements.lock
    mattfarina committed May 15, 2024
    Configuration menu
    Copy the full SHA
    c16b1c9 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. Merge pull request #13013 from mattfarina/release-version-3.15

    bump version to v3.15.0
    scottrigby committed May 16, 2024
    Configuration menu
    Copy the full SHA
    51a07e7 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2024

  1. ---

    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 20, 2024
    Configuration menu
    Copy the full SHA
    5e31004 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. Merge pull request #13050 from helm/dependabot/github_actions/github/…

    …codeql-action-3.25.6
    
    chore(deps): bump github/codeql-action from 3.25.5 to 3.25.6
    mattfarina committed May 22, 2024
    Configuration menu
    Copy the full SHA
    c3cff5b View commit details
    Browse the repository at this point in the history
  2. Fixing build issue where wrong version is used

    The release process had selected the tag to use as the version
    automatically. But, this presented a problem when a release
    candidate and final release pointed to the same commit id. For a
    long time it had automatically selected the final release. But,
    we ran into a problem where it selected the RC tag instead of the
    final release.
    
    This change explicitly tells the build scripts the version to use
    based on the tag passed into the CI run. It should no longer try
    to self discover the version.
    
    Closes #13040
    
    Signed-off-by: Matt Farina <matt@mattfarina.com>
    mattfarina committed May 22, 2024
    Configuration menu
    Copy the full SHA
    0b64775 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2024

  1. fix docs of DeployedAll

    Signed-off-by: Daniel Strobusch <1847260+dastrobu@users.noreply.github.com>
    dastrobu committed May 23, 2024
    Configuration menu
    Copy the full SHA
    90df4fa View commit details
    Browse the repository at this point in the history
  2. Merge pull request #13059 from mattfarina/fix-build-tag

    Fixing build issue where wrong version is used
    mattfarina committed May 23, 2024
    Configuration menu
    Copy the full SHA
    691f313 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #13029 from asmitde/asmitde/windows-arm64-build

    Windows arm64 build
    mattfarina committed May 23, 2024
    Configuration menu
    Copy the full SHA
    61086e1 View commit details
    Browse the repository at this point in the history
  4. Update walk.go

    Putting a comment on why we are logging a found symlink.
    
    Signed-off-by: Robert Sirchia <rsirchia@outlook.com>
    robertsirc committed May 23, 2024
    Configuration menu
    Copy the full SHA
    30a5598 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e90b456 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2024

  1. Merge pull request #12998 from AustinAbro321/bump-oras-minor-version

    bump oras minor version
    sabre1041 committed May 31, 2024
    Configuration menu
    Copy the full SHA
    26b7851 View commit details
    Browse the repository at this point in the history
  2. Bump github.com/docker/docker

    Bumps [github.com/docker/docker](https://github.com/docker/docker) from 25.0.1+incompatible to 25.0.5+incompatible.
    - [Release notes](https://github.com/docker/docker/releases)
    - [Commits](moby/moby@v25.0.1...v25.0.5)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/docker/docker
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 31, 2024
    Configuration menu
    Copy the full SHA
    6773d5b View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump github.com/opencontainers/image-spec

    Bumps [github.com/opencontainers/image-spec](https://github.com/opencontainers/image-spec) from 1.1.0-rc5 to 1.1.0.
    - [Release notes](https://github.com/opencontainers/image-spec/releases)
    - [Changelog](https://github.com/opencontainers/image-spec/blob/main/RELEASES.md)
    - [Commits](opencontainers/image-spec@v1.1.0-rc5...v1.1.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/opencontainers/image-spec
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 31, 2024
    Configuration menu
    Copy the full SHA
    b61a1fc View commit details
    Browse the repository at this point in the history
  4. Bump github/codeql-action from 3.25.6 to 3.25.7

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.6 to 3.25.7.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@9fdb3e4...f079b84)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed May 31, 2024
    Configuration menu
    Copy the full SHA
    6ae6438 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. Merge pull request #13084 from helm/dependabot/github_actions/github/…

    …codeql-action-3.25.7
    
    Bump github/codeql-action from 3.25.6 to 3.25.7
    mattfarina committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    6f32a8f View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Merge pull request #13083 from helm/dependabot/go_modules/github.com/…

    …docker/docker-25.0.5incompatible
    
    Bump github.com/docker/docker from 25.0.1+incompatible to 25.0.5+incompatible
    mattfarina committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    d1595e7 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. Merge pull request #12934 from AndiDog/error-message-chart-version

    Add error details when a dependent chart's version cannot be found in a repo
    mattfarina committed Jun 10, 2024
    Configuration menu
    Copy the full SHA
    79cad1a View commit details
    Browse the repository at this point in the history
  2. Bump github/codeql-action from 3.25.7 to 3.25.8

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.7 to 3.25.8.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@f079b84...2e230e8)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jun 10, 2024
    Configuration menu
    Copy the full SHA
    ca98970 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #13088 from helm/dependabot/github_actions/github/…

    …codeql-action-3.25.8
    
    Bump github/codeql-action from 3.25.7 to 3.25.8
    mattfarina committed Jun 10, 2024
    Configuration menu
    Copy the full SHA
    03a29db View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2024

  1. Merge pull request #13028 from helm/dependabot/go_modules/github.com/…

    …opencontainers/image-spec-1.1.0
    
    chore(deps): bump github.com/opencontainers/image-spec from 1.1.0-rc5 to 1.1.0
    mattfarina committed Jun 11, 2024
    Configuration menu
    Copy the full SHA
    5d371e9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #13054 from dastrobu/docs/deployed-all

    fix docs of DeployedAll
    mattfarina committed Jun 11, 2024
    Configuration menu
    Copy the full SHA
    16c1220 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #12856 from yxxhero/fix-typo-in-load_plugins.go

    fix typo in load_plugins.go
    mattfarina committed Jun 11, 2024
    Configuration menu
    Copy the full SHA
    2a2aa4a View commit details
    Browse the repository at this point in the history
  4. Merge pull request #12649 from yyzxw/fix/wrong-cli-description

    fix: wrong cli description
    mattfarina committed Jun 11, 2024
    Configuration menu
    Copy the full SHA
    f1e8518 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2024

  1. Merge pull request #11600 from miles-w-3/chart-notes

    Added support for hiding notes from install/upgrade output
    sabre1041 committed Jun 12, 2024
    Configuration menu
    Copy the full SHA
    414cf94 View commit details
    Browse the repository at this point in the history