From f1df1df720d8a96aa0752fd2239d3f6f9d068b05 Mon Sep 17 00:00:00 2001 From: Laurent Rene de Cotret Date: Tue, 2 Jul 2024 16:15:25 -0400 Subject: [PATCH 1/4] Support for GHC 9.8 --- .github/workflows/ci.yaml | 1 + src/TestContainers.hs | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ba48d67..15c82bf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,6 +18,7 @@ jobs: - 9.2.8 - 9.4.8 - 9.6.4 + - 9.8.2 steps: - uses: actions/checkout@v2 diff --git a/src/TestContainers.hs b/src/TestContainers.hs index 519b44e..f9c254f 100644 --- a/src/TestContainers.hs +++ b/src/TestContainers.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE DuplicateRecordFields #-} -- | -- This module shall be used as entrypoint to the testcontainers library. It exports -- all the necessary types and functions for most common use-cases. From 434ca5bab1f1452e7fb7e054836e936ad392c2b4 Mon Sep 17 00:00:00 2001 From: Laurent Rene de Cotret Date: Tue, 2 Jul 2024 16:18:00 -0400 Subject: [PATCH 2/4] Add GHC 9.8.2 to the `tested-with` clause in cabal file --- testcontainers.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcontainers.cabal b/testcontainers.cabal index 5bba371..e8f7863 100644 --- a/testcontainers.cabal +++ b/testcontainers.cabal @@ -20,7 +20,7 @@ extra-source-files: README.md tested-with: - GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.2 + GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.2 || ==9.8.2 source-repository head type: git From 1184f8388906ed3b53839b2c89c55ff31d53d3b7 Mon Sep 17 00:00:00 2001 From: Alexander Biehl Date: Wed, 3 Jul 2024 14:01:37 +0200 Subject: [PATCH 3/4] Update TestContainers.hs --- src/TestContainers.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/TestContainers.hs b/src/TestContainers.hs index f9c254f..56980f5 100644 --- a/src/TestContainers.hs +++ b/src/TestContainers.hs @@ -1,4 +1,5 @@ {-# LANGUAGE DuplicateRecordFields #-} + -- | -- This module shall be used as entrypoint to the testcontainers library. It exports -- all the necessary types and functions for most common use-cases. From 692b740c957e575628e7e20cb44060e2c832b7ab Mon Sep 17 00:00:00 2001 From: Laurent Rene de Cotret Date: Wed, 3 Jul 2024 08:01:50 -0400 Subject: [PATCH 4/4] Fixed formatting with ormolu --- src/TestContainers.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/TestContainers.hs b/src/TestContainers.hs index f9c254f..56980f5 100644 --- a/src/TestContainers.hs +++ b/src/TestContainers.hs @@ -1,4 +1,5 @@ {-# LANGUAGE DuplicateRecordFields #-} + -- | -- This module shall be used as entrypoint to the testcontainers library. It exports -- all the necessary types and functions for most common use-cases.