From ebd047602ca151ee4b668c28118b8ad3525ccc8c Mon Sep 17 00:00:00 2001 From: Ryan <8829107+ryan-pip@users.noreply.github.com> Date: Thu, 19 Mar 2026 20:47:32 +1300 Subject: [PATCH 1/4] feat(atlassian.com/acli): scaffold atlassian.com/acli --- pkgs/atlassian.com/acli/pkg.yaml | 2 ++ pkgs/atlassian.com/acli/registry.yaml | 5 +++++ registry.yaml | 3 +++ 3 files changed, 10 insertions(+) create mode 100644 pkgs/atlassian.com/acli/pkg.yaml create mode 100644 pkgs/atlassian.com/acli/registry.yaml diff --git a/pkgs/atlassian.com/acli/pkg.yaml b/pkgs/atlassian.com/acli/pkg.yaml new file mode 100644 index 00000000000..9ca251cd7e5 --- /dev/null +++ b/pkgs/atlassian.com/acli/pkg.yaml @@ -0,0 +1,2 @@ +packages: + - name: atlassian.com/acli@ diff --git a/pkgs/atlassian.com/acli/registry.yaml b/pkgs/atlassian.com/acli/registry.yaml new file mode 100644 index 00000000000..511c0a780fb --- /dev/null +++ b/pkgs/atlassian.com/acli/registry.yaml @@ -0,0 +1,5 @@ +# yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json +packages: + - type: github_release + repo_owner: atlassian.com + repo_name: acli diff --git a/registry.yaml b/registry.yaml index 3228d8c3a87..c06e2f72c35 100644 --- a/registry.yaml +++ b/registry.yaml @@ -15614,6 +15614,9 @@ packages: supported_envs: - linux/amd64 - windows/amd64 + - type: github_release + repo_owner: atlassian.com + repo_name: acli - type: github_release repo_owner: atuinsh repo_name: atuin From 5889c933c87531642a7164b327fae7a595f999a2 Mon Sep 17 00:00:00 2001 From: Ryan <8829107+ryan-pip@users.noreply.github.com> Date: Thu, 19 Mar 2026 21:24:18 +1300 Subject: [PATCH 2/4] feat(atlassian.com/acli): add atlassian.com/acli Co-Authored-By: Claude Sonnet 4.6 --- pkgs/atlassian.com/acli/pkg.yaml | 4 +++- pkgs/atlassian.com/acli/registry.yaml | 18 +++++++++++++++--- registry.yaml | 18 +++++++++++++++--- 3 files changed, 33 insertions(+), 7 deletions(-) diff --git a/pkgs/atlassian.com/acli/pkg.yaml b/pkgs/atlassian.com/acli/pkg.yaml index 9ca251cd7e5..44e0c992947 100644 --- a/pkgs/atlassian.com/acli/pkg.yaml +++ b/pkgs/atlassian.com/acli/pkg.yaml @@ -1,2 +1,4 @@ packages: - - name: atlassian.com/acli@ + - name: atlassian.com/acli@1.3.14-stable + - name: atlassian.com/acli + version: 1.2.0-stable diff --git a/pkgs/atlassian.com/acli/registry.yaml b/pkgs/atlassian.com/acli/registry.yaml index 511c0a780fb..bb98d4ba8c4 100644 --- a/pkgs/atlassian.com/acli/registry.yaml +++ b/pkgs/atlassian.com/acli/registry.yaml @@ -1,5 +1,17 @@ # yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json packages: - - type: github_release - repo_owner: atlassian.com - repo_name: acli + - type: http + repo_owner: ryan-pip + repo_name: acli-versions + name: atlassian.com/acli + description: Software to interact with Atlassian Cloud from the terminal + link: https://developer.atlassian.com/cloud/acli/ + version_source: github_tag + url: https://acli.atlassian.com/{{.OS}}/{{.Version}}/acli_{{.Version}}_{{.OS}}_{{.Arch}}.tar.gz + format: tar.gz + files: + - name: acli + src: acli_{{.Version}}_{{.OS}}_{{.Arch}}/acli + supported_envs: + - linux + - darwin diff --git a/registry.yaml b/registry.yaml index c06e2f72c35..1587ea2d8d7 100644 --- a/registry.yaml +++ b/registry.yaml @@ -15614,9 +15614,21 @@ packages: supported_envs: - linux/amd64 - windows/amd64 - - type: github_release - repo_owner: atlassian.com - repo_name: acli + - type: http + repo_owner: ryan-pip + repo_name: acli-versions + name: atlassian.com/acli + description: Software to interact with Atlassian Cloud from the terminal + link: https://developer.atlassian.com/cloud/acli/ + version_source: github_tag + url: https://acli.atlassian.com/{{.OS}}/{{.Version}}/acli_{{.Version}}_{{.OS}}_{{.Arch}}.tar.gz + format: tar.gz + files: + - name: acli + src: acli_{{.Version}}_{{.OS}}_{{.Arch}}/acli + supported_envs: + - linux + - darwin - type: github_release repo_owner: atuinsh repo_name: atuin From 0fafbd43f2665849527372c65f82e0471f8b81f1 Mon Sep 17 00:00:00 2001 From: Ryan <8829107+ryan-pip@users.noreply.github.com> Date: Thu, 19 Mar 2026 22:25:03 +1300 Subject: [PATCH 3/4] fix: constrain architectures for atlassian cli --- pkgs/atlassian.com/acli/registry.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/atlassian.com/acli/registry.yaml b/pkgs/atlassian.com/acli/registry.yaml index bb98d4ba8c4..d492f3f2e6b 100644 --- a/pkgs/atlassian.com/acli/registry.yaml +++ b/pkgs/atlassian.com/acli/registry.yaml @@ -13,5 +13,7 @@ packages: - name: acli src: acli_{{.Version}}_{{.OS}}_{{.Arch}}/acli supported_envs: - - linux - - darwin + - linux/amd64 + - linux/arm64 + - darwin/amd64 + - darwin/arm64 From ea44a8ff50ea6d20b12fb00b57571e2abb921443 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 21 Mar 2026 01:28:15 +0000 Subject: [PATCH 4/4] [autofix.ci] apply automated fixes --- registry.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/registry.yaml b/registry.yaml index 1587ea2d8d7..9abded271d6 100644 --- a/registry.yaml +++ b/registry.yaml @@ -15627,8 +15627,10 @@ packages: - name: acli src: acli_{{.Version}}_{{.OS}}_{{.Arch}}/acli supported_envs: - - linux - - darwin + - linux/amd64 + - linux/arm64 + - darwin/amd64 + - darwin/arm64 - type: github_release repo_owner: atuinsh repo_name: atuin