Skip to content

Latest commit

 

History

History
438 lines (261 loc) · 14 KB

CHANGELOG.md

File metadata and controls

438 lines (261 loc) · 14 KB

1.30.0.0 — 2024-06-17

Added

  • Logical operations as per CIP-122.

  • Implementation and tests for primitive operations in this CIP

Changed

  • References to CIP-87 have been corrected to refer to CIP-121.
  • Rename ReplicateByteString to ReplicateByte (and similarly for denotation)
  • Renamed decodeViaFlat to decodeViaFlatWith
  • Renamed AsSerialize to FlatViaSerialise

1.29.0.0 — 2024-06-04

Removed

  • unsafeRunCekNoEmit and all unsafeEvaluate* functions in #6043. To replace e.g. unsafeEvaluateCek you can use evaluateCek in combination with unsafeToEvaluationResult.

  • UnknownBuiltin and UnknownBuiltinType in #6064.

Added

  • Primitives integerToByteString and byteStringToInteger are added to PlutusV2, enabled at protocol version 10.

  • A new cost model for PlutusV3.

  • Missing KnownTypeAst, ReadKnownIn and MakeKnownIn for integral types (Int8, Word16 etc) in #6036

Changed

  • Renamed unsafeExtractEvaluationResult to unsafeToEvaluationResult.

  • We now have configurable cost models which allow different costs for different Plutus language versions and protocol versions.

  • Made unlifting errors a bit more flexible by allowing operational unlifting errors in #6036

  • CPU charges reduced for PlutusV1 and PlutusV2 scripts in the Conway era.

1.28.0.0 — 2024-05-15

Fixed

  • A "stricter" version of Z-combinator that allows certain PIR programs not to lose their traces and yields minor performance gains.

1.27.0.0 — 2024-04-30

Removed

  • Debugger executable is removed and integrated inside plutus executable.

