Skip to content

Releases: exograd/eventline

v1.1.2

10 Sep 08:31
v1.1.2
5c5dfec
Compare
Choose a tag to compare

Bug fixes

  • Fix multiple HTTP route issues.

Misc

  • Update the Docker image to use Alpine 3.20.

v1.1.1

31 Aug 17:42
v1.1.1
1fef2f9
Compare
Choose a tag to compare

Misc

  • Update dependencies.

v1.1.0

04 Nov 13:26
v1.1.0
Compare
Choose a tag to compare

Features

  • Add the possibility to rename jobs. Since jobs are primarily identified by
    their name, deploying a job with a different name creates a new job instead
    of renaming the existing one. This new feature makes it possible to rename a
    job, for example to archive it.
  • Add a /jobs/id/:id/rename API route.
  • Add a rename-job evcli command.
  • Update the API to add identity handling. Thanks to
    Adyxax For his contributions!
  • Add an option to send non-secure cookie (see the insecure_http_cookies
    setting).

Breaking changes

  • In the logger configuration, the backend member is replaced by either
    terminal_backend or json_backend depending on backend type configured.
    For example:
    logger:
      backend_type: "terminal"
      backend:
        color: true
    Is now:
    logger:
      backend_type: "terminal"
      terminal_backend:
        color: true

Misc

v1.0.8

20 Feb 17:18
v1.0.8
Compare
Choose a tag to compare

Bug fixes

  • Fix login for users who have no current project when the "main" project has
    been deleted.
  • Fix invalid docker ContainerWait parameter for recent Docker versions.

v1.0.7

07 Nov 14:58
v1.0.7
Compare
Choose a tag to compare

Misc

  • Truncate the output of all step executions on the web interface. The current
    limit is hardcoded to 1MB. Very large outputs cause performance issues both
    on the server and in the web browser.
  • Add buffering to runner output capture to avoid overloading the database for
    jobs producing massive amounts of data. See the associated commit for more
    information.

v1.0.6

24 Oct 16:07
v1.0.6
Compare
Choose a tag to compare

Bug fixes

  • Fix validation for the subscription parameters of the time connector.

v1.0.5

24 Oct 14:19
v1.0.5
Compare
Choose a tag to compare

Bug fixes

  • Fix repository URI for evcli update checks.

v1.0.4

24 Oct 11:26
v1.0.4
Compare
Choose a tag to compare

Bug fixes

  • Fix subscription handling during the update of a job whose trigger is being
    removed.
  • Fix event processing when the job has been modified and does not have a
    trigger anymore.

v1.0.3

16 Oct 14:55
v1.0.3
Compare
Choose a tag to compare

Bug fixes

  • Fix the leak of the client stream socket in the Docker runner.

v1.0.2

19 Sep 18:48
v1.0.2
Compare
Choose a tag to compare

Bug fixes

  • Fix terminal rendering so that text using black foreground remains visible.