Skip to content

Releases: cicirello/generate-sitemap

generate-sitemap, v1.10.1

08 Jun 18:29
eb8db82
Compare
Choose a tag to compare

[1.10.1] - 2024-06-08

Fixed

  • Escape characters that must be escaped in XML.

Dependencies

  • Bump cicirello/pyaction from 4.26.0 to 4.30.0

generate-sitemap, v1.10.0

15 Nov 14:55
6364319
Compare
Choose a tag to compare

[1.10.0] - 2023-11-15

Added

  • Ability to specify list of paths to exclude from sitemap, via new input exclude-paths.

Dependencies

  • Bump cicirello/pyaction from 4.25.0 to 4.26.0

generate-sitemap, v1.9.2

05 Oct 18:34
abcba11
Compare
Choose a tag to compare

[1.9.2] - 2023-10-05

Fixed

  • Fix minor bug in regex used to detect if a page has a meta robots noindex directive in head.

CI/CD

  • Bump Python to 3.12 in CI/CD workflows when running unit tests.

Dependencies

  • Bump cicirello/pyaction from 4.14.1 to 4.25.0, including upgrading Python within the Docker container to 3.12.

generate-sitemap, v1.9.1

16 Jan 21:03
e63c84b
Compare
Choose a tag to compare

[1.9.1] - 2023-01-16

Fixed

  • Case-insensitive check for <meta name="robots" content="noindex"> in head of html files.
  • Correct handling of <meta content="noindex" name="robots"> (i.e., content before name).

Dependencies

  • Bump cicirello/pyaction from 4.12.0 to 4.14.1

generate-sitemap, v1.9.0

25 Oct 20:20
105142a
Compare
Choose a tag to compare

[1.9.0] - 2022-10-25

Added

  • Option to include dates only in the lastmod fields of XML sitemaps. Default includes full date-time.

CI/CD

  • Bump Python to 3.11 in CI/CD workflows.

Dependencies

  • Bump cicirello/pyaction from 4.11.1 to 4.12.0, which includes upgrading Python in the Docker container to 3.11.0.

generate-sitemap, v1.8.6

24 Oct 21:38
4229084
Compare
Choose a tag to compare

[1.8.6] - 2022-10-24

Fixed

  • Some users may be using the action on a self-hosted runner not yet updated to a version supporting the
    new GitHub Actions GITHUB_OUTPUT environment file. This patch adds backwards compatibility for those
    users (e.g., it falls back to using the deprecated set-output if GITHUB_OUTPUT doesn't exist).

Dependencies

  • Bump cicirello/pyaction from 4.11.0 to 4.11.1

generate-sitemap, v1.8.5

20 Oct 20:44
cde63db
Compare
Choose a tag to compare

[1.8.5] - 2022-10-20

Fixed

  • Replaced the usage of GitHub Action's deprecated set-output with the new $GITHUB_OUTPUT env file.
  • Handle alternate casing of boolean inputs in GitHub workflow YAML files (previously expected lowercase).
  • Refactored entrypoint for improved maintainability, and ease of planned new functionality.

Dependencies

  • Bumped pyaction from 4.7.0 to 4.11.0, which includes upgrading Python in the Docker container to 3.10.7.

generate-sitemap, v1.8.4

03 Aug 18:01
d5374f9
Compare
Choose a tag to compare

[1.8.4] - 2022-08-03

Changed

  • Refactored index.html dropping logic to ease support for additional dropped index filenames.

Fixed

  • Checks .shtml files for noindex directives, excluding those that have it from the sitemap (@TravisBrace in #50).
  • Added index.shtml to set of index filenames that are dropped from URLs in sitemap.

Dependencies

  • Bumped base docker image cicirello/pyaction from 4.3.1 to 4.7.0.

New Contributors

generate-sitemap, v1.8.3

22 Apr 15:49
41eec24
Compare
Choose a tag to compare

[1.8.3] - 2022-04-22

Fixed

  • Corrected check for robots noindex directive in case when non-utf8 characters present in an html file.
  • Disabled pycache to protect against potential future bug. Currently no imports so no pycache created, but if future versions import local py modules, a pycache would be created during run in repo. Disabled creation of pycache now to avoid.

Dependencies

  • Bumped base Docker image cicirello/pyaction from 4.2.0 to 4.3.1.

generate-sitemap, v1.8.2

04 Mar 19:33
Compare
Choose a tag to compare

[1.8.2] - 2022-03-04

Changed

  • Bumped Python to 3.10.
  • Bumped base Docker image to pyaction 4.2.0.
  • Now pulls base Docker image from the GitHub Container Registry rather
    than Docker Hub under the assumption that pulling from GitHub from
    GitHub Actions is likely faster than from Docker Hub.