Loading
Commits on Source 58
-
GitLab Renovate Bot authored
-
renovate-bot authored
chore(deps): update dependency gitlab-org/caproni to v2.29.1 See merge request !691
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
renovate-bot authored
chore(deps): update dependency gitlab-com/gl-infra/platform/runway/fairway to v1.19.1 See merge request !692
-
renovate-bot authored
chore(deps): update common-ci-tasks to v4.3 See merge request !693
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
renovate-bot authored
chore(deps): update common-ci-tasks to v4.4 See merge request !694
-
renovate-bot authored
chore(deps): update dependency gitlab-org/caproni to v2.31.0 See merge request !695
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
chore(deps): update dependency https://gitlab.com/gitlab-com/gl-infra/common-template-copier.git to v1.51.0
-
renovate-bot authored
chore(deps): update dependency gitlab-com/gl-infra/platform/runway/fairway to v1.19.2 See merge request !697
-
renovate-bot authored
chore(deps): update dependency hashicorp/terraform to v1.15.4 See merge request !698
-
renovate-bot authored
chore(deps): update dependency air-verse/air to v1.65.3 See merge request !696
-
renovate-bot authored
chore(deps): update dependency https://gitlab.com/gitlab-com/gl-infra/common-template-copier.git to v1.51.0 See merge request !700
-
GitLab Renovate Bot authored
-
renovate-bot authored
chore(deps): update dependency metalbear-co/mirrord to v3.212.0 See merge request !701
-
GitLab Renovate Bot authored
-
renovate-bot authored
chore(deps): update common-ci-tasks to v4.5 See merge request !699
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
chore(deps): update registry.gitlab.com/gitlab-com/gl-infra/common-ci-tasks-images/goreleaser docker tag to v2.16.0
-
renovate-bot authored
chore(deps): update common-ci-tasks to v4.6 See merge request !702
-
renovate-bot authored
chore(deps): update dependency gitlab-com/gl-infra/platform/runway/fairway to v1.20.0 See merge request !703
-
renovate-bot authored
Merge branch 'renovate/registry.gitlab.com-gitlab-com-gl-infra-common-ci-tasks-images-goreleaser-2.x' into 'main' chore(deps): update registry.gitlab.com/gitlab-com/gl-infra/common-ci-tasks-images/goreleaser docker tag to v2.16.0 See merge request !704
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
renovate-bot authored
chore(deps): update common-ci-tasks to v4.8 See merge request !705
-
renovate-bot authored
chore(deps): update dependency gitlab-org/caproni to v2.33.1 See merge request !706
-
-
John Skarbek authored
test: fetch OLD_REF tag when it is behind CI GIT_DEPTH See merge request !717
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
renovate-bot authored
chore(deps): update dependency gitlab-com/gl-infra/platform/runway/fairway to v1.23.0 See merge request !707
-
renovate-bot authored
chore(deps): update dependency gitlab-org/caproni to v2.44.1 See merge request !708
-
renovate-bot authored
chore(deps): update dependency metalbear-co/mirrord to v3.215.1 See merge request !711
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
chore(deps): update registry.gitlab.com/gitlab-com/gl-infra/common-ci-tasks-images/tflint docker tag to v0.63.1
-
renovate-bot authored
chore(deps): update dependency golang/go to v1.26.4 See merge request !709
-
renovate-bot authored
chore(deps): update dependency hashicorp/terraform to v1.15.5 See merge request !710
-
renovate-bot authored
chore(deps): update common-ci-tasks to v4.10 See merge request !713
-
renovate-bot authored
Merge branch 'renovate/registry.gitlab.com-gitlab-com-gl-infra-common-ci-tasks-images-tflint-0.x' into 'main' chore(deps): update registry.gitlab.com/gitlab-com/gl-infra/common-ci-tasks-images/tflint docker tag to v0.63.1 See merge request !715
-
GitLab Renovate Bot authored
-
renovate-bot authored
chore(deps): update dependency gitlab-com/gl-infra/terra-transformer to v1.32.21 See merge request !712
-
Alessio Caiazza authored
The conflict/keep/delete releaserc update tests scaffolded a project from the real v1.50.0 tag, then updated to the version under test. In CI's shallow checkout that tag lives behind GIT_DEPTH, so it had to be fetched. Worse, copier derives a template's version from the nearest reachable git tag (much like git describe) and refuses updates that look like downgrades; once the branch tip drifted far enough past the newest reachable tag, the update ref had no tag in reach and resolved to a 0.0.0.postN version, so copier rejected the update as a downgrade. The regression these tests guard lives in the current template's _skip_if_exists config (the side copier update applies), not in any historical release, so the baseline need not be a real tag. Build two synthetic, locally-tagged revisions of the template under test instead: a base (the template as-is) and a next (base plus a throwaway upstream edit). Tagging the exact commits gives copier deterministic, distance-0 versions with no real tags, no network fetch, and no git history beyond the commits themselves, so the tests run cleanly against a shallow CI clone. Drop test_ensure_ref and test_pin_update_version; add the generic test_tag_version helper plus the TEST_BASE_VERSION/TEST_NEXT_VERSION constants. See !716 AI-assisted: Zed Agent (Claude Opus 4.8)
-
John Skarbek authored
test: use synthetic tags in releaserc tests See merge request !719
-
GitLab Renovate Bot authored
-
GitLab Renovate Bot authored
-
renovate-bot authored
chore(deps): update dependency gitlab-com/gl-infra/platform/runway/fairway to v1.24.0 See merge request !720
-
renovate-bot authored
chore(deps): update dependency gitlab-org/caproni to v2.45.1 See merge request !721
-
Alessio Caiazza authored
_exclude and _skip_if_exists are matched with gitignore (gitwildmatch) semantics: a pattern without a leading slash matches a file of that name in ANY directory, not just the repo root. The unanchored entries therefore matched nested paths unintentionally. Most visibly, the bare "tests" exclusion also matched chart/tests/, so chart/tests/deployment_test.yaml has been silently excluded from every rendered helm project since it was added in 7749ae05 -- the helm-unittest scaffolding never actually reached projects. Bare "README.md" and ".gitignore" likewise matched caproni/README.md and caproni/.gitignore, skipping them on update instead of only their root counterparts. Add a leading slash to every entry so each matches only its intended root path, and document the gitwildmatch semantics inline so future entries follow the convention. Bump _min_copier_version to 9.12.0: leading-slash anchoring only works on update from that release onward. Earlier copier passed the skip patterns to 'git apply --exclude' (pathspec, not gitignore), where a leading slash matches nothing and disables the skip, producing spurious merge conflicts on update. Fixed upstream in copier PR #2505. [delay release] AI-assisted: Claude Code (Claude Opus 4.8)
-
John Skarbek authored
Anchor copier path patterns to repo root See merge request !722