Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (26m)  pkgsrc-2024Q1 (9d)  pkgsrc-2023Q4 (56d)  pkgsrc-2023Q2 (88d)  pkgsrc-2023Q3 (168d) 

2024-05-26 20:55:36 UTC Now

2020-10-22 10:54:48 UTC MAIN commitmail json YAML

nim: Update to 1.4.0

Changelog extracted from https://nim-lang.org/blog/2020/10/16/version-140-released.html

Standard library additions and changes

    Added some enhancements to std/jsonutils module.
        Added a possibility to deserialize JSON arrays directly to
        HashSet and OrderedSet types and respectively to serialize
        those types to JSON arrays via jsonutils.fromJson and
        jsonutils.toJson procedures.
        Added a possibility to deserialize JSON null objects to Nim
        option objects and respectively to serialize Nim option object
        to JSON object if isSome or to JSON null object if isNone via
        jsonutils.fromJson and jsonutils.toJson procedures.
        Added a Joptions parameter to jsonutils.fromJson currently
        containing two boolean options allowExtraKeys and
        allowMissingKeys.
            If allowExtraKeys is true Nim窶冱 object to which the JSON
            is parsed is not required to have a field for every JSON
            key.
            If allowMissingKeys is true Nim窶冱 object to which JSON is
            parsed is allowed to have fields without corresponding
            JSON keys.
    Added bindParams, bindParam to db_sqlite for binding parameters
    into a SqlPrepared statement.
    Added tryInsert,insert procs to db_* libs which accept primary key
    column name.
    Added xmltree.newVerbatimText support create style窶冱,script窶冱
    text.
    uri module now implements RFC-2397.
    Added DOM Parser to the dom module for the JavaScript target.
    The default hash for Ordinal has 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:nimIntHash1 recovers it globally.
    deques.peekFirst and deques.peekLast now have var Deque[T] -> var T
    overloads.

    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, net and selectors.

    For asyncdispatch, asyncnet, net and nativesockets, an inheritable
    flag has been added to all procs 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 nimInheritHandles to enable file
    handle inheritance by default. This flag does not affect the
    selectors module due to the differing semantics between operating
    systems.

    asyncdispatch.setInheritable, system.setInheritable and nativesockets.setInheritable are also introduced for setting file handle or socket inheritance. Not all platforms have these procs defined.

    The file descriptors created for internal bookkeeping by
    ioselector_kqueue and ioselector_epoll will no longer be leaked to
    child processes.
    strutils.formatFloat with precision = 0 has been restored to the
    version 1 behaviour that produces a trailing dot,
    e.g. formatFloat(3.14159, precision = 0) is now 3., not 3.

    Added commonPrefixLen to critbits.

    relativePath(rel, abs) and relativePath(abs, rel) used to silently
    give wrong results (see #13222); instead they now use
    getCurrentDir to resolve those cases, and this can now throw in
    edge cases where getCurrentDir throws. relativePath also now works
    for js with -d:nodejs.

    JavaScript and NimScript standard library changes:
    streams.StringStream is now supported in JavaScript, with the
    limitation that any buffer pointers used must be castable to ptr
    string, any incompatible pointer type will not work. The lexbase
    and streams modules 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, htmlparser and
    ropes. Additionally supported for JS is cstrutils.startsWith and
    cstrutils.endsWith, for NimScript: json, parsejson, strtabs and
    unidecode.

    Added streams.readStr and streams.peekStr overloads to accept an
    existing string to modify, which avoids memory allocations,
    similar to streams.readLine (#13857).

    Added high-level asyncnet.sendTo and asyncnet.recvFrom UDP functionality.

    dollars.$ now works for unsigned ints with nim js.

    Improvements to the bitops module, including bitslices,
    non-mutating versions of the original masking functions,
    mask/masked, and varargs support for bitand, bitor, and bitxor.

    sugar.=> and sugar.-> changes: Previously (x, y: int) was
    transformed into (x: auto, y: int), it now becomes (x: int, y:
    int) for 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 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.DateTime are now private, and are accessed
    with getters and deprecated setters.

    The times module now handles the default value for DateTime more
    consistently. Most procs raise an assertion error when given an
    uninitialized DateTime, the exceptions are == and $ (which returns
    "Uninitialized DateTime"). The proc times.isInitialized has been
    added which can be used to check if a DateTime has been
    initialized.

    Fix a bug where calling close on io streams in osproc.startProcess was a noop and led to hangs if a process had both reads from stdin and writes (e.g. to stdout).
    The callback that is passed to system.onThreadDestruction must now be .raises: [].

    The callback that is assigned to system.onUnhandledException must now be .gcsafe.

    osproc.execCmdEx now takes an optional input for stdin, workingDir and env parameters.

    Added a ssl_config module containing lists of secure ciphers as recommended by Mozilla OpSec

    net.newContext now defaults to the list of ciphers targeting 窶廬ntermediate compatibility窶� per Mozilla窶冱 recommendation instead of ALL. 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/jsonutils with hookable jsonTo,toJson,fromJson operations for json serialization/deserialization of custom types was added.
    A new proc heapqueue.find[T](heap: HeapQueue[T], x: T): int to get index of element x was added.
    Added rstgen.rstToLatex a convenience proc for renderRstToOut and initRstGenerator.
    Added os.normalizeExe.
    macros.newLit now preserves named vs unnamed tuples.
    Added random.gauss, that uses the ratio of uniforms method of sampling from a Gaussian distribution.
    Added typetraits.elementType to get the 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.extractDocCommentsAndRunnables helper.
    strformat.fmt and strformat.& support specifier =. fmt"{expr=}" now expands to fmt"expr={expr}".

    Deprecations: instead of os.existsDir use dirExists, instead of os.existsFile use fileExists.
    Added the jsre module, Regular Expressions for the JavaScript target..
    Made maxLines argument Positive in logging.newRollingFileLogger, because negative values will result in a new file being created for each logged line which doesn窶冲 make sense.
    Changed log in logging to use proper log level for JavaScript, e.g. debug uses console.debug, info uses console.info, warn uses console.warn, etc.
    Tables, HashSets, SharedTables and deques don窶冲 require anymore that the passed initial size must be a power of two - this is done internally. Proc rightSize for Tables and HashSets is deprecated, as it is not needed anymore. CountTable.inc takes val: int again not val: Positive; i.e. it can 窶彡ount down窶� again.
    Removed deprecated symbols from macros module, some of which were deprecated already in 0.15.
    Removed sugar.distinctBase, deprecated since 0.19. Use typetraits.distinctBase.

    asyncdispatch.PDispatcher.handles is exported so that an external low-level libraries can access it.
    std/with, sugar.dup now support object field assignment expressions:

    import std/with

    type Foo = object
      x, y: int

    var foo = Foo()
    with foo:
      x = 10
      y = 20

    echo foo

    Proc math.round is no longer deprecated. The advice to use strformat instead cannot be applied to every use case. The limitations and the (lack of) reliability of round are well documented.

    Added getprotobyname to winlean. Added getProtoByname to nativesockets which returns a protocol code from the database that matches the protocol name.

    Added missing attributes and methods to dom.Navigator like deviceMemory, onLine, vibrate(), etc.
    Added strutils.indentation and strutils.dedent which enable indented string literals:

    import strutils
    echo dedent """
      This
        is
          cool!
      """

    Added initUri(isIpv6: bool) to uri module, now uri supports parsing ipv6 hostname.

    Added readLines(p: Process) to osproc.
    Added the below toX procs for collections. The usage is similar to procs such as sets.toHashSet and tables.toTable. Previously, it was necessary to create the respective empty collection and add items manually.
        critbits.toCritBitTree, which creates a CritBitTree from an openArray of items or an openArray of pairs.
        deques.toDeque, which creates a Deque from an openArray.
        heapqueue.toHeapQueue, which creates a HeapQueue from an openArray.
        intsets.toIntSet, which creates an IntSet from an openArray.

    Added progressInterval argument to asyncftpclient.newAsyncFtpClient to control the interval at which progress callbacks are called.
    Added os.copyFileToDir.

Language changes

    The =destroy hook no longer has to reset its target, as the compiler now automatically inserts wasMoved calls where needed.

    The = hook is now called =copy for clarity. The old name = is still available so there is no need to update your code. This change was backported to 1.2 too so you can use the more readable =copy without loss of compatibility.

    In the newruntime it is now allowed to assign to the discriminator field without restrictions as long as the case object doesn窶冲 have a custom destructor. The discriminator value doesn窶冲 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 the 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)

    Refactor 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)

    getImpl on enum type symbols now returns field syms instead of idents. This helps with writing typed macros. The old behavior for backwards compatibility can be restored with --useVersion:1.0.
    The typed AST for proc headers will now have the arguments be syms instead of idents. This helps with writing typed macros. The old behaviour for backwards compatibility can be restored with --useVersion:1.0.
    let statements can now be used without a value if declared with importc/importcpp/importjs/importobjc.
    The keyword from is now usable as an operator.
    Exceptions inheriting from system.Defect are 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 thiscall calling convention as specified by Microsoft, mostly for hooking purposes.
    Deprecated the {.unroll.} pragma, because it was always ignored by the compiler anyway.
    Removed the deprecated strutils.isNilOrWhitespace.
    Removed the deprecated sharedtables.initSharedTable.
    Removed the deprecated asyncdispatch.newAsyncNativeSocket.

    Removed the deprecated dom.releaseEvents and dom.captureEvents.

    Removed sharedlists.initSharedList, was deprecated and produces undefined behaviour.

    There is a new experimental feature called 窶徭trictFuncs窶� which makes the definition of .noSideEffect stricter. See here for more information.

    窶彷or-loop macros窶� (see the manual) are no longer an experimental feature. In other words, you don窶冲 have to write pragma {.experimental: "forLoopMacros".} if you want to use them.

    Added the .noalias pragma. It is mapped to C窶冱 restrict keyword for the increased performance this keyword can enable.
    items no longer compiles with enums with holes as its behavior was error prone, see #14004.

    system.deepcopy has to be enabled explicitly for --gc:arc and --gc:orc via --deepcopy:on.
    Added the std/effecttraits module for introspection of the inferred effects. We hope this enables async macros that are precise about the possible exceptions that can be raised.
    The pragma blocks {.gcsafe.}: ... and {.noSideEffect.}: ... can now also be written as {.cast(gcsafe).}: ... and {.cast(noSideEffect).}: .... This is the new preferred way of writing these, emphasizing their unsafe nature.

