messagefoundry 0.3.1__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/.gitignore +16 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/CHANGELOG.md +41 -1
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/PKG-INFO +1 -1
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/__init__.py +1 -1
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/scaffold.py +1 -1
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/LICENSE +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/NOTICE +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/README.md +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/__main__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/actions.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/adr_analyze.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/anon/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/anon/_pools.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/anon/hl7.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/anon/keying.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/anon/leak.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/anon/rules.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/anon/surrogates.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/_ui_seam.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/app.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/approvals.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/auth_models.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/auth_routes.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/client_networks.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/field_authz.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/metrics.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/models.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/multipart.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/security.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/tls.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/api/tls_client_cert.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/apiclient/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/apiclient/client.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/data/common_passwords.NOTICE +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/data/common_passwords.txt +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/identity.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/ldap.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/notifications.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/oidc/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/oidc/claims.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/oidc/flow.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/oidc/jwks.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/oidc_http.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/passwords.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/permissions.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/policy.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/ratelimit.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/reconcile.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/service.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/tokens.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/totp.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/trust_anchors.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/webauthn.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/checks.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/active_environment.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/ai_policy.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/alerts_edit.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/anchor.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/code_sets.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/codeset_edit.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/connection_schema.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/connections_edit.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/connections_file.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/db_lookup.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/environments.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/fhir_lookup.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/fingerprint.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/graph.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/impact.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/ingest_time.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/memory_encryption.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/models.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/reachability.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/reference.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/response.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/run_context.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/secretprovider.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/secretprovider_vault.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/security_edit.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/send_snapshot.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/settings.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/state.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/tls_policy.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/config/wiring.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/corepoint_import.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/crashdump.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/diagnostics.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/README.md +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/_core.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/_hl7data.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/adt.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/all_types.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/bar.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/dft.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/documents.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/mdm.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/mfn.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/oml.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/orl.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/orm.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/oru.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/ras.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/rde.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/siu.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/generators/vxu.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/hl7schema.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/hl7structures.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/integrity.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/last_resort.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/lens.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/logging_setup.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/netaddr.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/_backend.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/_builtin_hl7.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/binary.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/compression.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/consistency.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/dicom/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/dicom/_deps.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/dicom/_inflate.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/dicom/_util.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/dicom/dataset.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/dicom/errors.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/dicom/hl7_map.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/dicom/peek.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/fhir/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/fhir/_deps.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/fhir/errors.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/fhir/peek.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/fhir/resource.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/groups.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/message.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/peek.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/sniff.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/split.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/summary.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/tree.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/validate.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/x12/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/x12/_deps.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/x12/delimiters.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/x12/errors.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/x12/interchange.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/x12/message.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/x12/peek.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/x12/validate.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/xml/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/xml/_deps.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/xml/errors.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/xml/harden.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/xml/message.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/xml/schema.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/xml/signature.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/parsing/xml/wsdl.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/_sandbox_worker.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/alert_sinks.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/alerts.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/cert_expiry.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/cluster.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/cluster_sqlserver.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/config_convergence.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/connscale_shim.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/dr.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/dr_backup.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/dryrun.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/dryrun_trace.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/engine.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/gcm_invocations.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/leader_tasks.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/phase_timing.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/reference_sync.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/retention.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/sandbox.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/saturation.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/secret_rotation.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/security_notify.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/sharding.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/stage_dispatcher.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/state_convergence.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/supervisor.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/update_check.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pipeline/wiring_runner.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/pki.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/py.typed +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/redaction.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/secrets_dpapi.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/security/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/security/semgrep/handler-security.yml +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/service.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/service_status.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/spreadsheet.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/audit_tee.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/backup_codec.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/base.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/content_search.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/crypto.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/crypto_transit.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/document_strip.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/gcm_bound.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/keyprovider.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/keyprovider_vault.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/metadata.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/pool_metrics.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/postgres.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/sqlserver.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/store/store.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/support/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/support/bundle.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/support/redact.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/timezone.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/ai_broker.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/base.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/database.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/dicom.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/dicomweb.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/direct.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/email.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/fhir.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/file.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/framing.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/http_auth.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/http_listener.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/loopback.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/mllp.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/passthrough.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/remotefile.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/rest.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/signing.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/smart.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/soap.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/tcp.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/timer.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/wincred.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/transports/x12.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/__main__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/actions.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/app.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/foreign_dark.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/foreign_light.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/not_installed_dark.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/not_installed_light.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/running_dark.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/running_light.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/running_unmanaged_dark.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/running_unmanaged_light.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/starting_dark.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/starting_light.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/stopped_dark.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/stopped_light.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/stopping_dark.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/stopping_light.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/unknown_dark.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/unknown_light.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/wedged_dark.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/assets/wedged_light.ico +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/autostart.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/branding.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/config.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/control.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/iconset.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/instance.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/menu.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/poller.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/probe.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/state.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/theme.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/winshell.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/tray/winsvc.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/uploads.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/verify/__init__.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/verify/checks.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/verify/federation.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/verify/model.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/verify/report.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/verify/runner.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/verify/smoke.py +0 -0
- {messagefoundry-0.3.1 → messagefoundry-0.3.2}/pyproject.toml +0 -0
|
@@ -59,6 +59,22 @@ secrets/
|
|
|
59
59
|
.vscode/
|
|
60
60
|
.idea/
|
|
61
61
|
|
|
62
|
+
# CI-only quality artifacts (generated by .github/workflows/quality-advisory.yml, and by anyone
|
|
63
|
+
# reproducing those jobs locally). None of these were ignored before, which mattered: the C901 delta
|
|
64
|
+
# inputs are ruff JSON carrying ABSOLUTE local paths, so a local `git add -A` would stage a home
|
|
65
|
+
# directory path straight into a commit -- exactly what scripts/security/scan_forbidden.py fires on.
|
|
66
|
+
coverage.xml
|
|
67
|
+
.coverage
|
|
68
|
+
diff-cover.md
|
|
69
|
+
jscpd-report/
|
|
70
|
+
.mutmut-cache
|
|
71
|
+
mutants/
|
|
72
|
+
mutmut-run.txt
|
|
73
|
+
mutmut-results.txt
|
|
74
|
+
c901-head.json
|
|
75
|
+
c901-base.json
|
|
76
|
+
base-tree/
|
|
77
|
+
|
|
62
78
|
# Claude Code: settings.json is shared/tracked; settings.local.json is machine-local (never commit)
|
|
63
79
|
.claude/settings.local.json
|
|
64
80
|
|
|
@@ -6,6 +6,37 @@ All notable changes to MessageFoundry are documented here. The format follows
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.3.2] — 2026-07-28 — Early Access
|
|
10
|
+
|
|
11
|
+
A patch release for one adopter-facing defect shipped in 0.3.1, plus two gates that were passing
|
|
12
|
+
without being able to fail.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- **The scaffolded supply-chain gate named a repository adopters cannot read.** `messagefoundry init`
|
|
16
|
+
writes a fail-closed CI gate that runs `gh attestation verify --repo …` on the pinned engine wheel
|
|
17
|
+
before installing it. It named the retired private development vault rather than the public
|
|
18
|
+
repository that actually mints the attestations, so **every project scaffolded by 0.3.1 shipped a
|
|
19
|
+
provenance gate that fails on its owner's first CI run.** If you scaffolded against 0.3.1, either
|
|
20
|
+
re-run `messagefoundry init`, or edit that one `--repo` argument in
|
|
21
|
+
`.github/workflows/check.yml` to `MEFORORG/MessageFoundry`; setting the repository variable
|
|
22
|
+
`MEFOR_VERIFY_ENGINE=off` skips the job entirely as a stopgap. The scaffold test had pinned the
|
|
23
|
+
wrong value, so the defect was being actively enforced; it now also pins the negative.
|
|
24
|
+
- **The weekly vulnerability-metrics job measured an empty window instead of failing.**
|
|
25
|
+
`vuln-metrics.yml` invokes `scripts/security/vuln_metrics.py` with no `--repo`, so the argparse
|
|
26
|
+
default silently decided what was measured — and it named the same retired vault, whose Dependabot
|
|
27
|
+
PRs a public token cannot read. All seven KPIs were computed over zero pull requests rather than
|
|
28
|
+
erroring. The default is now `$GITHUB_REPOSITORY`, so the job measures the repository it runs in.
|
|
29
|
+
- **A partially-failed release could not be retried.** The GitHub release step failed when the tag or
|
|
30
|
+
release already existed, so a publish that died midway (as 0.3.0's did) left no clean path forward.
|
|
31
|
+
It is now idempotent.
|
|
32
|
+
- **The load harness's no-loss reconcile false-failed a demonstrably zero-loss run.** It excuses a
|
|
33
|
+
send left unconfirmed at connection teardown, capped so a dead ACK path cannot pass as zero-loss —
|
|
34
|
+
but the cap modelled legitimate stranding as "~one in-flight frame per connection". The sender
|
|
35
|
+
keeps an unbounded in-flight window and paces open-loop sends by offered rate, so real stranding
|
|
36
|
+
scales with rate × ACK-latency instead. A run that stranded 14 of 90 sends while the engine read
|
|
37
|
+
and delivered every one of the rest was reported as message loss. The cap is now
|
|
38
|
+
`max(connections, half the run)`, which keeps `read >= sent // 2` always required.
|
|
39
|
+
|
|
9
40
|
## [0.3.1] — 2026-07-27 — Early Access
|
|
10
41
|
|
|
11
42
|
### Security
|
|
@@ -84,6 +115,14 @@ All notable changes to MessageFoundry are documented here. The format follows
|
|
|
84
115
|
ON). Residuals in [SERVICE.md](docs/SERVICE.md).
|
|
85
116
|
|
|
86
117
|
### Fixed
|
|
118
|
+
- **The harness message list could livelock and stop updating entirely.** `MessagesPanel._apply` cleared
|
|
119
|
+
its in-flight guard, re-fired any refresh latched during the read, then returned *before* rendering —
|
|
120
|
+
discarding the snapshot as superseded. Whenever refreshes arrive faster than a read completes there is
|
|
121
|
+
always a latch waiting when the read lands, so every snapshot was discarded and the table never
|
|
122
|
+
updated: permanently stuck, not merely slow (measured: 391 reads served, 0 rendered). It now renders
|
|
123
|
+
first and drains afterwards, costing at most one read of staleness while still converging on the
|
|
124
|
+
latest filter. This surfaced as an intermittent CI failure that no timeout or retry could fix, because
|
|
125
|
+
neither addresses a livelock.
|
|
87
126
|
- **Two config blocks in the off-loopback runbook aborted at load** — `[diagnostics].audit_all_authz` and
|
|
88
127
|
`[ai].data_class` had been relocated by ADR 0118, so an operator copy-pasting either block got an
|
|
89
128
|
immediate start failure. Corrected to `[security].audit_all_authorization_decisions` and
|
|
@@ -956,7 +995,8 @@ tests, but the external code review + penetration test (the bar for a security-c
|
|
|
956
995
|
- Releases are built, SBOM'd (CycloneDX), and signed with [Sigstore](https://www.sigstore.dev/) — see the
|
|
957
996
|
`release` workflow.
|
|
958
997
|
|
|
959
|
-
[Unreleased]: https://github.com/MEFORORG/MessageFoundry/compare/v0.3.
|
|
998
|
+
[Unreleased]: https://github.com/MEFORORG/MessageFoundry/compare/v0.3.2...HEAD
|
|
999
|
+
[0.3.2]: https://github.com/MEFORORG/MessageFoundry/compare/v0.3.1...v0.3.2
|
|
960
1000
|
[0.3.1]: https://github.com/MEFORORG/MessageFoundry/compare/v0.3.0...v0.3.1
|
|
961
1001
|
[0.3.0]: https://github.com/MEFORORG/MessageFoundry/compare/v0.2.15...v0.3.0
|
|
962
1002
|
[0.2.15]: https://github.com/MEFORORG/MessageFoundry/compare/v0.2.14...v0.2.15
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: messagefoundry
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Open-source healthcare integration engine — route, transform, and validate messages across many formats and connection types
|
|
5
5
|
Project-URL: Homepage, https://messagefoundry.org/
|
|
6
6
|
Project-URL: Documentation, https://messagefoundry.org/
|
|
@@ -162,7 +162,7 @@ jobs:
|
|
|
162
162
|
- name: Verify SLSA build provenance before install
|
|
163
163
|
env:
|
|
164
164
|
GH_TOKEN: ${{ github.token }}
|
|
165
|
-
run: gh attestation verify dist-verify/messagefoundry-*.whl --repo
|
|
165
|
+
run: gh attestation verify dist-verify/messagefoundry-*.whl --repo MEFORORG/MessageFoundry
|
|
166
166
|
|
|
167
167
|
check:
|
|
168
168
|
needs: verify-engine
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{messagefoundry-0.3.1 → messagefoundry-0.3.2}/messagefoundry/auth/data/common_passwords.NOTICE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|