Skip to content

Update dependency slate-react to v0.124.0#159

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/slate-react-0.x
Open

Update dependency slate-react to v0.124.0#159
renovate[bot] wants to merge 1 commit intomainfrom
renovate/slate-react-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Nov 11, 2019

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
slate-react 0.22.90.124.0 age confidence

Release Notes

ianstormtaylor/slate (slate-react)

v0.124.0

Compare Source

Minor Changes
Patch Changes

v0.123.0

Compare Source

v0.120.0

Compare Source

Patch Changes

v0.119.0

Compare Source

Minor Changes
  • #​5963 33e74a82 Thanks @​iperzic! - Fixes an editor crash that happens when editor is placed inside Shadow DOM and the user is typing on Android

v0.118.2

Compare Source

Patch Changes

v0.117.4

Compare Source

Patch Changes

v0.117.3

Compare Source

Patch Changes

v0.117.2

Compare Source

Patch Changes
  • #​5899 94fb04a4 Thanks @​12joan! - Fix: editor.selection is sometimes replaced with a new object even if the selection did not change

v0.117.1

Compare Source

Patch Changes

v0.116.0

Compare Source

Patch Changes
  • #​5871 fb87646e Thanks @​12joan! - - PERF: Use pure JS instead of Immer for applying operations and transforming points and ranges. Immer is now used only for producing fragments.

v0.115.0

Compare Source

v0.114.2

Compare Source

Patch Changes

v0.114.0

Compare Source

Minor Changes
  • #​5850 22a3dda3 Thanks @​zbeyens! - - Update Text.decorations to return the positions in addition to the leaf nodes: { leaf: Text, position?: { start: number, end: number, isFirst: boolean, isLast: boolean } }[].

v0.113.0

Compare Source

v0.112.1

Compare Source

Patch Changes

v0.112.0

Compare Source

Minor Changes
  • #​5776 5a1c728c Thanks @​yf-yang! - Add merge optional function to decorations and change related type signatures to DecoratedRange. Now developers can specify how two decoration object with the same key but different value are merged together if they overlap"
Patch Changes

v0.111.0

Compare Source

Minor Changes

v0.110.3

Compare Source

Patch Changes

v0.110.2

Compare Source

Patch Changes

v0.110.1

Compare Source

Patch Changes

v0.110.0

Compare Source

Minor Changes

v0.109.0

Compare Source

Minor Changes

v0.108.0

Compare Source

Minor Changes

v0.107.1

Compare Source

Patch Changes

v0.107.0

Compare Source

Minor Changes
  • #​5676 ec9e5f0a Thanks @​ivan-sysoi! - Changed behaviour of ReactEditor.findDocumentOrShadowRoot. It returns shadow root or document without checking for the existence of the getSelection method.

v0.106.0

Compare Source

Minor Changes
Patch Changes
  • #​5664 0016f984 Thanks @​12joan! - Fix: state.isDraggingInternally is stale if a drop handler outside the editor causes the dragged DOM element to unmount

v0.105.0

Compare Source

Minor Changes

v0.104.0

Compare Source

Minor Changes

v0.102.0

Compare Source

Minor Changes

v0.101.6

Compare Source

Patch Changes

v0.101.5

Compare Source

Patch Changes

v0.101.3

Compare Source

Patch Changes

v0.101.2

Compare Source

Patch Changes

v0.101.1

Compare Source

Patch Changes

v0.101.0

Compare Source

Minor Changes
  • #​5527 fc081816 Thanks @​skogsmaskin! - Fixes a bug with ReactEditor.focus where it would throw an error if the editor was in the middle of applying pending operations.
    With this change, setting focus will be retried until the editor no longer has any pending operations.
    Calling ReactEditor.focus on a editor without a current selection, will now make a selection in the top of the document.
Patch Changes

v0.100.1

Compare Source

Patch Changes

v0.100.0

Compare Source

Minor Changes

v0.99.0

Compare Source

Minor Changes
Patch Changes

v0.98.4

Compare Source

Patch Changes

v0.98.3

Compare Source

Patch Changes

v0.98.2

Compare Source

Patch Changes

v0.98.1

Compare Source

Patch Changes

v0.98.0

Compare Source

Minor Changes

v0.97.2

