[PR #749] [MERGED] Merge branch release/v8.1.0 into develop #764

Closed
opened 2026-02-26 10:33:49 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ONLYOFFICE/Docker-DocumentServer/pull/749
Author: @papacarlo
Created: 6/26/2024
Status: Merged
Merged: 6/26/2024
Merged by: @papacarlo

Base: developHead: release/v8.1.0


📝 Commits (10+)

  • 5e9c269 fix Bug 62253 - self-signed SSL issue (#714)
  • 184a07a Merge branch hotfix/v8.0.1 into release/v8.1.0
  • eb1706e fix Bug 62253 - NODE_EXTRA_CA_CERTS substitution error (#721)
  • 3fe861b Add damengdb stand (#712)
  • 12eb20a fix Bug 65410 - Disable ds:metrics service when METRICS_ENABLED=false (#726)
  • a571bd0 Add MSSQL support (#728)
  • b665c00 Use mssql-tools version from BASE_IMAGE (#731)
  • b4e29f9 Add configuration of WOPI parameters (#735)
  • bbfc86a Add ORACLE support (#734)
  • 85ddd66 fix Bug 66601 - Add additional parameters for WOPI configuration (#738)

📊 Changes

19 files changed (+495 additions, -14 deletions)

View changed files

📝 .github/workflows/stable-build.yml (+1 -1)
📝 Dockerfile (+33 -3)
📝 README.md (+2 -1)
📝 config/supervisor/ds/ds-metrics.conf (+2 -2)
📝 docker-bake.hcl (+2 -2)
oracle/sqlplus (+6 -0)
📝 run-document-server.sh (+122 -5)
tests/damengdb/.env (+1 -0)
tests/damengdb/README.md (+19 -0)
tests/damengdb/damengdb.Dockerfile (+46 -0)
tests/damengdb/docker-compose.yml (+67 -0)
tests/mssql/README.md (+17 -0)
tests/mssql/create_db_user.sh (+32 -0)
tests/mssql/docker-compose.yml (+38 -0)
tests/mssql/mssql.Dockerfile (+9 -0)
tests/oracle/README.md (+17 -0)
tests/oracle/create_db_user.sh (+28 -0)
tests/oracle/docker-compose.yml (+38 -0)
tests/oracle/oracle.Dockerfile (+15 -0)

📄 Description

  • fix Bug 62253 - self-signed SSL issue (#714)
  • fix Bug 62253 - NODE_EXTRA_CA_CERTS substitution error (#721)
  • Add damengdb stand (#712)
  • fix Bug 65410 - Disable ds:metrics service when METRICS_ENABLED=false (#726)
  • Add MSSQL support (#728)
  • Use mssql-tools version from BASE_IMAGE (#731)
  • Add configuration of WOPI parameters (#735)
  • Add ORACLE support (#734)
  • fix Bug 66601 - Add additional parameters for WOPI configuration (#738)
  • fix Bug 68320 - Fix output during WOPI configuration (#741)
  • Add fixes to WOPI configuration (#742)
  • Fix changing permissions for log directories (#744)
  • Fix branding paths (#745)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ONLYOFFICE/Docker-DocumentServer/pull/749 **Author:** [@papacarlo](https://github.com/papacarlo) **Created:** 6/26/2024 **Status:** ✅ Merged **Merged:** 6/26/2024 **Merged by:** [@papacarlo](https://github.com/papacarlo) **Base:** `develop` ← **Head:** `release/v8.1.0` --- ### 📝 Commits (10+) - [`5e9c269`](https://github.com/ONLYOFFICE/Docker-DocumentServer/commit/5e9c269d8686611acc33997856ca521fd8094711) fix Bug 62253 - self-signed SSL issue (#714) - [`184a07a`](https://github.com/ONLYOFFICE/Docker-DocumentServer/commit/184a07a2b32527bd88ff91e56d4fa98d5c42e2cc) Merge branch hotfix/v8.0.1 into release/v8.1.0 - [`eb1706e`](https://github.com/ONLYOFFICE/Docker-DocumentServer/commit/eb1706e3b7215988bbb49c44855422a5e25f96e7) fix Bug 62253 - NODE_EXTRA_CA_CERTS substitution error (#721) - [`3fe861b`](https://github.com/ONLYOFFICE/Docker-DocumentServer/commit/3fe861b1a47d51f2f3933c489e617df29b22e303) Add damengdb stand (#712) - [`12eb20a`](https://github.com/ONLYOFFICE/Docker-DocumentServer/commit/12eb20a61b008efc3b7834f5f628df2fa95c7276) fix Bug 65410 - Disable ds:metrics service when METRICS_ENABLED=false (#726) - [`a571bd0`](https://github.com/ONLYOFFICE/Docker-DocumentServer/commit/a571bd0d1a02093f77f1f127d324d032ea39f574) Add MSSQL support (#728) - [`b665c00`](https://github.com/ONLYOFFICE/Docker-DocumentServer/commit/b665c004dafb45ea20d863086b68a1c9986d34ce) Use mssql-tools version from BASE_IMAGE (#731) - [`b4e29f9`](https://github.com/ONLYOFFICE/Docker-DocumentServer/commit/b4e29f96954efcc472d8b44f6251a589e71de46d) Add configuration of WOPI parameters (#735) - [`bbfc86a`](https://github.com/ONLYOFFICE/Docker-DocumentServer/commit/bbfc86a1e0eb68c38f7b652f2504f3cea8d1c0b5) Add ORACLE support (#734) - [`85ddd66`](https://github.com/ONLYOFFICE/Docker-DocumentServer/commit/85ddd66d9f3e237ca9b64b5165c8f001f99cc579) fix Bug 66601 - Add additional parameters for WOPI configuration (#738) ### 📊 Changes **19 files changed** (+495 additions, -14 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/stable-build.yml` (+1 -1) 📝 `Dockerfile` (+33 -3) 📝 `README.md` (+2 -1) 📝 `config/supervisor/ds/ds-metrics.conf` (+2 -2) 📝 `docker-bake.hcl` (+2 -2) ➕ `oracle/sqlplus` (+6 -0) 📝 `run-document-server.sh` (+122 -5) ➕ `tests/damengdb/.env` (+1 -0) ➕ `tests/damengdb/README.md` (+19 -0) ➕ `tests/damengdb/damengdb.Dockerfile` (+46 -0) ➕ `tests/damengdb/docker-compose.yml` (+67 -0) ➕ `tests/mssql/README.md` (+17 -0) ➕ `tests/mssql/create_db_user.sh` (+32 -0) ➕ `tests/mssql/docker-compose.yml` (+38 -0) ➕ `tests/mssql/mssql.Dockerfile` (+9 -0) ➕ `tests/oracle/README.md` (+17 -0) ➕ `tests/oracle/create_db_user.sh` (+28 -0) ➕ `tests/oracle/docker-compose.yml` (+38 -0) ➕ `tests/oracle/oracle.Dockerfile` (+15 -0) </details> ### 📄 Description - fix Bug 62253 - self-signed SSL issue (#714) - fix Bug 62253 - NODE_EXTRA_CA_CERTS substitution error (#721) - Add damengdb stand (#712) - fix Bug 65410 - Disable ds:metrics service when METRICS_ENABLED=false (#726) - Add MSSQL support (#728) - Use mssql-tools version from BASE_IMAGE (#731) - Add configuration of WOPI parameters (#735) - Add ORACLE support (#734) - fix Bug 66601 - Add additional parameters for WOPI configuration (#738) - fix Bug 68320 - Fix output during WOPI configuration (#741) - Add fixes to WOPI configuration (#742) - Fix changing permissions for log directories (#744) - Fix branding paths (#745) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 10:33:49 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Docker-DocumentServer-ONLYOFFICE#764
No description provided.