Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a100f755ce | |||
| 81ad538e50 |
@@ -6,6 +6,18 @@ correspond to git tags (`vX.Y.Z`) and `nodejs/package.json`'s `version`.
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.1.18] - 2026-07-21
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- N-Way Multi-Master LDAP replication: `LDAP_SERVER_ID` + `LDAP_REPLICATION_HOSTS` configure `syncrepl` peers in the bundled OpenLDAP, and a new `/sites` page (nav: **Sites**) shows each configured peer's LDAP URL and live reachability.
|
||||||
|
- A `location` property on users, editable from the profile and user-edit forms.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- `/sites` (added above) 500'd on every load: `views/sites.ejs` included nonexistent partials `header`/`footer` instead of this app's actual `top`/`bottom`. Fixed to match every other view.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Refreshed all README screenshots (dashboard, users, groups, OAuth apps) against the current UI, and added a new Sites & Replication screenshot.
|
||||||
|
|
||||||
## [1.1.17] - 2026-07-18
|
## [1.1.17] - 2026-07-18
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -25,6 +25,10 @@ phone-home, no hosted control plane, and no per-user pricing.
|
|||||||
| --- | --- |
|
| --- | --- |
|
||||||
| [](docs/images/groups.png) | [](docs/images/oauth-clients.png) |
|
| [](docs/images/groups.png) | [](docs/images/oauth-clients.png) |
|
||||||
|
|
||||||
|
| Sites & Replication |
|
||||||
|
| --- |
|
||||||
|
| [](docs/images/sites.png) |
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- **OpenID Connect / OAuth 2.0 provider** — issue your own access, refresh, and
|
- **OpenID Connect / OAuth 2.0 provider** — issue your own access, refresh, and
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 232 KiB |
|
Before Width: | Height: | Size: 128 KiB After Width: | Height: | Size: 362 KiB |
|
Before Width: | Height: | Size: 174 KiB After Width: | Height: | Size: 357 KiB |
|
After Width: | Height: | Size: 123 KiB |
|
Before Width: | Height: | Size: 128 KiB After Width: | Height: | Size: 284 KiB |
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "t42-sso-manager",
|
"name": "t42-sso-manager",
|
||||||
"version": "1.1.17",
|
"version": "1.1.18",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "t42-sso-manager",
|
"name": "t42-sso-manager",
|
||||||
"version": "1.1.17",
|
"version": "1.1.18",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-free": "^7.3.0",
|
"@fortawesome/fontawesome-free": "^7.3.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "t42-sso-manager",
|
"name": "t42-sso-manager",
|
||||||
"version": "1.1.17",
|
"version": "1.1.18",
|
||||||
"author": [
|
"author": [
|
||||||
{
|
{
|
||||||
"name": "William Mantly",
|
"name": "William Mantly",
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<%- include('header') %>
|
<%- include('top') %>
|
||||||
|
|
||||||
<div class="container-fluid" style="margin-top: 80px;">
|
<div class="container-fluid" style="margin-top: 80px;">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -48,4 +48,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%- include('footer') %>
|
<%- include('bottom') %>
|
||||||
|
|||||||