Skip to content

Latest commit

 

History

History
2314 lines (1344 loc) · 97.5 KB

CHANGELOG.md

File metadata and controls

2314 lines (1344 loc) · 97.5 KB

v1.16.4 - 2025-02-25

Changelog

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.16.3...v1.16.4

Contributors

@Lewiscowles1986 @yottahmd

Changes

v1.16.3 - 2025-02-19

Changelog

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.16.2...v1.16.3

Contributors

@arky @vnghia

Changes

v1.16.2 - 2025-02-13

Changelog

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.16.1...v1.16.2

Contributors

@dayne @dependabot

Changes

v1.16.1 - 2025-02-11

Changelog

Summary

  • Bugfixes (#796 #799 #810)
  • Support /health endpoint
  • Support headless mode
  • Enhance YAML Editor with field completion and schema validation

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.16.0...v1.16.1

Contributors

@arky @eltociear @kennethpjdyer @kriyanshii @vhespanha

Changes

v1.16.0 - 2025-01-09

Changelog

https://dagu.readthedocs.io/en/latest/changelog.html#v1-16-0-2025-01-09

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.15.1...v1.16.0

Changes

v1.15.1 - 2024-12-10

Changelog

What's Changed

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.15.0...v1.15.1

Changes

v1.15.0 - 2024-12-06

What's Changed

New Features

Remote Node support

Dagu now supports managing multiple Dagu servers from a single UI through its remote node feature. This allows you to:

  • Monitor and manage DAGs across different environments (dev, staging, prod)
  • Access multiple Dagu instances from a centralized UI
  • Switch between nodes easily through the UI dropdown
  • See Remote Node Configuration for more details.

Configuration: Remote nodes can be configured by creating admin.yaml in $HOME/.config/dagu/:

# admin.yaml
remoteNodes:
    - name: "prod" # Name of the remote node
      apiBaseUrl: "https://prod.example.com/api/v1" # Base URL of the remote node API
    - name: "staging"
      apiBaseUrl: "https://staging.example.com/api/v1"

Timezone config in schedule

You can specify a cron expression to run within a specific timezone.

schedule: "CRON_TZ=Asia/Tokyo 5 9 * * *" # Run at 09:05 in Tokyo
steps:
  - name: scheduled job
    command: job.sh

skipIfSuccessful

skipIfSuccessful. When set to true, Dagu will automatically check the last successful run time against the defined schedule. If the DAG has already run successfully since the last scheduled time, the current run will be skipped.

schedule: "0 */4 * * *"   # Run every 4 hours
skipIfSuccessful: true    # Skip if already succeeded since last schedule (e.g., manually triggered)
steps:
  - name: resource-intensive-job
    command: process_data.sh

New Contributors

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.14.8...v1.15.0

Contributors

@chrishoage @jonnochoo

Changes

v1.14.8 - 2024-11-12

What's Changed

  • fixed bug when using the CRON_TZ= cron expression by @jonnochoo in #707

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.14.7...v1.14.8

Contributors

@jonnochoo

Changes

v1.14.7 - 2024-11-09

What's Changed

  • chore: update the Dockerfile & docs by @yohamta in #699
  • ui: Add Page Limit Input and Improve Case-Insensitive DAG Search by @yohamta in #702
  • ui: Reimplement Timeline Chart and Adjust Server Timezone Handling by @yohamta in #704

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.14.6...v1.14.7

Changes

v1.14.6 - 2024-11-06

What's Changed

  • docs: Add docs for special envs by @yohamta in #689
  • docs: Add command to run server in docker compose file by @KMe72 in #693
  • fix: use the server timezone to parse the cron expression by @jonnochoo in #696
  • docs: add documentation for the time zone configurations by @yohamta in #698
  • add: new environment config key DAGU_TZ for server & scheduler's time zone setting

New Contributors

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.14.5...v1.14.6

Contributors

@KMe72 @jonnochoo

Changes

v1.14.5 - 2024-09-24

Changelog

What's Changed

  • ui: fix: DAG groups are not visible on UI by @yohamta in #686

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.14.4...v1.14.5

Changes

v1.14.4 - 2024-09-11

What's Changed

Full Changelog: https://github.com/dagu-org/dagu/compare/v1.14.3...v1.14.4

Contributors

@halalala222

Changes

v1.14.3 - 2024-08-14

What's Changed

New Contributors

Full Changelog: https://github.com/daguflow/dagu/compare/v1.14.2...v1.14.3

Contributors

@Kiyo510 @Lucaslah @halalala222

Changes

v1.14.2 - 2024-08-02

What's Changed

Special Thanks

@zph @bbqi for addressing issue #635

Full Changelog: https://github.com/daguflow/dagu/compare/v1.14.1...v1.14.2

Contributors

@Kiyo510 @bbqi @rocwang @x4204 @zph

Changes

v1.14.1 - 2024-07-22

Changelog

  • b1c961bdec fix: action buttons on the DAG list page don't work for DAGs with custom names (#625)

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.14.0...v1.14.1

Contributors

@rocwang

Changes

v1.14.0 - 2024-07-18

Changelog

What's Changed

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.13.1...v1.14.0

Changes

v1.13.1 - 2024-07-14

Changelog

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.13.0...v1.13.1

Contributors

@x2ocoder @x4204 @zph

Changes

v1.13.0 - 2024-05-25

Changelog

  • be528cd Add run and params field (#573)

New Features

  • Added run and params field You can run another DAG from a DAG by specifying the name:

    steps:
      - name: running sub_dag
        run: sub_dag      # This can be a path to a file such as `sub_dag.yaml` or `path/to/sub_dag.yaml`
        params: "FOO=BAR" # Optional
  • Accept JSON list to specify command and args You can make the DAG to be more readable by using list notation for specifying complex arguments to a command

    steps:
      - name: step1
        description: print current time
        command: [python, "-c", "import sys; print(sys.argv)", "argument"]

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.11...v1.13.0

Contributors

@Kiyo510

Changes

v1.12.11 - 2024-03-19

Changelog

  • 5754d1b fix https configuration errors (#541)

Changes

v1.12.10 - 2024-03-14

Changelog

  • a7e7c11 fix race problem

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.9...v1.12.10

Contributors

@HtcOrange @JadRho @fruworg @yarikoptic

Changes

v1.12.9 - 2024-01-07

Changelog

  • c9435a8 Fix command flag parsing issue (#522)

What's Changed

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.8...v1.12.9

Contributors

@rafiramadhana

Changes

v1.12.8 - 2024-01-01

Changelog

  • cc0c36e Update docs (#512)

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.7...v1.12.8

Contributors

@ArseniySavin @rafiramadhana @smekuria1

Changes

v1.12.7 - 2023-11-03

Changelog

  • a9fd44a add start-all command (#498)

What's Changed

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.6...v1.12.7

Changes

v1.12.6 - 2023-10-27

What's Changed

  • Add attach logs to report mail by @triole

New Contributors

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.5...v1.12.6

Contributors

@triole

Changes

v1.12.5 - 2023-10-18

Changelog

  • cfbd772 remove protobuf gen part from the release workflow

What's Changed

  • Just added generated protobuf files to get go install work and nothing else.

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.4...v1.12.5

Changes

v1.12.4 - 2023-09-21

Changelog

  • e99b7ae fix basic auth issue (#483)

What's Changed

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.3...v1.12.4

Changes

v1.12.3 - 2023-09-21

Changelog

  • 8fa6681 fix api base url to be the same host (#482)

What's Changed

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.2...v1.12.3

Changes

v1.12.2 - 2023-09-20

Changelog

  • 55521af fix bug (#481)

What's Changed

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.1...v1.12.2

Changes

v1.12.1 - 2023-09-10

Changelog

  • 84bcb19 fix server bug

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.12.0...v1.12.1

Changes

v1.12.0 - 2023-09-10

What's Changed

  • Fixed some bugs and improved Web UI performance a bit

New Contributors

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.11.0...v1.12.0

Contributors

@dat-adi

Changes

v1.11.0 - 2023-08-11

What's Changed

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.10.6...v1.11.0

Changes

v1.10.6 - 2023-08-10

Changelog

  • 92f8f75 fix bundling issue

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.10.5...v1.10.6

Contributors

@fljdin @garunitule

Changes

v1.10.5 - 2023-05-21

Changelog

What's Changed

New Contributors

Full Changelog: https://github.com/dagu-dev/dagu/compare/v1.10.4...v1.10.5

Contributors

@garunitule

Changes

v1.10.4 - 2023-04-01

Changelog

  • f851bd0 fix: cycle detection bug (#427)

What's Changed

New Contributors

Full Changelog: https://github.com/yohamta/dagu/compare/v1.10.3...v1.10.4

Contributors

@1005281342 @stefaan1o

Changes

v1.10.3 - 2023-03-28

Changelog

  • b0a4fd8 Fixed incorrect app home directory bug (#424)

Changes

v1.10.2 - 2023-03-19

Changelog

  • d0b5465 v1.10.2 (#413)

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.10.1...v1.10.2

Contributors

@stefaan1o

Changes

v1.10.1 - 2023-03-15

Changelog

  • Added support for sending emails within workflows through the new mail executor.
  • Enhanced the http executor to include a silent option, which allows users to suppress unnecessary logging when executing HTTP requests.
  • Improved Web UI to display modal on DAG execution start/stop/cancel.
  • Updated the Web UI to improve the time format for the Next Run field.
  • Enhanced the functionality of the jq executor by introducing a new raw option.

Changes

v1.9.4 - 2023-03-02

Changelog

  • 7eead4f Add jq executor (#391)

What's Changed

New Contributors

Full Changelog: https://github.com/yohamta/dagu/compare/v1.9.3...v1.9.4

Contributors

@vkill

Changes

v1.9.3 - 2023-01-19

Changelog

What's Changed

New Contributors

Full Changelog: https://github.com/yohamta/dagu/compare/v1.9.2...v1.9.3

Contributors

@TahirAIi @emcassi @zwZjut

Changes

v1.9.2 - 2022-11-20

Changelog

  • a6998b5 Add docker executor (#363)

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.9.1...v1.9.2

Changes

v1.9.1 - 2022-10-20

Changelog

  • 591f279 Update Dockerfile (#356)

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.9.0...v1.9.1

Changes

v1.9.0 - 2022-10-10

Changelog

  • c33702f Add SSH Executor (#351)

What's Changed

New Contributors

Full Changelog: https://github.com/yohamta/dagu/compare/v1.8.8...v1.9.0

Contributors

@SimonWaldherr

Changes

v1.8.8 - 2022-09-20

Changelog

  • 9553660 Merge pull request #339 from yohamta/feat/add-auth-stmp-mailer

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.8.7...v1.8.8

Changes

v1.8.7 - 2022-09-18

Changelog

  • a7b9e6e Merge pull request #336 from RamonEspinosa/fix/dag-table-a11y-issues

What's Changed

New Contributors

Full Changelog: https://github.com/yohamta/dagu/compare/v1.8.6...v1.8.7

Contributors

@RamonEspinosa

Changes

v1.8.6 - 2022-09-10

Changelog

  • 558a781 Merge pull request #329 from yohamta/fix/signal-on-stop

What's Change

Full Changelog: https://github.com/yohamta/dagu/compare/v1.8.5...v1.8.6

Changes

v1.8.5 - 2022-09-09

Changelog

  • 51decc1 Merge pull request #323 from Arvintian/main

Changes

v1.8.4 - 2022-09-06

Changelog

  • 12828cc Merge pull request #319 from yohamta/feat/update-dialog-message

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.8.3...v1.8.4

Contributors

@Arvintian

Changes

v1.8.3 - 2022-09-02

Changelog

  • 496e1a1 Merge pull request #313 from yohamta/feat/stderr

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.8.2...v1.8.3

Changes

v1.8.2 - 2022-09-02

Changelog

  • 7aea586 Merge pull request #311 from yohamta/feat/multiple-schedule

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.8.1...v1.8.2

Changes

v1.8.1 - 2022-09-01

Changelog

  • bcbc5c3 Merge pull request #297 from yohamta/feat/delete

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.8.0...v1.8.1

Changes

v1.8.0 - 2022-08-31

Changelog

  • dc1cf21 Merge pull request #306 from yohamta/feat/schedule-process

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.7.11...v1.8.0

Changes

v1.7.11 - 2022-08-30

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.7.10...v1.7.11

Changes

v1.7.10 - 2022-08-30

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.7.9...v1.7.10

Changes

v1.7.9 - 2022-08-26

Changelog

  • 2713b23 Merge pull request #294 from yohamta/feat/admin-web

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.7.8...v1.7.9

Changes

v1.7.8 - 2022-08-25

Changelog

  • 0652945 Merge pull request #292 from yohamta/feat/grep

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.7.7...v1.7.8

Changes

v1.7.7 - 2022-08-22

Changelog

  • 8b34bc0 Merge pull request #289 from yohamta/feat/signal-on-step

What's Changed

New Contributors

Full Changelog: https://github.com/yohamta/dagu/compare/v1.7.6...v1.7.7

Contributors

@fishnux

Changes

v1.7.6 - 2022-08-19

Changelog

  • 1ab95f8 Merge pull request #284 from yohamta/admin-port-option

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.7.5...v1.7.6

Contributors

@Arvintian

Changes

v1.7.5 - 2022-08-15

Changelog

  • d7c6b76 Merge pull request #266 from yohamta/develop

Changes

v1.7.4 - 2022-08-15

Changelog

  • f6e912c Merge pull request #264 from yohamta/develop

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.7.3...v1.7.4

Changes

v1.7.3 - 2022-08-14

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.7.0...v1.7.1

Breaking change

This change disables env config below:

  • DAGU__ADMIN_NAVBAR_COLOR
  • DAGU__ADMIN_NAVBAR_TITLE
  • DAGU__ADMIN_CONFIG
  • DAGU__ADMIN_PORT
  • DAGU__ADMIN_LOGS_DIR
  • DAGU__ADMIN_DAGS_DIR

The user can still set config values within the admin config file:

example:

navbarColor: red
navbarTitle: production

For the internal-use directory path you can set the environment variable DAGU_HOME (default: ~/.dagu).

Full Changelog: https://github.com/yohamta/dagu/compare/v1.6.9...v1.7.0

Changes

v1.6.9 - 2022-08-05

Changelog

  • 5f5ad54 Merge pull request #240 from yohamta/develop

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.6.8...v1.6.9

Changes

v1.6.8 - 2022-08-04

Changelog

  • 073b1d3 Merge pull request #238 from yohamta/develop

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.6.7...v1.6.8

Changes

v1.6.7 - 2022-08-03

Changelog

  • 3c9d661 Merge pull request #232 from yohamta/fix/json-issue

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.6.6...v1.6.7

Changes

v1.6.6 - 2022-08-02

Changelog

  • 2033cb4 Merge pull request #230 from yohamta/feat/webui-schedule

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.6.5...v1.6.6

Contributors

@Arvintian

Changes

v1.6.5 - 2022-08-01

Changelog

  • 1b606a5 Merge pull request #226 from yohamta/fix/config-editor-issue

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.6.4...v1.6.5

Changes

v1.6.4 - 2022-07-30

Changelog

  • 7a5eeca Merge pull request #223 from yohamta/feat/parsing-parameters

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.6.3...v1.6.4

Contributors

@Arvintian

Changes

v1.6.3 - 2022-07-26

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.6.2...v1.6.3

Changes

v1.6.2 - 2022-07-26

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.6.1...v1.6.2

Changes

v1.6.1 - 2022-07-25

What's Changed

  • fix: Fixed an issue that an output variable from steps can not be used in a script in subsequent steps by @yohamta in yohamta/dagu#210

Full Changelog: https://github.com/yohamta/dagu/compare/v1.6.0...v1.6.1

Changes

v1.6.0 - 2022-07-25

What's Changed

New Contributors

Full Changelog: https://github.com/yohamta/dagu/compare/v1.5.7...v1.6.0

Contributors

@Arvintian

Changes

v1.5.7 - 2022-07-22

Changelog

  • 9fb1d57 fix: file cleaning bug

Full Changelog: https://github.com/yohamta/dagu/compare/v1.5.6...v1.5.7

Changes

v1.5.6 - 2022-07-22

Changelog

  • 5123c38 Merge pull request #202 from yohamta/fix/remove-expired-history-data

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.5.5...v1.5.6

Changes

v1.5.5 - 2022-07-20

Changelog

  • ffd713c Merge pull request #201 from yohamta/feat/overwrite-mailon-config

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.5.4...v1.5.5

Changes

v1.5.4 - 2022-07-13

Changelog

  • 27d0b1a Merge pull request #198 from yohamta/feat/fix-filename-shorter

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.5.3...v1.5.4

Changes

v1.5.3 - 2022-07-12

Changelog

  • 3f9a3ef Merge pull request #197 from yohamta/feat/suspend-dag

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.5.2...v1.5.3

Changes

v1.5.2 - 2022-07-11

Changelog

  • 2e48c01 Merge pull request #196 from yohamta/feat/improve-web-ui

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.5.1...v1.5.2

Changes

v1.5.1 - 2022-07-11

Changelog

  • c93d40a Merge pull request #194 from yohamta/feat/header

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.5.0...v1.5.1

Changes

v1.5.0 - 2022-07-10

Changelog

  • 91fc2b7 Merge pull request #193 from yohamta/feat/webui-improvement

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.4.4...v1.5.0

Changes

v1.4.4 - 2022-07-06

Changelog

  • Fixed scheduler process issue

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.4.3...v1.4.4

Changes

v1.4.3 - 2022-07-05

Changelog

  • ec60ab2 Merge pull request #189 from yohamta/feat/multiple-schedules

What's Changed

Full Changelog: https://github.com/yohamta/dagu/compare/v1.4.2...v1.4.3

Changes

v1.4.2 - 2022-07-05

Changelog

  • 5593bbd Merge pull request #188 from yohamta/feat/multiple-schedules

Changes

v1.4.1 - 2022-07-04

Changelog

  • eaed682 Merge pull request #187 from yohamta/feat/scheduler-log-rotation

Changes

v1.4.0 - 2022-07-01

Changelog

  • ff0a1a6 Merge pull request #179 from yohamta/feat/scheduler

Changes

v1.3.21 - 2022-06-24

Changelog

  • 4723f1f Merge pull request #184 from yohamta/feat/web-ui-collapsible-table-row

Changes

v1.3.20 - 2022-06-23

Changelog

  • 12c1474 Merge pull request #183 from yohamta/fix/web-ui-issue

Changes

v1.3.19 - 2022-06-23

Changelog

  • d818829 Merge pull request #182 from yohamta/feat/dag-groups

Changes

v1.3.18 - 2022-06-22

Changelog

  • 7dc9f49 Merge pull request #181 from yohamta/feat/retry-interval

Changes

v1.3.17 - 2022-06-19

Changelog

  • d065233 Merge pull request #178 from yohamta/fix/log-page-scrollbar-issue

Changes

v1.3.16 - 2022-06-17

Changelog

  • 96343cb Merge pull request #173 from yohamta/fix/timechart-bug

Changes

v1.3.15 - 2022-06-13

Changelog

  • e884bdd Merge pull request #169 from yohamta/fix/admin-config-issue

Changes

v1.3.14 - 2022-06-13

Changelog

  • ae273f8 Merge pull request #167 from yohamta/fix/pass-params-as-vars

Changes

v1.3.13 - 2022-06-13

Changelog

  • 65d796e Merge pull request #165 from yohamta/fix/parameter-parsing-issue

Changes

v1.3.12 - 2022-06-08

Changelog

  • 9b42d4e Merge pull request #162 from yohamta/feat/view

Changes

v1.3.11 - 2022-06-06

Changelog

  • 66d61f2 Merge pull request #158 from yohamta/fix/web-ui-bug

Changes

v1.3.10 - 2022-06-06

Changelog

  • 1e3dd46 Merge pull request #156 from yohamta/refactor/agent

Changes

v1.3.9 - 2022-06-02

Changelog

  • 48b8da8 Merge pull request #152 from yohamta/feat/tag-filter

Changes

v1.3.8 - 2022-06-01

Changelog

  • 38d2e6a Merge pull request #150 from yohamta/docs/update-screenshots

Changes

v1.3.7 - 2022-06-01

Changelog

  • 3c1a2d9 Merge pull request #147 from yohamta/feat/sort-filter-workflows

Changes

v1.3.6 - 2022-06-01

Changelog

  • fc59cab fix: release build workflow issue

Changes

v1.3.5 - 2022-06-01

Changelog

  • ca73bbc Merge pull request #144 from yohamta/feat/named-parameters

Changes

v1.3.4 - 2022-05-31

Changelog

  • e452f9e Merge pull request #141 from yohamta/fix/webui-workflow-log

Changes

v1.3.3 - 2022-05-31

Changelog

  • 0b11457 Update .goreleaser.yaml

Changes

v1.3.2 - 2022-05-31

Changelog

  • 7f10def Merge pull request #137 from yohamta/feat/timeline-chart-ordering

Changes

v1.3.1 - 2022-05-31

Changelog

  • 28afd70 Merge pull request #136 from yohamta/fix/timeline-issue

Changes

v1.3.0 - 2022-05-31

Changelog

  • 976c582 Merge pull request #134 from yohamta/fix/readme

Changes

v1.2.16 - 2022-05-31

Changelog

  • 0d1e8f1 Merge pull request #132 from yohamta/fix/github-workflows

Changes

v1.2.15 - 2022-05-27

Changelog

  • ec7d5c6 Merge pull request #126 from yohamta/fix/status-correction

Changes

v1.2.14 - 2022-05-27

Changelog

  • fff64c3 Merge pull request #125 from yohamta/fix/admin-ui-issue

Changes

v1.2.13 - 2022-05-27

Changelog

  • 7312dce feat: update status onclick node on graph

Changes

v1.2.12 - 2022-05-20

Changelog

  • 444797c Merge pull request #115 from yohamta/fix/status

Changes

v1.2.11 - 2022-05-20

Changelog

  • ca4eefd Merge pull request #112 from yohamta/fix/add-default-env

Changes

v1.2.10 - 2022-05-19

Changelog

  • 24ae41b Merge pull request #108 from yohamta/feat/run-code-snippet

Changes

v1.2.9 - 2022-05-18

Changelog

  • f75b29a Merge pull request #107 from dagu-go/feat/output

Changes

v1.2.8 - 2022-05-16

Changelog

  • c66fd79 Fix #90

Changes

v1.2.7 - 2022-05-15

Changelog

  • 06bc8b7 Fixed test

Changes

v1.2.6 - 2022-05-13

Changelog

  • 22c434a Merge pull request #77 from yohamta/feature/syntax-highlignt

Changes

v1.2.5 - 2022-05-13

Changelog

  • fef71ce Fixed dag preview to be more visible

Changes

v1.2.4 - 2022-05-12

Changelog

  • c03b2ce Added a function to rename existing DAGs on web UI

Changes

v1.2.3 - 2022-05-11

Changelog

  • faf9f48 Update README

Changes

v1.2.2 - 2022-05-10

Changelog

  • 5bde94e Fix codecov.yml

Changes

v1.2.1 - 2022-05-09

Changelog

  • a103bc3 Merge pull request #61 from yohamta/develop

Changes

v1.2.0 - 2022-05-08

Changelog

  • 2079274 Merge pull request #59 from lrampa/feature/unique_file_names

Changes

v1.1.9 - 2022-05-06

Changelog

  • e24e9c7 Add tests

Changes

v1.1.8 - 2022-05-06

Changelog

  • fde7438 Merge pull request #56 from yohamta/develop

Changes

v1.1.7 - 2022-05-02

Changelog

  • ab85b5f Add tests

Changes

v1.1.6 - 2022-04-29

Changelog

  • ad55275 Merge pull request #40 from yohamta/develop

Changes

v1.1.5 - 2022-04-28

Changelog

  • c604df2 Merge pull request #25 from yohamta/feat/cleanup-time-signal

Changes

v1.1.4 - 2022-04-28

Changelog

  • 6e19286 Merge pull request #24 from yohamta/feature/retry-policy

Changes

v1.1.3 - 2022-04-28

Changelog

  • 5c8d546 Merge pull request #23 from yohamta/fix-graph

Changes

v1.1.2 - 2022-04-27

Changelog

  • 44d7e86 Merge pull request #21 from yohamta/feature/update-status

Changes

v1.1.1 - 2022-04-27

Changelog

  • 17a5a2b Fix to use word "DAG" instead of "job"

Changes

v1.1.0 - 2022-04-27

Changelog

  • c5f01ee Merge pull request #16 from yohamta/bugfix

Changes

v1.0.2 - 2022-04-26

Changelog

  • 6bdb5a9 Merge pull request #13 from yohamta/issue-12

Changes

v1.0.1 - 2022-04-24

Changelog

  • 2e53729 Fix master branch to main branch

Changes

v1.0.0 - 2022-04-23

Changelog

  • 189697f Setup goreleaser

Changes