Compare Source

Patch Changes

v0.97.1

Compare Source

Patch Changes

v0.97.0

Compare Source

Minor Changes
Patch Changes

v0.96.0

Compare Source

Minor Changes
Patch Changes

v0.95.0

Compare Source

Minor Changes

v0.94.2

Compare Source

Patch Changes

v0.94.0

Compare Source

Minor Changes
  • #​5307 3243c7e3 Thanks @​zbeyens! - New Features:

    • All Editor and Transforms methods now call editor methods. For example: Transforms.insertBreak now calls editor.insertBreak.
    • editor.setNodes now calls setNodes, an exported function that implements the default editor behavior.
    • You can now override editor.setNodes with your own implementation.
    • You can use either Editor.setNodes or editor.setNodes in your code, and both will use your overridden behavior.

    The editor object 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.
    • getMarks is an exception, as there is already editor.marks that stores the current marks.
    • Transforms.insertText has not been moved to editor yet: there is already an editor.insertText method with extended behavior. This may change in a future release, but this release is trying to avoid any breaking changes.
    • editor.insertText has a new argument (third): options?: TextInsertTextOptions to match Transforms.insertText.

    Bug Fixes:

    • Moving JSDoc's to the interface type to allow IDEs access to the interface methods.
Patch Changes

v0.93.0

Compare Source

Minor Changes
  • #​5374 b52e08b0 Thanks @​12joan! - - Add isSelectable to editor (default true). A non-selectable element is skipped over when navigating using arrow keys.

    • Add ignoreNonSelectable to Editor.nodes, Editor.positions, Editor.after and Editor.before (default false)
    • Transforms.move ignores non-selectable elements
  • #​5374 b52e08b0 Thanks @​12joan! - - Add isElementReadOnly to editor. A read-only element behaves much like a void with regard to selection and deletion, but renders its children the same as any other non-void node.

v0.92.0

Compare Source

Minor Changes
  • #​5363 d42cd005 Thanks @​aciccarello! - update dependencies on react hooks to be more senstive to changes

    The code should now meet eslint react hook standards

    This could result in more renders

    closes #​3886

Patch Changes

v0.91.11

Compare Source

Patch Changes

v0.91.10

Compare Source

Patch Changes
  • #​5346 a5e833f6 Thanks @​edhager! - Fix a problem with Editable not calling the decorate function passed as a prop when it should.

  • #​5343 f7f02a8b Thanks @​12joan! - Fix error when triple-clicking a word preceding a contenteditable="false" DOM node in Chrome

v0.91.9

Compare Source

Patch Changes

v0.91.8

Compare Source

Patch Changes
  • #​5325 af3f828b Thanks @​clauderic! - Fix edge-cases in the Android input manager when text leaf nodes are deleted, such as when deleting text leaf nodes adjacent to inline void nodes.

  • #​5327 4205e0f0 Thanks @​YasinChan! - Fix the issue of composition API and beforeinput event triggering between Chrome versions 60-75 on the Android platform.

v0.91.7

Compare Source

Patch Changes

v0.91.6

Compare Source

Patch Changes
  • #​5315 5784a38b Thanks @​clauderic! - The RestoreDOM manager that is used Android no longer restores the DOM to its previous state for text mutations. This allows the editor state to be reconciled during a composition without interrupting the composition, as programatically updating the textContent of a text node ends the current composition.

  • #​5315 5784a38b Thanks @​clauderic! - Fixed consumer defined onInput event handler not being invoked when passed to the <Editable> component.

v0.91.5

Compare Source

Patch Changes

v0.91.4

Compare Source

Patch Changes

v0.91.3

Compare Source

Patch Changes
  • #​5295 84f811a7 Thanks @​zbeyens! - New editor method 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
    }) => boolean
    • editor.onChange signature change: (options?: { operation?: Operation }) => void where operation is triggering the function.
    • editor.normalizeNode signature change: (entry: NodeEntry, options?: { operation?: Operation }) => void where operation is triggering the function.
    • EditorNormalizeOptions new option operation?: Operation where operation is triggering the function.

v0.91.2

Compare Source

Patch Changes

v0.91.1

Compare Source

Patch Changes

v0.91.0

Compare Source

