Skip to content

chore(deps): bump the runtime-dependencies group across 1 directory with 3 updates#7

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/runtime-dependencies-029a2dced2
Open

chore(deps): bump the runtime-dependencies group across 1 directory with 3 updates#7
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/runtime-dependencies-029a2dced2

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps the runtime-dependencies group with 3 updates in the / directory: astro, mermaid and p5.

Updates astro from 5.17.2 to 5.17.3

Release notes

Sourced from astro's releases.

astro@5.17.3

Patch Changes

  • #15564 522f880 Thanks @​matthewp! - Add a default body size limit for server actions to prevent oversized requests from exhausting memory.

  • #15569 e01e98b Thanks @​matthewp! - Respect image allowlists when inferring remote image sizes and reject remote redirects.

Changelog

Sourced from astro's changelog.

5.17.3

Patch Changes

  • #15564 522f880 Thanks @​matthewp! - Add a default body size limit for server actions to prevent oversized requests from exhausting memory.

  • #15569 e01e98b Thanks @​matthewp! - Respect image allowlists when inferring remote image sizes and reject remote redirects.

Commits

Updates mermaid from 11.12.2 to 11.12.3

Release notes

Sourced from mermaid's releases.

mermaid@11.12.3

Patch Changes

  • Updated dependencies [7243340]:
    • @​mermaid-js/parser@​1.0.0
Commits
  • cbe7015 Merge pull request #7397 from mermaid-js/changeset-release/master
  • 69fccd2 Version Packages
  • 56ecd66 Fixed issue with hero text
  • 3735098 Merge pull request #7377 from aloisklink/chore/upgrade-to-langium-v4
  • ea46407 Update link with source
  • dc30a46 Updating the Hero on the docs side
  • 426a616 chore(dev-deps): update @​argos-ci/cypress to 6.2.2
  • 16bc9e6 chore(deps): update dependency lodash-es to v4.17.23
  • 7243340 chore(parser)!: upgrade parser to Langium v4
  • 156dc11 chore(deps): upgrade to langium 3.5.0
  • Additional commits viewable in compare view

Updates p5 from 2.2.1 to 2.2.2

Release notes

Sourced from p5's releases.

v2.2.2

What's Changed

This patch focuses on bugfixes, particularly on WebGPU performance and p5.strands. The goal is that all p5.strands shaders work with both WebGPU and WebGL canvases. This patch also adds millis() support inside strands code.

To use this patch, you can use this starter sketch!

Or load both p5.js and WebGPU mode by adding these two script tags to your sketch:

<script src="https://cdn.jsdelivr.net/npm/p5@2.2.2/lib/p5.js"></script>
<script src="https://cdn.jsdelivr.net/npm/p5@2.2.2/lib/p5.webgpu.js"></script>

Then load WebGPU mode in createCanvas - note the async/await, this is needed for WebGPU but not WebGL:

async function setup() {
  await createCanvas(400, 400, WEBGPU);
}

If you take any existing sketch, such as from the intro to strands tutorial, iyou can switch from WEBGL to WEBGPU (async/await will be needed!)

Read more about how the WebGPU-based renderer works and where we plan on taking it here!

millis() supported in p5.strands

Here is a sketch (thanks @​perminder-17!) showing millis() being used inside a strands shader. Previously, const t = uniformFloat(() => millis()); was needed. This can still be used, but you can instead use millis() directly:

// p5.js (WEBGL) sketch showing millis() driving a wavy displacement
let mat;
function setup() {
createCanvas(600, 400, WEBGL);
pixelDensity(1);
mat = baseMaterialShader().modify(() => {
// displace geometry in world-space based on y + time
getWorldInputs((inputs) => {
const wave = sin(inputs.position.y * 0.05 + millis() * 0.004);
inputs.position += [20, 25, 20] * wave;
return inputs;
});
});
}
function draw() {
background(15);
</tr></table>

... (truncated)

Commits
  • 369377d 2.2.2
  • 7167942 Merge pull request #8557 from processing/readme-2.2.2
  • 155a388 Merge branch 'dev-2.0' into readme-2.2.2
  • 13fee41 Merge pull request #8556 from processing/readme-2
  • 6e5027c Updated readme and contributors for 2.0 branch
  • bc5c50a chore: fix alt text, SVG/PNG typos, and remove unused deps
  • ea749e8 update outdated avatar_url .all-contributorsrc
  • e5e0ee9 embed contributors.png in readme
  • 33aa721 ci: generate contributors.png on contributor updates
  • e7272bd feat: add contributors png generator
  • 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 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 23, 2026
@dependabot dependabot bot requested a review from 4444J99 as a code owner February 23, 2026 11:59
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 23, 2026
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/runtime-dependencies-029a2dced2 branch 6 times, most recently from 4058951 to fe31b90 Compare March 2, 2026 12:01
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/runtime-dependencies-029a2dced2 branch 3 times, most recently from 135d48c to 6b85c33 Compare March 6, 2026 02:31
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/runtime-dependencies-029a2dced2 branch 2 times, most recently from fa656f4 to 71b92c9 Compare March 6, 2026 06:15
…ith 3 updates

Bumps the runtime-dependencies group with 3 updates in the / directory: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [mermaid](https://github.com/mermaid-js/mermaid) and [p5](https://github.com/processing/p5.js).


Updates `astro` from 5.17.2 to 5.17.3
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/astro@5.17.3/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@5.17.3/packages/astro)

Updates `mermaid` from 11.12.2 to 11.12.3
- [Release notes](https://github.com/mermaid-js/mermaid/releases)
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.12.2...mermaid@11.12.3)

Updates `p5` from 2.2.1 to 2.2.2
- [Release notes](https://github.com/processing/p5.js/releases)
- [Changelog](https://github.com/processing/p5.js/blob/main/contributor_docs/release_process.md)
- [Commits](processing/p5.js@v2.2.1...v2.2.2)

---
updated-dependencies:
- dependency-name: astro
  dependency-version: 5.17.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: runtime-dependencies
- dependency-name: mermaid
  dependency-version: 11.12.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: runtime-dependencies
- dependency-name: p5
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: runtime-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/runtime-dependencies-029a2dced2 branch from 71b92c9 to caa536f Compare March 9, 2026 10:54
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