Releases: exograd/eventline
Releases · exograd/eventline
v1.1.2
v1.1.1
v1.1.0
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
orjson_backend
depending on backend type configured.
For example:Is now:logger: backend_type: "terminal" backend: color: true
logger: backend_type: "terminal" terminal_backend: color: true
Misc
- Update the base service library to
go-service.
v1.0.8
v1.0.7
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.