MHCommunity / mousehunt-improved

MouseHunt Improved - improves your MouseHunt experience
MIT License
12 stars 13 forks source link

Bump the dev-dependencies group with 5 updates #409

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 4 months ago

Updates the requirements on @babel/runtime, @sentry/browser, @sentry/cli, @wordpress/eslint-plugin and prettier to permit the latest version. Updates @babel/runtime to 7.24.8

Release notes

Sourced from @​babel/runtime's releases.

v7.24.8 (2024-07-11)

Thanks @​H0onnn, @​jkup and @​SreeXD for your first pull requests!

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Committers: 9

Changelog

Sourced from @​babel/runtime's changelog.

v7.24.8 (2024-07-11)

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

v7.24.7 (2024-06-05)

:bug: Bug Fix

:house: Internal

  • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

v7.24.6 (2024-05-24)

:bug: Bug Fix

  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-core, babel-generator, babel-plugin-transform-modules-commonjs
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3
    • #16483 Fix: throw TypeError if addInitializer is called after finished (@​JLHwung)
  • babel-parser, babel-plugin-transform-typescript

... (truncated)

Commits


Updates @sentry/browser to 8.17.0

Release notes

Sourced from @​sentry/browser's releases.

8.17.0

  • feat: Upgrade OTEL deps (#12809)
  • fix(nuxt): Add module to build:transpile script (#12843)
  • fix(browser): Allow SDK initialization in NW.js apps (#12846)

Bundle size 📦

Path Size
@​sentry/browser 22.31 KB
@​sentry/browser (incl. Tracing) 33.45 KB
@​sentry/browser (incl. Tracing, Replay) 69.2 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 62.53 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 73.27 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 85.9 KB
@​sentry/browser (incl. Tracing, Replay, Feedback, metrics) 87.76 KB
@​sentry/browser (incl. metrics) 26.59 KB
@​sentry/browser (incl. Feedback) 38.98 KB
@​sentry/browser (incl. sendFeedback) 26.92 KB
@​sentry/browser (incl. FeedbackAsync) 31.54 KB
@​sentry/react 25.05 KB
@​sentry/react (incl. Tracing) 36.49 KB
@​sentry/vue 26.41 KB
@​sentry/vue (incl. Tracing) 35.31 KB
@​sentry/svelte 22.44 KB
CDN Bundle 23.52 KB
CDN Bundle (incl. Tracing) 35.21 KB
CDN Bundle (incl. Tracing, Replay) 69.31 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 74.51 KB
CDN Bundle - uncompressed 69.02 KB
CDN Bundle (incl. Tracing) - uncompressed 104.04 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 214.43 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 227.15 KB
@​sentry/nextjs (client) 36.37 KB
@​sentry/sveltekit (client) 34.1 KB
@​sentry/node 130.79 KB
@​sentry/node - without tracing 91.88 KB
@​sentry/aws-serverless 117.05 KB
Changelog

Sourced from @​sentry/browser's changelog.

8.17.0

  • feat: Upgrade OTEL deps (#12809)
  • fix(nuxt): Add module to build:transpile script (#12843)
  • fix(browser): Allow SDK initialization in NW.js apps (#12846)

8.16.0

Important Changes

  • feat(nextjs): Use spans generated by Next.js for App Router (#12729)

Previously, the @sentry/nextjs SDK automatically recorded spans in the form of transactions for each of your top-level server components (pages, layouts, ...). This approach had a few drawbacks, the main ones being that traces didn't have a root span, and more importantly, if you had data stream to the client, its duration was not captured because the server component spans had finished before the data could finish streaming.

With this release, we will capture the duration of App Router requests in their entirety as a single transaction with server component spans being descendants of that transaction. This means you will get more data that is also more accurate. Note that this does not apply to the Edge runtime. For the Edge runtime, the SDK will emit transactions as it has before.

Generally speaking, this change means that you will see less transactions and more spans in Sentry. You will no longer receive server component transactions like Page Server Component (/path/to/route) (unless using the Edge runtime), and you will instead receive transactions for your App Router SSR requests that look like GET /path/to/route.

If you are on Sentry SaaS, this may have an effect on your quota consumption: Less transactions, more spans.

  • - feat(nestjs): Add nest cron monitoring support (#12781)

The @sentry/nestjs SDK now includes a @SentryCron decorator that can be used to augment the native NestJS @Cron decorator to send check-ins to Sentry before and after each cron job run:

import { Cron } from '@nestjs/schedule';
import { SentryCron, MonitorConfig } from '@sentry/nestjs';
import type { MonitorConfig } from '@sentry/types';

const monitorConfig: MonitorConfig = {
schedule: {
type: 'crontab',
value: '* * * * *',
},
checkinMargin: 2, // In minutes. Optional.
maxRuntime: 10, // In minutes. Optional.
timezone: 'America/Los_Angeles', // Optional.
};

export class MyCronService {
</tr></table>

... (truncated)

Commits


Updates @sentry/cli to 2.32.2

Release notes

Sourced from @​sentry/cli's releases.

2.32.2

Various fixes & improvements

Changelog

Sourced from @​sentry/cli's changelog.

2.32.2

Various fixes & improvements

2.32.1

Release performed for technical reasons. This release is identical to 2.32.0.

2.32.0

Various fixes & improvements

2.31.2

Various fixes & improvements

  • Fix regressions related to releases set-commits command, which were introduced in 2.31.1.

2.31.1

Various fixes & improvements

2.31.0

With this change, dSYM uploads to the legacy endpoint and release file uploads are routed to the region URL directly (e.g. to https://us.sentry.io instead of https://sentry.io). This change only affects users using the CLI to interact with SaaS Sentry; everything stays the same for self-hosted users.

Other changes

2.30.5

Release made for technical reasons. There are no code changes in this version.

2.30.4

Release made for technical reasons. There are no code changes in this version.

... (truncated)

Commits
  • d0c443c Update CHANGELOG.md
  • c0e33ef release: 2.32.2
  • a7d43f0 build: Bump curl to 0.4.46 in Cargo.toml (#2099)
  • a165aa7 Remove references/calls to legacy Reprocessing (#1998)
  • 9cf9afb Fix new clippy lints (#2096)
  • b37ff70 ref(api): Move chunk data types to submodule
  • 0a42b4c ref(api): Send events using EnvelopesApi instead of sentry-core (#2083)
  • 787a388 ref(api): Use EnvelopesApi instead of the sentry-core client (#2081)
  • 9e0ae85 meta: Delete stale.yml workflow
  • a33a5ca build: Update curl-sys
  • Additional commits viewable in compare view


Updates @wordpress/eslint-plugin from 19.2.0 to 20.0.0

Changelog

Sourced from @​wordpress/eslint-plugin's changelog.

20.0.0 (2024-07-10)

Breaking Changes

Commits
  • 122867d chore(release): publish
  • cd8a365 Update changelog files
  • 1c24e60 Merge changes published in the Gutenberg plugin "release/18.8" branch
  • See full diff in compare view


Updates prettier to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​footagged template
class X {}

// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions