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 minors group across 1 directory with 19 updates #200

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the minors group with 19 updates in the /webserver directory:

Package From To
@github/relative-time-element 4.4.3 4.4.4
@google-cloud/storage 7.12.1 7.14.0
@sentry/astro 8.30.0 8.42.0
@shoelace-style/shoelace 2.16.0 2.19.0
debug 4.3.7 4.4.0
express 4.21.0 4.21.2
google-auth-library 9.14.1 9.15.0
lit 3.2.0 3.2.1
n3 1.21.1 1.23.1
@types/n3 1.21.0 1.21.1
rehype-stringify 10.0.0 10.0.1
remark-rehype 11.1.0 11.1.1
solid-js 1.8.22 1.9.3
typescript 5.6.2 5.7.2
@astrojs/check 0.9.3 0.9.4
@playwright/test 1.47.2 1.49.0
@types/node 22.5.4 22.10.1
dotenv-cli 7.4.2 7.4.4
vitest 2.1.1 2.1.8

Updates @github/relative-time-element from 4.4.3 to 4.4.4

Release notes

Sourced from @​github/relative-time-element's releases.

v4.4.4

What's Changed

New Contributors

Full Changelog: github/relative-time-element@v4.4.3...v4.4.4

Commits
  • bc1b8b7 Merge pull request #296 from wxiaoguang/fix-dur
  • da833cf "fix" failed 11y test
  • 60bc336 support "11 months" and fix tests
  • fc858c3 add test and comment
  • 5721bcc fix duration
  • e914da2 Merge pull request #291 from github/dependabot/npm_and_yarn/npm_and_yarn-9fbb...
  • 46a28be Bump the npm_and_yarn group with 7 updates
  • See full diff in compare view

Updates @google-cloud/storage from 7.12.1 to 7.14.0

Release notes

Sourced from @​google-cloud/storage's releases.

v7.14.0

7.14.0 (2024-10-29)

