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 11 updates #978

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 28, 2024

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

Package From To
@aws-sdk/client-cloudwatch 3.490.0 3.564.0
dotenv 16.3.1 16.4.5
playwright-core 1.40.1 1.43.1
@aws-sdk/client-lambda 3.490.0 3.564.0
@babel/parser 7.23.6 7.24.4
@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.7
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.564.0

Release notes

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

v3.564.0

3.564.0(2024-04-26)

Chores
  • clients: remove direct dependency on client-sts (#6028) (e30cf9a4)
New Features
  • clients: update client endpoints as of 2024-04-26 (7024e2ef)
  • client-cognito-identity-provider: Add LimitExceededException to SignUp errors (633da5a3)
  • client-connectcampaigns: This release adds support for specifying if Answering Machine should wait for prompt sound. (3235950a)
  • client-codepipeline: Add ability to manually and automatically roll back a pipeline stage to a previously successful execution. (27a9b337)
  • client-marketplace-entitlement-service: Releasing minor endpoint updates. (231317d3)
  • client-support: Releasing minor endpoint updates. (354980a2)
  • client-rds: SupportsLimitlessDatabase field added to describe-db-engine-versions to indicate whether the DB engine version supports Aurora Limitless Database. (dcebb696)
  • client-oam: This release introduces support for Source Accounts to define which Metrics and Logs to share with the Monitoring Account (28b52155)

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

v3.563.0

3.563.0(2024-04-25)

Chores
  • credential-provider-node: statically import credential-provider-env (#6026) (c7872e28)
Documentation Changes
  • client-rds: Updates Amazon RDS documentation for setting local time zones for RDS for Db2 DB instances. (d687367b)
New Features
  • clients: update client endpoints as of 2024-04-25 (74d1b968)
  • client-ivs: Bug Fix: IVS does not support arns with the svs prefix (6e69a84d)
  • client-appsync: UpdateGraphQLAPI documentation update and datasource introspection secret arn update (9b7b9ddb)
  • client-ivs-realtime: Bug Fix: IVS Real Time does not support ARNs using the svs prefix. (fb6245c4)
  • client-sfn: Add new ValidateStateMachineDefinition operation, which performs syntax checking on the definition of a Amazon States Language (ASL) state machine. (b73ebff0)
  • client-fms: AWS Firewall Manager adds support for network ACL policies to manage Amazon Virtual Private Cloud (VPC) network access control lists (ACLs) for accounts in your organization. (75febc1b)

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

v3.562.0

3.562.0(2024-04-24)

... (truncated)

Changelog

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

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

3.556.0 (2024-04-16)

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

3.554.0 (2024-04-11)

Features

  • client-cloudwatch: This release adds support for Metric Characteristics for CloudWatch Anomaly Detection. Anomaly Detector now takes Metric Characteristics object with Periodic Spikes boolean field that tells Anomaly Detection that spikes that repeat at the same time every week are part of the expected pattern. (e0d291a)

3.552.0 (2024-04-09)

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

3.549.0 (2024-04-04)

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

Release notes

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

v3.564.0

3.564.0(2024-04-26)

Chores
  • clients: remove direct dependency on client-sts (#6028) (e30cf9a4)
New Features
  • clients: update client endpoints as of 2024-04-26 (7024e2ef)
  • client-cognito-identity-provider: Add LimitExceededException to SignUp errors (633da5a3)
  • client-connectcampaigns: This release adds support for specifying if Answering Machine should wait for prompt sound. (3235950a)
  • client-codepipeline: Add ability to manually and automatically roll back a pipeline stage to a previously successful execution. (27a9b337)
  • client-marketplace-entitlement-service: Releasing minor endpoint updates. (231317d3)
  • client-support: Releasing minor endpoint updates. (354980a2)
  • client-rds: SupportsLimitlessDatabase field added to describe-db-engine-versions to indicate whether the DB engine version supports Aurora Limitless Database. (dcebb696)
  • client-oam: This release introduces support for Source Accounts to define which Metrics and Logs to share with the Monitoring Account (28b52155)

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

v3.563.0

3.563.0(2024-04-25)

Chores
  • credential-provider-node: statically import credential-provider-env (#6026) (c7872e28)
Documentation Changes
  • client-rds: Updates Amazon RDS documentation for setting local time zones for RDS for Db2 DB instances. (d687367b)
New Features
  • clients: update client endpoints as of 2024-04-25 (74d1b968)
  • client-ivs: Bug Fix: IVS does not support arns with the svs prefix (6e69a84d)
  • client-appsync: UpdateGraphQLAPI documentation update and datasource introspection secret arn update (9b7b9ddb)
  • client-ivs-realtime: Bug Fix: IVS Real Time does not support ARNs using the svs prefix. (fb6245c4)
  • client-sfn: Add new ValidateStateMachineDefinition operation, which performs syntax checking on the definition of a Amazon States Language (ASL) state machine. (b73ebff0)
  • client-fms: AWS Firewall Manager adds support for network ACL policies to manage Amazon Virtual Private Cloud (VPC) network access control lists (ACLs) for accounts in your organization. (75febc1b)

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

v3.562.0

3.562.0(2024-04-24)

... (truncated)

Changelog

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

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

3.556.0 (2024-04-16)

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

3.554.0 (2024-04-11)

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

3.552.0 (2024-04-09)

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

3.549.0 (2024-04-04)

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

3.548.0 (2024-04-03)

... (truncated)

Commits

Updates @babel/parser from 7.23.6 to 7.24.4

Release notes

Sourced from @​babel/parser's releases.

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

🐛 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

Committers: 7

v7.24.3 (2024-03-20)

Thanks @​ota-meshi for your first PR!

🐛 Bug Fix

  • babel-helper-module-imports

Committers: 2

v7.24.2 (2024-03-19)

🐛 Bug Fix

  • babel-code-frame, babel-highlight

... (truncated)

Changelog

Sourced from @​babel/parser's changelog.

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

v7.24.3 (2024-03-20)

🐛 Bug Fix

  • babel-helper-module-imports

v7.24.2 (2024-03-19)

🐛 Bug Fix

v7.24.1 (2024-03-19)

🐛 Bug Fix

  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-plugin-proposal-decorators, babel-plugin-proposal-json-modules, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-class-properties
  • babel-helper-create-class-features-plugin, babel-helper-replace-supers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties

📝 Documentation

🏠 Internal

  • babel-code-frame, babel-highlight

... (truncated)

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

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 11 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.564.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.564.0` |
| [@babel/parser](https://github.com/babel/babel/tree/HEAD/packages/babel-parser) | `7.23.6` | `7.24.4` |
| [@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.7` |
| [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.564.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.564.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.564.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.564.0/clients/client-lambda)

Updates `@babel/parser` from 7.23.6 to 7.24.4
- [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.4/packages/babel-parser)

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.7
- [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: "@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 April 28, 2024 06:12
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 28, 2024
Copy link

changeset-bot bot commented Apr 28, 2024

⚠️ No Changeset found

Latest commit: 01905f1

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 Apr 28, 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 01905f1

Copy link
Contributor Author

dependabot bot commented on behalf of github May 5, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

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