Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
redvox committed Dec 8, 2016
1 parent 9e1d61b commit 13f4d3b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [3.0.0] - 2016-12-08

### Changed
- If pipeline is closed by rules (aka build windows), gatekeeper will answer with 'denied'

## [2.0.0] - 2016-12-08

### Changed
Expand Down Expand Up @@ -32,8 +37,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Fixed ghost tickets

This changelog is inspired by [keepachangelog.com](http://http://keepachangelog.com/de/)
[Unreleased]: https://github.com/otto-de/gatekeeper/compare/2.0.0...HEAD
[Unreleased]: https://github.com/otto-de/gatekeeper/compare/3.0.0...HEAD
[1.0.0]: https://github.com/otto-de/gatekeeper/compare/950359a01244904fa169492e4391e402398f2b17...1.0.0
[1.0.1]: https://github.com/otto-de/gatekeeper/compare/1.0.0...1.0.1
[1.0.2]: https://github.com/otto-de/gatekeeper/compare/1.0.1...1.0.2
[2.0.0]: https://github.com/otto-de/gatekeeper/compare/1.0.1...2.0.0
[3.0.0]: https://github.com/otto-de/gatekeeper/compare/2.0.0...3.0.0
6 changes: 3 additions & 3 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ Example config file::
}
}

Rules
-----
Rules (Build Window)
--------------------
The rules define the time when gates can be accessed via API. Outside of these times, the gates will always be closed
for API calls.
for API calls and calls for queueing will be answered with 'denied'.

The rules have the following format::

Expand Down
2 changes: 2 additions & 0 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ To use the queue feature you can send a put to the ``/api/services`` endpoint wi

The Response holds your ticket with a timestamp and a token.

If the gate is closed manually or closed by rules (aka business time window) Gatekeeper will answer with 'denied'.

**Example**

.. code-block:: guess
Expand Down
3 changes: 2 additions & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
__version__ = (2, 0, 0)
__version__ = (3, 0, 0)

0 comments on commit 13f4d3b

Please sign in to comment.