Skip to content

Commit cefceb0

Browse files
committed
Preparing v0.14.1 release.
1 parent 8937114 commit cefceb0

File tree

9 files changed

+39
-11
lines changed

9 files changed

+39
-11
lines changed

CHANGELOG.md

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

3+
## 0.14.1 (2017-04-23)
4+
5+
This update contains a few bug fixes and one potential security fix. Upgrading is recommended.
6+
7+
### Upgrade Instructions
8+
9+
If you're upgrading a previous API Umbrella version, you may upgrade the `api-umbrella` package using your package manager.
10+
11+
### Changed
12+
13+
- **Upgrade bundled software dependencies:**
14+
- OpenResty 1.11.2.2 -\> 1.11.2.3
15+
- Ruby 2.3.3 -\> 2.3.4
16+
- Rsyslog 8.24.0 -\> 8.26.0
17+
18+
### Fixed
19+
20+
- **Missing validations on API backends:** It was possible to create API backends that omitted fields that should have been required in the Sub-URL Request Settings and Advanced Requests Rewriting sections. This could cause errors in loading the API configuration. ([#360](https://github.com/NREL/api-umbrella/issues/360))
21+
- **Creating new admin groups:** Creating new admin groups in the admin was broken in v0.14.0. ([#347](https://github.com/NREL/api-umbrella/issues/347))
22+
- **Outgoing example URL in admin:** In the API backend form of the admin, the example outgoing URL was incorrect in v0.14.0. ([b4ce3e28](https://github.cmm/NREL/api-umbrella/commit/b4ce3e28e77859c05b1989342cc8f0ce6fe85a06))
23+
- **Ember.js deprecation warnings:** Fix some deprecation warnings in the admin tool. ([3e019140](https://github.cmm/NREL/api-umbrella/commit/3e0191409c1b24db3733b04d450de904b1492389), [27bf988d](https://github.cmm/NREL/api-umbrella/commit/27bf988d5b7c6f5d9bc1e6e8ef22f22a67e84064))
24+
25+
### Security
26+
27+
- **Don't pass admin session cookie to API backends:** The session cookie the API Umbrella admin uses is now stripped from requests to API backends. ([89371149](https://github.cmm/NREL/api-umbrella/commit/89371149585c1c94d1420bd8ce190a6fcdadb59b))
28+
329
## 0.14.0 (2017-02-22)
430

531
This update focuses on upgrading various internal components of API Umbrella. It also offers new features and various bug fixes. A few potential security issues are also addressed. Upgrading is recommended, but there are some potential compatibility issues to note. See the Upgrade Instructions section below.

build/package/verify/download_previous_packages

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ previous_versions=(
1616
0.11.1-1
1717
0.12.0-1
1818
0.13.0-1
19+
0.14.0-1
1920
)
2021

2122
distros=(

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -659,4 +659,5 @@ def install_package(version)
659659
it_behaves_like "package upgrade", "0.11.1-1"
660660
it_behaves_like "package upgrade", "0.12.0-1"
661661
it_behaves_like "package upgrade", "0.13.0-1"
662+
it_behaves_like "package upgrade", "0.14.0-1"
662663
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.0-1~jessie
3+
ENV API_UMBRELLA_VERSION 0.14.1-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.0'
60+
version = '0.14.1'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '0.14.0'
62+
release = '0.14.1'
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.0.tar.gz
15-
$ tar -xvf api-umbrella-0.14.0.tar.gz
16-
$ cd api-umbrella-0.14.0
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
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.0
1+
0.14.1

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.0&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.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>
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.0.tar.gz
71-
$ tar -xvf api-umbrella-0.14.0.tar.gz
72-
$ cd api-umbrella-0.14.0
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
7373
$ make
7474
$ sudo make install</pre>
7575
</div>

0 commit comments

Comments
 (0)