Compiler changes
    Specific warnings can now be turned into errors via --warningAsError[X]:on|off.
    The define and undef pragmas have been de-deprecated.
    New command: nim r main.nim [args...] which compiles and runs main.nim, and implies --usenimcache so that the output is saved to $nimcache/main$exeExt, using the same logic as nim c -r to avoid recompilations when sources don窶冲 change. 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:processing is 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 main and nim rst2html -r main now call openDefaultBrowser.
    Added the new hint --hint:msgOrigin will show where a compiler msg (hint|warning|error) was generated; this helps in particular when it窶冱 non obvious where it came from either because multiple locations generate the same message, or because the message involves runtime formatting.
    Added the new flag --backend:js|c|cpp|objc (or -b:js etc), to change the backend; can be used with any command (e.g. nim r, doc, check etc); safe to re-assign.
    Added the new flag --doccmd:cmd to pass additional flags for runnableExamples, e.g.: --doccmd:-d:foo --threads use --doccmd:skip to skip runnableExamples and rst test snippets.
    Added the new flag --usenimcache to output binary files to nimcache.
    runnableExamples "-b:cpp -r:off": code is now supported, allowing to override how an example is compiled and run, for example to change the backend.
    nim doc now outputs under $projectPath/htmldocs when --outdir is unspecified (with or without --project); passing --project now automatically generates an index and enables search. See docgen for details.
    Removed the --oldNewlines switch.
    Removed the --laxStrings switch for mutating the internal zero terminator on strings.
    Removed the --oldast switch.
    Removed the --oldgensym switch.
    $getType(untyped) is now 窶忖ntyped窶� instead of 窶彳xpr窶�, $getType(typed) is now 窶徼yped窶� instead of 窶徭tmt窶�.
    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:orc memory management modes.

