Update cartodb-postgresql to 0.24.0

pull/14284/head
Raul Marin 6 years ago
parent 5e9b5b019b
commit e51e849d6e

@ -3,6 +3,11 @@ Development
### NOTICES
- Dataservices-API has changed and now it needs permissions to execute DS queries for each API key. You can update the existing users running this rake: `bundle exec rake carto:api_key:create_ds_permissions`
- This release upgrades the CartoDB PostgreSQL extension to `0.24.0`. Run the following to have it available:
```shell
cd $(git rev-parse --show-toplevel)/lib/sql
sudo make install
```
### Features
- Add dataservices permissions in Auth API (#14263)

@ -10,8 +10,8 @@ class HomeController < ApplicationController
OS_VERSION = "Description:\tUbuntu 16.04"
PG_VERSION = 'PostgreSQL 10'.freeze
POSTGIS_VERSION = '2.4'.freeze
CDB_VALID_VERSION = '0.23'.freeze
CDB_LATEST_VERSION = '0.23.2'.freeze
CDB_VALID_VERSION = '0.24.0'.freeze
CDB_LATEST_VERSION = '0.24.0'.freeze
REDIS_VERSION = '4'.freeze
RUBY_BIN_VERSION = 'ruby 2.2'.freeze
NODE_VERSION = 'v6.9.2'.freeze

@ -540,7 +540,7 @@ module CartoDB
# Upgrade the cartodb postgresql extension
def upgrade_cartodb_postgres_extension(statement_timeout = nil, cdb_extension_target_version = nil)
if cdb_extension_target_version.nil?
cdb_extension_target_version = '0.23.2'
cdb_extension_target_version = '0.24.0'
end
@user.in_database(as: :superuser, no_cartodb_in_schema: true) do |db|

@ -12,7 +12,7 @@
},
"works_with": {
"dataservices-api-client-extension": "0.26.0",
"carto_postgresql_ext": "0.23.2",
"carto_postgresql_ext": "0.24.0",
"odbc_fdw": "0.2.0",
"carto_windshaft": ">=6.2.0",
"carto_sql_api": ">=2.1.0",

@ -1 +1 @@
Subproject commit 51a669f93c5fd6cd0dea7131e41887be13d00daf
Subproject commit aeec2bbe067942e577df78f1b9348503a2b48c04
Loading…
Cancel
Save