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

Bump the npm-modules-updates group in /hugo with 15 updates #441

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2024

Bumps the npm-modules-updates group in /hugo with 15 updates:

Package From To
@sentry/browser 8.36.0 8.41.0
axios 0.28.1 1.7.8
cross-env 5.2.1 7.0.3
date-fns 2.30.0 4.1.0
imagesloaded 4.1.4 5.0.0
intersection-observer 0.7.0 0.12.2
preact 10.24.3 10.25.0
purgecss-from-html 4.1.1 7.0.2
purgecss-webpack-plugin 4.1.3 7.0.2
resolve-url-loader 3.1.5 5.0.0
sass 1.80.6 1.81.0
sass-loader 8.0.2 16.0.3
stimulus 1.1.1 3.2.2
ts-loader 6.2.2 9.5.1
typescript 4.9.5 5.7.2

Updates @sentry/browser from 8.36.0 to 8.41.0

Release notes

Sourced from @​sentry/browser's releases.

8.41.0

Important Changes

  • meta(nuxt): Require minimum Nuxt v3.7.0 (#14473)

    We formalized that the Nuxt SDK is at minimum compatible with Nuxt version 3.7.0 and above. Additionally, the SDK requires the implicit nitropack dependency to satisfy version ^2.10.0 and ofetch to satisfy ^1.4.0. It is recommended to check your lock-files and manually upgrade these dependencies if they don't match the version ranges.

Deprecations

We are deprecating a few APIs which will be removed in the next major.

The following deprecations will potentially affect you:

  • feat(core): Update & deprecate undefined option handling (#14450)

    In the next major version we will change how passing undefined to tracesSampleRate / tracesSampler / enableTracing will behave.

    Currently, doing the following:

    Sentry.init({
      tracesSampleRate: undefined,
    });

    Will result in tracing being enabled (although no spans will be generated) because the tracesSampleRate key is present in the options object. In the next major version, this behavior will be changed so that passing undefined (or rather having a tracesSampleRate key) will result in tracing being disabled, the same as not passing the option at all. If you are currently relying on undefined being passed, and and thus have tracing enabled, it is recommended to update your config to set e.g. tracesSampleRate: 0 instead, which will also enable tracing in v9.

    The same applies to tracesSampler and enableTracing.

  • feat(core): Log warnings when returning null in beforeSendSpan (#14433)

    Currently, the beforeSendSpan option in Sentry.init() allows you to drop individual spans from a trace by returning null from the hook. Since this API lends itself to creating "gaps" inside traces, we decided to change how this API will work in the next major version.

    With the next major version the beforeSendSpan API can only be used to mutate spans, but no longer to drop them. With this release the SDK will warn you if you are using this API to drop spans. Instead, it is recommended to configure instrumentation (i.e. integrations) directly to control what spans are created.

    Additionally, with the next major version, root spans will also be passed to beforeSendSpan.

  • feat(utils): Deprecate @sentry/utils (#14431)

    With the next major version the @sentry/utils package will be merged into the @sentry/core package. It is therefore no longer recommended to use the @sentry/utils package.

  • feat(vue): Deprecate configuring Vue tracing options anywhere else other than through the vueIntegration's tracingOptions option (#14385)

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

8.41.0

Important Changes

  • meta(nuxt): Require minimum Nuxt v3.7.0 (#14473)

    We formalized that the Nuxt SDK is at minimum compatible with Nuxt version 3.7.0 and above. Additionally, the SDK requires the implicit nitropack dependency to satisfy version ^2.10.0 and ofetch to satisfy ^1.4.0. It is recommended to check your lock-files and manually upgrade these dependencies if they don't match the version ranges.

Deprecations

We are deprecating a few APIs which will be removed in the next major.

The following deprecations will potentially affect you:

  • feat(core): Update & deprecate undefined option handling (#14450)

    In the next major version we will change how passing undefined to tracesSampleRate / tracesSampler / enableTracing will behave.

    Currently, doing the following:

    Sentry.init({
      tracesSampleRate: undefined,
    });

    Will result in tracing being enabled (although no spans will be generated) because the tracesSampleRate key is present in the options object. In the next major version, this behavior will be changed so that passing undefined (or rather having a tracesSampleRate key) will result in tracing being disabled, the same as not passing the option at all. If you are currently relying on undefined being passed, and and thus have tracing enabled, it is recommended to update your config to set e.g. tracesSampleRate: 0 instead, which will also enable tracing in v9.

    The same applies to tracesSampler and enableTracing.

  • feat(core): Log warnings when returning null in beforeSendSpan (#14433)

    Currently, the beforeSendSpan option in Sentry.init() allows you to drop individual spans from a trace by returning null from the hook. Since this API lends itself to creating "gaps" inside traces, we decided to change how this API will work in the next major version.

    With the next major version the beforeSendSpan API can only be used to mutate spans, but no longer to drop them. With this release the SDK will warn you if you are using this API to drop spans. Instead, it is recommended to configure instrumentation (i.e. integrations) directly to control what spans are created.

    Additionally, with the next major version, root spans will also be passed to beforeSendSpan.

  • feat(utils): Deprecate @sentry/utils (#14431)

    With the next major version the @sentry/utils package will be merged into the @sentry/core package. It is therefore no longer recommended to use the @sentry/utils package.

... (truncated)

Commits
  • df843cc release: 8.41.0
  • 470d4ec Merge pull request #14502 from getsentry/prepare-release/8.41.0
  • f7289c4 meta(changelog): Update changelog for 8.41.0
  • a4138e9 perf(opentelemetry): Bucket spans for cleanup (#14154)
  • 3e7969f feat: Deprecate registerEsmLoaderHooks.include and `registerEsmLoaderHooks....
  • 1e0cb04 ref(core): Do not check baggage validity (#14479)
  • de65590 feat(core): Further optimize debug ID parsing (#14365)
  • 09a31d1 feat(node): Add openTelemetryInstrumentations option (#14484)
  • 23e3783 meta(nuxt): Require minimum Nuxt v3.7.0 (#14473)
  • 973ef9c chore: Add GHSA entry for nuxt e2e test (#14490)
  • Additional commits viewable in compare view

Updates axios from 0.28.1 to 1.7.8

Release notes

Sourced from axios's releases.

Release v1.7.8

Release notes:

Bug Fixes

  • allow passing a callback as paramsSerializer to buildURL (#6680) (eac4619)
  • core: fixed config merging bug (#6668) (5d99fe4)
  • fixed width form to not shrink after 'Send Request' button is clicked (#6644) (7ccd5fd)
  • http: add support for File objects as payload in http adapter (#6588) (#6605) (6841d8d)
  • http: fixed proxy-from-env module import (#5222) (12b3295)
  • http: use globalThis.TextEncoder when available (#6634) (df956d1)
  • ios11 breaks when build (#6608) (7638952)
  • types: add missing types for mergeConfig function (#6590) (00de614)
  • types: export CJS types from ESM (#6218) (c71811b)
  • updated stream aborted error message to be more clear (#6615) (cc3217a)
  • use URL API instead of DOM to fix a potential vulnerability warning; (#6714) (0a8d6e1)

Contributors to this release

Release v1.7.7

Release notes:

Bug Fixes

  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#5731) (364993f)

Contributors to this release

Release v1.7.6

... (truncated)

Changelog

Sourced from axios's changelog.

1.7.8 (2024-11-25)

Bug Fixes

  • allow passing a callback as paramsSerializer to buildURL (#6680) (eac4619)
  • core: fixed config merging bug (#6668) (5d99fe4)
  • fixed width form to not shrink after 'Send Request' button is clicked (#6644) (7ccd5fd)
  • http: add support for File objects as payload in http adapter (#6588) (#6605) (6841d8d)
  • http: fixed proxy-from-env module import (#5222) (12b3295)
  • http: use globalThis.TextEncoder when available (#6634) (df956d1)
  • ios11 breaks when build (#6608) (7638952)
  • types: add missing types for mergeConfig function (#6590) (00de614)
  • types: export CJS types from ESM (#6218) (c71811b)
  • updated stream aborted error message to be more clear (#6615) (cc3217a)
  • use URL API instead of DOM to fix a potential vulnerability warning; (#6714) (0a8d6e1)

Contributors to this release

1.7.7 (2024-08-31)

Bug Fixes

  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#5731) (364993f)

Contributors to this release

... (truncated)

Commits
  • 415ca94 chore(release): v1.7.8 (#6715)
  • 0a8d6e1 fix: use URL API instead of DOM to fix a potential vulnerability warning; (#6...
  • c71811b fix(types): export CJS types from ESM (#6218)
  • 4355a6d chore(sponsor): update sponsor block (#6709)
  • 5d54d22 chore(sponsor): update sponsor block (#6707)
  • eac4619 fix: allow passing a callback as paramsSerializer to buildURL (#6680)
  • df956d1 fix(http): use globalThis.TextEncoder when available (#6634)
  • 7139ce9 chore(deps): bump cookie and socket.io (#6704)
  • 5ebb124 chore(deps-dev): bump elliptic from 6.5.4 to 6.6.0 (#6698)
  • 4e9b33d chore(deps): bump send and express (#6699)
  • Additional commits viewable in compare view

Updates cross-env from 5.2.1 to 7.0.3

Release notes

Sourced from cross-env's releases.

v7.0.3

7.0.3 (2020-12-01)

Bug Fixes

  • add maintenance mode notice (fe80c84)

v7.0.2

7.0.2 (2020-03-05)

Reverts

v7.0.1

7.0.1 (2020-03-03)

Bug Fixes

v7.0.0

7.0.0 (2020-01-25)

Features

BREAKING CHANGES

  • Drop Node 8 support

v6.0.3

6.0.3 (2019-10-02)

Bug Fixes

  • do not compile anything (67f21c3)

v6.0.2

6.0.2 (2019-10-01)

... (truncated)

Commits

Updates date-fns from 2.30.0 to 4.1.0

Release notes

Sourced from date-fns's releases.

v4.1.0

This release adds time zone support to format functions (that I somehow missed when working on the feature) and fixes a few bugs.

Make sure also upgrade TZDate to v1.0.2 as it includes a bunch of critical bug fixes.

Fixed

  • Fixed internal constructFrom throwing an exception on null arguments. While null isn't allowed, the functions should rather return Invalid Date or NaN in such cases. See #3885.

Added

  • Added missing time zone support to format, formatISO, formatISO9075, formatRelative and formatRFC3339. See #3886.

v4.0.0

I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.

Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.

Read more about the release in the announcement blog post.

- Sasha @​kossnocorp

Added

  • Added time zones support via @date-fns/tz's TZDate class and tz helper function. See its README for the details about the API.

  • All relevant functions now accept the context in option, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:

    import { addDays, startOfDay } from "date-fns";
    import { tz } from "@date-fns/tz";
    startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
    //=> "2024-09-16T00:00:00.000+08:00"

    In the example, addDays will get the current date and time in Singapore and add 5 days to it. startOfDay will inherit the date type and return the start of the day in Singapore.

Changed

  • The function arguments, as well as Interval's start and end, now can be of different types, allowing you to mix UTCDate, TZDate, Date, and other extensions, as well as primitives (strings and numbers).

    The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context in option or the first encountered argument object type. The Interval's start and end will be considered separately, starting from start.

    In the given example, the result will be in the TZDate as the first argument is a number, and the start takes precedence over the end.

    clamp(Date.now(), {
      start: new TZDate(start, "Asia/Singapore"),
      end: new UTCDate(),

... (truncated)

Changelog

Sourced from date-fns's changelog.

v4.1.0 - 2024-09-17

This release adds time zone support to format functions (that I somehow missed when working on the feature) and fixes a few bugs.

Make sure also upgrade TZDate to v1.0.2 as it includes a bunch of critical bug fixes.

Fixed

  • Fixed internal constructFrom throwing an exception on null arguments. While null isn't allowed, the functions should rather return Invalid Date or NaN in such cases. See #3885.

Added

  • Added missing time zone support to format, formatISO, formatISO9075, formatRelative and formatRFC3339. See #3886.

v4.0.0 - 2024-09-16

I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.

Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.

Read more about the release in the announcement blog post.

- Sasha @​kossnocorp

Added

  • Added time zones support via @date-fns/tz's TZDate class and tz helper function. See its README for the details about the API.

  • All relevant functions now accept the context in option, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:

    import { addDays, startOfDay } from "date-fns";
    import { tz } from "@date-fns/tz";
    startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
    //=> "2024-09-16T00:00:00.000+08:00"

    In the example, addDays will get the current date and time in Singapore and add 5 days to it. startOfDay will inherit the date type and return the start of the day in Singapore.

Changed

  • The function arguments, as well as Interval's start and end, now can be of different types, allowing you to mix UTCDate, TZDate, Date, and other extensions, as well as primitives (strings and numbers).

    The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context in option or the first encountered argument object type. The Interval's start and end will be considered separately, starting from start.

    In the given example, the result will be in the TZDate as the first argument is a number, and the start takes precedence over the end.

    clamp(Date.now(), {

... (truncated)

Commits
  • 313b902 Fix v4.1.0 change log entry
  • 26cd336 Promote to v4.1.0
  • 97b53b9 Cover time zone edge cases
  • 59b7563 Add missing time zone support to format, formatISO, formatISO9075, formatRela...
  • 0121164 Prevent constructFrom from throwing an error on null
  • bd87ef5 Update @​date-fns/docs
  • 99b4e67 Prepare v4.0
  • 8df1706 Rewrite the time zones doc
  • e351977 Promote to v4.0.0-beta.1
  • 8523656 Fix scripts/test/types.sh
  • Additional commits viewable in compare view

Updates imagesloaded from 4.1.4 to 5.0.0

Commits

Updates intersection-observer from 0.7.0 to 0.12.2

Commits

Updates preact from 10.24.3 to 10.25.0

Release notes

Sourced from preact's releases.

10.25.0

Features

Move per-element type interfaces into core and more strictly type IntrinsicElements (#4546, thanks @​rschristian)

This adds per-element typings for every DOM-node type, this means that our types might become slightly stricter when you are using DOM attributes/properties where they are not allowed, an example of this might be <div src="x" />.

If you notice any issues when upgrading tell us about them, we can evaluate whether we have missed a case.

Recreate unkeyed functional components when they change position. (#4550, thanks @​JoviDeCroock)

This is a long time bugfix, when we have elements that look like

return (
	{condition ? <Element /> : null}
	{condition ? null : <Element />
)

We would reuse the state of the first VNode to render the second one when the condition switches. When you are using key, this issue was not present.

Support { handleEvent() {} } object interface as a listener (#4538, thanks @​lilnasy)

We've added support for attaching object/class event-handlers

let handler = {
	onclick,
	handleEvent() {
		this.onclick()
	}
}
<div onClick={handler} />

Fixes

Maintenance

... (truncated)

Commits

Updates purgecss-from-html from 4.1.1 to 7.0.2

Release notes

Sourced from purgecss-from-html's releases.

v7.0.2

Bug Fixes

  • fix: fix issue where pseudo classes like :where, :not, :is were always removed at root level (89024ce), closes #1282 #978
  • build: add named export for postcss plugin (87d15b7), closes #1263

Features

  • feat(purgecss-from-pug): returns ExtractorResultDetailed instead of selectors (fb51dc6)

BREAKING CHANGES

  • PostCSS plugin should now be imported via purgeCSSPlugin
import { purgeCSSPlugin } from '@fullhuman/postcss-purgecss';
  • drop support for node 18.

Other

  • build(deps-dev): update dependencies
  • build(deps): update dependencies

Full Changelog: FullHuman/purgecss@v6.0.0...v7.0.2

v6.0.0

Bug Fixes

Features

Breaking changes

  • Supports NodeJS 18+

What's Changed (full list)

... (truncated)

Commits
  • e95398d v7.0.2
  • bdb8d06 v7.0.1
  • 5a51b05 v7.0.1-alpha.0
  • ea04fce v7.0.0-alpha.0
  • 1077a0d build(deps): bump cross-spawn from 7.0.3 to 7.0.6 (#1294)
  • 89024ce fix: fix issue where pseudo classes like :where, :not, :is were always remove...
  • 28783b3 build(deps): bump webpack from 5.95.0 to 5.96.1 (#1287)
  • ee45a6b build(deps-dev): bump @​typescript-eslint/parser from 8.8.0 to 8.14.0 (#1293)
  • cb46b92 build(deps-dev): bump @​vuepress/plugin-search (#1284)
  • 74bf402 build(deps): bump coverallsapp/github-action from 2.3.0 to 2.3.4 (#1283)
  • Additional commits viewable in compare view

Updates purgecss-webpack-plugin from 4.1.3 to 7.0.2

Release notes

Sourced from purgecss-webpack-plugin's releases.

v7.0.2

Bug Fixes

  • fix: fix issue where pseudo classes like :where, :not, :is were always removed at root level (89024ce), closes #1282 #978
  • build: add named export for postcss plugin (87d15b7), closes #1263

Features

  • feat(purgecss-from-pug): returns ExtractorResultDetailed instead of selectors (fb51dc6)

BREAKING CHANGES

  • PostCSS plugin should now be imported via purgeCSSPlugin
import { purgeCSSPlugin } from '@fullhuman/postcss-purgecss';
  • drop support for node 18.

Other

  • build(deps-dev): update dependencies
  • build(deps): update dependencies

Full Changelog: FullHuman/purgecss@v6.0.0...v7.0.2

v6.0.0

Bug Fixes

Features

Breaking changes

  • Supports NodeJS 18+

What's Changed (full list)

... (truncated)

Commits

Bumps the npm-modules-updates group in /hugo with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [@sentry/browser](https://github.com/getsentry/sentry-javascript) | `8.36.0` | `8.41.0` |
| [axios](https://github.com/axios/axios) | `0.28.1` | `1.7.8` |
| [cross-env](https://github.com/kentcdodds/cross-env) | `5.2.1` | `7.0.3` |
| [date-fns](https://github.com/date-fns/date-fns) | `2.30.0` | `4.1.0` |
| [imagesloaded](https://github.com/desandro/imagesloaded) | `4.1.4` | `5.0.0` |
| [intersection-observer](https://github.com/GoogleChromeLabs/intersection-observer) | `0.7.0` | `0.12.2` |
| [preact](https://github.com/preactjs/preact) | `10.24.3` | `10.25.0` |
| [purgecss-from-html](https://github.com/FullHuman/purgecss) | `4.1.1` | `7.0.2` |
| [purgecss-webpack-plugin](https://github.com/FullHuman/purgecss) | `4.1.3` | `7.0.2` |
| [resolve-url-loader](https://github.com/bholloway/resolve-url-loader/tree/HEAD/packages/resolve-url-loader) | `3.1.5` | `5.0.0` |
| [sass](https://github.com/sass/dart-sass) | `1.80.6` | `1.81.0` |
| [sass-loader](https://github.com/webpack-contrib/sass-loader) | `8.0.2` | `16.0.3` |
| [stimulus](https://github.com/stimulusjs/stimulus) | `1.1.1` | `3.2.2` |
| [ts-loader](https://github.com/TypeStrong/ts-loader) | `6.2.2` | `9.5.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `4.9.5` | `5.7.2` |


Updates `@sentry/browser` from 8.36.0 to 8.41.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.36.0...8.41.0)

Updates `axios` from 0.28.1 to 1.7.8
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v0.28.1...v1.7.8)

Updates `cross-env` from 5.2.1 to 7.0.3
- [Release notes](https://github.com/kentcdodds/cross-env/releases)
- [Changelog](https://github.com/kentcdodds/cross-env/blob/master/CHANGELOG.md)
- [Commits](kentcdodds/cross-env@v5.2.1...v7.0.3)

Updates `date-fns` from 2.30.0 to 4.1.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md)
- [Commits](date-fns/date-fns@v2.30.0...v4.1.0)

Updates `imagesloaded` from 4.1.4 to 5.0.0
- [Release notes](https://github.com/desandro/imagesloaded/releases)
- [Commits](desandro/imagesloaded@v4.1.4...v5.0.0)

Updates `intersection-observer` from 0.7.0 to 0.12.2
- [Commits](https://github.com/GoogleChromeLabs/intersection-observer/commits)

Updates `preact` from 10.24.3 to 10.25.0
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.24.3...10.25.0)

Updates `purgecss-from-html` from 4.1.1 to 7.0.2
- [Release notes](https://github.com/FullHuman/purgecss/releases)
- [Changelog](https://github.com/FullHuman/purgecss/blob/main/CHANGELOG.md)
- [Commits](FullHuman/purgecss@v4.1.1...v7.0.2)

Updates `purgecss-webpack-plugin` from 4.1.3 to 7.0.2
- [Release notes](https://github.com/FullHuman/purgecss/releases)
- [Changelog](https://github.com/FullHuman/purgecss/blob/main/CHANGELOG.md)
- [Commits](FullHuman/purgecss@v4.1.3...v7.0.2)

Updates `resolve-url-loader` from 3.1.5 to 5.0.0
- [Release notes](https://github.com/bholloway/resolve-url-loader/releases)
- [Changelog](https://github.com/bholloway/resolve-url-loader/blob/v5/packages/resolve-url-loader/CHANGELOG.md)
- [Commits](https://github.com/bholloway/resolve-url-loader/commits/5.0.0/packages/resolve-url-loader)

Updates `sass` from 1.80.6 to 1.81.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.80.6...1.81.0)

Updates `sass-loader` from 8.0.2 to 16.0.3
- [Release notes](https://github.com/webpack-contrib/sass-loader/releases)
- [Changelog](https://github.com/webpack-contrib/sass-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/sass-loader@v8.0.2...v16.0.3)

Updates `stimulus` from 1.1.1 to 3.2.2
- [Release notes](https://github.com/stimulusjs/stimulus/releases)
- [Changelog](https://github.com/hotwired/stimulus/blob/main/CHANGELOG.md)
- [Commits](hotwired/stimulus@v1.1.1...v3.2.2)

Updates `ts-loader` from 6.2.2 to 9.5.1
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](TypeStrong/ts-loader@v6.2.2...v9.5.1)

Updates `typescript` from 4.9.5 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v4.9.5...v5.7.2)

---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-modules-updates
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: cross-env
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: date-fns
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: imagesloaded
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: intersection-observer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-modules-updates
- dependency-name: preact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-modules-updates
- dependency-name: purgecss-from-html
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: purgecss-webpack-plugin
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: resolve-url-loader
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-modules-updates
- dependency-name: sass-loader
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: stimulus
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: ts-loader
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
Copy link

cloudflare-workers-and-pages bot commented Dec 1, 2024

Deploying radio-t-site with  Cloudflare Pages  Cloudflare Pages

Latest commit: f4fbab7
Status:🚫  Build failed.

View logs

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2024
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.

0 participants