Skip to content

chore(deps): bump the npm-updates group across 1 directory with 17 updates - #312

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/samples/weather-forecast/npm-updates-4c6c67c7b5
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/samples/weather-forecast/npm-updates-4c6c67c7b5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-updates group with 17 updates in the /samples/weather-forecast directory:

Package From To
@staffbase/widget-sdk 3.19.1 3.19.3
acorn 8.17.0 8.18.0
axios 1.18.1 1.20.0
dayjs 1.11.21 1.11.23
@mui/system 9.2.0 9.4.0
@rjsf/core 6.6.2 6.8.0
@rjsf/mui 6.6.2 6.8.0
@rjsf/utils 6.6.2 6.8.0
@rjsf/validator-ajv8 6.6.2 6.8.0
@testing-library/react 16.3.2 16.3.3
core-js 3.49.0 3.50.0
jest 30.4.2 30.5.1
jest-environment-jsdom 30.4.1 30.5.1
js-base64 3.9.0 3.9.3
prettier 3.9.5 3.9.6
webpack 5.108.4 5.110.3
webpack-cli 7.2.1 7.2.3

Updates @staffbase/widget-sdk from 3.19.1 to 3.19.3

Commits

Updates acorn from 8.17.0 to 8.18.0

Commits
  • d788421 Mark version 8.18.0
  • b61cb9a Add startLocation option
  • c8d515c Don't compute curLine when locations are off
  • a7bd3cd Reject an unparenthesized arrow function as the left operand of **
  • b7c31b6 Fix mistake in previous patch
  • 5c4af50 Avoid scanning from start of document in loose parser's resetTo
  • See full diff in compare view

Updates axios from 1.18.1 to 1.20.0

Release notes

Sourced from axios's releases.

v1.20.0 — August 19, 2026

This release hardens runtime option handling, adds RFC 9110 status-code aliases, fixes Node.js and XHR reliability issues, and refreshes project tooling and documentation.

