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
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1](https://github.com/jdx/pitchfork/compare/v0.3.0...v0.3.1) - 2026-01-19

### Added

- implement daemon dependency resolution ([#135](https://github.com/jdx/pitchfork/pull/135))
- add restart command to CLI ([#134](https://github.com/jdx/pitchfork/pull/134))

### Fixed

- restart command preserves daemon dependency configuration ([#142](https://github.com/jdx/pitchfork/pull/142))
- add missing depends field to restart command ([#136](https://github.com/jdx/pitchfork/pull/136))
- set IPC socket permissions to 0600 for security ([#133](https://github.com/jdx/pitchfork/pull/133))
- handle shell command parsing errors instead of silently failing ([#132](https://github.com/jdx/pitchfork/pull/132))

### Other

- reduce unnecessary daemon cloning in loops ([#144](https://github.com/jdx/pitchfork/pull/144))
- use periodic log flushing instead of per-line ([#139](https://github.com/jdx/pitchfork/pull/139))
- refresh only tracked PIDs instead of all processes ([#141](https://github.com/jdx/pitchfork/pull/141))
- cache compiled regex patterns ([#143](https://github.com/jdx/pitchfork/pull/143))

### Security

- add rate limiting to IPC server ([#137](https://github.com/jdx/pitchfork/pull/137))
- canonicalize config paths to prevent symlink exploitation ([#138](https://github.com/jdx/pitchfork/pull/138))
- add centralized daemon ID validation ([#140](https://github.com/jdx/pitchfork/pull/140))

## [0.3.0](https://github.com/jdx/pitchfork/compare/v0.2.1...v0.3.0) - 2026-01-18

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "pitchfork-cli"
description = "Daemons with DX"
license = "MIT"
version = "0.3.0"
version = "0.3.1"
edition = "2024"
homepage = "https://pitchfork.jdx.dev"
repository = "https://github.com/jdx/pitchfork"
Expand Down
2 changes: 1 addition & 1 deletion docs/cli/commands.json
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@
"config": {
"props": {}
},
"version": "0.3.0",
"version": "0.3.1",
"usage": "Usage: pitchfork <COMMAND>",
"complete": {
"id": {
Expand Down
2 changes: 1 addition & 1 deletion docs/cli/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

**Usage**: `pitchfork <SUBCOMMAND>`

**Version**: 0.3.0
**Version**: 0.3.1

- **Usage**: `pitchfork <SUBCOMMAND>`

Expand Down
2 changes: 1 addition & 1 deletion pitchfork.usage.kdl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name pitchfork
bin pitchfork
version "0.3.0"
version "0.3.1"
about "Daemons with DX"
usage "Usage: pitchfork <COMMAND>"
cmd activate help="Activate pitchfork in your shell session" {
Expand Down