فهرست منبع

CHANGES.txt update

Simon Krajewski 7 سال پیش
والد
کامیت
34e026a998
1فایلهای تغییر یافته به همراه34 افزوده شده و 1 حذف شده
  1. 34 1
      extra/CHANGES.txt

+ 34 - 1
extra/CHANGES.txt

@@ -1,35 +1,68 @@
 XXXX-XX-XX:
 	New features:
 
+	all : support Unicode strings properly on all targets
+	all : support `for (key => value in e)` syntax for key-value iterators
+	all : added keyValueIterator to Map and its implementations
+	all : support loop-unrolling on `for (i in 0...5)` (#7365)
+	all : added support for write-mode `@:op(a.b)`
+	all : support `inline call()` and `inline new` expressions (#7425)
+	all : support `@:using` on type declarations (#7462)
+	all : support XML literal strings but require them to be macro-processed (#7438)
 	lua : add -D lua-vanilla, which emits code with reduced functionality but no additional lib dependencies
 
 	General improvements and optimizations:
 
 	all : [breaking] reserved `operator` and `overload` as keywords (#7413)
-	all : added support for write-mode `@:op(a.b)`
 	all : made `final` on structure fields invariant (#7039)
 	all : [breaking] disallowed static variables that have no type-hint and expression (#6440)
+	all : added display/typeDefinition to display protocol (#7266)
+	all : fixed various display-related problems
+	all : made parser in display mode much more tolerant
+	all : allowed assigning `[]` where `Map` is expected (#7426)
+	all : unified various parts of the String API across all targets
 	php : Optimized haxe.ds.Vector (VectorData is not Array anymore)
 	php : Optimized `Map.copy()` and `Array.copy()`
 	php : Optimized iterators of `Map` and native arrays.
 	php : Support native PHP generators. See `php.Syntax.yield()` and `php.Generator`
 	js : Updated jQuery extern (js.jquery.*). Supporting jQuery up to 3.3.1.
+	js : updated HTML externs
+	eval : improved object prototype field handling (#7393)
+	eval : optimized int switches (#7481)
+	eval : improved IntMap and StringMap performance
+	eval : improved performance of instance calls
 
 	Removals :
 
 	all : disallowed get_x/set_x property syntax (#4699)
 	all : disallowed default values on interface variables (#4087)
 	all : disallowed `implements Dynamic` on non-extern classes (#6191)
+	all : warn about expressions in extern non-inline fields (#5898)
+	all : removed `-D use-rtti-doc`, always store documentation instead (#7493)
+	all : disallowed macro-in-macro calls (#7496)
 
 	Bugfixes:
 
+	all : fix GC compacting too often in server mode
 	all : [breaking] `function () { }(e)` is no longer parsed as a call (#5854)
+	all : fixed various minor inlining issues
+	all : disallowed `return null` from Void-functions (#7198)
+	all : fixed various pattern matching problems
+	all : fixed compiler hang in display mode (#7236)
+	all : fixed the XML printer trimming CDATA content (#7454)
+	all : fixed invalid visibility unification with statics (#7527)
 	php : Escape `$` in field names of anonymous objects (#7230)
 	php : Generate `switch` as `if...else if...else...` to avoid loose comparison (#7257)
+	cs : fixed bad evaluation order in structures (#7531)
+	eval : fixed various problems with the debugger
+	eval : fixed Vector.fromArrayCopy (#7492)
+	eval : fixed bad string conversions on invalid + operations
 
 	Standard Library:
 
 	all : [breaking] made Lambda functions return Array instead of List (#7097)
+	all : added haxe.iterators package
+	all : improved StringTools.lpad/rpad/htmlEscape implementation
 
 2018-06-12: 4.0.0-preview.4