mirror of
https://github.com/lldap/lldap.git
synced 2026-03-31 15:07:48 +01:00
release: v0.6.2
This commit is contained in:
committed by
nitnelave
parent
c69957690e
commit
5e83ed8eb0
@@ -5,6 +5,61 @@ 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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.6.2] 2025-07-21
|
||||||
|
|
||||||
|
Small release, focused on LDAP improvements and ongoing maintenance.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- LDAP
|
||||||
|
- Support for searching groups by their `groupid`
|
||||||
|
- Support for `whoamiOID`
|
||||||
|
- Support for creating groups
|
||||||
|
- Support for subschema entry
|
||||||
|
- Custom assets path.
|
||||||
|
- New endpoint for requesting client settings
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- A missing JWT secret now prevents startup.
|
||||||
|
- Attributes with invalid characters (such as underscores) cannot be created anymore.
|
||||||
|
- Searching custom (string) attributes is now case insensitive.
|
||||||
|
- Using the top-level `firstName`, `lastName` and `avatar` GraphQL fields for users is now deprecated. Use the `attributes` field instead.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- `lldap_set_password` now uses the system's SSL certificates.
|
||||||
|
|
||||||
|
### Cleanups
|
||||||
|
|
||||||
|
- Split the main `lldap` crate into many sub-crates
|
||||||
|
- Various dependency version bumps
|
||||||
|
- Upgraded to 2024 Rust edition
|
||||||
|
- Docs/FAQ improvements
|
||||||
|
|
||||||
|
### Bootstrap script
|
||||||
|
|
||||||
|
- Custom attributes support
|
||||||
|
- Read the paswsord from a file
|
||||||
|
- Resilient to no user or group files
|
||||||
|
|
||||||
|
### New services
|
||||||
|
|
||||||
|
- Discord integration (Discord role to LLDAP user)
|
||||||
|
- HashiCorp
|
||||||
|
- Jellyfin 2FA with Duo
|
||||||
|
- Kimai
|
||||||
|
- Mailcow
|
||||||
|
- Peertube
|
||||||
|
- Penpot
|
||||||
|
- PgAdmin
|
||||||
|
- Project Quay
|
||||||
|
- Quadlet
|
||||||
|
- Snipe-IT
|
||||||
|
- SSSD
|
||||||
|
- Stalwart
|
||||||
|
- UnifiOS
|
||||||
|
|
||||||
## [0.6.1] 2024-11-22
|
## [0.6.1] 2024-11-22
|
||||||
|
|
||||||
Small release, mainly to fix a migration issue with Sqlite and Postgresql.
|
Small release, mainly to fix a migration issue with Sqlite and Postgresql.
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "lldap_app"
|
name = "lldap_app"
|
||||||
version = "0.6.2-alpha"
|
version = "0.6.2"
|
||||||
description = "Frontend for LLDAP"
|
description = "Frontend for LLDAP"
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
include = ["src/**/*", "queries/**/*", "Cargo.toml", "../schema.graphql"]
|
include = ["src/**/*", "queries/**/*", "Cargo.toml", "../schema.graphql"]
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "lldap"
|
name = "lldap"
|
||||||
version = "0.6.2-alpha"
|
version = "0.6.2"
|
||||||
description = "Super-simple and lightweight LDAP server"
|
description = "Super-simple and lightweight LDAP server"
|
||||||
categories = ["authentication", "command-line-utilities"]
|
categories = ["authentication", "command-line-utilities"]
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|||||||
Reference in New Issue
Block a user