Skip to content

Commit 860544b

Browse files
Release openLMIS 3.17
1 parent f6bff29 commit 860544b

5 files changed

Lines changed: 323 additions & 54 deletions

File tree

.env

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
OL_REFERENCE_UI_VERSION=5.2.8-SNAPSHOT
1+
OL_REFERENCE_UI_VERSION=5.2.8
22

3-
OL_REQUISITION_VERSION=8.3.8-SNAPSHOT
4-
OL_REFERENCEDATA_VERSION=15.2.7-SNAPSHOT
5-
OL_AUTH_VERSION=4.3.4-SNAPSHOT
6-
OL_NOTIFICATION_VERSION=4.3.4-SNAPSHOT
7-
OL_FULFILLMENT_VERSION=9.0.5-SNAPSHOT
8-
OL_CCE_VERSION=1.3.3-SNAPSHOT
9-
OL_STOCKMANAGEMENT_VERSION=5.1.10-SNAPSHOT
10-
OL_REPORT_VERSION=1.2.3-SNAPSHOT
11-
OL_BUQ_VERSION=1.0.0-SNAPSHOT
12-
OL_HAPIFHIR_VERSION=2.0.3-SNAPSHOT
3+
OL_REQUISITION_VERSION=8.3.8
4+
OL_REFERENCEDATA_VERSION=15.2.6
5+
OL_AUTH_VERSION=4.3.3
6+
OL_NOTIFICATION_VERSION=4.3.3
7+
OL_FULFILLMENT_VERSION=9.0.5
8+
OL_CCE_VERSION=1.3.3
9+
OL_STOCKMANAGEMENT_VERSION=5.1.10
10+
OL_REPORT_VERSION=1.2.2
11+
OL_BUQ_VERSION=1.0.0
12+
OL_HAPIFHIR_VERSION=2.0.2
1313
OL_ONE_NETWORK_INTEGRATION_VERSION=0.0.1
1414
OL_ONE_NETWORK_INTEGRATION_REFERENCEDATA_EXTENSION_VERSION=0.0.1
1515
OL_ONE_NETWORK_INTEGRATION_STOCKMANAGEMENT_EXTENSION_VERSION=0.0.1
1616

17-
OL_DIAGNOSTICS_VERSION=1.1.3-SNAPSHOT
17+
OL_DIAGNOSTICS_VERSION=1.1.2
1818

1919
OL_NGINX_VERSION=5
2020
OL_RSYSLOG_VERSION=1
2121

22-
OL_POSTGRES_VERSION=12-debezium
22+
OL_POSTGRES_VERSION=12-debezium

.readthedocs.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Read the Docs configuration file for Sphinx projects
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
4+
# Required
5+
version: 2
6+
7+
# Set the OS, Python version and other tools you might need
8+
build:
9+
os: ubuntu-22.04
10+
tools:
11+
python: "3.12"
12+
# You can also specify other tool versions:
13+
# nodejs: "20"
14+
# rust: "1.70"
15+
# golang: "1.20"
16+
17+
# Build documentation in the "docs/" directory with Sphinx
18+
sphinx:
19+
configuration: docs/source/conf.py
20+
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
21+
# builder: "dirhtml"
22+
# Fail on all warnings to avoid broken references
23+
# fail_on_warning: true
24+
25+
# Optionally build your docs in additional formats such as PDF and ePub
26+
# formats:
27+
# - pdf
28+
# - epub
29+
30+
# Optional but recommended, declare the Python requirements required
31+
# to build your documentation
32+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
33+
python:
34+
install:
35+
- requirements: docs/source/requirements.txt

docs/source/collect-docs.py

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -2,49 +2,49 @@
22
import urllib
33

44
#components
5-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-fulfillment/master/README.md", "components/fulfillmentService.md")
6-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-requisition/master/README.md", "components/requisitionService.md")
7-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-auth/master/README.md", "components/authService.md")
8-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-auth/master//DESIGN.md", "components/authServiceDesign.md")
9-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-cce/master/README.md", "components/cceService.md")
10-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-notification/master/README.md", "components/notificationService.md")
5+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-fulfillment/v9.0.5/README.md", "components/fulfillmentService.md")
6+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-requisition/v8.3.8/README.md", "components/requisitionService.md")
7+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-auth/v4.3.3/README.md", "components/authService.md")
8+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-auth/v4.3.3/DESIGN.md", "components/authServiceDesign.md")
9+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-cce/v1.3.3/README.md", "components/cceService.md")
10+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-notification/v4.3.3/README.md", "components/notificationService.md")
1111
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-referencedata/v15.2.6/README.md", "components/referencedataService.md")
12-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-stockmanagement/master/README.md", "components/stockmanagementService.md")
13-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-report/master/README.md", "components/reportService.md")
14-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-hapifhir/master/README.md", "components/hapifhirService.md")
15-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-diagnostics/master/README.md", "components/diagnosticsService.md")
16-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-template-service/master/README.md", "components/templateServiceService.md")
17-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-reference-ui/v.5.2.7/README.md", "components/referenceUI.md")
18-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-auth-ui/master/README.md", "components/authUI.md")
19-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-cce-ui/master/README.md", "components/cceUI.md")
20-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-referencedata-ui/master/README.md", "components/referencedataUI.md")
21-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-report-ui/master/README.md", "components/reportUI.md")
22-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-requisition-ui/master/README.md", "components/requisitionUI.md")
23-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-fulfillment-ui/master/README.md", "components/fulfillmentUI.md")
24-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-stockmanagement-ui/master/README.md", "components/stockmanagementUI.md")
25-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/dev-ui/master/README.md", "components/devUI.md")
26-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/master/README.md", "components/uiComponents.md")
27-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/master/docs/index.md", "components/uiOverview.md")
28-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/master/docs/extension_guide.md", "components/uiExtensionGuide.md")
29-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-layout/master/README.md", "components/uiLayout.md")
12+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-stockmanagement/v5.1.10/README.md", "components/stockmanagementService.md")
13+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-report/v1.2.2/README.md", "components/reportService.md")
14+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-hapifhir/v2.0.2/README.md", "components/hapifhirService.md")
15+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-diagnostics/v1.1.2/README.md", "components/diagnosticsService.md")
16+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-template-service/v3.7.0/README.md", "components/templateServiceService.md")
17+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-reference-ui/v5.2.8/README.md", "components/referenceUI.md")
18+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-auth-ui/v6.2.12/README.md", "components/authUI.md")
19+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-cce-ui/v1.1.5/README.md", "components/cceUI.md")
20+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-referencedata-ui/v5.6.12/README.md", "components/referencedataUI.md")
21+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-report-ui/v5.2.11/README.md", "components/reportUI.md")
22+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-requisition-ui/v7.0.12/README.md", "components/requisitionUI.md")
23+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-fulfillment-ui/v6.1.4/README.md", "components/fulfillmentUI.md")
24+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-stockmanagement-ui/v2.1.6/README.md", "components/stockmanagementUI.md")
25+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/dev-ui/v9.0.6/README.md", "components/devUI.md")
26+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/v7.2.11/README.md", "components/uiComponents.md")
27+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/v7.2.11/docs/index.md", "components/uiOverview.md")
28+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/v7.2.11/docs/extension_guide.md", "components/uiExtensionGuide.md")
29+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-layout/v5.2.5/README.md", "components/uiLayout.md")
3030

