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 #987

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
@aws-sdk/client-cloudwatch 3.490.0 3.572.0
dotenv 16.3.1 16.4.5
playwright-core 1.40.1 1.44.0
@aws-sdk/client-lambda 3.490.0 3.572.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.137
@types/jest 29.5.11 29.5.12
@types/node 20.11.1 20.12.11
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.572.0

Release notes

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

v3.572.0

3.572.0(2024-05-08)

Chores
  • middleware-expect-continue: do not set expect header if using FetchHttpHandler (#6046) (6bb09044)
  • update core tsconfig based on @​tsconfig/node16 (#6038) (80a4f29f)
  • client-alexa-for-business: deprecate alexa-for-business (#6067) (246fcede)
  • client-honeycode: deprecate honeycode (#6068) (bd30a99f)
Documentation Changes
  • client-fms: The policy scope resource tag is always a string value, either a non-empty string or an empty string. (4f544d7c)
New Features
  • clients: update client endpoints as of 2024-05-08 (1e71a11f)
  • client-sqs: This release adds MessageSystemAttributeNames to ReceiveMessageRequest to replace AttributeNames. (35284e8f)
  • client-polly: Add new engine - generative - that builds the most expressive conversational voices. (daf6bd4c)
  • client-ec2: Adding Precision Hardware Clock (PHC) to public API DescribeInstanceTypes (711a8ff4)
  • client-cognito-identity-provider: Add EXTERNAL_PROVIDER enum value to UserStatusType. (0189ee3a)
  • client-ecr: This release adds pull through cache rules support for GitLab container registry in Amazon ECR. (a05338f5)
Tests

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

v3.571.0

3.571.0(2024-05-07)

Documentation Changes
  • client-b2bi: Documentation update to clarify the MappingTemplate definition. (70086558)
  • client-route53profiles: Doc only update for Route 53 profiles that fixes some link issues (23bbcd25)
New Features
  • client-resiliencehub: AWS Resilience Hub has expanded its drift detection capabilities by introducing a new type of drift detection - application resource drift. This new enhancement detects changes, such as the addition or deletion of resources within the application's input sources. (612bf4ad)
  • client-budgets: This release adds tag support for budgets and budget actions. (da0c974d)

... (truncated)

Changelog

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

3.572.0 (2024-05-08)

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

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

... (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.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 in apiRequestContext.fetch() now accepts FormData 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
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.572.0

Release notes

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

v3.572.0

3.572.0(2024-05-08)

Chores
  • middleware-expect-continue: do not set expect header if using FetchHttpHandler (#6046) (6bb09044)
  • update core tsconfig based on @​tsconfig/node16 (#6038) (80a4f29f)
  • client-alexa-for-business: deprecate alexa-for-business (#6067) (246fcede)
  • client-honeycode: deprecate honeycode (#6068) (bd30a99f)
Documentation Changes
  • client-fms: The policy scope resource tag is always a string value, either a non-empty string or an empty string. (4f544d7c)
New Features
  • clients: update client endpoints as of 2024-05-08 (1e71a11f)
  • client-sqs: This release adds MessageSystemAttributeNames to ReceiveMessageRequest to replace AttributeNames. (35284e8f)
  • client-polly: Add new engine - generative - that builds the most expressive conversational voices. (daf6bd4c)
  • client-ec2: Adding Precision Hardware Clock (PHC) to public API DescribeInstanceTypes (711a8ff4)
  • client-cognito-identity-provider: Add EXTERNAL_PROVIDER enum value to UserStatusType. (0189ee3a)
  • client-ecr: This release adds pull through cache rules support for GitLab container registry in Amazon ECR. (a05338f5)
Tests

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

v3.571.0

3.571.0(2024-05-07)

Documentation Changes
  • client-b2bi: Documentation update to clarify the MappingTemplate definition. (70086558)
  • client-route53profiles: Doc only update for Route 53 profiles that fixes some link issues (23bbcd25)
New Features
  • client-resiliencehub: AWS Resilience Hub has expanded its drift detection capabilities by introducing a new type of drift detection - application resource drift. This new enhancement detects changes, such as the addition or deletion of resources within the application's input sources. (612bf4ad)
  • client-budgets: This release adds tag support for budgets and budget actions. (da0c974d)

... (truncated)

Changelog

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

3.572.0 (2024-05-08)

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

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

... (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.1

Release notes

Sourced from @​guardian/tsconfig's releases.

@​guardian/tsconfig@​0.3.1

Patch 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, alongside main.

@​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
  • db1d116 🦋 Release package updates (#1427)
  • 15d2513 Do not publish design-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 updates
  • c5aa7be 🦋 Release package updates (#1411)
  • cb33975 Remove dependency updates from changelogs
  • fe26ffa Bump package versions
  • bef8227 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

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.11

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.572.0` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.3.1` | `16.4.5` |
| [playwright-core](https://github.com/microsoft/playwright) | `1.40.1` | `1.44.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.490.0` | `3.572.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.1` |
| [@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.11` |
| [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.572.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.572.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.44.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.40.1...v1.44.0)

Updates `@aws-sdk/client-lambda` from 3.490.0 to 3.572.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.572.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.1
- [Release notes](https://github.com/guardian/csnx/releases)
- [Commits](https://github.com/guardian/csnx/compare/@guardian/tsconfig@0.2.0...@guardian/tsconfig@0.3.1)

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.11
- [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 10, 2024 09:39
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 10, 2024
Copy link

changeset-bot bot commented May 10, 2024

⚠️ No Changeset found

Latest commit: a4fb72a

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

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 a4fb72a

1 similar comment
Copy link
Contributor

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 a4fb72a

Copy link
Contributor Author

dependabot bot commented on behalf of github May 12, 2024

Superseded by #988.

@dependabot dependabot bot closed this May 12, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/monitoring/monitoring-aa94e6c1c9 branch May 12, 2024 06:31
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