anmarkoulis / clickup-to-jira

Utility for migrating tickets from ClickUp to JIRA
https://clickup-to-jira.readthedocs.io/en/latest/
MIT License
20 stars 4 forks source link

build(deps): bump mistletoe from 0.7.2 to 1.4.0 #92

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps mistletoe from 0.7.2 to 1.4.0.

Release notes

Sourced from mistletoe's releases.

v1.4.0

Added

  • Add parent attribute/property (#71 via #206).

    COMPATIBILITY REMARKS:

    • As the children attribute changed to property, existing code needs to be changed like this:
      -hasattr(token, 'children')
      +token.children is not None
      

      ...

      -'children' in vars(token)
      +token.children is not None

      ...

      -getattr(token, 'children', [])
      +token.children or []

Fixed

  • Incomplete sdist content (#219).

Changed

  • MarkdownRenderer: Keep the original content spacing before the list marker (#213 via #215).
  • Bump build/CI scripts.

v1.3.0

Added

  • Add line numbers (line_number attribute) on all block tokens during parsing (#188).
  • More thorough documentation and explanation of AST and tokens in the Developer's Guide (within #188).
  • HtmlRenderer: Option to skip HTML tokens parsing (#74 via #204). Just pass process_html_tokens=False to the renderer's constructor.
  • LaTeXRenderer: Add AMS packages for Math (#207).

Fixed

  • MarkdownRenderer: Penultimate lines of multiline fragments being ignored (#201).
  • MathJaxRenderer: Output inline math (in: $...$) correctly (out: \(...\)) (#195).
  • Make local installation work again with pip 23.2 and above (fb231b112ea5).

Changed

  • MarkdownRenderer: Keep the original content spacing after the list marker (#196 via #197).

... (truncated)

Commits
  • 7a80e7f chore: version 1.4.0
  • f470384 docs: update benchmark results
  • 93758d0 chore: replace python3 with python
  • 8956177 ci: support Python 3.5 build
  • 08094d3 build: avoid ".* suffix ..." error with the latest pip
  • 6a5a23f build: add more files to the sdist package (#219)
  • 0653065 fix(markdown-renderer): preserve list margin spacing
  • 06f2a93 feat!: add parent property to tokens (#71)
  • acde7c2 docs: use up-to-date example commits in the Release guide
  • aa624e0 chore: next dev version
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
anmarkoulis commented 2 months ago

@dependabot rebase