Releases: haskell-nix/hnix
0.13.0.1
0.13.0
(diff) 0.13.0 (2021-05-10)
-
Breaking:
-
(link) (link) (link)
Nix.Thunk
:class MonadThunk t m a | t -> m, t -> a
. Class was initially designed with Kleisli arrows (v -> m a
) in mind, which where put to have the design open and inviting customization & integration. Those functional arguments are for custom implementation, so which in reality of the project were never used and HNax just "essentially" (simplifying, becausepure
was mixed with monadic binds tof
) was passingpure
into them (actually,f <=< pure
). These Kliesli functors got arguments sorted properly and were moved to aMonadThunkF
class and names gained*F
. AndMonadThunk
now does only what is needed, for exampleforce
gets the thunk and computes it. AllMonadThunk{,F}
functions become with a classic Haskell arguments order, specialized, and got more straigh-forward to understand and use, and so now they tail recurse also.Now, for example, instead of
force t f
use it asv <- force t
f =<< force t
, orf <=< force
.tl;dr: results:
class MonadThunkId m => MonadThunk t m a | t -> m, t -> a where thunkId :: t -> ThunkId m thunk :: m a -> m t queryM :: m a -> t -> m a -- old became `queryMF` force :: t -> m a -- old became `forceF` forceEff :: t -> m a -- old became `forceEffF` further :: t -> m t -- old became `furtherF` -- | Class of Kleisli functors for easiness of customized implementation developlemnt. class MonadThunkF t m a | t -> m, t -> a where queryMF :: (a -> m r) -> m r -> t -> m r -- was :: t -> m r -> (a -> m r) -> m r forceF :: (a -> m r) -> t -> m r -- was :: t -> (a -> m r) -> m r forceEffF :: (a -> m r) -> t -> m r -- was :: t -> (a -> m r) -> m r furtherF :: (m a -> m a) -> t -> m t -- was :: t -> (m a -> m a) -> m t
-
(link) (link) (link) (link) (link)
Nix.Value.Monad
:class MonadValue v m
: instances became specialized, Kleisli versions unflipped the arguments of methods into a classical order and moved to theclass MonadValueF
. As a result,demand
now gets optimized by GHC and also tail recurse. Please, usef =<< demand t
, or just usedemandF
, whiledemandF
in fact justkleisli =<< demand t
.class MonadValue v m where demand :: v -> m v -- old became `demandF` inform :: v -> m v -- old became `informF` class MonadValueF v m where demandF :: (v -> m r) -> v -> m r -- was :: v -> (v -> m r) -> m r informF :: (m v -> m v) -> v -> m v -- was :: v -> (m v -> m v) -> m v
-
(link)
Nix.Normal
:normalizeValue
removed first functional argument that was passing the function that did the thunk forcing. Now function provides the thunk forcing. Now to normalize simply usenormalizeValue v
. Old implementation now isnormalizeValueF
. -
(link)
Nix.Value.Equal
:valueEqM
: freed fromRankNTypes: forall t f m .
. -
(link)
Nix.Strings
: allhacky*
functions replaced with lawful implemetations, because of that all functions become lawful - dropped theprincipled
suffix from functions:Nix.String
:hackyGetStringNoContext -> getStringNoContext hackyStringIgnoreContext -> stringIgnoreContext hackyMakeNixStringWithoutContext -> makeNixStringWithoutContext principledMempty -> mempty principledStringMempty -> mempty principledStringMConcat -> mconcat principledStringMappend -> mappend principledGetContext -> getContext principledMakeNixString -> makeNixString principledIntercalateNixStrin -> intercalateNixString principledGetStringNoContext -> getStringNoContext principledStringIgnoreContext -> stringIgnoreContext principledMakeNixStringWithoutContext -> makeNixStringWithoutContext principledMakeNixStringWithSingletonContext -> makeNixStringWithSingletonContext principledModifyNixContents -> modifyNixContents
-
-
Data type:
MonadFix1T t m
:Nix.Standard
->Nix.Utils.Fix1
-
Children found their parents:
Binary NAtom :: Nix.Expr.Types -> Nix.Atoms FromJSON NAtom :: Nix.Expr.Types -> Nix.Atoms ToJSON NAtom :: Nix.Expr.Types -> Nix.Atoms Eq1 (NValueF p m) :: Nix.Value.Equal -> Nix.Value Eq1 (NValue' t f m a) :: Nix.Value.Equal -> Nix.Value HasCitations m v (NValue' t f m a) :: Nix.Pretty -> Nix.Cited HasCitations m v (NValue t f m) :: Nix.Pretty -> Nix.Cited when (package hashable >= 1.3.1) -- gained instance $ Hashable1 NonEmpty:: Nix.Expr.Types -> Void -- please use upstreamed instance -- | Was upstreamed, released in `ref-tf >= 0.5`. MonadAtomicRef (Fix1T t m) :: Nix.Standard -> Void MonadRef (Fix1T t m) :: Nix.Standard -> Nix.Utils.Fix1 MonadEnv (Fix1T t m) :: Nix.Standard -> Nix.Effects MonadExec (Fix1T t m) :: Nix.Standard -> Nix.Effects MonadHttp (Fix1T t m) :: Nix.Standard -> Nix.Effects MonadInstantiate (Fix1T t m) :: Nix.Standard -> Nix.Effects MonadIntrospect (Fix1T t m) :: Nix.Standard -> Nix.Effects MonadPaths (Fix1T t m) :: Nix.Standard -> Nix.Effects MonadPutStr (Fix1T t m) :: Nix.Standard -> Nix.Effects MonadStore (Fix1T t m) :: Nix.Standard -> Nix.Effects MonadFile (Fix1T t m) :: Nix.Standard -> Nix.Render MonadEnv (Fix1 t) :: Nix.Standard -> Nix.Effects MonadExec (Fix1 t) :: Nix.Standard -> Nix.Effects MonadHttp (Fix1 t) :: Nix.Standard -> Nix.Effects MonadInstantiate (Fix1 t) :: Nix.Standard -> Nix.Effects MonadIntrospect (Fix1 t) :: Nix.Standard -> Nix.Effects MonadPaths (Fix1 t) :: Nix.Standard -> Nix.Effects MonadPutStr (Fix1 t) :: Nix.Standard -> Nix.Effects
-
-
(link)
Nix.Value
:nvSet{,',P}
: got unflipped, now accept source position argument before the value. -
(link)
Nix.Pretty
:mkNixDoc
: got unflipped. -
(link)
Nix.Value
: Data constructor forNValue' t f m a
changed (NValue -> NValue'
). -
(link)
Nix.Parser
:Parser
: Data type was equivalent toEither
, so became a type synonim forEither
. -
(link)
Nix.Thunk.Basic
:instance MonadThunk (NThunkF m v) m v
:queryM
: implementation no longer blocks the thunk resource it only reads from. -
(link): Migrated
(String -> Text)
:Nix.Value
:{NValueF, nvBuiltin{,'}, builtin{,2,3}, describeValue}
Nix.Eval
:MonadNixEval
Nix.Render.Frame
:render{Expr,Value}
Nix.Type
:TVar
Nix.Thunk
:ThunkLoop
Nix.Exec
:{nvBuiltinP, nixInstantiateExpr, exec}
Nix.Effects
:class
:MonadExec: exec'
MonadEnv: getEnvVar
MonadInstantiate: instatiateExpr
parseStoreResult
Nix.Effects.Derivation
:renderSymbolic
Nix.Lint
:{NTypeF, symerr}
-
-
Additional:
- (link)
cabal.project
: freed from thecryptohash-sha512
override, Hackage trustees made a revision. - (link) To be more approachable for user understanding, the thunk representation in outputs changed from
"<CYCLE>" -> "<expr>"
. - (link) The Nix evaluation cycle representation changed
"<CYCLE>" -> "<cycle>"
. - (link)
Nix.Expr.Types
: added hacky implementation ofliftTyped
forinstance Lift (Fix NExprF)
. - [(link)](https://github.com/...
- (link)
pre-0.13.0-2
cabal: version: 0.13.0 (#929)
pre-0.13.0-1
cabal: version: 0.13.0 (#929)
0.12.0.1
- fx changelog
0.12.0
(diff) 0.12.0 (2020-01-05)
-
Disclaimer: Current
derivationStrict
primOp implementation and so every evaluation of a derivation into a store path currently relies on thehnix-store-remote
, which for those operations relies on the runningnix-daemon
, and so operations use/produce effects into the/nix/store
. Be cautious - it is effectful. -
Introduction:
- New module
Nix.Effects.Derivation
. - Operations on derivations:
- old got principled implementations.
- also new operations got introduced.
- Implementation of the
derivationStrict
primOp.
- New module
-
Breaking:
- (link)
Nix.Effects
: classMonadStore
got principled implementation.addPath'
got principled intoaddToStore
.toFile_
got principled intoaddTextToStore'
.- For help & easy migration you may use
addPath
&toFile_
addTextToStore
standalone functions in the module.
- (link)
Nix.Effects.Basic
:defaultDerivationStrict
got reimplemented & moved intoNix.Effects.Derivation
. - (link)
Nix.Standard
: instance forMonadStore (Fix1T t m)
got principled accoding to classMonadStore
changes. - (link)
Nix.Fresh.Basic
: instance forMonadStore (StdIdT m)
got principled.
- (link)
-
Additional:
- (link) New module
Nix.Effects.Derivation
: HNix(0.12.0):Nix.Effects.Derivation documentation. - (link)
Nix.Convert
: PrincipledNVPath -> NixString
coercion.- In a form of principled
instance FromValue NixString m (NValue' t f m (NValue t f m))
.
- In a form of principled
- (link)
Nix.String
: Allow custom computations inside string contexts.- By providing
runWithStringContext{T,}'
methods into the API.
- By providing
- (link) Includded support for new
base16-bytestring
, which advertices 2x-4x speed increase of its operations. - (link)
Nix.Effects
:addPath
&toFile_
standalone functions got principled implementation through the internal use of the newMonadStore
type class implementation. - (link)
Nix.Effects
: addedaddTextToStore
,parseStoreResult
implementations. - (link)
Nix.Effects
: added type synonyms{RecursiveFlag, RepairFlag, StorePathName, FilePathFilter, StorePathSet}
. - (link)
Nix.Exec
: Fixed the rendering of internalFrames
.- Which is an internal mechanism of a project to passing around messages with their context, still to be used internally).
- (link)
HNix / Nix
: The library now also useshnix-store-remote
. - (link)
cabal.project
: project usescryptohash-sha512
override, thehnix-store-core
requires it fromhnix
and uses that override also. Detailed info. We promise to attend to this issue, probably by migrating tocryptonite
in the nearest releases.
- (link) New module
Future note: The HNix is a big project. During the initial development and currently the API for simplicity exposes allmost all functions, types, etc. Big open API means a big effort to create/maintain a quite noisy changelog and you parsing through it, and also creates a frequent requirements to mark releases as major and bother you due to some type changes in some parts that may not be used or applicable to be public API.
This year the most gracious API clean-up would happen, we would check and keep open what Hackage projects are using from the API, and the other parts would be open on the request by a way of rapid minor releases. That clean-up is also a work toward splitting the project into several packages some time in the future (split would be into something like Expressions, Evaluation, Executable, Extra), which migration also would be done most thoughful and graceful as possible, with as much easiness and automation provided for migration downstream as possible. If all goes as planned - all downstream would need to do is to get and run our script that would migrate our old map of module imports to new ones, and maybe manually add those newly formed packages into .cabal
description.
If it is possible, please, try to switch & use the higher-level API functions where it is applicable. Thank you.
pre-0.12.0
Merge #554: Implementation of derivationStrict primOp & use of the St…
0.11.1
(diff) 0.11.1 (2020-12-09)
- Additional:
- (link)
Nix/Builtins
:isString
fixed - It used to returnTrue
for values coercible to string like derivations and paths. It only accepts string values now. - (link)
Nix/Builtins
:substring
fixed - Negative lengths used to capture an empty string. Now they capture the whole rmeainder of the string. - (link)
Nix/Effects
:pathExists
fixed - Now also works with directories. - (link)
Nix/Parser
:->
is now properly right-associative (was non-associative). - (link)
Nix/Parser
: Nixassert
parser (nixAssert
function) now accepts top-level Nix format also (which means also accepts all kinds of statements), before that it accepted only regular Nix expressions. - (link)
Nix/Render
:renderLocation
now also shows/handles location of errors in raw strings.
- (link)
0.11.0
(diff) 0.11.0 (2020-11-02)
-
Breaking:
- (link) Deleted incorrect
instance Generic1 NKeyName
frommodule Nix.Expr.Types
. - (link) Parentheses now are properly included in the location annotation for Nix expressions, change of
nixParens
inmodule Nix.Parser
essentially results in the change of all modulenix*
function results, essentially making results of the whole module more proper.
- (link) Deleted incorrect
-
Additional:
- (link) Fix QQ Text lifting error: work around of GHC#12596 "can't find interface-file declaration".
- (link) Fix comments inclusion into location annotations, by using pre-whitespace position for source end locations.
pre-0.11.0
CHANGELOG.md: add 0.11.0 (#749)