Skip to content

Commit

Permalink
types.ede: DisambiguateRecordFields -> DuplicateRecordFields
Browse files Browse the repository at this point in the history
It implies `DuplicateRecordFields` (which I don't even think is
necessary under older GHCs), but is required for compliation on GHC
9.8.

See: https://gitlab.haskell.org/ghc/ghc/-/issues/24317
  • Loading branch information
endgame committed Jan 9, 2024
1 parent a44a8d1 commit d836f68
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions configs/templates/types.ede
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-# LANGUAGE DisambiguateRecordFields #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE StrictData #-}

{-# OPTIONS_GHC -fno-warn-unused-matches #-}

Expand Down
2 changes: 2 additions & 0 deletions lib/amazonka/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

### Fixed

- `amazonka-*`: GHC 9.8 support
[\#9xx](https://github.com/brendanhay/amazonka/pull/9xx)
- `amazonka`: Allow reading the AWS config file when the credentials file is missing [\#951](https://github.com/brendanhay/amazonka/pull/951).
This is useful when you are using a role-based authentication method or AWS IAM Identity Center (formerly AWS SSO) which does not require a credentials file.
Before this fix you had to create an empty credentials file for these methods to work correctly.
Expand Down

0 comments on commit d836f68

Please sign in to comment.