Skip to content

Commit

Permalink
Preparing v0.14.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
GUI committed May 26, 2017
1 parent 3af5700 commit bec7e9d
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 11 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# API Umbrella Change Log

## 0.14.2 (2017-05-26)

### Changed

- **Upgrade bundled software dependencies:**
- Elasticsearch 2.4.4 -\> 2.4.5
- MongoDB 3.2.12 -\> 3.2.13
- Rsyslog 8.26.0 -\> 8.27.0

### Fixed

- **Fix removing last item from array fields in admin:** A regression in v0.14.0 prevented admins from removing the last items in certain array fields in the admin (for example, removing all roles from a user or API). ([#367](https://github.com/NREL/api-umbrella/issues/367))
- **Fix SSL validation against external Elasticsearch databse:** Allow for explicit configuration of SSL settings when connecting to an external Elasticsearch database that is using HTTPS. Thanks to [@martinzuern](https://github.com/martinzuern). ([#364](https://github.com/NREL/api-umbrella/issues/364))
- **Increase default memory storge for configuration data**: Increase the default memory allocated for storing the live API backend configuration data from 600KB to 3MB to prevent potential issues when publishing lots of API backends. ([api.data.gov#385](https://github.com/18F/api.data.gov/issues/385))

## 0.14.1 (2017-04-23)

This update contains a few bug fixes and one potential security fix. Upgrading is recommended.
Expand Down
1 change: 1 addition & 0 deletions build/package/verify/download_previous_packages
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ previous_versions=(
0.12.0-1
0.13.0-1
0.14.0-1
0.14.1-1
)

distros=(
Expand Down
1 change: 1 addition & 0 deletions build/package/verify/spec/localhost/service_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -660,4 +660,5 @@ def install_package(version)
it_behaves_like "package upgrade", "0.12.0-1"
it_behaves_like "package upgrade", "0.13.0-1"
it_behaves_like "package upgrade", "0.14.0-1"
it_behaves_like "package upgrade", "0.14.1-1"
end
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:jessie

ENV API_UMBRELLA_VERSION 0.14.1-1~jessie
ENV API_UMBRELLA_VERSION 0.14.2-1~jessie

# Install API Umbrella
RUN echo "deb http://dl.bintray.com/nrel/api-umbrella-debian jessie main" >> /etc/apt/sources.list.d/api-umbrella.list
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = '0.14.1'
version = '0.14.2'
# The full version, including alpha/beta/rc tags.
release = '0.14.1'
release = '0.14.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 3 additions & 3 deletions docs/developer/compiling-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ Installing from a [binary package](../getting-started.html#installation) is reco
## Compiling & Installing

```sh
$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.14.1.tar.gz
$ tar -xvf api-umbrella-0.14.1.tar.gz
$ cd api-umbrella-0.14.1
$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.14.2.tar.gz
$ tar -xvf api-umbrella-0.14.2.tar.gz
$ cd api-umbrella-0.14.2
$ sudo ./build/scripts/install_build_dependencies
$ ./configure
$ make
Expand Down
2 changes: 1 addition & 1 deletion src/api-umbrella/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.1
0.14.2
2 changes: 1 addition & 1 deletion website/source/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ title: API Umbrella - Open Source API Management
</div>
<img class="img-responsive img-center" src="images/overview.png" data-at2x="images/overview@2x.png" alt="" width="676" height="266">
<div class="links">
Version 0.14.1&nbsp;&nbsp;&nbsp;&nbsp;&sdot;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://github.com/NREL/api-umbrella"><i class="fa fa-github" aria-hidden="true"></i>GitHub Project</a>
Version 0.14.2&nbsp;&nbsp;&nbsp;&nbsp;&sdot;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://github.com/NREL/api-umbrella"><i class="fa fa-github" aria-hidden="true"></i>GitHub Project</a>
</div>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions website/source/install.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ sudo yum install api-umbrella</pre>

<div id="other" class="platform-download" style="display: none;">
<p>We build binary packages for a variety of Linux distributions. These binary packages are the recommended way to install API Umbrella. However, if binary packages aren't available, you can also compile from source (also, please <a href="https://github.com/NREL/api-umbrella/issues">let us know</a> if you'd like to see binaries for other operating systems):</p>
<pre>$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.14.1.tar.gz
$ tar -xvf api-umbrella-0.14.1.tar.gz
$ cd api-umbrella-0.14.1
<pre>$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.14.2.tar.gz
$ tar -xvf api-umbrella-0.14.2.tar.gz
$ cd api-umbrella-0.14.2
$ make
$ sudo make install</pre>
</div>
Expand Down

0 comments on commit bec7e9d

Please sign in to comment.