consent-management-platform
consent-management-platform copied to clipboard
chore(deps): bump the monitoring group across 1 directory with 12 updates
Bumps the monitoring group with 12 updates in the /monitoring directory:
Package | From | To |
---|---|---|
@aws-sdk/client-cloudwatch | 3.490.0 |
3.577.0 |
dotenv | 16.3.1 |
16.4.5 |
playwright-core | 1.40.1 |
1.44.0 |
@aws-sdk/client-lambda | 3.490.0 |
3.577.0 |
@babel/parser | 7.23.6 |
7.24.5 |
@guardian/tsconfig | 0.2.0 |
0.3.1 |
@tsconfig/node18 | 18.2.2 |
18.2.4 |
@types/aws-lambda | 8.10.131 |
8.10.138 |
@types/jest | 29.5.11 |
29.5.12 |
@types/node | 20.11.1 |
20.12.12 |
ts-jest | 29.1.1 |
29.1.2 |
typescript | 5.1.3 |
5.4.5 |
Updates @aws-sdk/client-cloudwatch
from 3.490.0 to 3.577.0
Release notes
Sourced from @aws-sdk/client-cloudwatch
's releases.
v3.577.0
3.577.0(2024-05-15)
Chores
Documentation Changes
- client-securityhub: Documentation-only update for AWS Security Hub (511c677b)
New Features
- client-codebuild: CodeBuild Reserved Capacity VPC Support (877d146a)
- client-medical-imaging: Added support for importing medical imaging data from Amazon S3 buckets across accounts and regions. (1ac3a3d8)
- client-grafana: This release adds new ServiceAccount and ServiceAccountToken APIs. (6c988717)
- client-datasync: Task executions now display a CANCELLING status when an execution is in the process of being cancelled. (ef2c2a5f)
- client-bedrock-agent-runtime: Updating Bedrock Knowledge Base Metadata & Filters feature with two new filters listContains and stringContains (91b3891c)
Bug Fixes
For list of updated packages, view updated-packages.md in assets-3.577.0.zip
v3.576.0
3.576.0(2024-05-14)
Chores
New Features
- clients: update client endpoints as of 2024-05-14 (8d305635)
- client-s3: Updated a few x-id in the http uri traits (dcde25ac)
- client-connect: Amazon Connect provides enhanced search capabilities for flows & flow modules on the Connect admin website and programmatically using APIs. You can search for flows and flow modules by name, description, type, status, and tags, to filter and identify a specific flow in your Connect instances. (43f9444b)
For list of updated packages, view updated-packages.md in assets-3.576.0.zip
v3.575.0
3.575.0(2024-05-13)
Chores
... (truncated)
Changelog
Sourced from @aws-sdk/client-cloudwatch
's changelog.
3.577.0 (2024-05-15)
Note: Version bump only for package
@aws-sdk/client-cloudwatch
3.576.0 (2024-05-14)
Note: Version bump only for package
@aws-sdk/client-cloudwatch
3.575.0 (2024-05-13)
Note: Version bump only for package
@aws-sdk/client-cloudwatch
3.574.0 (2024-05-10)
Note: Version bump only for package
@aws-sdk/client-cloudwatch
3.572.0 (2024-05-08)
Note: Version bump only for package
@aws-sdk/client-cloudwatch
3.569.0 (2024-05-03)
Bug Fixes
... (truncated)
Commits
d6c6982
Publish v3.577.0e7a5080
Publish v3.576.0d40d02a
Publish v3.575.06877db9
chore: update smithy commit to include new versions (#6088)76807d0
Publish v3.574.04d4f255
Publish v3.572.0e627b9e
Publish v3.569.0bfa8626
fix(clients): add deps required by default credential providers (#6055)190768a
Publish v3.568.01d48d02
chore: bump@types/node
to 16.x (#6047)- Additional commits viewable in compare view
Updates dotenv
from 16.3.1 to 16.4.5
Changelog
Sourced from dotenv's changelog.
16.4.5 (2024-02-19)
Changed
- 🐞 fix recent regression when using
path
option. return to historical behavior: do not attempt to auto find.env
ifpath
set. (regression was introduced in16.4.3
) #81416.4.4 (2024-02-13)
Changed
- 🐞 Replaced chaining operator
?.
with old school&&
(fixing node 12 failures) #81216.4.3 (2024-02-12)
Changed
- Fixed processing of multiple files in
options.path
#80516.4.2 (2024-02-10)
Changed
- Changed funding link in package.json to
dotenvx.com
16.4.1 (2024-01-24)
- Patch support for array as
path
option #79716.4.0 (2024-01-23)
- Add
error.code
to error messages around.env.vault
decryption handling #795- Add ability to find
.env.vault
file when filename(s) passed as an array #78416.3.2 (2024-01-18)
Added
- Add debug message when no encoding set #735
Changed
Commits
9f3e833
16.4.56924177
Merge pull request #814 from motdotla/dont-check-existance3533420
changelog 🪵249e5a6
adjust logic to support tests87fd887
do not check if exists1146910
rename .env-multiline to .env.multilined03e397
16.4.43275a0a
changelog 🪵f40a8c3
Merge pull request #812 from motdotla/patch-121dc22d3
replace 14 chaining operator- Additional commits viewable in compare view
Updates playwright-core
from 1.40.1 to 1.44.0
Release notes
Sourced from playwright-core's releases.
v1.44.0
New APIs
Accessibility assertions
expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:
const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleName('Submit');
expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:
const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleDescription('Upload a photo');
expect(locator).toHaveRole() checks if the element has the specified ARIA role:
const locator = page.getByTestId('save-button'); await expect(locator).toHaveRole('button');
Locator handler
- After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new
noWaitAfter
option.- You can use new
times
option in page.addLocatorHandler() to specify maximum number of times the handler should be run.- The handler in page.addLocatorHandler() now accepts the locator as argument.
- New page.removeLocatorHandler() method for removing previously added locator handlers.
const locator = page.getByText('This interstitial covers the button'); await page.addLocatorHandler(locator, async overlay => { await overlay.locator('#close').click(); }, { times: 3, noWaitAfter: true }); // Run your tests that can be interrupted by the overlay. // ... await page.removeLocatorHandler(locator);
Miscellaneous options
multipart
option inapiRequestContext.fetch()
now acceptsFormData
and supports repeating fields with the same name.const formData = new FormData(); formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' })); formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' })); context.request.post('https://example.com/uploadFiles', { multipart: formData
... (truncated)
Commits
a6aa50b
chore: set version to 1.44.0 (#30680)54c157d
cherry-pick(#30677): chore: print resolved host in the http server te… (#30679)2d437e8
cherry-pick(#30646): feat(chromium): roll to r1117 (#30652)7637399
cherry-pick(#30636): fix(role): extract tagName safely (#30639)9e091e7
cherry-pick(#30611): chore: add common env vars for junit and json re… (#30624)154694b
chore: update playwright-browsers to Mar 19 (#30599)fa7d4e5
docs: releae notes 1.44 for js (#30596)b9f70f4
docs(junit): document existing options and env (#30595)fb90797
fix(last-run): remove globalOutputDir (#30571)96f3d19
feat(ctrl_or_meta): add a universal ctrl-meta modifier (#30572)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by yurys, a new releaser for playwright-core since your current version.
Updates @aws-sdk/client-lambda
from 3.490.0 to 3.577.0
Release notes
Sourced from @aws-sdk/client-lambda
's releases.
v3.577.0
3.577.0(2024-05-15)
Chores
Documentation Changes
- client-securityhub: Documentation-only update for AWS Security Hub (511c677b)
New Features
- client-codebuild: CodeBuild Reserved Capacity VPC Support (877d146a)
- client-medical-imaging: Added support for importing medical imaging data from Amazon S3 buckets across accounts and regions. (1ac3a3d8)
- client-grafana: This release adds new ServiceAccount and ServiceAccountToken APIs. (6c988717)
- client-datasync: Task executions now display a CANCELLING status when an execution is in the process of being cancelled. (ef2c2a5f)
- client-bedrock-agent-runtime: Updating Bedrock Knowledge Base Metadata & Filters feature with two new filters listContains and stringContains (91b3891c)
Bug Fixes
For list of updated packages, view updated-packages.md in assets-3.577.0.zip
v3.576.0
3.576.0(2024-05-14)
Chores
New Features
- clients: update client endpoints as of 2024-05-14 (8d305635)
- client-s3: Updated a few x-id in the http uri traits (dcde25ac)
- client-connect: Amazon Connect provides enhanced search capabilities for flows & flow modules on the Connect admin website and programmatically using APIs. You can search for flows and flow modules by name, description, type, status, and tags, to filter and identify a specific flow in your Connect instances. (43f9444b)
For list of updated packages, view updated-packages.md in assets-3.576.0.zip
v3.575.0
3.575.0(2024-05-13)
Chores
... (truncated)
Changelog
Sourced from @aws-sdk/client-lambda
's changelog.
3.577.0 (2024-05-15)
Note: Version bump only for package
@aws-sdk/client-lambda
3.576.0 (2024-05-14)
Note: Version bump only for package
@aws-sdk/client-lambda
3.575.0 (2024-05-13)
Note: Version bump only for package
@aws-sdk/client-lambda
3.574.0 (2024-05-10)
Note: Version bump only for package
@aws-sdk/client-lambda
3.572.0 (2024-05-08)
Note: Version bump only for package
@aws-sdk/client-lambda
3.569.0 (2024-05-03)
Bug Fixes
... (truncated)
Commits
d6c6982
Publish v3.577.0e7a5080
Publish v3.576.0d40d02a
Publish v3.575.06877db9
chore: update smithy commit to include new versions (#6088)76807d0
Publish v3.574.04d4f255
Publish v3.572.0e627b9e
Publish v3.569.0bfa8626
fix(clients): add deps required by default credential providers (#6055)190768a
Publish v3.568.01d48d02
chore: bump@types/node
to 16.x (#6047)- Additional commits viewable in compare view
Updates @babel/parser
from 7.23.6 to 7.24.5
Release notes
Sourced from @babel/parser
's releases.
v7.24.5 (2024-04-29)
Thanks
@romgrk
and@sossost
for your first PRs!:bug: Bug Fix
babel-plugin-transform-classes
,babel-traverse
- #16377 fix: TypeScript annotation affects output (
@liuxingbaoyu
)babel-helpers
,babel-plugin-proposal-explicit-resource-management
,babel-runtime-corejs3
:nail_care: Polish
:house: Internal
- Other
- #16414 Relax ESLint peerDependency constraint to allow v9 (
@liuxingbaoyu
)babel-parser
- #16425 Improve
@babel/parser
AST types (@nicolo-ribaudo
)- #16417 Always pass type argument to
.startNode
(@nicolo-ribaudo
)babel-helper-create-class-features-plugin
,babel-helper-member-expression-to-functions
,babel-helper-module-transforms
,babel-helper-split-export-declaration
,babel-helper-wrap-function
,babel-helpers
,babel-plugin-bugfix-firefox-class-in-computed-class-key
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-block-scoping
,babel-plugin-transform-destructuring
,babel-plugin-transform-object-rest-spread
,babel-plugin-transform-optional-chaining
,babel-plugin-transform-parameters
,babel-plugin-transform-private-property-in-object
,babel-plugin-transform-react-jsx-self
,babel-plugin-transform-typeof-symbol
,babel-plugin-transform-typescript
,babel-traverse
- #16439 Make
NodePath<T | U>
distributive (@nicolo-ribaudo
)babel-plugin-proposal-partial-application
,babel-types
- #16421 Remove
JSXNamespacedName
from validCallExpression
args (@nicolo-ribaudo
)babel-plugin-transform-class-properties
,babel-preset-env
- #16406 Do not load unnecessary Babel 7 syntax plugins in Babel 8 (
@nicolo-ribaudo
):running_woman: Performance
babel-helpers
,babel-preset-env
,babel-runtime-corejs3
Committers: 6
- Babel Bot (
@babel-bot
)- Huáng Jùnliàng (
@JLHwung
)- Nicolò Ribaudo (
@nicolo-ribaudo
)- Rom Grk (
@romgrk
)@liuxingbaoyu
- ynnsuis (
@sossost
)v7.24.4 (2024-04-03)
Thanks
@Dunqing
,@luiscubal
, and@samualtnorman
for your first PRs!:eyeglasses: Spec Compliance
... (truncated)
Changelog
Sourced from @babel/parser
's changelog.
v7.24.5 (2024-04-29)
:bug: Bug Fix
babel-plugin-transform-classes
,babel-traverse
- #16377 fix: TypeScript annotation affects output (
@liuxingbaoyu
)babel-helpers
,babel-plugin-proposal-explicit-resource-management
,babel-runtime-corejs3
:nail_care: Polish
:house: Internal
- Other
- #16414 Relax ESLint peerDependency constraint to allow v9 (
@liuxingbaoyu
)babel-parser
- #16425 Improve
@babel/parser
AST types (@nicolo-ribaudo
)- #16417 Always pass type argument to
.startNode
(@nicolo-ribaudo
)babel-helper-create-class-features-plugin
,babel-helper-member-expression-to-functions
,babel-helper-module-transforms
,babel-helper-split-export-declaration
,babel-helper-wrap-function
,babel-helpers
,babel-plugin-bugfix-firefox-class-in-computed-class-key
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-block-scoping
,babel-plugin-transform-destructuring
,babel-plugin-transform-object-rest-spread
,babel-plugin-transform-optional-chaining
,babel-plugin-transform-parameters
,babel-plugin-transform-private-property-in-object
,babel-plugin-transform-react-jsx-self
,babel-plugin-transform-typeof-symbol
,babel-plugin-transform-typescript
,babel-traverse
- #16439 Make
NodePath<T | U>
distributive (@nicolo-ribaudo
)babel-plugin-proposal-partial-application
,babel-types
- #16421 Remove
JSXNamespacedName
from validCallExpression
args (@nicolo-ribaudo
)babel-plugin-transform-class-properties
,babel-preset-env
- #16406 Do not load unnecessary Babel 7 syntax plugins in Babel 8 (
@nicolo-ribaudo
):running_woman: Performance
babel-helpers
,babel-preset-env
,babel-runtime-corejs3
v7.24.4 (2024-04-03)
:eyeglasses: Spec Compliance
babel-parser
babel-helpers
,babel-plugin-proposal-decorators
,babel-runtime-corejs3
:bug: Bug Fix
babel-generator
- #16402 fix: Correctly prints
{ [key in Bar]? }
(@liuxingbaoyu
)- #16394 fix: Correctly generate
TSMappedType
(@liuxingbaoyu
)babel-compat-data
,babel-plugin-bugfix-firefox-class-in-computed-class-key
,babel-preset-env
- #16390 Create bugfix plugin for classes in computed keys in Firefox (
@nicolo-ribaudo
)babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
- #16387 fix: support mutated outer decorated class binding (
@JLHwung
)- #16385 fix: Decorators when
super()
exists andprotoInit
is not needed (@liuxingbaoyu
)babel-plugin-transform-block-scoping
- #16384 fix: Transform scoping for
for X
in loop (@liuxingbaoyu
)- #16368 fix: Capture
let
when thefor
body is not a block (@liuxingbaoyu
)babel-core
,babel-plugin-transform-block-scoped-functions
,babel-plugin-transform-block-scoping
... (truncated)
Commits
ddbea7d
v7.24.5ee48754
Use multiple TypeScript projects (#16430)941cee2
Improve@babel/parser
AST types (#16425)08b0472
Always pass type argument to.startNode
(#16417)a84ec28
Enableeqeqeq
rule (#16404)2838c13
Recover from exportedusing
declaration (#16407)5a8c692
v7.24.4af4f9cd
Forbid initializerless using (#16403)822b025
v7.24.1fc0d5ad
Update typescript and lint tools (#16351)- Additional commits viewable in compare view
Updates @guardian/tsconfig
from 0.2.0 to 0.3.1
Release notes
Sourced from @guardian/tsconfig
's releases.
@guardian/tsconfig
@0
.3.1Patch Changes
- 0382052: 1. All packages are now ES modules, although they should be compatible with CommonJS environments. 2. Adds entry points for projects that can consume
package.json#exports
, alongsidemain
.
Commits
db1d116
🦋 Release package updates (#1427)15d2513
Do not publishdesign-tokens
(#1429)7e67649
Update esmodules changeset (#1428)0382052
Simplify the build pipeline (#1385)13eb569
build(deps-dev): bump the babel group with 3 updates (#1398)0733efb
build(deps-dev): bump the babel group with 3 updatesc5aa7be
🦋 Release package updates (#1411)cb33975
Remove dependency updates from changelogsfe26ffa
Bump package versionsbef8227
build(deps): bump the dependencies group across 1 directory with 3 updates (#...- Additional commits viewable in compare view
Updates @tsconfig/node18
from 18.2.2 to 18.2.4
Commits
- See full diff in compare view
Updates @types/aws-lambda
from 8.10.131 to 8.10.138
Commits
- See full diff in compare view
Updates @types/jest
from 29.5.11 to 29.5.12
Commits
- See full diff in compare view
Updates @types/node
from 20.11.1 to 20.12.12
Commits
- See full diff in compare view
Updates ts-jest
from 29.1.1 to 29.1.2
Commits
70d48be
chore(release): 29.1.219778bd
build: reference transform options via jestTransformOptions
typea5d6f2d
fix: calculated cache key based on supportsStaticESM2d16f4a
test(e2e): removeonNodeVersions
function0861a66
build(deps): Update dependency node-fetch to ^3.3.2f41cc3e
build(deps): Update babel monorepo41b8460
build(deps): Update dependency docusaurus-remark-plugin-tab-blocks to ^1.3.1e7be4bf
fix: correct error handling inprocessAsync
e31d953
build(deps): Update actions/setup-node digest to 1a4442c622539d
build(deps): Update dependency@formatjs/ts-transformer
to ^3.13.9- Additional commits viewable in compare view
Updates typescript
from 5.1.3 to 5.4.5
Release notes
Sourced from typescript's releases.
TypeScript 5.4.5
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.4.0 (Beta).
- fixed issues query for Typescript 5.4.1 (RC).
- fixed issues query for Typescript 5.4.2 (Stable).
- fixed issues query for Typescript 5.4.3 (Stable).
- fixed issues query for Typescript 5.4.4 (Stable).
- fixed issues query for Typescript 5.4.5 (Stable).
Downloads are available on:
TypeScript 5.4.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.4.0 (Beta).
- fixed issues query for Typescript 5.4.1 (RC).
- fixed issues query for Typescript 5.4.2 (Stable).
- fixed issues query for Typescript 5.4.3 (Stable).
- fixed issues query for Typescript 5.4.4 (Stable).
Downloads are available on:
TypeScript 5.4.3
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.4.0 (Beta).
- fixed issues query for Typescript 5.4.1 (RC).
- fixed issues query for Typescript 5.4.2 (Stable).
- fixed issues query for Typescript 5.4.3 (Stable).
Downloads are available on:
TypeScript 5.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
... (truncated)
Commits
27bcd4c
Update LKG9f33bf1
🤖 Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...71b2f84
Bump version to 5.4.5 and LKG892936f
🤖 Pick PR #58083 (Don't propagate partial union/inter...) into release-5.4 (#...38a7c05
release-5.4: Always set node-version for setup-node (#58117)b754fc3
🤖 Pick PR #57778 (fix type import check for default-i...) into release-5.4 (#...8eb3367
Bump version to 5.4.4 and LKGde9096b
🤖 Pick PR #57871 (Divide-and-conquer strategy for int...) into release-5.4 (#...06aae98
🤖 Pick PR #57973 (Compare package.json paths with cor...) into release-5.4 (#...6d8134e
🤖 Pick PR #57637 (Fixed a regression related to deter...) into release-5.4 (#...- Additional commits viewable 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 <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency -
@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions