Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare Release #7

Merged
merged 46 commits into from
Jul 27, 2022
Merged

Prepare Release #7

merged 46 commits into from
Jul 27, 2022

Commits on Apr 12, 2022

  1. Merge pull request #1 from medizininformatik-initiative/switch-to-mii

    Switch to MII Namespace
    DiCanio committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    2ae7439 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2022

  1. increase dsf version to 0.5.5

    wetret committed Apr 22, 2022
    Configuration menu
    Copy the full SHA
    25c17e9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8afa7bb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ef9601 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fe82427 View commit details
    Browse the repository at this point in the history
  5. remove .ide folder

    wetret committed Apr 22, 2022
    Configuration menu
    Copy the full SHA
    b7e1214 View commit details
    Browse the repository at this point in the history
  6. fix .gitignore

    wetret committed Apr 22, 2022
    Configuration menu
    Copy the full SHA
    5d886a2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    dc51cd8 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a7d728f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    50e082f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d30861d View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    65ba6c6 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    20db75a View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2022

  1. Suggested improvements from PR

    wetret committed Apr 25, 2022
    Configuration menu
    Copy the full SHA
    4b1e6b7 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2022

  1. Merge pull request #5 from wetret/main

    Change MeasureReport read access from ALL to requesting organization
    DiCanio authored May 6, 2022
    Configuration menu
    Copy the full SHA
    73b2733 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d6bc0a6 View commit details
    Browse the repository at this point in the history
  3. Add DIC 3 Setup

    This is intended for showcasing proxy support (specifically
    if one is installed in front of a FHIR store other than the
    mailbox).
    The proxy also comes with a self-signed certificate in order
    to check trust store capabilities of the store client.
    DiCanio committed May 6, 2022
    Configuration menu
    Copy the full SHA
    9adb10c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a67a1e3 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #6 from medizininformatik-initiative/feature/3-sup…

    …port-advanced-fhir-client-settings
    
    Feature/3 support advanced fhir client settings
    DiCanio authored May 6, 2022
    Configuration menu
    Copy the full SHA
    c65afa2 View commit details
    Browse the repository at this point in the history
  6. Fix Certificate Creation Script

    Fix issues with resolving a relative path.
    DiCanio committed May 6, 2022
    Configuration menu
    Copy the full SHA
    4c73a5a View commit details
    Browse the repository at this point in the history
  7. Temporary Disable Test

    Test only fails in GitHub CI pipeline but runs fine in other
    environments. Looking into resolving this later on.
    DiCanio committed May 6, 2022
    Configuration menu
    Copy the full SHA
    e9446a5 View commit details
    Browse the repository at this point in the history
  8. Fix Build Step

    Corrects path to pom.xml
    DiCanio committed May 6, 2022
    Configuration menu
    Copy the full SHA
    0852832 View commit details
    Browse the repository at this point in the history
  9. Fix Test Resource Generation

    Ensure test resources get created before being copied by maven.
    Otherwise tests may fail due to missing artifacts.
    DiCanio committed May 6, 2022
    Configuration menu
    Copy the full SHA
    3cabe3f View commit details
    Browse the repository at this point in the history

