IGDD-3013: Stage 1B — SQL FHIR and Bulk Export endpoint skeletons - #2
Merged
Conversation
Module builds standalone as a library JAR for CI/CD and GitHub Packages publication. Clarify distinction between standalone library build and full SQL-enabled service image build in izgw-transform. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Adds the standard IZ Gateway library CI/CD workflow (build, test, deploy to GitHub Packages on develop). Updates pom.xml with repository declarations, distribution management, and test/web/lombok dependencies needed for Stage 1B. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
ACTIONS_KEY is only needed for protected-branch pushes (not needed here). packages: write permission enables cross-repo package reads via GITHUB_TOKEN. Remove doRevisionCheck which requires custom plugin configuration. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
3.2.0-SNAPSHOT is actively published by izgw-core develop CI and used successfully by izgw-transform. 3.1.0 was never deployed to GitHub Packages. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Matches izgw-transform pattern: izgateway (not IZGateway). GitHub Packages URLs are case-sensitive on the org segment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- AutoConfiguration.imports registering SqlBackendAutoConfiguration
- SqlFhirController: /sql/fhir/{name}/** returning empty Bundles (Stage 1)
- SqlUnavailableController: /sql/** and /bulk/sql/** return 503 when SQL absent
- BulkExportJob model with Status enum and OutputFile inner class
- BulkExportJobStore and BulkExportOutputStore interfaces
- InMemoryBulkExportJobStore (V1, single-instance)
- TempFileBulkExportOutputStore (V1, single-instance)
- BulkExportController: POST /bulk/sql/fhir/$export, GET/DELETE $export-status
- Unit tests for SqlFhirController and BulkExportController
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
SqlBackendAutoConfigurationregistered viaAutoConfiguration.importsSqlFhirControllerat/sql/fhir/{name}/**— returns empty Bundles for Stage 1SqlUnavailableControllerat/sql/**+/bulk/sql/**— returns 503 when SQL module absentBulkExportJobStoreandBulkExportOutputStoreinterfacesInMemoryBulkExportJobStore(V1, single-instance)TempFileBulkExportOutputStore(V1, single-instance)BulkExportControllerat/bulk/sql/fhir/$export— kickoff, poll, DELETE lifecycleTest plan
SqlFhirControllertests: query/read/match return 200BulkExportControllertests: missing Prefer → 400, valid kickoff → 202, unsupported _typeFilter → 400, poll → 202, delete → 202🤖 Generated with Claude Code