Skip to content

Commit 0cb84b7

Browse files
authored
Merge pull request #319 from digital-gov-mg/release-v1.6.4
upgrade to release v1.6.4
2 parents 5a43ee8 + 35dbed7 commit 0cb84b7

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
- name: Checking out git repo
1111
uses: actions/checkout@v4
1212

13-
- name: Use Node.js 18.19
14-
uses: actions/setup-node@v2
13+
- name: Use Node.js from .nvmrc
14+
uses: actions/setup-node@v4
1515
with:
16-
node-version: '18.19'
17-
cache: 'npm'
16+
node-version-file: .nvmrc
17+
cache: 'yarn'
1818

1919
- name: Runs dependency installation
2020
run: yarn

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.6.4
4+
5+
### Bug fixes
6+
7+
- Query the location tree directly from the config service to improve performance for large datasets
8+
39
## 1.6.3
410

511
### Breaking changes

infrastructure/docker-compose.deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -882,6 +882,7 @@ services:
882882
- APN_SERVICE_URL=http://apm-server:8200
883883
- CERT_PUBLIC_KEY_PATH=/run/secrets/jwt-public-key.{{ts}}
884884
- MONGO_URL=mongodb://config:${CONFIG_MONGODB_PASSWORD}@mongo1/application-config?replicaSet=rs0
885+
- HEARTH_MONGO_URL=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1/hearth-dev?replicaSet=rs0
885886
- LOGIN_URL=https://login.{{hostname}}
886887
- CLIENT_APP_URL=https://register.{{hostname}}
887888
- DOMAIN={{hostname}}

infrastructure/docker-compose.staging-deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ services:
8585
- NODE_ENV=production
8686
- SENTRY_DSN=${SENTRY_DSN:-}
8787
- MONGO_URL=mongodb://config:${CONFIG_MONGODB_PASSWORD}@mongo1/application-config?replicaSet=rs0
88+
- HEARTH_MONGO_URL=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1/hearth-dev?replicaSet=rs0
8889
- DISABLE_RATE_LIMIT=true
8990
deploy:
9091
replicas: 1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencrvs/countryconfig",
3-
"version": "1.6.3",
3+
"version": "1.6.4",
44
"description": "OpenCRVS country configuration for reference data",
55
"os": [
66
"darwin",

0 commit comments

Comments
 (0)