Skip to content

feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.3 ) - #5414

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/cluster-0-ghcr.io-lldap-lldap-0.x
Open

feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.3 )#5414
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/cluster-0-ghcr.io-lldap-lldap-0.x

Conversation

@renovate

@renovate renovate Bot commented Nov 9, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Update Change
ghcr.io/lldap/lldap minor v0.5.0v0.6.3

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

lldap/lldap (ghcr.io/lldap/lldap)

v0.6.3

Compare Source

[0.6.3] 2026-05-01

Small release, focused on LDAP compatibility, TLS maintenance, dependency upgrades and documentation/examples.

Added
  • LDAP schema definitions for memberOf, modifyTimestamp and pwdChangedTime
  • Support for configuring the healthcheck listen addresses
  • Usernames are now included in password recovery emails
Changed
  • JWT exp and iat claims are now serialized as NumericDate values to comply with RFC7519
  • Migrated to rustls 0.23 and centralized TLS handling
  • The login form no longer enforces a password length limit
Fixed
  • pwdChangedTime is now emitted as LDAP GeneralizedTime instead of RFC3339
  • LDAP base-scope searches for non-existent entries now return NoSuchObject
  • cn equality filters are now case insensitive
  • The server now shuts down the database connection pool gracefully
  • The bootstrap script now handles empty globs correctly
Security
  • Updated the LDAP dependency stack, including ldap3_proto, in response to
    security advisory
    GHSA-qcxq-75wr-5cm8,
    where a specially crafted LDAP query could make the server crash
Cleanups
  • Split GraphQL queries and mutations into smaller modules
  • Refactored configuration and user update logic
  • Upgraded the Rust toolchain and shared dependencies
New services
  • Apache WebDAV
  • Continuwuity
  • Gerrit
  • Gogs
  • Open WebUI
  • OpenCloud
  • Pocket ID
  • Semaphore
  • TrueNAS

v0.6.2

Compare Source

