Skip to content

v2.6.0

Compare
Choose a tag to compare
@feedmeapples feedmeapples released this 14 Sep 17:54
· 1247 commits to main since this release
2987d4e

New Features:

UI public path

Allows to customize the URL sub path under which the UI is served

docker build -t ui --build-arg TEMPORAL_PUBLIC_PATH=/custom-path .
docker run -e TEMPORAL_PUBLIC_PATH=/custom-path --network host -t ui

Then navigate to http://localhost:8080/custom-path

Healthcheck endpoint

Thanks to @cv65kr

curl http://localhost:8080/healthz
{"status":"OK"}

Changelog:

UI server:

  • 2022-09-09 - 1a32cf6 - Support public path feature in Docker image (#213)
  • 2022-09-09 - 157ba50 - Support configuring UI public path (#211)
  • 2022-09-06 - 73f3d12 - Update makefile test syntax (#206)
  • 2022-08-30 - 3e3abc9 - Healthcheck endpoint (#208) @cv65kr
  • 2022-08-29 - 90548ae - Enable authorization header as CSRF protection (#201)

UI

  • 2022-09-13 - 699098d9 - Show auth error message on Login screen (#828)
  • 2022-09-12 - 1ac16120 - Handle errors that have status prop instead of statusCode (#826)
  • 2022-09-12 - 19120ade - Fix expired auth token not kicking user out to /login (#825)
  • 2022-09-12 - 5823a4bf - Add spellcheck to Input (#824)
  • 2022-09-12 - e7fd28fa - Add action locations to Pagination (#815)
  • 2022-09-09 - c805dacf - Recursively find all payloads and decode (#811)
  • 2022-09-07 - 6cee8f94 - Support serving UI from sub path (#810)
  • 2022-09-06 - 3affe401 - Schedules Pages (List, View, Create) (#807)
  • 2022-09-06 - 1151fd0d - Update to sveltekit .405, fix all the things related (#805)
  • 2022-09-01 - 7246c92a - Add namespace switcher to schedules (#801)