[ckan-changes] [ckan/ckan] fabcc7: [#2364] Add resource format for GeoJSON

GitHub noreply at github.com
Wed Sep 28 09:41:55 UTC 2016


  Branch: refs/heads/fix-ne-locale
  Home:   https://github.com/ckan/ckan
  Commit: fabcc7f2b73a552ed7c44ed9c75182ae4b2c7dbc
      https://github.com/ckan/ckan/commit/fabcc7f2b73a552ed7c44ed9c75182ae4b2c7dbc
  Author: Olaf Veerman <olaf.veerman at gmail.com>
  Date:   2016-09-16 (Fri, 16 Sep 2016)

  Changed paths:
    M ckan/config/resource_formats.json

  Log Message:
  -----------
  [#2364] Add resource format for GeoJSON
As listed on: https://tools.ietf.org/html/rfc7946


  Commit: 076a4498c6ce96adf677dd9fd1e34b3ca5f9fe8d
      https://github.com/ckan/ckan/commit/076a4498c6ce96adf677dd9fd1e34b3ca5f9fe8d
  Author: Ralf Gommers <ralf.gommers at googlemail.com>
  Date:   2016-09-20 (Tue, 20 Sep 2016)

  Changed paths:
    M doc/maintaining/installing/deployment.rst

  Log Message:
  -----------
  Fix html rendering of apache and nginx config file paths.

Sphinx doesn't allow substitutions in verbatim (double backticks) blocks.
This caused the substitutions to not be expanded.  See
http://docs.ckan.org/en/latest/maintaining/installing/deployment.html
at the start of sections 6 and 8.


  Commit: 4f1781032a4abba1fbac4de36c6737a85c499a3b
      https://github.com/ckan/ckan/commit/4f1781032a4abba1fbac4de36c6737a85c499a3b
  Author: Adrià Mercader <amercadero at gmail.com>
  Date:   2016-09-20 (Tue, 20 Sep 2016)

  Changed paths:
    M doc/maintaining/installing/deployment.rst

  Log Message:
  -----------
  Merge pull request #3244 from rgommers/fix-deployment-paths

Fix html rendering of apache and nginx config file paths.


  Commit: 23a6baa5d4bafe3b99852be11e51c439ab80e473
      https://github.com/ckan/ckan/commit/23a6baa5d4bafe3b99852be11e51c439ab80e473
  Author: Adrià Mercader <amercadero at gmail.com>
  Date:   2016-09-20 (Tue, 20 Sep 2016)

  Changed paths:
    M ckan/config/resource_formats.json

  Log Message:
  -----------
  Merge pull request #3242 from energy-data/2364-geojson

[#2364] Add resource format for GeoJSON


  Commit: e0fdb8dcd279857890a301f90d82d18293983a32
      https://github.com/ckan/ckan/commit/e0fdb8dcd279857890a301f90d82d18293983a32
  Author: Ian Ward <ian at excess.org>
  Date:   2016-09-22 (Thu, 22 Sep 2016)

  Changed paths:
    M ckan/tests/logic/action/test_get.py
    M ckanext/example_ipermissionlabels/tests/test_example_ipermissionlabels.py

  Log Message:
  -----------
  fix tests, c.user is leaking


  Commit: 4b309c5192e2349a5ad85300dbb74c3c9debba10
      https://github.com/ckan/ckan/commit/4b309c5192e2349a5ad85300dbb74c3c9debba10
  Author: Florian Brucker <florian.brucker at mb.karlsruhe.de>
  Date:   2016-09-23 (Fri, 23 Sep 2016)

  Changed paths:
    M ckan/config/environment.py
    M ckan/lib/jobs.py
    M ckan/tests/lib/test_jobs.py

  Log Message:
  -----------
  [#3243] Fix problems with database usage in background workers.

RQ workers execute jobs in separate processes. However, the CKAN
environment in these processes wasn't initialized correctly, leading to
problems with SQLAlchemy, whose engines cannot be shared between
processes.


  Commit: 559a816328636c12c490311ccdca7da8525ed4ed
      https://github.com/ckan/ckan/commit/559a816328636c12c490311ccdca7da8525ed4ed
  Author: Florian Brucker <florian.brucker at mb.karlsruhe.de>
  Date:   2016-09-23 (Fri, 23 Sep 2016)

  Changed paths:
    M doc/contributing/architecture.rst
    M doc/maintaining/background-tasks.rst

  Log Message:
  -----------
  [#3243] Document database access in background jobs.


  Commit: 658ac4e0186fa784ca1e8529e496c449b3e8712e
      https://github.com/ckan/ckan/commit/658ac4e0186fa784ca1e8529e496c449b3e8712e
  Author: Florian Brucker <florian.brucker at mb.karlsruhe.de>
  Date:   2016-09-23 (Fri, 23 Sep 2016)

  Changed paths:
    M ckan/plugins/interfaces.py
    M ckan/tests/test_coding_standards.py

  Log Message:
  -----------
  [#3243] Document when `IConfigurable.configure` is called.


  Commit: df570b9d74bbe9ffd44bbb4846a19929b0aad6a7
      https://github.com/ckan/ckan/commit/df570b9d74bbe9ffd44bbb4846a19929b0aad6a7
  Author: Florian Brucker <florian.brucker at mb.karlsruhe.de>
  Date:   2016-09-23 (Fri, 23 Sep 2016)

  Changed paths:
    M ckan/tests/config/test_environment.py

  Log Message:
  -----------
  [#3243] Fix broken test case `test_update_config_env_vars`.

The test case changes some configuration options, including the
PostgreSQL URL, to invalid values but failed to correctly restore the
original values afterwards. This wasn't a problem previously because
`ckan.config.update_config` didn't re-initialize the SQLAlchemy engine
if it had already been initialized. The latter behavior has been changed
while fixing #3243, and hence the invalid config values now triggered an
error.


  Commit: a5408647c18bcc3a6317a8c83cfb37c72068e90c
      https://github.com/ckan/ckan/commit/a5408647c18bcc3a6317a8c83cfb37c72068e90c
  Author: Ian Ward <ian at excess.org>
  Date:   2016-09-23 (Fri, 23 Sep 2016)

  Changed paths:
    M ckan/config/environment.py
    M ckan/lib/jobs.py
    M ckan/plugins/interfaces.py
    M ckan/tests/config/test_environment.py
    M ckan/tests/lib/test_jobs.py
    M ckan/tests/test_coding_standards.py
    M doc/contributing/architecture.rst
    M doc/maintaining/background-tasks.rst

  Log Message:
  -----------
  Merge pull request #3247 from torfsen/3243-multiple-db-background-jobs

[#3243] Fix problems with database usage in background workers


  Commit: a33e3808a5b95cfae25b95e91e2fd9d6c7e09045
      https://github.com/ckan/ckan/commit/a33e3808a5b95cfae25b95e91e2fd9d6c7e09045
  Author: amercader <amercadero at gmail.com>
  Date:   2016-09-28 (Wed, 28 Sep 2016)

  Changed paths:
    M ckan/config/environment.py
    M ckan/config/resource_formats.json
    M ckan/lib/jobs.py
    M ckan/plugins/interfaces.py
    M ckan/tests/config/test_environment.py
    M ckan/tests/lib/test_jobs.py
    M ckan/tests/logic/action/test_get.py
    M ckan/tests/test_coding_standards.py
    M ckanext/example_ipermissionlabels/tests/test_example_ipermissionlabels.py
    M doc/contributing/architecture.rst
    M doc/maintaining/background-tasks.rst
    M doc/maintaining/installing/deployment.rst

  Log Message:
  -----------
  Merge branch 'master' into fix-ne-locale


Compare: https://github.com/ckan/ckan/compare/38b886b00062...a33e3808a5b9


More information about the ckan-changes mailing list