Skip to content

Commit 4dfc3f6

Browse files
committed
v0.1.16
1 parent d4175d7 commit 4dfc3f6

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.1.16] - 2024-10-01
6+
7+
## Added
8+
- OpenID Connect support.
9+
- API key and OAuth client management.
10+
- Form submission management.
11+
12+
### Changed
13+
- Improved Permission management UI.
14+
15+
### Fixed
16+
- Add permissions tab to group edit screen (stalwartlabs/mail-server#826)
17+
- Include account name in undelete pages (stalwartlabs/mail-server#808)
18+
- Include a Content-Type header when posting (#18).
19+
- Correctly set tenant limits.
20+
521
## [0.1.15] - 2024-09-20
622

723
## Added

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage = "https://stalw.art"
77
keywords = ["web", "admin", "email", "mail", "server"]
88
categories = ["email"]
99
license = "AGPL-3.0-only OR LicenseRef-SEL"
10-
version = "0.1.15"
10+
version = "0.1.16"
1111
edition = "2021"
1212
resolver = "2"
1313

src/pages/config/schema/directory.rs

+3
Original file line numberDiff line numberDiff line change
@@ -435,12 +435,14 @@ impl Builder<Schemas, ()> {
435435
.new_field("auth.token")
436436
.label("Auth token")
437437
.typ(Type::Secret)
438+
.enterprise_feature()
438439
.help(concat!(
439440
"Bearer token used to authenticate with the OAuth introspect endpoint.",
440441
))
441442
.display_if_eq("auth.method", ["token"])
442443
.build()
443444
.new_field("auth.username")
445+
.enterprise_feature()
444446
.label("Auth username")
445447
.help(concat!(
446448
"Username used to authenticate with the OAuth introspect endpoint.",
@@ -449,6 +451,7 @@ impl Builder<Schemas, ()> {
449451
.display_if_eq("auth.method", ["basic"])
450452
.build()
451453
.new_field("auth.secret")
454+
.enterprise_feature()
452455
.label("Auth secret")
453456
.help(concat!(
454457
"Password used to authenticate with the OAuth introspect endpoint.",

0 commit comments

Comments
 (0)