-
Added
Text.fromList
andText.toList
functions (#676). -
Added
Text.fromArray
andText.fromVarArray
functions (#674). -
Added
replyDeadline
toExperimentalInternetComputer
(#677).
-
Breaking change (minor):
Float.format(#hex)
is no longer supported. This is because newer versions of Motoko (such as with enhanced orthogonal persistence) rely on the Rust-native formatter that does not offer this functionality. It is expected that this formatter is very rarely used in practice. -
Formatter change (minor): The text formatting of
NaN
, positive or negative, will beNaN
in newer Motoko versions, while it wasnan
or-nan
in older versions.
- Add modules
OrderedMap
andOrderedSet
to replaceRBTree
(thanks to Serokell) (#662).
(nothing)
(nothing)
(nothing)
- Add
Iter.concat
function (thanks to AndyGura) (#650).
(nothing)
(nothing)
-
Uppercase
Result
variants (#626). -
Un-deprecated
Array.append
(#630).
(nothing)
-
Added
Option.equal
function (thanks to ByronBecker) (#615). -
Invoking
setTimer
,ExperimentalCycles.add
, etc. now requiressystem
capability (#622). -
Added
bitshiftLeft
/bitshiftRight
toNat
(#613). This was added as part of #622 by mistake.
(nothing)
-
Added
ExperimentalInternetComputer.performanceCounter
function to get the raw performance counters (#600). -
Added
Array.take
function to get some prefix of an array (#587). -
Deprecated
TrieSet.mem
in favor ofTrieSet.contains
(#576). -
bugfix:
Array.chain(as, f)
was incorrectly trapping whenf(a)
was an empty array (#599).