[Git][ghc/ghc][ghc-9.8] 7 commits: Bump process submodule to 1.6.18.0

Ben Gamari (@bgamari) gitlab at gitlab.haskell.org
Wed Sep 20 15:48:35 UTC 2023



Ben Gamari pushed to branch ghc-9.8 at Glasgow Haskell Compiler / GHC


Commits:
68e111c8 by Ben Gamari at 2023-09-20T09:19:33-04:00
Bump process submodule to 1.6.18.0

- - - - -
2616921f by Ben Gamari at 2023-09-20T09:19:33-04:00
Bump hsc2hs submodule to 0.68.10

- - - - -
a591fde5 by Ben Gamari at 2023-09-20T09:19:33-04:00
Bump deepseq submodule to 1.5.0.0

- - - - -
f1b28bc7 by Ben Gamari at 2023-09-20T09:19:33-04:00
Bump parsec submodule to 3.1.17.0

- - - - -
e9c4eb47 by Ben Gamari at 2023-09-20T09:19:33-04:00
Bump nofib submodule

- - - - -
31a2dd67 by Ben Gamari at 2023-09-20T09:19:33-04:00
base: Update changelog

- - - - -
09233267 by Ben Gamari at 2023-09-20T09:19:33-04:00
template-haskell: Update changelog

- - - - -


10 changed files:

- libraries/base/changelog.md
- libraries/base/tests/System/all.T
- libraries/base/tests/all.T
- libraries/deepseq
- libraries/parsec
- libraries/process
- libraries/template-haskell/changelog.md
- nofib
- testsuite/tests/rts/all.T
- utils/hsc2hs


Changes:

=====================================
libraries/base/changelog.md
=====================================
@@ -1,6 +1,8 @@
 # Changelog for [`base` package](http://hackage.haskell.org/package/base)
 
-## 4.19.0.0 *TBA*
+## 4.19.0.0 *October 2023*
+
+  * Shipped with GHC 9.8.1
   * Add `{-# WARNING in "x-partial" #-}` to `Data.List.{head,tail}`.
     Use `{-# OPTIONS_GHC -Wno-x-partial #-}` to disable it.
     ([CLC proposal #87](https://github.com/haskell/core-libraries-committee/issues/87) and [#114](https://github.com/haskell/core-libraries-committee/issues/114))
@@ -41,6 +43,7 @@
   * Add rewrite rules for conversion between Int64/Word64 and Float/Double on 64-bit architectures ([CLC proposal #203](https://github.com/haskell/core-libraries-committee/issues/203)).
 
 ## 4.18.0.0 *March 2023*
+
   * Shipped with GHC 9.6.1
   * `Foreign.C.ConstPtr.ConstrPtr` was added to encode `const`-qualified
     pointer types in foreign declarations when using `CApiFFI` extension. ([CLC proposal #117](https://github.com/haskell/core-libraries-committee/issues/117))


=====================================
libraries/base/tests/System/all.T
=====================================
@@ -4,8 +4,7 @@ test('getArgs001',  normal, compile_and_run, [''])
 test('getEnv001',   normal, compile_and_run, [''])
 test('T5930',   normal, compile_and_run, [''])
 
-test('system001', [js_broken(22349), when(opsys("mingw32"), skip), req_process], \
-	compile_and_run, [''])
+test('system001', [when(opsys("mingw32"), skip), req_process], compile_and_run, [''])
 test('Timeout001', js_broken(22261), compile_and_run, [''])
 test('T16466', normal, compile_and_run, [''])
 test('T23399', normal, compile_and_run, [''])


=====================================
libraries/base/tests/all.T
=====================================
@@ -160,7 +160,7 @@ test('T2528', normal, compile_and_run, [''])
 # May 2014: seems to work on msys2
 # May 2018: The behavior of printf seems very implementation dependent.
 #     so let's normalise the output.
-test('T4006', [js_broken(22349), normalise_fun(normalise_quotes), req_process], compile_and_run, [''])
+test('T4006', [normalise_fun(normalise_quotes), req_process], compile_and_run, [''])
 
 test('T5943', normal, compile_and_run, [''])
 test('T5962', normal, compile_and_run, [''])


=====================================
libraries/deepseq
=====================================
@@ -1 +1 @@
-Subproject commit eb1eff5236d2a38e10f49e12301daa52ad20915b
+Subproject commit 045cee4801ce6a66e9992bff648d951d8e5fcd68


=====================================
libraries/parsec
=====================================
@@ -1 +1 @@
-Subproject commit 4cc55b481b2eaf0606235522a6a340c10ca8dbba
+Subproject commit 647c570489a210584d9d99be39e1c02054ea7c64


=====================================
libraries/process
=====================================
@@ -1 +1 @@
-Subproject commit 4fb076dc1f8fe5ccc6dfab041bd5e621aa9e8e2c
+Subproject commit 3466b14dacddc4628427c4d787482899dd0b17cd


=====================================
libraries/template-haskell/changelog.md
=====================================
@@ -2,6 +2,8 @@
 
 ## 2.21.0.0
 
+  * Shipped with GHC 9.8.1
+
   * Record fields now belong to separate `NameSpace`s, keyed by the parent of
     the record field. This is the name of the first constructor of the parent type,
     even if this constructor does not have the field in question.  


=====================================
nofib
=====================================
@@ -1 +1 @@
-Subproject commit 2cee92861c43ac74154bbd155a83f9f4ad0b9f2f
+Subproject commit 274cc3f7479431e3a52c78840b3daee887e0414f


=====================================
testsuite/tests/rts/all.T
=====================================
@@ -223,7 +223,6 @@ test('exec_signals',
      [when(opsys('mingw32'), skip),
       pre_cmd('$MAKE -s --no-print-directory exec_signals-prep'),
       cmd_prefix('./exec_signals_prepare'),
-      js_broken(22355),
       req_process],
      compile_and_run, [''])
 


=====================================
utils/hsc2hs
=====================================
@@ -1 +1 @@
-Subproject commit 1ee25e923b769c8df310f7e8690ad7622eb4d446
+Subproject commit cff121fe3afd90990bbff025e06ff2437076fd09



View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/e4b5cdbdee243e50cc417e1da9507a78222bfb19...092332676022a4b31dcb8a7da596e47cff3147e4

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/e4b5cdbdee243e50cc417e1da9507a78222bfb19...092332676022a4b31dcb8a7da596e47cff3147e4
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/20230920/46d88238/attachment-0001.html>


More information about the ghc-commits mailing list