Releases: NHSDigital/prescriptionsforpatients
v1.0.975-beta
Commit message
Upgrade: [dependabot] - bump esbuild from 0.23.0 to 0.23.1 (#1195)
Bumps esbuild from 0.23.0 to 0.23.1.
Release notes
Sourced from esbuild's releases.
v0.23.1
Allow using the
node:
import prefix withes*
targets (#3821)The
node:
prefix on imports is an alternate way to import built-in node modules. For example,import fs from "fs"
can also be writtenimport fs from "node:fs"
. This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with--target=node14
so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as--target=node18,es2022
removes thenode:
prefix because none of thees*
targets are known to support this feature. This release adds the support for thenode:
flag to esbuild's internal compatibility table fores*
to allow you to use compound targets like this:// Original code import fs from 'node:fs' fs.open // Old output (with --bundle --format=esm --platform=node --target=node18,es2022) import fs from "fs"; fs.open; // New output (with --bundle --format=esm --platform=node --target=node18,es2022) import fs from "node:fs"; fs.open;Fix a panic when using the CLI with invalid build flags if
--analyze
is present (#3834)Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the
--analyze
flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how--analyze
is implemented) to a null build object. The panic has been fixed in this release.Fix incorrect location of certain error messages (#3845)
This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.
Print comments before case clauses in switch statements (#3838)
With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).
Fix a memory leak with
pluginData
(#3825)With this release, the build context's internal
pluginData
cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that returnpluginData
objects fromonResolve
and/oronLoad
callbacks.
Changelog
Sourced from esbuild's changelog.
0.23.1
Allow using the
node:
import prefix withes*
targets (#3821)The
node:
prefix on imports is an alternate way to import built-in node modules. For example,import fs from "fs"
can also be writtenimport fs from "node:fs"
. This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with--target=node14
so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as--target=node18,es2022
removes thenode:
prefix because none of thees*
targets are known to support this feature. This release adds the support for thenode:
flag to esbuild's internal compatibility table fores*
to allow you to use compound targets like this:// Original code import fs from 'node:fs' fs.open // Old output (with --bundle --format=esm --platform=node --target=node18,es2022) import fs from "fs"; fs.open; // New output (with --bundle --format=esm --platform=node --target=node18,es2022) import fs from "node:fs"; fs.open;Fix a panic when using the CLI with invalid build flags if
--analyze
is present (#3834)Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the
--analyze
flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how--analyze
is implemented) to a null build object. The panic has been fixed in this release.Fix incorrect location of certain error messages (#3845)
This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.
Print comments before case clauses in switch statements (#3838)
With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).
Fix a memory leak with
pluginData
(#3825)With this release, the build context's internal
pluginData
cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that returnpluginData
objects fromonResolve
and/oronLoad
callbacks.
Commits
3327274
publish 0.23.1 to npm38e22ed
add a warning/debug log message for #3867a15bb51
fix #3825: memory leak ofpluginData
valuesf6e6481
fix #3838: print comments beforecase
clauses9c13ae1
fix #3853: update go 1.22.4 => 1.22.578f89e4
fix #3845: some incorrect error message locations892d2a7
fix #3834: cli sometimes panics with--analyze
360d472
fix a typo in the release notese3f4e2d
fix #3821: allownode:
prefix withes*
targets- 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
`@depend...
v1.0.974-beta
Commit message
Upgrade: [dependabot] - bump @types/node from 22.3.0 to 22.4.1 (#1196)
Bumps
@types/node
from 22.3.0 to 22.4.1.
Commits
- 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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will 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 version
will 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 dependency
will 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] [email protected]
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.973-beta
Commit message
Upgrade: [dependabot] - bump cfn-lint from 1.10.1 to 1.10.3 (#1193)
Bumps cfn-lint from
1.10.1 to 1.10.3.
Release notes
Sourced from cfn-lint's releases.
Release v1.10.3
What's Changed
- Look at
OriginGroups
too for rule E3057 by@kddejong
in aws-cloudformation/cfn-lint#3607- Continue on template decode errors by
@kddejong
in aws-cloudformation/cfn-lint#3605Full Changelog: aws-cloudformation/cfn-lint@v1.10.2...v1.10.3
Release v1.10.2
What's Changed
- Fix an issue when scanning metadata by
@kddejong
in aws-cloudformation/cfn-lint#3596- Update getatt resolution for better regional support by
@kddejong
in aws-cloudformation/cfn-lint#3597- anyOf only returns Ws and Is when there are Es by
@kddejong
in aws-cloudformation/cfn-lint#3600- Update CloudFormation schemas to 2024-08-15 by
@github-actions
in aws-cloudformation/cfn-lint#3591Full Changelog: aws-cloudformation/cfn-lint@v1.10.1...v1.10.2
Changelog
Sourced from cfn-lint's changelog.
v1.10.3
What's Changed
- Look at
OriginGroups
too for rule E3057 by@kddejong
in aws-cloudformation/cfn-lint#3607- Continue on template decode errors by
@kddejong
in aws-cloudformation/cfn-lint#3605Full Changelog: aws-cloudformation/cfn-lint@v1.10.2...v1.10.3
v1.10.2
What's Changed
- Fix an issue when scanning metadata by
@kddejong
in aws-cloudformation/cfn-lint#3596- Update getatt resolution for better regional support by
@kddejong
in aws-cloudformation/cfn-lint#3597- anyOf only returns Ws and Is when there are Es by
@kddejong
in aws-cloudformation/cfn-lint#3600- Update CloudFormation schemas to 2024-08-15 by
@github-actions
in aws-cloudformation/cfn-lint#3591Full Changelog: aws-cloudformation/cfn-lint@v1.10.1...v1.10.2
Commits
e500fcc
Release v1.10.3 (#3608)2ab6759
Continue on template decode errors (#3605)68ac3a6
Look at OriginGroups too for rule E3057 (#3607)efe911f
Update changelog for release (#3601)4ee7039
Update CloudFormation schemas to 2024-08-15 (#3591)a77aff2
anyOf only returns Ws and Is when there are Es (#3600)3eef025
Release v1.10.2 (#3599)ac8d51d
Update getatt resolution for better regional support (#3597)69fbdff
Fix an issue when scanning metadata (#3596)- 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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will 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 version
will 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 dependency
will 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] [email protected]
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.972-beta
Commit message
Upgrade: [dependabot] - bump boto3 from 1.34.161 to 1.35.0 (#1194)
Bumps boto3 from 1.34.161 to 1.35.0.
Commits
f38acbb
Merge branch 'release-1.35.0'd0a872d
Bumping version to 1.35.0eaae319
Add changelog entries from botocore59518e4
Merge branch 'release-1.34.162'a791aa7
Merge branch 'release-1.34.162' into developadd8a63
Bumping version to 1.34.1622ec9480
Add changelog entries from botocore8268877
Merge branch 'release-1.34.161' 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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will 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 version
will 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 dependency
will 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] [email protected]
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.971-beta
Commit message
Upgrade: [dependabot] - bump @aws-sdk/client-secrets-manager from 3.631.0 to 3.632.0 (#1192)
Bumps
@aws-sdk/client-secrets-manager
from 3.631.0 to 3.632.0.
Release notes
Sourced from @aws-sdk/client-secrets-manager
's
releases.
v3.632.0
3.632.0(2024-08-15)
New Features
- clients: update client endpoints as of 2024-08-15 (05ff22bf)
- client-s3: Amazon Simple Storage Service / Features : Adds support for pagination in the S3 ListBuckets API. (f31c6ea7)
- client-docdb: This release adds Global Cluster Failover capability which enables you to change your global cluster's primary AWS region, the region that serves writes, during a regional outage. Performing a failover action preserves your Global Cluster setup. (62c6973c)
- client-iam: Make the LastUsedDate field in the GetAccessKeyLastUsed response optional. This may break customers who only call the API for access keys with a valid LastUsedDate. This fixes a deserialization issue for access keys without a LastUsedDate, because the field was marked as required but could be null. (2e20e957)
- client-ecs: This release introduces a new ContainerDefinition configuration to support the customer-managed keys for ECS container restart feature. (e56be698)
Bug Fixes
- util-endpoints: parseArn when resourcePath contains both delimiters (#6387) (63cb133f)
- credential-providers: avoid sharing http2 requestHandler with inner STS (#6389) (d7b16106)
- lib-dynamodb: missing
@smithy/core
dependency in@aws-sdk/lib-dynamodb
(#6384) (84fd78ba)
For list of updated packages, view updated-packages.md in assets-3.632.0.zip
Changelog
Sourced from @aws-sdk/client-secrets-manager
's
changelog.
3.632.0 (2024-08-15)
Note: Version bump only for package
@aws-sdk/client-secrets-manager
Commits
704fc47
Publish v3.632.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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will 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 version
will 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 dependency
will 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] [email protected]
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.970-beta
Commit message
Upgrade: [dependabot] - bump @types/node from 22.2.0 to 22.3.0 (#1188)
Bumps
@types/node
from 22.2.0 to 22.3.0.
Commits
- 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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will 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 version
will 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 dependency
will 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] [email protected]
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.969-beta
Commit message
Upgrade: [dependabot] - bump @aws-sdk/client-secrets-manager from 3.629.0 to 3.631.0 (#1187)
Bumps
@aws-sdk/client-secrets-manager
from 3.629.0 to 3.631.0.
Release notes
Sourced from @aws-sdk/client-secrets-manager
's
releases.
v3.631.0
3.631.0(2024-08-14)
New Features
- client-codebuild: AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project. (9e44d9f4)
Bug Fixes
For list of updated packages, view updated-packages.md in assets-3.631.0.zip
v3.630.0
3.630.0(2024-08-13)
Documentation Changes
- credential-providers: add longer explanation about credential function and chaining (#6382) (26788b98)
New Features
- client-glue: Add AttributesToGet parameter support for Glue GetTables (3d999b61)
- client-appstream: This release includes following new APIs: CreateThemeForStack, DescribeThemeForStack, UpdateThemeForStack, DeleteThemeForStack to support custom branding programmatically. (86d89c66)
- client-amplify: Add a new field "cacheConfig" that enables users to configure the CDN cache settings for an App (db3560cf)
- client-neptune-graph: Amazon Neptune Analytics provides a new option for customers to load data into a graph using the RDF (Resource Description Framework) NTRIPLES format. When loading NTRIPLES files, use the value
convertToIri
for theblankNodeHandling
parameter. (223369d6)- client-fis: This release adds support for additional error information on experiment failure. It adds the error code, location, and account id on relevant failures to the GetExperiment and ListExperiment API responses. (d69b9277)
- credential-providers: add custom credential chain helper (#6374) (1a479dc8)
Bug Fixes
Tests
For list of updated packages, view updated-packages.md in assets-3.630.0.zip
Changelog
Sourced from @aws-sdk/client-secrets-manager
's
changelog.
3.631.0 (2024-08-14)
Note: Version bump only for package
@aws-sdk/client-secrets-manager
Commits
4825462
Publish v3.631.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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will 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 version
will 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 dependency
will 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] [email protected]
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.968-beta
Commit message
Upgrade: [dependabot] - bump boto3 from 1.34.160 to 1.34.161 (#1186)
Bumps boto3 from 1.34.160 to 1.34.161.
Commits
2f927ce
Merge branch 'release-1.34.161'c36a3f2
Bumping version to 1.34.161d4b6006
Add changelog entries from botocore27dcf72
Merge branch 'release-1.34.160' 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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will 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 version
will 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 dependency
will 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] [email protected]
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.967-beta
Commit message
Upgrade: [dependabot] - bump cfn-lint from 1.10.0 to 1.10.1 (#1183)
Bumps cfn-lint from
1.10.0 to 1.10.1.
Release notes
Sourced from cfn-lint's releases.
Release v1.10.1
v1.10.1
What's Changed
- Update rule E3054 to not alert when
NetworkMode
is set toawsvpc
by@kddejong
in aws-cloudformation/cfn-lint#3593Full Changelog: aws-cloudformation/cfn-lint@v1.10.0...v1.10.1
Changelog
Sourced from cfn-lint's changelog.
v1.10.1
What's Changed
- Update rule E3054 to not alert when
NetworkMode
is set toawsvpc
by@kddejong
in aws-cloudformation/cfn-lint#3593Full Changelog: aws-cloudformation/cfn-lint@v1.10.0...v1.10.1
Commits
c6d3252
Release v1.10.1 (#3594)3409497
Update E3054 to not alert on awsvpc (#3593)- 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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will 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 version
will 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 dependency
will 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] [email protected]
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.966-beta
Commit message
Upgrade: [dependabot] - bump boto3 from 1.34.159 to 1.34.160 (#1184)
Bumps boto3 from 1.34.159 to 1.34.160.
Commits
7eb51bd
Merge branch 'release-1.34.160'edc8a5c
Bumping version to 1.34.160c054e59
Add changelog entries from botocoreaefdeda
Merge branch 'release-1.34.159' 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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will 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 version
will 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 dependency
will 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] [email protected]
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]