Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .bcr/metadata.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"homepage": "https://github.com/abrisco/rules_helm",
"homepage": "https://github.com/periareon/rules_helm",
"maintainers": [
{
"name": "Andre Brisco",
Expand All @@ -9,7 +9,8 @@
}
],
"repository": [
"github:abrisco/rules_helm"
"github:abrisco/rules_helm",
"github:periareon/rules_helm"
],
"versions": [],
"yanked_versions": {}
Expand Down
2 changes: 1 addition & 1 deletion .bcr/presubmit.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
bcr_test_module:
# TODO(abrisco/rules_helm#38): Have this run in a regression test
# TODO(periareon/rules_helm#38): Have this run in a regression test
# directory which is consuming rules_helm and not just testing
# within the same repository.
module_path: "."
Expand Down
4 changes: 2 additions & 2 deletions .github/release_notes.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_helm",
integrity = "sha256-{sha256_base64}",
urls = ["https://github.com/abrisco/rules_helm/releases/download/{version}/rules_helm-v{version}.tar.gz"],
urls = ["https://github.com/periareon/rules_helm/releases/download/{version}/rules_helm-v{version}.tar.gz"],
)
```

Additional documentation can be found at: https://github.com/abrisco/rules_helm
Additional documentation can be found at: https://github.com/periareon/rules_helm
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:

jobs:
release:
if: ${{ github.repository_owner == 'abrisco' }}
if: ${{ github.repository_owner == 'periareon' }}
permissions:
contents: write
actions: write
Expand Down
4 changes: 2 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""abrisco/rules_helm"""
"""periareon/rules_helm"""

module(
name = "rules_helm",
version = "0.20.1",
version = "0.21.0",
compatibility_level = 1,
)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Bazel rules for [Helm](https://helm.sh/).

## Documentation

https://abrisco.github.io/rules_helm/
https://periareon.github.io/rules_helm/
2 changes: 1 addition & 1 deletion docs/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ src = "src"
title = "rules_helm"

[output.html]
git-repository-url = "https://github.com/abrisco/rules_helm/"
git-repository-url = "https://github.com/periareon/rules_helm/"
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/abrisco/rules_helm
module github.com/periareon/rules_helm

go 1.23.0

Expand Down
2 changes: 1 addition & 1 deletion helm/extensions.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def _helm_impl(module_ctx):

# The URLs for linux-i386 artifacts are actually published under
# a different name. The check below accounts for this.
# https://github.com/abrisco/rules_helm/issues/76
# https://github.com/periareon/rules_helm/issues/76
url_platform = platform
if url_platform == "linux-i386":
url_platform = "linux-386"
Expand Down
2 changes: 1 addition & 1 deletion helm/private/helm_utils/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ load("@rules_go//go:def.bzl", "go_library")
go_library(
name = "helm_utils",
srcs = ["helm_utils.go"],
importpath = "github.com/abrisco/rules_helm/helm/private/helm_utils",
importpath = "github.com/periareon/rules_helm/helm/private/helm_utils",
visibility = ["//helm:__subpackages__"],
deps = [
"@rules_go//go/runfiles",
Expand Down
2 changes: 1 addition & 1 deletion helm/private/linter/linter.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"path/filepath"
"strings"

"github.com/abrisco/rules_helm/helm/private/helm_utils"
"github.com/periareon/rules_helm/helm/private/helm_utils"
)

// stringSliceFlag is a custom flag type for collecting multiple values
Expand Down
2 changes: 1 addition & 1 deletion helm/private/packager/packager.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"regexp"
"strings"

"github.com/abrisco/rules_helm/helm/private/helm_utils"
"github.com/periareon/rules_helm/helm/private/helm_utils"
"gopkg.in/yaml.v3"
)

Expand Down
2 changes: 1 addition & 1 deletion helm/private/registrar/registrar.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"os/exec"
"strings"

"github.com/abrisco/rules_helm/helm/private/helm_utils"
"github.com/bazelbuild/rules_go/go/runfiles"
"github.com/periareon/rules_helm/helm/private/helm_utils"
)

// Chart represents the structure of Chart.yaml
Expand Down
2 changes: 1 addition & 1 deletion helm/private/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"syscall"

"github.com/abrisco/rules_helm/helm/private/helm_utils"
"github.com/periareon/rules_helm/helm/private/helm_utils"
)

func parseArgsUpToDashDash(argv []string) ([]string, []string) {
Expand Down
2 changes: 1 addition & 1 deletion helm/private/templater/templater.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"syscall"

"github.com/abrisco/rules_helm/helm/private/helm_utils"
"github.com/periareon/rules_helm/helm/private/helm_utils"
)

// stringSliceFlag is a custom flag type for collecting multiple values
Expand Down
2 changes: 1 addition & 1 deletion tests/with_image_deps_oci/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exports_files(["Chart.lock"])

EXCLUDE_WINDOWS = select({
# TODO: rules_oci is broken on simple windows systems such as the windows github runners
# https://github.com/abrisco/rules_helm/issues/53
# https://github.com/periareon/rules_helm/issues/53
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
})
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" Version info for the `rules_helm` repository """

VERSION = "0.20.1"
VERSION = "0.21.0"
Loading