From 7f9bc95c5c68109dcaa6181b2f8c8ec8343e44a2 Mon Sep 17 00:00:00 2001 From: Valentin Tolmer Date: Tue, 11 Apr 2023 14:25:14 +0200 Subject: [PATCH] release: 0.4.3 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ app/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d63a0d..07753de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,35 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.3] 2023-04-11 + +The repository has changed from `nitnelave/lldap` to `lldap/lldap`, both on GitHub +and on DockerHub (although we will keep publishing the images to +`nitnelave/lldap` for the foreseeable future). All data on GitHub has been +migrated, and the new docker images are available both on DockerHub and on the +GHCR under `lldap/lldap`. + +### Added + + - EC private keys are not supported for LDAPS. + +### Changed + + - SMTP user no longer has a default value (and instead defaults to unauthenticated). + +### Fixed + + - WASM payload is now delivered uncompressed to Safari due to a Safari bug. + - Password reset no longer redirects to login page. + - NextCloud config should add the "mail" attribute. + - GraphQL parameters are now urldecoded, to support special characters in usernames. + - Healthcheck correctly checks the server certificate. + +### New services + + - Home Assistant + - Shaarli + ## [0.4.2] - 2023-03-27 ### Added diff --git a/app/Cargo.toml b/app/Cargo.toml index 854bf61..7b2da12 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lldap_app" -version = "0.4.3-alpha" +version = "0.4.3" authors = ["Valentin Tolmer "] edition = "2021" include = ["src/**/*", "queries/**/*", "Cargo.toml", "../schema.graphql"] diff --git a/server/Cargo.toml b/server/Cargo.toml index 4d9bca4..57ee963 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Valentin Tolmer "] edition = "2021" name = "lldap" -version = "0.4.3-alpha" +version = "0.4.3" [dependencies] actix = "0.13"