Skip to content

Unpin formiojs and core peer dependencies #617

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 7.0.0-rc.1

### Changed

- FIO-9944: Fixes an issue where some form instances will not be destroyed
- FIO-9881: upgrated up to React19
- FIO-9678: fixed an issue where number value is not displayed is submission grid
- FIO-9671: fix Next pagination button
- do not recreate form instance if the form json is not changed deeply
- refactored Form component code to prevent the exhaustive-deps error for useEffect
- FIO-9589: fixed an issue where form does not work correctly after the react form component rerendering
- FIO-9584: removed pdf display option from builder
- FIO-9592: Fix default submit button
- FIO-9590: Add showing error when trying to save duplicate form names
- FIO-9413: Fix library license check

## 6.0.0

### Changed
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@formio/react",
"version": "6.0.0-dev.591.cd72e93",
"version": "7.0.0-rc.1",
"description": "React renderer for form.io forms.",
"main": "lib/index.js",
"scripts": {
Expand Down Expand Up @@ -56,8 +56,8 @@
"jest-environment-jsdom": "^29.7.0",
"jest-transform-css": "^6.0.1",
"jsdom": "^22.1.0",
"prettier": "3.2.4",
"monorepo-sync": "git+https://github.com/johnformio/monorepo-sync.git",
"prettier": "3.2.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"ts-jest": "^29.1.2",
Expand All @@ -70,8 +70,8 @@
"lib"
],
"peerDependencies": {
"@formio/core": "2.4.0",
"@formio/js": "5.1.1",
"@formio/core": "^2.4.0",
"@formio/js": "^5.1.1",
"react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.1.0 || ^19.0.0",
"react-dom": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.1.0 || ^19.0.0"
}
Expand Down
Loading
Loading