Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update pypi requirements.txt (requirements.txt) (master) #881

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ivankatliarchuk
Copy link
Owner

@ivankatliarchuk ivankatliarchuk commented Dec 29, 2024

This PR contains the following updates:

Package Update Change
Jinja2 (changelog) patch ==3.1.4 -> ==3.1.5
Pillow (changelog) major ==10.4.0 -> ==11.1.0
Pygments (changelog) minor ==2.18.0 -> ==2.19.1
Pyphen (changelog) minor ==0.15.0 -> ==0.17.2
WeasyPrint (changelog) major ==62.3 -> ==64.1
beautifulsoup4 (changelog) minor ==4.12.3 -> ==4.13.3
bracex minor ==2.4 -> ==2.5.post1
cffi (source, changelog) minor ==1.16.0 -> ==1.17.1
click (changelog) patch ==8.1.7 -> ==8.1.8
livereload patch ==2.7.0 -> ==2.7.1
mkdocs (changelog) patch ==1.6.0 -> ==1.6.1
mkdocs-awesome-pages-plugin minor ==2.9.3 -> ==2.10.1
mkdocs-material (changelog) minor ==9.5.42 -> ==9.6.5
mkdocs-redirects (changelog) patch ==1.2.1 -> ==1.2.2
pymdown-extensions minor ==10.11.2 -> ==10.14.3
regex minor ==2024.9.11 -> ==2024.11.6
six minor ==1.16.0 -> ==1.17.0
soupsieve minor ==2.5 -> ==2.6
tornado (source) patch ==6.4.1 -> ==6.4.2
tqdm (changelog) minor ==4.66.4 -> ==4.67.1

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

pallets/jinja (Jinja2)

v3.1.5

Compare Source

