hledger/hledger-lib/CHANGES.md

750 lines
27 KiB
Markdown
Raw Normal View History

2019-02-02 03:57:52 +03:00
Internal/api/developer-ish changes in the hledger-lib (and hledger) packages.
2019-01-26 22:30:54 +03:00
For user-visible changes, see the hledger package changelog.
2020-01-14 21:08:50 +03:00
# 445e8aa3
- Change Date output to yyyy-mm-dd (Brian Wignall)
- Don't store leaf name in PeriodReport. (Stephen Morgan)
Calculate at the point of consumption instead.
- lib: Generalise PeriodicReport to be polymorphic in the account labels. (Stephen Morgan)
- lib: Use records instead of tuples in PeriodicReport. (Stephen Morgan)
- lib: Use PeriodicReport in place of MultiBalanceReport. (Stephen Morgan)
- Use nubSort instead of nub . sort. (Stephen Morgan)
- Calculate MultiReportBalance columns more efficiently. (Stephen Morgan)
Only calculate posting date once for each posting, and calculate their
columns instead of checking each DateSpan separately.
- ToJSON instances for all (?) remaining data types, up to Ledger
- move JSON instances from hledger-web to hledger-lib
- lib: drop "assertion" alias for nullassertion
Perhaps we'll stick with the null* convention. Fixes a warning in Transaction.hs.
# 1.16.2 2020-01-14
2020-01-14 21:08:50 +03:00
- add support for megaparsec 8 (#1175)
2020-01-14 21:08:50 +03:00
2019-12-03 19:33:00 +03:00
# 1.16.1 2019-12-03
2019-12-03 19:25:37 +03:00
2019-12-02 19:59:58 +03:00
- Drop unnecessary mtl-compat dependency
- Fix building with GHC 8.0, 8.2
2019-12-01 20:59:01 +03:00
# 1.16 2019-12-01
2019-12-01 20:59:01 +03:00
- drop support for GHC 7.10, due to MonadFail hassles in JournalReader.hs
2019-12-01 20:59:01 +03:00
- add support for GHC 8.8, base-compat 0.11 (#1090)
2019-12-01 20:59:01 +03:00
We are now using the new fail from the MonadFail class, which we
always import qualified as Fail.fail, from base-compat-batteries
Control.Monad.Fail.Compat to work with old GHC versions. If old fail
is needed (shouldn't be) it should be imported qualified as
Prelude.Fail, using imports such as:
2019-09-13 18:31:54 +03:00
import Prelude hiding (fail)
import qualified Prelude (fail)
import Control.Monad.State.Strict hiding (fail)
import "base-compat-batteries" Prelude.Compat hiding (fail)
import qualified "base-compat-batteries" Control.Monad.Fail.Compat as Fail
2019-12-01 20:59:01 +03:00
- hledger and hledger-lib unit tests have been ported to tasty.
- The doctest suite has been disabled for now since it doesn't run
well with cabal (#1139)
2019-09-06 01:35:59 +03:00
# 1.15.2 2019-09-05
Changes:
- postingApplyValuation, mixedAmountApplyValuation, amountApplyValuation
take an argument, the report end date if one was specified.
# 1.15.1 2019-09-02
- fix failing doctests
2019-09-01 18:41:33 +03:00
# 1.15 2019-09-01
2019-07-25 10:45:56 +03:00
2019-07-25 12:48:08 +03:00
Removals include:
- journalPrices
- BalanceHistoryReport
- postingValueAtDate
Additions include:
2019-08-19 14:03:54 +03:00
- MarketPrice (more pure form of PriceDirective without the amount style information)
- PriceOracle (efficient lookup of exchange rates)
- ValuationType (ways to convert amount value)
2019-07-25 12:48:08 +03:00
- aliasnamep (export)
- setNaturalPrecisionUpTo
- dbgNWith, ptraceAtWith
- postingTransformAmount, postingToCost, postingValue
- amountToCost, mixedAmountToCost
- valueTypeFromOpts
- mapJournalTransactions, mapJournalPostings, mapTransactionPostings
- journalStartDate, journalEndDate
2019-08-19 14:03:54 +03:00
- journalPriceOracle
2019-08-19 14:30:54 +03:00
- marketPriceReverse
- priceDirectiveToMarketPrice
2019-08-19 14:03:54 +03:00
- mixedAmountApplyValuation
- mixedAmountValueAtDate
2019-07-25 12:48:08 +03:00
Changes include:
- Price -> AmountPrice, AKA "transaction price"
- old MarketPrice -> PriceDirective
- TransactionsReport/AccountTransactionsReport split into separate files
- journalTransactionsReport -> transactionsReport
- accountTransactionsReportItems: rewrite using catMaybes and mapAccumL (Henning Thielemann)
- optionally save the current date in ReportOpts
- Hledger.Cli tests now have correct prefix; add Cli.Utils tests
- MultiBalanceReport now returns zero for row totals when in cumulative or historical mode (#329)
2019-05-04 00:59:12 +03:00
2019-03-21 02:09:25 +03:00
2019-03-21 01:39:12 +03:00
# 1.14.1 2019-03-20
- require easytest <0.3 to fix build issue
2019-03-02 04:43:27 +03:00
# 1.14 2019-03-01
- added:
transaction, [v]post*, balassert* constructors, for tests etc.
- renamed:
porigin -> poriginal
- refactored:
transaction balancing & balance assertion checking (#438)
2019-02-03 07:23:30 +03:00
# 1.13.1 (2019/02/02)
- stop depending on here to avoid haskell-src-meta/stackage blockage.
2019-02-02 03:57:52 +03:00
# 1.13 (2019/02/01)
2019-01-26 22:30:54 +03:00
2019-02-02 03:57:52 +03:00
- in Journal's jtxns field, forecasted txns are appended rather than prepended
2019-01-26 22:30:54 +03:00
2019-02-02 03:57:52 +03:00
- API changes:
2019-01-26 22:30:54 +03:00
2019-02-02 03:57:52 +03:00
added:
+setFullPrecision
+setMinimalPrecision
+expectParseStateOn
+embedFileRelative
+hereFileRelative
changed:
- amultiplier -> aismultiplier
- Amount fields reordered for clearer debug output
- tpreceding_comment_lines -> tprecedingcomment, reordered
- Hledger.Data.TransactionModifier.transactionModifierToFunction -> modifyTransactions
- Hledger.Read.Common.applyTransactionModifiers -> Hledger.Data.Journal.journalModifyTransactions
- HelpTemplate -> CommandDoc
2019-01-26 22:30:54 +03:00
2018-12-02 03:29:54 +03:00
# 1.12 (2018/12/02)
- switch to megaparsec 7 (Alex Chen)
We now track the stack of include files in Journal ourselves, since
megaparsec dropped this feature.
2018-12-02 03:29:54 +03:00
- add 'ExceptT' layer to our parser monad again (Alex Chen)
We previously had a parser type, 'type ErroringJournalParser = ExceptT
String ...' for throwing parse errors without allowing further
backtracking. This parser type was removed under the assumption that it
would be possible to write our parser without this capability. However,
after a hairy backtracking bug, we would now prefer to have the option to
prevent backtracking.
2018-12-02 03:29:54 +03:00
- Define a 'FinalParseError' type specifically for the 'ExceptT' layer
- Any parse error can be raised as a "final" parse error
- Tracks the stack of include files for parser errors, anticipating the
removal of the tracking of stacks of include files in megaparsec 7
- Although a stack of include files is also tracked in the 'StateT
Journal' layer of the parser, it seems easier to guarantee correct
error messages in the 'ExceptT FinalParserError' layer
- This does not make the 'StateT Journal' stack redundant because the
'ExceptT FinalParseError' stack cannot be used to detect cycles of
include files
2018-12-02 03:29:54 +03:00
- more support for location-aware parse errors when re-parsing (Alex Chen)
2018-12-02 03:29:54 +03:00
- make 'includedirectivep' an 'ErroringJournalParser' (Alex Chen)
2018-12-02 03:29:54 +03:00
- drop Ord instance breaking GHC 8.6 build (Peter Simons)
2018-12-02 03:29:54 +03:00
- flip the arguments of (divide\|multiply)\[Mixed\]Amount
2018-12-02 03:29:54 +03:00
- showTransaction: fix a case showing multiple missing amounts
showTransaction could sometimes hide the last posting's amount even if
2019-12-21 23:01:03 +03:00
one of the other posting amounts was already implicit, producing invalid
transaction output.
2018-12-02 03:29:54 +03:00
- plog, plogAt: add missing newline
2018-12-02 03:29:54 +03:00
- split up journalFinalise, reorder journal finalisation steps (#893) (Jesse Rosenthal)
The `journalFinalise` function has been split up, allowing more granular
control.
2018-12-02 03:29:54 +03:00
- journalSetTime --> journalSetLastReadTime
2018-03-28 20:25:01 +03:00
- journalSetFilePath has been removed, use journalAddFile instead
2018-03-28 20:25:01 +03:00
2018-10-06 22:36:20 +03:00
# 1.11.1 (2018/10/06)
- add, lib: fix wrong transaction rendering in balance assertion errors
and when using the add command
2018-10-06 22:36:20 +03:00
2018-10-01 09:05:26 +03:00
# 1.11 (2018/9/30)
- compilation now works when locale is unset (#849)
2018-10-01 09:05:26 +03:00
- all unit tests have been converted from HUnit+test-framework to easytest
2018-10-01 09:05:26 +03:00
- doctests now run quicker by default, by skipping reloading between tests.
This can be disabled by passing --slow to the doctests test suite
executable.
2018-10-01 09:05:26 +03:00
- doctests test suite executable now supports --verbose, which shows
progress output as tests are run if doctest 0.16.0+ is installed
(and hopefully is harmless otherwise).
2018-10-01 09:05:26 +03:00
- doctests now support file pattern arguments, provide more informative output.
Limiting to just the file(s) you're interested can make doctest start
much quicker. With one big caveat: you can limit the starting files,
but it always imports and tests all other local files those import.
2018-10-01 09:05:26 +03:00
- a bunch of custom Show instances have been replaced with defaults,
for easier troubleshooting. These were sometimes obscuring
important details, eg in test failure output. Our new policy is:
stick with default derived Show instances as far as possible, but
when necessary adjust them to valid haskell syntax so pretty-show
can pretty-print them (eg when they contain Day values, cf
https://github.com/haskell/time/issues/101). By convention, when
fields are shown in less than full detail, and/or in double-quoted
pseudo syntax, we show a double period (..) in the output.
2018-10-01 09:05:26 +03:00
- Amount has a new Show instance. Amount's show instance hid
important details by default, and showing more details required
increasing the debug level, which was inconvenient. Now it has a
single show instance which shows more information, is fairly
compact, and is pretty-printable.
2018-10-01 09:05:26 +03:00
ghci> usd 1
OLD:
Amount {acommodity="$", aquantity=1.00, ..}
NEW:
Amount {acommodity = "$", aquantity = 1.00, aprice = NoPrice, astyle = AmountStyle "L False 2 Just '.' Nothing..", amultiplier = False}
2018-10-01 09:05:26 +03:00
MixedAmount's show instance is unchanged, but showMixedAmountDebug
is affected by this change:
2018-10-01 09:05:26 +03:00
ghci> putStrLn $ showMixedAmountDebug $ Mixed [usd 1]
OLD:
Mixed [Amount {acommodity="$", aquantity=1.00, aprice=, astyle=AmountStyle {ascommodityside = L, ascommodityspaced = False, asprecision = 2, asdecimalpoint = Just '.', asdigitgroups = Nothing}}]
NEW:
Mixed [Amount {acommodity="$", aquantity=1.00, aprice=, astyle=AmountStyle "L False 2 Just '.' Nothing.."}]
2018-10-01 09:05:26 +03:00
- Same-line & next-line comments of transactions, postings, etc.
are now parsed a bit more precisely (followingcommentp).
Previously, parsing no comment gave the same result as an empty
comment (a single newline); now it gives an empty string.\
Also, and perhaps as a consequence of the above, when there's no
same-line comment but there is a next-line comment, we'll insert an
empty first line, since otherwise next-line comments would get moved
up to the same line when rendered.
2018-10-01 09:05:26 +03:00
- Hledger.Utils.Test exports HasCallStack
2018-10-01 09:05:26 +03:00
- queryDateSpan, queryDateSpan' now intersect date AND'ed date spans
instead of unioning them, and docs are clearer.
2018-10-01 09:05:26 +03:00
- pushAccount -> pushDeclaredAccount
2018-10-01 09:05:26 +03:00
- jaccounts -> jdeclaredaccounts
2018-10-01 09:05:26 +03:00
- AutoTransaction.hs -> PeriodicTransaction.hs & TransactionModifier.hs
2018-10-01 09:05:26 +03:00
- Hledger.Utils.Debug helpers have been renamed/cleaned up
2018-10-01 09:05:26 +03:00
2018-06-30 23:57:06 +03:00
# 1.10 (2018/6/30)
- build cleanly with all supported GHC versions again (7.10 to 8.4)
2018-06-30 23:57:06 +03:00
- support/use latest base-compat (#794)
2018-06-30 23:57:06 +03:00
- support/require megaparsec 6.4+
2018-06-30 23:57:06 +03:00
- extensive refactoring and cleanup of parsers and related types and utilities
2018-06-30 23:57:06 +03:00
- readJournalFile(s) cleanup, these now use InputOpts
2018-06-30 23:57:06 +03:00
- doctests now run a bit faster (#802)
2018-06-30 23:57:06 +03:00
2018-04-29 21:56:46 +03:00
# 1.9.1 (2018/4/30)
- new generic PeriodicReport, and some report-related type aliases
2018-04-29 21:56:46 +03:00
- new BudgetReport
2018-04-29 21:56:46 +03:00
- make (readJournal\|tryReader)s?WithOpts the default api, dropping "WithOpts"
2018-04-30 17:58:12 +03:00
- automated postings and command line account aliases happen earlier
in journal processing (see hledger changelog)
2018-04-29 21:56:46 +03:00
2018-03-31 14:15:16 +03:00
# 1.9 (2018/3/31)
2018-03-28 20:25:01 +03:00
- support ghc 8.4, latest deps
- when the system text encoding is UTF-8, ignore any UTF-8 BOM prefix
found when reading files.
2018-03-28 20:25:01 +03:00
- CompoundBalanceReport amounts are now normally positive.
The bs/bse/cf/is commands now show normal income, liability and equity
balances as positive. Negative numbers now indicate a contra-balance
(eg an overdrawn checking account), a net loss, a negative net worth,
etc. This makes these reports more like conventional financial
statements, and easier to read and share with others. (experimental)
- splitSpan now returns no spans for an empty datespan
2018-03-28 20:25:01 +03:00
- don't count periodic/modifier txns in Journal debug output
2018-03-28 20:25:01 +03:00
- lib/ui/web/api: move embedded manual files to extra-source-files
2018-03-28 20:25:01 +03:00
- Use skipMany/skipSome for parsing spacenonewline (Moritz Kiefer)
This avoids allocating the list of space characters only to then
discard it.
2018-03-28 20:25:01 +03:00
- rename, clarify purpose of balanceReportFromMultiBalanceReport
2018-03-28 20:25:01 +03:00
- fix some hlint warnings
2017-12-31 05:20:41 +03:00
- add some easytest tests
2017-12-31 05:20:41 +03:00
# 1.5 (2017/12/31)
- -V/--value uses today's market prices by default, not those of last transaction date. #683, #648)
2017-12-31 05:20:41 +03:00
- csv: allow balance assignment (balance assertion only, no amount) in csv records (Nadrieril)
2017-12-31 05:20:41 +03:00
- journal: allow space as digit group separator character, #330 (Mykola Orliuk)
2017-12-31 05:20:41 +03:00
- journal: balance assertion errors now show line of failed assertion posting, #481 (Sam Jeeves)
2017-12-31 05:20:41 +03:00
- journal: better errors for directives, #402 (Mykola Orliuk)
2017-12-31 05:20:41 +03:00
- journal: better errors for included files, #660 (Mykola Orliuk)
2017-12-31 05:20:41 +03:00
- journal: commodity directives in parent files are inherited by included files, #487 (Mykola Orliuk)
2017-12-31 05:20:41 +03:00
- journal: commodity directives limits precision even after -B, #509 (Mykola Orliuk)
2017-12-31 05:20:41 +03:00
- journal: decimal point/digit group separator chars are now inferred from an applicable commodity directive or default commodity directive. #399, #487 (Mykola Orliuk)
2017-12-31 05:20:41 +03:00
- journal: numbers are parsed more strictly (Mykola Orliuk)
2017-12-31 05:20:41 +03:00
- journal: support Ledger-style automated postings, enabled with --auto flag (Dmitry Astapov)
2017-12-31 05:20:41 +03:00
- journal: support Ledger-style periodic transactions, enabled with --forecast flag (Dmitry Astapov)
2017-12-31 05:20:41 +03:00
- period expressions: fix "nth day of {week,month}", which could generate wrong intervals (Dmitry Astapov)
2017-12-31 05:20:41 +03:00
- period expressions: month names are now case-insensitive (Dmitry Astapov)
2017-12-31 05:20:41 +03:00
- period expressions: stricter checking for invalid expressions (Mykola Orliuk)
2017-12-31 05:20:41 +03:00
- period expressions: support "every 11th Nov" (Dmitry Astapov)
2017-12-31 05:20:41 +03:00
- period expressions: support "every 2nd Thursday of month" (Dmitry Astapov)
2017-12-31 05:20:41 +03:00
- period expressions: support "every Tuesday", short for "every <n>th day of week" (Dmitry Astapov)
2017-12-31 05:20:41 +03:00
- remove upper bounds on all but hledger* and base (experimental)
It's rare that my deps break their api or that newer versions must
be avoided, and very common that they release new versions which I
must tediously and promptly test and release hackage revisions for
or risk falling out of stackage. Trying it this way for a bit.
2017-09-27 05:22:30 +03:00
# 1.4 (2017/9/30)
- add readJournalFile\[s\]WithOpts, with simpler arguments and support
for detecting new transactions since the last read.
2017-09-27 05:22:30 +03:00
- query: add payee: and note: query terms, improve description/payee/note docs (Jakub Zárybnický, Simon Michael, #598, #608)
2017-09-27 05:22:30 +03:00
- journal, cli: make trailing whitespace significant in regex account aliases
Trailing whitespace in the replacement part of a regular expression
account alias is now significant. Eg, converting a parent account to
just an account name prefix: --alias '/:acct:/=:acct'
2017-09-27 05:22:30 +03:00
- timedot: allow a quantity of seconds, minutes, days, weeks, months
or years to be logged as Ns, Nm, Nd, Nw, Nmo, Ny
2017-09-27 05:22:30 +03:00
- csv: switch the order of generated postings, so account1 is first.
This simplifies things and facilitates future improvements.
2017-09-27 05:22:30 +03:00
- csv: show the "creating/using rules file" message only with --debug
2017-09-27 05:22:30 +03:00
- csv: fix multiple includes in one rules file
2017-09-27 05:22:30 +03:00
- csv: add "newest-first" rule for more robust same-day ordering
2017-09-27 05:22:30 +03:00
- deps: allow ansi-terminal 0.7
2017-09-27 05:22:30 +03:00
- deps: add missing parsec lower bound, possibly related to #596, fpco/stackage#2835
2017-09-27 05:22:30 +03:00
- deps: drop oldtime flag, require time 1.5+
2017-09-27 05:22:30 +03:00
- deps: remove ghc < 7.6 support, remove obsolete CPP conditionals
2017-09-27 05:22:30 +03:00
- deps: fix test suite with ghc 8.2
2017-09-27 05:22:30 +03:00
2017-08-25 18:00:54 +03:00
# 1.3.1 (2017/8/25)
- Fix a bug with -H showing nothing for empty periods (#583, Nicholas Niro)
This patch fixes a bug that happened when using the -H option on
a period without any transaction. Previously, the behavior was no
output at all even though it should have shown the previous ending balances
of past transactions. (This is similar to previously using -H with -E,
but with the extra advantage of not showing empty accounts)
2017-08-25 18:00:54 +03:00
- allow megaparsec 6 (#594)
2017-08-25 18:00:54 +03:00
- allow megaparsec-6.1 (Hans-Peter Deifel)
2017-08-25 18:00:54 +03:00
- fix test suite with Cabal 2 (#596)
2017-07-01 00:26:36 +03:00
# 1.3 (2017/6/30)
journal: The "uncleared" transaction/posting status, and associated UI flags
2017-07-01 00:26:36 +03:00
and keys, have been renamed to "unmarked" to remove ambiguity and
confusion. This means that we have dropped the `--uncleared` flag,
2017-07-01 00:26:36 +03:00
and our `-U` flag now matches only unmarked things and not pending
ones. See the issue and linked mail list discussion for more
background. (#564)
2017-07-01 00:26:36 +03:00
csv: assigning to the "balance" field name creates balance
assertions (#537, Dmitry Astapov).
csv: Doubled minus signs are handled more robustly (fixes #524, Nicolas Wavrant, Simon Michael)
Multiple "status:" query terms are now OR'd together. (#564)
deps: allow megaparsec 5.3.
2017-07-01 00:26:36 +03:00
2017-06-20 18:40:35 +03:00
# 1.2 (2017/3/31)
## journal format
A pipe character can optionally be used to delimit payee names in
transaction descriptions, for more accurate querying and pivoting by
payee. Eg, for a description like `payee name | additional notes`,
the two parts will be accessible as pseudo-fields/tags named `payee`
and `note`.
Some journal parse errors now show the range of lines involved, not just the first.
## ledger format
The experimental `ledger:` reader based on the WIP ledger4 project has
been disabled, reducing build dependencies.
## Misc
Fix a bug when tying the knot between postings and their parent transaction, reducing memory usage by about 10% (#483) (Mykola Orliuk)
Fix a few spaceleaks (#413) (Moritz Kiefer)
Add Ledger.Parse.Text to package.yaml, fixing a potential build failure.
Allow megaparsec 5.2 (#503)
Rename optserror -> usageError, consolidate with other error functions
2016-12-31 22:24:12 +03:00
# 1.1 (2016/12/31)
## journal format
- balance assignments are now supported (#438, #129, #157, #288)
2016-12-31 22:24:12 +03:00
This feature also brings a slight performance drop (\~5%);
2016-12-31 22:24:12 +03:00
optimisations welcome.
- also recognise `*.hledger` files as hledger journal format
## ledger format
- use ledger-parse from the ledger4 project as an alternate reader for C++ Ledger journals
2016-12-31 22:24:12 +03:00
The idea is that some day we might get better compatibility with Ledger files this way.
Right now this reader is not very useful and will be used only if you explicitly select it with a `ledger:` prefix.
It parses transaction dates, descriptions, accounts and amounts, and ignores everything else.
Amount parsing is delegated to hledger's journal parser, and malformed amounts might be silently ignored.
This adds at least some of the following as new dependencies for hledger-lib:
parsers, parsec, attoparsec, trifecta.
## misc
- update base lower bound to enforce GHC 7.10+
2016-12-31 22:24:12 +03:00
hledger-lib had a valid install plan with GHC 7.8, but currently requires GHC 7.10 to compile.
Now we require base 4.8+ everywhere to ensure the right GHC version at the start.
- Hledger.Read api cleanups
2016-12-31 22:24:12 +03:00
- rename dbgIO to dbg0IO, consistent with dbg0, and document a bug in dbg*IO
2016-12-31 22:24:12 +03:00
- make readJournalFiles \[f\] equivalent to readJournalFile f (#437)
2016-12-31 22:24:12 +03:00
- more general parser types enabling reuse outside of IO (#439)
2016-12-31 22:24:12 +03:00
# 1.0.1 (2016/10/27)
- allow megaparsec 5.0 or 5.1
# 1.0 (2016/10/26)
## timedot format
- new "timedot" format for retroactive/approximate time logging.
Timedot is a plain text format for logging dated, categorised
quantities (eg time), supported by hledger. It is convenient
for approximate and retroactive time logging, eg when the
real-time clock-in/out required with a timeclock file is too
precise or too interruptive. It can be formatted like a bar
chart, making clear at a glance where time was spent.
## timeclock format
- renamed "timelog" format to "timeclock", matching the emacs package
- sessions can no longer span file boundaries (unclocked-out
sessions will be auto-closed at the end of the file).
- transaction ids now count up rather than down (#394)
- timeclock files no longer support default year directives
- removed old code for appending timeclock transactions to journal transactions.
A holdover from the days when both were allowed in one file.
## csv format
- fix empty field assignment parsing, rule parse errors after megaparsec port (#407) (Hans-Peter Deifel)
## journal format
- journal files can now include timeclock or timedot files (#320)
(but not yet CSV files).
- fixed an issue with ordering of same-date transactions included from other files
- the "commodity" directive and "format" subdirective are now supported, allowing
full control of commodity style (#295) The commodity directive's
format subdirective can now be used to override the inferred
style for a commodity, eg to increase or decrease the
precision. This is at least a good workaround for #295.
- Ledger-style "apply account"/"end apply account" directives are now used to set a default parent account.
- the Ledger-style "account" directive is now accepted (and ignored).
- bracketed posting dates are more robust (#304)
Bracketed posting dates were fragile; they worked only if you
wrote full 10-character dates. Also some semantics were a bit
unclear. Now they should be robust, and have been documented
more clearly. This is a legacy undocumented Ledger syntax, but
it improves compatibility and might be preferable to the more
verbose "date:" tags if you write posting dates often (as I do).
Internally, bracketed posting dates are no longer considered to
be tags. Journal comment, tag, and posting date parsers have
been reworked, all with doctests.
- balance assertion failure messages are clearer
- with --debug=2, more detail about balance assertions is shown.
## misc
- file parsers have been ported from Parsec to Megaparsec \o/ (#289, #366) (Alexey Shmalko, Moritz Kiefer)
- most hledger types have been converted from String to Text, reducing memory usage by 30%+ on large files
- file parsers have been simplified for easier troubleshooting (#275).
The journal/timeclock/timedot parsers, instead of constructing
opaque journal update functions which are later applied to build
the journal, now construct the journal directly by modifying the
parser state. This is easier to understand and debug. It also
rules out the possibility of journal updates being a space
leak. (They weren't, in fact this change increased memory usage
slightly, but that has been addressed in other ways). The
ParsedJournal type alias has been added to distinguish
"being-parsed" journals and "finalised" journals.
- file format detection is more robust.
The Journal, Timelog and Timedot readers' detectors now check
each line in the sample data, not just the first one. I think the
sample data is only about 30 chars right now, but even so this
fixed a format detection issue I was seeing.
Also, we now always try parsing stdin as journal format (not just sometimes).
- all file formats now produce transaction ids, not just journal (#394)
- git clone of the hledger repo on windows now works (#345)
- added missing benchmark file (#342)
- our stack.yaml files are more compatible across stack versions (#300)
- use newer file-embed to fix ghci working directory dependence (<https://github.com/snoyberg/file-embed/issues/18>)
- report more accurate dates in account transaction report when postings have their own dates
(affects hledger-ui and hledger-web registers).
The newly-named "transaction register date" is the date to be
displayed for that transaction in a transaction register, for
some current account and filter query. It is either the
transaction date from the journal ("transaction general date"),
or if postings to the current account and matched by the
register's filter query have their own dates, the earliest of
those posting dates.
- simplify account transactions report's running total.
The account transactions report used for hledger-ui and -web
registers now gives either the "period total" or "historical
total", depending strictly on the --historical flag. It doesn't
try to indicate whether the historical total is the accurate
historical balance (which depends on the user's report query).
- reloading a file now preserves the effect of options, query arguments etc.
- reloading a journal should now reload all included files as well.
- the Hledger.Read.* modules have been reorganised for better reuse.
Hledger.Read.Utils has been renamed Hledger.Read.Common
and holds low-level parsers & utilities; high-level read
utilities are now in Hledger.Read.
- clarify amount display style canonicalisation code and terminology a bit.
Individual amounts still have styles; from these we derive
the standard "commodity styles". In user docs, we might call
these "commodity formats" since they can be controlled by the
"format" subdirective in journal files.
- Journal is now a monoid
- expandPath now throws a proper IO error
- more unit tests, start using doctest
2015-10-31 00:02:24 +03:00
0.27 (2015/10/30)
2015-10-26 16:09:57 +03:00
- The main hledger types now derive NFData, which makes it easier to
time things with criterion.
2015-10-26 16:09:57 +03:00
- Utils has been split up more.
2015-10-26 16:09:57 +03:00
- Utils.Regex: regular expression compilation has been memoized, and
memoizing versions of regexReplace\[CI\] have been added, since
compiling regular expressions every time seems to be quite
expensive (#244).
2015-10-26 16:09:57 +03:00
- Utils.String: strWidth is now aware of multi-line strings (#242).
2015-10-26 16:09:57 +03:00
- Read: parsers now use a consistent p suffix.
2015-10-26 16:09:57 +03:00
- New dependencies: deepseq, uglymemo.
- All the hledger packages' cabal files are now generated from
simpler, less redundant yaml files by hpack, in principle. In
practice, manual fixups are still needed until hpack gets better,
but it's still a win.
2015-02-27 18:02:31 +03:00
2015-07-13 03:39:04 +03:00
0.26 (2015/7/12)
2015-05-14 23:39:54 +03:00
- allow year parser to handle arbitrarily large years
- Journal's Show instance reported one too many accounts
- some cleanup of debug trace helpers
- tighten up some date and account name parsers (don't accept leading spaces; hadddocks)
- drop regexpr dependency
2015-05-14 23:39:54 +03:00
2015-04-29 19:07:14 +03:00
0.25.1 (2015/4/29)
- support/require base-compat >0.8 (#245)
2015-05-14 23:39:54 +03:00
2015-04-08 05:52:00 +03:00
0.25 (2015/4/7)
2015-04-08 03:14:44 +03:00
- GHC 7.10 compatibility (#239)
2015-04-08 03:14:44 +03:00
2015-03-15 22:55:45 +03:00
0.24.1 (2015/3/15)
2015-02-27 18:02:31 +03:00
- fix JournalReader "ctx" compilation warning
- add some type signatures in Utils to help make ghci-web
2014-04-28 11:51:02 +04:00
0.24 (2014/12/25)
2014-06-22 07:14:11 +04:00
- fix combineJournalUpdates folding order
- fix a regexReplaceCI bug
- fix a splitAtElement bug with adjacent separators
- mostly replace slow regexpr with regex-tdfa (fixes #189)
- use the modern Text.Parsec API
- allow transformers 0.4*
- regexReplace now supports backreferences
- Transactions now remember their parse location in the journal file
- export Regexp types, disambiguate CsvReader's similarly-named type
- export failIfInvalidMonth/Day (fixes #216)
- track the commodity of zero amounts when possible
(useful eg for hledger-web's multi-commodity charts)
- show posting dates in debug output
- more debug helpers
2014-06-22 07:14:11 +04:00
0.23.3 (2014/9/12)
- allow transformers 0.4*
2014-05-09 01:32:06 +04:00
0.23.2 (2014/5/8)
- postingsReport: also fix date sorting of displayed postings (#184)
2014-05-09 01:32:06 +04:00
0.23.1 (2014/5/7)
- postingsReport: with disordered journal entries, postings before the
report start date could get wrongly included. (#184)
2014-05-09 01:32:06 +04:00
2014-05-01 19:14:36 +04:00
0.23 (2014/5/1)
2014-04-28 11:51:02 +04:00
- orDatesFrom -> spanDefaultsFrom
2014-04-28 11:51:02 +04:00
0.22.2 (2014/4/16)
- display years before 1000 with four digits, not three
- avoid pretty-show to build with GHC < 7.4
- allow text 1.1, drop data-pprint to build with GHC 7.8.x
0.22.1 (2014/1/6) and older: see http://hledger.org/release-notes or doc/CHANGES.md.