1.4.0版本发布
16 October 2020 Nim团队
我们非常自豪地宣布,经过六个月的持续开发,Nim 1.4 版本已经发布了! 除了 1.0 版本之外,这可能是迄今为止最大的 Nim 版本,我们很高兴能够发布它。
它包含了 900 个新的提交,这些提交还没有被回传到我们之前的版本。 与 1.2 版本相比,增加了一些新的功能和标准库。 我们试图将破坏性的改动保持在最小的范围内,但一些错误的修复是无法避免的。 我们认为我们的用户将受益于这些改变。
我们建议所有用户升级并使用 1.4 版本。
这个版本还包含了最新版本的 Nim 包管理器 Nimble —— v0.12.0。 变更日志可以在这里找到。
安装Nim 1.4
新用户
检查你的操作系统的软件包管理器是否已经发布了1.4或版本。 或者按照这里所述进行安装。
现有用户
如果你使用 choosenim 安装了以前的 Nim 版本。
获取 Nim 1.4 很简单:
$ choosenim update self
$ choosenim update stable
如果你没有 choosenim, 你可以按照同上的方法来做:
安装链接。
v1.4的贡献者
我们的贡献者非常了不起,有 太多 在此列出。 非常感谢你们,没有你们,我们不可能完成这个版本。
新功能
GC: ORC
一种名为 ARC 的新的参考计数算法首次随 Nim 1.2 一起发货。 如果你还没有看过,我们推荐你看一下以下内容 NimConf 2020(外网) 的 这个视频(外网) 。 在这里,Araq解释了ARC背后的细节,并展示了一些基准,以说明其好处。
As far as we know, ARC works with the complete standard library except for
the current implementation of async, because that introduces cycles that
ARC doesn’t deal with.
There are other async implementations in development that don’t introduce cycles.
ORC is the existing ARC algorithm plus a cycle collector, and --gc:orc is our
main new feature for this release!
We recommend reading
this introductory ARC/ORC post
to get an idea about ARC/ORC’s advantages.
如何使用 ARC 和 ORC
If you haven’t used ARC already with Nim 1.2, all you have to do is to pass --gc:arc
on the command line:
nim c -d:release --gc:arc myprogram.nim
For the majority of programs this is all it takes.
If your code uses cyclic data structures, or if you’re not sure if your code
produces cycles, you need to use --gc:orc and not --gc:arc.
If you have an object that looks cyclic, but you know it isn’t, you can help ORC by
marking it as {.acyclic.} in the following way:
type
Node {.acyclic.} = ref object
left, right: Node
data: string
To read more about {.acyclic.} pragma, please
check out the manual.
Known incompatibilities and gotchas
深拷贝
If you use system.deepCopy in your code, you need to enable it via
--deepCopy:on on the command line.
This is a band-aid and a better solution for this will arrive in the future.
The reason for this opt-in switch is that ARC and ORC do not use the old runtime
type information (RTTI) that system.deepCopy is built upon.
We’ve built ARC and ORC with embedded devices in mind where the overhead of the
old RTTI has been reported to be unacceptable.
Order of declarations
The second gotcha people might encounter is the strict ordering requirement for custom destructors; this affects old code as well, because finalizers are mapped to destructors. For example:
type
CustomObject = ref object
p: ptr int
proc tricky() =
# would use the default destructor
var x: CustomObject
proc finalizer(x: CustomObject) =
if x.p != nil:
dealloc(x.p)
proc newCustomObject(): CustomObject =
new(result, finalizer)
This produces the following error message:
temp.nim(15, 6) Error: cannot bind another '=destroy' to: CustomObject:ObjectType;
previous declaration was constructed here implicitly: temp.nim(8, 7)
The reason is that only after the new(result, finalizer) call the compiler knows
that it needs to generate a custom destructor for the CustomObject type,
but when it compiled tricky the default destructor was used.
The solution is to move the proc tricky after the newCustomObject declaration:
type
CustomObject = ref object
p: ptr int
proc finalizer(x: CustomObject) =
if x.p != nil:
dealloc(x.p)
proc newCustomObject(): CustomObject =
new(result, finalizer)
proc tricky() =
# uses the custom destructor
var x: CustomObject
This is a current limitation that will be improved in future versions of the compiler.
Strict(er) functions
This is an experimental feature available via {.experimental: "strictFuncs".} pragma in
your code or via the --experimental:strictFuncs switch.
It introduces a stricter definition of a “side effect”:
If an object is reachable via a parameter that is not declared as a var parameter,
any mutation to that object counts as a side effect.
Here is an example from the experimental manual:
{.experimental: "strictFuncs".}
type
Node = ref object
le, ri: Node
data: string
func len(n: Node): int =
# valid: len does not have side effects
var it = n
while it != nil:
inc result
it = it.ri
func mut(n: Node) =
let m = n # is the statement that connected the mutation to the parameter
m.data = "yeah" # the mutation is here
# Error: 'mut' can have side effects
# an object reachable from 'n' is potentially mutated
For more details, please see Araq’s blog post.
Changelog
Standard library additions and changes
- Added some enhancements to
std/jsonutilsmodule.- Added a possibility to deserialize JSON arrays directly to
HashSetandOrderedSettypes and respectively to serialize those types to JSON arrays viajsonutils.fromJsonandjsonutils.toJsonprocedures. - Added a possibility to deserialize JSON
nullobjects to Nim option objects and respectively to serialize Nim option object to JSON object ifisSomeor to JSON null object ifisNoneviajsonutils.fromJsonandjsonutils.toJsonprocedures. - Added a
Joptionsparameter tojsonutils.fromJsoncurrently containing two boolean optionsallowExtraKeysandallowMissingKeys.- If
allowExtraKeysistrueNim’s object to which the JSON is parsed is not required to have a field for every JSON key. - If
allowMissingKeysistrueNim’s object to which JSON is parsed is allowed to have fields without corresponding JSON keys.
- If
- Added a possibility to deserialize JSON arrays directly to
-
Added
bindParams,bindParamtodb_sqlitefor binding parameters into aSqlPreparedstatement. -
Added
tryInsert,insertprocs todb_*libs which accept primary key column name. -
Added
xmltree.newVerbatimTextsupport createstyle’s,script’s text. -
urimodule now implements RFC-2397. -
Added DOM Parser to the
dommodule for the JavaScript target. -
The default hash for
Ordinalhas changed to something more bit-scrambling.import hashes; proc hash(x: myInt): Hash = hashIdentity(x)recovers the old one in an instantiation context while-d:nimIntHash1recovers it globally. -
deques.peekFirstanddeques.peekLastnow havevar Deque[T] -> var Toverloads. -
File handles created from high-level abstractions in the stdlib will no longer be inherited by child processes. In particular, these modules are affected:
asyncdispatch,asyncnet,system,nativesockets,netandselectors.For
asyncdispatch,asyncnet,netandnativesockets, aninheritableflag has been added to allprocs that create sockets, allowing the user to control whether the resulting socket is inheritable. This flag is provided to ease the writing of multi-process servers, where sockets inheritance is desired.For a transition period, define
nimInheritHandlesto enable file handle inheritance by default. This flag does not affect theselectorsmodule due to the differing semantics between operating systems.asyncdispatch.setInheritable,system.setInheritableandnativesockets.setInheritableare also introduced for setting file handle or socket inheritance. Not all platforms have theseprocs defined. -
The file descriptors created for internal bookkeeping by
ioselector_kqueueandioselector_epollwill no longer be leaked to child processes. strutils.formatFloatwithprecision = 0has been restored to the version 1 behaviour that produces a trailing dot, e.g.formatFloat(3.14159, precision = 0)is now3., not3.-
Added
commonPrefixLentocritbits. -
relativePath(rel, abs)andrelativePath(abs, rel)used to silently give wrong results (see #13222); instead they now usegetCurrentDirto resolve those cases, and this can now throw in edge cases wheregetCurrentDirthrows.relativePathalso now works for js with-d:nodejs. -
JavaScript and NimScript standard library changes:
streams.StringStreamis now supported in JavaScript, with the limitation that any bufferpointers used must be castable toptr string, any incompatible pointer type will not work. Thelexbaseandstreamsmodules used to fail to compile on NimScript due to a bug, but this has been fixed.The following modules now compile on both JS and NimScript:
parsecsv,parsecfg,parsesql,xmlparser,htmlparserandropes. Additionally supported for JS iscstrutils.startsWithandcstrutils.endsWith, for NimScript:json,parsejson,strtabsandunidecode. -
Added
streams.readStrandstreams.peekStroverloads to accept an existing string to modify, which avoids memory allocations, similar tostreams.readLine(#13857). -
Added high-level
asyncnet.sendToandasyncnet.recvFromUDP functionality. -
dollars.$now works for unsigned ints withnim js. -
Improvements to the
bitopsmodule, including bitslices, non-mutating versions of the original masking functions,mask/masked, and varargs support forbitand,bitor, andbitxor. -
sugar.=>andsugar.->changes: Previously(x, y: int)was transformed into(x: auto, y: int), it now becomes(x: int, y: int)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.DateTimeare now private, and are accessed with getters and deprecated setters. -
The
timesmodule now handles the default value forDateTimemore consistently. Most procs raise an assertion error when given an uninitializedDateTime, the exceptions are==and$(which returns"Uninitialized DateTime"). The proctimes.isInitializedhas been added which can be used to check if aDateTimehas been initialized. -
Fix a bug where calling
closeon io streams inosproc.startProcesswas 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.onThreadDestructionmust now be.raises: []. -
The callback that is assigned to
system.onUnhandledExceptionmust now be.gcsafe. -
osproc.execCmdExnow takes an optionalinputfor stdin,workingDirandenvparameters. -
Added a
ssl_configmodule containing lists of secure ciphers as recommended by Mozilla OpSec -
net.newContextnow defaults to the list of ciphers targeting “Intermediate compatibility” per Mozilla’s recommendation instead ofALL. This change should protect users from the use of weak and insecure ciphers while still provides adequate compatibility with the majority of the Internet. -
A new module
std/jsonutilswith hookablejsonTo,toJson,fromJsonoperations for json serialization/deserialization of custom types was added. -
A new proc
heapqueue.find[T](heap: HeapQueue[T], x: T): intto get index of elementxwas added. -
Added
rstgen.rstToLatexa convenience proc forrenderRstToOutandinitRstGenerator. -
Added
os.normalizeExe. -
macros.newLitnow preserves named vs unnamed tuples. -
Added
random.gauss, that uses the ratio of uniforms method of sampling from a Gaussian distribution. -
Added
typetraits.elementTypeto 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.extractDocCommentsAndRunnableshelper. -
strformat.fmtandstrformat.&supportspecifier =.fmt"{expr=}"now expands tofmt"expr={expr}". -
Deprecations: instead of
os.existsDirusedirExists, instead ofos.existsFileusefileExists. -
Added the
jsremodule, Regular Expressions for the JavaScript target.. -
Made
maxLinesargumentPositiveinlogging.newRollingFileLogger, because negative values will result in a new file being created for each logged line which doesn’t make sense. -
Changed
loginloggingto use proper log level for JavaScript, e.g.debugusesconsole.debug,infousesconsole.info,warnusesconsole.warn, etc. -
Tables, HashSets, SharedTables and deques don’t require anymore that the passed initial size must be a power of two - this is done internally. Proc
rightSizefor Tables and HashSets is deprecated, as it is not needed anymore.CountTable.inctakesval: intagain notval: Positive; i.e. it can “count down” again. -
Removed deprecated symbols from
macrosmodule, some of which were deprecated already in0.15. -
Removed
sugar.distinctBase, deprecated since0.19. Usetypetraits.distinctBase. -
asyncdispatch.PDispatcher.handlesis exported so that an external low-level libraries can access it. std/with,sugar.dupnow 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.roundis no longer deprecated. The advice to usestrformatinstead cannot be applied to every use case. The limitations and the (lack of) reliability ofroundare well documented. -
Added
getprotobynametowinlean. AddedgetProtoBynametonativesocketswhich returns a protocol code from the database that matches the protocolname. -
Added missing attributes and methods to
dom.NavigatorlikedeviceMemory,onLine,vibrate(), etc. - Added
strutils.indentationandstrutils.dedentwhich enable indented string literals:import strutils echo dedent """ This is cool! """ -
Added
initUri(isIpv6: bool)tourimodule, nowurisupports parsing ipv6 hostname. -
Added
readLines(p: Process)toosproc. - Added the below
toXprocs for collections. The usage is similar to procs such assets.toHashSetandtables.toTable. Previously, it was necessary to create the respective empty collection and add items manually.critbits.toCritBitTree, which creates aCritBitTreefrom anopenArrayof items or anopenArrayof pairs.deques.toDeque, which creates aDequefrom anopenArray.heapqueue.toHeapQueue, which creates aHeapQueuefrom anopenArray.intsets.toIntSet, which creates anIntSetfrom anopenArray.
-
Added
progressIntervalargument toasyncftpclient.newAsyncFtpClientto control the interval at which progress callbacks are called. - Added
os.copyFileToDir.
Language changes
- The
=destroyhook no longer has to reset its target, as the compiler now automatically insertswasMovedcalls where needed. -
The
=hook is now called=copyfor 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=copywithout 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) -
getImplon 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. -
letstatements can now be used without a value if declared withimportc/importcpp/importjs/importobjc. -
The keyword
fromis now usable as an operator. - Exceptions inheriting from
system.Defectare no longer tracked with the.raises: []exception tracking mechanism. This is more consistent with the built-in operations. The following always used to compile (and still does):proc mydiv(a, b): int {.raises: [].} = a div b # can raise an DivByZeroDefectNow also this compiles:
proc mydiv(a, b): int {.raises: [].} = if b == 0: raise newException(DivByZeroDefect, "division by zero") else: result = a div bThe reason for this is that
DivByZeroDefectinherits fromDefectand with--panics:onDefectsbecome unrecoverable errors. -
Added the
thiscallcalling 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.releaseEventsanddom.captureEvents. -
Removed
sharedlists.initSharedList, was deprecated and produces undefined behaviour. -
There is a new experimental feature called “strictFuncs” which makes the definition of
.noSideEffectstricter. 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
.noaliaspragma. It is mapped to C’srestrictkeyword for the increased performance this keyword can enable. -
itemsno longer compiles with enums with holes as its behavior was error prone, see #14004. -
system.deepcopyhas to be enabled explicitly for--gc:arcand--gc:orcvia--deepcopy:on. -
Added the
std/effecttraitsmodule for introspection of the inferred effects. We hope this enablesasyncmacros 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
defineandundefpragmas have been de-deprecated. - New command:
nim r main.nim [args...]which compiles and runs main.nim, and implies--usenimcacheso that the output is saved to $nimcache/main$exeExt, using the same logic asnim c -rto 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:processingis now supported and means--hint:processing:on(likewise with other hints and warnings), which is consistent with all other bool flags. (since 1.3.3). -
nim doc -r mainandnim rst2html -r mainnow callopenDefaultBrowser. -
Added the new hint
--hint:msgOriginwill show where a compiler msg (hint|warning|error) was generated; this helps in particular when it’s non obvious where it came from either because multiple locations generate the same message, or because the message involves runtime formatting. -
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:cmdto pass additional flags for runnableExamples, e.g.:--doccmd:-d:foo --threadsuse--doccmd:skipto skip runnableExamples and rst test snippets. -
Added the new flag
--usenimcacheto output binary files to nimcache. -
runnableExamples "-b:cpp -r:off": codeis now supported, allowing to override how an example is compiled and run, for example to change the backend. -
nim docnow outputs under$projectPath/htmldocswhen--outdiris unspecified (with or without--project); passing--projectnow automatically generates an index and enables search. See docgen for details. -
Removed the
--oldNewlinesswitch. -
Removed the
--laxStringsswitch for mutating the internal zero terminator on strings. -
Removed the
--oldastswitch. -
Removed the
--oldgensymswitch. -
$getType(untyped)is now “untyped” instead of “expr”,$getType(typed)is now “typed” instead of “stmt”. - Sink inference is now disabled per default and has to enabled explicitly via
--sinkInference:on. Note: For the standard library sink inference remains enabled. This change is most relevant for the--gc:arc,--gc:orcmemory management modes.
Tool changes
nimsuggestnow returns both the forward declaration and the implementation location upon adefquery. 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
whenintypesections.” (#14007) - Fixed “
for a in MyEnumgives 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
Resultsbox styling is not Dark Mode Friendly” (#13972) - Fixed “–gc:arc -d:useSysAssert undeclared identifier
cstderrwith 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]
parseEnumdoes not work anymore for enums with holes” (#14030) - Fixed “Exception types in the stdlib should inherit from
CatchableErrororDefect, notException” (#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 esyntax” (#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 Treturn type” (#14314) - Fixed “
nim cpp -r --gc:arcsegfaults 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]
createThreadis not GC-safe” (#14370) - Fixed “Broken example on hot code reloading” (#14380)
- Fixed “runnableExamples block with
excepton specified error fails withnim 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 “
foldrraises 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 --projectshows ‘@@/’ instead of ‘../’ for relative paths to submodules” (#14448) - Fixed “re, nre have wrong
startsemantics” (#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 “
itemsis 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 warningObservableStoreswithobject of RootObjtype” (#14514) - Fixed “Compiler assertion” (#14562)
- Fixed “Can’t get
ordof 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 “
wrapWordsseems to ignore linebreaks when wrapping, leaving breaks in the wrong place” (#14579) - Fixed “
lentgives 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 dumpis 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/t9657hangs” (#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
dirundeclared” (#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 “
nkRecWhencauses 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)