Skip to content

Commit

Permalink
Prepare v1.0.6 (#48)
Browse files Browse the repository at this point in the history
Signed-off-by: Jürgen Kreileder <[email protected]>
  • Loading branch information
jkreileder authored Jan 8, 2024
1 parent 01d67ac commit 17628f7
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ A clear and concise description of what actually happened.
A clear and concise description of what you expected to happen.

**Environment (please complete the following information):**
- cf-ips-to-hcloud-fw version: [e.g. 1.0.5]
- cf-ips-to-hcloud-fw version: [e.g. 1.0.6]
- Deployment method: [e.g. Docker, Python module]
- If Python module, Python Version: [e.g. 3.12]
- If Python module, OS: [e.g. MacOS 14.3]
Expand Down
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Changelog

## [1.0.6] - 2024-01-08

### Added

- Test cases for command line arguments in `test_main.py` and `test_version.py` (#46)
- `objects.githubusercontent.com` to allowed hosts (#45)
- Upgrade instructions for pipx and pip
- Error handling for unreadable configuration files or directories (#37)
- Integration of SLSA provenance generation (#36)
- Recommended ignore rules for Ruff

### Changed

- Fixed PyPI badge link (#47)
- Updated `pyright` to version 1.1.345 (#43)
- Updated `docker/metadata-action` from 5.4.0 to 5.5.0 (#42)
- Updated badges in `README.md` (#40)
- Updated `cloudflare` from 2.15.1 to 2.16.0 (#38)
- Updated `actions/dependency-review-action` from 3.1.4 to 3.1.5 (#39)
- Updated `hcloud` to v1.33.2
- Updated `ruff` to v0.1.11
- Enabled more lint rules and adapted code to them

### Removed

- Scanning of context and builder for sbom (#44)
- Superfluous ruff target-version

### Security

- Updated `anchore/scan-action` from 3.3.8 to 3.4.0 (#34)

## [v1.0.5] - 2024-01-01

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Here's an example using Docker:
```shell
docker run --rm \
--mount type=bind,source=$(pwd)/config.yaml,target=/usr/src/app/config.yaml,readonly \
jkreileder/cf-ips-to-hcloud-fw:1.0.5
jkreileder/cf-ips-to-hcloud-fw:1.0.6
```
(Add `--pull=always` if you use a rolling image tag.)
Expand All @@ -122,7 +122,7 @@ Docker images for `cf-ips-to-hcloud-fw` are available for both `linux/amd64` and
- `1`: This tag always points to the latest `1.x.x` release.
- `1.0`: This tag always points to the latest `1.0.x` release.
- `1.0.5`: This tag points to the specific `1.0.5` release.
- `1.0.6`: This tag points to the specific `1.0.6` release.
- `main`: This tag points to the most recent development version of
`cf-ips-to-hcloud-fw`. Use this at your own risk as it may contain unstable
changes.
Expand Down Expand Up @@ -171,7 +171,7 @@ spec:
runAsUser: 65534
containers:
- name: cf-ips-to-hcloud-fw
image: jkreileder/cf-ips-to-hcloud-fw:1.0.5
image: jkreileder/cf-ips-to-hcloud-fw:1.0.6
# imagePullPolicy: Always # Uncomment this if you use a rolling image tag
securityContext:
allowPrivilegeEscalation: false
Expand Down
2 changes: 1 addition & 1 deletion src/cf_ips_to_hcloud_fw/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

__VERSION__ = "1.0.6-dev"
__VERSION__ = "1.0.6"

0 comments on commit 17628f7

Please sign in to comment.