* Add strutils.indentation and make unindent use it * Code style * Fix bootstrapping * Improve wording * Fix test * Introduce without breaking change * Fix * Reduce diff * Fix docs link * Add since annotation * Update changelog
16 KiB
v1.4.0 - yyyy-mm-dd
Standard library additions and changes
-
Added some enhancements to
std/jsonutilsmodule.- Added a possibility to deserialize JSON arrays directly to
HashSetandOrderedSettypes and respectively to serialize those types to JSON arrays viajsonutils.fromJsonandjsonutils.toJsonprocedures. - Added a possibility to deserialize JSON
nullobjects to Nim option objects and respectively to serialize Nim option object to JSON object ifisSomeor to JSON null object ifisNoneviajsonutils.fromJsonandjsonutils.toJsonprocedures. - Added
Joptionsparameter tojsonutils.fromJsonprocedure currently containing two boolean optionsallowExtraKeysandallowMissingKeys.- If
allowExtraKeysistrueNim's object to which the JSON is parsed is not required to have a field for every JSON key. - If
allowMissingKeysistrueNim's object to which JSON is parsed is allowed to have fields without corresponding JSON keys.
- If
- Added a possibility to deserialize JSON arrays directly to
-
Added
bindParams,bindParamtodb_sqlitefor binding parameters into aSqlPreparedstatement. -
Add
tryInsert,insertprocs todb_*libs accept primary key column name. -
Added
xmltree.newVerbatimTextsupport createstyle's,script's text. -
uriadds Data URI Base64, implements RFC-2397. -
Add DOM Parser to the
dommodule for the JavaScript target. -
The default hash for
Ordinalhas changed to something more bit-scrambling.import hashes; proc hash(x: myInt): Hash = hashIdentity(x)recovers the old one in an instantiation context while-d:nimIntHash1recovers it globally. -
deques.peekFirstanddeques.peekLastnow havevar Deque[T] -> var Toverloads. -
File handles created from high-level abstractions in the stdlib will no longer be inherited by child processes. In particular, these modules are affected:
asyncdispatch,asyncnet,system,nativesockets,netandselectors.For
asyncdispatch,asyncnet,netandnativesockets, aninheritableflag has been added to allprocs that create sockets, allowing the user to control whether the resulting socket is inheritable. This flag is provided to ease the writing of multi-process servers, where sockets inheritance is desired.For a transition period, define
nimInheritHandlesto enable file handle inheritance by default. This flag does not affect theselectorsmodule due to the differing semantics between operating systems.asyncdispatch.setInheritable,system.setInheritableandnativesockets.setInheritableis also introduced for setting file handle or socket inheritance. Not all platform have theseprocs defined. -
The file descriptors created for internal bookkeeping by
ioselector_kqueueandioselector_epollwill no longer be leaked to child processes. -
strutils.formatFloatwithprecision = 0has been restored to the version 1 behaviour that produces a trailing dot, e.g.formatFloat(3.14159, precision = 0)is now3., not3. -
critbitsaddscommonPrefixLen. -
relativePath(rel, abs)andrelativePath(abs, rel)used to silently give wrong results (see #13222); instead they now usegetCurrentDirto resolve those cases, and this can now throw in edge cases wheregetCurrentDirthrows.relativePathalso now works for js with-d:nodejs. -
JavaScript and NimScript standard library changes:
streams.StringStreamis now supported in JavaScript, with the limitation that any bufferpointers used must be castable toptr string, any incompatible pointer type will not work. Thelexbaseandstreamsmodules used to fail to compile on NimScript due to a bug, but this has been fixed.The following modules now compile on both JS and NimScript:
parsecsv,parsecfg,parsesql,xmlparser,htmlparserandropes. Additionally supported for JS iscstrutils.startsWithandcstrutils.endsWith, for NimScript:json,parsejson,strtabsandunidecode. -
Added
streams.readStrandstreams.peekStroverloads to accept an existing string to modify, which avoids memory allocations, similar tostreams.readLine(#13857). -
Added high-level
asyncnet.sendToandasyncnet.recvFromUDP functionality. -
dollars.$now works for unsigned ints withnim js -
Improvements to the
bitopsmodule, including bitslices, non-mutating versions of the original masking functions,mask/masked, and varargs support forbitand,bitor, andbitxor. -
sugar.=>andsugar.->changes: Previously(x, y: int)was transformed into(x: auto, y: int), it now becomes(x: int, y: int)in consistency with regular proc definitions (although you cannot use semicolons).Pragmas and using a name are now allowed on the lefthand side of
=>. Here is an aggregate example of these changes:import sugar foo(x, y: int) {.noSideEffect.} => x + y # is transformed into proc foo(x: int, y: int): auto {.noSideEffect.} = x + y -
The fields of
times.DateTimeare now private, and are accessed with getters and deprecated setters. -
The
timesmodule now handles the default value forDateTimemore consistently. Most procs raise an assertion error when given an uninitializedDateTime, the exceptions are==and$(which returns"Uninitialized DateTime"). The proctimes.isInitializedhas been added which can be used to check if aDateTimehas been initialized. -
Fix a bug where calling
closeon io streams in osproc.startProcess was a noop and led to hangs if a process had both reads from stdin and writes (eg to stdout). -
The callback that is passed to
system.onThreadDestructionmust now be.raises: []. -
The callback that is assigned to
system.onUnhandledExceptionmust now be.gcsafe. -
osproc.execCmdExnow takes an optionalinputfor stdin,workingDirandenvparameters. -
Added a
ssl_configmodule containing lists of secure ciphers as recommended by Mozilla OpSec -
net.newContextnow defaults to the list of ciphers targeting "Intermediate compatibility" per Mozilla's recommendation instead ofALL. This change should protect users from the use of weak and insecure ciphers while still provides adequate compatibility with the majority of the Internet. -
A new module
std/jsonutilswith hookablejsonTo,toJson,fromJsonoperations for json serialization/deserialization of custom types was added. -
A new proc
heapqueue.find[T](heap: HeapQueue[T], x: T): intto get index of elementxwas added. -
Added
rstgen.rstToLatexconvenience proc forrenderRstToOutandinitRstGeneratorwithoutLatexoutput. -
Added
os.normalizeExe, e.g.:koch=>./koch. -
macros.newLitnow preserves named vs unnamed tuples; use-d:nimHasWorkaround14720to keep old behavior. -
Added
random.gauss, that uses the ratio of uniforms method of sampling from a Gaussian distribution. -
Added
typetraits.elementTypeto get element type of an iterable. -
typetraits.$changes:$(int,)is now"(int,)"instead of"(int)";$tuple[]is now"tuple[]"instead of"tuple";$((int, float), int)is now"((int, float), int)"instead of"(tuple of (int, float), int)" -
Added
macros.extractDocCommentsAndRunnableshelper -
strformat.fmtandstrformat.&support= specifier.fmt"{expr=}"now expands tofmt"expr={expr}". -
deprecations:
os.existsDir=>dirExists,os.existsFile=>fileExists -
Added
jsremodule, Regular Expressions for the JavaScript target. -
Made
maxLinesargumentPositiveinlogging.newRollingFileLogger, because negative values will result in a new file being created for each logged line which doesn't make sense. -
Changed
loginloggingto use proper log level on JavaScript target, e.g.debugusesconsole.debug,infousesconsole.info,warnusesconsole.warn, etc. -
Tables, HashSets, SharedTables and deques don't require anymore that the passed initial size must be a power of two - this is done internally. Proc
rightSizefor Tables and HashSets is deprecated, as it is not needed anymore.CountTable.inctakesval: intagain notval: Positive; I.e. it can "count down" again. -
Removed deprecated symbols from
macrosmodule, deprecated as far back as0.15. -
Export
asyncdispatch.PDispatcher.handlesso that an external library can register them. -
Added
deques.toDeque, which creates a deque from an openArray. The usage is similar to procs such assets.toHashSetandtables.toTable. Previously, it was necessary to create an empty deque and add items manually. -
std/with,sugar.dupnow support object field assignment expression:import std/with type Foo = object x, y: int var foo = Foo() with foo: x = 10 y = 20 echo foo -
Proc
math.roundis no longer deprecated. The advice to usestrformatinstead cannot be applied to every use case. The limitations and the (lack of) reliability ofroundare well documented. -
Add
getprotobynametowinlean. AddgetProtoBynametonativesocketswhich returns a protocol code from the database that matches the protocolname. -
Add missing attributes and methods to
dom.NavigatorlikedeviceMemory,onLine,vibrate(), etc. -
Added
strutils.indentationandstrutils.dedentwhich enable indented string literals:import strutils echo dedent """ This is cool! """
Language changes
-
The
=destroyhook no longer has to reset its target, as the compiler now automatically insertswasMovedcalls where needed. -
In the newruntime it is now allowed to assign to the discriminator field without restrictions as long as case object doesn't have custom destructor. The discriminator value doesn't have to be a constant either. If you have a custom destructor for a case object and you do want to freely assign discriminator fields, it is recommended to refactor object into 2 objects like this:
type MyObj = object case kind: bool of true: y: ptr UncheckedArray[float] of false: z: seq[int] proc `=destroy`(x: MyObj) = if x.kind and x.y != nil: deallocShared(x.y) x.y = nilRefactor into:
type MySubObj = object val: ptr UncheckedArray[float] MyObj = object case kind: bool of true: y: MySubObj of false: z: seq[int] proc `=destroy`(x: MySubObj) = if x.val != nil: deallocShared(x.val) x.val = nil -
getImplon enum type symbols now returns field syms instead of idents. This helps with writing typed macros. Old behavior for backwards compatibility can be restored with command line switch--useVersion:1.0. -
letstatements can now be used without a value if declared withimportc/importcpp/importjs/importobjc. -
The keyword
fromis now usable as an operator. -
Exceptions inheriting from
system.Defectare no longer tracked with the.raises: []exception tracking mechanism. This is more consistent with the built-in operations. The following always used to compile (and still does):
proc mydiv(a, b): int {.raises: [].} =
a div b # can raise an DivByZeroDefect
Now also this compiles:
proc mydiv(a, b): int {.raises: [].} =
if b == 0: raise newException(DivByZeroDefect, "division by zero")
else: result = a div b
The reason for this is that DivByZeroDefect inherits from Defect and
with --panics:on Defects become unrecoverable errors.
-
Added the
thiscallcalling convention as specified by Microsoft, mostly for hooking purpose -
Deprecated
{.unroll.}pragma, was ignored by the compiler anyways, was a nop. -
Remove
strutils.isNilOrWhitespace, was deprecated. -
Remove
sharedtables.initSharedTable, was deprecated and produces undefined behavior. -
Removed
asyncdispatch.newAsyncNativeSocket, was deprecated since0.18. -
Remove
dom.releaseEventsanddom.captureEvents, was deprecated. -
Remove
sharedlists.initSharedList, was deprecated and produces undefined behaviour. -
There is a new experimental feature called "strictFuncs" which makes the definition of
.noSideEffectstricter. See for more information. -
"for-loop macros" (see the manual) are no longer an experimental feature. In other words, you don't have to write pragma
{.experimental: "forLoopMacros".}if you want to use them.
Compiler changes
- Specific warnings can now be turned into errors via
--warningAsError[X]:on|off. - The
defineandundefpragmas have been de-deprecated. - New command:
nim r main.nim [args...]which compiles and runs main.nim, and implies--usenimcacheso that output is saved to $nimcache/main$exeExt, using the same logic asnim c -rto avoid recompiling when sources don't change. This is now the preferred way to run tests, avoiding the usual pain of clobbering your repo with binaries or using tricky gitignore rules on posix. Example:nim r compiler/nim.nim --help # only compiled the first time echo 'import os; echo getCurrentCompilerExe()' | nim r - # this works too nim r compiler/nim.nim --fullhelp # no recompilation nim r --nimcache:/tmp main # binary saved to /tmp/main --hint:processingis now supported and means--hint:processing:on(likewise with other hints and warnings), which is consistent with all other bool flags. (since 1.3.3).nim doc -r mainandnim rst2html -r mainnow call openDefaultBrowser- new hint:
--hint:msgOriginwill show where a compiler msg (hint|warning|error) was generated; this helps in particular when it's non obvious where it came from either because multiple locations generate the same message, or because the message involves runtime formatting. - new flag
--backend:js|c|cpp|objc(or -b:js etc), to change backend; can be used with any command (eg nim r, doc, check etc); safe to re-assign. - new flag
--doccmd:cmdto pass additional flags for runnableExamples, e.g.:--doccmd:-d:foo --threadsuse--doccmd:skipto skip runnableExamples and rst test snippets. - new flag
--usenimcacheto output to nimcache (whatever it resolves to after all commands are processed) and avoids polluting both $pwd and $projectdir. It can be used with any command. runnableExamples "-b:cpp -r:off": codeis now supported, allowing to override how an example is compiled and run, for example to change backend or compile only.nim docnow outputs under$projectPath/htmldocswhen--outdiris unspecified (with or without--project); passing--projectnow automatically generates an index and enables search. See docgen for details.- Removed the
--oldNewlinesswitch. - Removed the
--laxStringsswitch for mutating the internal zero terminator on strings. - Removed the
--oldastswitch. - Removed the
--oldgensymswitch $getType(untyped)is now "untyped" instead of "expr",$getType(typed)is now "typed" instead of "stmt".- Sink inference is now disabled per default and has to enabled explicitly via
--sinkInference:on. Note: For the standard library sink inference remains enabled. This change is most relevant for the--gc:arc,--gc:orcmemory management modes.