-
Notifications
You must be signed in to change notification settings - Fork 770
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c3f28c7
commit 7ee3b91
Showing
6 changed files
with
116 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## [crds_v1.1.0](https://github.com/traefik/traefik-helm-chart/compare/crds_v1.0.0...crds_v1.1.0) (2025-01-13) | ||
## :rocket: Features | ||
|
||
- feat(CRDs): update CRDs for Traefik Proxy v3.3.x #1303 by @mloiseleur | ||
|
||
## :bug: Bug fixes | ||
|
||
- fix(CRDs): :bug: bad regexp to generate CRDs release notes #1302 by @darkweaver87 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## [v34.2.0](https://github.com/traefik/traefik-helm-chart/compare/v34.1.0...v34.2.0) (2025-01-28) | ||
## :rocket: Features | ||
|
||
- feat: :sparkles: add hub tracing capabilities #1322 by @darkweaver87 | ||
|
||
## :bug: Bug fixes | ||
|
||
- fix: :bug: permanent redirect should be disableable #1319 by @darkweaver87 | ||
|
||
## :package: Others | ||
|
||
- chore: update issue template #1316 by @mloiseleur | ||
- docs: 📚️ fix typo in Guidelines.md #1320 by @lbarnkow | ||
- chore(release): publish v34.2.0 #1323 by @darkweaver87 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
--- | ||
name: Test release | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- .github/fixtures/changelog-traefik.md | ||
- .github/fixtures/changelog-traefik-crds.md | ||
- .github/workflows/release.yaml | ||
- .github/workflows/changelog.json | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Render traefik changelog configuration | ||
env: | ||
REGEXP: '(\\(.+\\)|(?!\\(CRDs-.+\\)))' | ||
run: | | ||
export DATE=2025-01-28; cat .github/workflows/changelog.json | envsubst > /tmp/changelog.json; cat /tmp/changelog.json | ||
- name: Build Changelog | ||
id: changelog | ||
uses: mikepenz/release-changelog-builder-action@v5 | ||
with: | ||
fromTag: v34.1.0 | ||
toTag: v34.2.0 | ||
configuration: "/tmp/changelog.json" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Write changelog | ||
run: | | ||
cat <<EOF > /tmp/changelog.md | ||
${{ steps.changelog.outputs.changelog }} | ||
EOF | ||
- name: Check that the files are the exact same | ||
uses: LouisBrunner/[email protected] | ||
with: | ||
old: .github/fixtures/changelog-traefik.md | ||
new: /tmp/changelog.md | ||
mode: strict | ||
tolerance: same | ||
|
||
test-crds: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Render traefik changelog configuration | ||
env: | ||
REGEXP: '\\((CRDs|CRDs-.+)\\)' | ||
run: | | ||
export DATE=2025-01-13; cat .github/workflows/changelog.json | envsubst > /tmp/changelog.json; cat /tmp/changelog.json | ||
- name: Build Changelog | ||
id: changelog | ||
uses: mikepenz/release-changelog-builder-action@v5 | ||
with: | ||
fromTag: crds_v1.0.0 | ||
toTag: crds_v1.1.0 | ||
configuration: "/tmp/changelog.json" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Write changelog | ||
run: | | ||
cat <<EOF > /tmp/changelog.md | ||
${{ steps.changelog.outputs.changelog }} | ||
EOF | ||
- name: Check that the files are the exact same | ||
uses: LouisBrunner/[email protected] | ||
with: | ||
old: .github/fixtures/changelog-traefik-crds.md | ||
new: /tmp/changelog.md | ||
mode: strict | ||
tolerance: same |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters