Skip to content

Commit 2162e2f

Browse files
committed
[RELEASE] Updated project version to v7.5.0
1 parent e1e6ebd commit 2162e2f

File tree

143 files changed

+225
-218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+225
-218
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ body:
4848
description: Fabric8 Kubernetes Client version (can be found in pom.xml dependency or build.gradle implementation section)
4949
options:
5050
- "SNAPSHOT"
51+
- "7.5.0"
5152
- "7.4.0"
5253
- "7.3.1"
5354
- "7.2.0"

.github/workflows/release-snapshots.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ jobs:
4646
steps:
4747
- name: Checkout
4848
uses: actions/checkout@v6
49-
- name: Cache .m2 registry
50-
uses: actions/cache@v4
51-
with:
52-
path: ~/.m2/repository
53-
key: cache-snapshot-release-${{ github.sha }}-${{ github.run_id }}
5449
- name: Setup Java 11
5550
uses: actions/setup-java@v5
5651
with:
@@ -62,6 +57,8 @@ jobs:
6257
gpg-private-key: ${{ secrets.SIGNINGKEY }}
6358
gpg-passphrase: SIGNINGPASSWORD
6459
- name: Generate BOM
65-
run: ./mvnw ${MAVEN_ARGS} clean sundr:generate-bom
60+
run: ./mvnw ${MAVEN_ARGS} -Pbom clean sundr:generate-bom
61+
- name: Add parent to BOMs
62+
run: make boms-add-parent
6663
- name: Build and release Java modules
6764
run: ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} deploy

.github/workflows/release.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,6 @@ jobs:
5353
uses: actions/checkout@v6
5454
with:
5555
ref: ${{ github.event.inputs.tag }}
56-
- name: Cache .m2 registry
57-
uses: actions/cache@v4
58-
with:
59-
path: ~/.m2/repository
60-
key: cache-release-${{ github.sha }}-${{ github.run_id }}
6156
- name: Setup Java 11
6257
uses: actions/setup-java@v5
6358
with:
@@ -69,6 +64,8 @@ jobs:
6964
gpg-private-key: ${{ secrets.SIGNINGKEY }}
7065
gpg-passphrase: SIGNINGPASSWORD
7166
- name: Generate BOM
72-
run: ./mvnw ${MAVEN_ARGS} clean sundr:generate-bom
67+
run: ./mvnw ${MAVEN_ARGS} -Pbom clean sundr:generate-bom
68+
- name: Add parent to BOMs
69+
run: make boms-add-parent
7370
- name: Build and release Java modules
7471
run: ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} deploy

CHANGELOG.md

Lines changed: 1 addition & 1 deletion

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,13 @@ quickly: clean
8787
.PHONY: install
8888
install: clean
8989
mvn $(MAVEN_ARGS) install
90+
91+
.PHONY: boms-add-parent
92+
boms-add-parent:
93+
@for bom in target/classes/kubernetes-client-bom/pom.xml target/classes/kubernetes-client-bom-with-deps/pom.xml; do \
94+
if [ -f "$$bom" ]; then \
95+
VERSION=$$(grep -m1 '<version>' "$$bom" | sed 's/.*<version>\(.*\)<\/version>.*/\1/'); \
96+
sed "s|<modelVersion>4.0.0</modelVersion>|<modelVersion>4.0.0</modelVersion>\\n\\n <parent>\\n <groupId>io.fabric8</groupId>\\n <artifactId>kubernetes-client-project</artifactId>\\n <version>$$VERSION</version>\\n </parent>|" "$$bom" > "$$bom.tmp" && mv "$$bom.tmp" "$$bom"; \
97+
echo "Added parent to $$bom with version $$VERSION"; \
98+
fi \
99+
done

chaos-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.fabric8</groupId>
2323
<artifactId>kubernetes-client-project</artifactId>
24-
<version>7.5-SNAPSHOT</version>
24+
<version>7.5.0</version>
2525
</parent>
2626

2727
<artifactId>chaos-tests</artifactId>

crd-generator/api-v2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>crd-generator-parent</artifactId>
2424
<groupId>io.fabric8</groupId>
25-
<version>7.5-SNAPSHOT</version>
25+
<version>7.5.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

crd-generator/api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>crd-generator-parent</artifactId>
2424
<groupId>io.fabric8</groupId>
25-
<version>7.5-SNAPSHOT</version>
25+
<version>7.5.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

crd-generator/apt/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>crd-generator-parent</artifactId>
2424
<groupId>io.fabric8</groupId>
25-
<version>7.5-SNAPSHOT</version>
25+
<version>7.5.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

crd-generator/cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>crd-generator-parent</artifactId>
2424
<groupId>io.fabric8</groupId>
25-
<version>7.5-SNAPSHOT</version>
25+
<version>7.5.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

0 commit comments

Comments
 (0)