Skip to content

Commit

Permalink
release 0.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Norberg committed Aug 18, 2016
1 parent ee02ff2 commit 95320e6
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ apply plugin: 'maven'

allprojects {
group = 'io.digdag'
version = '0.8.8'
version = '0.8.9'

apply plugin: 'idea'
apply plugin: 'java'
Expand Down
2 changes: 1 addition & 1 deletion digdag-cli/src/main/java/io/digdag/cli/SelfUpdate.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public SystemExitException usage(String error)
err.println("");
err.println(" Examples:");
err.println(" $ digdag selfupdate");
err.println(" $ digdag selfupdate 0.8.8");
err.println(" $ digdag selfupdate 0.8.9");
err.println("");
return systemExit(error);
}
Expand Down
2 changes: 1 addition & 1 deletion digdag-core/src/main/resources/io/digdag/core/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.8
0.8.9
2 changes: 1 addition & 1 deletion digdag-docs/src/command_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ Updates the executable binary file to the latest version or specified version. E
.. code-block:: console
$ digdag selfupdate
$ digdag selfupdate 0.8.8
$ digdag selfupdate 0.8.9
Server-mode commands
----------------------------------
Expand Down
1 change: 1 addition & 0 deletions digdag-docs/src/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Release Notes
:maxdepth: 1

# add new version here
releases/release-0.8.9
releases/release-0.8.8
releases/release-0.8.7
releases/release-0.8.6
Expand Down
29 changes: 29 additions & 0 deletions digdag-docs/src/releases/release-0.8.9.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Release 0.8.9
=============

Client mode changes
-------------------

* ``start`` command now hints about ``retry`` command when trying to start an already existing session.
* CLI now respects ``https_proxy``, ``HTTPS_PROXY``, ``http_proxy`` and ``HTTP_PROXY`` environment variables.
* Added a new ``secrets`` command that an be used to set, list and delete per-project secrets.


Server mode changes
-------------------

* Starting an attempt of a workflow with more than 1000 tasks now fails with ``400 Bad Request`` instead of ``500 Internal Error``.


General changes
---------------

* Added ``td.proxy.use_ssl`` parameter to support HTTPS forward proxies.
* ``td_partial_delete>`` operator now accepts raw epoch integers in ``from:`` and ``to:`` parameters.
* ``td`` operators now respects ``https_proxy``, ``HTTPS_PROXY``, ``http_proxy`` and ``HTTP_PROXY`` environment variables.
* Added a secret management mechanism that can be used to securely provide operators with credentials such as api keys, user names and passwords.


Release Date
------------
2016-08-18

0 comments on commit 95320e6

Please sign in to comment.