Skip to content

Commit 20fb853

Browse files
committed
Implement Azure SQL database compatibility checks
1 parent 599c53a commit 20fb853

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ All you need to provide is your database -- PostgreSQL, Microsoft SQL Server or
1212

1313
## Latest Release
1414

15-
[Community edition: v5.11.1](https://github.com/documize/community/releases)
15+
[Community edition: v5.11.2](https://github.com/documize/community/releases)
1616

17-
[Community+ edition: v5.11.1](https://www.documize.com/community/get-started)
17+
[Community+ edition: v5.11.2](https://www.documize.com/community/get-started)
1818

1919
The Community+ edition is the "enterprise" offering with advanced capabilities and customer support:
2020

core/database/check.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func Check(runtime *env.Runtime) bool {
8282
return false
8383
}
8484

85-
if len(flds) == 0 {
85+
if len(flds) <= 5 {
8686
runtime.Log.Info("Database: starting setup mode for empty database")
8787
runtime.Flags.SiteMode = env.SiteModeSetup
8888
return false

edition/community.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ func main() {
4141
rt.Product = domain.Product{}
4242
rt.Product.Major = "5"
4343
rt.Product.Minor = "11"
44-
rt.Product.Patch = "1"
45-
rt.Product.Revision = "1705347666"
44+
rt.Product.Patch = "2"
45+
rt.Product.Revision = "1705427184"
4646
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
4747
rt.Product.Edition = domain.CommunityEdition
4848
rt.Product.Title = "Community"

gui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "documize",
3-
"version": "5.11.1",
3+
"version": "5.11.2",
44
"private": true,
55
"description": "Documize Community",
66
"repository": "",

0 commit comments

Comments
 (0)