Skip to content

Commit

Permalink
release 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Norberg committed Jan 17, 2017
1 parent a60cad1 commit b6cbab8
Show file tree
Hide file tree
Showing 6 changed files with 35 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.9.3-SNAPSHOT'
version = '0.9.3'

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 @@ -90,7 +90,7 @@ public SystemExitException usage(String error)
err.println("");
err.println(" Examples:");
err.println(" $ " + programName + " selfupdate");
err.println(" $ " + programName + " selfupdate 0.9.3-SNAPSHOT");
err.println(" $ " + programName + " selfupdate 0.9.3");
err.println("");
return systemExit(error);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.3-SNAPSHOT
0.9.3
2 changes: 1 addition & 1 deletion digdag-docs/src/command_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ Updates the executable binary file to the latest version or specified version. E
.. code-block:: console
$ digdag selfupdate
$ digdag selfupdate 0.9.2
$ digdag selfupdate 0.9.3
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.9.3
releases/release-0.9.2
releases/release-0.9.1
releases/release-0.9.0
Expand Down
30 changes: 30 additions & 0 deletions digdag-docs/src/releases/release-0.9.3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
Release 0.9.3
=============

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

* Project archives can now be stored in S3 instead of the database. This is configured using the ``archive.s3.bucket``, ``archive.s3.credentials.access-key-id`` and ``archive.s3.credentials.secret-access-key`` configuration parameters.

Workflow changes
----------------

* The ``emr>`` operator now uses ``${secret:<key>}`` syntax.
* The ``http>`` operator now allows secrets in headers, content and uri using ``${secret:<key>}`` syntax.
* Declaring secret access using ``_secrets`` is no longer necessary and has been deprecated.
* It is now possible to use secrets in ``td_load>`` and ``embulk>`` configuration using ``${secret:<key>}`` syntax.
* The ``td_run>`` operator can now run a saved query by id. If the operator command is a number, the query with that id will be run.
* The ``td_ddl>`` operator now allows entire parameter lists to be parameterized.

General Changes
---------------

* Secret access limits and policies have been removed. Operators can now access any secret.
* Backfills now run sequentially instead of all sessions in parallel.
* The Digdag client now sends a ``User-Agent`` header that includes the build artifact version.
* Project metadata compilation has been moved to the server. The project tarball no longer needs to include a ``.digdag.dig`` file when pushing.

Release Date
------------
2017-01-17

0 comments on commit b6cbab8

Please sign in to comment.