Skip to content

chore(deps): bump the npm-dependencies group with 5 updates#52

Merged
tskovlund merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm-dependencies-840271d67e
Mar 28, 2026
Merged

chore(deps): bump the npm-dependencies group with 5 updates#52
tskovlund merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm-dependencies-840271d67e

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 27, 2026

Bumps the npm-dependencies group with 5 updates:

Package From To
@astrojs/rss 4.0.17 4.0.18
@astrojs/sitemap 3.7.1 3.7.2
smplr 0.19.0 0.20.0
@iconify-json/simple-icons 1.2.74 1.2.75
typescript-eslint 8.57.1 8.57.2

Updates @astrojs/rss from 4.0.17 to 4.0.18

Release notes

Sourced from @​astrojs/rss's releases.

@​astrojs/rss@​4.0.18

Patch Changes

Changelog

Sourced from @​astrojs/rss's changelog.

4.0.18

Patch Changes

Commits

Updates @astrojs/sitemap from 3.7.1 to 3.7.2

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.7.2

Patch Changes

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.7.2

Patch Changes

Commits

Updates smplr from 0.19.0 to 0.20.0

Changelog

Sourced from smplr's changelog.

0.20.0

Export Audio (offline rendering)

Render audio offline and export as WAV — faster than real-time, no speakers needed:

import { renderOffline, SplendidGrandPiano } from "smplr";
const result = await renderOffline(async (context) => {
const piano = await new SplendidGrandPiano(context).load;
piano.start({ note: "C4", time: 0, duration: 1 });
piano.start({ note: "E4", time: 0.5, duration: 1 });
});
result.downloadWav("export.wav");

renderOffline returns a RenderResult with:

  • audioBuffer — raw AudioBuffer
  • toWav() / toWav16() — encode as 32-bit or 16-bit WAV Blob
  • downloadWav(filename?) / downloadWav16(filename?) — one-liner file download

Duration is auto-detected (trailing silence trimmed), or pass it explicitly:

const result = await renderOffline(callback, {
  duration: 10,
  sampleRate: 48000,
});

For bug reports, paste this in any browser console — no install needed:

const { renderOffline, SplendidGrandPiano } =
  await import("https://esm.sh/smplr");
const result = await renderOffline(async (ctx) => {
  const piano = await new SplendidGrandPiano(ctx).load;
  piano.start({ note: "C4", time: 0, duration: 1 });
});
result.downloadWav16("bug-report.wav");

Other changes

  • Smplr context type relaxed from AudioContext to BaseAudioContext for OfflineAudioContext compatibility
  • Duration auto-stop now uses audio-time scheduling instead of setTimeout (works in both real-time and offline contexts)
  • Updated devDependencies to fix all known vulnerabilities
Commits

Updates @iconify-json/simple-icons from 1.2.74 to 1.2.75

Commits

Updates typescript-eslint from 8.57.1 to 8.57.2

Release notes

Sourced from typescript-eslint's releases.

v8.57.2

8.57.2 (2026-03-23)

🩹 Fixes

  • eslint-plugin: [prefer-optional-chain] remove dangling closing parenthesis (#11865)
  • eslint-plugin: [array-type] ignore Array and ReadonlyArray without type arguments (#11971)
  • eslint-plugin: [no-restricted-types] flag banned generics in extends or implements (#12120)
  • eslint-plugin: [no-unsafe-return] false positive on unwrapping generic (#12125)
  • eslint-plugin: [no-unsafe-return] false positive on unwrapping generic (#12125)
  • eslint-plugin: [no-useless-default-assignment] skip reporting false positives for unresolved type parameters (#12127)
  • eslint-plugin: [prefer-readonly-parameter-types] preserve type alias infomation (#11954)
  • typescript-estree: skip createIsolatedProgram fallback for projectService (#12066, #12065)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.57.2 (2026-03-23)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

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

Bumps the npm-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/rss](https://github.com/withastro/astro/tree/HEAD/packages/astro-rss) | `4.0.17` | `4.0.18` |
| [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.7.1` | `3.7.2` |
| [smplr](https://github.com/danigb/smplr) | `0.19.0` | `0.20.0` |
| [@iconify-json/simple-icons](https://github.com/iconify/icon-sets) | `1.2.74` | `1.2.75` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.57.1` | `8.57.2` |


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

Updates `@astrojs/sitemap` from 3.7.1 to 3.7.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/sitemap@3.7.2/packages/integrations/sitemap)

Updates `smplr` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/danigb/smplr/releases)
- [Changelog](https://github.com/danigb/smplr/blob/main/CHANGELOG.md)
- [Commits](https://github.com/danigb/smplr/commits)

Updates `@iconify-json/simple-icons` from 1.2.74 to 1.2.75
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `typescript-eslint` from 8.57.1 to 8.57.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.2/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@astrojs/rss"
  dependency-version: 4.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: smplr
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@iconify-json/simple-icons"
  dependency-version: 1.2.75
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.57.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 27, 2026
@dependabot dependabot Bot requested a review from tskovlund as a code owner March 27, 2026 22:56
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 27, 2026
@tskovlund tskovlund merged commit fe5535e into main Mar 28, 2026
5 checks passed
@tskovlund tskovlund deleted the dependabot/npm_and_yarn/npm-dependencies-840271d67e branch March 28, 2026 11:17
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.

1 participant