Skip to content

Commit 90ebdb0

Browse files
authored
Bump version to 1.0.17 and harden fw rules (#843)
Signed-off-by: Jürgen Kreileder <jk@blackdown.de>
1 parent a9f8256 commit 90ebdb0

5 files changed

Lines changed: 12 additions & 6 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ A clear and concise description of what actually happened.
2424
A clear and concise description of what you expected to happen.
2525

2626
**Environment (please complete the following information):**
27-
- cf-ips-to-hcloud-fw version: [e.g. 1.0.16]
27+
- cf-ips-to-hcloud-fw version: [e.g. 1.0.17]
2828
- Deployment method: [e.g. Docker, Python module]
2929
- If Python module, Python Version: [e.g. 3.13]
3030
- If Python module, OS: [e.g. MacOS 15.1]

.github/workflows/docker.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
api.github.com:443
4040
api.scout.docker.com:443
4141
auth.docker.io:443
42+
cdn01.quay.io:443
43+
cdn02.quay.io:443
4244
cdn03.quay.io:443
4345
docker-images-prod.6aa30f8b08e16409b46e0173d6de2f56.r2.cloudflarestorage.com:443
4446
files.pythonhosted.org:443

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3-
## [v1.0.16] – 2025-06-19
3+
## [v1.0.17] – 2025-06-20
4+
5+
Fix StepSecurity policy
6+
7+
## [v1.0.16] – 2025-06-20
48

59
Maintenance release with dependency and CI updates.
610

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Here's an example using Docker:
113113
```shell
114114
docker run --rm \
115115
--mount type=bind,source=$(pwd)/config.yaml,target=/usr/src/app/config.yaml,readonly \
116-
jkreileder/cf-ips-to-hcloud-fw:1.0.16
116+
jkreileder/cf-ips-to-hcloud-fw:1.0.17
117117
```
118118
119119
(Add `--pull=always` if you use a rolling image tag.)
@@ -123,7 +123,7 @@ Docker images for `cf-ips-to-hcloud-fw` are available for both `linux/amd64` and
123123
124124
- `1`: This tag always points to the latest `1.x.x` release.
125125
- `1.0`: This tag always points to the latest `1.0.x` release.
126-
- `1.0.16`: This tag points to the specific `1.0.16` release.
126+
- `1.0.17`: This tag points to the specific `1.0.17` release.
127127
- `main`: This tag points to the most recent development version of
128128
`cf-ips-to-hcloud-fw`. Use this at your own risk as it may contain unstable
129129
changes.
@@ -172,7 +172,7 @@ spec:
172172
runAsUser: 65534
173173
containers:
174174
- name: cf-ips-to-hcloud-fw
175-
image: jkreileder/cf-ips-to-hcloud-fw:1.0.16
175+
image: jkreileder/cf-ips-to-hcloud-fw:1.0.17
176176
# imagePullPolicy: Always # Uncomment this if you use a rolling image tag
177177
securityContext:
178178
allowPrivilegeEscalation: false

src/cf_ips_to_hcloud_fw/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__VERSION__ = "1.0.16"
3+
__VERSION__ = "1.0.17"

0 commit comments

Comments
 (0)