Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
d636d25
Updated github actions.
azhar-saleem-infoway Nov 18, 2025
0dca5b5
Fix CDA datatypes mapping
oliveregger Nov 11, 2025
00aee03
update core to 6.7.10
oliveregger Dec 26, 2025
cf1e29e
ahdis/matchbox#447
oliveregger Dec 27, 2025
3eaf22c
#448
oliveregger Dec 27, 2025
65a905c
support validating CodeableConcept in internal tx #448
oliveregger Dec 28, 2025
90a5423
fix np
oliveregger Dec 28, 2025
561d245
Update udpatecoreversion.md
oliveregger Dec 29, 2025
8ed9ba7
Update udpatecoreversion.md
oliveregger Dec 29, 2025
b7bad2b
Update matchbox-server/src/main/java/ch/ahdis/matchbox/CliContext.java
oliveregger Dec 29, 2025
533c422
Update docs/changelog.md
oliveregger Dec 29, 2025
4a042c2
#424 test file
oliveregger Dec 25, 2025
9fb9679
FHIR R4 validation error with R5 extension #424
oliveregger Jan 5, 2026
d73dfa1
update dependencies
oliveregger Jan 5, 2026
7671dde
update gui for security
oliveregger Jan 5, 2026
b9c9110
fix: update CI to use Node.js 24 to match local development
oliveregger Jan 5, 2026
704b3ec
Regenerate package-lock.json
qligier Jan 5, 2026
7188182
server: rebuild the Angular GUI resources
oliveregger Jan 5, 2026
e5d1b61
matchbox#425 patch is still needed
oliveregger Jan 7, 2026
92fea98
Release 4.0.16
oliveregger Jan 7, 2026
42cfcd7
Merge branch 'oe_rel4016' of https://github.com/ahdis/matchbox into i…
azhar-saleem-infoway Jan 7, 2026
23a9ee7
Upgrade to Version Matchbox 4.0.16
azhar-saleem-infoway Jan 7, 2026
13f0791
matchbox#425 patch is still needed
oliveregger Jan 7, 2026
5deaf7a
Release 4.0.16
oliveregger Jan 7, 2026
cc01ca1
remove autoinstall
oliveregger Jan 7, 2026
1738032
fix tho loading #452
oliveregger Jan 7, 2026
5c485ab
change date
oliveregger Jan 8, 2026
81d3a31
terminology#7.0.1 Fixes ahdis/matchbox#452
oliveregger Jan 8, 2026
ca7badd
Merge branch 'main' of https://github.com/ahdis/matchbox into infoway…
azhar-saleem-infoway Jan 8, 2026
47381a8
Reset with-ca/application.yaml
azhar-saleem-infoway Jan 8, 2026
0372e7f
Updated suppressions.
azhar-saleem-infoway Jan 8, 2026
919d1f3
Cleanup
azhar-saleem-infoway Jan 8, 2026
1818f8e
remove the suppression.
azhar-saleem-infoway Jan 8, 2026
1e488dd
Adding nginx config.
azhar-saleem-infoway Jan 9, 2026
14871dd
Updated CICD
azhar-saleem-infoway Jan 9, 2026
676515e
minor updated
azhar-saleem-infoway Jan 9, 2026
8b5397a
minor updated
azhar-saleem-infoway Jan 9, 2026
826b0e5
minor updated
azhar-saleem-infoway Jan 9, 2026
7df6124
minor updated
azhar-saleem-infoway Jan 9, 2026
c223662
ADTT-1122: Upgrade Matchbox `main` branch to v4.0.16 (#13)
azhar-saleem-infoway Jan 9, 2026
2cc2f64
Merge branch 'main' of https://github.com/ahdis/matchbox
azhar-saleem-infoway Jan 9, 2026
301956e
Merge branch 'main' of https://github.com/AccessDigitalHealth/matchbo…
azhar-saleem-infoway Jan 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/angular_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/setup-node@v5
with:
# https://github.com/actions/setup-node
node-version: 20
node-version: 24
cache: npm
cache-dependency-path: matchbox-frontend/package-lock.json

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-server-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ jobs:
- name: Upload Dockerrun.aws.json
uses: actions/upload-artifact@v4
with:
name: matchbox-server-artifact
name: matchbox-server-artifact.zip
path: Dockerrun.aws.json

- name: Zip deployment bundle
run: |
cat Dockerrun.aws.json
zip -r "${{ env.ZIP_FILE }}" Dockerrun.aws.json
zip -r "${{ env.ZIP_FILE }}" Dockerrun.aws.json .platform/

- name: Cache Maven packages
uses: actions/cache@v4
Expand Down
8 changes: 8 additions & 0 deletions .platform/nginx/conf.d/elasticbeanstalk/001_custom.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Nginx Configuration

# Global directive for upload size
client_max_body_size 100M;
client_body_timeout 300s; # allow up to 2 minutes for upload
proxy_connect_timeout 60s;
proxy_send_timeout 240s;
proxy_read_timeout 240s;
9 changes: 9 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,15 @@
"vmArgs": "-Dspring.config.additional-location=file:with-ch/application.yaml",
"cwd": "${workspaceFolder}/matchbox-server"
},
{
"type": "java",
"name": "Launch Matchbox-Server (ans)",
"request": "launch",
"mainClass": "ca.uhn.fhir.jpa.starter.Application",
"projectName": "matchbox-server",
"vmArgs": "-Dspring.config.additional-location=file:with-ans/application.yaml",
"cwd": "${workspaceFolder}/matchbox-server"
},
{
"type": "java",
"name": "Launch Matchbox-Server (gazelle)",
Expand Down
Loading
Loading