Minor Changes
  • #​5267 463edbd2 Thanks @​ilya2204! - Allow to change clipboard fragment format name

  • #​5271 9635b992 Thanks @​dsvgit! - If TextComponent decorations keep the same offsets and only paths are changed, prevent re-rendering because only decoration offsets matter when leaves are calculated.

v0.90.0

Compare Source

Patch Changes

v0.89.0

Compare Source

Minor Changes
Patch Changes

v0.88.2

Compare Source

Patch Changes

v0.88.0

Compare Source

Minor Changes
  • #​5226 0141f683 Thanks @​laufeyrut! - Check if getBoundingClientRect exist before trying to call bind on it. Makes unit testing experience agains Editable nicer

v0.87.1

Compare Source

Patch Changes

v0.87.0

Compare Source

Minor Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • 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.

@vercel
Copy link
Copy Markdown

vercel Bot commented Nov 11, 2019

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/7W5Z9Ceqf4VhTYAitNtsukWHMF5L
✅ Preview: https://react-jsonschema-form-material-ui-git-renovate-2be56b-github56.vercel.app

@renovate renovate Bot changed the title Update dependency slate-react to v0.22.10 fix(deps): update dependency slate-react to v0.22.10 Nov 13, 2019
@renovate renovate Bot force-pushed the renovate/slate-react-0.x branch from dd4ab2e to 35615bc Compare November 28, 2019 02:16
@renovate renovate Bot changed the title fix(deps): update dependency slate-react to v0.22.10 fix(deps): update dependency slate-react to v0.50.0 Nov 28, 2019
@renovate renovate Bot force-pushed the renovate/slate-react-0.x branch from 35615bc to cfceb66 Compare November 28, 2019 21:46
@renovate renovate Bot changed the title fix(deps): update dependency slate-react to v0.50.0 fix(deps): update dependency slate-react to v0.50.1 Nov 28, 2019
@renovate renovate Bot changed the title fix(deps): update dependency slate-react to v0.50.1 fix(deps): update dependency slate-react to v0.50.2 Nov 29, 2019
@renovate renovate Bot force-pushed the renovate/slate-react-0.x branch from cfceb66 to a201aed Compare November 29, 2019 12:42
@renovate renovate Bot force-pushed the renovate/slate-react-0.x branch from a201aed to f84bd8d Compare November 29, 2019 13:13
@renovate renovate Bot changed the title fix(deps): update dependency slate-react to v0.50.2 fix(deps): update dependency slate-react to v0.50.3 Nov 29, 2019
@renovate renovate Bot force-pushed the renovate/slate-react-0.x branch from f84bd8d to 69ec480 Compare November 30, 2019 06:15
@renovate renovate Bot changed the title fix(deps): update dependency slate-react to v0.50.3 fix(deps): update dependency slate-react to v0.50.4 Nov 30, 2019
@renovate renovate Bot force-pushed the renovate/slate-react-0.x branch from 69ec480 to b7df9d2 Compare November 30, 2019 06:44
@renovate renovate Bot changed the title fix(deps): update dependency slate-react to v0.50.4 fix(deps): update dependency slate-react to v0.50.5 Nov 30, 2019
@renovate renovate Bot force-pushed the renovate/slate-react-0.x branch from b7df9d2 to e4b562e Compare December 1, 2019 19:51
@renovate renovate Bot changed the title fix(deps): update dependency slate-react to v0.50.5 fix(deps): update dependency slate-react to v0.50.6 Dec 1, 2019
@renovate renovate Bot force-pushed the renovate/slate-react-0.x branch from e4b562e to e596d67 Compare December 1, 2019 22:50
@renovate renovate Bot changed the title fix(deps): update dependency slate-react to v0.50.6 fix(deps): update dependency slate-react to v0.50.7 Dec 1, 2019
@renovate renovate Bot force-pushed the renovate/slate-react-0.x branch from e596d67 to 33f13b9 Compare December 2, 2019 00:24
@renovate renovate Bot changed the title fix(deps): update dependency slate-react to v0.50.7 fix(deps): update dependency slate-react to v0.50.8 Dec 2, 2019
@renovate renovate Bot changed the title Update dependency slate-react to v0.52.6 Update dependency slate-react to v0.52.7 Dec 10, 2019
@renovate renovate Bot force-pushed the renovate/slate-react-0.x branch from 6e7b1bb to 41e10a3 Compare December 11, 2019 00:04
@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 25, 2021

