Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 13, 2026

Bumps the prod-npm-major-dependencies group with 6 updates in the / directory:

Package From To
@remoteoss/json-schema-form 0.12.1-beta.0 1.2.8
apache-arrow 17.0.0 21.1.0
debounce 2.2.0 3.0.0
react-intersection-observer 9.16.0 10.0.0
react-resizable-panels 3.0.6 4.4.0
react-syntax-highlighter 15.6.6 16.1.0

Updates @remoteoss/json-schema-form from 0.12.1-beta.0 to 1.2.8

Release notes

Sourced from @​remoteoss/json-schema-form's releases.

1.2.8

Bug Fixes
  • group-array: support default values (#245) (d3044693)
  • file: Support validation for file like objects (#246) (726a8b67)

1.2.7

Fixes
  • typescript: export FormResult and related types for better type inference (#241) (a9fd050)

1.2.6

Performance

  • chore(performance): optimise field updates with large dropdown options(#239) (272e053)

1.2.5

Bug Fixes
  • json-logic: apply custom validators when calculating the final schema (#238) (15da4569)

1.2.4

Bug fixes

  • fix(checkbox): Support optional boolean type (234)

1.2.1

Bug Fixes
  • schema: keep custom functions on nested fields (#232) (2dbdd82b)

1.2.0 (2025-09-03)

Bug Fixes
  • schema: validate schema properties when additionalProperties is set to false. (#230) (a1fdceb7)

1.1.2

New Features
  • json-logic: apply computed attrs on nested allOf/anyOf/oneOf properties (#227) (4375598e)
  • allow accumulator/current in reduce/map operations (#225) (82268578)
Bug Fixes
  • schema: keep custom components on nested presentation properties (#229) (99a8d432)

1.1.0 (2025-08-06)

New Features

... (truncated)

Changelog

Sourced from @​remoteoss/json-schema-form's changelog.

1.2.8 (2025-12-02)

Bug Fixes
  • group-array: support default values (#245) (d3044693)
  • file: Support validation for file like objects (#246) (726a8b67)

1.2.7 (2025-11-21)

Fixes
  • typescript: export FormResult and related types for better type inference (#241) (a9fd050)

1.2.6 (2025-10-30)

Chores
  • performance: optimise field updates with large dropdown options (#239) (272e0536)

1.2.5 (2025-10-21)

Bug Fixes
  • json-logic: apply custom validators when calculating the final schema (#238) (15da4569)

1.2.4 (2025-10-06)

Bug Fixes

1.2.3 (2025-09-25)

Bug Fixes
  • options: spread all option's presentation properties into option's root (#233) (b98cc160)

1.2.2 (2025-09-18)

Bug Fixes
  • array: Fix conditional visibility in group-arrays for booleans conditionals (#231) (91e5ccde)

1.2.1 (2025-09-18)

Bug Fixes
  • schema: keep custom functions on nested fields (#232) (2dbdd82b)

1.2.0 (2025-09-03)

... (truncated)

Commits

Updates apache-arrow from 17.0.0 to 21.1.0

Release notes

Sourced from apache-arrow's releases.

Apache Arrow JS 21.1.0

What's Changed

... (truncated)

Commits

Updates debounce from 2.2.0 to 3.0.0

Release notes

Sourced from debounce's releases.

v3.0.0

Breaking

  • Require Node.js 20 32bdae9
  • This package is now pure ESM. Please read this.
  • Removed named export. Only a default export now.

sindresorhus/debounce@v2.2.0...v3.0.0

Commits

Updates react-intersection-observer from 9.16.0 to 10.0.0

Release notes

Sourced from react-intersection-observer's releases.

v10.0.0

Based on the great work in #718 by @​jantimon - This release adds the new useOnInView hook.

✨ New

  • useOnInView hook — a no-re-render alternative to useInView that delivers (inView, entry) to your callback while returning a ref you can attach to any element. Designed for tracking, analytics, and other side effect heavy workloads where state updates are unnecessary.
  • IntersectionChangeEffect / IntersectionEffectOptions types — exported helper types that describe the new hook’s callback and options surface.
  • Storybook playground + documentation — new story, README section, and JSDoc example demonstrating how to use useOnInView.

⚠️ Breaking Changes

  • useInView, useOnInView, and <InView> now ignore the browser’s initial inView === false emission for onChange events, so handlers only fire once a real visibility change occurs, while still reporting all subsequent enter/leave transitions.

🧪 Testing

  • Added a dedicated Vitest suite for useOnInView, covering thresholds, triggerOnce, skip toggling, merged refs, and multiple observers on the same node.

What's Changed

New Contributors

Full Changelog: thebuilder/react-intersection-observer@v9.16.0...v10.0.0

Commits
  • 901ec5e chore: release v10.0.0
  • efe59c8 feat: implement the useOnInView hook (#738)
  • 66cda4f feat: Update dependencies (#737)
  • 1e8a3b7 Merge pull request #731 from thebuilder/copilot/fix-730
  • 23367cc Remove package-lock.json and add to .gitignore
  • 7e1c314 Remove bundlephobia badge from README
  • d8e9130 Initial analysis and planning for bundlephobia badge removal
  • ed58938 Initial plan
  • 09beee9 Merge pull request #728 from Akshay-Vs/main
  • 7a8215b docs: fix minor grammar issue in docs intro
  • Additional commits viewable in compare view

Updates react-resizable-panels from 3.0.6 to 4.4.0

Release notes

Sourced from react-resizable-panels's releases.

4.3.3

  • 595: Don't call event.preventDefault() on "pointerup" unless a handle was actively dragged

[!NOTE] This change also fixes a text selection bug that impacted Windows users (#574)

4.3.2

  • Moved flex-grow Panel style to an inline value instead of a CSS variable defined on the parent Group to improve rendering performance. (This significantly reduces the negative impact from forced-reflow)

4.3.1

  • 588: Replace "unset" styles with safer override values
  • 589: Use capture phase for "pointerdown" and "pointerup" events; this is necessary for compatibility with certain UI libraries like Blueprint JS
  • 590: Read Panel pixel size using offsetWidth/offsetHeight rather than inlineSize to avoid an edgecase bug with ResizeObserver

4.3.0

  • 583: Group component now sets default width, height, and overflow styles; (both can be overridden using the style property)
  • 582: Drag interactions only call event.preventDefault for the primary button
  • Refine TS types for useGroupRef and usePanelRef to include | null to increase compatibility with older React versions
  • Update TSDoc comments for Panel and Separator components

4.2.2

  • useDefaultLayout hook initializes storage param to localStorage if undefined.
  • Fix ambiguous type for Panel prop onResize that impacted certain TypeScript versions.

4.2.1

  • 2a6b03f: Add displayName property to Group, Panel, and Separator components for better debugging experience.
  • 577: Group handles newly registered Panels + Separators during mount so that user code can safely call imperative APIs earlier

4.2.0

  • 573: Add prevPanelSize param to onResize callback to help simplify collapse/expand detection.

4.1.0

  • 567: useDefaultLayout hook supports saving and restoring multiple Panel layouts
  • 568: Fix race in useGroupRef and usePanelRef hooks

4.0.16

  • 563: Panel expand() API should restore pre-collapse size
  • 564: Add guard for unexpected defaultView value seemingly returned by some dev environments

4.0.15

  • 556: Ignore defaultLayout when keys don't match Panel ids

4.0.14

  • 555: Allow resizable panels to be rendered into a different Window (e.g. popup or frame) by accessing globals through element.ownerDocument.defaultView

4.0.13

  • useDefaultLayout: Deprecated groupId param in favor of id to avoid confusion; (there is no actual requirement for the Group to have a matching id)

4.0.12

  • 552: useDefaultLayout now debounces calls to storage.setItem by 150ms

... (truncated)

Changelog

Sourced from react-resizable-panels's changelog.

4.4.0

  • 599: Add new onLayoutChanged prop to Group.

For layout changes caused by pointer events, this method is not called until the pointer has been released. This callback should be used if you're doing something like saving a layout as it is called less frequently than the previous approach.

The useDefaultLayout hook has also been updated to use this callback (though it will continue to support the old callback as well, with a @deprecation tag).

4.3.3

  • 595: Don't call event.preventDefault() on "pointerup" unless a handle was actively dragged

[!NOTE] This change also fixes a text selection bug that impacted Windows users (#574)

4.3.2

  • Moved flex-grow Panel style to an inline value instead of a CSS variable defined on the parent Group to improve rendering performance. (This significantly reduces the negative impact from forced-reflow)

4.3.1

  • 588: Replace "unset" styles with safer override values
  • 589: Use capture phase for "pointerdown" and "pointerup" events; this is necessary for compatibility with certain UI libraries like Blueprint JS
  • 590: Read Panel pixel size using offsetWidth/offsetHeight rather than inlineSize to avoid an edgecase bug with ResizeObserver

4.3.0

  • 583: Group component now sets default width, height, and overflow styles; (both can be overridden using the style property)
  • 582: Drag interactions only call event.preventDefault for the primary button
  • Refine TS types for useGroupRef and usePanelRef to include | null to increase compatibility with older React versions
  • Update TSDoc comments for Panel and Separator components

4.2.2

  • useDefaultLayout hook initializes storage param to localStorage if undefined.
  • Fix ambiguous type for Panel prop onResize that impacted certain TypeScript versions.

4.2.1

  • 2a6b03f: Add displayName property to Group, Panel, and Separator components for better debugging experience.
  • 577: Group handles newly registered Panels + Separators during mount so that user code can safely call imperative APIs earlier

4.2.0

  • 573: Add prevPanelSize param to onResize callback to help simplify collapse/expand detection.

4.1.1

  • 571: Update TS types to better reflect that Separator attributes role and tabIndex cannot be overridden using props.

... (truncated)

Commits

Updates react-syntax-highlighter from 15.6.6 to 16.1.0

Release notes

Sourced from react-syntax-highlighter's releases.

v16.1.0

What's Changed

New Contributors

Full Changelog: react-syntax-highlighter/react-syntax-highlighter@v16.0.0...v16.1.0

v16.0.0

New major version!

16.0.0 brings a major version update to the refractor dependency, which remedies some security issues but could result in a breaking change to your app's dependencies. Please update with care.

What's Changed

New Contributors

Full Changelog: react-syntax-highlighter/react-syntax-highlighter@v15.6.6...v16.0.0

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

…ctory with 6 updates

Bumps the prod-npm-major-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@remoteoss/json-schema-form](https://github.com/remoteoss/json-schema-form) | `0.12.1-beta.0` | `1.2.8` |
| [apache-arrow](https://github.com/apache/arrow-js) | `17.0.0` | `21.1.0` |
| [debounce](https://github.com/sindresorhus/debounce) | `2.2.0` | `3.0.0` |
| [react-intersection-observer](https://github.com/thebuilder/react-intersection-observer) | `9.16.0` | `10.0.0` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `3.0.6` | `4.4.0` |
| [react-syntax-highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter) | `15.6.6` | `16.1.0` |



Updates `@remoteoss/json-schema-form` from 0.12.1-beta.0 to 1.2.8
- [Release notes](https://github.com/remoteoss/json-schema-form/releases)
- [Changelog](https://github.com/remoteoss/json-schema-form/blob/main/CHANGELOG.md)
- [Commits](remoteoss/json-schema-form@v0.12.1-beta.0...1.2.8)

Updates `apache-arrow` from 17.0.0 to 21.1.0
- [Release notes](https://github.com/apache/arrow-js/releases)
- [Commits](https://github.com/apache/arrow-js/commits/v21.1.0)

Updates `debounce` from 2.2.0 to 3.0.0
- [Release notes](https://github.com/sindresorhus/debounce/releases)
- [Commits](sindresorhus/debounce@v2.2.0...v3.0.0)

Updates `react-intersection-observer` from 9.16.0 to 10.0.0
- [Release notes](https://github.com/thebuilder/react-intersection-observer/releases)
- [Commits](thebuilder/react-intersection-observer@v9.16.0...v10.0.0)

Updates `react-resizable-panels` from 3.0.6 to 4.4.0
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Changelog](https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md)
- [Commits](bvaughn/react-resizable-panels@3.0.6...4.4.0)

Updates `react-syntax-highlighter` from 15.6.6 to 16.1.0
- [Release notes](https://github.com/react-syntax-highlighter/react-syntax-highlighter/releases)
- [Changelog](https://github.com/react-syntax-highlighter/react-syntax-highlighter/blob/master/CHANGELOG.MD)
- [Commits](react-syntax-highlighter/react-syntax-highlighter@v15.6.6...v16.1.0)

---
updated-dependencies:
- dependency-name: "@remoteoss/json-schema-form"
  dependency-version: 1.2.8
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-npm-major-dependencies
- dependency-name: apache-arrow
  dependency-version: 21.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-npm-major-dependencies
- dependency-name: debounce
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-npm-major-dependencies
- dependency-name: react-intersection-observer
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-npm-major-dependencies
- dependency-name: react-resizable-panels
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-npm-major-dependencies
- dependency-name: react-syntax-highlighter
  dependency-version: 16.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-npm-major-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 Jan 13, 2026
@deepsource-io
Copy link
Contributor

deepsource-io bot commented Jan 13, 2026

Here's the code health analysis summary for commits 50437ae..6ab6b6c. View details on DeepSource ↗.

Analysis Summary

AnalyzerStatusSummaryLink
DeepSource Rust LogoRust✅ SuccessView Check ↗
DeepSource Shell LogoShell✅ SuccessView Check ↗
DeepSource JavaScript LogoJavaScript✅ SuccessView Check ↗

💡 If you’re a repository administrator, you can configure the quality gates from the settings.

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