summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2023-02-14 09:12:48 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2023-02-16 10:17:08 -0500
commit34cd308e23206e71b48e205970741746ed66ea8e (patch)
tree7b281e6f910c63ce313d35e166f6537d1ae68871
parent518af81421860b982c57a87596bb8315c50abe90 (diff)
downloadhaskell-34cd308e23206e71b48e205970741746ed66ea8e.tar.gz
base: Note move of GHC.Stack.CCS.whereFrom to GHC.InfoProv in changelog
Fixes #22883.
-rw-r--r--libraries/base/changelog.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md
index e9c0b037ce..67535438d9 100644
--- a/libraries/base/changelog.md
+++ b/libraries/base/changelog.md
@@ -6,6 +6,7 @@
types significantly.
## 4.18.0.0 *TBA*
+
* `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))
* Add `forall a. Functor (p a)` superclass for `Bifunctor p` ([CLC proposal #91](https://github.com/haskell/core-libraries-committee/issues/91))
@@ -68,6 +69,13 @@
* Add `Data.Typeable.heqT`, a kind-heterogeneous version of
`Data.Typeable.eqT`
([CLC proposal #99](https://github.com/haskell/core-libraries-committee/issues/99))
+ * Various declarations GHC's new info-table provenance feature have been
+ moved from `GHC.Stack.CCS` to a new `GHC.InfoProv` module:
+ * The `InfoProv`, along its `ipName`, `ipDesc`, `ipTyDesc`, `ipLabel`,
+ `ipMod`, and `ipLoc` fields, have been moved.
+ * `InfoProv` now has additional `ipSrcFile` and `ipSrcSpan` fields. `ipLoc`
+ is now a function computed from these fields.
+ * The `whereFrom` function has been moved
## 4.17.0.0 *August 2022*