Tool changes
    nimsuggest now returns both the forward declaration and the implementation location upon a def query. Previously the behavior was to return the forward declaration only.

Bugfixes
    Fixed 窶徨epr() not available for uint{,8,16,32,64} under 窶堵c:arc窶� (#13872)
    Fixed 窶廚ritical: 1 completed Future, multiple await: Only 1 await will be awakened (the last one)窶� (#13889)
    Fixed 窶彡rash on openarray interator with argument in stmtListExpr窶� (#13739)
    Fixed 窶彜ome compilers on Windows don窶冲 work窶� (#13910)
    Fixed 窶徂ttpclient hangs if it recieves an HTTP 204 (No Content)窶� (#13894)
    Fixed 窶懌�彭istinct uint64窶� type corruption on 32-bit, when using {.borrow.} operators窶� (#13902)
    Fixed 窶彝egression: impossible to use typed pragmas with proc types窶� (#13909)
    Fixed 窶徙penssl wrapper corrupts stack on OpenSSL 1.1.1f + Android窶� (#13903)
    Fixed 窶廚 compile error with 窶堵c:arc on version 1.2.0 窶忖nknown type name 窶狼GenericSeq窶吮�� (#13863)
    Fixed 窶忻ar return type for proc doesn窶冲 work at c++ backend窶� (#13848)
    Fixed 窶弋imeFormat() should raise an error but craches at compilation time窶� (#12864)
    Fixed 窶徃c:arc cannot fully support threadpool with FlowVar窶� (#13781)
    Fixed 窶徭imple 窶�var openarray[char]窶� assignment crash when the openarray source is a local string and using gc:arc窶� (#14003)
    Fixed 窶廚ant use expressions with when in type sections.窶� (#14007)
    Fixed 窶彷or a in MyEnum gives incorrect results with enum with holes窶� (#14001)
    Fixed 窶弋rivial crash窶� (#12741)
    Fixed 窶廢num with holes cannot be used as Table index窶� (#12834)
    Fixed 窶徭pawn proc that uses typedesc crashes the compiler窶� (#14014)
    Fixed 窶廛ocs Search Results box styling is not Dark Mode Friendly窶� (#13972)
    Fixed 窶懌�堵c:arc -d:useSysAssert undeclared identifier cstderr with newSeq窶� (#14038)
    Fixed 窶彿ssues in the manual窶� (#12486)
    Fixed 窶廣nnoying warning: inherit from a more precise exception type like ValueError, IOError or OSError [InheritFromException]窶� (#14052)
    Fixed 窶徨elativePath(窶彷oo窶�, 窶�/窶�) and relativePath(窶�/窶�, 窶彷oo窶�) is wrong窶� (#13222)
    Fixed 窶彈regression] parseEnum does not work anymore for enums with holes窶� (#14030)
    Fixed 窶廢xception types in the stdlib should inherit from CatchableError or Defect, not Exception窶� (#10288)
    Fixed 窶廴ake debugSend and debugRecv procs public in smtp.nim窶� (#12189)
    Fixed 窶忸mltree need add raw text, when add style element窶� (#14064)
    Fixed 窶徨aises requirement does not propagate to derived methods窶� (#8481)
    Fixed 窶徼ests/stdlib/tgetaddrinfo.nim fails on NetBSD窶� (#14091)
    Fixed 窶徼ests/niminaction/Chapter8/sdl/sdl_test.nim fails on NetBSD窶� (#14088)
    Fixed 窶廬ncorrect escape sequence for example in jsffi library documentation窶� (#14110)
    Fixed 窶廩CR: Can not link exported const, in external library窶� (#13915)
    Fixed 窶廚annot import std/unidecode窶� (#14112)
    Fixed 窶徇acOS: dsymutil should not be called on static libraries窶� (#14132)
    Fixed 窶從im jsondoc -o:doc.json filename.nim fails when sequences without a type are used窶� (#14066)
    Fixed 窶彗lgorithm.sortedByIt template corrupts tuple input under 窶堵c:arc窶� (#14079)
    Fixed 窶廬nvalid C code with lvalue conversion窶� (#14160)
    Fixed 窶徭trformat: doc example fails窶� (#14054)
    Fixed 窶廸im doc fail to run for nim 1.2.0 (nim 1.0.4 is ok)窶� (#13986)
    Fixed 窶廢xception when converting csize to clong窶� (#13698)
    Fixed 窶彈Documentation] overloading using named arguments works but is not documented窶� (#11932)
    Fixed 窶彿mport os + use of existsDir/dirExists/existsFile/fileExists/findExe in config.nims causes 窶彗mbiguous call窶� error窶� (#14142)
    Fixed 窶彿mport os + use of existsDir/dirExists/existsFile/fileExists/findExe in config.nims causes 窶彗mbiguous call窶� error窶� (#14142)
    Fixed 窶徨unnableExamples doc gen crashes compiler with except Exception as e syntax窶� (#14177)
    Fixed 窶彈ARC] Segfault with cyclic references (?)窶� (#14159)
    Fixed 窶彜emcheck regression when accessing a static parameter in proc窶� (#14136)
    Fixed 窶彿terator walkDir doesn窶冲 work with -d:useWinAnsi窶� (#14201)
    Fixed 窶彡as is wrong for tcc窶� (#14151)
    Fixed 窶徘roc execCmdEx doesn窶冲 work with -d:useWinAnsi窶� (#14203)
    Fixed 窶弑se -d:nimEmulateOverflowChecks by default?窶� (#14209)
    Fixed 窶廾ld sequences with destructor objects bug窶� (#14217)
    Fixed 窶彈ARC] ICE when changing the discriminant of a return value窶� (#14244)
    Fixed 窶彈ARC] ICE with static objects窶� (#14236)
    Fixed 窶彈ARC] 窶彿nternal error: environment misses: a窶� in a finalizer窶� (#14243)
    Fixed 窶彈ARC] compile failure using repr with object containing ref seq[string]窶� (#14270)
    Fixed 窶彈ARC] implicit move on last use happening on non-last use窶� (#14269)
    Fixed 窶彈ARC] Compiler crash with a recursive non-ref object variant窶� (#14294)
    Fixed 窶徂tmlparser.parseHtml behaves differently using 窶堵c:arc or 窶堵c:orc窶� (#13946)
    Fixed 窶廬nvalid return value of openProcess is NULL rather than INVALID_HANDLE_VALUE(-1) in windows窶� (#14289)
    Fixed 窶廣RC codegen bug with inline iterators窶� (#14219)
    Fixed 窶廝uilding koch on OpenBSD fails unless the Nim directory is in $PATH窶� (#13758)
    Fixed 窶彈gc:arc] case object assignment SIGSEGV: destroy not called for primitive type 窶� (#14312)
    Fixed 窶廚rash when using thread and 窶堵c:arc 窶� (#13881)
    Fixed 窶廨etting 窶弩arning: Cannot prove that 窶腕esult窶� is initialized窶� for an importcpp窶囘 proc with var T return type窶� (#14314)
    Fixed 窶從im cpp -r --gc:arc segfaults on caught AssertionError窶� (#13071)
    Fixed 窶徼ests/async/tasyncawait.nim is recently very flaky窶� (#14320)
    Fixed 窶廛ocumentation nonexistent quitprocs module窶� (#14331)
    Fixed 窶彜IGSEV encountered when creating threads in a loop w/ 窶堵c:arc窶� (#13935)
    Fixed 窶從im-gdb is missing from all released packages窶� (#13104)
    Fixed 窶徭ysAssert error with gc:arc on 3 line program窶� (#13862)
    Fixed 窶彡ompiler error with inline async proc and pragma窶� (#13998)
    Fixed 窶彈ARC] Compiler crash when adding to a seq[ref Object]窶� (#14333)
    Fixed 窶從imvm: sysFatal: unhandled exception: 窶�sons窶� is not accessible using discriminant 窶鰐ind窶� of type 窶狼Node窶� [FieldError]窶� (#14340)
    Fixed 窶彈Regression] karax events are not firing 窶� (#14350)
    Fixed 窶徙dbcsql module has some wrong integer types窶� (#9771)
    Fixed 窶彭b_sqlite needs sqlPrepared窶� (#13559)
    Fixed 窶彈Regression] createThread is not GC-safe窶� (#14370)
    Fixed 窶廝roken example on hot code reloading窶� (#14380)
    Fixed 窶徨unnableExamples block with except on specified error fails with nim doc窶� (#12746)
    Fixed 窶彡ompiler as a library: findNimStdLibCompileTime fails to find system.nim窶� (#12293)
    Fixed 窶�5 bugs with importcpp exceptions窶� (#14369)
    Fixed 窶廛ocs shouldn窶冲 collapse pragmas inside runnableExamples/code blocks窶� (#14174)
    Fixed 窶廝ad codegen/emit for hashes.hiXorLo in some contexts.窶� (#14394)
    Fixed 窶廝oehm GC does not scan thread-local storage窶� (#14364)
    Fixed 窶彝VO not exception safe窶� (#14126)
    Fixed 窶徨unnableExamples that are only compiled窶� (#10731)
    Fixed 窶彷oldr raises IndexError when called on sequence窶� (#14404)
    Fixed 窶徇oveFile does not overwrite destination file窶� (#14057)
    Fixed 窶彭oc2 outputs in current work dir窶� (#6583)
    Fixed 窶彈docgen] proc doc comments silently omitted after 1st runnableExamples窶� (#9227)
    Fixed 窶從im doc --project shows 窶蓮@/窶� instead of 窶�../窶� for relative paths to submodules窶� (#14448)
    Fixed 窶徨e, nre have wrong start semantics窶� (#14284)
    Fixed 窶徨unnableExamples should preserve source code doc comments, strings, and (maybe) formatting窶� (#8871)
    Fixed 窶從im doc .. fails when runnableExamples uses $ [devel] [regression]窶� (#14485)
    Fixed 窶彿tems is 20%~30% slower than iteration via an index窶� (#14421)
    Fixed 窶廣RC: unreliable setLen 窶� (#14495)
    Fixed 窶徑ent is unsafe: after #14447 you can modify variables with 窶彿tems窶� loop for sequences窶� (#14498)
    Fixed 窶忻ar op = fn() wrongly gives warning ObservableStores with object of RootObj type窶� (#14514)
    Fixed 窶廚ompiler assertion窶� (#14562)
    Fixed 窶廚an窶冲 get ord of a value of a Range type in the JS backend 窶� (#14570)
    Fixed 窶徊s: can窶冲 take addr of param (including implicitly via lent)窶� (#14576)
    Fixed 窶悳.noinit.} ignored in for loop -> bad codegen for non-movable types窶� (#14118)
    Fixed 窶徃eneric destructor gives: Error: unresolved generic parameter窶� (#14315)
    Fixed 窶廴emory leak with arc gc窶� (#14568)
    Fixed 窶彳scape analysis broken with lent窶� (#14557)
    Fixed 窶忤rapWords seems to ignore linebreaks when wrapping, leaving breaks in the wrong place窶� (#14579)
    Fixed 窶徑ent gives wrong results with -d:release窶� (#14578)
    Fixed 窶廸ested await expressions regression: await a(await expandValue()) doesnt compile窶� (#14279)
    Fixed 窶忤indows CI docs fails with strange errors窶� (#14545)
    Fixed 窶彈CI] tests/async/tioselectors.nim flaky test for freebsd + OSX CI窶� (#13166)
    Fixed 窶徭eq.setLen sometimes doesn窶冲 zero memory窶� (#14655)
    Fixed 窶從im dump is roughly 100x slower in 1.3 versus 1.2窶� (#14179)
    Fixed 窶彝egression: devel docgen cannot generate document for method窶� (#14691)
    Fixed 窶徨ecently flaky tests/async/t7758.nim窶� (#14685)
    Fixed 窶廝ind no longer working in generic procs.窶� (#11811)
    Fixed 窶弋he pegs module doesn窶冲 work with generics!窶� (#14718)
    Fixed 窶廛efer is not properly working for asynchronous procedures.窶� (#13899)
    Fixed 窶廣dd an ARC test with threads in a loop窶� (#14690)
    Fixed 窶彈goto exceptions] {.noReturn.} pragma is not detected in a case expression窶� (#14458)
    Fixed 窶彈exceptions:goto] C compiler error with dynlib pragma calling a proc窶� (#14240)
    Fixed 窶廚annot borrow var float64 in infix assignment窶� (#14440)
    Fixed 窶徑ib/pure/memfiles.nim: compilation error with 窶鍍aintMode:on窶� (#14760)
    Fixed 窶從ewWideCString allocates a multiple of the memory needed窶� (#14750)
    Fixed 窶廸im source archive install: 窶亙nstall.sh窶� fails with error: cp: cannot stat 窶話in/nim-gdb窶�: No such file or directory窶� (#14748)
    Fixed 窶從im cpp -r tests/exception/t9657 hangs窶� (#10343)
    Fixed 窶廛etect tool fails on FreeBSD窶� (#14715)
    Fixed 窶彡ompiler crash: findUnresolvedStatic 窶� (#14802)
    Fixed 窶徭eq namespace (?) regression窶� (#4796)
    Fixed 窶弃ossible out of bounds string access in std/colors parseColor and isColor窶� (#14839)
    Fixed 窶彡ompile error on latest devel with orc and ssl窶� (#14647)
    Fixed 窶彈minor] $ wrong for type tuple窶� (#13432)
    Fixed 窶廛ocumentation missing on devel asyncftpclient窶� (#14846)
    Fixed 窶從impretty is confused with a trailing comma in enum definition窶� (#14401)
    Fixed 窶廾utput arguments get ignored when compiling with 窶殿pp:staticlib窶� (#12745)
    Fixed 窶彈ARC] destructive move destroys the object too early窶� (#14396)
    Fixed 窶徂ighlite.getNextToken() crashes if the buffer string is 窶彳cho 窶�"窶昶�� (#14830)
    Fixed 窶廴emory corruption with 窶堵c:arc with a seq of objects with an empty body.窶� (#14472)
    Fixed 窶彜tropped identifiers don窶冲 work as field names in tuple literals窶� (#14911)
    Fixed 窶弃lease revert my commit窶� (#14930)
    Fixed 窶彈ARC] C compiler error with inline iterators and imports窶� (#14864)
    Fixed 窶廣syncHttpClient segfaults with gc:orc, possibly memory corruption窶� (#14402)
    Fixed 窶彈ARC] Template with a block evaluating to a GC窶囘 value results in a compiler crash窶� (#14899)
    Fixed 窶彈ARC] Weird issue with if expressions and templates窶� (#14900)
    Fixed 窶忸mlparser does not compile on devel窶� (#14805)
    Fixed 窶徨eturning lent T from a var T param gives codegen errors or SIGSEGV窶� (#14878)
    Fixed 窶彈ARC] Weird issue with if expressions and templates窶� (#14900)
    Fixed 窶徼hreads:on + gc:orc + unittest = C compiler errors窶� (#14865)
    Fixed 窶徇items, mpairs doesn窶冲 work at compile time anymore窶� (#12129)
    Fixed 窶徭trange result from executing code in const expression窶� (#10465)
    Fixed 窶彜ame warning printed 3 times窶� (#11009)
    Fixed 窶徼ype alias for generic typeclass doesn窶冲 work窶� (#4668)
    Fixed 窶彳xceptions:goto Bug devel codegen lvalue NIM_FALSE=NIM_FALSE窶� (#14925)
    Fixed 窶徼he 窶砥seVersion:1.0 no longer works in devel窶� (#14912)
    Fixed 窶徼emplate declaration of iterator doesn窶冲 compile窶� (#4722)
    Fixed 窶廚ompiler crash on type inheritance with static generic parameter and equality check窶� (#12571)
    Fixed 窶廸im crashes while handling a cast in async circumstances.窶� (#13815)
    Fixed 窶彈ARC] Internal compiler error when calling an iterator from an inline proc 窶� (#14383)
    Fixed 窶懌�廚annot instantiate窶� error when template uses generic type窶� (#5926)
    Fixed 窶廛ifferent raises behaviour for newTerminal between Linux and Windows窶� (#12759)
    Fixed 窶廢xpand on a type (that defines a proc type) in error message 窶� (#6608)
    Fixed 窶忖nittest require quits program with an exit code of 0窶� (#14475)
    Fixed 窶彝ange type: Generics vs concrete type, semcheck difference.窶� (#8426)
    Fixed 窶彈Macro] Type mismatch when parameter name is the same as a field窶� (#13253)
    Fixed 窶廨eneric instantiation failure when converting a sequence of circular generic types to strings窶� (#10396)
    Fixed 窶彿nitOptParser ignores argument after value option with empty value.窶� (#13086)
    Fixed 窶彈ARC] proc with both explicit and implicit return results in a C compiler error窶� (#14985)
    Fixed 窶廣lias type forgets implicit generic params depending on order窶� (#14990)
    Fixed 窶彈ARC] sequtils.insert has different behaviour between ARC/refc窶� (#14994)
    Fixed 窶弋he documentation for 窶徂ot code reloading窶� references a non-existent npm package窶� (#13621)
    Fixed 窶彳xistsDir deprecated but breaking dir undeclared窶� (#15006)
    Fixed 窶忖ri.decodeUrl crashes on incorrectly formatted input窶� (#14082)
    Fixed 窶徼estament incorrectly reports time for tests, leading to wrong conclusions窶� (#14822)
    Fixed 窶廚alling peekChar with Stream returned from osproc.outputStream generate runtime error窶� (#14906)
    Fixed 窶徑ocalPassC pragma should come after other flags窶� (#14194)
    Fixed 窶懌�廚ould not load窶� dynamic library at runtime because of hidden dependency窶� (#2408)
    Fixed 窶懌�堵c:arc generate invalid code for {.global.} (ツォnimErr_ツサ in NIM_UNLIKELY)窶� (#14480)
    Fixed 窶弑sing ^ from stdlib/math along with converters gives a match for types that aren窶冲 SomeNumber窶� (#15033)
    Fixed 窶彈ARC] Weird exception behaviour from doAssertRaises窶� (#15026)
    Fixed 窶彈ARC] Compiler crash declaring a finalizer proc directly in 窶蕨ew窶吮�� (#15044)
    Fixed 窶彈ARC] C compiler error when creating a var of a const seq窶� (#15036)
    Fixed 窶彡ode with named arguments in proc of winim/com can not been compiled窶� (#15056)
    Fixed 窶徊avascript backend produces javascript code with syntax error in object syntax窶� (#14534)
    Fixed 窶懌�堵c:arc should be ignored in JS mode.窶� (#14684)
    Fixed 窶彗rc: C compilation error with imported global code using a closure iterator窶� (#12990)
    Fixed 窶彈ARC] Crash when modifying a string with mitems iterator窶� (#15052)
    Fixed 窶彈ARC] SIGSEGV when calling a closure as a tuple field in a seq窶� (#15038)
    Fixed 窶徘ass varargs[seq[T]] to iterator give empty seq 窶� (#12576)
    Fixed 窶廚ompiler crashes when using string as object variant selector with else branch窶� (#14189)
    Fixed 窶廱S compiler error related to implicit return and return var type窶� (#11354)
    Fixed 窶從kRecWhen causes internalAssert in semConstructFields窶� (#14698)
    Fixed 窶廴emory leaks with async (closure iterators?) under ORC窶� (#15076)
    Fixed 窶徭trutil.insertSep() fails on negative numbers窶� (#11352)
    Fixed 窶廚onstructing a uint64 range on a 32-bit machine leads to incorrect codegen窶� (#14616)
    Fixed 窶徂eapqueue pushpop() proc doesn窶冲 compile窶� (#14139)
    Fixed 窶彈ARC] SIGSEGV when trying to swap in a literal/const string窶� (#15112)
    Fixed 窶廛efer and 窶堵c:arc窶� (#15071)
    Fixed 窶彿nternal error: compiler/semobjconstr.nim(324, 20) example窶� (#15111)
    Fixed 窶彈ARC] Sequence 窶彭isappears窶� with a table inside of a table with an object variant窶� (#15122)
    Fixed 窶彈ARC] SIGSEGV with tuple assignment caused by cursor inference窶� (#15130)
    Fixed 窶廬ssue with 窶堵c:arc at compile time窶� (#15129)
    Fixed 窶弩riting an empty string to an AsyncFile raises an IndexDefect窶� (#15148)
    Fixed 窶廚ompiler is confused about call convention of function with nested closure窶� (#5688)
    Fixed 窶廸il check on each field fails in generic function窶� (#15101)
    Fixed 窶悳.nimcall.} convention won窶冲 avoid the creation of closures窶� (#8473)
    Fixed 窶徭mtp.nim(161, 40) Error: type mismatch: got <typeof(nil)> but expected 窶牢slContext = void窶吮�� (#15177)
    Fixed 窶彈strscans] scanf doesn窶冲 match a single character with $+ if it窶冱 the end of the string窶� (#15064)
    Fixed 窶廚rash and incorrect return values when using readPasswordFromStdin on Windows.窶� (#15207)
    Fixed 窶弃ossible capture error with fieldPairs and genericParams窶� (#15221)
    Fixed 窶弋he StmtList processing of template parameters can lead to unexpected errors窶� (#5691)
    Fixed 窶彈ARC] C compiler error when passing a var openArray to a sink openArray窶� (#15035)
    Fixed 窶廬nconsistent unsigned -> signed RangeDefect usage across integer sizes窶� (#15210)
    Fixed 窶徼oHex results in RangeDefect exception when used with large uint64窶� (#15257)
    Fixed 窶廣rc sink arg crash窶� (#15238)
    Fixed 窶彜QL escape in db_mysql is not enough窶� (#15219)
    Fixed 窶廴ixing 窶腕eturn窶� with expressions is allowed in 1.2窶� (#15280)
    Fixed 窶徙s.getFileInfo() causes ICE with 窶堵c:arc on Windows窶� (#15286)
    Fixed 窶彈ARC] Sequence 窶彭isappears窶� with a table inside of a table with an object variant窶� (#15122)
    Fixed 窶廛ocumentation regression jsre module missing窶� (#15183)
    Fixed 窶廚ountTable.smallest/largest() on empty table either asserts or gives bogus answer窶� (#15021)
    Fixed 窶彈Regression] Parser regression窶� (#15305)
    Fixed 窶彈ARC] SIGSEGV with tuple unpacking caused by cursor inference窶� (#15147)
    Fixed 窶廰wIP/FreeRTOS compile error - missing SIGPIPE and more 窶� (#15302)
    Fixed 窶廴emory leaks with async (closure iterators?) under ORC窶� (#15076)
    Fixed 窶廝ug compiling with 窶堵c:arg or 窶堵c:orc窶� (#15325)
    Fixed 窶徇emory corruption in tmarshall.nim窶� (#9754)
    Fixed 窶徼yped macros break generic proc definitions窶� (#15326)
    Fixed 窶從im doc2 ignores 窶電ocSeeSrcUrl parameter窶� (#6071)
    Fixed 窶弋he decodeData Iterator from cgi module crash窶� (#15369)
    Fixed 窶忿| iterator generates invalid code when compiling with 窶電ebugger:native窶� (#9710)
    Fixed 窶弩rong number of variables窶� (#15360)
    Fixed 窶廚oercions with distinct types should traverse pointer modifiers transparently.窶� (#7165)
    Fixed 窶廢rror with distinct generic TableRef窶� (#6060)
    Fixed 窶彜upport images in nim docgen窶� (#6430)
    Fixed 窶彝egression. Double sem check for procs.窶� (#15389)
    Fixed 窶忖ri.nim url with literal ipv6 address is printed wrong, and cannot parsed again窶� (#15333)
    Fixed 窶彈ARC] Object variant gets corrupted with cursor inference窶� (#15361)
    Fixed 窶從im doc .. compiler crash (regression 0.19.6 => 1.0)窶� (#14474)
    Fixed 窶彡annot borrow result; what it borrows from is potentially mutated窶� (#15403)
    Fixed 窶徇emory corruption for seq.add(seq) with gc:arc and d:useMalloc 窶� (#14983)
    Fixed 窶廛ocGen HTML output appears improperly when encountering text immediately after/before inline monospace; in some cases won窶冲 compile窶� (#11537)
    Fixed 窶廛eepcopy in arc crashes窶� (#15405)
    Fixed 窶徘op pragma takes invalid input窶� (#15430)
    Fixed 窶徼ests/stdlib/tgetprotobyname fails on NetBSD窶� (#15452)
    Fixed 窶彭efer doesnt work with block, break and await窶� (#15243)
    Fixed 窶徼ests/stdlib/tssl failing on NetBSD窶� (#15493)
    Fixed 窶徭trictFuncs doesn窶冲 seem to catch simple ref mutation窶� (#15508)
    Fixed 窶彜izeof of case object is incorrect. Showstopper窶� (#15516)
    Fixed 窶彈ARC] Internal error when trying to use a parallel for loop窶� (#15512)
    Fixed 窶彈ARC] Type-bound assign op is not being generated窶� (#15510)
    Fixed 窶彈ARC] Crash when adding openArray proc argument to a local seq窶� (#15511)
    Fixed 窶弖M: const case object gets some fields zeroed out at runtime窶� (#13081)
    Fixed 窶徨egression(1.2.6 => devel): VM: const case object field access gives: 窶�sons窶� is not accessible窶� (#15532)
    Fixed 窶廚sources: huge size increase (x2.3) in 0.20窶� (#12027)
    Fixed 窶廾ut of date error message for GC options窶� (#15547)
    Fixed 窶彭bQuote additional escape regression窶� (#15560)

(nikita)