pike.git
/
CHANGES
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/CHANGES:1:
Changes since Pike 8.0.610 (release 12) Bug fixes ---------
+
o Calendar
+
+
- Updated tzdata to 2018e.
+
o Compiler - The machine code generator for ppc64 now generates correct code under ABI v2 (ppc64le) - Fixed an incompatibility between the machine code generator on ppc and GCC 7.
-
+
o Gmp.mpq
+
+
Fix numbers between -1.0 and 1.0 sometimes missing a leading 0.
+
o Pike.identify_cycle Fix various issues with LFUNs throwing errors. LFUNs used by mapping operations may throw errors; this caused identify_loop_visit_leave() to also throw errors. The rest of the identify_cycle code was not happy about this and - Forgot to unlock the mc_mutex. This caused all following calls to Pike.identify_cycle() and Pike.count_memory() to hang. - Leaked memory. The above issues are now avoided by instead using the addresses of objects as indices in the affected mapping. It also fixes the issue with hangs if there are objects with lfuns calling Pike.identify_cycle() or Pike.count_memory().
-
o Stdio.Buffer
-
-
Eliminate race condition in read_cstring().
-
-
o Gmp.mpq
-
-
Fix numbers between -1.0 and 1.0 sometimes missing a leading 0.
-
+
o Sql.pgsql - Fix regression bug since rel 12 that hangs queries returning over 1024 records. - Fix all rare-deadlock-causes logged in the last two years.
-
+
o Stdio.Buffer
-
+
Eliminate race condition in read_cstring().
+
+
Changes since Pike 8.0.498 (release 11) ---------------------------------------------------------------------- New Features ------------ o Crypto.Hash.SCRAM New class to support SCRAM authentication.