-
Notifications
You must be signed in to change notification settings - Fork 19
/
CHANGES
80 lines (57 loc) · 2.02 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
Changelog
=========
Here you can see the full list of changes between each Flask-Sitemap
release.
Version 0.4.0 (released 2022-02-16)
-----------------------------------
- Adds Python 3.10 support
- Removes Flask-Script library in favor of click.
Version 0.3.0 (released 2018-05-02)
-----------------------------------
New features
~~~~~~~~~~~~
- Adds integration with Click library for Flask 0.11+.
Improved features
~~~~~~~~~~~~~~~~~
- Improves exclusion of specific URLs without parameters
from to the sitemap. (closes #24) (closes #25) (closes #26)
Bug fixes
~~~~~~~~~
- Reuses exiting request context if it exits. (closes #35)
- Prepends '/' to endpoint urls for compatibility with Flask 1.0.
- Improves documentation about ``SITEMAP_URL_SCHEME``.
- Fixes typo in ``SITEMAP_VIEW_DECORATORS``.
Notes
~~~~~
- Removes support for Python 2.6 and 3.3.
Version 0.2.0 (released 2016-01-05)
-----------------------------------
New features
~~~~~~~~~~~~
- Adds new command line interface to generate sitemap. (#13)
Improved features
~~~~~~~~~~~~~~~~~
- Adds 'application/octet-stream' content type to GZipped response.
(#20)
Bug fixes
~~~~~~~~~
- Uses pytest-runner as distutils command with dependency resolution.
Notes
~~~~~
- Improves integration of PyTest and addresses problem with missing
test requirements. (#15)
- If you want to use command line interface install dependencies using
`pip install flask-sitemap[cli]`.
Version 0.1.0 (released 2015-02-03)
-----------------------------------
- Initial public release. (#12)
- Support for configurable gzip response.
- Quickstart example for signals and caching. (#8)
- Support for sitemap pages. (#3)
- Adds an option ``SITEMAP_VIEW_DECORATORS`` for specifying list of view
decorators. (#4)
- Adds support for ignoring certain endpoints through
``SITEMAP_IGNORE_ENDPOINTS`` configuration option. (#2)
- Adds new option to automatically include all endpoints without
parameters. In order to enable this feature set
``SITEMAP_INCLUDE_RULES_WITHOUT_PARAMS`` to ``True``. (#2)