Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2] - 2026-02-16

### Highlights

- Added SSRF protection with safe-by-default DNS resolution policy
- Private/reserved IP ranges are now blocked by default to prevent server-side request forgery

### What's Changed

* feat(security)!: add SSRF protection with safe-by-default DNS policy ([#17](https://github.com/everruns/fetchkit/pull/17))

**Full Changelog**: https://github.com/everruns/fetchkit/compare/v0.1.1...v0.1.2

## [0.1.1] - 2026-02-12

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

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

[Unreleased]: https://github.com/everruns/fetchkit/compare/v0.1.1...HEAD
[Unreleased]: https://github.com/everruns/fetchkit/compare/v0.1.2...HEAD
[0.1.2]: https://github.com/everruns/fetchkit/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/everruns/fetchkit/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/everruns/fetchkit/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["crates/*"]

[workspace.package]
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT"
authors = ["Everruns"]
Expand Down
2 changes: 1 addition & 1 deletion crates/fetchkit-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ name = "fetchkit"
path = "src/main.rs"

[dependencies]
fetchkit = { path = "../fetchkit", version = "0.1.1" }
fetchkit = { path = "../fetchkit", version = "0.1.2" }
tokio = { workspace = true }
clap = { workspace = true }
serde = { workspace = true }
Expand Down