diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cd9b749d7..e2cb11ba96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,19 @@ Changes +## 24.03.8 (2024-08-13) + +### Features +* Add an `enable_LLM_playground` option to show/hide the LLM playground tab on the serving page. ([#2677](https://github.com/lablup/backend.ai/issues/2677)) +* Add `max_atom_plus_device_per_container` config on webserver ([#2686](https://github.com/lablup/backend.ai/issues/2686)) + +### Fixes +* Remove duplicate CPU quota arguments when creating containers ([#2608](https://github.com/lablup/backend.ai/issues/2608)) +* Allow sudo-enabled container users to ovewrite `/usr/bin/scp` and `/usr/libexec/sftp-server` by unifying the intrinsic ssh binaries to use the merged `dropbearmulti` executable. ([#2671](https://github.com/lablup/backend.ai/issues/2671)) +* Update `webserver` logout API to respond with HTTP 200 OK ([#2681](https://github.com/lablup/backend.ai/issues/2681)) +* Scan parent directory of created qtree to avoid creating quota on non-existing directory. ([#2696](https://github.com/lablup/backend.ai/issues/2696)) + + ## 24.03.8rc2 (2024-08-08) ### Fixes diff --git a/VERSION b/VERSION index bcca788317..7c16979f2c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -24.03.8rc2 +24.03.8 diff --git a/changes/2608.fix.md b/changes/2608.fix.md deleted file mode 100644 index 6ca3892f97..0000000000 --- a/changes/2608.fix.md +++ /dev/null @@ -1 +0,0 @@ -Remove duplicate CPU quota arguments when creating containers diff --git a/changes/2671.fix.md b/changes/2671.fix.md deleted file mode 100644 index 73fbb07044..0000000000 --- a/changes/2671.fix.md +++ /dev/null @@ -1 +0,0 @@ -Allow sudo-enabled container users to ovewrite `/usr/bin/scp` and `/usr/libexec/sftp-server` by unifying the intrinsic ssh binaries to use the merged `dropbearmulti` executable. diff --git a/changes/2677.feature.md b/changes/2677.feature.md deleted file mode 100644 index 304a80908f..0000000000 --- a/changes/2677.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add an `enable_LLM_playground` option to show/hide the LLM playground tab on the serving page. diff --git a/changes/2681.fix.md b/changes/2681.fix.md deleted file mode 100644 index 5f9f937e05..0000000000 --- a/changes/2681.fix.md +++ /dev/null @@ -1 +0,0 @@ -Update `webserver` logout API to respond with HTTP 200 OK diff --git a/changes/2686.feature.md b/changes/2686.feature.md deleted file mode 100644 index e8226828c1..0000000000 --- a/changes/2686.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add `max_atom_plus_device_per_container` config on webserver diff --git a/changes/2696.fix.md b/changes/2696.fix.md deleted file mode 100644 index b4746e1907..0000000000 --- a/changes/2696.fix.md +++ /dev/null @@ -1 +0,0 @@ -Scan parent directory of created qtree to avoid creating quota on non-existing directory.