Added

  • An experimental "plutus" tool that unifies pir, plc, uplc, and debugger executables into one.
  • Codec.CBOR.Extras module is migrated here from `plutus-ledger-api.

Fixed

  • Restrict eraseTerm/eraseProgram to only work with TPLC Name input.

1.26.0.0 — 2024-04-19

Changed

  • Improvements to costing infrastructure.

  • Use Vector in the datastructure for case terms during evaluation. This speeds up evaluation fairly significantly.

  • The flat encoding of the Data type has been modified slightly to make sure that the result is always in the canonical format described in the Plutus Core specification.

1.25.0.0 — 2024-04-03

Changed

  • Partially applied builtins are estimated to be pure and work-free to better inform other optimizations, e.g. common subexpression elimination.

1.22.0.0 — 2024-02-21

Added

  • Cost modelling code updated for ByteStringToInteger and IntegerToByteString.
  • Preliminary budgeting for ByteStringToInteger and IntegerToByteString.

1.21.0.0 — 2024-01-25

Changed

  • #5728 added BuiltinResult and leveraged in places where we used to use Emitter (EvaluationResult Smth).

1.20.0.0 — 2024-01-15

Added

  • Implementations for the primitive operations described in CIP-0087

1.19.0.0 — 2023-12-23

Added

  • Common subexpression elimination for Untyped Plutus Core.

Changed

  • The methoods in the Flat instances for PlutusCore.Crypto.BLS12_381.G1.Element and PlutusCore.Crypto.BLS12_381.G2.Element now cause failures: if a user wishes to use a literal constant in a serialised script then they should use the relevant uncompress function on a bytestring. For convenience in experimentation and testing, literal constants are still allowed in textual Plutus Core programs, but any attempt to convert such a program to flat format will fail.

  • The zero and generator constants (for use in plutus-tx) have been removed from PlutusCore.Crypto.BLS12_381.G1.Element and PlutusCore.Crypto.BLS12_381.G2.Element and replaced with bytestrings called compressed_zero and compressed_generator; the original elements can be recovered by applying the appropriate uncompress functions to these. -->

Fixed

  • The EvaluateBuiltins pass will no longer produce constants that can't be serialized.

  • Fixed a bug in the PIR inliner that causes it to change the order of effects in the presence of multi-lets.

1.17.0.0 — 2023-11-22

Added

  • Hashable instances for Data, UPLC Term and related types.

1.16.0.0 — 2023-11-10

Removed

  • A GCompare instance for DefaultUni in #5609.

Added

  • A new pass in the simplifier that rewrites PIR terms given user-provided rules. It behaves similar to GHC's RULES, but for the PIR language. By default, a pre-defined set of rules are applied when the PIR simplifier is enabled.

  • A PIR rewrite rule for optimizing ""(unconstr . constrdata)"

1.15.0 — 2023-10-16

Added

  • The Plutus IR optimizer now performs case-of-case.

  • Typechecking property tests for all PIR compiler passes.

  • The debugger will now track and show traces, live as they are emitted by the CEK machine

Changed

  • Instead of a single --hs-file, the debugger now accepts an --hs-dir DIR option to look for (multiple) source PlutusTx modules

1.14.0.0 — 2023-09-28

Added

  • Optimizer now considers constructor applications to be pure

Changed

  • The ThunkRecursions transformation preserves now the effect order & strictness

1.13.0.0 — 2023-09-15

Added

  • A -B/--builtin-semantics-variant option for the plc and uplc commands to allow the user to select which variant of the builtin semantics to use.

Changed

  • CekMachineCosts changed to use the "higher-kinded data" pattern, like BuiltinCostModel

Fixed

  • The PIR callsite inliner no longer requires that the function is fully applied for inlining.

  • Fixed bugs in the inliner relating to inlining terms that are immediately evaluated.

1.11.0.0 — 2023-08-24

Added

  • Optimization pass to strictify bindings

1.10.0.0 — 2023-08-02

Added

  • keccak_256 builtin
  • blake2b_224 builtin

Changed

  • Separated the single Includes constraint into two constraints, HasTypeLevel and HasTermLevel (which together form HasTypeAndTermLevel) in #5434.

1.9.0.0 — 2023-07-21

Changed

  • Flat serialization&deserialization of DeBruijn indices go directly via Word64, instead of the previous indirection via Natural.

Fixed

  • The FakeNamedDeBruijn's encode&size methods are fixed to roundtrip its flat format

1.8.0.0 — 2023-06-22

Added

  • Three new types for BLS12-381 objects (see CIP-0381).

  • Seventeen new built-in functions for BLS12-381 operations (see CIP-0381).

  • Costing benchmarks for the BLS12-381 builtins.

  • R code to infer cost models for the BLS12-381 builtins.

  • Property tests for the BLS12-381 builtins.

  • Code for Haskell bindings to theblst library has been added in cbits and plutus-core/src/Crypto/External/. These have been copied from PR #266 in cardano-base and will be removed when that is merged.

  • A special case of case-of-case optimization for UPLC, where the inner case is an ifThenElse application.

  • Added PlutusCore.MkPlc.mkIterAppNoAnn, PlutusCore.MkPlc.mkIterInstNoAnn and PlutusCore.MkPlc.mkIterTyAppNoAnn.

  • Callsite inlining for UPLC.

  • An apply-to-data command was added to the plc and uplc executables which allows a script to be applied to a list of flat-encoded data objects (the existing apply command requires all inputs to be programs).

  • Added commuteFnWithConst to the PIR simplifier pass.

Changed

  • The PLC, UPLC, and PIR parsers accept names quoted in backticks. Quoted names may have symbolic characters.

  • Costing functions for the BLS12-381 builtins were added to builtinCostModel.json.

  • Costing benchmark results for the BLS12-381 builtins were added to benching.csv.

  • Some of the R code in models.R was improved.

  • The files in plutus-core/src/crypto were reorganised to put code relating to different sets of crypto functions into separate files.

  • Improved the inlining of fully saturated functions such that it measures the size differences more accurately, and also performs beta reduction after inlining.

  • Changed PlutusCore.MkPlc.mkIterApp, PlutusCore.MkPlc.mkIterInst and PlutusCore.MkPlc.mkIterTyApp to require an annotation to be provided for each argument.

  • Updated the parser and the pretty-printers to the new syntax of Data in #5391 according to this, for example:

Constr 1
  [ Map [(B #616263646566, Constr 2 [B #, I 0])]
  , List
      [ List
          [ List [List [I 123456]]
          , B #666666666666666666666666666666666666666666666666666666666666666666666666666666666666 ] ]
  , I 42 ]

Fixed

  • The plc and uplc commands were failing to account for the new Constr and Case constructors for sums of products.

  • Fixed PlutusIR.Purity.firstEffectfulTerm and UntypedPlutusCore.Transform.Inline.firstEffectfulTerm, which were sometimes too conservative and sometimes incorrect.

1.7.0.0 — 2023-05-22

Added

  • Float Delay optimization for UPLC.

  • GHC 9.6 support

Changed

  • Improved "readable" pretty-printing functions by making them insert line breaks properly
  • Simplified using "readable" pretty-printing by introducing the PlutusCore.Pretty.Readable.AsReadable wrapper

Fixed

  • The PIR executable now actually checks uniqueness when reading a program.

  • applyProgram and applyCode now return Either instead of Maybe for better error messages.

1.6.0.0 — 2023-05-04

Added

  • Case-of-known-constructor for Plutus IR.

  • The Plutus IR compiler can now compile datatypes using SOPs.

  • Generic builtin evaluation pass for PIR (subsumes constant-folding).

Changed

  • Various intercept and slope constants are now wrapped in Intercept and Slope newtypes

Fixed

  • The inliner now rename before call site inlining to ensure global uniqueness.

1.5.0.0 — 2023-04-16

Removed

  • Flat instances for UPLC terms and programs. These were potentially unsafe as they don't perform the builtin checks that are required on chain, so it is important not to use them by accident.

Added

  • optimise options for the pir, plc, and uplc commands.

  • A compile option for the pir command which allows a PIR file to be compiled to PLC or UPLC.

  • Functions for mapping over names and typenames in the PLC AST.

  • Inlining of fully applied functions in the PIR inliner. This only affects non-recursive bindings.

  • Plutus Core 1.1.0 now supports sums-of-products via the new constr and case terms. See CIP-85 for details.

  • UnrestrictedProgram newtype that performs unchecked serialization/deserialization of programs for when that's appropriate.

  • Tests for Steppable CEK against original CEK

Changed

  • Some of the pir commands have been extended to allow both flat and textual input.

  • Made costing lazier to speed things up and increase expressiveness. #5239

Fixed

  • Fixed the safeEncodeBits assertion to also guard against 1 unsafe case. Does not affect current encoding/decoding.

1.4.0.0 — 2023-03-23

Added

  • New Plutus Core language version 1.1
  • PIR programs now have a version, which corresponds to the underlying Plutus Core language version.

Changed

  • defaultVersion renamed to latestVersion

  • applyProgram now merges annotations and requires matching program versions

  • Use a primitive array for the step counter; removed the word-array package.

1.3.0.0 — 2023-03-08

Added

  • The debugger TUI updates live the currently spent CPU&MEM resources of the debugged program.
  • The debugger TUI accepts a --budget to limit the CPU&MEM resources of the debugged program.

Changed

  • The PIR readable prettyprinter was improved in a number of minor ways.

1.2.0.0 — 2023-02-24

Added

  • Added NoThunks instance for Data.

  • A float-in compilation pass, capable of floating term bindings inwards in PIR. See Note [Float-in] for more details.

  • Tests targeting testing of (1) unconditional inlining of functions (2) call site inlining of fully applied functions (for the upcoming implementation).

  • The debugger can now highlight (beside the UPLC expression), the original PlutusTX expression currently being evaluated.

  • The debugger driver will now capture any error during the stepping of a PLC program and display it inside the debugging clients (tui,cli,etc).

  • function to track the type and term lambda abstraction order of a term in the PIR inliner.

Changed

  • PIR, TPLC and UPLC parsers now attach PlutusCore.Annotation.SrcSpan instead of Text.Megaparsec.Pos.SourcePos to the parsed programs and terms.

  • The float-in pass can now float non-recursive type and datatype bindings.

  • The float-in pass now floats bindings inwards more aggressively. See Note [Float-in] #5.

  • Plutus IR was moved to a public sub-library of plutus-core.

  • Version no longer has an annotation, as this was entirely unused.

  • Made geq faster in certain cases, -1% of total validation time. #5061

  • Made the Haskell-Tx file input to the debugger optional.

Fixed

  • The goldenPIR function now uses the correct function to print parse errors, so they are now printed in a human-readable way.

  • PIR, PLC and UPLC term parsers can now parse comments.