Deployment failed with the following error:

Resource is limited - try again after in 4 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 25, 2021

Deployment failed with the following error:

Resource is limited - try again after in 8 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 26, 2021

Deployment failed with the following error:

Resource is limited - try again after in 6 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 27, 2021

Deployment failed with the following error:

Resource is limited - try again after in 12 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 27, 2021

Deployment failed with the following error:

Resource is limited - try again after in 10 hours (more than 100, code: "api-deployments-free-per-day").

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented May 5, 2021

⚠️ 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! While resolving: react-jsonschema-form-material-ui@3.0.0-alpha.9
npm ERR! Found: slate@0.47.9
npm ERR! node_modules/slate
npm ERR!   slate@"0.47.9" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer slate@">=0.55.0" from slate-react@0.62.1
npm ERR! node_modules/slate-react
npm ERR!   slate-react@"0.62.1" 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-05-06T00_16_14_123Z-debug.log

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented May 7, 2021

⚠️ 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! While resolving: react-jsonschema-form-material-ui@3.0.0-alpha.11
npm ERR! Found: slate@0.47.9
npm ERR! node_modules/slate
npm ERR!   slate@"0.47.9" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer slate@">=0.55.0" from slate-react@0.65.0
npm ERR! node_modules/slate-react
npm ERR!   slate-react@"0.65.0" 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-06-01T20_13_52_177Z-debug.log

@vercel
Copy link
Copy Markdown

vercel Bot commented May 7, 2021

Deployment failed with the following error:

Resource is limited - try again after in 13 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented May 8, 2021

Deployment failed with the following error:

Resource is limited - try again after in 2 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented May 8, 2021

Deployment failed with the following error:

Resource is limited - try again after in 2 minutes (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented May 8, 2021

Deployment failed with the following error:

Resource is limited - try again after in 4 seconds (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented May 8, 2021

Deployment failed with the following error:

Resource is limited - try again after in 29 seconds (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented May 8, 2021

Deployment failed with the following error:

Resource is limited - try again after in 37 minutes (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented May 8, 2021

Deployment failed with the following error:

Resource is limited - try again after in 1 hour (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented May 8, 2021

Deployment failed with the following error:

Resource is limited - try again after in 16 hours (more than 100, code: "api-deployments-free-per-day").

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Jun 9, 2021

⚠ 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 ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: react-jsonschema-form-material-ui@3.0.0-beta.3
npm ERR! Found: slate@0.47.9
npm ERR! node_modules/slate
npm ERR!   slate@"0.47.9" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer slate@">=0.65.3" from slate-react@0.70.2
npm ERR! node_modules/slate-react
npm ERR!   slate-react@"0.70.2" 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_06_18_219Z-debug.log

@codecov
Copy link
Copy Markdown

codecov Bot commented Jul 18, 2021

Codecov Report

Merging #159 (0d3d3ee) into main (ea88d30) will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##             main     #159   +/-   ##
=======================================
  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 data
Powered by Codecov. Last update ea88d30...0d3d3ee. Read the comment docs.

@vercel
Copy link
Copy Markdown

vercel Bot commented Sep 20, 2021

Deployment failed with the following error:

Resource is limited - try again after in 18 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented Dec 5, 2021

Deployment failed with the following error:

Resource is limited - try again after in 23 minutes (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented Dec 5, 2021

Deployment failed with the following error:

Resource is limited - try again after in 15 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 30, 2022

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
react-jsonschema-form-material-ui Error Error Mar 23, 2026 6:06pm

@vercel
Copy link
Copy Markdown

vercel Bot commented Jun 28, 2022

Deployment failed with the following error:

Resource is limited - try again in 1 hour (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented Jun 29, 2022

Deployment failed with the following error:

Resource is limited - try again in 7 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented Aug 16, 2023

Deployment failed with the following error:

Resource is limited - try again in 9 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link
Copy Markdown

vercel Bot commented Aug 16, 2023

Deployment failed with the following error:

Resource is limited - try again in 8 hours (more than 100, code: "api-deployments-free-per-day").

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant