;doc:changelogs: 1.51.2

This commit is contained in:
Simon Michael 2026-01-08 02:10:53 -10:00
parent 62a104c42c
commit 1eaf37ca0f
5 changed files with 67 additions and 1 deletions

View File

@ -18,6 +18,8 @@ General changes in the hledger project.
For package-specific changes, see the hledger package changelogs.
# 1.51.2 2026-01-08
# 1.51.1 2025-12-08
# 1.51 2025-12-05

View File

@ -17,8 +17,11 @@ API/developer-ish changes in hledger-lib.
For user-visible changes, see the hledger package changelog.
# 1.51.1 2025-12-08
# 1.51.2 2026-01-08
- Allow base 4.22 / ghc 9.14.
# 1.51.1 2025-12-08
# 1.51 2025-12-05

View File

@ -23,6 +23,18 @@ User-visible changes in hledger-ui.
See also the hledger changelog.
# 1.51.2 2026-01-08
- hledger add invoked via the `a` key now shows output properly,
fixing a regression in 1.50. [#2512]
- Allow vty-crossplatform 0.5. (Jens Petersen)
- Allow base 4.22 / ghc 9.14.
[#2512]: https://github.com/simonmichael/hledger/issues/2512
# 1.51.1 2025-12-08
- Uses hledger 1.51.1.

View File

@ -23,6 +23,15 @@ User-visible changes in hledger-web.
See also the hledger changelog.
# 1.51.2 2026-01-08
- The register view now prevents line wrapping in dates when the window is narrow. [#2520]
- Allow base 4.22 / ghc 9.14.
[#2520]: https://github.com/simonmichael/hledger/issues/2520
# 1.51.1 2025-12-08
- Uses hledger 1.51.1.

View File

@ -26,6 +26,46 @@ API
User-visible changes in the hledger command line tool and library.
# 1.51.2 2026-01-08
Fixes
- The `add` and `import` commands now once again auto-create the journal file
if it does not exist yet, fixing a regression in 1.50.3.
Also they now create it lazily, only when they have data to write,
not unconditionally at the start.
[#2514]
- The `roi` command has some more sanity checks, and some error messages
have been clarified.
(Dmitry Astapov, [#2505])
Improvements
- The `-f` option now reports an error if you give it a glob pattern
(a path containing `[`, `{`, `*`, or `?`) that matches nothing.
This makes it consistent with `LEDGER_FILE`.
- Journal format's `include` directive no longer unnecessarily reads
the attributes of all files in a directory. This works better with
build tools like tup which detect filesystem operations.
- Journal format's `include` directive has been optimised,
repairing a slight slowdown introduced in 1.50.3.
It no longer calls `canonicalizePath` unnecessarily.
This might be noticeable with many includes on a slow filesystem.
- Allow base 4.22 / ghc 9.14.
API
- Hledger.Cli.Utils:
withPossibleJournal
[#2505]: https://github.com/simonmichael/hledger/issues/2505
[#2514]: https://github.com/simonmichael/hledger/issues/2514
# 1.51.1 2025-12-08
Fixes