Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 342de61

Browse files
committed
Merge branch 'master' into 4968-fix-multiline-translations
2 parents 111986c + fc1a665 commit 342de61

51 files changed

Lines changed: 190334 additions & 180612 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.rst

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,44 @@ Removals and deprecations:
100100
``ckan.lib.cli.CkanCommand`` and all other helpers in ckan.lib.cli.
101101
Extensions should instead implement CLIs using the new IClick interface.
102102

103+
v.2.8.4 2020-04-15
104+
==================
105+
106+
General notes:
107+
* Note: This version does not requires a requirements upgrade on source installations
108+
* Note: This version does not requires a database upgrade
109+
* Note: This version does not require a Solr schema upgrade
110+
* Note: This version includes changes in the way the ``SameSite`` flag is set on the ``auth_tkt`` authorization cookie.
111+
The new default setting for it is ``SameSite=Lax``, which aligns with the behaviour of all major browsers. If for some
112+
reason you need a different value, you can set it via the :ref:`who.samesite` configuration option. You can find more
113+
information on the ``SameSite`` attribute `here <https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#SameSite_cookies>`_.
114+
115+
116+
Fixes:
117+
118+
* Fix for number of datasets displayed on the My organizations tab (`#3580 <https://github.com/ckan/ckan/pull/3580>`_)
119+
* Allow chaining of core actions (`#4509 <https://github.com/ckan/ckan/pull/4509>`_)
120+
* Password reset request - generally tighten it up (`#4636 <https://github.com/ckan/ckan/pull/4636>`_)
121+
* Fix start option in data_dict (`#4920 <https://github.com/ckan/ckan/pull/4920>`_)
122+
* Add missing get_action calls in activity actions (`#4967 <https://github.com/ckan/ckan/pull/4967>`_)
123+
* Fix datetime comparison in resource_dict_save (`#5033 <https://github.com/ckan/ckan/pull/5033>`_)
124+
* Fix wrong _ function reference in user blueprint (`#5046 <https://github.com/ckan/ckan/pull/5046>`_)
125+
* Allow vocabulary_id in /api/2/util/tag/autocomplete (`#5071 <https://github.com/ckan/ckan/pull/5071>`_)
126+
* Fetch less data for `get_all_entity_ids` (`#5201 <https://github.com/ckan/ckan/pull/5201>`_)
127+
* Show error in text view if xhr failed (`#5271 <https://github.com/ckan/ckan/pull/5271>`_)
128+
* Fix code injection in autocomplete module (`#5064 <https://github.com/ckan/ckan/pull/5064>`_)
129+
* Check for the existence of tracking summary data before attempting to load it (`#5030 <https://github.com/ckan/ckan/pull/5139>`_)
130+
* Disable streaming for pylons requests (`#4431 <https://github.com/ckan/ckan/pull/4657>`_)
131+
* Filter revisions shown according to dataset permissions
132+
* Fix wrong resource URL after ValidationErrors (`#5152 <https://github.com/ckan/ckan/pull/5153>`_)
133+
* Update JS vendor libraries
134+
* Samesite support in auth cookie (`#5255 <https://github.com/ckan/ckan/pull/5255>`_)
135+
* Handle missing resources in case we have a race condition with the DataPusher (`#3980 <https://github.com/ckan/ckan/pull/4918>`_)
136+
* Add the g object to toolkit
137+
* Use returned facets in group controller (`#2713 <https://github.com/ckan/ckan/pull/5167>`_)
138+
* Updated translations
139+
* Fix broken translation in image view placeholder (`#5099 <https://github.com/ckan/ckan/pull/5116>`_)
140+
103141
v.2.8.3 2019-07-03
104142
==================
105143

