mirror of
https://github.com/documize/community.git
synced 2025-07-19 05:09:42 +02:00
Bump version
This commit is contained in:
parent
074eea3aeb
commit
6e0958b3c3
4 changed files with 9 additions and 17 deletions
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "documize",
|
||||
"version": "1.69.2",
|
||||
"version": "1.70.0",
|
||||
"description": "The Document IDE",
|
||||
"private": true,
|
||||
"repository": "",
|
||||
|
|
|
@ -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"`
|
||||
// }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue