[Git][ghc/ghc][wip/release-9.8.1] 5 commits: Bump stm submodule to 2.5.2.0

Ben Gamari (@bgamari) gitlab at gitlab.haskell.org
Fri Oct 6 08:53:51 UTC 2023



Ben Gamari pushed to branch wip/release-9.8.1 at Glasgow Haskell Compiler / GHC


Commits:
47b202a9 by Ben Gamari at 2023-10-05T23:32:49-04:00
Bump stm submodule to 2.5.2.0

- - - - -
31d4e495 by Ben Gamari at 2023-10-05T23:32:49-04:00
Bump hpc submodule to 0.7.0.0

- - - - -
7c268df5 by Ben Gamari at 2023-10-05T23:32:54-04:00
Allow perf changes

These appear to be spurious.

Metric Decrease:
    MultiLayerModules
    T13701
    T14697

- - - - -
b238204e by Bryan Richter at 2023-10-06T04:53:24-04:00
Work around perf note fetch failure

Addresses #24055.

(cherry picked from commit 63afb701a1638d7bd32c34fb24a9fd3ff897b634)

- - - - -
99cb835d by Ben Gamari at 2023-10-06T04:53:44-04:00
Release GHC 9.8.1

- - - - -


7 changed files:

- .gitlab/test-metrics.sh
- compiler/ghc.cabal.in
- configure.ac
- libraries/hpc
- libraries/stm
- testsuite/tests/hpc/T17073.stdout
- utils/hpc


Changes:

=====================================
.gitlab/test-metrics.sh
=====================================
@@ -17,7 +17,12 @@ fail() {
 
 function pull() {
   local ref="refs/notes/$REF"
-  run git fetch -f "$NOTES_ORIGIN" "$ref:$ref"
+  # 2023-10-04: `git fetch` started failing, first on Darwin in CI and then on
+  # Linux locally, both using git version 2.40.1. See #24055. One workaround is
+  # to set a larger http.postBuffer, although this is definitely a workaround.
+  # The default should work just fine. The error could be in git, GitLab, or
+  # perhaps the networking tube (including all proxies etc) between the two.
+  run git -c http.postBuffer=2097152 fetch -f "$NOTES_ORIGIN" "$ref:$ref"
   echo "perf notes ref $ref is $(git rev-parse $ref)"
 }
 


=====================================
compiler/ghc.cabal.in
=====================================
@@ -105,7 +105,7 @@ Library
                    array      >= 0.1 && < 0.6,
                    filepath   >= 1   && < 1.5,
                    template-haskell == 2.21.*,
-                   hpc        == 0.6.*,
+                   hpc        >= 0.6 && < 0.8,
                    transformers >= 0.5 && < 0.7,
                    exceptions == 0.10.*,
                    semaphore-compat,


=====================================
configure.ac
=====================================
@@ -13,7 +13,7 @@ dnl
 # see what flags are available. (Better yet, read the documentation!)
 #
 
-AC_INIT([The Glorious Glasgow Haskell Compilation System], [9.8.0], [glasgow-haskell-bugs at haskell.org], [ghc-AC_PACKAGE_VERSION])
+AC_INIT([The Glorious Glasgow Haskell Compilation System], [9.8.1], [glasgow-haskell-bugs at haskell.org], [ghc-AC_PACKAGE_VERSION])
     # Version on master must be X.Y (not X.Y.Z) for ProjectVersionMunged variable
     # to be useful (cf #19058). However, the version must have three components
     # (X.Y.Z) on stable branches (e.g. ghc-9.2) to ensure that pre-releases are
@@ -22,7 +22,7 @@ AC_INIT([The Glorious Glasgow Haskell Compilation System], [9.8.0], [glasgow-has
 AC_CONFIG_MACRO_DIRS([m4])
 
 # 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


=====================================
libraries/hpc
=====================================
@@ -1 +1 @@
-Subproject commit 50d520bf6002ab55032e233dced0556ad63ad0c0
+Subproject commit 6bc66b7ae490d28d6b17d01c2959d6c8ce3e7a79


=====================================
libraries/stm
=====================================
@@ -1 +1 @@
-Subproject commit f8582bd6e31df73b4f18f676650ae183624d8eb2
+Subproject commit a1e91f4ea010be61a9c8a94d6a200bfb4dc6d049


=====================================
testsuite/tests/hpc/T17073.stdout
=====================================
@@ -7,7 +7,7 @@
 100% alternatives used (0/0)
 100% local declarations used (0/0)
 100% top-level declarations used (1/1)
-hpc tools, version 0.68
+hpc tools, version 0.69
 Writing: Main.hs.html
 Writing: hpc_index.html
 Writing: hpc_index_fun.html


=====================================
utils/hpc
=====================================
@@ -1 +1 @@
-Subproject commit eb800fe76409f54660335496592f777ae215ff92
+Subproject commit 4b46380a06c16e38a5b9d623ab85538ee4b2319d



View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/5695bb42099077817e43a0a41d4f5526ac68550b...99cb835d46624c0ef81fa3a5a11513d402c58460

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/5695bb42099077817e43a0a41d4f5526ac68550b...99cb835d46624c0ef81fa3a5a11513d402c58460
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/20231006/e4360eea/attachment-0001.html>


More information about the ghc-commits mailing list