[Git][ghc/ghc][wip/backports] 5 commits: base: Bump version for log1mexp fix

Ben Gamari gitlab at gitlab.haskell.org
Wed Jul 29 19:51:59 UTC 2020



Ben Gamari pushed to branch wip/backports at Glasgow Haskell Compiler / GHC


Commits:
9c8c4f25 by Ben Gamari at 2020-07-28T13:26:27-04:00
base: Bump version for log1mexp fix

- - - - -
ff4544e5 by Ben Gamari at 2020-07-28T13:26:46-04:00
users-guide: Release notes for 8.10.2

- - - - -
7bc989ea by Ben Gamari at 2020-07-29T15:45:38-04:00
Bump Cabal submodule

- - - - -
0006f59b by Ben Gamari at 2020-07-29T15:45:38-04:00
Bump hsc2hs submodule to 0.68.7

- - - - -
3c0e20d8 by Ben Gamari at 2020-07-29T15:45:38-04:00
Release GHC 8.10.2

- - - - -


6 changed files:

- configure.ac
- docs/users_guide/8.10.2-notes.rst
- libraries/Cabal
- libraries/base/base.cabal
- libraries/base/changelog.md
- utils/hsc2hs


Changes:

=====================================
configure.ac
=====================================
@@ -13,10 +13,10 @@ dnl
 # see what flags are available. (Better yet, read the documentation!)
 #
 
-AC_INIT([The Glorious Glasgow Haskell Compilation System], [8.10.1], [glasgow-haskell-bugs at haskell.org], [ghc-AC_PACKAGE_VERSION])
+AC_INIT([The Glorious Glasgow Haskell Compilation System], [8.10.2], [glasgow-haskell-bugs at haskell.org], [ghc-AC_PACKAGE_VERSION])
 
 # Set this to YES for a released version, otherwise NO
-: ${RELEASE=NO}
+: ${RELEASE=YES}
 
 # The primary version (e.g. 7.5, 7.4.1) is set in the AC_INIT line
 # above.  If this is not a released version, then we will append the


=====================================
docs/users_guide/8.10.2-notes.rst
=====================================
@@ -11,13 +11,26 @@ Highlights
 ----------
 
 - A few important correctness fixes for the low-latency garbage collector.
+  Users of :rts-flag:`--nonmoving-gc` are strongly encouraged to upgrade
+  promptly.
 
-Full details
-------------
+- Fixes a bug in process creation on Windows (:ghc-ticket:`17926`).
 
-Language
-~~~~~~~~
+- Works around a Linux kernel bug in the implementation of ``timerfd``\s
+  (:ghc-ticket:`18033`).
+
+- Fixes a few specialiser regressions (:ghc-ticket:`17810`,
+  :ghc-ticket:`18120`) as well introduces a variety of miscellaneous
+  specialiser improvements (:ghc-ticket:`16473`, :ghc-ticket:`17930`,
+  :ghc-ticket:`17966`)
+
+- Fixes a potential loss of sharing due to left operator sections
+  (:ghc-ticket:`18151`).
+
+- Fix bootstrapping of GHC with the LLVM backend on x86-64 (:ghc-ticket:`17920`).
 
+Full details
+------------
 
 Compiler
 ~~~~~~~~
@@ -25,20 +38,16 @@ Compiler
  - A simplifier panic manifesting when DWARF debug information is enabled has
    been fixed (:ghc-ticket:`18162`, :ghc-ticket:`17619`)
 
-GHC API
-~~~~~~~
-
-
-GHCi
-~~~~
-
 
 Runtime system
 ~~~~~~~~~~~~~~
 