3131
#conventions
32-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-template-service/master/STYLE-GUIDE.md", "conventions/codeStyleguide.md")
33-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-template-service/master/TESTING.md", "conventions/testing.md")
34-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-template-service/master/ERROR_HANDLING.md", "conventions/errorHandling.md")
35-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-template-service/master/LICENSE-HEADER.md", "conventions/licenseHeader.md")
36-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/master/docs/conventions.md", "conventions/uiConventions.md")
37-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/master/docs/conventions-angularjs.md", "conventions/uiAngularjs.md")
38-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/master/docs/conventions-javascript.md", "conventions/uiJavascript.md")
39-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/master/docs/conventions-markup.md", "conventions/uiMarkup.md")
40-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/master/docs/conventions-testing.md", "conventions/uiTesting.md")
41-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/master/docs/information-architecture.md", "conventions/uiInformationArchitecture.md")
42-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/master/docs/performance.md", "conventions/uiPerformance.md")
32+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-template-service/v3.7.0/STYLE-GUIDE.md", "conventions/codeStyleguide.md")
33+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-template-service/v3.7.0/TESTING.md", "conventions/testing.md")
34+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-template-service/v3.7.0/ERROR_HANDLING.md", "conventions/errorHandling.md")
35+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-template-service/v3.7.0/LICENSE-HEADER.md", "conventions/licenseHeader.md")
36+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/v7.2.11/docs/conventions.md", "conventions/uiConventions.md")
37+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/v7.2.11/docs/conventions-angularjs.md", "conventions/uiAngularjs.md")
38+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/v7.2.11/docs/conventions-javascript.md", "conventions/uiJavascript.md")
39+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/v7.2.11/docs/conventions-markup.md", "conventions/uiMarkup.md")
40+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/v7.2.11/docs/conventions-testing.md", "conventions/uiTesting.md")
41+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/v7.2.11/docs/information-architecture.md", "conventions/uiInformationArchitecture.md")
42+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-ui-components/v7.2.11/docs/performance.md", "conventions/uiPerformance.md")
4343

4444
# deployment
45-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/master/deploymentTopology.md", "deployment/topology.md")
46-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/master/provision/Provision-single-host.md", "deployment/provisionSingleHost.md")
47-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/master/provision/Provision-swarm-With-ELB.md", "deployment/provisionSwarmWithELB.md")
48-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/master/provision/Provision-swarm-With-Elastic-ip.md", "deployment/provisionSwarmWithElasticIp.md")
49-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/master/provision/RDS-configuration.md", "deployment/rdsConfiguration.md")
50-
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/master/deployment/README.md", "deployment/demoAndCiJenkins.md")
45+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/v3.17.0/deploymentTopology.md", "deployment/topology.md")
46+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/v3.17.0/provision/Provision-single-host.md", "deployment/provisionSingleHost.md")
47+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/v3.17.0/provision/Provision-swarm-With-ELB.md", "deployment/provisionSwarmWithELB.md")
48+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/v3.17.0/provision/Provision-swarm-With-Elastic-ip.md", "deployment/provisionSwarmWithElasticIp.md")
49+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/v3.17.0/provision/RDS-configuration.md", "deployment/rdsConfiguration.md")
50+
urllib.urlretrieve("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/v3.17.0/deployment/README.md", "deployment/demoAndCiJenkins.md")("https://raw.githubusercontent.com/OpenLMIS/openlmis-deployment/master/deployment/README.md", "deployment/demoAndCiJenkins.md")

docs/source/releases/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ To download a release, please visit `GitHub <https://github.com/OpenLMIS/openlmi
77
.. toctree::
88
:maxdepth: 1
99

10+
openlmis-ref-distro-v3.17.0
11+
openlmis-ref-distro-v3.16.0
1012
openlmis-ref-distro-v3.15.1
1113
openlmis-ref-distro-v3.15.0
1214
openlmis-ref-distro-v3.14.0

0 commit comments

Comments
 (0)