@@ -9,6 +9,78 @@ Changelog
99
1010.. towncrier release notes start
1111
12+ v.2.11.1 2024-12-11
13+ ===================
14+
15+ Migration notes
16+ ---------------
17+
18+ - This version requires a requirements upgrade on source installations
19+
20+ Minor changes
21+ -------------
22+ - Allow configuring datastore full text field indexes with new
23+ `ckan.datastore.default_fts_index_field_types ` config option.
24+
25+ The default is "text tsvector" but this can be changed to
26+ "" to avoiding automatically creating separate full text indexes
27+ for any individual columns. This will result in a significant reduction
28+ in storage space. The whole-row full text index still
29+ exists for all tables.
30+
31+ After upgrading to CKAN 2.12 the default changes to "".
32+
33+ Use the `ckan datastore fts-index ` command to remove existing
34+ column indexes to reclaim database space. (`#5847
35+ <https://github.com/ckan/ckan/pull/5847> `_)
36+ - Allow SECRET_KEY to fall back to beaker.session.secret for easier upgrades
37+ (`#7853 <https://github.com/ckan/ckan/pull/7853 >`_)
38+ - `datastore_info ` action method now has `side_effect_free `, allowing it to be
39+ available via GET requests in the API. (`#8457
40+ <https://github.com/ckan/ckan/pull/8457> `_)
41+ - Remove unnecessary beaker.session.secret warning (`#8468
42+ <https://github.com/ckan/ckan/pull/8468> `_)
43+ - Upgrade requirements with security issues (`#8505
44+ <https://github.com/ckan/ckan/pull/8505> `_)
45+ - Register pytest plugins as entrypoints to make them available to all
46+ extensions (`#8507 <https://github.com/ckan/ckan/pull/8507 >`_)
47+ - Don't add author email to pyproject.toml if empty when creating an extension
48+ (`#8519 <https://github.com/ckan/ckan/pull/8519 >`_)
49+ - Add id attribute to AnonymousUser
50+ (`#8571 <https://github.com/ckan/ckan/pull/8571 >`_)
51+ - Automate publishing CKAN package to PyPI (`#8520
52+ <https://github.com/ckan/ckan/pull/8520> `_)
53+ - Automate creation of GitHub release (`#8570
54+ <https://github.com/ckan/ckan/pull/8570> `_)
55+
56+
57+ Bugfixes
58+ --------
59+
60+ - fix Page view tracking of datasets is not working if ckan is running at a
61+ subpath (`#5468 <https://github.com/ckan/ckan/pull/5468 >`_)
62+ - Load the right i18n files for Chinese locales in DataTables View. (`#8432
63+ <https://github.com/ckan/ckan/pull/8432> `_)
64+ - Fix exception in `ckan generate extension ` command (`#8437
65+ <https://github.com/ckan/ckan/pull/8437> `_)
66+ - Template helper `member_count ` will return 0
67+ for unauthorized users. (`#8438 <https://github.com/ckan/ckan/pull/8438 >`_)
68+ - Fix `tracking ` extension to use ORM models and comply with new `ckan.model `
69+ models (`#8447 <https://github.com/ckan/ckan/pull/8447 >`_)
70+ - Fix internal server error when viewing a deleted user. (`#8482
71+ <https://github.com/ckan/ckan/pull/8482> `_)
72+ - Fix display of user organizations page if user belongs to no organizations.
73+ (`#8483 <https://github.com/ckan/ckan/pull/8483 >`_)
74+ - Fix error when viewing history of a deleted resource or its package before
75+ the deletion date. (`#8501 <https://github.com/ckan/ckan/pull/8501 >`_)
76+ - Fix showing '0 members' for all groups on a dataset page. (`#8537
77+ <https://github.com/ckan/ckan/pull/8537> `_)
78+ - Include ``public `` folder in MANIFEST.in
79+ (`#8565 <https://github.com/ckan/ckan/pull/8565 >`_)
80+ - Fix 403 error when a user removes itself from a group
81+ (`#8256 <https://github.com/ckan/ckan/pull/8256 >`_)
82+
83+
1284v.2.11.0 2024-08-21
1385===================
1486
0 commit comments