From 6e0958b3c3aaf0e6a6b80ef92ed69658556dbf9d Mon Sep 17 00:00:00 2001 From: sauls8t Date: Tue, 4 Sep 2018 17:44:40 +0100 Subject: [PATCH] Bump version --- README.md | 8 ++++++-- edition/community.go | 4 ++-- gui/package.json | 2 +- model/auth/ldap.go | 12 ------------ 4 files changed, 9 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index c04ff9a4..e66a56f2 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,9 @@ Space view. ## Latest version -[Community edition: v1.69.2](https://github.com/documize/community/releases) +[Community edition: v1.70.0](https://github.com/documize/community/releases) -[Enterprise edition: v1.71.2](https://documize.com/downloads) +[Enterprise edition: v1.72.0](https://documize.com/downloads) ## OS support @@ -99,6 +99,10 @@ Coming soon, PostgreSQL and Microsoft SQL Server database support. Besides email/password login, you can also leverage the following options. +### LDAP / Active Directory + +Connect and sync Documize with any LDAP v3 compliant provider including Microsoft Active Directory. + ### Keycloak Integration Documize provides out-of-the-box integration with [Redhat Keycloak](http://www.keycloak.org) for open source identity and access management. diff --git a/edition/community.go b/edition/community.go index 75cb779e..58cb9578 100644 --- a/edition/community.go +++ b/edition/community.go @@ -41,8 +41,8 @@ func main() { // product details rt.Product = env.ProdInfo{} rt.Product.Major = "1" - rt.Product.Minor = "69" - rt.Product.Patch = "2" + rt.Product.Minor = "70" + rt.Product.Patch = "0" rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch) rt.Product.Edition = "Community" rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition) diff --git a/gui/package.json b/gui/package.json index abd85e72..658e6e3b 100644 --- a/gui/package.json +++ b/gui/package.json @@ -1,6 +1,6 @@ { "name": "documize", - "version": "1.69.2", + "version": "1.70.0", "description": "The Document IDE", "private": true, "repository": "", diff --git a/model/auth/ldap.go b/model/auth/ldap.go index 3932612c..971e5d0f 100644 --- a/model/auth/ldap.go +++ b/model/auth/ldap.go @@ -166,15 +166,3 @@ type LDAPUser struct { Firstname string `json:"firstName"` Lastname string `json:"lastName"` } - -// LDAPAuthRequest data received via LDAP client library -// type LDAPAuthRequest struct { -// Domain string `json:"domain"` -// Token string `json:"token"` -// RemoteID string `json:"remoteId"` -// Email string `json:"email"` -// Username string `json:"username"` -// Firstname string `json:"firstname"` -// Lastname string `json:"lastname"` -// Enabled bool `json:"enabled"` -// }