-- The RTS now allows the user to specify a minimum time between idle GCs with
-  the :rts-flag:`-Iw ⟨seconds⟩` flag. 8.10.1 contained a users guide reference
-  to this flag but did not include the associated implementation.
+ - The RTS now supports a flag, :rts-flag:`--copying-gc`, to counter-act the
+   effect of :rts-flag:`--nonmoving-gc`.
+
+ - The RTS now allows the user to specify a minimum time between idle GCs with
+   the :rts-flag:`-Iw ⟨seconds⟩` flag. 8.10.1 contained a users guide reference
+   to this flag but did not include the associated implementation.
 
  - A memory leak in the cost-center profiler has been fixed
    (:ghc-ticket:`18348`)
@@ -49,26 +58,40 @@ Runtime system
  - We now workaround a Linux kernel bug in the implementation of timerfd which
    could previously result in program crashes (:ghc-ticket:`18033`)
 
-Template Haskell
-~~~~~~~~~~~~~~~~
-
-
+ - The cost center profiler's JSON output backend now escapes backslashes
+   correctly (:ghc-ticket:`18438`)
 
-``ghc-prim`` library
-~~~~~~~~~~~~~~~~~~~~
+ - A variety of linker issues on ARM platforms have been fixed.
 
 
-
-``ghc`` library
-~~~~~~~~~~~~~~~
-
 ``base`` library
 ~~~~~~~~~~~~~~~~
 
+- Fix a precision issue in the implementation of ``log1mexp``
+  (:ghc-ticket:`17125`)
+
+
 Build system
 ~~~~~~~~~~~~
 
+ - Fix a bug wherein GHC would link against the non-thread-safe unique supply
+   implementation when bootstrapping with an unregisterised compiler
+   (:ghc-ticket:`18024`)
+
+Known issues
+------------
+
+- A long-standing bug (:ghc-ticket:`16893`) which can cause some applications
+  of ``unsafeCoerce`` to segmentation fault is only partially fixed in this
+  release. This release only avoids this issue in the uses of ``unsafeCoerce``
+  in ``Data.Typeable.Internal``, which was the proximate cause of
+  :ghc-ticket:`16893`.
+
+  However, it is possible that this bug could manifest in user-code using
+  ``unsafeCoerce`` to perform dynamic type checks. See the :ghc-ticket:`ticket
+  <16893>` for details.
 
+  We expect that this issue will be fixed in the next major release of GHC.
 
 Included libraries
 ------------------


=====================================
libraries/Cabal
=====================================
@@ -1 +1 @@
-Subproject commit b353baafe080e6aa6d542dd95658487b41e2254b
+Subproject commit df65caf90ff79894dacecf73a642452aaabcc0a5


=====================================
libraries/base/base.cabal
=====================================
@@ -1,6 +1,6 @@
 cabal-version:  3.0
 name:           base
-version:        4.14.0.0
+version:        4.14.1.0
 -- NOTE: Don't forget to update ./changelog.md
 
 license:        BSD-3-Clause


=====================================
libraries/base/changelog.md
=====================================
@@ -1,6 +1,13 @@
 # Changelog for [`base` package](http://hackage.haskell.org/package/base)
 
+## 4.14.1.0* Jul 2020
+
+  * Bundled with GHC 8.10.2
+
+  * Fix a precision issue in `log1mexp` (#17125)
+
 ## 4.14.0.0 *Jan 2020
+
   * Bundled with GHC 8.10.1
 
   * Add a `TestEquality` instance for the `Compose` newtype.


=====================================
utils/hsc2hs
=====================================
@@ -1 +1 @@
-Subproject commit ed109c719925e358f68b95970199c4b961de6817
+Subproject commit 24100ea521596922d3edc8370b3d9f7b845ae4cf



View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/e9f1205801f331a058a1490372f14a4ad3cd9bdc...3c0e20d81b67645fb402cbedacbb31480721fb02

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/e9f1205801f331a058a1490372f14a4ad3cd9bdc...3c0e20d81b67645fb402cbedacbb31480721fb02
You're receiving this email because of your account on gitlab.haskell.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20200729/8f95068c/attachment-0001.html>


More information about the ghc-commits mailing list