(cargo-release) version 1.1.0-alpha.7

This commit is contained in:
William Brown 2021-12-31 09:26:31 +10:00
parent d25e3b338a
commit c8468199fc
13 changed files with 37 additions and 20 deletions

18
Cargo.lock generated
View file

@ -1879,7 +1879,7 @@ dependencies = [
[[package]]
name = "kanidm"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
dependencies = [
"async-h1",
"async-std",
@ -1944,7 +1944,7 @@ dependencies = [
[[package]]
name = "kanidm_client"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
dependencies = [
"async-std",
"base64 0.13.0",
@ -1968,7 +1968,7 @@ dependencies = [
[[package]]
name = "kanidm_proto"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
dependencies = [
"base32",
"serde",
@ -1981,7 +1981,7 @@ dependencies = [
[[package]]
name = "kanidm_tools"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
dependencies = [
"bundy",
"dialoguer",
@ -2004,7 +2004,7 @@ dependencies = [
[[package]]
name = "kanidm_unix_int"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
dependencies = [
"async-std",
"bytes",
@ -2034,7 +2034,7 @@ dependencies = [
[[package]]
name = "kanidmd_web_ui"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
dependencies = [
"gloo 0.5.0",
"js-sys",
@ -2323,7 +2323,7 @@ dependencies = [
[[package]]
name = "nss_kanidm"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
dependencies = [
"kanidm_unix_int",
"lazy_static",
@ -2476,7 +2476,7 @@ dependencies = [
[[package]]
name = "orca"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
dependencies = [
"async-std",
"crossbeam",
@ -2503,7 +2503,7 @@ dependencies = [
[[package]]
name = "pam_kanidm"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
dependencies = [
"kanidm_unix_int",
"libc",

View file

@ -1,6 +1,6 @@
<p align="center">
<img src="https://raw.githubusercontent.com/kanidm/kanidm/master/artwork/logo-xmas-small.png" width="20%" height="auto" />
<img src="https://raw.githubusercontent.com/kanidm/kanidm/master/artwork/logo-small.png" width="20%" height="auto" />
</p>
# Kanidm

View file

@ -16,6 +16,23 @@ can help. If you find a bug or issue, we'd love you to report it to our
# Release Notes
## 2022-01-01 - Kanidm 1.1.0-alpha7
This is the seventh alpha series release of the Kanidm Identity Management
project. Alpha releases are to help get feedback and ideas from the community
on how we can continue to make this project better for a future supported release.
### Release Highlights
* Oauth2 scope to group mappings
* Webauthn subdomain support
* Oauth2 rfc7662 token introspection
* Basic OpenID Connect support
* Improve performance of domain rename
* Refactor of entry value internals to improve performance
* Addition of email address attributes
* Web UI improvements for Oauth2
## 2021-10-01 - Kanidm 1.1.0-alpha6
This is the sixth alpha series release of the Kanidm Identity Management

View file

@ -1,6 +1,6 @@
[package]
name = "kanidm_client"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
authors = ["William Brown <william@blackhats.net.au>"]
edition = "2018"
license = "MPL-2.0"

View file

@ -1,6 +1,6 @@
[package]
name = "kanidm_proto"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
authors = ["William Brown <william@blackhats.net.au>"]
edition = "2018"
license = "MPL-2.0"

View file

@ -1,6 +1,6 @@
[package]
name = "kanidm_tools"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
authors = ["William Brown <william@blackhats.net.au>"]
edition = "2018"
default-run = "kanidm"

View file

@ -1,6 +1,6 @@
[package]
name = "kanidm_unix_int"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
authors = ["William Brown <william@blackhats.net.au>"]
edition = "2018"
license = "MPL-2.0"

View file

@ -1,6 +1,6 @@
[package]
name = "nss_kanidm"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
authors = ["William Brown <william@blackhats.net.au>"]
edition = "2018"

View file

@ -1,6 +1,6 @@
[package]
name = "pam_kanidm"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
authors = ["William Brown <william@blackhats.net.au>"]
edition = "2018"

View file

@ -1,6 +1,6 @@
[package]
name = "kanidm"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
authors = ["William Brown <william@blackhats.net.au>"]
edition = "2018"
license = "MPL-2.0"

View file

@ -13,7 +13,7 @@ pub use crate::constants::system_config::*;
pub use crate::constants::uuids::*;
// Increment this as we add new schema types and values!!!
pub const SYSTEM_INDEX_VERSION: i64 = 19;
pub const SYSTEM_INDEX_VERSION: i64 = 20;
// On test builds, define to 60 seconds
#[cfg(test)]
pub const PURGE_FREQUENCY: u64 = 60;

View file

@ -1,6 +1,6 @@
[package]
name = "kanidmd_web_ui"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
authors = ["William Brown <william@blackhats.net.au>"]
edition = "2018"
license = "MPL-2.0"

View file

@ -1,6 +1,6 @@
[package]
name = "orca"
version = "1.1.0-alpha.6"
version = "1.1.0-alpha.7"
authors = ["William Brown <william@blackhats.net.au>"]
edition = "2018"
license = "MPL-2.0"