Skip to content

Commit 1f462ed

Browse files
committed
Support Microsoft SQL Azure v12+
1 parent 9f122fa commit 1f462ed

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

+3-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.0](https://github.com/documize/community/releases)
15+
[Community edition: v5.11.1](https://github.com/documize/community/releases)
1616

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

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

@@ -47,6 +47,7 @@ For all database types, Full-Text Search (FTS) support is mandatory.
4747

4848
- PostgreSQL (v9.6+)
4949
- Microsoft SQL Server (2016+ with FTS)
50+
- Microsoft SQL Azure (v12+)
5051
- MySQL (v5.7.10+ and v8.0.12+)
5152
- Percona (v5.7.16-10+)
5253
- MariaDB (10.3.0+)

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 = "0"
45-
rt.Product.Revision = "1704989358"
44+
rt.Product.Patch = "1"
45+
rt.Product.Revision = "1705347666"
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"

edition/storage/sqlserver.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,8 @@ func (p SQLServerProvider) JSONGetValue(column, attribute string) string {
346346
// See: http://sqlserverbuilds.blogspot.com
347347
func (p SQLServerProvider) VerfiyVersion(dbVersion string) (bool, string) {
348348

349-
if strings.HasPrefix(dbVersion, "13.") ||
349+
if strings.HasPrefix(dbVersion, "12.") ||
350+
strings.HasPrefix(dbVersion, "13.") ||
350351
strings.HasPrefix(dbVersion, "14.") ||
351352
strings.HasPrefix(dbVersion, "15.") ||
352353
strings.HasPrefix(dbVersion, "16.") {

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.0",
3+
"version": "5.11.1",
44
"private": true,
55
"description": "Documize Community",
66
"repository": "",

0 commit comments

Comments
 (0)