@@ -306,6 +344,38 @@ Changes and deprecations:
306344
to specify this argument explicitly, as in future it'll become required.
307345
* The ``ckan.recaptcha.version`` config option is now removed, since v2 is the only valid version now (#4061)
308346

347+
v.2.7.7 2020-04-15
348+
==================
349+
350+
General notes:
351+
* Note: This version does not requires a requirements upgrade on source installations
352+
* Note: This version does not requires a database upgrade
353+
* Note: This version does not require a Solr schema upgrade
354+
* Note: This version includes changes in the way the ``SameSite`` flag is set on the ``auth_tkt`` authorization cookie.
355+
The new default setting for it is ``SameSite=Lax``, which aligns with the behaviour of all major browsers. If for some
356+
reason you need a different value, you can set it via the :ref:`who.samesite` configuration option. You can find more
357+
information on the ``SameSite`` attribute `here <https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#SameSite_cookies>`_.
358+
359+
360+
Fixes:
361+
362+
* Fix for number of datasets displayed on the My organizations tab (`#3580 <https://github.com/ckan/ckan/pull/3580>`_)
363+
* Password reset request - generally tighten it up (`#4636 <https://github.com/ckan/ckan/pull/4636>`_)
364+
* Add missing get_action calls in activity actions (`#4967 <https://github.com/ckan/ckan/pull/4967>`_)
365+
* Fix datetime comparison in resource_dict_save (`#5033 <https://github.com/ckan/ckan/pull/5033>`_)
366+
* Allow vocabulary_id in /api/2/util/tag/autocomplete (`#5071 <https://github.com/ckan/ckan/pull/5071>`_)
367+
* Fetch less data for `get_all_entity_ids` (`#5201 <https://github.com/ckan/ckan/pull/5201>`_)
368+
* Show error in text view if xhr failed (`#5271 <https://github.com/ckan/ckan/pull/5271>`_)
369+
* Fix code injection in autocomplete module (`#5064 <https://github.com/ckan/ckan/pull/5064>`_)
370+
* Check for the existence of tracking summary data before attempting to load it (`#5030 <https://github.com/ckan/ckan/pull/5139>`_)
371+
* Fix broken translation in image view placeholder (`#5099 <https://github.com/ckan/ckan/pull/5116>`_)
372+
* Filter revisions shown according to dataset permissions
373+
* Update JS vendor libraries
374+
* Use returned facets in group controller (`#2713 <https://github.com/ckan/ckan/pull/5167>`_)
375+
* Samesite support in auth cookie (`#5255 <https://github.com/ckan/ckan/pull/5255>`_)
376+
* Handle missing resources in case we have a race condition with the DataPusher (`#3980 <https://github.com/ckan/ckan/pull/4918>`_)
377+
* Add the g object to toolkit
378+
309379
v.2.7.6 2019-07-03
310380
==================
311381

@@ -528,6 +598,30 @@ Deprecations:
528598
jobs (http://docs.ckan.org/en/latest/maintaining/background-tasks.html). Extensions can still
529599
of course use Celery but they will need to handle the management themselves.
530600

601+
v.2.6.9 2020-04-15
602+
==================
603+
604+
General notes:
605+
* Note: This version does not requires a requirements upgrade on source installations
606+
* Note: This version does not requires a database upgrade
607+
* Note: This version does not require a Solr schema upgrade
608+
609+
Fixes:
610+
611+
* Fix for number of datasets displayed on the My organizations tab (`#3580 <https://github.com/ckan/ckan/pull/3580>`_)
612+
* Fix datetime comparison in resource_dict_save (`#5033 <https://github.com/ckan/ckan/pull/5033>`_)
613+
* Fetch less data for `get_all_entity_ids` (`#5201 <https://github.com/ckan/ckan/pull/5201>`_)
614+
* Show error in text view if xhr failed (`#5271 <https://github.com/ckan/ckan/pull/5271>`_)
615+
* Allow vocabulary_id in /api/2/util/tag/autocomplete (`#5071 <https://github.com/ckan/ckan/pull/5071>`_)
616+
* Fix code injection in autocomplete module (`#5064 <https://github.com/ckan/ckan/pull/5064>`_)
617+
* Fix broken translation in image view placeholder (`#5099 <https://github.com/ckan/ckan/pull/5116>`_)
618+
* Filter revisions shown according to dataset permissions
619+
* Update JS vendor libraries
620+
* Use returned facets in group controller (`#2713 <https://github.com/ckan/ckan/pull/5167>`_)
621+
* Samesite support in auth cookie (`#5255 <https://github.com/ckan/ckan/pull/5255>`_)
622+
* Handle missing resources in case we have a race condition with the DataPusher (`#3980 <https://github.com/ckan/ckan/pull/4918>`_)
623+
* Add the g object to toolkit
624+
531625
v.2.6.8 2019-07-03
532626
==================
533627

0 commit comments

Comments
 (0)