Skip to content

Commit bec7e9d

Browse files
committed
Preparing v0.14.2 release.
1 parent 3af5700 commit bec7e9d

File tree

9 files changed

+28
-11
lines changed

9 files changed

+28
-11
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# API Umbrella Change Log
22

3+
## 0.14.2 (2017-05-26)
4+
5+
### Changed
6+
7+
- **Upgrade bundled software dependencies:**
8+
- Elasticsearch 2.4.4 -\> 2.4.5
9+
- MongoDB 3.2.12 -\> 3.2.13
10+
- Rsyslog 8.26.0 -\> 8.27.0
11+
12+
### Fixed
13+
14+
- **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))
15+
- **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))
16+
- **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))
17+
318
## 0.14.1 (2017-04-23)
419

520
This update contains a few bug fixes and one potential security fix. Upgrading is recommended.

build/package/verify/download_previous_packages

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ previous_versions=(
1717
0.12.0-1
1818
0.13.0-1
1919
0.14.0-1
20+
0.14.1-1
2021
)
2122

2223
distros=(

build/package/verify/spec/localhost/service_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -660,4 +660,5 @@ def install_package(version)
660660
it_behaves_like "package upgrade", "0.12.0-1"
661661
it_behaves_like "package upgrade", "0.13.0-1"
662662
it_behaves_like "package upgrade", "0.14.0-1"
663+
it_behaves_like "package upgrade", "0.14.1-1"
663664
end

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:jessie
22

3-
ENV API_UMBRELLA_VERSION 0.14.1-1~jessie
3+
ENV API_UMBRELLA_VERSION 0.14.2-1~jessie
44

55
# Install API Umbrella
66
RUN echo "deb http://dl.bintray.com/nrel/api-umbrella-debian jessie main" >> /etc/apt/sources.list.d/api-umbrella.list

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = '0.14.1'
60+
version = '0.14.2'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '0.14.1'
62+
release = '0.14.2'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

docs/developer/compiling-from-source.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Installing from a [binary package](../getting-started.html#installation) is reco
1111
## Compiling & Installing
1212

1313
```sh
14-
$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.14.1.tar.gz
15-
$ tar -xvf api-umbrella-0.14.1.tar.gz
16-
$ cd api-umbrella-0.14.1
14+
$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.14.2.tar.gz
15+
$ tar -xvf api-umbrella-0.14.2.tar.gz
16+
$ cd api-umbrella-0.14.2
1717
$ sudo ./build/scripts/install_build_dependencies
1818
$ ./configure
1919
$ make

src/api-umbrella/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.1
1+
0.14.2

website/source/index.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ title: API Umbrella - Open Source API Management
1919
</div>
2020
<img class="img-responsive img-center" src="images/overview.png" data-at2x="images/[email protected]" alt="" width="676" height="266">
2121
<div class="links">
22-
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>
22+
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>
2323
</div>
2424
</div>
2525
</div>

website/source/install.html.erb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ sudo yum install api-umbrella</pre>
6767

6868
<div id="other" class="platform-download" style="display: none;">
6969
<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>
70-
<pre>$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.14.1.tar.gz
71-
$ tar -xvf api-umbrella-0.14.1.tar.gz
72-
$ cd api-umbrella-0.14.1
70+
<pre>$ curl -OLJ https://github.com/NREL/api-umbrella/archive/v0.14.2.tar.gz
71+
$ tar -xvf api-umbrella-0.14.2.tar.gz
72+
$ cd api-umbrella-0.14.2
7373
$ make
7474
$ sudo make install</pre>
7575
</div>

0 commit comments

Comments
 (0)