Commits on May 9, 2022

  1. Re-Enable Temporarily Disabled Test

    A follow-up change associated with the fixed test resource
    generation.
    DiCanio committed May 9, 2022
    Configuration menu
    Copy the full SHA
    b745010 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4853606 View commit details
    Browse the repository at this point in the history
  3. Fix EnvVars in DIC 3 Setup

    Changes the DIC 3 setup to properly use a reverse proxy.
    DiCanio committed May 9, 2022
    Configuration menu
    Copy the full SHA
    991f733 View commit details
    Browse the repository at this point in the history
  4. Create P12 File Using Keytool

    This is necessary if any resulting P12 file is going to be
    used by a Java process. P12 files created by OpenSSL have
    an attribute missing which leads to an exception at runtime.
    DiCanio committed May 9, 2022
    Configuration menu
    Copy the full SHA
    4aabbd1 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2022

  1. Relax MeasureReport Date Constraint

    MeasureReports are no longer expected to come with a report
    date appended to them. This change is in line with the FHIR
    specification and allows us to support the HAPI FHIR server
    since it does not return a MeasureReport appended with this
    information.
    DiCanio committed May 13, 2022
    Configuration menu
    Copy the full SHA
    89a28de View commit details
    Browse the repository at this point in the history
  2. Split Up Feasibility Resource Bundle Transaction

    Due to HAPI FHIR server having trouble resolving references
    when using a bundle transaction, we decided to split the
    transaction up into separate steps.
    This is, library and measure resources are now created in
    isolation.
    
    Note, these issues only seem to arise when using URN based
    references.
    DiCanio committed May 13, 2022
    Configuration menu
    Copy the full SHA
    999bd28 View commit details
    Browse the repository at this point in the history
  3. Use Correct Measure Reference in MeasureReport

    Uses the URL of the Measure initially sent by the ZARS when
    storing a MeasureReport. This is done so that references can
    be resolved adequately.
    DiCanio committed May 13, 2022
    Configuration menu
    Copy the full SHA
    2e29950 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #9 from medizininformatik-initiative/bug/support-h…

    …api-when-using-cql
    
    Properly support HAPI using CQL
    DiCanio authored May 13, 2022
    Configuration menu
    Copy the full SHA
    2be29e9 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2022

  1. Strip Read Access Info Before Storing Resources

    Strips read access meta information from library
    and measure resources before they are stored within
    the FHIR server running the feasibility evaluation.
    This is done since this information does not
    transport any value for the FHIR server. Its value
    is present within the DSF framework only.
    DiCanio committed May 17, 2022
    Configuration menu
    Copy the full SHA
    a1be4f8 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2022

  1. Merge pull request #12 from medizininformatik-initiative/enhancement/…

    …11-drop-read-access-meta-info
    
    Strip Read Access Info Before Storing Resources
    DiCanio authored May 18, 2022
    Configuration menu
    Copy the full SHA
    22e2181 View commit details
    Browse the repository at this point in the history
  2. Strip Evaluated Resources from MeasureReport

    Information about evaluated resources is mainly removed
    due to HAPI using non-absolute references. This causes
    errors down the line (FHIR inbox) since references cannot
    be resolved (they are specific to the FHIR server who
    was responsible for the evaluation).
    DiCanio committed May 18, 2022
    Configuration menu
    Copy the full SHA
    a822e50 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #15 from medizininformatik-initiative/strip-evalua…

    …ted-measures-from-measure-report
    
    Strip Evaluated Resources from MeasureReport
    DiCanio authored May 18, 2022
    Configuration menu
    Copy the full SHA
    9186c4c View commit details
    Browse the repository at this point in the history

Commits on May 23, 2022

  1. Align FLARE EnvVars with Store Client

    Using environment variables of the store client as a
    reference, adjusts environment variables of the FLARE
    client in order to align both.
    DiCanio committed May 23, 2022
    Configuration menu
    Copy the full SHA
    70ad57e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    74b4ef6 View commit details
    Browse the repository at this point in the history
  3. Add Name Attribute to Library in Test Resources

    Necessary in order to support HAPI FHIR server if used by
    test setup. Without this addition HAPI will fail to resolve
    the library resource as it is missing an identifier.
    DiCanio committed May 23, 2022
    Configuration menu
    Copy the full SHA
    5e41887 View commit details
    Browse the repository at this point in the history
  4. Adjust Version Numbers

    DiCanio committed May 23, 2022
    Configuration menu
    Copy the full SHA
    df8016a View commit details
    Browse the repository at this point in the history

Commits on May 31, 2022

  1. Configuration menu
    Copy the full SHA
    ff18e16 View commit details
    Browse the repository at this point in the history
  2. also rename name attribute

    wetret committed May 31, 2022
    Configuration menu
    Copy the full SHA
    3f3e412 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2022

  1. Merge pull request #16 from medizininformatik-initiative/feature/move…

    …_namespace_to_mii
    
    Move Namespace to MII
    DiCanio authored Jun 2, 2022
    Configuration menu
    Copy the full SHA
    05bf8c0 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2022

  1. Revise Process Naming

    Adjusts process naming in order to remove codex mentions.
    Furthermore, revises the overall naming strategy to simplify
    and clarify certain aspects.
    DiCanio committed Jun 8, 2022
    Configuration menu
    Copy the full SHA
    63b4e9a View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

  1. Merge pull request #18 from medizininformatik-initiative/enhancement/…

    …17-remove-remaining-codex-mentions
    
    Revise Process Naming
    DiCanio authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    71150f4 View commit details
    Browse the repository at this point in the history
  2. Upgrade to DSF 0.7.0

    DiCanio committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    d57d754 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2022

  1. Merge pull request #20 from medizininformatik-initiative/operation/19…

    …-upgrade-to-dsf-0-7-0
    
    Upgrade to DSF 0.7.0
    DiCanio authored Jul 27, 2022
    Configuration menu
    Copy the full SHA
    bdd394d View commit details
    Browse the repository at this point in the history