[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

New Contributors

Full Changelog: lldap/lldap@v0.6.1...v0.6.2

v0.6.1

Compare Source

Small release, mainly to fix a migration issue with Sqlite and Postgresql.

Added
  • Added a link to a community terraform provider (#​1035)
Changed
  • The opaque dependency now points to the official crate rather than a fork (#​1040)
Fixed
  • Migration of the DB schema from 7 to 8 is now automatic for sqlite, and fixed for postgres (#​1045)
  • The startup warning about key_seed applying instead of key_file now has instructions on how to silence it (#​1032)
New services
  • OneDev
New Contributors

Full Changelog: lldap/lldap@v0.6.0...v0.6.1

v0.6.0

Compare Source

Long-awaited release, with the flagship feature of custom attributes! This unlock many integrations, notably Linux user management through PAM.

Thanks to all the contributors who sent some code, some configuration guide, reported a bug or otherwise helped the project!

Breaking
  • The endpoint /auth/reset/step1 is now POST instead of GET (#​704)
Added
  • Custom attributes are now supported (#​67) ! You can add new fields (string, integers, JPEG or dates) to users and query them. That unlocks many integrations with other services, and allows for a deeper/more customized integration. Special thanks to @​pixelrazor and @​bojidar-bg for their help with the UI.
  • Custom object classes (for all users/groups) can now be added (#​833)
  • Barebones support for Paged Results Control (no paging, no respect for windows, but a correct response with all the results) (#​698)
  • A daily docker image is tagged and released. (#​613)
  • A bootstrap script allows reading the list of users/groups from a file and making sure the server contains exactly the same thing. (#​654)
  • Make it possible to serve lldap behind a sub-path in (#​752)
  • LLDAP can now be found on a custom package repository for opensuse, fedora, ubuntu, debian and centos (Repository link). Thanks @​Masgalor for setting it up and maintaining it.
  • There's now an option to force reset the admin password (#​748) optionally on every restart (#​959)
  • There's a rootless docker container (#​755)
  • entryDN is now supported (#​780)
  • Unknown LDAP controls are now detected and ignored (#​787, #​799)
  • A community-developed CLI for scripting (#​793)
  • Added a way to print raw logs to debug long-running sessions (#​992)
Changed
  • The official docker repository is now lldap/lldap
  • Removed password length limitation in lldap_set_password tool
  • Group names and emails are now case insensitive, but keep their casing (#​666)
  • Better error messages (and exit code (#​745)) when changing the private key (#​778, #​1008), using the wrong SMTP port (#​970), using the wrong env variables (#​972)
  • Allow member= filters with plain user names (not full DNs) (#​949)
  • Correctly detect and refuse anonymous binds (#​974)
  • Clearer logging (#​971, #​981, #​982)
Fixed
  • Logging out applies globally, not just in the local browser. (#​721)
  • It's no longer possible to create the same user twice (#​745)
  • Fix wide substring filters (#​738)
  • Don't log the database password if provided in the connection URL (#​735)
  • Fix a panic when postgres uses a different collation (#​821)
  • The UI now defaults to the user ID for users with no display names (#​843)
  • Fix searching for users with more than one memberOf filter (#​872)
  • Fix compilation on Windows (#​932) and Illumos (#​964)
  • The UI now correctly detects whether password resets are enabled. (#​753)
  • Fix a missing lowercasing of username when changing passwords through LDAP (#​1012)
  • Fix SQLite writers erroring when racing (#​1021)
  • LDAP sessions no longer buffer their logs until unbind, causing memory leaks (#​1025)
Performance
  • Only expand attributes once per query, not per result (#​687)
Security
  • When asked to send a password reset to an unknown email, sleep for 3 seconds and don't print the email in the error (#​887)
New services

Linux user accounts can now be managed by LLDAP, using PAM and nslcd.

  • Apereo CAS server
  • Carpal
  • Gitlab
  • Grocy
  • Harbor
  • Home Assistant
  • Jenkins
  • Kasm
  • Maddy
  • Mastodon
  • Metabase
  • MegaRAC-BMC
  • Netbox
  • OCIS
  • Prosody
  • Radicale
  • SonarQube
  • Traccar
  • Zitadel

Configuration

📅 Schedule: (in timezone America/New_York)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@carpenike-bot

carpenike-bot Bot commented Nov 9, 2024

Copy link
Copy Markdown
Contributor
--- kubernetes/cluster-0/apps/security/lldap/app Kustomization: flux-system/cluster-apps-lldap HelmRelease: security/lldap

+++ kubernetes/cluster-0/apps/security/lldap/app Kustomization: flux-system/cluster-apps-lldap HelmRelease: security/lldap

@@ -42,13 +42,13 @@

               TZ: America/New_York
             envFrom:
             - secretRef:
                 name: lldap-secret
             image:
               repository: ghcr.io/lldap/lldap
-              tag: v0.5.0
+              tag: v0.6.1
             resources:
               limits:
                 memory: 128M
               requests:
                 cpu: 5m
                 memory: 36M

@carpenike-bot

carpenike-bot Bot commented Nov 9, 2024

Copy link
Copy Markdown
Contributor

🦙 MegaLinter status: ❌ ERROR

Descriptor Linter Files Fixed Errors Warnings Elapsed time
❌ COPYPASTE jscpd yes 2 no 1.44s
✅ REPOSITORY git_diff yes no no 0.04s
✅ REPOSITORY secretlint yes no no 3.83s
✅ YAML prettier 1 0 0 0.46s
✅ YAML yamllint 1 0 0 0.66s

See detailed report in MegaLinter reports
Set VALIDATE_ALL_CODEBASE: true in mega-linter.yml to validate all sources, not only the diff

MegaLinter is graciously provided by OX Security

@renovate renovate Bot changed the title feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.0 ) feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.1 ) Nov 23, 2024
@renovate
renovate Bot force-pushed the renovate/cluster-0-ghcr.io-lldap-lldap-0.x branch from b03fb15 to a128c46 Compare November 23, 2024 00:26
@renovate renovate Bot changed the title feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.1 ) feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.2 ) Aug 18, 2025
@renovate
renovate Bot force-pushed the renovate/cluster-0-ghcr.io-lldap-lldap-0.x branch from a128c46 to 8a2e323 Compare August 18, 2025 01:48
@renovate renovate Bot changed the title feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.2 ) feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.2 ) - autoclosed Nov 20, 2025
@renovate renovate Bot closed this Nov 20, 2025
@renovate
renovate Bot deleted the renovate/cluster-0-ghcr.io-lldap-lldap-0.x branch November 20, 2025 09:36
@renovate renovate Bot changed the title feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.2 ) - autoclosed feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.2 ) Nov 20, 2025
@renovate renovate Bot reopened this Nov 20, 2025
@renovate
renovate Bot force-pushed the renovate/cluster-0-ghcr.io-lldap-lldap-0.x branch from 8a2e323 to 481f18b Compare November 20, 2025 13:10
@renovate renovate Bot changed the title feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.2 ) feat(container): update image ghcr.io/lldap/lldap ( v0.5.0 → v0.6.3 ) Apr 30, 2026
@renovate
renovate Bot force-pushed the renovate/cluster-0-ghcr.io-lldap-lldap-0.x branch from 481f18b to 921fdcb Compare April 30, 2026 23:52
@renovate
renovate Bot force-pushed the renovate/cluster-0-ghcr.io-lldap-lldap-0.x branch from 921fdcb to 873c901 Compare June 22, 2026 17:39
| datasource | package             | from   | to     |
| ---------- | ------------------- | ------ | ------ |
| docker     | ghcr.io/lldap/lldap | v0.5.0 | v0.6.3 |
@renovate
renovate Bot force-pushed the renovate/cluster-0-ghcr.io-lldap-lldap-0.x branch from 873c901 to 4499b65 Compare July 20, 2026 21:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants