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

chore(deps): bump the monitoring group across 1 directory with 12 updates #982

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 5, 2024

Bumps the monitoring group with 12 updates in the /monitoring directory:

Package From To
@aws-sdk/client-cloudwatch 3.490.0 3.569.0
dotenv 16.3.1 16.4.5
playwright-core 1.40.1 1.43.1
@aws-sdk/client-lambda 3.490.0 3.569.0
@babel/parser 7.23.6 7.24.5
@guardian/tsconfig 0.2.0 0.3.0
@tsconfig/node18 18.2.2 18.2.4
@types/aws-lambda 8.10.131 8.10.137
@types/jest 29.5.11 29.5.12
@types/node 20.11.1 20.12.8
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.569.0

Release notes

Sourced from @​aws-sdk/client-cloudwatch's releases.

v3.569.0

3.569.0(2024-05-03)

Chores
Documentation Changes
  • client-datasync: Updated guidance on using private or self-signed certificate authorities (CAs) with AWS DataSync object storage locations. (c4eb11d1)
New Features
  • clients: update client endpoints as of 2024-05-03 (ca804cdb)
  • client-bedrock-agent: This release adds support for using Provisioned Throughput with Bedrock Agents. (7c1d3397)
  • client-inspector2: This release adds CSV format to GetCisScanReport for Inspector v2 (79fb03b9)
  • client-sesv2: Adds support for specifying replacement headers per BulkEmailEntry in SendBulkEmail in SESv2. (9dac593b)
  • client-connectcases: This feature supports the release of Files related items (89b45abe)
  • client-sagemaker: Amazon SageMaker Inference now supports m6i, c6i, r6i, m7i, c7i, r7i and g5 instance types for Batch Transform Jobs (c97f84a4)
  • client-connect: This release adds 5 new APIs for managing attachments: StartAttachedFileUpload, CompleteAttachedFileUpload, GetAttachedFile, BatchGetAttachedFileMetadata, DeleteAttachedFile. These APIs can be used to programmatically upload and download attachments to Connect resources, like cases. (1cbc8f94)
Bug Fixes
  • clients: add deps required by default credential providers (#6055) (bfa86268)
Tests
  • middleware-sdk-s3: add waiter for s3 express e2e test (#6051) (003de3f2)

For list of updated packages, view updated-packages.md in assets-3.569.0.zip

v3.568.0

3.568.0(2024-05-02)

Chores
Documentation Changes
  • clarify lib-storage name change between v2 and v3 (#6023) (4d0eafce)
New Features
  • client-redshift-serverless: Update Redshift Serverless List Scheduled Actions Output Response to include Namespace Name. (044806b1)
  • client-dynamodb: This release adds support to specify an optional, maximum OnDemandThroughput for DynamoDB tables and global secondary indexes in the CreateTable or UpdateTable APIs. You can also override the OnDemandThroughput settings by calling the ImportTable, RestoreFromPointInTime, or RestoreFromBackup APIs. (7a4330dd)
  • client-personalize: This releases ability to delete users and their data, including their metadata and interactions data, from a dataset group. (3c7432b9)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-cloudwatch's changelog.

3.569.0 (2024-05-03)

Bug Fixes

  • clients: add deps required by default credential providers (#6055) (bfa8626)

3.568.0 (2024-05-02)

Note: Version bump only for package @​aws-sdk/client-cloudwatch

3.567.0 (2024-05-01)

Features

3.565.0 (2024-04-29)

Note: Version bump only for package @​aws-sdk/client-cloudwatch

3.564.0 (2024-04-26)

Note: Version bump only for package @​aws-sdk/client-cloudwatch

3.563.0 (2024-04-25)

Note: Version bump only for package @​aws-sdk/client-cloudwatch

... (truncated)

Commits

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 if path set. (regression was introduced in 16.4.3) #814

16.4.4 (2024-02-13)

Changed

  • 🐞 Replaced chaining operator ?. with old school && (fixing node 12 failures) #812

16.4.3 (2024-02-12)

Changed

  • Fixed processing of multiple files in options.path #805

16.4.2 (2024-02-10)

Changed

16.4.1 (2024-01-24)

  • Patch support for array as path option #797

16.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 #784

16.3.2 (2024-01-18)

Added

  • Add debug message when no encoding set #735

Changed

  • Fix output typing for populate #792
  • Use subarray instead of slice #793
Commits

Updates playwright-core from 1.40.1 to 1.43.1

Release notes

Sourced from playwright-core's releases.

v1.43.1

Highlights

microsoft/playwright#30300 - [REGRESSION]: UI mode restarts if keep storage state microsoft/playwright#30339 - [REGRESSION]: Brand new install of playwright, unable to run chromium with show browser using vscode

Browser Versions

  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123

v1.43.0

New APIs

  • Method browserContext.clearCookies() now supports filters to remove only some cookies.

    // Clear all cookies.
    await context.clearCookies();
    // New: clear cookies with a particular name.
    await context.clearCookies({ name: 'session-id' });
    // New: clear cookies for a particular domain.
    await context.clearCookies({ domain: 'my-origin.com' });
  • New mode retain-on-first-failure for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.

    import { defineConfig } from '@playwright/test';
    export default defineConfig({
    use: {
    trace: 'retain-on-first-failure',
    },
    });

  • New property testInfo.tags exposes test tags during test execution.

    test('example', async ({ page }) => {
      console.log(test.info().tags);
    });
  • New method locator.contentFrame() converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.

... (truncated)

Commits
  • a051ceb chore: mark 1.43.1 (#30354)
  • 3ab466e cherry-pick(#30312): fix(ui-mode): do not loose run information after writing...
  • 35468cf cherry-pick(#30342): Revert "fix(reuse): reset Origin Private File System API...
  • 5332639 cherry-pick(#30263): docs: add v1.43 release notes for language ports
  • c729a7b cherry-pick(#30232): docs: fix C# and python snippets
  • 7748e21 cherry-pick(#30210): docs: update context.backgroundPage event examples
  • acb6ff1 cherry-pick(#30200): docs(java,csharp): add BrowserContext.backgroundPage(s)
  • 7c7f8ac cherry-pick(#30227): chore(deps): bump vite from 5.0.12 to 5.0.13 (#30254)
  • 62d4dc9 cherry-pick(#30235): feat(chromium): roll to r1112
  • 79d4776 cherry-pick(#30226): chore: migrate to the testserver.initialize
  • 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.569.0

Release notes

Sourced from @​aws-sdk/client-lambda's releases.

v3.569.0

3.569.0(2024-05-03)

Chores
Documentation Changes
  • client-datasync: Updated guidance on using private or self-signed certificate authorities (CAs) with AWS DataSync object storage locations. (c4eb11d1)
New Features
  • clients: update client endpoints as of 2024-05-03 (ca804cdb)
  • client-bedrock-agent: This release adds support for using Provisioned Throughput with Bedrock Agents. (7c1d3397)
  • client-inspector2: This release adds CSV format to GetCisScanReport for Inspector v2 (79fb03b9)
  • client-sesv2: Adds support for specifying replacement headers per BulkEmailEntry in SendBulkEmail in SESv2. (9dac593b)
  • client-connectcases: This feature supports the release of Files related items (89b45abe)
  • client-sagemaker: Amazon SageMaker Inference now supports m6i, c6i, r6i, m7i, c7i, r7i and g5 instance types for Batch Transform Jobs (c97f84a4)
  • client-connect: This release adds 5 new APIs for managing attachments: StartAttachedFileUpload, CompleteAttachedFileUpload, GetAttachedFile, BatchGetAttachedFileMetadata, DeleteAttachedFile. These APIs can be used to programmatically upload and download attachments to Connect resources, like cases. (1cbc8f94)
Bug Fixes
  • clients: add deps required by default credential providers (#6055) (bfa86268)
Tests
  • middleware-sdk-s3: add waiter for s3 express e2e test (#6051) (003de3f2)

For list of updated packages, view updated-packages.md in assets-3.569.0.zip

v3.568.0

3.568.0(2024-05-02)

Chores
Documentation Changes
  • clarify lib-storage name change between v2 and v3 (#6023) (4d0eafce)
New Features
  • client-redshift-serverless: Update Redshift Serverless List Scheduled Actions Output Response to include Namespace Name. (044806b1)
  • client-dynamodb: This release adds support to specify an optional, maximum OnDemandThroughput for DynamoDB tables and global secondary indexes in the CreateTable or UpdateTable APIs. You can also override the OnDemandThroughput settings by calling the ImportTable, RestoreFromPointInTime, or RestoreFromBackup APIs. (7a4330dd)
  • client-personalize: This releases ability to delete users and their data, including their metadata and interactions data, from a dataset group. (3c7432b9)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-lambda's changelog.

3.569.0 (2024-05-03)

Bug Fixes

  • clients: add deps required by default credential providers (#6055) (bfa8626)

3.568.0 (2024-05-02)

Note: Version bump only for package @​aws-sdk/client-lambda

3.567.0 (2024-05-01)

Features

3.565.0 (2024-04-29)

Note: Version bump only for package @​aws-sdk/client-lambda

3.564.0 (2024-04-26)

Note: Version bump only for package @​aws-sdk/client-lambda

3.563.0 (2024-04-25)

Note: Version bump only for package @​aws-sdk/client-lambda

... (truncated)

Commits

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 Fix

  • babel-plugin-transform-classes, babel-traverse
  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3

💅 Polish

🏠 Internal

  • Other
  • babel-parser
  • 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
  • babel-plugin-proposal-partial-application, babel-types
  • babel-plugin-transform-class-properties, babel-preset-env

🏃‍♀️ Performance

  • babel-helpers, babel-preset-env, babel-runtime-corejs3

Committers: 6

v7.24.4 (2024-04-03)

Thanks @​Dunqing, @​luiscubal, and @​samualtnorman for your first PRs!

👓 Spec Compliance

  • babel-parser
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3

... (truncated)

Changelog

Sourced from @​babel/parser's changelog.

v7.24.5 (2024-04-29)

🐛 Bug Fix

  • babel-plugin-transform-classes, babel-traverse
  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3

💅 Polish

🏠 Internal

  • Other
  • babel-parser
  • 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
  • babel-plugin-proposal-partial-application, babel-types
  • babel-plugin-transform-class-properties, babel-preset-env

🏃‍♀️ Performance

  • babel-helpers, babel-preset-env, babel-runtime-corejs3

v7.24.4 (2024-04-03)

👓 Spec Compliance

  • babel-parser
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3

🐛 Bug Fix

  • babel-generator
  • babel-compat-data, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-plugin-transform-block-scoping
  • babel-core, babel-plugin-transform-block-scoped-functions, babel-plugin-transform-block-scoping

... (truncated)

Commits

Updates @guardian/tsconfig from 0.2.0 to 0.3.0

Release notes

Sourced from @​guardian/tsconfig's releases.

@​guardian/tsconfig@​0.3.0

Minor Changes

  • 1a7deef: Removes the "incremental": true setting, deferring the TypeScript defaults.

    This should be project-specific, not a default for all configs.

Commits

Updates @tsconfig/node18 from 18.2.2 to 18.2.4

Commits

Updates @types/aws-lambda from 8.10.131 to 8.10.137

Commits

Updates @types/jest from 29.5.11 to 29.5.12

Commits

Updates @types/node from 20.11.1 to 20.12.8

Commits

Updates ts-jest from 29.1.1 to 29.1.2

Release notes

Sourced from ts-jest's releases.

v29.1.2

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.1.2 (2024-01-22)

Bug Fixes

  • calculated cache key based on supportsStaticESM (a5d6f2d)
  • correct error handling in processAsync (e7be4bf), closes #4207
  • use Config.ProjectConfig (918312b), closes #4028
Commits
  • 70d48be chore(release): 29.1.2
  • 19778bd build: reference transform options via jest TransformOptions type
  • a5d6f2d fix: calculated cache key based on supportsStaticESM
  • 2d16f4a test(e2e): remove onNodeVersions function
  • 0861a66 build(deps): Update dependency node-fetch to ^3.3.2
  • f41cc3e build(deps): Update babel monorepo
  • 41b8460 build(deps): Update dependency docusaurus-remark-plugin-tab-blocks to ^1.3.1
  • e7be4bf fix: correct error handling in processAsync
  • e31d953 build(deps): Update actions/setup-node digest to 1a4442c
  • 622539d 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

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

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

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 LKG
  • 9f33bf1 🤖 Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...
  • 71b2f84 Bump version to 5.4.5 and LKG
  • 892936f 🤖 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 LKG
  • de9096b 🤖 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

…ates

Bumps the monitoring group with 12 updates in the /monitoring directory:

| Package | From | To |
| --- | --- | --- |
| [@aws-sdk/client-cloudwatch](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cloudwatch) | `3.490.0` | `3.569.0` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.3.1` | `16.4.5` |
| [playwright-core](https://github.com/microsoft/playwright) | `1.40.1` | `1.43.1` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.490.0` | `3.569.0` |
| [@babel/parser](https://github.com/babel/babel/tree/HEAD/packages/babel-parser) | `7.23.6` | `7.24.5` |
| [@guardian/tsconfig](https://github.com/guardian/csnx) | `0.2.0` | `0.3.0` |
| [@tsconfig/node18](https://github.com/tsconfig/bases/tree/HEAD/bases) | `18.2.2` | `18.2.4` |
| [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda) | `8.10.131` | `8.10.137` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.11` | `29.5.12` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.1` | `20.12.8` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.1` | `29.1.2` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.1.3` | `5.4.5` |



Updates `@aws-sdk/client-cloudwatch` from 3.490.0 to 3.569.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-cloudwatch/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.569.0/clients/client-cloudwatch)

Updates `dotenv` from 16.3.1 to 16.4.5
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.3.1...v16.4.5)

Updates `playwright-core` from 1.40.1 to 1.43.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.40.1...v1.43.1)

Updates `@aws-sdk/client-lambda` from 3.490.0 to 3.569.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-lambda/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.569.0/clients/client-lambda)

Updates `@babel/parser` from 7.23.6 to 7.24.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.24.5/packages/babel-parser)

Updates `@guardian/tsconfig` from 0.2.0 to 0.3.0
- [Release notes](https://github.com/guardian/csnx/releases)
- [Commits](https://github.com/guardian/csnx/compare/@guardian/tsconfig@0.2.0...@guardian/tsconfig@0.3.0)

Updates `@tsconfig/node18` from 18.2.2 to 18.2.4
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

Updates `@types/aws-lambda` from 8.10.131 to 8.10.137
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/aws-lambda)

Updates `@types/jest` from 29.5.11 to 29.5.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

Updates `@types/node` from 20.11.1 to 20.12.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `ts-jest` from 29.1.1 to 29.1.2
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.1.1...v29.1.2)

Updates `typescript` from 5.1.3 to 5.4.5
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.1.3...v5.4.5)

---
updated-dependencies:
- dependency-name: "@aws-sdk/client-cloudwatch"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: monitoring
- dependency-name: dotenv
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: monitoring
- dependency-name: playwright-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: monitoring
- dependency-name: "@aws-sdk/client-lambda"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: monitoring
- dependency-name: "@babel/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: monitoring
- dependency-name: "@guardian/tsconfig"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: monitoring
- dependency-name: "@tsconfig/node18"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: monitoring
- dependency-name: "@types/aws-lambda"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: monitoring
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: monitoring
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: monitoring
- dependency-name: ts-jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: monitoring
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: monitoring
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner May 5, 2024 06:09
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 5, 2024
Copy link

changeset-bot bot commented May 5, 2024

⚠️ No Changeset found

Latest commit: 17625a7

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

github-actions bot commented May 5, 2024

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 91.04% 254/279
🟢 Branches 81.67% 98/120
🟢 Functions 88.57% 62/70
🟢 Lines 90.74% 245/270

Test suite run success

331 tests passing in 16 suites.

Report generated by 🧪jest coverage report action from 17625a7

1 similar comment
Copy link
Contributor

github-actions bot commented May 5, 2024

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 91.04% 254/279
🟢 Branches 81.67% 98/120
🟢 Functions 88.57% 62/70
🟢 Lines 90.74% 245/270

Test suite run success

331 tests passing in 16 suites.

Report generated by 🧪jest coverage report action from 17625a7

Copy link
Contributor Author

dependabot bot commented on behalf of github May 10, 2024

Superseded by #987.

@dependabot dependabot bot closed this May 10, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/monitoring/monitoring-4136d1d9b8 branch May 10, 2024 09:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants