Skip to content

Commit

Permalink
release 0.8.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Norberg committed Nov 15, 2016
1 parent e39ed71 commit 973caaa
Show file tree
Hide file tree
Showing 6 changed files with 33 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.19-SNAPSHOT'
version = '0.8.19'

ext {
isSnapshotRelease = version.endsWith('-SNAPSHOT')
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 @@ -55,7 +55,7 @@ public SystemExitException usage(String error)
err.println("");
err.println(" Examples:");
err.println(" $ " + programName + " selfupdate");
err.println(" $ " + programName + " selfupdate 0.8.19-SNAPSHOT");
err.println(" $ " + programName + " selfupdate 0.8.19");
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.19-SNAPSHOT
0.8.19
2 changes: 1 addition & 1 deletion digdag-docs/src/command_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ Updates the executable binary file to the latest version or specified version. E
.. code-block:: console
$ digdag selfupdate
$ digdag selfupdate 0.8.18
$ digdag selfupdate 0.8.19
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.19
releases/release-0.8.18
releases/release-0.8.17
releases/release-0.8.16
Expand Down
28 changes: 28 additions & 0 deletions digdag-docs/src/releases/release-0.8.19.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Release 0.8.19
==============

Server Changes
--------------

* Added an ``isAdmin`` flag to the ``Authenticator.Result`` interface that can be used to grant users adminstrator rights.
* Added an administration API with an endpoint that can be used by administrators to get ``userinfo`` metadata for a session attempt.

UI Changes
----------

* Added a button for retrying failed attempts.
* Added a button for pausing scheduled workflow execution.

Workflow Changes
----------------

* The ``gcs_wait>`` operator now allows ``gs://`` URI's on the operator command line.
* Added an ``http>`` operator that can be used to make HTTP requests.
* The ``for_each`` operator now generates subtasks with shorter names.
* Fixed an issue where the ``td_table_export>`` operator was not able to use ``aws.s3.*`` secrets.
* The ``s3_wait>`` operator will now not retry ``4xx` HTTP errors except for ``429 Too Many Requests`` and ``408 Request Timeout``.
* Fixed an issue where the ``td>`` operator ``download_file`` option would sometimes download a corrupt file.

Release Date
------------
2016-11-15

0 comments on commit 973caaa

Please sign in to comment.