@eeacms/volto-accordion-block
Advanced tools
Comparing version 10.4.3 to 10.4.4
@@ -7,2 +7,19 @@ ### Changelog | ||
### [10.4.4](https://github.com/eea/volto-accordion-block/compare/10.4.3...10.4.4) - 24 November 2023 | ||
#### :bug: Bug Fixes | ||
- fix(performance): use cloneDeepSchema for cloning the schema to avoid potential errors [David Ichim - [`725ed0d`](https://github.com/eea/volto-accordion-block/commit/725ed0deb1181620aec2b004c9e33a89ec0fc559)] | ||
#### :house: Internal changes | ||
- chore: [JENKINS] Refactor automated testing [valentinab25 - [`cfdf1cd`](https://github.com/eea/volto-accordion-block/commit/cfdf1cd3f34f4e92b14c0ef83c629066f7ae96e7)] | ||
#### :hammer_and_wrench: Others | ||
- test: [JENKINS] Use java17 for sonarqube scanner [valentinab25 - [`0766840`](https://github.com/eea/volto-accordion-block/commit/07668401fffb6d6cb12a71c828c9f1e2ccbf760b)] | ||
- test: [JENKINS] Run cypress in started frontend container [valentinab25 - [`d96919b`](https://github.com/eea/volto-accordion-block/commit/d96919b3f278832d6ba199786342a7eca0fddab1)] | ||
- test: [JENKINS] Add cpu limit on cypress docker [valentinab25 - [`4243468`](https://github.com/eea/volto-accordion-block/commit/4243468110ee1a7a28814386001fad3097b18f11)] | ||
- test: [JENKINS] Increase shm-size to cypress docker [valentinab25 - [`41fe792`](https://github.com/eea/volto-accordion-block/commit/41fe792ece0931c3e1561611f9def7df543014c9)] | ||
- test: [JENKINS] Improve cypress time [valentinab25 - [`c8dc782`](https://github.com/eea/volto-accordion-block/commit/c8dc78243f5529604031b5c8bb806c6b1c4bbdcc)] | ||
### [10.4.3](https://github.com/eea/volto-accordion-block/compare/10.4.2...10.4.3) - 17 October 2023 | ||
@@ -9,0 +26,0 @@ |
@@ -5,8 +5,8 @@ const { defineConfig } = require('cypress'); | ||
viewportWidth: 1280, | ||
defaultCommandTimeout: 5000, | ||
defaultCommandTimeout: 8888, | ||
chromeWebSecurity: false, | ||
reporter: 'junit', | ||
video: true, | ||
video: false, | ||
retries: { | ||
runMode: 1, | ||
runMode: 2, | ||
openMode: 0, | ||
@@ -13,0 +13,0 @@ }, |
{ | ||
"name": "@eeacms/volto-accordion-block", | ||
"version": "10.4.3", | ||
"version": "10.4.4", | ||
"description": "volto-accordion-block: Volto accordion block", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -13,4 +13,5 @@ import { | ||
} from '@plone/volto/helpers'; | ||
import { cloneDeepSchema } from '@plone/volto/helpers/Utils/Utils'; | ||
import helpSVG from '@plone/volto/icons/help.svg'; | ||
import { isEmpty, without, cloneDeep, pickBy } from 'lodash'; | ||
import { isEmpty, without, pickBy } from 'lodash'; | ||
import React, { useState } from 'react'; | ||
@@ -135,4 +136,8 @@ import { Button, Segment } from 'semantic-ui-react'; | ||
schema = schemaEnhancer | ||
? schemaEnhancer({ schema: cloneDeep(originalSchema), formData, intl }) | ||
: cloneDeep(originalSchema); | ||
? schemaEnhancer({ | ||
schema: cloneDeepSchema(originalSchema), | ||
formData, | ||
intl, | ||
}) | ||
: cloneDeepSchema(originalSchema); | ||
@@ -139,0 +144,0 @@ return schema; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
206386
2462