Skip to content

Commit 14951fc

Browse files
fix changelog and remove unnecessary comment
1 parent c518523 commit 14951fc

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,13 @@ should change the heading of the (upcoming) version to include a major version b
2727

2828
- Fixed issue with formData not updating when dependencies change, fixing [#4325](https://github.com/rjsf-team/react-jsonschema-form/issues/4325)
2929
- Fixed issue with assigning default values to formData with deeply nested required properties, fixing [#4399](https://github.com/rjsf-team/react-jsonschema-form/issues/4399)
30-
<<<<<<< HEAD
3130
- Fixed issue error message will not be cleared after the controlled Form formData is changed. Fixes [#4426](https://github.com/rjsf-team/react-jsonschema-form/issues/4426)
3231
- Fix for AJV [$data](https://ajv.js.org/guide/combining-schemas.html#data-reference) reference in const property in schema treated as default/const value. The issue is mentioned in [#4361](https://github.com/rjsf-team/react-jsonschema-form/issues/4361).
32+
- Switched uses of `lodash.isEqual()` to `@rjsf/utils.deepEquals`.
3333

3434
## @rjsf/validator-ajv8
3535

3636
- Partially fixed issue where dependency errors do not show `title` or `ui:title`. This fix only applicable if we use an ajv-i18n localizer. Ref. [#4402](https://github.com/rjsf-team/react-jsonschema-form/issues/4402).
37-
=======
38-
- Switched uses of `lodash.isEqual()` to `@rjsf/utils.deepEquals` at precompiledValidator.
39-
>>>>>>> cc8d4aae (switch lodash.isEqual to @rjsf/utils.deepEquals at utils package)
40-
41-
## @rjsf/validator-ajv8
42-
4337
- Switched uses of `lodash.isEqual()` to `@rjsf/utils.deepEquals` at precompiledValidator.
4438

4539
# 5.23.2

packages/utils/src/enumOptionsDeselectValue.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// import isEqual from 'lodash/isEqual';
2-
31
import { EnumOptionsType, RJSFSchema, StrictRJSFSchema } from './types';
42
import enumOptionsValueForIndex from './enumOptionsValueForIndex';
53
import deepEquals from './deepEquals';

packages/utils/src/schema/getDefaultFormState.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import isMultiSelect from './isMultiSelect';
3434
import isSelect from './isSelect';
3535
import retrieveSchema, { resolveDependencies } from './retrieveSchema';
3636
import isConstant from '../isConstant';
37-
import { JSONSchema7Object } from 'json-schema';
3837
import constIsAjvDataReference from '../constIsAjvDataReference';
3938
import optionsList from '../optionsList';
4039
import deepEquals from '../deepEquals';

0 commit comments

Comments
 (0)