Skip to content

Commit 0217b52

Browse files
chaliyclaude
andauthored
chore(release): prepare v0.1.2 (#18)
## What Release v0.1.2 patch version. ## Why New patch release including SSRF protection with safe-by-default DNS policy. ## How - Bumped workspace version from 0.1.1 to 0.1.2 - Updated fetchkit-cli dependency version to match - Updated CHANGELOG.md with v0.1.2 entry ## Changes included since v0.1.1 - feat(security)!: add SSRF protection with safe-by-default DNS policy (#17) ## Risk - Low - Version bump and changelog only ### Checklist - [x] Unit tests are passed - [x] Smoke tests are passed - [x] Documentation is updated - [x] Specs are up to date and not in conflict https://claude.ai/code/session_018ri3p7jrvdbxfJtWNqasYm Co-authored-by: Claude <noreply@anthropic.com>
1 parent 19d0d4f commit 0217b52

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.2] - 2026-02-16
11+
12+
### Highlights
13+
14+
- Added SSRF protection with safe-by-default DNS resolution policy
15+
- Private/reserved IP ranges are now blocked by default to prevent server-side request forgery
16+
17+
### What's Changed
18+
19+
* feat(security)!: add SSRF protection with safe-by-default DNS policy ([#17](https://github.com/everruns/fetchkit/pull/17))
20+
21+
**Full Changelog**: https://github.com/everruns/fetchkit/compare/v0.1.1...v0.1.2
22+
1023
## [0.1.1] - 2026-02-12
1124

1225
### Highlights
@@ -44,6 +57,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4457

4558
**Full Changelog**: https://github.com/everruns/fetchkit/commits/v0.1.0
4659

47-
[Unreleased]: https://github.com/everruns/fetchkit/compare/v0.1.1...HEAD
60+
[Unreleased]: https://github.com/everruns/fetchkit/compare/v0.1.2...HEAD
61+
[0.1.2]: https://github.com/everruns/fetchkit/compare/v0.1.1...v0.1.2
4862
[0.1.1]: https://github.com/everruns/fetchkit/compare/v0.1.0...v0.1.1
4963
[0.1.0]: https://github.com/everruns/fetchkit/releases/tag/v0.1.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "2"
33
members = ["crates/*"]
44

55
[workspace.package]
6-
version = "0.1.1"
6+
version = "0.1.2"
77
edition = "2021"
88
license = "MIT"
99
authors = ["Everruns"]

crates/fetchkit-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name = "fetchkit"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
fetchkit = { path = "../fetchkit", version = "0.1.1" }
18+
fetchkit = { path = "../fetchkit", version = "0.1.2" }
1919
tokio = { workspace = true }
2020
clap = { workspace = true }
2121
serde = { workspace = true }

0 commit comments

Comments
 (0)