Next | Query returned 39 messages, browsing 21 to 30 | Previous

History of commit frequency

CVS Commit History:


   2020-10-22 12:54:48 by Nikita | Files touched by this commit (3) | Package updated
Log message:
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’s object to which the JSON
            is parsed is not required to have a field for every JSON
            key.
            If allowMissingKeys is true Nim’s 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’s,script’s
    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 “Intermediate \ 
compatibility” per Mozilla’s 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’t 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’t 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 “count \ 
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’t have a 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 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 “strictFuncs” which makes the \ 
definition of .noSideEffect stricter. See here 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.

    Added the .noalias pragma. It is mapped to C’s 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’t \ 
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’s 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 “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: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 “repr() not available for uint{,8,16,32,64} under –gc:arc” (#13872)
    Fixed “Critical: 1 completed Future, multiple await: Only 1 await will be \ 
awakened (the last one)” (#13889)
    Fixed “crash on openarray interator with argument in stmtListExpr” (#13739)
    Fixed “Some compilers on Windows don’t work” (#13910)
    Fixed “httpclient hangs if it recieves an HTTP 204 (No Content)” (#13894)
    Fixed ““distinct uint64” type corruption on 32-bit, when using \ 
{.borrow.} operators” (#13902)
    Fixed “Regression: impossible to use typed pragmas with proc types” (#13909)
    Fixed “openssl wrapper corrupts stack on OpenSSL 1.1.1f + Android” (#13903)
    Fixed “C compile error with –gc:arc on version 1.2.0 “unknown type \ 
name ‘TGenericSeq’” (#13863)
    Fixed “var return type for proc doesn’t work at c++ backend” (#13848)
    Fixed “TimeFormat() should raise an error but craches at compilation \ 
time” (#12864)
    Fixed “gc:arc cannot fully support threadpool with FlowVar” (#13781)
    Fixed “simple ‘var openarray[char]’ assignment crash when the \ 
openarray source is a local string and using gc:arc” (#14003)
    Fixed “Cant use expressions with when in type sections.” (#14007)
    Fixed “for a in MyEnum gives incorrect results with enum with holes” (#14001)
    Fixed “Trivial crash” (#12741)
    Fixed “Enum with holes cannot be used as Table index” (#12834)
    Fixed “spawn proc that uses typedesc crashes the compiler” (#14014)
    Fixed “Docs Search Results box styling is not Dark Mode Friendly” (#13972)
    Fixed “–gc:arc -d:useSysAssert undeclared identifier cstderr with \ 
newSeq” (#14038)
    Fixed “issues in the manual” (#12486)
    Fixed “Annoying warning: inherit from a more precise exception type like \ 
ValueError, IOError or OSError [InheritFromException]” (#14052)
    Fixed “relativePath(“foo”, “/”) and relativePath(“/”, \ 
“foo”) is wrong” (#13222)
    Fixed “[regression] parseEnum does not work anymore for enums with \ 
holes” (#14030)
    Fixed “Exception types in the stdlib should inherit from CatchableError or \ 
Defect, not Exception” (#10288)
    Fixed “Make debugSend and debugRecv procs public in smtp.nim” (#12189)
    Fixed “xmltree need add raw text, when add style element” (#14064)
    Fixed “raises requirement does not propagate to derived methods” (#8481)
    Fixed “tests/stdlib/tgetaddrinfo.nim fails on NetBSD” (#14091)
    Fixed “tests/niminaction/Chapter8/sdl/sdl_test.nim fails on NetBSD” (#14088)
    Fixed “Incorrect escape sequence for example in jsffi library \ 
documentation” (#14110)
    Fixed “HCR: Can not link exported const, in external library” (#13915)
    Fixed “Cannot import std/unidecode” (#14112)
    Fixed “macOS: dsymutil should not be called on static libraries” (#14132)
    Fixed “nim jsondoc -o:doc.json filename.nim fails when sequences without a \ 
type are used” (#14066)
    Fixed “algorithm.sortedByIt template corrupts tuple input under \ 
–gc:arc” (#14079)
    Fixed “Invalid C code with lvalue conversion” (#14160)
    Fixed “strformat: doc example fails” (#14054)
    Fixed “Nim doc fail to run for nim 1.2.0 (nim 1.0.4 is ok)” (#13986)
    Fixed “Exception when converting csize to clong” (#13698)
    Fixed “[Documentation] overloading using named arguments works but is not \ 
documented” (#11932)
    Fixed “import os + use of \ 
existsDir/dirExists/existsFile/fileExists/findExe in config.nims causes \ 
“ambiguous call’ error” (#14142)
    Fixed “import os + use of \ 
existsDir/dirExists/existsFile/fileExists/findExe in config.nims causes \ 
“ambiguous call’ error” (#14142)
    Fixed “runnableExamples doc gen crashes compiler with except Exception as \ 
e syntax” (#14177)
    Fixed “[ARC] Segfault with cyclic references (?)” (#14159)
    Fixed “Semcheck regression when accessing a static parameter in proc” \ 
(#14136)
    Fixed “iterator walkDir doesn’t work with -d:useWinAnsi” (#14201)
    Fixed “cas is wrong for tcc” (#14151)
    Fixed “proc execCmdEx doesn’t work with -d:useWinAnsi” (#14203)
    Fixed “Use -d:nimEmulateOverflowChecks by default?” (#14209)
    Fixed “Old 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] “internal 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 “htmlparser.parseHtml behaves differently using –gc:arc or \ 
–gc:orc” (#13946)
    Fixed “Invalid return value of openProcess is NULL rather than \ 
INVALID_HANDLE_VALUE(-1) in windows” (#14289)
    Fixed “ARC codegen bug with inline iterators” (#14219)
    Fixed “Building 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 “Crash when using thread and –gc:arc “ (#13881)
    Fixed “Getting “Warning: Cannot prove that ‘result’ is \ 
initialized” for an importcpp’d proc with var T return type” (#14314)
    Fixed “nim cpp -r --gc:arc segfaults on caught AssertionError” (#13071)
    Fixed “tests/async/tasyncawait.nim is recently very flaky” (#14320)
    Fixed “Documentation nonexistent quitprocs module” (#14331)
    Fixed “SIGSEV encountered when creating threads in a loop w/ –gc:arc” \ 
(#13935)
    Fixed “nim-gdb is missing from all released packages” (#13104)
    Fixed “sysAssert error with gc:arc on 3 line program” (#13862)
    Fixed “compiler error with inline async proc and pragma” (#13998)
    Fixed “[ARC] Compiler crash when adding to a seq[ref Object]” (#14333)
    Fixed “nimvm: sysFatal: unhandled exception: ‘sons’ is not accessible \ 
using discriminant ‘kind’ of type ‘TNode’ [FieldError]” (#14340)
    Fixed “[Regression] karax events are not firing “ (#14350)
    Fixed “odbcsql module has some wrong integer types” (#9771)
    Fixed “db_sqlite needs sqlPrepared” (#13559)
    Fixed “[Regression] createThread is not GC-safe” (#14370)
    Fixed “Broken example on hot code reloading” (#14380)
    Fixed “runnableExamples block with except on specified error fails with \ 
nim doc” (#12746)
    Fixed “compiler as a library: findNimStdLibCompileTime fails to find \ 
system.nim” (#12293)
    Fixed “5 bugs with importcpp exceptions” (#14369)
    Fixed “Docs shouldn’t collapse pragmas inside runnableExamples/code \ 
blocks” (#14174)
    Fixed “Bad codegen/emit for hashes.hiXorLo in some contexts.” (#14394)
    Fixed “Boehm GC does not scan thread-local storage” (#14364)
    Fixed “RVO not exception safe” (#14126)
    Fixed “runnableExamples that are only compiled” (#10731)
    Fixed “foldr raises IndexError when called on sequence” (#14404)
    Fixed “moveFile does not overwrite destination file” (#14057)
    Fixed “doc2 outputs in current work dir” (#6583)
    Fixed “[docgen] proc doc comments silently omitted after 1st \ 
runnableExamples” (#9227)
    Fixed “nim doc --project shows ‘@@/’ instead of ‘../’ for relative \ 
paths to submodules” (#14448)
    Fixed “re, nre have wrong start semantics” (#14284)
    Fixed “runnableExamples should preserve source code doc comments, strings, \ 
and (maybe) formatting” (#8871)
    Fixed “nim doc .. fails when runnableExamples uses $ [devel] \ 
[regression]” (#14485)
    Fixed “items is 20%~30% slower than iteration via an index” (#14421)
    Fixed “ARC: unreliable setLen “ (#14495)
    Fixed “lent is unsafe: after #14447 you can modify variables with \ 
“items” loop for sequences” (#14498)
    Fixed “var op = fn() wrongly gives warning ObservableStores with object of \ 
RootObj type” (#14514)
    Fixed “Compiler assertion” (#14562)
    Fixed “Can’t get ord of a value of a Range type in the JS backend “ \ 
(#14570)
    Fixed “js: can’t take addr of param (including implicitly via lent)” \ 
(#14576)
    Fixed “{.noinit.} ignored in for loop -> bad codegen for non-movable \ 
types” (#14118)
    Fixed “generic destructor gives: Error: unresolved generic parameter” \ 
(#14315)
    Fixed “Memory leak with arc gc” (#14568)
    Fixed “escape analysis broken with lent” (#14557)
    Fixed “wrapWords seems to ignore linebreaks when wrapping, leaving breaks \ 
in the wrong place” (#14579)
    Fixed “lent gives wrong results with -d:release” (#14578)
    Fixed “Nested await expressions regression: await a(await expandValue()) \ 
doesnt compile” (#14279)
    Fixed “windows CI docs fails with strange errors” (#14545)
    Fixed “[CI] tests/async/tioselectors.nim flaky test for freebsd + OSX \ 
CI” (#13166)
    Fixed “seq.setLen sometimes doesn’t zero memory” (#14655)
    Fixed “nim dump is roughly 100x slower in 1.3 versus 1.2” (#14179)
    Fixed “Regression: devel docgen cannot generate document for method” (#14691)
    Fixed “recently flaky tests/async/t7758.nim” (#14685)
    Fixed “Bind no longer working in generic procs.” (#11811)
    Fixed “The pegs module doesn’t work with generics!” (#14718)
    Fixed “Defer is not properly working for asynchronous procedures.” (#13899)
    Fixed “Add 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 “Cannot borrow var float64 in infix assignment” (#14440)
    Fixed “lib/pure/memfiles.nim: compilation error with –taintMode:on” \ 
(#14760)
    Fixed “newWideCString allocates a multiple of the memory needed” (#14750)
    Fixed “Nim source archive install: ‘install.sh’ fails with error: cp: \ 
cannot stat ‘bin/nim-gdb’: No such file or directory” (#14748)
    Fixed “nim cpp -r tests/exception/t9657 hangs” (#10343)
    Fixed “Detect tool fails on FreeBSD” (#14715)
    Fixed “compiler crash: findUnresolvedStatic “ (#14802)
    Fixed “seq namespace (?) regression” (#4796)
    Fixed “Possible out of bounds string access in std/colors parseColor and \ 
isColor” (#14839)
    Fixed “compile error on latest devel with orc and ssl” (#14647)
    Fixed “[minor] $ wrong for type tuple” (#13432)
    Fixed “Documentation missing on devel asyncftpclient” (#14846)
    Fixed “nimpretty is confused with a trailing comma in enum definition” \ 
(#14401)
    Fixed “Output arguments get ignored when compiling with \ 
–app:staticlib” (#12745)
    Fixed “[ARC] destructive move destroys the object too early” (#14396)
    Fixed “highlite.getNextToken() crashes if the buffer string is “echo \ 
“"”” (#14830)
    Fixed “Memory corruption with –gc:arc with a seq of objects with an \ 
empty body.” (#14472)
    Fixed “Stropped identifiers don’t work as field names in tuple \ 
literals” (#14911)
    Fixed “Please revert my commit” (#14930)
    Fixed “[ARC] C compiler error with inline iterators and imports” (#14864)
    Fixed “AsyncHttpClient segfaults with gc:orc, possibly memory \ 
corruption” (#14402)
    Fixed “[ARC] Template with a block evaluating to a GC’d value results in \ 
a compiler crash” (#14899)
    Fixed “[ARC] Weird issue with if expressions and templates” (#14900)
    Fixed “xmlparser does not compile on devel” (#14805)
    Fixed “returning lent T from a var T param gives codegen errors or \ 
SIGSEGV” (#14878)
    Fixed “[ARC] Weird issue with if expressions and templates” (#14900)
    Fixed “threads:on + gc:orc + unittest = C compiler errors” (#14865)
    Fixed “mitems, mpairs doesn’t work at compile time anymore” (#12129)
    Fixed “strange result from executing code in const expression” (#10465)
    Fixed “Same warning printed 3 times” (#11009)
    Fixed “type alias for generic typeclass doesn’t work” (#4668)
    Fixed “exceptions:goto Bug devel codegen lvalue NIM_FALSE=NIM_FALSE” (#14925)
    Fixed “the –useVersion:1.0 no longer works in devel” (#14912)
    Fixed “template declaration of iterator doesn’t compile” (#4722)
    Fixed “Compiler crash on type inheritance with static generic parameter \ 
and equality check” (#12571)
    Fixed “Nim crashes while handling a cast in async circumstances.” (#13815)
    Fixed “[ARC] Internal compiler error when calling an iterator from an \ 
inline proc “ (#14383)
    Fixed ““Cannot instantiate” error when template uses generic type” \ 
(#5926)
    Fixed “Different raises behaviour for newTerminal between Linux and \ 
Windows” (#12759)
    Fixed “Expand on a type (that defines a proc type) in error message “ (#6608)
    Fixed “unittest require quits program with an exit code of 0” (#14475)
    Fixed “Range type: Generics vs concrete type, semcheck difference.” (#8426)
    Fixed “[Macro] Type mismatch when parameter name is the same as a field” \ 
(#13253)
    Fixed “Generic instantiation failure when converting a sequence of \ 
circular generic types to strings” (#10396)
    Fixed “initOptParser 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 “Alias type forgets implicit generic params depending on order” \ 
(#14990)
    Fixed “[ARC] sequtils.insert has different behaviour between ARC/refc” \ 
(#14994)
    Fixed “The documentation for “hot code reloading” references a \ 
non-existent npm package” (#13621)
    Fixed “existsDir deprecated but breaking dir undeclared” (#15006)
    Fixed “uri.decodeUrl crashes on incorrectly formatted input” (#14082)
    Fixed “testament incorrectly reports time for tests, leading to wrong \ 
conclusions” (#14822)
    Fixed “Calling peekChar with Stream returned from osproc.outputStream \ 
generate runtime error” (#14906)
    Fixed “localPassC pragma should come after other flags” (#14194)
    Fixed ““Could not load” dynamic library at runtime because of hidden \ 
dependency” (#2408)
    Fixed “–gc:arc generate invalid code for {.global.} («nimErr_» in \ 
NIM_UNLIKELY)” (#14480)
    Fixed “Using ^ from stdlib/math along with converters gives a match for \ 
types that aren’t SomeNumber” (#15033)
    Fixed “[ARC] Weird exception behaviour from doAssertRaises” (#15026)
    Fixed “[ARC] Compiler crash declaring a finalizer proc directly in \ 
‘new’” (#15044)
    Fixed “[ARC] C compiler error when creating a var of a const seq” (#15036)
    Fixed “code with named arguments in proc of winim/com can not been \ 
compiled” (#15056)
    Fixed “javascript backend produces javascript code with syntax error in \ 
object syntax” (#14534)
    Fixed “–gc:arc should be ignored in JS mode.” (#14684)
    Fixed “arc: 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 “pass varargs[seq[T]] to iterator give empty seq “ (#12576)
    Fixed “Compiler crashes when using string as object variant selector with \ 
else branch” (#14189)
    Fixed “JS compiler error related to implicit return and return var type” \ 
(#11354)
    Fixed “nkRecWhen causes internalAssert in semConstructFields” (#14698)
    Fixed “Memory leaks with async (closure iterators?) under ORC” (#15076)
    Fixed “strutil.insertSep() fails on negative numbers” (#11352)
    Fixed “Constructing a uint64 range on a 32-bit machine leads to incorrect \ 
codegen” (#14616)
    Fixed “heapqueue pushpop() proc doesn’t compile” (#14139)
    Fixed “[ARC] SIGSEGV when trying to swap in a literal/const string” (#15112)
    Fixed “Defer and –gc:arc” (#15071)
    Fixed “internal error: compiler/semobjconstr.nim(324, 20) example” (#15111)
    Fixed “[ARC] Sequence “disappears” with a table inside of a table with \ 
an object variant” (#15122)
    Fixed “[ARC] SIGSEGV with tuple assignment caused by cursor inference” \ 
(#15130)
    Fixed “Issue with –gc:arc at compile time” (#15129)
    Fixed “Writing an empty string to an AsyncFile raises an IndexDefect” \ 
(#15148)
    Fixed “Compiler is confused about call convention of function with nested \ 
closure” (#5688)
    Fixed “Nil check on each field fails in generic function” (#15101)
    Fixed “{.nimcall.} convention won’t avoid the creation of closures” (#8473)
    Fixed “smtp.nim(161, 40) Error: type mismatch: got <typeof(nil)> but \ 
expected ‘SslContext = void’” (#15177)
    Fixed “[strscans] scanf doesn’t match a single character with $+ if \ 
it’s the end of the string” (#15064)
    Fixed “Crash and incorrect return values when using readPasswordFromStdin \ 
on Windows.” (#15207)
    Fixed “Possible capture error with fieldPairs and genericParams” (#15221)
    Fixed “The 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 “Inconsistent unsigned -> signed RangeDefect usage across integer \ 
sizes” (#15210)
    Fixed “toHex results in RangeDefect exception when used with large \ 
uint64” (#15257)
    Fixed “Arc sink arg crash” (#15238)
    Fixed “SQL escape in db_mysql is not enough” (#15219)
    Fixed “Mixing ‘return’ with expressions is allowed in 1.2” (#15280)
    Fixed “os.getFileInfo() causes ICE with –gc:arc on Windows” (#15286)
    Fixed “[ARC] Sequence “disappears” with a table inside of a table with \ 
an object variant” (#15122)
    Fixed “Documentation regression jsre module missing” (#15183)
    Fixed “CountTable.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 “LwIP/FreeRTOS compile error - missing SIGPIPE and more “ (#15302)
    Fixed “Memory leaks with async (closure iterators?) under ORC” (#15076)
    Fixed “Bug compiling with –gc:arg or –gc:orc” (#15325)
    Fixed “memory corruption in tmarshall.nim” (#9754)
    Fixed “typed macros break generic proc definitions” (#15326)
    Fixed “nim doc2 ignores –docSeeSrcUrl parameter” (#6071)
    Fixed “The decodeData Iterator from cgi module crash” (#15369)
    Fixed “|| iterator generates invalid code when compiling with \ 
–debugger:native” (#9710)
    Fixed “Wrong number of variables” (#15360)
    Fixed “Coercions with distinct types should traverse pointer modifiers \ 
transparently.” (#7165)
    Fixed “Error with distinct generic TableRef” (#6060)
    Fixed “Support images in nim docgen” (#6430)
    Fixed “Regression. Double sem check for procs.” (#15389)
    Fixed “uri.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 “nim doc .. compiler crash (regression 0.19.6 => 1.0)” (#14474)
    Fixed “cannot borrow result; what it borrows from is potentially \ 
mutated” (#15403)
    Fixed “memory corruption for seq.add(seq) with gc:arc and d:useMalloc “ \ 
(#14983)
    Fixed “DocGen HTML output appears improperly when encountering text \ 
immediately after/before inline monospace; in some cases won’t compile” \ 
(#11537)
    Fixed “Deepcopy in arc crashes” (#15405)
    Fixed “pop pragma takes invalid input” (#15430)
    Fixed “tests/stdlib/tgetprotobyname fails on NetBSD” (#15452)
    Fixed “defer doesnt work with block, break and await” (#15243)
    Fixed “tests/stdlib/tssl failing on NetBSD” (#15493)
    Fixed “strictFuncs doesn’t seem to catch simple ref mutation” (#15508)
    Fixed “Sizeof 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 “VM: const case object gets some fields zeroed out at runtime” (#13081)
    Fixed “regression(1.2.6 => devel): VM: const case object field access \ 
gives: ‘sons’ is not accessible” (#15532)
    Fixed “Csources: huge size increase (x2.3) in 0.20” (#12027)
    Fixed “Out of date error message for GC options” (#15547)
    Fixed “dbQuote additional escape regression” (#15560)
   2020-08-10 00:11:29 by Nikita | Files touched by this commit (4)
Log message:
nim: Update to 1.2.6

Changelog extracted from the unspecific changelog.md on the 1.2.6 tag.
Unable to get a Changelog diff for 1.2.4 and 1.2.6.

# v1.4.0 - yyyy-mm-dd

## Standard library additions and changes

  For `net` and `nativesockets`, an `inheritable` flag has been added to all
  `proc`s 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 transistion 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.

  `system.setInheritable` and `nativesockets.setInheritable` is also introduced
  for setting file handle or socket inheritance. Not all platform have these
  `proc`s 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`.
- `critbits` adds `commonPrefixLen`.

- `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 `pointer`s
  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.

- `paramCount` & `paramStr` are now defined in os.nim instead of \ 
nimscript.nim for nimscript/nimble.
- `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)` 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:
  ```nim
  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 (eg 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](https://wiki.mozilla.org/Security/Server_Side_TLS)

- `net.newContext` now defaults to the list of ciphers targeting
  ["Intermediate \ 
compatibility"](https://wiki.mozilla.org/Security/Server_Side_TLS#Intermediate_compatibility_.28recommended.29)
  per Mozilla's 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` convenience proc for `renderRstToOut` and \ 
`initRstGenerator`
  with `outLatex` output.
- Added `os.normalizeExe`, e.g.: `koch` => `./koch`.
- `macros.newLit` now preserves named vs unnamed tuples; use \ 
`-d:nimHasWorkaround14720`
  to keep old behavior.
- Added `random.gauss`, that uses the ratio of uniforms method of sampling from \ 
a Gaussian distribution.
- Added `typetraits.elementType` to 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.extractDocCommentsAndRunnables` helper

- `strformat.fmt` and `strformat.&` support `= specifier`. \ 
`fmt"{expr=}"` now
  expands to `fmt"expr={expr}"`.
- deprecations: `os.existsDir` => `dirExists`, `os.existsFile` => `fileExists`

- Added `jsre` module, [Regular Expressions for the JavaScript \ 
target.](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions)
- Made `maxLines` argument `Positive` in `logging.newRollingFileLogger`,
  because negative values will result in a new file being created for each logged
  line which doesn't make sense.
- Changed `log` in `logging` to use proper log level on JavaScript target,
  e.g. `debug` uses `console.debug`, `info` uses `console.info`, `warn` uses \ 
`console.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 `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 \ 
"count down" again.
- Removed deprecated symbols from `macros` module, deprecated as far back as `0.15`.

## Language changes
- In newruntime it is now allowed to assign discriminator field without \ 
restrictions as long as case object doesn't have custom destructor. \ 
Discriminator value doesn't have to be a constant either. If you have custom \ 
destructor for case object and you do want to freely assign discriminator \ 
fields, it is recommended to refactor object into 2 objects like this:
  ```nim
  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 = nil
  ```
  Refactor into:
  ```nim
  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
  ```
   2020-06-21 09:43:29 by Ryo ONODERA | Files touched by this commit (5)
Log message:
nim: Update to 1.2.2

Changelog:
Bugfixes

    Fixed “Critical: 1 completed Future, multiple await: Only 1 await will be \ 
awakened (the last one)” (#13889)
    Fixed ““distinct uint64” type corruption on 32-bit, when using \ 
{.borrow.} operators” (#13902)
    Fixed “Regression: impossible to use typed pragmas with proc types” (#13909)
    Fixed “openssl wrapper corrupts stack on OpenSSL 1.1.1f + Android” (#13903)
    Fixed “add nimExe to nim dump” (#13876)
    Fixed “simple ‘var openarray[char]’ assignment crash when the \ 
openarray source is a local string and using gc:arc” (#14003)
    Fixed “Cant use expressions with when in type sections.” (#14007)
    Fixed “Annoying warning: inherit from a more precise exception type like \ 
ValueError, IOError or OSError [InheritFromException]” (#14052)
    Fixed “Incorrect escape sequence for example in jsffi library \ 
documentation” (#14110)
    Fixed “macOS: dsymutil should not be called on static libraries” (#14132)
    Fixed “Fix single match output” (#12920)
    Fixed “algorithm.sortedByIt template corrupts tuple input under \ 
–gc:arc” (#14079)
    Fixed “strformat: doc example fails” (#14054)
    Fixed “Nim doc fail to run for nim 1.2.0 (nim 1.0.4 is ok)” (#13986)
    Fixed “Exception when converting csize to clong” (#13698)
    Fixed “[ARC] Segfault with cyclic references (?)” (#14159)
    Fixed “cas is wrong for tcc” (#14151)
    Fixed “Use -d:nimEmulateOverflowChecks by default?” (#14209)
    Fixed “Invalid return value of openProcess is NULL rather than \ 
INVALID_HANDLE_VALUE(-1) in windows” (#14289)
    Fixed “nim-gdb is missing from all released packages” (#13104)
    Fixed “compiler error with inline async proc and pragma” (#13998)
    Fixed “Linker error with closures” (#209)
    Fixed “ARC codegen bug with inline iterators” (#14219)
    Fixed “[ARC] implicit move on last use happening on non-last use” (#14269)
    Fixed “Boehm GC does not scan thread-local storage” (#14364)
    Fixed “RVO not exception safe” (#14126)
    Fixed “ARC: unreliable setLen “ (#14495)
    Fixed “lent is unsafe: after #14447 you can modify variables with \ 
“items” loop for sequences” (#14498)
    Fixed “moveFile does not overwrite destination file” (#14057)
    Fixed “var op = fn() wrongly gives warning ObservableStores with object of \ 
RootObj type” (#14514)
    Fixed “wrapWords seems to ignore linebreaks when wrapping, leaving breaks \ 
in the wrong place” (#14579)
   2020-06-14 18:15:54 by Nikita | Files touched by this commit (1)
Log message:
lang/nim: maybe fix build in sandbox
   2020-05-14 21:18:23 by Joerg Sonnenberger | Files touched by this commit (1)
Log message:
Honor pkgsrc environment.
   2020-05-11 21:45:54 by Nikita | Files touched by this commit (1)
Log message:
lang/nim: Add bl3 file
   2020-05-11 21:08:59 by Nikita | Files touched by this commit (2)
Log message:
lang/nim: build and install tools and nimble.
   2020-04-05 03:29:15 by Ryo ONODERA | Files touched by this commit (3) | Package updated
Log message:
nim: Update to 1.2.0

Changelog:
# v1.2.0 - 2020-04-02

## Standard library additions and changes

- Added overloaded `strformat.fmt` macro that use specified characters as
  delimiter instead of '{' and '}'.
- Added new procs in `tables.nim`: `OrderedTable.pop`, `CountTable.del`,
  `CountTable.pop`, `Table.pop`.
- Added `strtabs.clear` overload that reuses the existing mode.
- Added `browsers.osOpen` const alias for the operating system specific \ 
*"open"* command.
- Added `sugar.dup` for turning in-place algorithms like `sort` and `shuffle`
  into operations that work on a copy of the data and return the mutated copy,
  like the existing `sorted` does.
- Added `sugar.collect` that does comprehension for seq/set/table collections.
- Added `sugar.capture` for capturing some local loop variables when creating a
  closure. This is an enhanced version of `closureScope`.
- Added `typetraits.tupleLen` to get number of elements of a tuple/type tuple,
  and `typetraits.get` to get the ith element of a type tuple.
- Added `typetraits.genericParams` to return a tuple of generic params from a
  generic instantiation.
- `options` now treats `proc` like other pointer types, meaning `nil` proc variables
  are converted to `None`.
- Added `os.normalizePathEnd` for additional path sanitization.
- Added `times.fromUnixFloat,toUnixFloat`, sub-second resolution versions of
  `fromUnix`,`toUnixFloat`.
- Added `wrapnils` module for chains of field-access and indexing where the LHS
  can be nil. This simplifies code by reducing need for if-else branches around
  intermediate maybe nil values. E.g. `echo ?.n.typ.kind`.
- Added `minIndex`, `maxIndex` and `unzip` to the `sequtils` module.
- Added `os.isRelativeTo` to tell whether a path is relative to another.
- Added `resetOutputFormatters` to `unittest`.
- Added `expectIdent` to the `macros` module.
- Added `os.isValidFilename` that returns `true` if `filename` argument is valid
  for cross-platform use.
- Added `times.isLeapDay`
- `base64` adds URL-Safe Base64, implements RFC-4648 Section-7.
- Added a new module, `std / compilesettings` for querying the compiler about
  diverse configuration settings.
- Added `net.getPeerCertificates` and `asyncnet.getPeerCertificates` for
  retrieving the verified certificate chain of the peer we are connected to
  through an SSL-wrapped `Socket`/`AsyncSocket`.
- Added `browsers.openDefaultBrowser` without URL, implements IETF RFC-6694 \ 
Section-3.
- Added `jsconsole.trace`, `jsconsole.table`, `jsconsole.exception` for \ 
JavaScript target.
- Added `distinctBase` overload for values: `assert 12.MyInt.distinctBase == 12`
- Added new module `std/stackframes`, in particular `setFrameMsg`, which enables
  custom runtime annotation of stackframes, see #13351 for examples.
  Turn on/off via `--stackTraceMsgs:on/off`.
- Added `sequtils.countIt`, allowing for counting items using a predicate.
- Added a `with` macro for easy function chaining that's available everywhere,
  there is no need to concern your APIs with returning the first argument
  to enable "chaining", instead use the dedicated macro `with` that
  was designed for it. For example:

```nim
type
  Foo = object
    col, pos: string

proc setColor(f: var Foo; r, g, b: int) = f.col = $(r, g, b)
proc setPosition(f: var Foo; x, y: float) = f.pos = $(x, y)

var f: Foo
with(f, setColor(2, 3, 4), setPosition(0.0, 1.0))
echo f
```

- `macros.newLit` now works for ref object types.
- `macro pragmas` can now be used in type sections.
- 5 new pragmas were added to Nim in order to make the upcoming tooling more
  convenient to use. Nim compiler checks these pragmas for syntax but otherwise
  ignores them. The pragmas are `requires`, `ensures`, `assume`, `assert`, \ 
`invariant`.
- `system.writeFile` has been overloaded to also support `openarray[byte]`.
- `asyncdispatch.drain` now properly takes into account \ 
`selector.hasPendingOperations`
  and only returns once all pending async operations are guaranteed to have \ 
completed.
- `sequtils.zip` now returns a sequence of anonymous tuples i.e. those tuples
  now do not have fields named "a" and "b".
- `distinctBase` has been moved from `sugar` to `typetraits` and now it is
  implemented as compiler type trait instead of macro. `distinctBase` in sugar
  module is now deprecated.
- `CountTable.mget` has been removed from `tables.nim`. It didn't work, and it
  was an oversight to be included in v1.0.
- `tables.merge(CountTable, CountTable): CountTable` has been removed.
  It didn't work well together with the existing inplace version of the same proc
  (`tables.merge(var CountTable, CountTable)`).
  It was an oversight to be included in v1.0.
- `asyncdispatch.drain` now consistently uses the passed timeout value for all
  iterations of the event loop, and not just the first iteration.
  This is more consistent with the other asyncdispatch APIs, and allows
  `asyncdispatch.drain` to be more efficient.
- `base64.encode` and `base64.decode` were made faster by about 50%.
- `htmlgen` adds [MathML](https://wikipedia.org/wiki/MathML) support
  (ISO 40314).
- `macros.eqIdent` is now invariant to export markers and backtick quotes.
- `htmlgen.html` allows `lang` in the `<html>` tag and common valid attributes.
- `macros.basename` and `basename=` got support for `PragmaExpr`,
  so that an expression like `MyEnum {.pure.}` is handled correctly.
- `httpclient.maxredirects` changed from `int` to `Natural`, because negative values
  serve no purpose whatsoever.
- `httpclient.newHttpClient` and `httpclient.newAsyncHttpClient` added `headers`
  argument to set initial HTTP Headers, instead of a hardcoded empty \ 
`newHttpHeader()`.
- `parseutils.parseUntil` has now a different behaviour if the `until` parameter is
  empty. This was required for intuitive behaviour of the strscans module
  (see bug #13605).
- `strutils.formatFloat` with `precision = 0` has the same behavior in all
  backends, and it is compatible with Python's behavior,
  e.g. `formatFloat(3.14159, precision = 0)` is now `3`, not `3.`.
- `times.parse` now only uses input to compute its result, and not `now`:
  `parse("2020", "YYYY", utc())` is now \ 
`2020-01-01T00:00:00Z` instead of
  `2020-03-02T00:00:00Z` if run on 03-02; it also doesn't crash anymore when
  used on 29th, 30th, 31st of each month.
- `httpcore.==(string, HttpCode)` is now deprecated due to lack of practical
  usage. The `$` operator can be used to obtain the string form of `HttpCode`
  for comparison if desired.
- `std/oswalkdir` was buggy, it's now deprecated and reuses `std/os` procs.
- `net.newContext` now performs SSL Certificate checking on Linux and OSX.
  Define `nimDisableCertificateValidation` to disable it globally.
- `os.walkDir` and `os.walkDirRec` now have new flag, `checkDir` (default: false).
  If it is set to true, it will throw if input dir is invalid instead of a noop
  (which is the default behaviour, as it was before this change),
  `os.walkDirRec` only throws if top-level dir is invalid, but ignores errors for
  subdirs, otherwise it would be impossible to resume iteration.
- The `FD` variant of `selector.unregister` for `ioselector_epoll` and
  `ioselector_select` now properly handle the `Event.User` select event type.
- `joinPath` path normalization when `/` is the first argument works correctly:
  `assert "/" / "/a" == "/a"`. Fixed the edge \ 
case: `assert "" / "" == ""`.
- `xmltree` now adds indentation consistently to child nodes for any number
  of children nodes.
- `os.splitPath()` behavior synchronized with `os.splitFile()` to return \ 
"/"
  as the dir component of `/root_sub_dir` instead of the empty string.
- The deprecated `lc` macro has been removed from `sugar`. It is now replaced \ 
with the
  more powerful `collect` macro.
- `os.relativePath("foo", "foo")` is now `"."`, \ 
not `""`, as `""` means invalid
  path and shouldn't be conflated with `"."`; use \ 
`-d:nimOldRelativePathBehavior`
  to restore the old behavior.
- `os.joinPath(a, b)` now honors trailing slashes in `b` (or `a` if `b` = \ 
"").
- `base64.encode` no longer supports `lineLen` and `newLine`.
  Use `base64.encodeMime` instead.

## Language changes

- An `align` pragma can now be used for variables and object fields, similar
  to the `alignas` declaration modifier in C/C++.
- `=sink` type bound operator is now optional. Compiler can now use combination
  of `=destroy` and `copyMem` to move objects efficiently.
- Unsigned integer operators have been fixed to allow promotion of the first operand.
- Conversions to unsigned integers are unchecked at runtime, imitating earlier Nim
  versions. The documentation was improved to acknowledge this special case.
  See https://github.com/nim-lang/RFCs/issues/175 for more details.
- New syntax for lvalue references: `var b {.byaddr.} = expr` enabled by
  `import std/decls`.
- `var a {.foo.}: MyType = expr` now lowers to `foo(a, MyType, expr)` for
  non-builtin pragmas, enabling things like lvalue references (see `decls.byaddr`).

## Compiler changes

- Generated JS code uses spaces, instead of mixed spaces and tabs.
- The Nim compiler now supports the ``--asm`` command option for easier
  inspection of the produced assembler code.
- The Nim compiler now supports a new pragma called ``.localPassc`` to
  pass specific compiler options to the C(++) backend for the C(++) file
  that was produced from the current Nim module.
- The compiler now inferes "sink parameters". To disable this for a \ 
specific routine,
  annotate it with `.nosinks`. To disable it for a section of code, use
  `{.push sinkInference: off.}`...`{.pop.}`.
- The compiler now supports a new switch `--panics:on` that turns runtime
  errors like `IndexError` or `OverflowError` into fatal errors that **cannot**
  be caught via Nim's `try` statement. `--panics:on` can improve the
  runtime efficiency and code size of your program significantly.
- The compiler now warns about inheriting directly from `system.Exception` as
  this is **very bad** style. You should inherit from `ValueError`, `IOError`,
  `OSError` or from a different specific exception type that inherits from
  `CatchableError` and cannot be confused with a `Defect`.
- The error reporting for Nim's effect system has been improved.
- Implicit conversions for `const` behave correctly now, meaning that code like
  `const SOMECONST = 0.int; procThatTakesInt32(SOMECONST)` will be illegal now.
  Simply write `const SOMECONST = 0` instead.
- The `{.dynlib.}` pragma is now required for exporting symbols when making
  shared objects on POSIX and macOS, which make it consistent with the behavior
  on Windows.
- The compiler is now more strict about type conversions concerning proc
  types: Type conversions cannot be used to hide `.raise` effects or side
  effects, instead a `cast` must be used. With the flag `--useVersion:1.0` the
  old behaviour is emulated.
- The Nim compiler now implements a faster way to detect overflows based
  on GCC's `__builtin_sadd_overflow` family of functions. (Clang also
  supports these). Some versions of GCC lack this feature and unfortunately
  we cannot detect this case reliably. So if you get compilation errors like
  "undefined reference to `__builtin_saddll_overflow`" compile your \ 
programs
  with `-d:nimEmulateOverflowChecks`.

## Tool changes

- Nimpretty doesn't accept negative indentation argument anymore, because it was
  breaking files.

## Bugfixes

- Fixed "`nimgrep --nocolor` is ignored on posix; should be instead: \ 
`--nimgrep --color=[auto]|true|false`"
  ([#7591](https://github.com/nim-lang/Nim/issues/7591))
- Fixed "Runtime index on const array (of converted obj) causes C-compiler \ 
error"
  ([#10514](https://github.com/nim-lang/Nim/issues/10514))
- Fixed "windows x86 with vcc compile error with \ 
"asmNoStackFrame""
  ([#12298](https://github.com/nim-lang/Nim/issues/12298))
- Fixed "[TODO] regression: Error: Locks requires --threads:on option"
  ([#12330](https://github.com/nim-lang/Nim/issues/12330))
- Fixed "Add --cc option to --help or --fullhelp output"
  ([#12010](https://github.com/nim-lang/Nim/issues/12010))
- Fixed "questionable `csize` definition in `system.nim`"
  ([#12187](https://github.com/nim-lang/Nim/issues/12187))
- Fixed "os.getAppFilename() returns incorrect results on OpenBSD"
  ([#12389](https://github.com/nim-lang/Nim/issues/12389))
- Fixed "HashSet[uint64] slow insertion depending on values"
  ([#11764](https://github.com/nim-lang/Nim/issues/11764))
- Fixed "Differences between compiling 'classic call syntax' vs 'method \ 
call syntax' ."
  ([#12453](https://github.com/nim-lang/Nim/issues/12453))
- Fixed "c -d:nodejs --> SIGSEGV: Illegal storage access"
  ([#12502](https://github.com/nim-lang/Nim/issues/12502))
- Fixed "Closure iterator crashes on --newruntime due to "dangling \ 
references""
  ([#12443](https://github.com/nim-lang/Nim/issues/12443))
- Fixed "No `=destroy` for elements of closure environments other than for \ 
latest devel --gc:destructors"
  ([#12577](https://github.com/nim-lang/Nim/issues/12577))
- Fixed "strutils:formatBiggestFloat() gives different results in JS mode"
  ([#8242](https://github.com/nim-lang/Nim/issues/8242))
- Fixed "Regression (devel): the new `csize_t` definition isn't \ 
consistently used, nor tested thoroughly..."
  ([#12597](https://github.com/nim-lang/Nim/issues/12597))
- Fixed "tables.take() is defined only for `Table` and missed for other \ 
table containers"
  ([#12519](https://github.com/nim-lang/Nim/issues/12519))
- Fixed "`pthread_key_t` errors on OpenBSD"
  ([#12135](https://github.com/nim-lang/Nim/issues/12135))
- Fixed "newruntime: simple seq pop at ct results in compile error"
  ([#12644](https://github.com/nim-lang/Nim/issues/12644))
- Fixed "[Windows] finish.exe C:\Users\<USERNAME>\.nimble\bin is not \ 
in your PATH environment variable."
  ([#12319](https://github.com/nim-lang/Nim/issues/12319))
- Fixed "Error with strformat + asyncdispatch + const"
  ([#12612](https://github.com/nim-lang/Nim/issues/12612))
- Fixed "MultipartData needs $"
  ([#11863](https://github.com/nim-lang/Nim/issues/11863))
- Fixed "Nim stdlib style issues with --styleCheck:error"
  ([#12687](https://github.com/nim-lang/Nim/issues/12687))
- Fixed "new $nimbleDir path substitution yields unexpected search paths"
  ([#12767](https://github.com/nim-lang/Nim/issues/12767))
- Fixed "Regression: inlined procs now get multiple rounds of destructor \ 
injection"
  ([#12766](https://github.com/nim-lang/Nim/issues/12766))
- Fixed "newruntime: compiler generates defective code"
  ([#12669](https://github.com/nim-lang/Nim/issues/12669))
- Fixed "broken windows modules path handling because of 'os.relativePath' \ 
breaking changes"
  ([#12734](https://github.com/nim-lang/Nim/issues/12734))
- Fixed "for loop tuple syntax not rendered correctly"
  ([#12740](https://github.com/nim-lang/Nim/issues/12740))
- Fixed "Crash when trying to use `type.name[0]`"
  ([#12804](https://github.com/nim-lang/Nim/issues/12804))
- Fixed "Enums should be considered Trivial types in Atomics"
  ([#12812](https://github.com/nim-lang/Nim/issues/12812))
- Fixed "Produce static/const initializations for variables when possible"
  ([#12216](https://github.com/nim-lang/Nim/issues/12216))
- Fixed "Assigning descriminator field leads to internal assert with \ 
--gc:destructors"
  ([#12821](https://github.com/nim-lang/Nim/issues/12821))
- Fixed "nimsuggest `use` command does not return all instances of symbol"
  ([#12832](https://github.com/nim-lang/Nim/issues/12832))
- Fixed "@[] is a problem for --gc:destructors"
  ([#12820](https://github.com/nim-lang/Nim/issues/12820))
- Fixed "Codegen ICE in allPathsAsgnResult"
  ([#12827](https://github.com/nim-lang/Nim/issues/12827))
- Fixed "seq[Object with ref and destructor type] doesn't work in old \ 
runtime"
  ([#12882](https://github.com/nim-lang/Nim/issues/12882))
- Fixed "Destructor not invoked because it is instantiated too late, old \ 
runtime"
  ([#12883](https://github.com/nim-lang/Nim/issues/12883))
- Fixed "The collect macro does not handle if/case correctly"
  ([#12874](https://github.com/nim-lang/Nim/issues/12874))
- Fixed "allow typed/untyped params in magic procs (even if not in stdlib)"
  ([#12911](https://github.com/nim-lang/Nim/issues/12911))
- Fixed "ARC/newruntime memory corruption"
  ([#12899](https://github.com/nim-lang/Nim/issues/12899))
- Fixed "tasyncclosestall.nim still flaky test: Address already in use"
  ([#12919](https://github.com/nim-lang/Nim/issues/12919))
- Fixed "newruntime and computed goto: variables inside the loop are in \ 
generated code uninitialised"
  ([#12785](https://github.com/nim-lang/Nim/issues/12785))
- Fixed "osx: dsymutil needs to be called for debug builds to keep debug \ 
info"
  ([#12735](https://github.com/nim-lang/Nim/issues/12735))
- Fixed "codegen ICE with ref objects, gc:destructors"
  ([#12826](https://github.com/nim-lang/Nim/issues/12826))
- Fixed "mutable iterator cannot yield named tuples"
  ([#12945](https://github.com/nim-lang/Nim/issues/12945))
- Fixed "parsecfg stores "\r\n" line breaks just as \ 
"\n""
  ([#12970](https://github.com/nim-lang/Nim/issues/12970))
- Fixed "db_postgres.getValue issues warning when no rows found"
  ([#12973](https://github.com/nim-lang/Nim/issues/12973))
- Fixed "ARC: Unpacking tuple with seq causes segfault"
  ([#12989](https://github.com/nim-lang/Nim/issues/12989))
- Fixed "ARC/newruntime: strutils.join on seq with only empty strings \ 
causes segfault"
  ([#12965](https://github.com/nim-lang/Nim/issues/12965))
- Fixed "regression (1.0.4): `{.push exportc.}` wrongly affects generic \ 
instantiations, causing codegen errors"
  ([#12985](https://github.com/nim-lang/Nim/issues/12985))
- Fixed "cdt, crash with --gc:arc, works fine with default gc"
  ([#12978](https://github.com/nim-lang/Nim/issues/12978))
- Fixed "ARC: No indexError thrown on out-of-bound seq access, SIGSEGV \ 
instead"
  ([#12961](https://github.com/nim-lang/Nim/issues/12961))
- Fixed "ARC/async: Returning in a try-block results in wrong codegen"
  ([#12956](https://github.com/nim-lang/Nim/issues/12956))
- Fixed "asm keyword is generating wrong output C code when --cc:tcc"
  ([#12988](https://github.com/nim-lang/Nim/issues/12988))
- Fixed "Destructor not invoked"
  ([#13026](https://github.com/nim-lang/Nim/issues/13026))
- Fixed "ARC/newruntime: Adding inherited var ref object to seq with base \ 
type causes segfault"
  ([#12964](https://github.com/nim-lang/Nim/issues/12964))
- Fixed "Style check error with JS compiler target"
  ([#13032](https://github.com/nim-lang/Nim/issues/13032))
- Fixed "regression(1.0.4): undeclared identifier: 'readLines'; plus \ 
another regression and bug"
  ([#13013](https://github.com/nim-lang/Nim/issues/13013))
- Fixed "regression(1.04) `invalid pragma: since` with nim js"
  ([#12996](https://github.com/nim-lang/Nim/issues/12996))
- Fixed "Sink to MemMove optimization in injectdestructors"
  ([#13002](https://github.com/nim-lang/Nim/issues/13002))
- Fixed "--gc:arc: `catch` doesn't work with exception subclassing"
  ([#13072](https://github.com/nim-lang/Nim/issues/13072))
- Fixed "nim c --gc:arc --exceptions:{setjmp,goto} incorrectly handles \ 
raise; `nim cpp --gc:arc` is ok"
  ([#13070](https://github.com/nim-lang/Nim/issues/13070))
- Fixed "typetraits feature request - get subtype of a generic type"
  ([#6454](https://github.com/nim-lang/Nim/issues/6454))
- Fixed "CountTable inconsistencies between keys() and len() after setting \ 
value to 0"
  ([#12813](https://github.com/nim-lang/Nim/issues/12813))
- Fixed "{.align.} pragma is not applied if there is a generic field"
  ([#13122](https://github.com/nim-lang/Nim/issues/13122))
- Fixed "ARC, finalizer, allow rebinding the same function multiple times"
  ([#13112](https://github.com/nim-lang/Nim/issues/13112))
- Fixed "`nim doc` treats `export localSymbol` incorrectly"
  ([#13100](https://github.com/nim-lang/Nim/issues/13100))
- Fixed "--gc:arc SIGSEGV (double free?)"
  ([#13119](https://github.com/nim-lang/Nim/issues/13119))
- Fixed "codegen bug with arc"
  ([#13105](https://github.com/nim-lang/Nim/issues/13105))
- Fixed "symbols not defined in the grammar"
  ([#10665](https://github.com/nim-lang/Nim/issues/10665))
- Fixed "[JS] Move is not defined"
  ([#9674](https://github.com/nim-lang/Nim/issues/9674))
- Fixed "[TODO] pathutils.`/` can return invalid AbsoluteFile"
  ([#13121](https://github.com/nim-lang/Nim/issues/13121))
- Fixed "regression(1.04) `nim doc main.nim` generates broken html (no \ 
css)"
  ([#12998](https://github.com/nim-lang/Nim/issues/12998))
- Fixed "Wrong supportsCopyMem on string in type section"
  ([#13095](https://github.com/nim-lang/Nim/issues/13095))
- Fixed "Arc, finalizer, out of memory"
  ([#13157](https://github.com/nim-lang/Nim/issues/13157))
- Fixed "`--genscript` messes up nimcache and future nim invocations"
  ([#13144](https://github.com/nim-lang/Nim/issues/13144))
- Fixed "--gc:arc with --exceptions:goto for "nim c" generate \ 
invalid c code"
  ([#13186](https://github.com/nim-lang/Nim/issues/13186))
- Fixed "[regression] duplicate member `_i1` codegen bug"
  ([#13195](https://github.com/nim-lang/Nim/issues/13195))
- Fixed "RTree investigations with valgrind for --gc:arc"
  ([#13110](https://github.com/nim-lang/Nim/issues/13110))
- Fixed "relativePath("foo", ".") returns wrong path"
  ([#13211](https://github.com/nim-lang/Nim/issues/13211))
- Fixed "asyncftpclient - problem with welcome.msg"
  ([#4684](https://github.com/nim-lang/Nim/issues/4684))
- Fixed "Unclear error message, lowest priority"
  ([#13256](https://github.com/nim-lang/Nim/issues/13256))
- Fixed "Channel messages are corrupted"
  ([#13219](https://github.com/nim-lang/Nim/issues/13219))
- Fixed "Codegen bug with exportc and case objects"
  ([#13281](https://github.com/nim-lang/Nim/issues/13281))
- Fixed "[bugfix] fix #11590: c compiler warnings silently ignored, giving \ 
undefined behavior"
  ([#11591](https://github.com/nim-lang/Nim/issues/11591))
- Fixed "[CI] tnetdial flaky test"
  ([#13132](https://github.com/nim-lang/Nim/issues/13132))
- Fixed "Cross-Compiling with -d:mingw fails to locate compiler under OSX"
  ([#10717](https://github.com/nim-lang/Nim/issues/10717))
- Fixed "`nim doc --project` broken with imports below main project file or \ 
duplicate names"
  ([#13150](https://github.com/nim-lang/Nim/issues/13150))
- Fixed "regression: isNamedTuple(MyGenericTuple[int]) is false, should be \ 
true"
  ([#13349](https://github.com/nim-lang/Nim/issues/13349))
- Fixed "--gc:arc codegen bug copying objects bound to C structs with \ 
missing C struct fields"
  ([#13269](https://github.com/nim-lang/Nim/issues/13269))
- Fixed "write requires conversion to string"
  ([#13182](https://github.com/nim-lang/Nim/issues/13182))
- Fixed "Some remarks to stdlib documentation"
  ([#13352](https://github.com/nim-lang/Nim/issues/13352))
- Fixed "a `check` in unittest generated by template doesn't show actual \ 
value"
  ([#6736](https://github.com/nim-lang/Nim/issues/6736))
- Fixed "Implicit return with case expression fails with 'var' return."
  ([#3339](https://github.com/nim-lang/Nim/issues/3339))
- Fixed "Segfault with closure on arc"
  ([#13314](https://github.com/nim-lang/Nim/issues/13314))
- Fixed "[Macro] Crash on malformed case statement with multiple else"
  ([#13255](https://github.com/nim-lang/Nim/issues/13255))
- Fixed "regression: `echo 'discard' | nim c -r -` generates a file '-' ; \ 
`-` should be treated specially"
  ([#13374](https://github.com/nim-lang/Nim/issues/13374))
- Fixed "on OSX, debugging (w gdb or lldb) a nim program crashes at the 1st \ 
call to `execCmdEx`"
  ([#9634](https://github.com/nim-lang/Nim/issues/9634))
- Fixed "Internal error in getTypeDescAux"
  ([#13378](https://github.com/nim-lang/Nim/issues/13378))
- Fixed "gc:arc mode breaks tuple let"
  ([#13368](https://github.com/nim-lang/Nim/issues/13368))
- Fixed "Nim compiler hangs for certain C/C++ compiler errors"
  ([#8648](https://github.com/nim-lang/Nim/issues/8648))
- Fixed "htmlgen does not support `data-*` attributes"
  ([#13444](https://github.com/nim-lang/Nim/issues/13444))
- Fixed "[gc:arc] setLen will cause string not to be null-terminated."
  ([#13457](https://github.com/nim-lang/Nim/issues/13457))
- Fixed "joinPath("", "") is "/" ; should be \ 
"""
  ([#13455](https://github.com/nim-lang/Nim/issues/13455))
- Fixed "[CI] flaky test on windows: tests/osproc/texitcode.nim"
  ([#13449](https://github.com/nim-lang/Nim/issues/13449))
- Fixed "Casting to float32 on NimVM is broken"
  ([#13479](https://github.com/nim-lang/Nim/issues/13479))
- Fixed "`--hints:off` doesn't work (doesn't override ~/.config/nim.cfg)"
  ([#8312](https://github.com/nim-lang/Nim/issues/8312))
- Fixed "joinPath("", "") is "/" ; should be \ 
"""
  ([#13455](https://github.com/nim-lang/Nim/issues/13455))
- Fixed "tables.values is broken"
  ([#13496](https://github.com/nim-lang/Nim/issues/13496))
- Fixed "global user config can override project specific config"
  ([#9405](https://github.com/nim-lang/Nim/issues/9405))
- Fixed "Non deterministic macros and id consistency problem"
  ([#12627](https://github.com/nim-lang/Nim/issues/12627))
- Fixed "try expression doesn't work with return on expect branch"
  ([#13490](https://github.com/nim-lang/Nim/issues/13490))
- Fixed "CI will break every 4 years on feb 28: times doesn't handle leap \ 
years properly"
  ([#13543](https://github.com/nim-lang/Nim/issues/13543))
- Fixed "[minor] `nimgrep --word` doesn't work with operators (eg misses  \ 
`1 +% 2`)"
  ([#13528](https://github.com/nim-lang/Nim/issues/13528))
- Fixed "`as` is usable as infix operator but its existence and precedence \ 
are not documented"
  ([#13409](https://github.com/nim-lang/Nim/issues/13409))
- Fixed "JSON unmarshalling drops seq's items"
  ([#13531](https://github.com/nim-lang/Nim/issues/13531))
- Fixed "os.joinPath returns wrong path when head ends '\' or '/' and tail \ 
starts '..'."
  ([#13579](https://github.com/nim-lang/Nim/issues/13579))
- Fixed "Block-local types with the same name lead to bad codegen \ 
(sighashes regression)"
  ([#5170](https://github.com/nim-lang/Nim/issues/5170))
- Fixed "tuple codegen error"
  ([#12704](https://github.com/nim-lang/Nim/issues/12704))
- Fixed "newHttpHeaders does not accept repeated headers"
  ([#13573](https://github.com/nim-lang/Nim/issues/13573))
- Fixed "regression: --incremental:on fails on simplest example"
  ([#13319](https://github.com/nim-lang/Nim/issues/13319))
- Fixed "strscan can't get value of last element in format"
  ([#13605](https://github.com/nim-lang/Nim/issues/13605))
- Fixed "hashes_examples crashes with "Bus Error" (unaligned \ 
access) on sparc64"
  ([#12508](https://github.com/nim-lang/Nim/issues/12508))
- Fixed "gc:arc bug with re-used `seq[T]`"
  ([#13596](https://github.com/nim-lang/Nim/issues/13596))
- Fixed "`raise CatchableError` is broken with --gc:arc  when throwing \ 
inside a proc"
  ([#13599](https://github.com/nim-lang/Nim/issues/13599))
- Fixed "cpp --gc:arc --exceptions:goto fails to raise with discard"
  ([#13436](https://github.com/nim-lang/Nim/issues/13436))
- Fixed "terminal doesn't compile with -d:useWinAnsi"
  ([#13607](https://github.com/nim-lang/Nim/issues/13607))
- Fixed "Parsing "sink ptr T" - region needs to be an object \ 
type"
  ([#12757](https://github.com/nim-lang/Nim/issues/12757))
- Fixed "gc:arc + threads:on + closures compilation error"
  ([#13519](https://github.com/nim-lang/Nim/issues/13519))
- Fixed "[ARC] segmentation fault"
  ([#13240](https://github.com/nim-lang/Nim/issues/13240))
- Fixed "times.toDateTime buggy on 29th, 30th and 31th of each month"
  ([#13558](https://github.com/nim-lang/Nim/issues/13558))
- Fixed "Deque misbehaves on VM"
  ([#13310](https://github.com/nim-lang/Nim/issues/13310))
- Fixed "Nimscript listFiles should throw exception when path is not found"
  ([#12676](https://github.com/nim-lang/Nim/issues/12676))
- Fixed "koch boot fails if even an empty config.nims is present in \ 
~/.config/nims/ [devel regression]"
  ([#13633](https://github.com/nim-lang/Nim/issues/13633))
- Fixed "nim doc generates lots of false positive LockLevel warnings"
  ([#13218](https://github.com/nim-lang/Nim/issues/13218))
- Fixed "Arrays are passed by copy to iterators, causing crashes, \ 
unnecessary allocations and slowdowns"
  ([#12747](https://github.com/nim-lang/Nim/issues/12747))
- Fixed "Range types always uses signed integer as a base type"
  ([#13646](https://github.com/nim-lang/Nim/issues/13646))
- Fixed "Generate c code cannot compile with recent devel version"
  ([#13645](https://github.com/nim-lang/Nim/issues/13645))
- Fixed "[regression] VM: Error: cannot convert -1 to uint64"
  ([#13661](https://github.com/nim-lang/Nim/issues/13661))
- Fixed "Spurious raiseException(Exception) detected"
  ([#13654](https://github.com/nim-lang/Nim/issues/13654))
- Fixed "gc:arc memory leak"
  ([#13659](https://github.com/nim-lang/Nim/issues/13659))
- Fixed "Error: cannot convert -1 to uint (inside tuples)"
  ([#13671](https://github.com/nim-lang/Nim/issues/13671))
- Fixed "strformat issue with --gc:arc"
  ([#13622](https://github.com/nim-lang/Nim/issues/13622))
- Fixed "astToStr doesn't work inside generics"
  ([#13524](https://github.com/nim-lang/Nim/issues/13524))
- Fixed "oswalkdir.walkDirRec wont return folders"
  ([#11458](https://github.com/nim-lang/Nim/issues/11458))
- Fixed "`echo 'echo 1' | nim c -r -`  silently gives wrong results \ 
(nimBetterRun not updated for stdin)"
  ([#13412](https://github.com/nim-lang/Nim/issues/13412))
- Fixed "gc:arc destroys the global variable accidentally."
  ([#13691](https://github.com/nim-lang/Nim/issues/13691))
- Fixed "[minor] sigmatch errors should be sorted, for reproducible errors"
  ([#13538](https://github.com/nim-lang/Nim/issues/13538))
- Fixed "Exception when converting csize to clong"
  ([#13698](https://github.com/nim-lang/Nim/issues/13698))
- Fixed "ARC: variables are no copied on the thread spawn causing crashes"
  ([#13708](https://github.com/nim-lang/Nim/issues/13708))
- Fixed "Illegal distinct seq causes compiler crash"
  ([#13720](https://github.com/nim-lang/Nim/issues/13720))
- Fixed "cyclic seq definition crashes the compiler"
  ([#13715](https://github.com/nim-lang/Nim/issues/13715))
- Fixed "Iterator with openArray parameter make the argument evaluated many \ 
times"
  ([#13417](https://github.com/nim-lang/Nim/issues/13417))
- Fixed "net/asyncnet: Unable to access peer's certificate chain"
  ([#13299](https://github.com/nim-lang/Nim/issues/13299))
- Fixed "Accidentally "SIGSEGV: Illegal storage access" error \ 
after arc optimizations (#13325)"
  ([#13709](https://github.com/nim-lang/Nim/issues/13709))
- Fixed "Base64 Regression"
  ([#13722](https://github.com/nim-lang/Nim/issues/13722))
- Fixed "A regression (?) with --gc:arc and repr"
  ([#13731](https://github.com/nim-lang/Nim/issues/13731))
- Fixed "Internal compiler error when using the new variable pragmas"
  ([#13737](https://github.com/nim-lang/Nim/issues/13737))
- Fixed "bool conversion produces vcc 2019 warning at cpp compilation \ 
stage"
  ([#13744](https://github.com/nim-lang/Nim/issues/13744))
- Fixed "Compiler "does not detect" a type recursion error in the \ 
wrong code, remaining frozen"
  ([#13763](https://github.com/nim-lang/Nim/issues/13763))
- Fixed "[minor] regression: `Foo[0.0] is Foo[-0.0]` is now false"
  ([#13730](https://github.com/nim-lang/Nim/issues/13730))
- Fixed "`nim doc` - only whitespace on first line causes segfault"
  ([#13631](https://github.com/nim-lang/Nim/issues/13631))
- Fixed "hashset regression"
  ([#13794](https://github.com/nim-lang/Nim/issues/13794))
- Fixed "`os.getApplFreebsd` could return incorrect paths in the case of a \ 
long path"
  ([#13806](https://github.com/nim-lang/Nim/issues/13806))
- Fixed "Destructors are not inherited"
  ([#13810](https://github.com/nim-lang/Nim/issues/13810))
- Fixed "io.readLines AssertionError on devel"
  ([#13829](https://github.com/nim-lang/Nim/issues/13829))
- Fixed "exceptions:goto accidentally reset the variable during exception \ 
handling"
  ([#13782](https://github.com/nim-lang/Nim/issues/13782))
   2019-10-30 13:28:48 by Ryo ONODERA | Files touched by this commit (2)
Log message:
Update to 1.0.2

Changelog:
v1.0.2 - 2019-10-23
Bugfixes

    fixes the --verbosity:2 regression
    Fixed "Fail to compile a file twice under Windows (v1.0 bug)." #12242
    fix nimpretty removing space before pragma
    JS: gensym is stricter for 'this'
    Fixed "VM Assertion Error with newruntime" #12294
    Fixed "Assertion error when running nim check on compiler/nim.nim" \ 
#12281
    Fixed "Compiler crash with empty array and generic instantiation with \ 
int as parameter" #12264
    Fixed "Regression in JS backend codegen "Error: request to \ 
generate code for .compileTime proc"" #12240
    Fix how relativePath handle case sensitiviy
    Fixed "SIGSEGV in compiler when using generic types and seqs" #12336
    Fixed "[1.0.0] weird interaction between import os and casting integer \ 
to char on macosx trigger bad codegen" #12291
    VM: no special casing for big endian machines
    Fixed "internal error: environment misses with a simple template inside \ 
one of Jester macros" #12323
    nimsuggest: fix tcp socket leak
    nimsuggest: fix tcp socket leak for epc backend
    Fixed "writeFile and write(f, str) skip null bytes on Windows" #12315
    Fixed "Crash in intsets symmetric_difference" #12366
    Fixed "[regression] VM crash when dealing with var param of a proc \ 
result" #12244
    fixes a koch regression that made 'koch boot --listcmd' not work anymore
    Fixed "[regression] inconsistent signed int mod operator between \ 
runtime, compiletime, and semfold" #12332
    Fixed "Boehm disables interior pointer checking" #12286
    Fixes semCustomPragma when nkSym
    Fixed yield in nkCheckedFieldExpr
    Fixed "randomize() from random not working on JS" #12418
    Fixed "Compiler crash with invalid object variant" #12379
    fix type's case in random.nim
    Fixed "Update docs with a better way to signal unimplemented \ 
methods" #10804
    Fixed "Nim language manual, push pragma is not explained well" #10824
    Fixed "[regression] Importing more than one module with same name from \ 
different packages produce bad codegen" #12420
    Namespace unittest enums to avoid name conflicts
    Fixed "VM checks unsigned integers for overflow." #12310
    Fixed "line directive is not generated for first line of function \ 
definition" #12426

Documentation improvements

    threadpool: fix link in docs (#12258)
    Fix spellings (#12277)
    fix #12278, don't expose internal PCRE documentation
    Fixed "Documentation of quitprocs is wrong" \ 
[#12279(https://github.com/nim-lang/Nim/issues/12279)
    Fix typo in docs
    Fix reference to parseSpec proc in readme
    [doc/tut1] removed discard discussion in comments
    Documentation improvements around the db interface
    Easier build instructions for windows - just run build_all.bat.
    fix a few dead links and a missing sentence in documentation
    Macro docs additions
    Updated the code example in the os module to use better grammar.
    Mention "lambdas" and => in the manual
    Better documentation on Garbage Collector
   2019-10-04 15:25:23 by Ryo ONODERA | Files touched by this commit (3)
Log message:
Update to 1.0.0

Changelog:
This is a major release containing nearly 60 commits. Most changes are bug \ 
fixes, but this release also includes a couple new features:

    Binaries can now be built and run using the new run command.
    The NimblePkgVersion is now defined so you can easily get the package \ 
version in your source code (example).

Some other highlights:

    Temporary files are now kept when the --debug flag is used.
    Fixed dependency resolution issues with "#head" packages (#432 and \ 
#672).
    The install command can now take Nim compiler flags via the new --passNim flag.
    Command line arguments are now passed properly to tasks (#633).
    The test command now respects the specified backend (#631).
    The dump command will no longer prompt and now has an implicit -y.
    Fixed bugs with the new nimscript executor (#665).
    Fixed multiple downloads and installs of the same package (#678).
    Nimble init no longer overwrites existing files (#581).
    Fixed incorrect submodule version being pulled when in a non-master branch \ 
(#675).

Next | Query returned 39 messages, browsing 21 to 30 | Previous