# \[QUESTION\] Notification for Package Updates on Hackage?

**URL:** https://discourse.haskell.org/t/question-notification-for-package-updates-on-hackage/10101
**Category:** Uncategorized
**Created:** [August 6, 2024, 3:39am UTC](https://discourse.haskell.org/t/question-notification-for-package-updates-on-hackage/10101 "2024-08-06T03:39:23Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![vst](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.haskell.org/vst/32/4530_2.png) [@vst](https://discourse.haskell.org/u/vst)
#### Post date: [August 6, 2024, 3:39am UTC](https://discourse.haskell.org/t/question-notification-for-package-updates-on-hackage/10101/1 "2024-08-06T03:39:23Z")

</div>

I often find myself checking Hackage for updates to some packages. If there is a new release, I check the CHANGELOG or the homepage of the package for more information, and take action in my codebases if required.

Is there a tool or service where I can select some packages of interest and get notification emails when they are updated?

I understand that the new Hackage server does it, but only for packages that I am a maintainer of.

---

<div class="post-metadata">

### Author: ![f-a](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.haskell.org/f-a/32/2740_2.png) [@f-a](https://discourse.haskell.org/u/f-a)
#### Post date: [August 6, 2024, 7:38am UTC](https://discourse.haskell.org/t/question-notification-for-package-updates-on-hackage/10101/2 "2024-08-06T07:38:54Z")

</div>

You can do that using RSS.

Go to the package of your choice in Hackage, click the `RSS` link and copy it in your feed reader.

The feed item will contain the number of the new release, who uploaded it, and the changelog in full.

There are many feed readers to choose from. I prefer ones running locally, but there are online readers too and many of those can send notification emails.

---

<div class="post-metadata">

### Author: ![blamario](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.haskell.org/blamario/32/860_2.png) [@blamario](https://discourse.haskell.org/u/blamario)
#### Post date: [August 10, 2024, 9:29pm UTC](https://discourse.haskell.org/t/question-notification-for-package-updates-on-hackage/10101/3 "2024-08-10T21:29:12Z")

</div>

> [@vst](#):
>
> I understand that the new Hackage server does it, but only for packages that I am a maintainer of.

Also for the packages that are dependencies of the packages you maintain. So the most direct way to get those notifications would be to publish your own package.

---

<div class="post-metadata">

### Author: ![vst](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.haskell.org/vst/32/4530_2.png) [@vst](https://discourse.haskell.org/u/vst)
#### Post date: [August 11, 2024, 2:28am UTC](https://discourse.haskell.org/t/question-notification-for-package-updates-on-hackage/10101/4 "2024-08-11T02:28:29Z")

</div>

Thanks. That will work well for libraries.

For apps, I will try the recommendation of @f-a.
