Skip to content

Commit

Permalink
Release v0.10.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aamine committed Feb 13, 2024
1 parent b7f6412 commit f525d5a
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 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: 'idea'

allprojects {
group = 'io.digdag'
version = '0.10.5'
version = '0.10.5.1'

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.10.5");
err.println(" $ " + programName + " selfupdate 0.10.5.1");
err.println("");
return systemExit(error);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.5
0.10.5.1
6 changes: 3 additions & 3 deletions digdag-docs/src/command_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ Updates the executable binary file to the latest version or specified version. E
.. code-block:: console
$ digdag selfupdate
$ digdag selfupdate 0.10.5
$ digdag selfupdate 0.10.5.1
Server-mode commands
----------------------------------
Expand Down Expand Up @@ -432,7 +432,7 @@ CommandExecutor Plugins

CommandExecutor implementation is to be provided by a system plugin (See `System plugins section in Internal architecture <internal.html#system-plugins>`). Interface is ``io.digdag.spi.CommandExecutorFactory``.

You can specify the command executor to use by `agent.command_executor.type`. (digdag version v0.10.4 and up)
You can specify the command executor to use by `agent.command_executor.type`. (digdag version v0.10.5.1 and up)

The following executors can be set by default.

Expand Down Expand Up @@ -484,7 +484,7 @@ You can include following parameters in ~/.config/digdag/config file:

* client.http.endpoint = http://HOST:PORT or https://HOST:PORT
* client.http.headers.KEY = VALUE (set custom HTTP header)
* client.http.disable_direct_download=true (disable direct download in `log` and `download`. effect to server v0.10.0 or later.)
* client.http.disable_direct_download=true (disable direct download in `log` and `download`. effect to server v0.10.5.1 or later.)


start
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.10.5.1
releases/release-0.10.5
releases/release-0.10.4
releases/release-0.10.3
Expand Down
14 changes: 14 additions & 0 deletions digdag-docs/src/releases/release-0.10.5.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Release 0.10.5.1
================

Fixed Issues
------------
* Fix path traversal vulnerability in LocalFileLogServer. (GitHub Security Advisory GHSA-5mp4-32rr-v3x5)

Release Date
------------
2024-02-13

Contributors
------------
* Satoshi Matsumoto

0 comments on commit f525d5a

Please sign in to comment.