Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

base: changelog does not mention strictness changes to sum
I noticed that the implementation of `sum` changed from `foldl` to `foldl'` between `base-4.15` and `base-4.16`: * https://hackage.haskell.org/package/base-4.15.1.0/docs/src/GHC.List.html#sum * https://hackage.haskell.org/package/base-4.16.0.0/docs/src/GHC.List.html#sum Yet the change is not reflected in https://hackage.haskell.org/package/base-4.16.4.0/changelog. It would be nice to find out what else has changed in this area (`product`? anything else?) and write it down. Pitfalls of `sum` implemented via `foldl` used to be a common educational example, so it might be useful for posterity to document that it no longer applies in haddocks for `sum`, not only in the changelog.
issue