Skip to content

Commit

Permalink
v0.1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
mdecimus committed Oct 2, 2024
1 parent d4175d7 commit 4dfc3f6
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

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

## [0.1.16] - 2024-10-01

## Added
- OpenID Connect support.
- API key and OAuth client management.
- Form submission management.

### Changed
- Improved Permission management UI.

### Fixed
- Add permissions tab to group edit screen (stalwartlabs/mail-server#826)
- Include account name in undelete pages (stalwartlabs/mail-server#808)
- Include a Content-Type header when posting (#18).
- Correctly set tenant limits.

## [0.1.15] - 2024-09-20

## Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage = "https://stalw.art"
keywords = ["web", "admin", "email", "mail", "server"]
categories = ["email"]
license = "AGPL-3.0-only OR LicenseRef-SEL"
version = "0.1.15"
version = "0.1.16"
edition = "2021"
resolver = "2"

Expand Down
3 changes: 3 additions & 0 deletions src/pages/config/schema/directory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -435,12 +435,14 @@ impl Builder<Schemas, ()> {
.new_field("auth.token")
.label("Auth token")
.typ(Type::Secret)
.enterprise_feature()
.help(concat!(
"Bearer token used to authenticate with the OAuth introspect endpoint.",
))
.display_if_eq("auth.method", ["token"])
.build()
.new_field("auth.username")
.enterprise_feature()
.label("Auth username")
.help(concat!(
"Username used to authenticate with the OAuth introspect endpoint.",
Expand All @@ -449,6 +451,7 @@ impl Builder<Schemas, ()> {
.display_if_eq("auth.method", ["basic"])
.build()
.new_field("auth.secret")
.enterprise_feature()
.label("Auth secret")
.help(concat!(
"Password used to authenticate with the OAuth introspect endpoint.",
Expand Down

0 comments on commit 4dfc3f6

Please sign in to comment.