Skip to content

Releases: florimondmanca/asgi-sitemaps

Version 1.0.0

13 Feb 14:06
009b0f0
Compare
Choose a tag to compare

1.0 - 2022-02-13

Added

  • Now marked as Production/Stable software. (Pull #14)
  • Add official support for Python 3.9 and Python 3.10. (Pull #13)

Version 0.3.2

07 Jul 08:35
Compare
Choose a tag to compare

0.3.2 - 2020-07-07

Fixed

  • Fix support for async items. (Pull #9)

Version 0.3.1

05 Jul 20:48
Compare
Choose a tag to compare

0.3.1 - 2020-07-05

Fixed

  • Fix Scope type hint: values are now Any.

Version 0.3.0

05 Jul 17:35
126fcde
Compare
Choose a tag to compare

0.3.0 - 2020-07-05

This release changes the approach from "scrape the ASGI app to gather URLs" to a programmatic class-based API inspired by Django's sitemap framework.

As such, the command line application does not exist anymore. Users are expected to define Sitemap classes, compose them into a SitemapApp endpoint, and add that to their ASGI app routing table.

See the new README.md documentation for more information.

Changed

  • Switch to a class-based dynamic endpoint API. (Pull #4)