Releases: NHSDigital/eps-FHIR-validator-lambda
v1.0.63-alpha
Commit message
Bump fasterxml.version from 2.16.1 to 2.16.2 (#42)
Bumps fasterxml.version from 2.16.1 to 2.16.2.
Updates com.fasterxml.jackson.core:jackson-core from 2.16.1 to 2.16.2
Commits
4162dfc[maven-release-plugin] prepare release jackson-core-2.16.237ef9b3Prepare for 2.16.2 releasecf18567Merge branch '2.15' into 2.16fc51d1eBack to snapshot depbd74d42[maven-release-plugin] prepare for next development iterationc8e843b[maven-release-plugin] prepare release jackson-core-2.15.42f0151dPreparing for 2.15.4 release4f94ac6Add test against regression wrt #1173 changes5c99090Revert "Fixes #1173: column/offset locations wrong for many error conditions"...e4da442Add test showing regression wrt #1173 fix (inability to recover from certain ...- Additional commits viewable in compare view
Updates com.fasterxml.jackson.core:jackson-databind from 2.16.1 to
2.16.2
Commits
- See full diff in compare view
Updates com.fasterxml.jackson.core:jackson-annotations from 2.16.1 to
2.16.2
Commits
- See full diff in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits
that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after
your CI passes on it@dependabot cancel mergewill cancel a previously requested merge
and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all
of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] support@github.com
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.62-alpha
Commit message
Bump log4j.version from 2.23.0 to 2.23.1 (#43)
Bumps log4j.version from 2.23.0 to 2.23.1.
Updates org.apache.logging.log4j:log4j-api from 2.23.0 to 2.23.1
Updates org.apache.logging.log4j:log4j-core from 2.23.0 to 2.23.1
Updates org.apache.logging.log4j:log4j-slf4j2-impl from 2.23.0 to
2.23.1
Updates org.apache.logging.log4j:log4j-layout-template-json from
2.23.0 to 2.23.1
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits
that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after
your CI passes on it@dependabot cancel mergewill cancel a previously requested merge
and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all
of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] support@github.com
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: anthony-nhs 121869075+anthony-nhs@users.noreply.github.com
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.61-alpha
Commit message
Bump pytest from 8.1.0 to 8.1.1 (#41)
Bumps pytest from 8.1.0 to
8.1.1.
Release notes
Sourced from pytest's releases.
8.1.1
pytest 8.1.1 (2024-03-08)
::: {.note} ::: {.title} Note :::
This release is not a usual bug fix release -- it contains features and improvements, being a follow up to
8.1.0, which has been yanked from PyPI. :::Features
#11475: Added the new
consider_namespace_packages{.interpreted-text role="confval"} configuration option, defaulting toFalse.If set to
True, pytest will attempt to identify modules that are part of namespace packages when importing modules.#11653: Added the new
verbosity_test_cases{.interpreted-text role="confval"} configuration option for fine-grained control of test execution verbosity. SeeFine-grained verbosity <pytest.fine_grained_verbosity>{.interpreted-text role="ref"} for more details.Improvements
#10865:
pytest.warns{.interpreted-text role="func"} now validates thatwarnings.warn{.interpreted-text role="func"} was called with a [str]{.title-ref} or a [Warning]{.title-ref}. Currently in Python it is possible to use other types, however this causes an exception whenwarnings.filterwarnings{.interpreted-text role="func"} is used to filter those warnings (see [CPython #103577](python/cpython#103577) for a discussion). While this can be considered a bug in CPython, we decided to put guards in pytest as the error message produced without this check in place is confusing.#11311: When using
--override-inifor paths in invocations without a configuration file defined, the current working directory is used as the relative directory.Previoulsy this would raise an
AssertionError{.interpreted-text role="class"}.#11475:
--import-mode=importlib <import-mode-importlib>{.interpreted-text role="ref"} now tries to import modules using the standard import mechanism (but still without changing :pysys.path{.interpreted-text role="data"}), falling back to importing modules directly only if that fails.This means that installed packages will be imported under their canonical name if possible first, for example
app.core.models, instead of having the module name always be derived from their path (for example.env310.lib.site_packages.app.core.models).#11801: Added the
iter_parents() <_pytest.nodes.Node.iter_parents>{.interpreted-text role="func"} helper method on nodes. It is similar tolistchain <_pytest.nodes.Node.listchain>{.interpreted-text role="func"}, but goes from bottom to top, and returns an iterator, not a list.#11850: Added support for
sys.last_exc{.interpreted-text role="data"} for post-mortem debugging on Python>=3.12.#11962: In case no other suitable candidates for configuration file are found, a
pyproject.toml(even without a[tool.pytest.ini_options]table) will be considered as the configuration file and define therootdir.#11978: Add
--log-file-modeoption to the logging plugin, enabling appending to log-files. This option accepts either"w"or"a"and defaults to"w".Previously, the mode was hard-coded to be
"w"which truncates the file before logging.
... (truncated)
Commits
81653eeAdjust changelog manually for 8.1.1e60b4b9Prepare release version 8.1.115fbe57[8.1.x] Revert legacy path removals (#12093)86c3aab[8.1.x] Do not import duplicated modules with --importmode=importlib (#12077)5b82b0c[8.1.x] Yank version 8.1.0 (#12076)0a53681Merge pull request #12054 from pytest-dev/release-8.1.0- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits
that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after
your CI passes on it@dependabot cancel mergewill cancel a previously requested merge
and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all
of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] support@github.com
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.60-alpha
Commit message
Bump boto3 from 1.34.58 to 1.34.59 (#40)
Bumps boto3 from 1.34.58 to 1.34.59.
Changelog
Sourced from boto3's changelog.
1.34.59
- api-change:
batch: [botocore] This release adds JobStateTimeLimitActions setting to the Job Queue API. It allows you to configure an action Batch can take for a blocking job in front of the queue after the defined period of time. The new parameter applies for ECS, EKS, and FARGATE Job Queues.- api-change:
bedrock-agent-runtime: [botocore] Documentation update for Bedrock Runtime Agent- api-change:
cloudtrail: [botocore] Added exceptions to CreateTrail, DescribeTrails, and ListImportFailures APIs.- api-change:
codebuild: [botocore] This release adds support for a new webhook event: PULL_REQUEST_CLOSED.- api-change:
cognito-idp: [botocore] Add ConcurrentModificationException to SetUserPoolMfaConfig- api-change:
guardduty: [botocore] Add RDS Provisioned and Serverless Usage types- api-change:
transfer: [botocore] Added DES_EDE3_CBC to the list of supported encryption algorithms for messages sent with an AS2 connector.
Commits
6afb8beMerge branch 'release-1.34.59'7d7b04eBumping version to 1.34.594d2d2d2Add changelog entries from botocore3eb4335Merge branch 'release-1.34.58' into develop- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits
that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after
your CI passes on it@dependabot cancel mergewill cancel a previously requested merge
and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all
of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] support@github.com
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.59-alpha
Commit message
Bump boto3 from 1.34.57 to 1.34.58 (#39)
Bumps boto3 from 1.34.57 to 1.34.58.
Changelog
Sourced from boto3's changelog.
1.34.58
- api-change:
appconfig: [botocore] AWS AppConfig now supports dynamic parameters, which enhance the functionality of AppConfig Extensions by allowing you to provide parameter values to your Extensions at the time you deploy your configuration.- api-change:
ec2: [botocore] This release adds an optional parameter to RegisterImage and CopyImage APIs to support tagging AMIs at the time of creation.- api-change:
grafana: [botocore] Adds support for the new GrafanaToken as part of the Amazon Managed Grafana Enterprise plugins upgrade to associate your AWS account with a Grafana Labs account.- api-change:
lambda: [botocore] Documentation updates for AWS Lambda- api-change:
payment-cryptography-data: [botocore] AWS Payment Cryptography EMV Decrypt Feature Release- api-change:
rds: [botocore] Updates Amazon RDS documentation for io2 storage for Multi-AZ DB clusters- api-change:
snowball: [botocore] Doc-only update for change to EKS-Anywhere ordering.- api-change:
wafv2: [botocore] You can increase the max request body inspection size for some regional resources. The size setting is in the web ACL association config. Also, the AWSManagedRulesBotControlRuleSet EnableMachineLearning setting now takes a Boolean instead of a primitive boolean type, for languages like Java.- api-change:
workspaces: [botocore] Added note for user decoupling
Commits
d4d1f2eMerge branch 'release-1.34.58'e438496Bumping version to 1.34.58ce57c75Add changelog entries from botocorecd8e734Merge branch 'release-1.34.57' into develop- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits
that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after
your CI passes on it@dependabot cancel mergewill cancel a previously requested merge
and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all
of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] support@github.com
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.58-alpha
Commit message
Bump boto3 from 1.34.56 to 1.34.57 (#38)
Bumps boto3 from 1.34.56 to 1.34.57.
Changelog
Sourced from boto3's changelog.
1.34.57
- api-change:
dynamodb: [botocore] Doc only updates for DynamoDB documentation- api-change:
imagebuilder: [botocore] Add PENDING status to Lifecycle Execution resource status. Add StartTime and EndTime to ListLifecycleExecutionResource API response.- api-change:
mwaa: [botocore] Amazon MWAA adds support for Apache Airflow v2.8.1.- api-change:
rds: [botocore] Updated the input of CreateDBCluster and ModifyDBCluster to support setting CA certificates. Updated the output of DescribeDBCluster to show current CA certificate setting value.- api-change:
redshift: [botocore] Update for documentation only. Covers port ranges, definition updates for data sharing, and definition updates to cluster-snapshot documentation.- api-change:
verifiedpermissions: [botocore] Deprecating details in favor of configuration for GetIdentitySource and ListIdentitySources APIs.
Commits
cefe841Merge branch 'release-1.34.57'26d5582Bumping version to 1.34.5757a4d2dAdd changelog entries from botocore0379481Merge branch 'release-1.34.56' into develop- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits
that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after
your CI passes on it@dependabot cancel mergewill cancel a previously requested merge
and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all
of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] support@github.com
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.57-alpha
Commit message
remove ca.uhn.hapi.fhir:org.hl7.fhir.utilities (#33)
Summary
- Routine Change
Details
- remove ca.uhn.hapi.fhir:org.hl7.fhir.utilities
- remove ca.uhn.hapi.fhir:org.hl7.fhir.r4
Signed-off-by: dependabot[bot] support@github.com
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: anthony-nhs 121869075+anthony-nhs@users.noreply.github.com
Info
See code diff
Release workflow run
It was initialized by anthony-nhs
v1.0.56-alpha
Commit message
Bump fhir.version from 7.0.1 to 7.0.2 (#37)
Bumps fhir.version from 7.0.1 to 7.0.2.
Updates ca.uhn.hapi.fhir:hapi-fhir-validation-resources-r4 from 7.0.1
to 7.0.2
Updates ca.uhn.hapi.fhir:hapi-fhir-structures-r4 from 7.0.1 to 7.0.2
Updates ca.uhn.hapi.fhir:hapi-fhir-validation from 7.0.1 to 7.0.2
Updates ca.uhn.hapi.fhir:hapi-fhir-caching-caffeine from 7.0.1 to
7.0.2
Updates ca.uhn.hapi.fhir:hapi-fhir-base from 7.0.1 to 7.0.2
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits
that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after
your CI passes on it@dependabot cancel mergewill cancel a previously requested merge
and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all
of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] support@github.com
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.55-alpha
Commit message
Bump boto3 from 1.34.55 to 1.34.56 (#36)
Bumps boto3 from 1.34.55 to 1.34.56.
Changelog
Sourced from boto3's changelog.
1.34.56
- api-change:
apigateway: [botocore] Documentation updates for Amazon API Gateway- api-change:
chatbot: [botocore] Minor update to documentation.- api-change:
organizations: [botocore] This release contains an endpoint addition- api-change:
sesv2: [botocore] Adds support for providing custom headers within SendEmail and SendBulkEmail for SESv2.
Commits
a9ea58fMerge branch 'release-1.34.56'caa50b0Bumping version to 1.34.565216060Add changelog entries from botocore599b4a6Merge branch 'release-1.34.55' into develop- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits
that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after
your CI passes on it@dependabot cancel mergewill cancel a previously requested merge
and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all
of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] support@github.com
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.54-alpha
Commit message
use initial tag if not deployed to an environment yet (#35)
Summary
- Routine Change
Details
- use an initial tag if its not been deployed to an environment yet
Info
See code diff
Release workflow run
It was initialized by anthony-nhs