universal-json-schema
universal-json-schema copied to clipboard
fix(deps): update dependency slate to v0.117.0
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| slate | 0.47.9 -> 0.117.0 |
Release Notes
ianstormtaylor/slate (slate)
v0.117.0
Minor Changes
- #5885
c56a98fdThanks @felixfeng33! - - RemoveignoreNonSelectableoption from positions,before,after,nodes.- Fix move behavior when encounter non-selectable inline voids.
Patch Changes
- #5890
9862ae71Thanks @joblolin95! - Handle backspace correctly for grapheme clusters in Burmese, Hindi, Khmer, Malayalam, Oriya, Punjabi, Tamil, and Telugu.
v0.116.0
Minor Changes
- #5871
fb87646eThanks @12joan! - - Implement experimental chunking optimization (disabled by default, see https://docs.slatejs.org/walkthroughs/09-performance).- Add
useElementanduseElementIfhooks to get the current element. - BREAKING CHANGE: Decorations are no longer recomputed when a node's parent re-renders, only when the node itself re-renders or when the
decoratefunction is changed.- Ensure that
decorateis a pure function of the node passed into it. Depending on the node's parent may result in decorations not being recomputed when you expect them to be. - If this change impacts you, consider changing your
decoratefunction to work on the node's parent instead. - For example, if your
decoratefunction decorates acode-linebased on the parentcode-block's language, decorate thecode-blockinstead. - This is unlikely to result in any performance detriment, since in previous versions of
slate-react, the decorations of all siblings were recomputed when one sibling was modified.
- Ensure that
- Increase minimum
slate-domversion to0.116.0. - Deprecate the
useSlateWithVhook - PERF: Use subscribable pattern for
useSlate,useSelectedand decorations to reduce re-renders.
- Add
v0.115.1
Patch Changes
v0.114.0
Minor Changes
- #5850
22a3dda3Thanks @zbeyens! - - UpdateText.decorationsto return the positions in addition to the leaf nodes:{ leaf: Text, position?: { start: number, end: number, isFirst: boolean, isLast: boolean } }[].
v0.113.0
v0.112.0
Patch Changes
-
#5763
644ebdc8Thanks @TyMick! - Use extendedEditortype inuseSlateWithVreturn type -
#5741
90fbcdefThanks @AdrienPoupa! - Fix ReactEditor.toDOMRange crash in setDomSelection
v0.110.2
Patch Changes
-
#5737
cd21bb1fThanks @WindRunnerMax! - fix: sync built-in state on undo when editor is unfocused -
#5727
335c5418Thanks @hernansartorio! - Call unref on pathRefs created for move_node to remove memory leak
v0.103.0
Minor Changes
- #5621
d271c4beThanks @felixfeng33! - Add ashouldMergeNodesRemovePrevNodeeditor method to control whenTransforms.mergeNodesshould remove the previous node rather than carrying out a merge operation.
Patch Changes
- #5620
4470f370Thanks @JohnCosta27! - MakingnormalizeNodecapable of normalizing erronous nodes, making slate more resilient.
v0.102.0
Minor Changes
- #5543
3aaf3b51Thanks @mainhanu! - Transform.insertNodes & Transform.insertFragment performance optimize
v0.101.5
Patch Changes
- #5316
8ba3a9c0Thanks @GeneralChauhan! - Punctuation Mark "+" Support Added
v0.101.4
Patch Changes
v0.101.1
Patch Changes
- #5562
91400a8eThanks @YaoKaiLun! - Fix the 'select' parameter of the insertNodes function has been overridden
v0.100.0
Minor Changes
v0.94.1
Patch Changes
- #5415
01f0210bThanks @zbeyens! -Editor.insertFragment,Editor.insertNode,Editor.insertTextnow acceptoptions. For all insert methods, the default location is now the editor selection ifatis not defined, or the end of document ifeditor.selectionis not defined.
v0.94.0
Minor Changes
-
#5307
3243c7e3Thanks @zbeyens! - New Features:- All
EditorandTransformsmethods now calleditormethods. For example:Transforms.insertBreaknow callseditor.insertBreak. editor.setNodesnow callssetNodes, an exported function that implements the default editor behavior.- You can now override
editor.setNodeswith your own implementation. - You can use either
Editor.setNodesoreditor.setNodesin your code, and both will use your overridden behavior.
The
editorobject now has many more methods:export interface BaseEditor { // Core state. children: Descendant[] selection: Selection operations: Operation[] marks: EditorMarks | null // Overrideable core methods. apply: (operation: Operation) => void getDirtyPaths: (operation: Operation) => Path[] getFragment: () => Descendant[] isElementReadOnly: (element: Element) => boolean isSelectable: (element: Element) => boolean markableVoid: (element: Element) => boolean normalizeNode: ( entry: NodeEntry, options?: { operation?: Operation } ) => void onChange: (options?: { operation?: Operation }) => void shouldNormalize: ({ iteration, dirtyPaths, operation, }: { iteration: number initialDirtyPathsLength: number dirtyPaths: Path[] operation?: Operation }) => boolean // Overrideable core transforms. addMark: OmitFirstArg<typeof Editor.addMark> collapse: OmitFirstArg<typeof Transforms.collapse> delete: OmitFirstArg<typeof Transforms.delete> deleteBackward: (unit: TextUnit) => void deleteForward: (unit: TextUnit) => void deleteFragment: OmitFirstArg<typeof Editor.deleteFragment> deselect: OmitFirstArg<typeof Transforms.deselect> insertBreak: OmitFirstArg<typeof Editor.insertBreak> insertFragment: OmitFirstArg<typeof Transforms.insertFragment> insertNode: OmitFirstArg<typeof Editor.insertNode> insertNodes: OmitFirstArg<typeof Transforms.insertNodes> insertSoftBreak: OmitFirstArg<typeof Editor.insertSoftBreak> insertText: OmitFirstArg<typeof Transforms.insertText> liftNodes: OmitFirstArg<typeof Transforms.liftNodes> mergeNodes: OmitFirstArg<typeof Transforms.mergeNodes> move: OmitFirstArg<typeof Transforms.move> moveNodes: OmitFirstArg<typeof Transforms.moveNodes> normalize: OmitFirstArg<typeof Editor.normalize> removeMark: OmitFirstArg<typeof Editor.removeMark> removeNodes: OmitFirstArg<typeof Transforms.removeNodes> select: OmitFirstArg<typeof Transforms.select> setNodes: <T extends Node>( props: Partial<T>, options?: { at?: Location match?: NodeMatch<T> mode?: MaximizeMode hanging?: boolean split?: boolean voids?: boolean compare?: PropsCompare merge?: PropsMerge } ) => void setNormalizing: OmitFirstArg<typeof Editor.setNormalizing> setPoint: OmitFirstArg<typeof Transforms.setPoint> setSelection: OmitFirstArg<typeof Transforms.setSelection> splitNodes: OmitFirstArg<typeof Transforms.splitNodes> unsetNodes: OmitFirstArg<typeof Transforms.unsetNodes> unwrapNodes: OmitFirstArg<typeof Transforms.unwrapNodes> withoutNormalizing: OmitFirstArg<typeof Editor.withoutNormalizing> wrapNodes: OmitFirstArg<typeof Transforms.wrapNodes> // Overrideable core queries. above: <T extends Ancestor>( options?: EditorAboveOptions<T> ) => NodeEntry<T> | undefined after: OmitFirstArg<typeof Editor.after> before: OmitFirstArg<typeof Editor.before> edges: OmitFirstArg<typeof Editor.edges> elementReadOnly: OmitFirstArg<typeof Editor.elementReadOnly> end: OmitFirstArg<typeof Editor.end> first: OmitFirstArg<typeof Editor.first> fragment: OmitFirstArg<typeof Editor.fragment> getMarks: OmitFirstArg<typeof Editor.marks> hasBlocks: OmitFirstArg<typeof Editor.hasBlocks> hasInlines: OmitFirstArg<typeof Editor.hasInlines> hasPath: OmitFirstArg<typeof Editor.hasPath> hasTexts: OmitFirstArg<typeof Editor.hasTexts> isBlock: OmitFirstArg<typeof Editor.isBlock> isEdge: OmitFirstArg<typeof Editor.isEdge> isEmpty: OmitFirstArg<typeof Editor.isEmpty> isEnd: OmitFirstArg<typeof Editor.isEnd> isInline: OmitFirstArg<typeof Editor.isInline> isNormalizing: OmitFirstArg<typeof Editor.isNormalizing> isStart: OmitFirstArg<typeof Editor.isStart> isVoid: OmitFirstArg<typeof Editor.isVoid> last: OmitFirstArg<typeof Editor.last> leaf: OmitFirstArg<typeof Editor.leaf> levels: <T extends Node>( options?: EditorLevelsOptions<T> ) => Generator<NodeEntry<T>, void, undefined> next: <T extends Descendant>( options?: EditorNextOptions<T> ) => NodeEntry<T> | undefined node: OmitFirstArg<typeof Editor.node> nodes: <T extends Node>( options?: EditorNodesOptions<T> ) => Generator<NodeEntry<T>, void, undefined> parent: OmitFirstArg<typeof Editor.parent> path: OmitFirstArg<typeof Editor.path> pathRef: OmitFirstArg<typeof Editor.pathRef> pathRefs: OmitFirstArg<typeof Editor.pathRefs> point: OmitFirstArg<typeof Editor.point> pointRef: OmitFirstArg<typeof Editor.pointRef> pointRefs: OmitFirstArg<typeof Editor.pointRefs> positions: OmitFirstArg<typeof Editor.positions> previous: <T extends Node>( options?: EditorPreviousOptions<T> ) => NodeEntry<T> | undefined range: OmitFirstArg<typeof Editor.range> rangeRef: OmitFirstArg<typeof Editor.rangeRef> rangeRefs: OmitFirstArg<typeof Editor.rangeRefs> start: OmitFirstArg<typeof Editor.start> string: OmitFirstArg<typeof Editor.string> unhangRange: OmitFirstArg<typeof Editor.unhangRange> void: OmitFirstArg<typeof Editor.void> }Note:
- None of these method implementations have changed.
getMarksis an exception, as there is alreadyeditor.marksthat stores the current marks.Transforms.insertTexthas not been moved toeditoryet: there is already aneditor.insertTextmethod with extended behavior. This may change in a future release, but this release is trying to avoid any breaking changes.editor.insertTexthas a new argument (third):options?: TextInsertTextOptionsto matchTransforms.insertText.
Bug Fixes:
- Moving JSDoc's to the interface type to allow IDEs access to the interface methods.
- All
Patch Changes
- #5396
bc945eb1Thanks @Moerphy! - Correct core normalization that could cause wrong nodes to be removed
v0.93.0
Minor Changes
-
#5374
b52e08b0Thanks @12joan! - - AddisSelectabletoeditor(default true). A non-selectable element is skipped over when navigating using arrow keys.- Add
ignoreNonSelectabletoEditor.nodes,Editor.positions,Editor.afterandEditor.before(default false) Transforms.moveignores non-selectable elements
- Add
-
#5374
b52e08b0Thanks @12joan! - - AddisElementReadOnlytoeditor. A read-only element behaves much like a void with regard to selection and deletion, but renders itschildrenthe same as any other non-void node.
v0.91.4
Patch Changes
- #5311
0ac72a62Thanks @zbeyens! - Fix #5295 regression.editor.shouldNormalizenew option:initialDirtyPathsLength: number
v0.91.3
Patch Changes
-
#5295
84f811a7Thanks @zbeyens! - Neweditormethod that can be overridden to control when the normalization should stop. Default behavior (unchanged) is to throw an error when it iterates over 42 times the dirty paths length.shouldNormalize: ({ iteration, dirtyPaths, operation, }: { iteration: number dirtyPaths: Path[] operation?: Operation }) => booleaneditor.onChangesignature change:(options?: { operation?: Operation }) => voidwhereoperationis triggering the function.editor.normalizeNodesignature change:(entry: NodeEntry, options?: { operation?: Operation }) => voidwhereoperationis triggering the function.EditorNormalizeOptionsnew optionoperation?: Operationwhereoperationis triggering the function.
v0.91.1
Patch Changes
- #5251
6fa4b954Thanks @YaoKaiLun! - Fix the cursor jump to an unexpected position after deleting in android
v0.90.0
Patch Changes
- #5278
9c4097a2Thanks @kylemclean! - Revert to using inline styles for default editor styles
v0.88.1
Patch Changes
- #5235
36203b3fThanks @ppiotrowicz! - Fixed Editor.above method that always returned undefined with Point location
v0.87.0
Minor Changes
- #5206
96b7fcdbThanks @kylemclean! - Use stylesheet for default styles on Editable components
v0.86.0
Patch Changes
-
#5189
fbc9838fThanks @SmilinBrian! - Add hanging option to unsetNodes so it matches setNodes -
#5193
6909a8f7Thanks @SmilinBrian! - Stops Editor.unhangRange() from adjusting the range in some cases when it was not actually hanging -
#5186
e416d00bThanks @SmilinBrian! - Report marks applied to a markableVoid if selection is collapsed
v0.85.0
Patch Changes
-
#5135
346f6572Thanks @SmilinBrian! - Allow void elements to receive marks via markableVoid() -
#5168
3c49ff28Thanks @i-artist! - Fixed above method that failed to get parentEntry when selection was range
v0.84.0
Minor Changes
- #5137
a2184d86Thanks @mainhanu! - transform.delete and transform.insertFragment performance optimize
v0.82.1
Patch Changes
- #5069
46d113feThanks @krenzke! - Expose getDirtyPaths method on Editor object to allow for customization
v0.82.0
Patch Changes
- #4988
fbab6331Thanks @BitPhinix! - Android input handling rewrite, replace composition insert prefixes with decoration based mark placeholders
v0.81.3
v0.81.1
Patch Changes
- #5015
9ae37287Thanks @tithanayut! - Fix deleteBackward behavior for Thai script where deleting N character(s) backward should delete N code point(s) instead of an entire grapheme cluster
v0.81.0
Minor Changes
- #4999
fe13a8f9Thanks @alexandercampbell! - Add new Slate.Scrubber interface to allow scrubbing end user data from exception text. The default behavior remains unchanged.
v0.80.0
Minor Changes
Patch Changes
- #5008
e9ea2815Thanks @steve-codaio! - Revert to previous position behavior around inline voids
v0.78.0
Minor Changes
- #4974
3b7a1bf7Thanks @dylans! - Added types for options and common string literals, thanks @JoshuaKGoldberg
v0.77.2
Patch Changes
- #4952
9ce0a08cThanks @steve-codaio! - Fix positions iteration when starting inside an inline void node
v0.77.0
Patch Changes
v0.76.1
Patch Changes
- #4914
aff67312Thanks @sennpang! - Fixed Triple click selection and copy&paste in read-only mode
v0.76.0
Minor Changes
-
#4873
20acca4bThanks @bryanph! - A different behavior for inserting a soft break with shift+enter is quite common in rich text editors. Right now you have to do this in onKeyDown which is not so nice. This adds a separate insertSoftBreak method on the editor instance that gets called when a soft break is inserted. This maintains the current default behavior for backwards compatibility (it just splits the block). But at least you can easily overwrite it now.If you rely on overwriting editor.insertBreak for extra behavior for soft breaks this might be a breaking change for you and you should overwrite editor.insertSoftBreak instead.
Patch Changes
- #4912
43ca2b56Thanks @zhugexinxin! - feat: add merge to setNodes and test
v0.75.0
Patch Changes
- #4889
970523f(970523f) Thanks @zhugexinxin! - feat: add custom compare node props
v0.73.1
Patch Changes
- #4858
33be22f3Thanks @TheSpyder! - Reverted #4804 as it triggered an exception when inserting text with multi-block selection
v0.73.0
Minor Changes
- #4848
482b090eThanks @rockettomatooo! - fix point transform for insert_text operations to account for affinity
v0.72.8
Patch Changes
v0.72.3
Patch Changes
- #4703
205d4b7eThanks @e1himself! - Add tests for Editor.unhangRange() behavior
v0.72.0
Patch Changes
-
#4708
2fc7ad92Thanks @bryanph! - AllowOperationtype to be extendedFor example:
import type { BaseOperation } from 'slate' type CustomOperation = | BaseOperation | YourCustomOperation | AnotherCustomOperation declare module 'slate' { interface CustomTypes { Operation: CustomOperation; } }
v0.71.0
Minor Changes
- #4672
2523dc4fThanks @VictorBaron! - Fix - deep-equals was always returning true when array props were equals.
Patch Changes
- #4671
e3afda94Thanks @unageek! - Fixed the issue where the cursor jumps more than one character unexpectedly
v0.70.0
Minor Changes
- #4565
5818aca5Thanks @oliger! - Fix issue with unicode 1.1 smileys followed by a variation selector.
Patch Changes
- #4638
e0f41514Thanks @e1himself! - Improve typescript type ofpropsargument ofTransforms.setNodes()
v0.66.5
Patch Changes
- #4552
37d60c58Thanks @clauderic! - Only apply FirefoxtoSlatePoint()offset fix when the cloned contents end in\n\ninstead of just\n.
v0.66.2
Patch Changes
- #4523
0da12c17Thanks @steve-codaio! - Fix setNodes when called with 'split' and a collapsed range
v0.66.1
Patch Changes
-
#4518
6ec399d4Thanks @TheSpyder! - Fixed flaw in deep-equal algorithm when dealing with nested mark objects -
#4511
2af6868dThanks @dylans! - update release process for yarn 3 -
#4516
59ca7a8fThanks @dylans! - another attempt to get the automated changeset workflow working again
v0.66.0
Minor Changes
-
#4489
1b560de3Thanks @nemanja-tosic! - Fix paste to empty node losing structure of first block -
#4326
00259003Thanks @oliger! - Add support for flag, keycap and tag unicode sequences. -
#4276
6f47cbbeThanks @TheSpyder! - Switched fromfast-deep-equalto a custom deep equality check. This restores the ability for text nodes with mark values set toundefinedto merge with text nodes missing those keys. -
#4431
55ff8f00Thanks @TheSpyder! - Fixed regression in #4208 where normalization on empty block nodes could not be overridden -
#3820
c6203a2dThanks @githoniel! - unwrapNode call liftNode in reverse order to keep nested block -
#4428
b47d3fd1Thanks @TheSpyder! - Don't setnullinset_node'snewPropertiesobject when usingTransforms.unsetNodes()
Patch Changes
-
#4132
48b71294Thanks @ulion! - Make onDomSelectionChange trigger after onClick. -
#4500
50bb3d7eThanks @tubbo! - Upgradeis-plain-objectto v5.0.0 -
#4482
dd752df1Thanks @Jokcy! - Fix cursor not correct issue after insert multiple nodes withTransform.insertNodes -
#4296
479a7591Thanks @kellyjosephprice! - Fix mergeNodes moving node into parent sibling -
#4458
95c759a1Thanks @taj-codaio! - Normalization now removes empty text nodes after nonempty nodes with differing styles, but before inline nodes. -
#4505
269e59c9Thanks @dylans! - Immer 9 security update, refactor to support immer 9 API changes
v0.65.3
Patch Changes
-
#4253
0214b630Thanks @TheSpyder! - FixTransforms.wrapNodescrashing when thematchfunction matched only the editor -
#4049
6c844227Thanks @ulion! - Fix ios chrome ime double input issue. -
#4421
237edc6eThanks @jaked! - fix decorate bug (#4277) without adding extra layers of render tree -
#4349
236754c4Thanks @imdbsd! - Add isElementType utility to Element interface
v0.63.0
Patch Changes
-
#4238
c14e1fbcThanks @clauderic! - Fix duplicated content and other bugs related to drag and drop handling -
#4237
623960a7Thanks @dylans! - Fixed text insertion logic to prevent crashing in newer Firefox versions.
v0.62.1
Patch Changes
-
#4193
fd70dc0bThanks @beorn! - Fixed insert and remove text operations to no-op without any text. -
#4078
2dad21d1Thanks @TheSpyder! - Fixed inversion ofset_nodeoperations that delete properties on nodes. -
#4168
95f402c5Thanks @ridhambhat! - Fixed a bug in splitting and applying overlapping marks to text nodes.
v0.61.3
v0.61.0
v0.60.17
v0.60.11
v0.60.9
v0.60.8
v0.60.4
v0.60.3
v0.60.2
v0.60.1
v0.60.0
v0.59.0
v0.58.4
v0.58.3
v0.58.1
v0.58.0
v0.57.3
v0.57.2
v0.57.1
v0.57.0
v0.56.1
v0.56.0
v0.55.2
v0.55.1
v0.55.0
v0.54.6
v0.54.5
v0.54.4
v0.54.3
v0.54.2
v0.54.1
v0.54.0
v0.53.0
v0.52.6
v0.52.5
v0.52.4
v0.52.3
v0.52.2
v0.52.1
v0.52.0
v0.51.0
v0.50.8
v0.50.7
v0.50.6
v0.50.5
v0.50.4
v0.50.3
v0.50.2
v0.50.1
v0.50.0
[Compare Source](https://redirect.github.com/ianstormt
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.
🔍 Inspect: https://vercel.com/github56/react-jsonschema-form-material-ui/Hs2ysdSCyLVctXMYWMxQcYe1KVur
✅ Preview: https://react-jsonschema-form-material-ui-git-renovate-9a1b49-github56.vercel.app
Deployment failed with the following error:
Resource is limited - try again after in 4 hours (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again after in 8 hours (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again after in 6 hours (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again after in 12 hours (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again after in 10 hours (more than 100, code: "api-deployments-free-per-day").
:warning: Artifact update problem
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
:recycle: Renovate will retry this branch, including artifacts, only when one of the following happens:
- any of the package files in this branch needs updating, or
- the branch becomes conflicted, or
- you check the rebase/retry checkbox if found above, or
- you rename this PR's title to start with "rebase!" to trigger it manually
The artifact failure details are included below:
File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! Found: [email protected]
npm ERR! node_modules/slate
npm ERR! slate@"0.62.1" from the root project
npm ERR! peer slate@">=0.42.2" from [email protected]
npm ERR! node_modules/slate-collapse-on-escape
npm ERR! slate-collapse-on-escape@"0.8.1" from the root project
npm ERR! 3 more (slate-react, slate-react-placeholder, slate-soft-break)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer slate@">=0.32.0 <0.50.0" from [email protected]
npm ERR! node_modules/slate-base64-serializer
npm ERR! slate-base64-serializer@"^0.2.111" from [email protected]
npm ERR! node_modules/slate-react
npm ERR! slate-react@"0.22.9" from the root project
npm ERR! 3 more (slate-collapse-on-escape, slate-react-placeholder, slate-soft-break)
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See /tmp/renovate-cache/others/npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! /tmp/renovate-cache/others/npm/_logs/2021-05-06T00_15_36_915Z-debug.log
⚠️ Artifact update problem
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻️ Renovate will retry this branch, including artifacts, only when one of the following happens:
- any of the package files in this branch needs updating, or
- the branch becomes conflicted, or
- you check the rebase/retry checkbox if found above, or
- you rename this PR's title to start with "rebase!" to trigger it manually
The artifact failure details are included below:
File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! Found: [email protected]
npm ERR! node_modules/slate
npm ERR! slate@"0.63.0" from the root project
npm ERR! peer slate@">=0.42.2" from [email protected]
npm ERR! node_modules/slate-collapse-on-escape
npm ERR! slate-collapse-on-escape@"0.8.1" from the root project
npm ERR! 3 more (slate-react, slate-react-placeholder, slate-soft-break)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer slate@">=0.32.0 <0.50.0" from [email protected]
npm ERR! node_modules/slate-base64-serializer
npm ERR! slate-base64-serializer@"^0.2.111" from [email protected]
npm ERR! node_modules/slate-react
npm ERR! slate-react@"0.22.9" from the root project
npm ERR! 3 more (slate-collapse-on-escape, slate-react-placeholder, slate-soft-break)
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See /tmp/renovate-cache/others/npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! /tmp/renovate-cache/others/npm/_logs/2021-05-29T09_39_57_781Z-debug.log
Deployment failed with the following error:
Resource is limited - try again after in 2 hours (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again after in 2 minutes (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again after in 9 seconds (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again after in 38 minutes (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again after in 1 hour (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again after in 17 hours (more than 100, code: "api-deployments-free-per-day").
⚠ Artifact update problem
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
- any of the package files in this branch needs updating, or
- the branch becomes conflicted, or
- you click the rebase/retry checkbox if found above, or
- you rename this PR's title to start with "rebase!" to trigger it manually
The artifact failure details are included below:
File name: package-lock.json
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: [email protected]
npm WARN Found: [email protected]
npm WARN node_modules/slate
npm WARN slate@"0.70.0" from the root project
npm WARN 4 more (slate-collapse-on-escape, slate-react, ...)
npm WARN
npm WARN Could not resolve dependency:
npm WARN peer slate@">=0.32.0 <0.50.0" from [email protected]
npm WARN node_modules/slate-base64-serializer
npm WARN slate-base64-serializer@"^0.2.111" from [email protected]
npm WARN node_modules/slate-react
npm WARN
npm WARN Conflicting peer dependency: [email protected]
npm WARN node_modules/slate
npm WARN peer slate@">=0.32.0 <0.50.0" from [email protected]
npm WARN node_modules/slate-base64-serializer
npm WARN slate-base64-serializer@"^0.2.111" from [email protected]
npm WARN node_modules/slate-react
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/slate
npm ERR! slate@"0.70.0" from the root project
npm ERR! peer slate@">=0.42.2" from [email protected]
npm ERR! node_modules/slate-collapse-on-escape
npm ERR! slate-collapse-on-escape@"0.8.1" from the root project
npm ERR! 3 more (slate-react, slate-react-placeholder, slate-soft-break)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer slate@">=0.36.0 <0.50.0" from [email protected]
npm ERR! node_modules/slate-html-serializer
npm ERR! slate-html-serializer@"0.8.13" from the root project
npm ERR!
npm ERR! Conflicting peer dependency: [email protected]
npm ERR! node_modules/slate
npm ERR! peer slate@">=0.36.0 <0.50.0" from [email protected]
npm ERR! node_modules/slate-html-serializer
npm ERR! slate-html-serializer@"0.8.13" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See /tmp/renovate-cache/others/npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! /tmp/renovate-cache/others/npm/_logs/2021-11-21T20_05_41_568Z-debug.log
Codecov Report
Merging #321 (ee2952a) into main (ea88d30) will not change coverage. The diff coverage is
n/a.
@@ Coverage Diff @@
## main #321 +/- ##
=======================================
Coverage 85.05% 85.05%
=======================================
Files 66 66
Lines 1619 1619
Branches 570 570
=======================================
Hits 1377 1377
Misses 237 237
Partials 5 5
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact),ø = not affected,? = missing dataPowered by Codecov. Last update ea88d30...ee2952a. Read the comment docs.
Deployment failed with the following error:
Resource is limited - try again after in 18 hours (more than 100, code: "api-deployments-free-per-day").
The latest updates on your projects. Learn more about Vercel for Git ↗︎
| Name | Status | Preview | Comments | Updated (UTC) |
|---|---|---|---|---|
| react-jsonschema-form-material-ui | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Apr 21, 2024 11:01pm |
Deployment failed with the following error:
Resource is limited - try again in 1 hour (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again in 7 hours (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again in 9 hours (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again in 8 hours (more than 100, code: "api-deployments-free-per-day").