Features

  • Add support for restore token (#2548) (8241e91)
  • Adds integration tests for Universe Domain configuration (#2538) (53db6ba)
  • Adds integration tests for Universe Domain configuration with (53db6ba)
  • storage: Add support for 'skipIfExists' option for downloadMany (#2526) (729efb2)

v7.13.0

7.13.0 (2024-09-17)

Features

  • storage: Add support for 'fields' query parameter to getFiles (#2521) (f78fe92)

Bug Fixes

Changelog

Sourced from @​google-cloud/storage's changelog.

7.14.0 (2024-10-29)

Features

  • Add support for restore token (#2548) (8241e91)
  • Adds integration tests for Universe Domain configuration (#2538) (53db6ba)
  • Adds integration tests for Universe Domain configuration with (53db6ba)
  • storage: Add support for 'skipIfExists' option for downloadMany (#2526) (729efb2)

7.13.0 (2024-09-17)

Features

  • storage: Add support for 'fields' query parameter to getFiles (#2521) (f78fe92)

Bug Fixes

Commits
  • cef7011 chore(main): release 7.14.0 (#2527)
  • 8241e91 feat: add support for restore token (#2548)
  • 5cdc4cb docs: fix comment in transfer manager upload sample (#2547)
  • 4853494 chore: remove unused issue templates (#2544)
  • 6007e26 chore: add owlbot ignores so it stops removing universe domain vars (#2543)
  • 53db6ba feat: adds integration tests for Universe Domain configuration (#2538)
  • 9e44593 chore: update links in github issue templates (#2539)
  • 89b4b7a chore: update issue templates and codeowners (#2528)
  • 729efb2 feat(storage): add support for 'skipIfExists' option for downloadMany (#2526)
  • c75513a chore(deps): update dependency path-to-regexp to v6.3.0 (#2525)
  • Additional commits viewable in compare view

Updates @sentry/astro from 8.30.0 to 8.42.0

Release notes

Sourced from @​sentry/astro's releases.

8.42.0

Important Changes

Deprecations

  • feat: Warn about source-map generation (#14533)

    In the next major version of the SDK we will change how source maps are generated when the SDK is added to an application. Currently, the implementation varies a lot between different SDKs and can be difficult to understand. Moving forward, our goal is to turn on source maps for every framework, unless we detect that they are explicitly turned off. Additionally, if we end up enabling source maps, we will emit a log message that we did so.

    With this particular release, we are emitting warnings that source map generation will change in the future and we print instructions on how to prepare for the next major.

  • feat(nuxt): Deprecate tracingOptions in favor of vueIntegration (#14530)

    Currently it is possible to configure tracing options in two places in the Sentry Nuxt SDK:

    • In Sentry.init()
    • Inside tracingOptions in Sentry.init()

    For tree-shaking purposes and alignment with the Vue SDK, it is now recommended to instead use the newly exported vueIntegration() and its tracingOptions option to configure tracing options in the Nuxt SDK:

    // sentry.client.config.ts
    import * as Sentry from '@sentry/nuxt';
    Sentry.init({
    // ...
    integrations: [
    Sentry.vueIntegration({
    tracingOptions: {
    trackComponents: true,
    },
    }),
    ],
    });

Other Changes

  • feat(browser-utils): Update web-vitals to v4.2.4 (#14439)
  • feat(nuxt): Expose vueIntegration (#14526)
  • fix(feedback): Handle css correctly in screenshot mode (#14535)

... (truncated)

Changelog

Sourced from @​sentry/astro's changelog.

8.42.0

Important Changes

Deprecations

  • feat: Warn about source-map generation (#14533)

    In the next major version of the SDK we will change how source maps are generated when the SDK is added to an application. Currently, the implementation varies a lot between different SDKs and can be difficult to understand. Moving forward, our goal is to turn on source maps for every framework, unless we detect that they are explicitly turned off. Additionally, if we end up enabling source maps, we will emit a log message that we did so.

    With this particular release, we are emitting warnings that source map generation will change in the future and we print instructions on how to prepare for the next major.

  • feat(nuxt): Deprecate tracingOptions in favor of vueIntegration (#14530)

    Currently it is possible to configure tracing options in two places in the Sentry Nuxt SDK:

    • In Sentry.init()
    • Inside tracingOptions in Sentry.init()

    For tree-shaking purposes and alignment with the Vue SDK, it is now recommended to instead use the newly exported vueIntegration() and its tracingOptions option to configure tracing options in the Nuxt SDK:

    // sentry.client.config.ts
    import * as Sentry from '@sentry/nuxt';
    Sentry.init({
    // ...
    integrations: [
    Sentry.vueIntegration({
    tracingOptions: {
    trackComponents: true,
    },
    }),
    ],
    });

Other Changes

  • feat(browser-utils): Update web-vitals to v4.2.4 (#14439)
  • feat(nuxt): Expose vueIntegration (#14526)
  • fix(feedback): Handle css correctly in screenshot mode (#14535)

... (truncated)

Commits

Updates @shoelace-style/shoelace from 2.16.0 to 2.19.0

Release notes

Sourced from @​shoelace-style/shoelace's releases.

v2.19.0

Bug Fixes

Commits

  • 09024cf: fix typo (Cory LaViska)
  • 86a3e89: align enter key with aria apg window splitter (#2234) (Cory LaViska) #2234
  • 18861f2: update changelog (Cory LaViska)
  • 8737d6c: fix directionality check (#2235) (Cory LaViska) #2235
  • 2e73b3d: fix property naming (#2233) (Joshua Brink) #2233
  • aca0f3d: update option label on change; fixes #1971 (#2236) (Cory LaViska) #2236
  • 80c3d87: improve range/tooltip perf; fixes #2064 (#2237) (Cory LaViska) #2237
  • fa71602: fix test (Cory LaViska)
  • 73c469f: Styles fixes (#2238) (Cory LaViska) #2238
  • f7e9688: update twitter username (Cory LaViska)
  • 9919e43: wait longer for CI (Cory LaViska)
  • a675671: Fix typos in tag.md (#2248) (Andreas) #2248
  • b70fa16: Fix customizing custom property link (#2252) (Joseph) #2252
  • 569acdb: fix possibly leaking eventlisteners (#2257) (Enrico Gruner) #2257
  • 8db6580: prevent clicks while dragging; fixes #2196 (#2259) (Cory LaViska) #2259
  • 4580c5b: Adds Norwegian translations (#2268) (Anders Engan) #2268
  • fc1ab67: update changelog (Cory LaViska)
  • 3178dc6: prettier (Cory LaViska)
  • 8a3006d: update changelog (Cory LaViska)
  • 620edc2: Merge branch 'next' of https://github.com/shoelace-style/shoelace into next (Cory LaViska)
  • c232214: fix tabindex when readonly; fixes #2271 (#2272) (Cory LaViska) #2272
  • 604526f: Ukrainian translation for shoelace (#2270) (Volodymyr Lisivka) #2270
  • 8cbd07b: prettier / changelog (Cory LaViska)
  • 5fa62bc: Fix improper tag references in sl-select (#2287) (Konnor Rogers) #2287
  • 94a1043: refactor turbo.js query selector (#2293) (Chris Krawietz) #2293
  • a8900fd: fix select regressions (#2255) (Konnor Rogers) #2255
  • 9f401f8: Documentation for Svelte (#2262) (Emanuel Saramago) #2262
  • 164b768: update changelog (Cory LaViska)
  • a764672: Fix/memory leak popup (#2274) (Emanuele Mastaglia) #2274
  • addac51: Fix sl-select padding issue with multiple and placeholder options combined (#2292) (Evan Harrison) #2292
  • 5691805: Merge branch 'next' of https://github.com/shoelace-style/shoelace into next (Cory LaViska)
  • 75aeaf1: Merge branch 'next' of https://github.com/shoelace-style/shoelace into next (Cory LaViska)
  • 3223438: update changelog (Cory LaViska)
  • db544ed: update changelog (Cory LaViska)
  • 670a598: update script (Cory LaViska)
  • 0c8348d: update dependencies (Cory LaViska)
  • 8b8415a: more dep updates (Cory LaViska)
  • b570e18: update browser-sync (Cory LaViska)
  • 54bd85b: update command-line-args (Cory LaViska)
  • b437e6e: update markdown deps, ora (Cory LaViska)
  • 7d05407: update dep script (Cory LaViska)
  • ca700cf: update jsdom, sinon, pascal-case (Cory LaViska)
  • 2e9fa83: update del (Cory LaViska)
  • 17bf931: update version (Cory LaViska)
  • 5207879: update rule (Cory LaViska)

... (truncated)

Commits

Updates debug from 4.3.7 to 4.4.0

Release notes

Sourced from debug's releases.

4.4.0

Fixes (hopefully) the inefficient regex warnings in .enable().

Minor version as this is invariably going to break certain users who misuse the .enable() API and expected it to work with regexes, which was never supported nor documented. That's on you, sorry - that functionality won't be added back.

Full Changelog: debug-js/debug@4.3.7...4.4.0

Commits

Updates express from 4.21.0 to 4.21.2

Release notes

Sourced from express's releases.

4.21.2

What's Changed

Full Changelog: expressjs/express@4.21.1...4.21.2

4.21.1

What's Changed

Full Changelog: expressjs/express@4.21.0...4.21.1

Changelog

Sourced from express's changelog.

4.21.2 / 2024-11-06

4.21.1 / 2024-10-08

Commits
Maintainer changes

This version was pushed to npm by jonchurch, a new releaser for express since your current version.


Updates google-auth-library from 9.14.1 to 9.15.0

Release notes

Sourced from google-auth-library's releases.

v9.15.0

9.15.0 (2024-11-01)

Features

v9.14.2

9.14.2 (2024-10-09)

Bug Fixes

Changelog

Sourced from google-auth-library's changelog.

9.15.0 (2024-11-01)

Features

9.14.2 (2024-10-09)

Bug Fixes

Commits
  • 0897882 chore(main): release 9.15.0 (#1891)
  • 902bf8b feat: Impersonated Universe Domain Support (#1875)
  • a65d8a1 chore: update links in github issue templates and switch to using compodoc (#...
  • 2453a46 chore(main): release 9.14.2 (#1883)
  • 8336aa2 chore(deps): update actions/checkout digest to eef6144 (#1884)
  • 8adb44c fix: Disable Universe Domain Check (#1878)
  • 66f60bc chore: update issue templates and codeowners (#1863)
  • 5959790 docs: updates readme with working sample for AWS supplier. (#1854)
  • See full diff in compare view

Updates lit from 3.2.0 to 3.2.1

Release notes

Sourced from lit's releases.

[email protected]

Patch Changes

  • #4782 99703a03 - Revert the Terser plugin for Rollup to rollup-plugin-terser from @rollup/plugin-terser due to a bug that prevented our minified name prefixing from working.

[email protected]

Patch Changes

  • #4782 99703a03 - Revert the Terser plugin for Rollup to rollup-plugin-terser from @rollup/plugin-terser due to a bug that prevented our minified name prefixing from working.
Changelog

Sourced from lit's changelog.

3.2.1

Patch Changes

  • #4782 99703a03 - Revert the Terser plugin for Rollup to rollup-plugin-terser from @rollup/plugin-terser due to a bug that prevented our minified name prefixing from working.
Commits

Updates n3 from 1.21.1 to 1.23.1

Release notes

Sourced from n3's releases.

v1.23.1

1.23.1 (2024-11-24)

Bug Fixes

  • dont accidentally re-bind custom data factories (#467) (383f94e)

v1.23.0

1.23.0 (2024-11-08)

Features

  • allow digits in the local part of prefixed names. (#470) (3b6ff6b)

v1.22.3

1.22.3 (2024-09-27)

Performance Improvements

v1.22.2

1.22.2 (2024-09-27)

Performance Improvements

  • make sure performance improvements apply to datasetcore (#457) (35d7142)

v1.22.1

1.22.1 (2024-09-21)

Performance Improvements

v1.22.0

1.22.0 (2024-09-18)

Features

  • add fromTerm and fromQuad to DataFactory (#449) (48cb127)

v1.21.3

1.21.3 (2024-09-17)

... (truncated)

Commits
  • 383f94e fix: dont accidentally re-bind custom data factories (#467)
  • 5294eb5 chore(deps-dev): Bump eslint-plugin-jest in the minor group (#472)
  • b91048f chore: fix eslint (#471)
  • 3b6ff6b feat: allow digits in the local part of prefixed names. (#470)
  • da8b2d0 chore(deps-dev): Bump eslint from 9.13.0 to 9.14.0 in the minor group (#468)
  • b855bf5 chore(deps-dev): Bump the minor group with 4 updates (#465)
  • b434766 chore(deps-dev): Bump eslint from 9.12.0 to 9.13.0 in the minor group (#464)
  • 7945a88 chore(deps-dev): Bump the minor group with 2 updates (#462)
  • 185ee85 chore(deps-dev): Bump eslint from 8.57.0 to 9.12.0 (#461)
  • 50e71b0 chore(deps-dev): Bump the minor group with 6 updates (#460)
  • Additional commits viewable in compare view

Updates @types/n3 from 1.21.0 to 1.21.1

Commits

Updates rehype-stringify from 10.0.0 to 10.0.1

Commits

Updates remark-rehype from 11.1.0 to 11.1.1

Release notes

Sourced from remark-rehype's releases.

11.1.1

Fix

  • f0cce2d Fix mutate support in unified-engine

Miscellaneous

  • 364ee71 Remove license year

Types

  • e4576c0 Refactor to use @imports
  • c62d719 Add declaration maps

Full Changelog: remarkjs/remark-rehype@11.1.0...11.1.1

Commits

Updates solid-js from 1.8.22 to 1.9.3

Release notes

Sourced from solid-js's releases.

v1.9.0 - LGTM!

This release like the last is focusing on small quality of life improvements and adjustments that will help us move towards 2.0. So while not the most exciting release to everyone it provides some really important features and fixes to some developers.

And unlike many previous releases the vast majority of the work and features came from PRs from the community. So really all I can say is Looks Good to Me!

Better JSX Validation

While still incomplete across templates we've added JSDOM to the compiler to better detect invalid HTML at build time by comparing what we expect the template to be with what a browser would output. This now includes things that are nested we didn't detect before like putting <a> inside other <a> tags which will lead to the browser "correcting" it in less than intuitive ways.

Improved Exports

While each environment in solid-js/web has its own methods to be used in the compiler. We are now exporting the client methods from the server to prevent weird import errors. Now these methods will throw if used in this environment but shouldn't break your build.

Additionally we have seen some issues in bundlers that incorrectly feed our ESM exports back through the browser field. While this is a known issue they all pointed issues at each other and with no intention of fixing it. We have removed the browser field in this release, meaning some legacy packages may have issues resolving browser if they don't support export conditions.

This is regretful but this blocked deployments on several platforms and since this was the only fix at our disposal after two years of attempting to push this issue to the bundlers to no avail, we've moved forward with it.

Custom Element improvements

We have a few improvements to our custom element support in this release. First off we now detect elements with the is attribute as custom elements which means all the special behavior is afforded to them.

We've also improved our event handler delegating retargetting to better handle shadow DOM events. There were cases where we skipped over part of the tree.

Finally we've added the bool: attribute namespace to handle explicitly setting certain attributes according to boolean attribute rules. While this isn't necessary for built-in booleans currently we handle most attributes as properties and we lacked a specific override. But now we have it:

<my-element bool:enable={isEnabled()}></my-element>

Support for handleEvent Syntax in Non-Delegated Events

A little known thing is that events actually also support objects instead of functions (See: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)

We(thanks @​titoBouzout) realized we can use this mechanism as a way to set advanced rules like passive or capture on this object as way to handle all current and future event attributes that browsers might add. This way we don't need specific mechanisms like oncapture: (which is now deprecated).

Instead using on: you can set the event properties you wish.

<>
  <div on:click={{
    handleEvent(e) {
      console.log("clicked", e)
    },
    once:true
  }/>
  <div on:wheel={{
    handleEvent(e) {
      e.preventDefault() // only works on not passive events
      e.stopPropagation()  
</tr></table> 

... (truncated)

Commits

Updates typescript from 5.6.2 to 5.7.2

Release notes

Sourced from typescript's releases.

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.7 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d701d90 Bump version to 5.7.2 and LKG
  • 0503a63 🤖 Pick PR #60450 (Move to file: fix detection of refe...) into release-5.7 (#...
  • 3140dbb 🤖 Pick PR #60488 (Stub out copilotRelated command) into release-5.7 (#60495)
  • c1216de Update LKG
  • 3ee2b95 🤖 Pick PR #60415 (Fix false positive rewriteRelativeI...) into release-5.7 (#...
  • 44bd3f2 Bump version to 5.7.1-rc and LKG
  • 5925c81 Update LKG
  • 84d58cf Merge remote-tracking branch 'origin/main' into release-5.7
  • 0ec4d30 Fixing exception on unsaved file (#60362)
  • 11b2930 Add compatible overloads that accept ArrayBuffer to BigInt64Array/BigUint64Ar...
  • Additional commits viewable in compare view

Updates @astrojs/check from 0.9.3 to 0.9.4

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.4

Patch Changes

  • 6e62aaa: Upgrades chokidar to v4
  • 5a44072: Fixes formatting not working by default in certain circumstances
  • Updated dependencies [5a44072]
  • Updated dependencies [3a836de]
    • @​astrojs/language-server@​2.15.0
Changelog

Sourced from @​astrojs/check's changelog.

0.9.4

Patch Changes

  • 6e62aaa: Upgrades chokidar to v4
  • 5a44072: Fixes formatting not working by default in certain circumstances
  • Updated dependencies [5a44072]
  • Updated dependencies [3a836de]
    • @​astrojs/language-server@​2.15.0
Commits

Bumps the minors group with 19 updates in the /webserver directory:

| Package | From | To |
| --- | --- | --- |
| [@github/relative-time-element](https://github.com/github/relative-time-element) | `4.4.3` | `4.4.4` |
| [@google-cloud/storage](https://github.com/googleapis/nodejs-storage) | `7.12.1` | `7.14.0` |
| [@sentry/astro](https://github.com/getsentry/sentry-javascript) | `8.30.0` | `8.42.0` |
| [@shoelace-style/shoelace](https://github.com/shoelace-style/shoelace) | `2.16.0` | `2.19.0` |
| [debug](https://github.com/debug-js/debug) | `4.3.7` | `4.4.0` |
| [express](https://github.com/expressjs/express) | `4.21.0` | `4.21.2` |
| [google-auth-library](https://github.com/googleapis/google-auth-library-nodejs) | `9.14.1` | `9.15.0` |
| [lit](https://github.com/lit/lit/tree/HEAD/packages/lit) | `3.2.0` | `3.2.1` |
| [n3](https://github.com/rdfjs/N3.js) | `1.21.1` | `1.23.1` |
| [@types/n3](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/n3) | `1.21.0` | `1.21.1` |
| [rehype-stringify](https://github.com/rehypejs/rehype) | `10.0.0` | `10.0.1` |
| [remark-rehype](https://github.com/remarkjs/remark-rehype) | `11.1.0` | `11.1.1` |
| [solid-js](https://github.com/solidjs/solid) | `1.8.22` | `1.9.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.7.2` |
| [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.9.3` | `0.9.4` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.47.2` | `1.49.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.4` | `22.10.1` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `7.4.2` | `7.4.4` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.1` | `2.1.8` |



Updates `@github/relative-time-element` from 4.4.3 to 4.4.4
- [Release notes](https://github.com/github/relative-time-element/releases)
- [Commits](github/relative-time-element@v4.4.3...v4.4.4)

Updates `@google-cloud/storage` from 7.12.1 to 7.14.0
- [Release notes](https://github.com/googleapis/nodejs-storage/releases)
- [Changelog](https://github.com/googleapis/nodejs-storage/blob/main/CHANGELOG.md)
- [Commits](googleapis/nodejs-storage@v7.12.1...v7.14.0)

Updates `@sentry/astro` from 8.30.0 to 8.42.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.30.0...8.42.0)

Updates `@shoelace-style/shoelace` from 2.16.0 to 2.19.0
- [Release notes](https://github.com/shoelace-style/shoelace/releases)
- [Commits](shoelace-style/shoelace@v2.16.0...v2.19.0)

Updates `debug` from 4.3.7 to 4.4.0
- [Release notes](https://github.com/debug-js/debug/releases)
- [Commits](debug-js/debug@4.3.7...4.4.0)

Updates `express` from 4.21.0 to 4.21.2
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/4.21.2/History.md)
- [Commits](expressjs/express@4.21.0...4.21.2)

Updates `google-auth-library` from 9.14.1 to 9.15.0
- [Release notes](https://github.com/googleapis/google-auth-library-nodejs/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-nodejs/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-auth-library-nodejs@v9.14.1...v9.15.0)

Updates `lit` from 3.2.0 to 3.2.1
- [Release notes](https://github.com/lit/lit/releases)
- [Changelog](https://github.com/lit/lit/blob/main/packages/lit/CHANGELOG.md)
- [Commits](https://github.com/lit/lit/commits/[email protected]/packages/lit)

Updates `n3` from 1.21.1 to 1.23.1
- [Release notes](https://github.com/rdfjs/N3.js/releases)
- [Commits](rdfjs/N3.js@v1.21.1...v1.23.1)

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

Updates `rehype-stringify` from 10.0.0 to 10.0.1
- [Release notes](https://github.com/rehypejs/rehype/releases)
- [Changelog](https://github.com/rehypejs/rehype/blob/main/changelog.md)
- [Commits](https://github.com/rehypejs/rehype/compare/[email protected])

Updates `remark-rehype` from 11.1.0 to 11.1.1
- [Release notes](https://github.com/remarkjs/remark-rehype/releases)
- [Commits](remarkjs/remark-rehype@11.1.0...11.1.1)

Updates `solid-js` from 1.8.22 to 1.9.3
- [Release notes](https://github.com/solidjs/solid/releases)
- [Changelog](https://github.com/solidjs/solid/blob/main/CHANGELOG.md)
- [Commits](solidjs/solid@v1.8.22...v1.9.3)

Updates `typescript` from 5.6.2 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@v5.6.2...v5.7.2)

Updates `@astrojs/check` from 0.9.3 to 0.9.4
- [Release notes](https://github.com/withastro/language-tools/releases)
- [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md)
- [Commits](https://github.com/withastro/language-tools/commits/@astrojs/[email protected]/packages/astro-check)

Updates `@playwright/test` from 1.47.2 to 1.49.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.47.2...v1.49.0)

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

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

Updates `dotenv-cli` from 7.4.2 to 7.4.4
- [Release notes](https://github.com/entropitor/dotenv-cli/releases)
- [Commits](entropitor/dotenv-cli@v7.4.2...v7.4.4)

Updates `vitest` from 2.1.1 to 2.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.8/packages/vitest)

---
updated-dependencies:
- dependency-name: "@github/relative-time-element"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: "@google-cloud/storage"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@sentry/astro"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@shoelace-style/shoelace"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: debug
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: express
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: google-auth-library
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: lit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: n3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@types/n3"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: rehype-stringify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: remark-rehype
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: solid-js
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@astrojs/check"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@types/n3"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: dotenv-cli
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minors
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 6, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 13, 2024

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

@dependabot dependabot bot closed this Dec 13, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/webserver/minors-d8b57da6a4 branch December 13, 2024 19:30
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