Version 0.2.12.0
This commit is contained in:
+2
-1
@@ -3,7 +3,7 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
## Unreleased
|
## [0.2.12.0] - 2015-10-25
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Embed associations, e.g. `/film?select=*,director(*)` - @ruslantalpa
|
- Embed associations, e.g. `/film?select=*,director(*)` - @ruslantalpa
|
||||||
@@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Tolerate a missing role in user creation - @calebmer
|
- Tolerate a missing role in user creation - @calebmer
|
||||||
|
- Avoid unnecessary text re-encoding - @ruslantalpa
|
||||||
|
|
||||||
## [0.2.11.1] - 2015-09-01
|
## [0.2.11.1] - 2015-09-01
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
},
|
},
|
||||||
"POSTGREST_VER": {
|
"POSTGREST_VER": {
|
||||||
"description": "Version of PostgREST to deploy",
|
"description": "Version of PostgREST to deploy",
|
||||||
"value": "0.2.11.1"
|
"value": "0.2.12.0"
|
||||||
},
|
},
|
||||||
"DB_NAME": {
|
"DB_NAME": {
|
||||||
"description": "Database name",
|
"description": "Database name",
|
||||||
|
|||||||
+3
-11
@@ -7,22 +7,14 @@ The [release page](https://github.com/begriffs/postgrest/releases/latest) has pr
|
|||||||
```sh
|
```sh
|
||||||
# Untar the release (available at https://github.com/begriffs/postgrest/releases/latest)
|
# Untar the release (available at https://github.com/begriffs/postgrest/releases/latest)
|
||||||
|
|
||||||
$ tar zxf postgrest-0.2.11.1-osx.tar.xz
|
$ tar zxf postgrest-0.2.12.0-osx.tar.xz
|
||||||
|
|
||||||
# Try running it
|
# Try running it
|
||||||
$ ./postgrest-0.2.11.1
|
$ ./postgrest
|
||||||
|
|
||||||
# You should see a usage help message
|
# You should see a usage help message
|
||||||
```
|
```
|
||||||
|
|
||||||
<div class="admonition danger">
|
|
||||||
<p class="admonition-title">Deprecation Warning</p>
|
|
||||||
|
|
||||||
<p>The filename inside the tarball currently includes a version
|
|
||||||
number, but this will be removed in the next version for cleaner
|
|
||||||
post-extraction scripting.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="admonition warning">
|
<div class="admonition warning">
|
||||||
<p class="admonition-title">Invitation to Contribute</p>
|
<p class="admonition-title">Invitation to Contribute</p>
|
||||||
|
|
||||||
@@ -36,7 +28,7 @@ $ ./postgrest-0.2.11.1
|
|||||||
We'll learn the meaning of the command line flags later, but here is a minimal example of running the app. It does all operations as user `postgres`, including for unauthenticated requests.
|
We'll learn the meaning of the command line flags later, but here is a minimal example of running the app. It does all operations as user `postgres`, including for unauthenticated requests.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ ./postgrest-0.2.11.1 -d dbname -U postgres --a postgres --v1schema public
|
$ ./postgrest -d dbname -U postgres --a postgres --v1schema public
|
||||||
```
|
```
|
||||||
|
|
||||||
### Building from Source
|
### Building from Source
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@ name: postgrest
|
|||||||
description: Reads the schema of a PostgreSQL database and creates RESTful routes
|
description: Reads the schema of a PostgreSQL database and creates RESTful routes
|
||||||
for the tables and views, supporting all HTTP verbs that security
|
for the tables and views, supporting all HTTP verbs that security
|
||||||
permits.
|
permits.
|
||||||
version: 0.2.11.1
|
version: 0.2.12.0
|
||||||
synopsis: REST API for any Postgres database
|
synopsis: REST API for any Postgres database
|
||||||
license: MIT
|
license: MIT
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
|
|||||||
+1
-1
@@ -4,4 +4,4 @@ packages:
|
|||||||
extra-deps:
|
extra-deps:
|
||||||
- Ranged-sets-0.3.0
|
- Ranged-sets-0.3.0
|
||||||
- packdeps-0.4.1
|
- packdeps-0.4.1
|
||||||
resolver: lts-3.7
|
resolver: lts-3.10
|
||||||
|
|||||||
Reference in New Issue
Block a user