Skip to content

Commit

Permalink
Merge branch 'dev-v2.7' into 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Jul 3, 2019
2 parents e838541 + 9a6e9cd commit e515116
Show file tree
Hide file tree
Showing 44 changed files with 4,963 additions and 73 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -8,6 +8,28 @@ Changelog
---------


v.2.7.6 2019-07-03
==================

General notes:
* Note: This version does not requires a requirements upgrade on source installations
* Note: This version does not requires a database upgrade
* Note: This version does not require a Solr schema upgrade

Fixes:

* Fix problem with reindex-fast (`#4352 <https://github.com/ckan/ckan/issues/4352>`_)
* Fix `include_total` in `datastore_search` (`#4446 <https://github.com/ckan/ckan/issues/4446>`_)
* Fix `ValueError` in `url_validator` (`#4629 <https://github.com/ckan/ckan/issues/4629>`_)
* Strip local path when uploading file in IE (`#4608 <https://github.com/ckan/ckan/issues/4608>`_)
* Increase size of h1 headings to 1.8em (`#4665 <https://github.com/ckan/ckan/issues/4665>`_)
* Fix broken div nesting in the `user/read_base.html` (`#4672 <https://github.com/ckan/ckan/issues/4672>`_)
* Use `get_action` to call activity actions (`#4684 <https://github.com/ckan/ckan/issues/4684>`_)
* Make reorder resources button translatable (`#4838 <https://github.com/ckan/ckan/issues/4838>`_)
* More robust auth functions for `resource_view_show` (`#4827 <https://github.com/ckan/ckan/issues/4827>`_)
* Allow to customize the DataProxy URL (`#4874 <https://github.com/ckan/ckan/issues/4874>`_)
* Allow custom CKAN callback URL for the DataPusher (`#4878 <https://github.com/ckan/ckan/issues/4878>`_)

v2.7.5 2018-12-12
=================

Expand Down
2 changes: 1 addition & 1 deletion ckan/__init__.py
@@ -1,6 +1,6 @@
# encoding: utf-8

__version__ = '2.7.5'
__version__ = '2.7.6'

__description__ = 'CKAN Software'
__long_description__ = \
Expand Down
4 changes: 4 additions & 0 deletions ckan/config/middleware/flask_app.py
Expand Up @@ -207,6 +207,10 @@ def ckan_after_request(response):
# Set CORS headers if necessary
response = set_cors_headers_for_response(response)

# Default to cache-control private if it was not set
if response.cache_control.private is None:
response.cache_control.private = True

return response


Expand Down

0 comments on commit e515116

Please sign in to comment.