Released 2024-12-21

  • The sandboxed environment handles indirect calls to str.format, such as
    by passing a stored reference to a filter that calls its argument.
    :ghsa:q2x7-8rv6-6q7h
  • Escape template name before formatting it into error messages, to avoid
    issues with names that contain f-string syntax.
    :issue:1792, :ghsa:gmj6-6f8f-6699
  • Sandbox does not allow clear and pop on known mutable sequence
    types. :issue:2032
  • Calling sync render for an async template uses asyncio.run.
    :pr:1952
  • Avoid unclosed auto_aiter warnings. :pr:1960
  • Return an aclose-able AsyncGenerator from
    Template.generate_async. :pr:1960
  • Avoid leaving root_render_func() unclosed in
    Template.generate_async. :pr:1960
  • Avoid leaving async generators unclosed in blocks, includes and extends.
    :pr:1960
  • The runtime uses the correct concat function for the current environment
    when calling block references. :issue:1701
  • Make |unique async-aware, allowing it to be used after another
    async-aware filter. :issue:1781
  • |int filter handles OverflowError from scientific notation.
    :issue:1921
  • Make compiling deterministic for tuple unpacking in a {% set ... %}
    call. :issue:2021
  • Fix dunder protocol (copy/pickle/etc) interaction with Undefined
    objects. :issue:2025
  • Fix copy/pickle support for the internal missing object.
    :issue:2027
  • Environment.overlay(enable_async) is applied correctly. :pr:2061
  • The error message from FileSystemLoader includes the paths that were
    searched. :issue:1661
  • PackageLoader shows a clearer error message when the package does not
    contain the templates directory. :issue:1705
  • Improve annotations for methods returning copies. :pr:1880
  • urlize does not add mailto: to values like @a@b. :pr:1870
  • Tests decorated with @pass_context`` can be used with the ``|select`` filter. :issue:1624`
  • Using set for multiple assignment (a, b = 1, 2) does not fail when the
    target is a namespace attribute. :issue:1413
  • Using set in all branches of {% if %}{% elif %}{% else %} blocks
    does not cause the variable to be considered initially undefined.
    :issue:1253
python-pillow/Pillow (Pillow)

v11.1.0

Compare Source

See GitHub Releases:

v11.0.0

Compare Source

  • Update licence to MIT-CMU #​8460
    [hugovk]

  • Conditionally define ImageCms type hint to avoid requiring core #​8197
    [radarhere]

  • Support writing LONG8 offsets in AppendingTiffWriter #​8417
    [radarhere]

  • Use ImageFile.MAXBLOCK when saving TIFF images #​8461
    [radarhere]

  • Do not close provided file handles with libtiff when saving #​8458
    [radarhere]

  • Support ImageFilter.BuiltinFilter for I;16* images #​8438
    [radarhere]

  • Use ImagingCore.ptr instead of ImagingCore.id #​8341
    [homm, radarhere, hugovk]

  • Updated EPS mode when opening images without transparency #​8281
    [Yay295, radarhere]

  • Use transparency when combining P frames from APNGs #​8443
    [radarhere]

  • Support all resampling filters when resizing I;16* images #​8422
    [radarhere]

  • Free memory on early return #​8413
    [radarhere]

  • Cast int before potentially exceeding INT_MAX #​8402
    [radarhere]

  • Check image value before use #​8400
    [radarhere]

  • Improved copying imagequant libraries #​8420
    [radarhere]

  • Use Capsule for WebP saving #​8386
    [homm, radarhere]

  • Fixed writing multiple StripOffsets to TIFF #​8317
    [Yay295, radarhere]

  • Fix dereference before checking for NULL in ImagingTransformAffine #​8398
    [PavlNekrasov]

  • Use transposed size after opening for TIFF images #​8390
    [radarhere, homm]

  • Improve ImageFont error messages #​8338
    [yngvem, radarhere, hugovk]

  • Mention MAX_TEXT_CHUNK limit in PNG error message #​8391
    [radarhere]

  • Cast Dib handle to int #​8385
    [radarhere]

  • Accept float stroke widths #​8369
    [radarhere]

  • Deprecate ICNS (width, height, scale) sizes in favour of load(scale) #​8352
    [radarhere]

  • Improved handling of RGBA palettes when saving GIF images #​8366
    [radarhere]

  • Deprecate isImageType #​8364
    [radarhere]

  • Support converting more modes to LAB by converting to RGBA first #​8358
    [radarhere]

  • Deprecate support for FreeType 2.9.0 #​8356
    [hugovk, radarhere]

  • Removed unused TiffImagePlugin IFD_LEGACY_API #​8355
    [radarhere]

  • Handle duplicate EXIF header #​8350
    [zakajd, radarhere]

  • Return early from BoxBlur if either width or height is zero #​8347
    [radarhere]

  • Check text is either string or bytes #​8308
    [radarhere]

  • Added writing XMP bytes to JPEG #​8286
    [radarhere]

  • Support JPEG2000 RGBA palettes #​8256
    [radarhere]

  • Expand C image to match GIF frame image size #​8237
    [radarhere]

  • Allow saving I;16 images as PPM #​8231
    [radarhere]

  • When IFD is missing, connect get_ifd() dictionary to Exif #​8230
    [radarhere]

  • Skip truncated ICO mask if LOAD_TRUNCATED_IMAGES is enabled #​8180
    [radarhere]

  • Treat unknown JPEG2000 colorspace as unspecified #​8343
    [radarhere]

  • Updated error message when saving WebP with invalid width or height #​8322
    [radarhere, hugovk]

  • Remove warning if NumPy failed to raise an error during conversion #​8326
    [radarhere]

  • If left and right sides meet in ImageDraw.rounded_rectangle(), do not draw rectangle to fill gap #​8304
    [radarhere]

  • Remove WebP support without anim, mux/demux, and with buggy alpha #​8213
    [homm, radarhere]

  • Add missing TIFF CMYK;16B reader #​8298
    [homm]

  • Remove all WITH_* flags from _imaging.c and other flags #​8211
    [homm]

  • Improve ImageDraw2 shape methods #​8265
    [radarhere]

  • Lock around usages of imaging memory arenas #​8238
    [lysnikolaou]

  • Deprecate JpegImageFile huffman_ac and huffman_dc #​8274
    [radarhere]

  • Deprecate ImageMath lambda_eval and unsafe_eval options argument #​8242
    [radarhere]

  • Changed ContainerIO to subclass IO #​8240
    [radarhere]

  • Move away from APIs that use borrowed references under the free-threaded build #​8216
    [hugovk, lysnikolaou]

  • Allow size argument to resize() to be a NumPy array #​8201
    [radarhere]

  • Drop support for Python 3.8 #​8183
    [hugovk, radarhere]

  • Add support for Python 3.13 #​8181
    [hugovk, radarhere]

  • Fix incompatibility with NumPy 1.20 #​8187
    [neutrinoceros, radarhere]

  • Remove PSFile, PyAccess and USE_CFFI_ACCESS #​8182
    [hugovk, radarhere]

pygments/pygments (Pygments)

v2.19.1

Compare Source

(released January 6th, 2025)

  • Updated lexers:

    • Ini: Fix quoted string regression introduced in 2.19.0
    • Lua: Fix a regression introduced in 2.19.0

v2.19.0

Compare Source

(released January 5th, 2025)

  • Mark file extensions for HTML/XML+Evoque as aliases (#​2743)
  • Add a color for Operator.Word to the rrt style (#​2709)
  • Fix broken link in the documentation (#​2803, #​2804)
  • Drop executable bit where not needed (#​2781)
  • Reduce Mojo priority relative to Python in ``analyze_text´` (#​2771, #​2772)
  • Fix documentation builds (#​2712)
  • Match example file names to the lexer's name (#​2713, #​2715)
  • Ensure lexer metadata is present (#​2714)
  • Search more directories on macOS for fonts (#​2809)
  • Improve test robustness (#​2812)
Kozea/Pyphen (Pyphen)

v0.17.2

Compare Source

  • Fix Oriya dictionary name.
  • Update documentation.

v0.17.1

Compare Source

  • Update Mongolian dictionary.
  • Add Assamese, Kannada, Sanskrit, Punjabi, Oriya, Marathi dictionaries.

v0.17.0

Compare Source

  • Support Python 3.13, drop Python 3.8 support.
  • Update Hungarian dictionary.

v0.16.0

Compare Source

  • Close file when reading encoding
  • Update dictionary repository
Kozea/WeasyPrint (WeasyPrint)

v64.1

Compare Source

Bug fixes

  • #​2368: Fix ascent and descent font values
  • #​2370: Avoid endless recursion for variables in nested functions
  • #​2275: Use correct containing block to render waiting children
  • #​2375: Ensure that we handle text-anchor only on text content elements
  • #​2090: Only create font temporary folder when adding fonts
  • #​2383: Fix grid-template-areas validation and allow uppercase identifiers for grid lines

Contributors

  • Guillaume Ayoub

Backers and sponsors

  • Spacinov
  • Kobalt
  • Grip Angebotssoftware
  • Syslifters
  • Simon Sapin
  • Manuel Barkhau
  • Simonsoft
  • Menutech
  • KontextWork
  • TrainingSparkle
  • Healthchecks.io
  • Hammerbacher
  • DocRaptor
  • Yanal-Yves Fargialla
  • Method B
  • FieldHub
  • Morntag
  • Xavid
  • Kai DeLorenzo
  • Charlie S.

v64.0

Compare Source

Read about this release on our blog.

Features

  • #​2338: Allow custom RDF metadata for PDF/A and eInvoices
  • #​123, #​2345: Handle small-caps synthesis
  • #​2343: Support outline-offset
  • #​2361: Support text-underline-offset and text-decoration-thickness
  • #​2296: Don’t crash with tables with rounded corners split between pages

Bug fixes

  • #​2360: Fix gradients with non-RGB colors
  • #​2355, #​2358: Align png emojis to the surrounding text
  • #​2353: Fix alignment of SVG text with multiple nested text-anchor values
  • #​2350: Fix logging restoration in capture_logs
  • #​2341: Fix page groups
  • #​2314: Use CSS 'image-rendering' attribute for images in SVGs
  • #​2332: Fix opacity for translated SVG elements
  • #​2329: Refactor text.line_break.get_log_attrs
  • #​2325, #​2326: Fix table overflow edge cases

Performance

Documentation

  • #​2352: Add more use cases in documentation, use Furo theme

Contributors

  • Guillaume Ayoub
  • Kesara Rathnayake
  • Xavid Pretzer
  • David Tagatac
  • Ernesto Ruge
  • Niko Abeler
  • Noam Kushinsky

Backers and sponsors

  • Spacinov
  • Kobalt
  • Grip Angebotssoftware
  • Syslifters
  • Simon Sapin
  • Manuel Barkhau
  • Simonsoft
  • Menutech
  • KontextWork
  • TrainingSparkle
  • Healthchecks.io
  • Hammerbacher
  • DocRaptor
  • Yanal-Yves Fargialla
  • Method B
  • FieldHub
  • Morntag
  • Xavid
  • Kai DeLorenzo
  • Charlie S.

v63.1

Compare Source

Dependencies

  • #​2297: Remove upper bounds for dependencies

Bug fixes

  • #​2300, #​2292: Don’t avoid floats for flex items
  • #​2301, #​2293: Include floats in calculation of minimum cell height
  • #​2303, #​2302: Set alpha even when current color channels didn’t change
  • #​2306: Don’t try to increase column width when there’s no extra width
  • #​2304: Don’t forget skip stack when drawing flex items
  • #​2316: Don’t crash with SVG symbols
  • #​2320: Fix currentcolor detection when parsing gradient color stops
  • #​2322, #​2289: Don’t add DLL directories when using Windows executable
  • #​2323, #​2305: Fix different rendering test

Performance

Documentation

  • #​2299: Update install instructions for Alpine
  • #​2321: Add example invocation of WeasyPrint on the "Contribute" page

Contributors

  • Guillaume Ayoub
  • Jó Ágila Bitsch
  • Lucie Anglade
  • Alexander Gitter
  • Luke Cousins

Backers and sponsors

  • Spacinov
  • Kobalt
  • Grip Angebotssoftware
  • Syslifters
  • Manuel Barkhau
  • SimonSoft
  • Menutech
  • KontextWork
  • Simon Sapin
  • TrainingSparkle
  • Healthchecks.io
  • Hammerbacher
  • Advance Insight
  • Docraptor
  • Method B
  • FieldHub
  • Yanal-Yvez Fargialla
  • Morntag
  • Xavid

v63.0

Compare Source

Read about this release on our blog.

Dependencies

  • Python 3.13 is now supported
  • pydyf 0.11.0+ is now needed
  • tinycss2 1.4.0+ is now needed
  • tinyhtml5 2.0.0+ is now needed, instead of html5lib

Features

Bug fixes

  • #​2262: Avoid integer overflows when converting units from/to doubles
  • #​2260: Avoid float collision with box establishing formatting context
  • #​2240, #​2242: Handle svg tags with no size
  • #​2231, #​1171, #​2222, #​1208: Fix several problems related to flex-direction: column
  • #​2239: Don’t fail when SVG markers are undefined references
  • #​2230, #​2238: Set explicit flags when loading DLLs on Windows
  • #​2228, #​1942: Store original and PDF stream images in different cache slots
  • #​2234: Apply stylesheet and other basic operations to SVG root tag
  • #​2054, #​2233: Keep auto margins on flex layout boxes
  • #​1883: Don’t crash with empty list marker strings
  • #​2216: Fix vertical alignment of out-of-flow elements in tables
  • #​996, #​2219: Don’t ignore absolutely positioned elements inside flex boxes
  • #​2217: Don’t crash with normal column gaps
  • #​1817: Don’t assume that lines break after spaces
  • #​1868: Don’t break rows with atomic cells
  • #​2166: Don’t display bottom border on cells in split rows
  • 61852c4: Capture fontTools logs when subsetting fonts
  • #​2190: Don’t use a pattern when drawing backgrounds for no-repeat background images
  • #​2185: Check that Harfbuzz version is at least 4.1.0 to subset fonts
  • #​2180: Store width for all glyphs when font is not subset
  • #​2183: Respect break-inside: avoid for flex items
  • #​2055, #​2058: Fix right-to-left tables with collapsed borders
  • #​2179, #​1128: Handle buggy Adobe Photoshop CMYK JPEGs
  • #​2175: Don’t compress PDF metadata for PDF/A-1
  • #​2174: Fix extra width distribution for auto table layout

Performance

  • #​1155: Improve rendering speed for large colspan values
  • #​2120, #​2178: Use Harfbuzz to subset fonts by default

Documentation

Contributors

  • Guillaume Ayoub
  • David Huggins-Daines
  • Xavid Pretzer
  • Yann Trividic
  • Kevin Kays
  • Alejandro Avilés
  • Gianluca Teti
  • Gregory Goodson
  • Lucie Anglade
  • Roman Sirokov

Backers and sponsors

  • Spacinov
  • Kobalt
  • Grip Angebotssoftware
  • Syslifters
  • Manuel Barkhau
  • SimonSoft
  • Menutech
  • KontextWork
  • Simon Sapin
  • TrainingSparkle
  • Healthchecks.io
  • Hammerbacher
  • Advance Insight
  • Docraptor
  • Method B
  • FieldHub
  • Yanal-Yvez Fargialla
  • Morntag
  • Xavid
facelessuser/bracex (bracex)

v2.5.post1

Compare Source

2.5.post1

  • FIX: Fix PyPI landing page.

v2.5

Compare Source

2.5

  • NEW Add Python 3.13 support.
python-cffi/cffi (cffi)

v1.17.1

Compare Source

  • Fix failing distutils.msvc9compiler imports under Windows (#​118).
  • ffibuilder.emit_python_code() and ffibuiler.emit_c_code() accept file-like objects (#​115).
  • ffiplatform calls are bypassed by ffibuilder.emit_python_code() and ffibuilder.emit_c_code() (#​81).

Full Changelog: python-cffi/cffi@v1.17.0...v1.17.1

v1.17.0

Compare Source

  • Add support for Python 3.13.
    • Free-threaded CPython builds (i.e. python3.13t and the 3.13t ABI) are not currently supported.
  • In API mode, when you get a function from a C library by writing
    fn = lib.myfunc, you get an object of a special type for performance
    reasons, instead of a <cdata 'C-function-type'>. Before version 1.17
    you could only call such objects. You could write
    ffi.addressof(lib, "myfunc") in order to get a real <cdata> object,
    based on the idea that in these cases in C you'd usually write &myfunc
    instead of myfunc. In version 1.17, the special object
    lib.myfunc can now be passed in many places where CFFI expects
    a regular <cdata> object. For example, you can now pass
    it as a callback to a C function call, or write it inside a C
    structure field of the correct pointer-to-function type, or use
    ffi.cast() or ffi.typeof() on it.

Full Changelog: python-cffi/cffi@v1.16.0...v1.17.0

pallets/click (click)

v8.1.8

Compare Source

Unreleased

  • Fix an issue with type hints for click.open_file(). :issue:2717
  • Fix issue where error message for invalid click.Path displays on
    multiple lines. :issue:2697
  • Fixed issue that prevented a default value of "" from being displayed in
    the help for an option. :issue:2500
  • The test runner handles stripping color consistently on Windows.
    :issue:2705
  • Show correct value for flag default when using default_map.
    :issue:2632
  • Fix click.echo(color=...) passing color to coloroma so it can be
    forced on Windows. :issue:2606.
lepture/python-livereload (livereload)

v2.7.1

Compare Source

Released on Dec 18, 2024

  1. Wait for the IOLoop to be stopped before attempting to close it
  2. Not injecting live script when serving non-HTML content
mkdocs/mkdocs (mkdocs)

v1.6.1

Compare Source

Version 1.6.1 (Friday 30th August, 2024)

Fixed
  • Fix build error when environment variable SOURCE_DATE_EPOCH=0 is set. #​3795
  • Fix build error when mkdocs_theme.yml config is empty. #​3700
  • Support python -W and PYTHONWARNINGS instead of overriding the configuration. #​3809
  • Support running with Docker under strict mode, by removing 0.0.0.0 dev server warning. #​3784
  • Drop unnecessary changefreq from sitemap.xml. #​3629
  • Fix JavaScript console error when closing menu dropdown. #​3774
  • Fix JavaScript console error that occur on repeated clicks. #​3730
  • Fix JavaScript console error that can occur on dropdown selections. #​3694
Added
  • Added translations for Dutch. #​3804
  • Added and updated translations for Chinese (Simplified). #​3684
lukasgeiter/mkdocs-awesome-pages-plugin (mkdocs-awesome-pages-plugin)

v2.10.1

Compare Source

Bugfixes
  • Add ignore_case to config_scheme

v2.10.0

Compare Source

Improvements
  • New ignore_case option to make sort case insensitive
squidfunk/mkdocs-material (mkdocs-material)

v9.6.5: mkdocs-material-9.6.5

Compare Source

  • Fixed #​8016: Tags listing not showing when when file name has spaces
  • Fixed #​8012: Privacy plugin crashes if HTTP download fails

v9.6.4: mkdocs-material-9.6.4

Compare Source

  • Fixed #​7985: Blog content sometimes not stretching to full width
  • Fixed #​7978: Navigation rendering bug in Safari 18.3

v9.6.3: mkdocs-material-9.6.3

Compare Source

  • Fixed rendering of arrow heads in Mermaid.js class diagrams
  • Fixed #​7960: Tags plugin crashes on numeric metadata titles

v9.6.2: mkdocs-material-9.6.2

Compare Source

  • Fixed #​7955: Excessively long words don't break on narrow screens
  • Fixed #​7947: Scope setting interferes with outdated version banner

v9.6.1: mkdocs-material-9.6.1

Compare Source

  • Fixed #​7943: Tags plugin crashing due to merge error

v9.6.0: mkdocs-material-9.6.0

Compare Source

  • Added meta plugin
  • Rewrite of the tags plugin
  • Added support for allow lists in tags plugin
  • Added support for and custom sorting in tags plugin
  • Added support for related links in blog plugin
  • Added support for custom index pages in blog plugin
  • Added support for navigation subtitles
  • Fixed #​7924: Anchors might require two clicks when using instant navigation

v9.5.50: mkdocs-material-9.5.50

Compare Source

  • Fixed #​7913: Social plugin renders attribute lists in page title

v9.5.49: mkdocs-material-9.5.49

Compare Source

  • Adjusted title color in dark mode for all supported Mermaid.js diagrams
  • Fixed #​7803: Privacy plugin crashes on generated files
  • Fixed #​7781: Mermaid.js flow chart title not visible in dark mode

v9.5.48: mkdocs-material-9.5.48

Compare Source

  • Fixed #​7774: Disabling social cards doesn't work

v9.5.47: mkdocs-material-9.5.47

Compare Source

  • Fixed #​7750: Numeric tags break search
  • Fixed #​7748: Blog plugin breaks when using future drafts (9.5.45 regression)

Thanks go to @​perpil for their contributions

v9.5.46: mkdocs-material-9.5.46

Compare Source

  • Added support for removing preload hints in privacy plugin
  • Fixed #​7734: Code blocks in h5 headlines are uppercased
  • Fixed #​7725: Blog plugin crashing on missing timezone (9.5.45 regression)

Thanks go to @​nejch and @​perpil for their contributions

v9.5.45: mkdocs-material-9.5.45

Compare Source

  • Reduced size of Docker image through multi-stage build
  • Fixed #​7708: Blog plugin crashing on YAML dates with timezones

Thanks go to @​FrancoisCapon and @​perpil for their contributions

v9.5.44: mkdocs-material-9.5.44

Compare Source

  • Fixed #​7672: Font CSS 404's when using privacy plugin (9.5.43 regression)

Thanks go to @​nejch for their contributions.

v9.5.43: mkdocs-material-9.5.43

Compare Source

  • Added support for external images in SVGs in privacy plugin
  • Fixed #​7651: Privacy plugin doesn't handle quoted URLs in CSS

Thanks go to @​nejch for their contributions

mkdocs/mkdocs-redirects (mkdocs-redirects)

v1.2.2

Compare Source

What's Changed

New Contributors

Full Changelog: mkdocs/mkdocs-redirects@v1.2.1...v1.2.2

facelessuser/pymdown-extensions (pymdown-extensions)

v10.14.3

Compare Source

10.14.3

  • FIX: Blocks: An empty, raw block type should not cause an error.

v10.14.2

Compare Source

10.14.2

  • FIX: Blocks: Fix some corner cases with md_in_html.

v10.14.1

Compare Source

10.14.1

  • FIX: MagicLink: Ensure that repo names that start with . are handled correctly.
  • FIX: FancyLists: Fix case were lists could be falsely created when a line started with . or ).

v10.14

Compare Source

10.14

  • NEW: Blocks.HTML: Add new custom option to specify tags and the assumed handling for them when automatic mode
    is assumed. This can also be used to override the handling for recognized tags with automatic handling.
  • FIX: Fix tests to pass with Pygments 2.19+.

v10.13

Compare Source

10.13

  • NEW: Snippets: Allow multiple line numbers or line number blocks separated by ,.
  • NEW: Snippets: Allow using a negative index for number start indexes and end indexes. Negative indexes are converted to positive indexes based on the number of lines in the snippet.
  • FIX: Snippets: Properly capture empty newline at end of file.
  • FIX: Snippets: Fix issue where when non sections of files are included, section labels are not stripped.
  • FIX: BetterEm: Fixes for complex cases.
  • FIX: Blocks: More consistent handling of empty newlines in block processor extensions.

v10.12

Compare Source

10.12

  • NEW: Blocks: Blocks extensions no longer considered in beta.
  • NEW: Details: Details is marked as "legacy" in documentation in favor of the new pymdownx.blocks.details approach.
  • NEW: Tabbed: Tabbed is marked as "legacy" in documentation in favor of the new pymdownx.blocks.tab approach.
  • NEW: Caption: Add new "blocks" style extension called Caption which helps with specifying figures with captions.
  • NEW: Emoji: Add a new strict option that will raise an exception if an emoji is used whose name has changed,
    removed, or never existed.
  • FIX: Emoji: Emoji links should be generated such that they point to the new CDN version.
mrabarnett/mrab-regex (regex)

v2024.11.6

Compare Source

benjaminp/six (six)

v1.17.0

Compare Source

  • Pull request #​388: Remove URLopener and FancyURLopener classes from
    urllib.request when running on Python 3.14 or greater.

  • Pull request #​365, issue #​283: six.moves.UserDict now points to
    UserDict.IterableUserDict instead of UserDict.UserDict on Python 2.

facelessuser/soupsieve (soupsieve)

v2.6

Compare Source

2.6

  • NEW: Add official support for Python 3.13.
  • NEW: Add support for & as scoping root per the CSS Nesting Module, Level 1. When & is used outside the
    context of nesting, it is treated as the scoping root (equivalent to :scope).
  • FIX: Improve error message when an unrecognized pseudo-class is used.
tornadoweb/tornado (tornado)

v6.4.2

Compare Source

tqdm/tqdm (tqdm)

v4.67.1: tqdm v4.67.1 stable

Compare Source

  • fix gui (matplotlib syntax) (#​1629)
  • misc test & framework updates
    • bump pytest-asyncio (#​1630)
    • fix codecov rate limit
    • fix pybuild
    • sync dependencies

v4.67.0: tqdm v4.67.0 stable

Compare Source

  • contrib.discord: replace disco-py with requests (#​1536)

v4.66.6: tqdm v4.66.6 stable

Compare Source

  • cli: zip-safe --manpath, --comppath (#​1627)
  • misc framework updates (#​1627)
    • fix pytest DeprecationWarning
    • fix snapcraft build
    • fix nbval DeprecationWarning
    • update & tidy workflows
    • bump pre-commit
    • docs: update URLs

v4.66.5: tqdm v4.66.5 stable

Compare Source


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@ivankatliarchuk ivankatliarchuk self-assigned this Dec 29, 2024
@ivankatliarchuk ivankatliarchuk force-pushed the renovate/master-pypi-requirements.txt branch 4 times, most recently from 791b015 to 5b79fb5 Compare January 6, 2025 04:22
@ivankatliarchuk ivankatliarchuk force-pushed the renovate/master-pypi-requirements.txt branch 5 times, most recently from f4c6745 to f3b66de Compare January 16, 2025 04:20
@ivankatliarchuk ivankatliarchuk force-pushed the renovate/master-pypi-requirements.txt branch 4 times, most recently from b67f319 to ee5cf9d Compare January 25, 2025 04:18
@ivankatliarchuk ivankatliarchuk force-pushed the renovate/master-pypi-requirements.txt branch 5 times, most recently from de8eb98 to 6f79acb Compare February 7, 2025 04:21
@ivankatliarchuk ivankatliarchuk force-pushed the renovate/master-pypi-requirements.txt branch 2 times, most recently from 0bd297c to 534e390 Compare February 9, 2025 04:18
@ivankatliarchuk ivankatliarchuk force-pushed the renovate/master-pypi-requirements.txt branch 3 times, most recently from 599e6bb to d97c135 Compare February 16, 2025 04:25
@ivankatliarchuk ivankatliarchuk force-pushed the renovate/master-pypi-requirements.txt branch 2 times, most recently from a4d21ea to 80ea4b8 Compare February 23, 2025 04:24
@ivankatliarchuk ivankatliarchuk force-pushed the renovate/master-pypi-requirements.txt branch from 80ea4b8 to 6a88c96 Compare February 24, 2025 04:22
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