4.9 KiB
v1.6.x - yyyy-mm-dd
Standard library additions and changes
-
Make
{.requiresInit.}pragma to work fordistincttypes. -
Added a macros
enumLenfor returning the number of items in an enum to thetypetraits.nimmodule. -
preludenow works with the JavaScript target. -
Added
almostEqualinmathfor comparing two float values using a machine epsilon. -
The JSON module can now handle integer literals and floating point literals of arbitrary length and precision. Numbers that do not fit the underlying
BiggestIntorBiggestFloatfields are kept as string literals and one can use external BigNum libraries to handle these. TheparseFloatfamily of functions also has now optionalrawIntegersandrawFloatsparameters that can be used to enforce that all integer or float literals remain in the "raw" string form so that client code can easily treat small and large numbers uniformly. -
Added an overload for the
collectmacro that inferes the container type based on the syntax of the last expression. Works with std seqs, tables and sets. -
Added
randStatetemplate that exposes the default random number generator. Useful for library authors. -
Added std/enumutils module containing
genEnumCaseStmtmacro that generates case statement to parse string to enum. -
Removed deprecated
iupmodule from stdlib, it has already moved to nimble. -
nodejsbackend now supports osenv:getEnv,putEnv,envPairs,delEnv,existsEnv. -
Added
cmpMemtosystem. -
doAssertRaisesnow correctly handles foreign exceptions. -
Added
asyncdispatch.activeDescriptorsthat returns the number of currently active async event handles/file descriptors. -
--gc:orcis now 10% faster than previously for common workloads. If you have trouble with its changed behavior, compile with-d:nimOldOrc. -
os.FileInfo(returned bygetFileInfo) now containsblockSize, determining preferred I/O block size for this file object. -
reprnow doesn't insert trailing newline; previous behavior was very inconsistent, see #16034. Use-d:nimLegacyReprWithNewlinefor previous behavior. -
Added
**to jsffi. -
writeStackTraceis available in JS backend now. -
Added
decodeQuerytostd/uri. -
strscans.scanfnow supports parsing single characters. -
strscans.scanTupleadded which usesstrscans.scanfinternally, returning a tuple which can be unpacked for easier usage ofscanf. -
Added
setutils.toSetthat can take any iterable and convert it to a built-in set, if the iterable yields a built-in settable type. -
Added
math.isNaN. -
echoanddebugEchowill now raiseIOErrorif writing to stdout fails. Previous behavior silently ignored errors. See #16366. Use-d:nimLegacyEchoNoRaisefor previous behavior. -
Added
math.copySign. -
Added new operations for singly- and doubly linked lists:
lists.toSinglyLinkedListandlists.toDoublyLinkedListconvert fromopenArrays;lists.copyimplements shallow copying;lists.addconcatenates two lists - an O(1) variation that consumes its argument,addMoved, is also supplied. -
Added
sequtilsimport toprelude. -
Added
euclDivandeuclModtomath. -
Added
httpcore.is1xxand missing HTTP codes. -
Added
jsconsole.jsAssertfor JavaScript target. -
Added
mimetypes.mimesExtMaxLenthats equal to the length of the longest "ext" frommimes. -
Added
mimetypes.mimesMaxLenthats equal to the length of the longest "mime" frommimes. -
Added
posix_utils.osReleaseFileto get system identification fromos-releasefile on Linux and the BSDs. https://www.freedesktop.org/software/systemd/man/os-release.html -
Added
BackwardsIndexoverload forJsonNode. -
math.roundnow is rounded "away from zero" in JS backend which is consistent with other backends. see #9125. Use-d:nimLegacyJsRoundfor previous behavior. -
Added
socketstreammodule that wraps sockets in the stream interface -
Added
math.signbit.
Language changes
-
nimscriptnow handlesexcept Exception as e. -
The
cstringdoesn't support[]=operator in JS backend. -
nil dereference is not allowed at compile time.
cast[ptr int](nil)[]is rejected at compile time.
Compiler changes
-
Added
--declaredlocsto show symbol declaration location in messages. -
Source+Edit links now appear on top of every docgen'd page when
nim doc --git.url:url ...is given. -
Added
nim --eval:cmdto evaluate a command directly, seenim --help. -
VM now supports
addr(mystring[ind])(index + index assignment) -
Type mismatch errors now show more context, use
-d:nimLegacyTypeMismatchfor previous behavior.
Tool changes
- The rst parser now supports markdown table syntax.
Known limitations:
- cell alignment is not supported, i.e. alignment annotations in a delimiter
row (
:---,:--:,---:) are ignored, - every table row must start with
|, e.g.| cell 1 | cell 2 |.
- cell alignment is not supported, i.e. alignment annotations in a delimiter
row (