Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 31, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@babel/core (source) ^7.28.3 -> ^7.28.4 age confidence
@babel/eslint-parser (source) ^7.28.0 -> ^7.28.4 age confidence
@​splunk/dashboard-action-buttons 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-context 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-core 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-definition 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-event-handlers 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-icons 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-inputs 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-layouts 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-presets 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-search 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-state 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-telemetry 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-types 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-ui 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-utils 29.0.0 -> 29.1.0 age confidence
@​splunk/dashboard-validation 29.0.0 -> 29.1.0 age confidence
@​splunk/datasource-utils 29.0.0 -> 29.1.0 age confidence
@​splunk/datasources 29.0.0 -> 29.1.0 age confidence
@​splunk/react-events-viewer ^28.0.0 -> ^28.1.0 age confidence
@​splunk/react-icons ^5.2.0 -> ^5.3.0 age confidence
@​splunk/react-page ^8.0.0 -> ^8.1.0 age confidence
@​splunk/react-ui ^5.1.0 -> ^5.3.0 age confidence
@​splunk/splunk-utils ^3.2.0 -> ^3.3.0 age confidence
@​splunk/themes ^1.2.0 -> ^1.2.1 age confidence
@​splunk/visualization-context ^28.0.0 -> ^28.1.0 age confidence
@​splunk/visualization-schemas 28.0.0 -> 28.1.0 age confidence
@testing-library/dom ^10.4.0 -> ^10.4.1 age confidence
@testing-library/jest-dom ^6.6.3 -> ^6.8.0 age confidence
@testing-library/react ^15.0.6 -> ^15.0.7 age confidence
@types/react (source) ^18.2.41 -> ^18.3.24 age confidence
@types/react-dom (source) ^18.2.17 -> ^18.3.7 age confidence
axios (source) ^1.12.0 -> ^1.12.2 age confidence
babel-jest (source) ^30.0.5 -> ^30.2.0 age confidence
esbuild ^0.25.9 -> ^0.25.10 age confidence
eslint-plugin-testing-library ^7.6.6 -> ^7.10.0 age confidence
jest (source) ^30.0.5 -> ^30.2.0 age confidence
jest-environment-jsdom (source) ^30.0.5 -> ^30.2.0 age confidence
jest-fixed-jsdom ^0.0.9 -> ^0.0.10 age confidence
jspdf ^3.0.2 -> ^3.0.3 age confidence
msw (source) ^2.10.5 -> ^2.11.3 age confidence
react (source) ^18.0.0 -> ^18.3.1 age confidence
react (source) 18 -> 18.3.1 age confidence
react-dom (source) ^18.0.0 -> ^18.3.1 age confidence
react-dom (source) 18 -> 18.3.1 age confidence
vite (source) ^7.1.3 -> ^7.1.7 age confidence
vite-plugin-checker ^0.10.2 -> ^0.11.0 age confidence
vite-plugin-dts 4.5.3 -> 4.5.4 age confidence
zod (source) ^4.0.17 -> ^4.1.11 age confidence

Release Notes

babel/babel (@​babel/core)

v7.28.4

Compare Source

🏠 Internal
jestjs/jest (babel-jest)

v30.2.0

Compare Source

Chore & Maintenance
  • [*] Update example repo for testing React Native projects (#​15832)
  • [*] Update jest-watch-typeahead to v3 (#​15830)

v30.1.2

Compare Source

Fixes
  • [jest-snapshot-utils] Correct snapshot header regexp to work with newline across OSes (#​15803)

v30.1.1

Compare Source

Fixes
  • [jest-snapshot-utils] Fix deprecated goo.gl snapshot warning not handling Windows end-of-line sequences (#​15800)
  • [jest-snapshot-utils] Improve messaging about goo.gl snapshot link change (#​15821)

v30.1.0

Compare Source

evanw/esbuild (esbuild)

v0.25.10

Compare Source

  • Fix a panic in a minification edge case (#​4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
  • Fix @supports nested inside pseudo-element (#​4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @​supports (color: blue) { color: blue }
    }
    
    /* Old output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
       {
        color: blue;
      }
    }
    
    /* New output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
      ::placeholder {
        color: blue;
      }
    }
testing-library/eslint-plugin-testing-library (eslint-plugin-testing-library)

v7.10.0

Compare Source

Features
  • no-wait-for-multiple-assertions: add partial fix support (#​1090) (bd01e08)

v7.9.2

Compare Source

Bug Fixes

v7.9.1

Compare Source

Bug Fixes
  • declare .finally(...) usages as handled in async rules (#​1074) (2d24966)

v7.9.0

Compare Source

Features

v7.8.1

Compare Source

Bug Fixes

v7.8.0

Compare Source

Features

v7.7.0

Compare Source

Features
mswjs/jest-fixed-jsdom (jest-fixed-jsdom)

v0.0.10

Compare Source

v0.0.10 (2025-08-30)

Bug Fixes
parallax/jsPDF (jspdf)

v3.0.3

Compare Source

This release fixes regressions with PNG encoding that were introduced in v3.0.2.

What's Changed

New Contributors

Full Changelog: parallax/jsPDF@v3.0.2...v3.0.3

mswjs/msw (msw)

v2.11.3

Compare Source

v2.11.3 (2025-09-20)

Bug Fixes

v2.11.2

Compare Source

v2.11.2 (2025-09-10)

Bug Fixes
facebook/react (react)

v18.3.1

Compare Source

  • Export act from react f1338f

v18.3.0

Compare Source

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React
  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #​25383
  • Warn for deprecated defaultProps for function components #​25699
  • Warn when spreading key #​25697
  • Warn when using act from test-utils d4ea75
React DOM
  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #​28874

v18.2.0

Compare Source

React DOM
React DOM Server
Server Components (Experimental)

v18.1.0

Compare Source

React DOM
React DOM Server
ESLint Plugin: React Hooks
Use Subscription
fi3ework/vite-plugin-checker (vite-plugin-checker)

v0.11.0

Compare Source

qmhc/vite-plugin-dts (vite-plugin-dts)

v4.5.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
colinhacks/zod (zod)

v4.1.11

Compare Source

v4.1.10

Compare Source

v4.1.9

Compare Source

v4.1.8

Compare Source

Commits:

v4.1.7

Compare Source

Commits:

v4.1.6

Compare Source


Configuration

📅 Schedule: Branch creation - "every 2 weeks on Sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner August 31, 2025 11:44
@renovate renovate bot force-pushed the renovate/npm branch 11 times, most recently from 036c2f1 to 7138ced Compare September 5, 2025 19:09
@renovate renovate bot force-pushed the renovate/npm branch 9 times, most recently from c83f220 to 02ac7de Compare September 13, 2025 23:47
@renovate renovate bot force-pushed the renovate/npm branch 6 times, most recently from faf56c9 to 98025d2 Compare September 18, 2025 11:27
@renovate renovate bot force-pushed the renovate/npm branch 6 times, most recently from b37de3a to 93b1247 Compare September 25, 2025 12:50
@renovate renovate bot force-pushed the renovate/npm branch 4 times, most recently from db5522c to bfe95b2 Compare September 29, 2025 12:53
Copy link
Contributor Author

renovate bot commented Sep 29, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants