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
7 changes: 6 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog for [`process` package](http://hackage.haskell.org/package/process)

## 1.6.29.0 *May 2026*

* Stub out `runProcess.c` on wasm32 ([#366](https://github.com/haskell/process/pull/366))
* Fix segmentation faults on MacOS 15 caused by NULL symbols created by toolchains that can compile for MacOS 26 ([#363](https://github.com/haskell/process/pull/363))

## 1.6.28.0 *April 2026*

* Add `callCreateProcess`
Expand Down Expand Up @@ -35,7 +40,7 @@
a space or a dot. This is a follow-up for
[HSEC-2024-0003](https://github.com/haskell/security-advisories/tree/main/advisories/hackage/process/HSEC-2024-0003.md).
* Migitate another manifestation of the BatBadBut vulnerability via
unescaped `%` expansions. This is another follow-up for
unescaped `%` expansions. This is another follow-up for
[HSEC-2024-0003](https://github.com/haskell/security-advisories/tree/main/advisories/hackage/process/HSEC-2024-0003.md).
([#313](https://github.com/haskell/process/issues/313))

Expand Down
2 changes: 1 addition & 1 deletion process.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: process
version: 1.6.28.0
version: 1.6.29.0
-- NOTE: Don't forget to update ./changelog.md
license: BSD-3-Clause
license-file: LICENSE
Expand Down
4 changes: 2 additions & 2 deletions test/process-tests.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: process-tests
version: 1.6.28.0
version: 1.6.29.0
license: BSD-3-Clause
license-file: LICENSE
maintainer: libraries@haskell.org
Expand All @@ -18,7 +18,7 @@ source-repository head

common process-dep
build-depends:
process == 1.6.28.0
process == 1.6.29.0

custom-setup
setup-depends:
Expand Down
Loading