From aa20b5dcc0c6ad8de161deb273518a3abe0fe2ff Mon Sep 17 00:00:00 2001 From: Renovate Date: Sat, 29 Mar 2025 08:24:56 -0400 Subject: [PATCH] fix(deps): update dependency markdownify to v1 (#81) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [markdownify](https://github.com/matthewwithanm/python-markdownify) | project.dependencies | major | `==0.14.1` -> `==1.1.0` | --- ### Release Notes
matthewwithanm/python-markdownify (markdownify) ### [`v1.1.0`](https://github.com/matthewwithanm/python-markdownify/releases/tag/1.1.0) [Compare Source](https://github.com/matthewwithanm/python-markdownify/compare/1.0.0...1.1.0) #### What's Changed - Support `video` tag with `poster` attribute by [@​itmammoth](https://github.com/itmammoth) in https://github.com/matthewwithanm/python-markdownify/pull/189 - Add missing newlines for definition lists by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/200 - In inline contexts, resolve `
` to a space instead of an empty string by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/202 - Generalize `colspan` handling to handle missing header rows by [@​sbrown61](https://github.com/sbrown61) in https://github.com/matthewwithanm/python-markdownify/pull/203 #### New Contributors - [@​itmammoth](https://github.com/itmammoth) made their first contribution in https://github.com/matthewwithanm/python-markdownify/pull/189 - [@​sbrown61](https://github.com/sbrown61) made their first contribution in https://github.com/matthewwithanm/python-markdownify/pull/203 **Full Changelog**: https://github.com/matthewwithanm/python-markdownify/compare/1.0.0...1.1.0 ### [`v1.0.0`](https://github.com/matthewwithanm/python-markdownify/releases/tag/1.0.0) [Compare Source](https://github.com/matthewwithanm/python-markdownify/compare/0.14.1...1.0.0) #### Breaking Changes If you are using custom tag conversion functions (`convert_*()`), note that the function interface has changed. See [#​191](https://github.com/matthewwithanm/python-markdownify/issues/191) for details. #### What's Changed - Do not construct Markdown links in code spans and code blocks by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/165 - Insert a blank line between table caption, table content by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/167 - Allow a `wrap_width` value of `None` for unlimited line lengths by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/169 - Optimize empty-line handling for `
  • ` and `
    ` content by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/171 - Support HTML definition lists (`
    `, `
    `, and `
    `) by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/173 - Add a new `table_infer_header` configuration option to control table header row inference by [@​SomeBottle](https://github.com/SomeBottle) in https://github.com/matthewwithanm/python-markdownify/pull/161 - For `convert_*` functions, allow for tags with special characters in their name (like "subtag-name") by [@​Fess-AKA-DeadMonk](https://github.com/Fess-AKA-DeadMonk) in https://github.com/matthewwithanm/python-markdownify/pull/136 - Code simplification to remove the `children_only` parameter by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/174 - Add blank line before ATX-style headings to avoid ambiguity by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/178 - Add blank line before/after preformatted blocks by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/179 - Remove superfluous leading/trailing whitespace by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/181 - Simplify computation of `convert_children_as_inline` variable by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/182 - When computing `
      `/`
    1. ` numbering, ignore non-`
    2. ` previous siblings by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/183 - Make conversion non-destructive to soup; improve div/article/section handling by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/184 - Propagate parent tag context downward to improve runtime by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/191 - Avoid stripping nonbreaking spaces by [@​jsm28](https://github.com/jsm28) in https://github.com/matthewwithanm/python-markdownify/pull/188 - Escape right square brackets by [@​jsm28](https://github.com/jsm28) in https://github.com/matthewwithanm/python-markdownify/pull/187 - Rename regex pattern variables by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/195 - Use a conversion function cache to improve runtime by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/196 - Use compiled regex patterns for escaping to improve runtime by [@​chrispy-snps](https://github.com/chrispy-snps) in https://github.com/matthewwithanm/python-markdownify/pull/194 #### New Contributors - [@​SomeBottle](https://github.com/SomeBottle) made their first contribution in https://github.com/matthewwithanm/python-markdownify/pull/161 - [@​Fess-AKA-DeadMonk](https://github.com/Fess-AKA-DeadMonk) made their first contribution in https://github.com/matthewwithanm/python-markdownify/pull/136 **Full Changelog**: https://github.com/matthewwithanm/python-markdownify/compare/0.14.1...1.0.0
  • --- ### 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 becomes conflicted, 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://c.csw.im/cswimr/SeaCogs/pulls/81 Co-authored-by: Renovate Co-committed-by: Renovate --- pyproject.toml | 2 +- uv.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 54b88b2..93c3240 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ dependencies = [ "aiosqlite==0.21.0", "beautifulsoup4==4.13.3", "colorthief==0.2.1", - "markdownify==0.14.1", + "markdownify==1.1.0", "numpy==2.2.4", "phx-class-registry==5.1.1", "pillow==10.4.0", diff --git a/uv.lock b/uv.lock index 99e4da3..4df54ed 100644 --- a/uv.lock +++ b/uv.lock @@ -708,15 +708,15 @@ wheels = [ [[package]] name = "markdownify" -version = "0.14.1" +version = "1.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "beautifulsoup4" }, { name = "six" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/1b/75/483a4bcca436fe88d02dc7686c372631d833848951b368700bdc0c770bb7/markdownify-0.14.1.tar.gz", hash = "sha256:a62a7a216947ed0b8dafb95b99b2ef4a0edd1e18d5653c656f68f03db2bfb2f1", size = 14332 } +sdist = { url = "https://files.pythonhosted.org/packages/2f/78/c48fed23c7aebc2c16049062e72de1da3220c274de59d28c942acdc9ffb2/markdownify-1.1.0.tar.gz", hash = "sha256:449c0bbbf1401c5112379619524f33b63490a8fa479456d41de9dc9e37560ebd", size = 17127 } wheels = [ - { url = "https://files.pythonhosted.org/packages/65/0b/74cec93a7b05edf4fc3ea1c899fe8a37f041d7b9d303c75abf7a162924e0/markdownify-0.14.1-py3-none-any.whl", hash = "sha256:4c46a6c0c12c6005ddcd49b45a5a890398b002ef51380cd319db62df5e09bc2a", size = 11530 }, + { url = "https://files.pythonhosted.org/packages/64/11/b751af7ad41b254a802cf52f7bc1fca7cabe2388132f2ce60a1a6b9b9622/markdownify-1.1.0-py3-none-any.whl", hash = "sha256:32a5a08e9af02c8a6528942224c91b933b4bd2c7d078f9012943776fc313eeef", size = 13901 }, ] [[package]] @@ -1699,7 +1699,7 @@ requires-dist = [ { name = "aiosqlite", specifier = "==0.21.0" }, { name = "beautifulsoup4", specifier = "==4.13.3" }, { name = "colorthief", specifier = "==0.2.1" }, - { name = "markdownify", specifier = "==0.14.1" }, + { name = "markdownify", specifier = "==1.1.0" }, { name = "numpy", specifier = "==2.2.4" }, { name = "phx-class-registry", specifier = "==5.1.1" }, { name = "pillow", specifier = "==10.4.0" },