From 332c22855c6492f3c85d26da72af7f59c4977cc3 Mon Sep 17 00:00:00 2001 From: Stephan Huber Date: Fri, 13 Dec 2024 16:25:22 +0100 Subject: [PATCH] chore: Release scotty version 0.1.0-alpha.13 --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 33 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3a62b2..5eb7cbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,43 @@ All notable changes to this project will be documented in this file. +## [0.1.0-alpha.13] - 2024-12-13 + +### Bug Fixes + +- Update app detail when needed ✔️ +- Check for app-changes every 15 secs ✔️ +- Use proper type for AppTtl ✔️ +- Handle missing domains in yaml files correctly, print an error message if the settings file couldnt be read ✔️ +- Update rust crate serde to v1.0.216 (#129) ✔️ +- Update url dependency to prevent dependabot alert #8 ✔️ +- Increase default ttl to 7 days ✔️ +- Update rust crate init-tracing-opentelemetry to v0.24.2 ✔️ + +### Dependencies + +- Update dependency daisyui to v4.12.22 (#132) ✔️ +- Update dependency @sveltejs/kit to v2.11.1 ✔️ +- Update dependency daisyui to v4.12.21 (#131) ✔️ +- Update dependency @sveltejs/kit to v2.10.1 ✔️ + +### Features + +- Try to adopt basic_auth data when available ✔️ +- Rename app:migrate to app:adopt ✔️ +- Show version string in footer ✔️ +- Add support for multiple domains and settings in UI ✔️ +- Reenable dark theme ✔️ +- Support multiple domains for a service (fixes #126) ✔️ +- Export env-vars to settings when migrating an app ✔️ + ## [0.1.0-alpha.12] - 2024-12-10 ### Bug Fixes - Fix frontend build ✔️ - Update rust crate chrono to v0.4.39 (#118) ✔️ +- Update dependency @iconify/svelte to v4.1.0 ✔️ - Update rust crate tokio-stream to v0.1.17 (#115) ✔️ - Update rust crate clap to v4.5.23 (#114) ✔️ - Update rust crate clap to v4.5.22 (#112) ✔️ diff --git a/Cargo.lock b/Cargo.lock index 1210369..3716354 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2284,7 +2284,7 @@ dependencies = [ [[package]] name = "scotty" -version = "0.1.0-alpha.12" +version = "0.1.0-alpha.13" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 6844fee..8ecbccd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scotty" -version = "0.1.0-alpha.12" +version = "0.1.0-alpha.13" edition = "2021" description = "scotty is a small PaaS which helps you to administer a bunch of docker-compose-based applications. It comes with an API and a cli" authors = ["Stephan Maximilian Huber "]