⚠️ Breaking Changes & Deprecations

  • HTTP Status Naming: Added ContentTooLarge (413) and UnprocessableContent (422), while retaining PayloadTooLarge and UnprocessableEntity as backward-compatible deprecated aliases. (#11082)

🔒 Security Fixes

  • Runtime Option Handling: Hardened behavioral configuration reads against shared and foreign prototype pollution and normalized unsafe interceptor replacement objects. This also clarifies Fetch redirect and custom implementation behavior, HTTP/2 DNS and proxy handling, CIDR-based NO_PROXY matching, and malformed data URI rejection; see the PR for documented compatibility effects. (#11141)

🐛 Bug Fixes

  • Interceptor Lifecycle: Prevented unbounded handler-array growth by trimming trailing ejected interceptors without changing iteration semantics, and kept interceptor operations safe when the public handlers field is nullish. (#11087, #11118)
  • Request Error Preservation: Prevented custom Error.prepareStackTrace implementations that return non-string values from replacing the original request failure with an unrelated TypeError. (#11109)
  • XHR Reliability: Navigation-canceled requests now reject with ECONNABORTED instead of resolving with status 0, while successful downloads flush their final progress callback during the live loadend dispatch. (#11094, #11121)
  • Node.js Socket Memory: Removed request-context retention from per-socket error listeners, preventing completed response data from being pinned for the lifetime of pooled keep-alive sockets. (#11091)
  • Core Methods and HTTP Errors: Prevented structural method-header buckets from leaking into outgoing headers, standardized invalid DNS lookup and httpVersion failures as AxiosError.ERR_BAD_OPTION_VALUE, and corrected the timeoutErrorMessage merge strategy. (#11096)

🔧 Maintenance & Chores

  • Dependencies: Updated fast-uri, postcss, js-yaml, mocha, development-tooling groups, and GitHub Actions dependencies. (#11092, #11098, #11099, #11106, #11107, #11122, #11123, #11126, #11127, #11133, #11140, #11143, #11144)
  • Documentation: Applied the v1.19.0 documentation updates, added the missing fs import to the README stream example, introduced localized global search, and repaired the interceptor test link. (#11101, #11113, #11097, #11119)
  • Sponsorship: Updated sponsorship links and data and added ScrapingBee as a sponsor. (#11124, #11136, #11137)
  • CI and Release: Switched ESM smoke tests to locked dependencies and synchronized package and runtime version metadata for v1.20.0. (#11128, #11152)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

Full Changelog (axios/axios@v1.19.0...v1.20.0)

v1.19.0 - July 22, 2026

This release raises the form-data security floor, adds configuration and type-system capabilities, and fixes NO_PROXY matching, interceptor errors, progress reporting, and serialization edge cases.

🔒 Security Fixes

  • Multipart Form Data: Raised the form-data dependency floor to ^4.0.6, preventing fresh installations from resolving versions affected by the CRLF injection vulnerability GHSA-hmw2-7cc7-3qxx (GHSA-hmw2-7cc7-3qxx). (#11028)

... (truncated)

Changelog

Sourced from axios's changelog.

Changelog

v1.19.0 — July 22, 2026

This release raises the form-data security floor, adds configuration and type-system capabilities, and fixes NO_PROXY matching, interceptor errors, progress reporting, and serialization edge cases.

🔒 Security Fixes

  • Multipart Form Data: Raised the form-data dependency floor to ^4.0.6, preventing fresh installations from resolving versions affected by the CRLF injection vulnerability GHSA-hmw2-7cc7-3qxx (GHSA-hmw2-7cc7-3qxx). (#11028)

🚀 New Features

  • Configuration Extensibility: Preserved own-enumerable symbol-keyed fields through mergeConfig and added a generic params type across public TypeScript declarations, responses, errors, adapters, and serializers. (#11043, #11081)
  • Header Parameter Parsing: Added the opt-in AxiosHeaders.parseParameters() parser for quote-aware, RFC-style HTTP parameter parsing while preserving legacy parsing behavior. (#11051)
  • HTTP Status Codes: Added the missing Cloudflare 520 WebServerReturnsAnUnknownError status and matching ESM/CJS declarations. (#11067)

🐛 Bug Fixes

  • Form Data Conversion: Limited formDataToJSON path splitting to dot and bracket notation, preserving literal punctuation in keys, and removed browser-facing Buffer.from usage from toFormData to avoid unnecessary polyfills. (#11006, #11018)

  • Proxy Bypass: Canonicalized IPv4 shorthand, octal, and hexadecimal forms during NO_PROXY matching and honored * entries within comma- or space-separated bypass lists. (#11029, #11053)

  • Cancellation: Propagated already-aborted input signals immediately when composing abort signals. (#11035)

  • Header Handling: Preserved empty first values for duplicate singleton headers and made AxiosHeaders#getSetCookie() consistently return arrays for present values. (#11036, #11037)

  • URL Handling: Included normalized, safely redacted offending URLs in malformed-protocol errors and removed repeated trailing slashes when combining base URLs. (#11008, #11038)

  • Progress Events: Clamped malformed negative progress values to zero and ensured final Node.js download progress events are delivered before streamed responses close. (#11039, #11040)

  • Error and JSON Serialization: Serialized Set values as arrays in JSON-compatible snapshots and synthesized useful AxiosError messages from otherwise-empty AggregateError instances. (#11044, #11059)

  • Content-Length Enforcement: Corrected base64 data: URL size estimation so maxContentLength is enforced consistently by the HTTP and Fetch adapters. (#11061)

  • Synchronous Interceptors: Prevented requests from being dispatched after synchronous request interceptors fail unless their paired rejection handler resolves successfully. (#11071)

🔧 Maintenance & Chores

  • Dependencies: Updated development and test tooling, the docs fixture's Axios version, and GitHub Actions integrations including Checkout, Setup Node, Setup Deno, and Zizmor. (#11031, #11055, #11056, #11058, #11079, #11080, #11088, #11089, #11090)
  • Build Outputs: Limited sourcemap generation to published minified bundles, removing broken map references from non-minified builds. (#11054)
  • Form Data Internals: Centralized FormData header handling and made the Node.js adapter tolerate getHeaders() returning undefined under the content-only policy. (#11062)
  • Developer Experience: Ignored common local AI-tooling directories and fixed a constant-reassignment crash when the development sandbox serves its root path. (#11032, #11073)
  • Documentation: Updated sponsor information, clarified that baseURL is not a path-security boundary, scoped provenance claims to attested releases, and corrected the configuration-defaults documentation. (#11041, #11068, #11076, #11078)
  • Publishing: Simplified v1 publishing to use the npm version bundled with Node.js 26 and updated package metadata for the 1.19.0 release. (#11083, #11095)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve Axios:

... (truncated)

Commits
  • 84a9f3b chore(release): prepare release 1.20.0 (#11152)
  • e6824ee fix: core methodList, HTTP adapter errors, and add tests (#11096)
  • d8a919f fix(xhr): flush final progress during the live loadend dispatch (#11121)
  • 2d2a21a fix(interceptors): tolerate nullish handlers in syncHandlerEntries (#11118)
  • d19040b fix: harden runtime option handling (#11141)
  • e0a02dd chore(deps): bump zizmorcore/zizmor-action from 0.6.1 to 0.6.2 in the github-...
  • d10cb3a chore(deps-dev): bump the development_dependencies group with 4 updates (#11143)
  • 2c94646 chore(deps): bump js-yaml and mocha in /tests/smoke/cjs (#11133)
  • 76c12bc chore(deps-dev): bump js-yaml from 4.3.0 to 4.3.1 (#11140)
  • ba98559 docs: add ScrapingBee sponsor (#11137)
  • Additional commits viewable in compare view

Updates dayjs from 1.11.21 to 1.11.23

Release notes

Sourced from dayjs's releases.

v1.11.23

1.11.23 (2026-08-17)

Bug Fixes

  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (dad46e6)
  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (#3181) (2a3785f)

v1.11.22

1.11.22 (2026-08-16)

Bug Fixes

  • plugin: timezone compute instance .tz() offset without host DST (#3174) (e27ee80), closes #3169
Changelog

Sourced from dayjs's changelog.

1.11.23 (2026-08-17)

Bug Fixes

  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (dad46e6)
  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (#3181) (2a3785f)

1.11.22 (2026-08-16)

Bug Fixes

  • plugin: timezone compute instance .tz() offset without host DST (#3174) (e27ee80), closes #3169
Commits
  • 4549b8d chore(release): 1.11.23 [skip ci]
  • 2a3785f fix(plugin): timezone plugin prevent RangeError for invalid Day.js values (#3...
  • dad46e6 fix(plugin): timezone plugin prevent RangeError for invalid Day.js values (#3...
  • ae3a550 chore(release): 1.11.22 [skip ci]
  • accfc67 D2M (#3177)
  • e27ee80 fix(plugin): timezone compute instance .tz() offset without host DST (#3174)
  • 98364bc chore: update doc
  • f6a1556 chore: update doc
  • 6609c5e chore: update doc
  • See full diff in compare view

Updates @mui/system from 9.2.0 to 9.4.0

Release notes

Sourced from @​mui/system's releases.

v9.4.0

A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:

  • ♿️ Opt in to a consistent keyboard focus ring across components with the new theme.focusVisible.
  • ♿️ The Tooltip now supports disabled button triggers without an extra wrapper element.

@mui/material@9.4.0

@mui/utils@9.4.0

@mui/styled-engine-sc@9.4.0

Docs

Core

... (truncated)

Changelog

Sourced from @​mui/system's changelog.

9.4.0

Aug 27, 2026

A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:

  • ♿️ Opt in to a consistent keyboard focus ring across components with the new theme.focusVisible.
  • ♿️ The Tooltip now supports disabled button triggers without an extra wrapper element.

@mui/material@9.4.0

@mui/utils@9.4.0

@mui/styled-engine-sc@9.4.0

Docs

Core

... (truncated)

Commits

Updates @rjsf/core from 6.6.2 to 6.8.0

Release notes

Sourced from @​rjsf/core's releases.

6.8.0

New validator added

The new @rjsf/validator-cfworker was added, see the documentation for the limitations that this validator has.

@​rjsf/core

  • Fixed TimeWidget to respect schema multipleOf time precision, preserving second-precision values while keeping minute-precision native inputs synchronized with their displayed value (#5174)

@​rjsf/utils

  • Fixed an issue in sortedJSONStringify with regards to handling arrays containing null and undefined values.

@​rjsf/validator-ata

  • Raised the ata-validator requirement to ^1.3.0, which fixes a $ref that could not be resolved being treated as vacuous rather than reported as an error (#5181)
  • Raised the ata-validator requirement to ^1.6.0, so that validation runs correctly where new Function is refused, such as a page under a strict Content-Security-Policy (#5184)
  • Raised the ata-validator requirement to ^1.6.1, which stops a $ref into another document from silently dropping the constraints behind it (#5186)

@​rjsf/validator-cfworker

  • Added an eval-free, draft-2020-12 validator package backed by @cfworker/json-schema, including undefined form-data normalization and per-schema-id caching, fixing #3269 and contributing to #4923

Dev / docs / playground

  • Added @rjsf/validator-cfworker to the playground validator selector and API documentation

6.7.1

@​rjsf/core

  • Support locale-specific decimal separators in NumberField (e.g. Polish/German comma decimal separators) without breaking non-text widgets like radio buttons and select dropdowns, fixing #5148
  • Fixed ObjectField to preserve the insertion order of additional and pattern properties when keys are renamed to integers, fixing #4631 (#5156)

@​rjsf/utils

  • Added getDecimalSeparator() utility to detect locale-specific decimal separators and updated asNumber() to parse locale-specific decimal strings, partially fixing #5148
  • Fixed a regression where getDefaultFormState() with experimental_defaultFormStateBehavior.arrayMinItems.populate = 'never' padded arrays with null entries up to minItems, fixing #5163
    • Optional arrays with no data are now omitted (unchanged) while required arrays with no data default to [], letting the validator report the minItems violation instead of surfacing invalid null items

@​rjsf/validator-ata

  • Updated the ata-validator dependency to ^1.1.0, which fixes a stack overflow in browser environments for schemas its JS engine cannot compile and shrinks the install footprint via per-platform optional packages (#5162)

Dev / docs / playground

  • Updated utility-functions.md to document getDecimalSeparator()
  • Removed bump-peer-deps script, pnpm workspaces now handles this for us.

6.7.0

New feature

... (truncated)

Changelog

Sourced from @​rjsf/core's changelog.

6.8.0

@​rjsf/core

  • Fixed TimeWidget to respect schema multipleOf time precision, preserving second-precision values while keeping minute-precision native inputs synchronized with their displayed value (#5174)

@​rjsf/utils

  • Fixed an issue in sortedJSONStringify with regards to handling arrays containing null and undefined values.

@​rjsf/validator-ata

  • Raised the ata-validator requirement to ^1.3.0, which fixes a $ref that could not be resolved being treated as vacuous rather than reported as an error (#5181)
  • Raised the ata-validator requirement to ^1.6.0, so that validation runs correctly where new Function is refused, such as a page under a strict Content-Security-Policy (#5184)
  • Raised the ata-validator requirement to ^1.6.1, which stops a $ref into another document from silently dropping the constraints behind it (#5186)

@​rjsf/validator-cfworker

  • Added an eval-free, draft-2020-12 validator package backed by @cfworker/json-schema, including undefined form-data normalization and per-schema-id caching, fixing #3269 and contributing to #4923

Dev / docs / playground

  • Added @rjsf/validator-cfworker to the playground validator selector and API documentation

6.7.1

@​rjsf/core

  • Support locale-specific decimal separators in NumberField (e.g. Polish/German comma decimal separators) without breaking non-text widgets like radio buttons and select dropdowns, fixing #5148
  • Fixed ObjectField to preserve the insertion order of additional and pattern properties when keys are renamed to integers, fixing #4631

@​rjsf/utils

  • Added getDecimalSeparator() utility to detect locale-specific decimal separators and updated asNumber() to parse locale-specific decimal strings, partially fixing #5148
  • Fixed a regression where getDefaultFormState() with experimental_defaultFormStateBehavior.arrayMinItems.populate = 'never' padded arrays with null entries up to minItems, fixing #5163
    • Optional arrays with no data are now omitted (unchanged) while required arrays with no data default to [], letting the validator report the minItems violation instead of surfacing invalid null items

@​rjsf/validator-ajv8

  • Updated AJV8Validator to remove broken schemas from AJV cache after compilation error, fixing #3933

@​rjsf/validator-ata

  • Updated the ata-validator dependency to ^1.1.0, which fixes a stack overflow in browser environments for schemas its JS engine cannot compile and shrinks the install footprint via per-platform optional packages (#5162)

Dev / docs / playground

  • Updated utility-functions.md to document getDecimalSeparator()
  • Removed bump-peer-deps script, pnpm workspaces now handles this for us.

... (truncated)

Commits
  • ac10c8a Releasing 6.8.0
  • 811f9a4 Require ata-validator 1.6.1 in @​rjsf/validator-ata (#5186)
  • efb35f1 Update sortedJSONStringify (#5171)
  • 25e6d06 fix(core): preserve seconds precision in TimeWidget and sync displayed value ...
  • ea977f3 chore(deps): bump fast-uri from 4.1.1 to 4.1.2 (#5182)
  • 9d72cf1 Require ata-validator 1.6.0 in @​rjsf/validator-ata (#5184)
  • 373f8ce chore(deps-dev): bump nx from 23.0.1 to 23.0.2 (#5183)
  • 6fc614d chore(deps): bump actions/setup-python from 6 to 7 (#5179)
  • 14e384e chore(deps): bump actions/setup-node from 6 to 7 (#5178)
  • 53828da fix(chakra-ui): wrap ChakraProvider in EnvironmentProvider for iframe… (#5175)
  • Additional commits viewable in compare view

Updates @rjsf/mui from 6.6.2 to 6.8.0

Release notes

Sourced from @​rjsf/mui's releases.

6.8.0

New validator added

The new @rjsf/validator-cfworker was added, see the documentation for the limitations that this validator has.

@​rjsf/core

  • Fixed TimeWidget to respect schema multipleOf time precision, preserving second-precision values while keeping minute-precision native inputs synchronized with their displayed value (#5174)

@​rjsf/utils

  • Fixed an issue in sortedJSONStringify with regards to handling arrays containing null and undefined values.

@​rjsf/validator-ata

  • Raised the ata-validator requirement to ^1.3.0, which fixes a $ref that could not be resolved being treated as vacuous rather than reported as an error (#5181)
  • Raised the ata-validator requirement to ^1.6.0, so that validation runs correctly where new Function is refused, such as a page under a strict Content-Security-Policy (#5184)
  • Raised the ata-validator requirement to ^1.6.1, which stops a $ref into another document from silently dropping the constraints behind it (#5186)

@​rjsf/validator-cfworker

  • Added an eval-free, draft-2020-12 validator package backed by @cfworker/json-schema, including undefined form-data normalization and per-schema-id caching, fixing #3269 and contributing to #4923

Dev / docs / playground

  • Added @rjsf/validator-cfworker to the playground validator selector and API documentation

6.7.1

@​rjsf/core

  • Support locale-specific decimal separators in NumberField (e.g. Polish/German comma decimal separators) without breaking non-text widgets like radio buttons and select dropdowns, fixing #5148
  • Fixed ObjectField to preserve the insertion order of additional and pattern properties when keys are renamed to integers, fixing #4631 (#5156)

@​rjsf/utils

  • Added getDecimalSeparator() utility to detect locale-specific decimal separators and updated asNumber() to parse locale-specific decimal strings, partially fixing #5148
  • Fixed a regression where getDefaultFormState() with experimental_defaultFormStateBehavior.arrayMinItems.populate = 'never' padded arrays with null entries up to minItems, fixing #5163
    • Optional arrays with no data are now omitted (unchanged) while required arrays with no data default to [], letting the validator report the minItems violation instead of surfacing invalid null items

@​rjsf/validator-ata

  • Updated the ata-validator dependency to ^1.1.0, which fixes a stack overflow in browser environments for schemas its JS engine cannot compile and shrinks the install footprint via per-platform optional packages (#5162)

Dev / docs / playground

  • Updated utility-functions.md to document getDecimalSeparator()
  • Removed bump-peer-deps script, pnpm workspaces now handles this for us.

6.7.0

New feature

... (truncated)

Changelog

Sourced from @​rjsf/mui's changelog.

6.8.0

@​rjsf/core

  • Fixed TimeWidget to respect schema multipleOf time precision, preserving second-precision values while keeping minute-precision native inputs synchronized with their displayed value (#5174)

@​rjsf/utils

  • Fixed an issue in sortedJSONStringify with regards to handling arrays containing null and undefined values.

@​rjsf/validator-ata

  • Raised the ata-validator requirement to ^1.3.0, which fixes a $ref that could not be resolved being treated as vacuous rather than reported as an error (#5181)
  • Raised the ata-validator requirement to ^1.6.0, so that validation runs correctly where new Function is refused, such as a page under a strict Content-Security-Policy (#5184)
  • Raised the ata-validator requirement to ^1.6.1, which stops a $ref into another document from silently dropping the constraints behind it (#5186)

@​rjsf/validator-cfworker

  • Added an eval-free, draft-2020-12 validator package backed by @cfworker/json-schema, including undefined form-data normalization and per-schema-id caching, fixing #3269 and contributing to #4923

Dev / docs / playground

  • Added @rjsf/validator-cfworker to the playground validator selector and API documentation

6.7.1

@​rjsf/core

  • Support locale-specific decimal separators in NumberField (e.g. Polish/German comma decimal separators) without breaking non-text widgets like radio buttons and select dropdowns, fixing #5148
  • Fixed ObjectField to preserve the insertion order of additional and pattern properties when keys are renamed to integers, fixing #4631

@​rjsf/utils

  • Added getDecimalSeparator() utility to detect locale-specific decimal separators and updated asNumber() to parse locale-specific decimal strings, partially fixing #5148
  • Fixed a regression where getDefaultFormState() with experimental_defaultFormStateBehavior.arrayMinItems.populate = 'never' padded arrays with null entries up to minItems, fixing #5163
    • Optional arrays with no data are now omitted (unchanged) while requir...

      Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code minor Pull requests with new features labels Sep 7, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 7, 2026 06:08
@dependabot
dependabot Bot requested review from jyuliya and robertvangor September 7, 2026 06:08
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code minor Pull requests with new features labels Sep 7, 2026
@dependabot dependabot Bot changed the title chore(deps): bump the npm-updates group in /samples/weather-forecast with 17 updates chore(deps): bump the npm-updates group across 1 directory with 17 updates Sep 7, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/samples/weather-forecast/npm-updates-4c6c67c7b5 branch 2 times, most recently from 5788b58 to 65f64d5 Compare September 11, 2026 16:08
…dates

Bumps the npm-updates group with 17 updates in the /samples/weather-forecast directory:

| Package | From | To |
| --- | --- | --- |
| [@staffbase/widget-sdk](https://github.com/Staffbase/widget-sdk) | `3.19.1` | `3.19.3` |
| [acorn](https://github.com/acornjs/acorn) | `8.17.0` | `8.18.0` |
| [axios](https://github.com/axios/axios) | `1.18.1` | `1.20.0` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.21` | `1.11.23` |
| [@mui/system](https://github.com/mui/material-ui/tree/HEAD/packages/mui-system) | `9.2.0` | `9.4.0` |
| [@rjsf/core](https://github.com/rjsf-team/react-jsonschema-form) | `6.6.2` | `6.8.0` |
| [@rjsf/mui](https://github.com/rjsf-team/react-jsonschema-form) | `6.6.2` | `6.8.0` |
| [@rjsf/utils](https://github.com/rjsf-team/react-jsonschema-form) | `6.6.2` | `6.8.0` |
| [@rjsf/validator-ajv8](https://github.com/rjsf-team/react-jsonschema-form) | `6.6.2` | `6.8.0` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.3.2` | `16.3.3` |
| [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) | `3.49.0` | `3.50.0` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `30.4.2` | `30.5.1` |
| [jest-environment-jsdom](https://github.com/jestjs/jest/tree/HEAD/packages/jest-environment-jsdom) | `30.4.1` | `30.5.1` |
| [js-base64](https://github.com/dankogai/js-base64) | `3.9.0` | `3.9.3` |
| [prettier](https://github.com/prettier/prettier) | `3.9.5` | `3.9.6` |
| [webpack](https://github.com/webpack/webpack) | `5.108.4` | `5.110.3` |
| [webpack-cli](https://github.com/webpack/webpack-cli) | `7.2.1` | `7.2.3` |



Updates `@staffbase/widget-sdk` from 3.19.1 to 3.19.3
- [Commits](https://github.com/Staffbase/widget-sdk/commits)

Updates `acorn` from 8.17.0 to 8.18.0
- [Commits](acornjs/acorn@8.17.0...8.18.0)

Updates `axios` from 1.18.1 to 1.20.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.18.1...v1.20.0)

Updates `dayjs` from 1.11.21 to 1.11.23
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/v1.11.23/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.21...v1.11.23)

Updates `@mui/system` from 9.2.0 to 9.4.0
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v9.4.0/packages/mui-system)

Updates `@rjsf/core` from 6.6.2 to 6.8.0
- [Release notes](https://github.com/rjsf-team/react-jsonschema-form/releases)
- [Changelog](https://github.com/rjsf-team/react-jsonschema-form/blob/main/CHANGELOG.md)
- [Commits](rjsf-team/react-jsonschema-form@6.6.2...v6.8.0)

Updates `@rjsf/mui` from 6.6.2 to 6.8.0
- [Release notes](https://github.com/rjsf-team/react-jsonschema-form/releases)
- [Changelog](https://github.com/rjsf-team/react-jsonschema-form/blob/main/CHANGELOG.md)
- [Commits](rjsf-team/react-jsonschema-form@6.6.2...v6.8.0)

Updates `@rjsf/utils` from 6.6.2 to 6.8.0
- [Release notes](https://github.com/rjsf-team/react-jsonschema-form/releases)
- [Changelog](https://github.com/rjsf-team/react-jsonschema-form/blob/main/CHANGELOG.md)
- [Commits](rjsf-team/react-jsonschema-form@6.6.2...v6.8.0)

Updates `@rjsf/validator-ajv8` from 6.6.2 to 6.8.0
- [Release notes](https://github.com/rjsf-team/react-jsonschema-form/releases)
- [Changelog](https://github.com/rjsf-team/react-jsonschema-form/blob/main/CHANGELOG.md)
- [Commits](rjsf-team/react-jsonschema-form@6.6.2...v6.8.0)

Updates `@testing-library/react` from 16.3.2 to 16.3.3
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.3.2...v16.3.3)

Updates `core-js` from 3.49.0 to 3.50.0
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.50.0/packages/core-js)

Updates `jest` from 30.4.2 to 30.5.1
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.5.1/packages/jest)

Updates `jest-environment-jsdom` from 30.4.1 to 30.5.1
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.5.1/packages/jest-environment-jsdom)

Updates `js-base64` from 3.9.0 to 3.9.3
- [Commits](dankogai/js-base64@3.9.0...v3.9.3)

Updates `prettier` from 3.9.5 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.9.5...3.9.6)

Updates `webpack` from 5.108.4 to 5.110.3
- [Release notes](https://github.com/webpack/webpack/releases)
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack@v5.108.4...v5.110.3)

Updates `webpack-cli` from 7.2.1 to 7.2.3
- [Release notes](https://github.com/webpack/webpack-cli/releases)
- [Changelog](https://github.com/webpack/webpack-cli/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-cli/compare/webpack-cli@7.2.1...webpack-cli@7.2.3)

---
updated-dependencies:
- dependency-name: "@mui/system"
  dependency-version: 9.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: "@rjsf/core"
  dependency-version: 6.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: "@rjsf/mui"
  dependency-version: 6.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: "@rjsf/utils"
  dependency-version: 6.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: "@rjsf/validator-ajv8"
  dependency-version: 6.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: "@staffbase/widget-sdk"
  dependency-version: 3.19.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: acorn
  dependency-version: 8.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: axios
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: core-js
  dependency-version: 3.50.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: dayjs
  dependency-version: 1.11.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: jest
  dependency-version: 30.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: jest-environment-jsdom
  dependency-version: 30.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: js-base64
  dependency-version: 3.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: webpack
  dependency-version: 5.110.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: webpack-cli
  dependency-version: 7.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/samples/weather-forecast/npm-updates-4c6c67c7b5 branch from 65f64d5 to 74ab4f7 Compare September 14, 2026 14:37
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 minor Pull requests with new features

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants