feat(datasets): add filtering support to datasets Atom feed#3578
Merged
ThibaudDauce merged 3 commits intoopendatateam:mainfrom Jan 6, 2026
Merged
feat(datasets): add filtering support to datasets Atom feed#3578ThibaudDauce merged 3 commits intoopendatateam:mainfrom
ThibaudDauce merged 3 commits intoopendatateam:mainfrom
Conversation
bjperson
added a commit
to bjperson/cdata
that referenced
this pull request
Dec 18, 2025
Add a link to the datasets Atom feed on the search page. The link includes current search filters, allowing users to subscribe to filtered search results via their RSS reader. Requires opendatateam/udata#3578 for filter support on the Atom endpoint.
bjperson
added a commit
to bjperson/cdata
that referenced
this pull request
Dec 18, 2025
Move Atom feed link from page to SearchPage component as requested. Uses BrandedButton with RiRssLine icon, positioned next to sort control. URL built from nonFalsyParams for reactive filter support. Requires opendatateam/udata#3578 for filter support on the Atom endpoint.
2d17745 to
518ebf8
Compare
Allow users to subscribe to filtered dataset searches via RSS readers using parameters like q, tag, organization, and format.
518ebf8 to
b8fccf1
Compare
nicolaskempf57
approved these changes
Jan 6, 2026
nicolaskempf57
added a commit
to datagouv/cdata
that referenced
this pull request
Jan 6, 2026
Add a link to the datasets Atom feed on the search page. The link includes current search filters, allowing users to subscribe to filtered search results via their RSS reader. Requires opendatateam/udata#3578 for filter support on the Atom endpoint. --------- Co-authored-by: Nicolas KEMPF <nicolas@conciergerie.dev>
This was referenced Feb 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The
/api/1/datasets/recent.atomendpoint now supports all dataset filters, allowing users to subscribe to filtered dataset searches via RSS readers.Changes
@api.expect(dataset_parser.parser)DatasetApiParser.parse_filters()Usage examples
/api/1/datasets/recent.atom?q=transport
/api/1/datasets/recent.atom?organization=534fff81a3a7292c64a77e5c
/api/1/datasets/recent.atom?tag=environnement&format=csv
Use case
Enable targeted monitoring of new datasets directly from RSS readers (Feedly, Inoreader, Thunderbird...) without requiring API client development. Useful for journalists, researchers, and citizens who want alerts on specific topics.
Follows up on discussion in datagouv/cdata#826.
Fixes #3577