diff --git a/CHANGELOG.md b/CHANGELOG.md index c4412793ca..88b258b791 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added +### Fixed + +### Changed + +## [0.5.0.0] - 2018-05-14 + +### Added + - The configuration (e.g. `postgrest.conf`) now accepts arbitrary settings that will be passed through as session-local database settings. This can be used to pass in secret keys directly as strings, or via OS environment variables. For instance: `app.settings.jwt_secret = "$(MYAPP_JWT_SECRET)"` will take `MYAPP_JWT_SECRET` from the environment and make it available to postgresql functions as `current_setting('app.settings.jwt_secret')`. Only `app.settings.*` values in the configuration file are treated in this way. - @canadaduane - #256, Add support for bulk UPSERT with POST and single UPSERT with PUT - @steve-chavez - #1078, Add ability to specify source column in embed - @steve-chavez diff --git a/app.json b/app.json index 4a2a2d7ae9..9ce68aab81 100644 --- a/app.json +++ b/app.json @@ -10,7 +10,7 @@ }, "POSTGREST_VER": { "description": "Version of PostgREST to deploy", - "value": "0.4.4.0" + "value": "0.5.0.0" }, "DB_URI": { "description": "Database connection string", diff --git a/postgrest.cabal b/postgrest.cabal index c3f8d0d0d2..5782309c09 100644 --- a/postgrest.cabal +++ b/postgrest.cabal @@ -2,7 +2,7 @@ name: postgrest description: Reads the schema of a PostgreSQL database and creates RESTful routes for the tables and views, supporting all HTTP verbs that security permits. -version: 0.4.4.0 +version: 0.5.0.0 synopsis: REST API for any Postgres database license: MIT license-file: LICENSE