Skip to content

Commit fe5cae5

Browse files
committed
Version 2.9.0
1 parent 6dde868 commit fe5cae5

4 files changed

Lines changed: 18 additions & 4 deletions

File tree

NEWS.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
======
44

55

6+
Version 2.9.0 released on 2026-03-13
7+
====================================
8+
9+
**WARNING:** this is a security update.
10+
11+
Using a lot of recursively nested use tags could lead to long rendering times with
12+
relatively small inputs. CairoSVG now stops rendering when more than 100k use tags are
13+
rendered.
14+
15+
Using the --unsafe option allows to render larger documents.
16+
17+
* Drop support of Python 3.9, add support of Python 3.14
18+
19+
620
Version 2.8.2 released on 2025-05-15
721
====================================
822

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CairoSVG is an SVG converter based on Cairo. It can export SVG files to PDF,
22
EPS, PS, and PNG files.
33

44
* Free software: LGPL license
5-
* For Python 3.9+
5+
* For Python 3.10+
66
* Documentation: https://cairosvg.org/documentation/
77
* Changelog: https://github.com/Kozea/CairoSVG/releases
88
* Code, issues, tests: https://github.com/Kozea/CairoSVG

cairosvg/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.2
1+
2.9.0

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ classifiers =
2626
Intended Audience :: End Users/Desktop
2727
Operating System :: OS Independent
2828
Programming Language :: Python :: 3 :: Only
29-
Programming Language :: Python :: 3.9
3029
Programming Language :: Python :: 3.10
3130
Programming Language :: Python :: 3.11
3231
Programming Language :: Python :: 3.12
3332
Programming Language :: Python :: 3.13
33+
Programming Language :: Python :: 3.14
3434
Topic :: Multimedia :: Graphics :: Graphics Conversion
3535
project_urls =
3636
Documentation = https://cairosvg.org/documentation/
@@ -48,7 +48,7 @@ install_requires =
4848
defusedxml
4949
pillow
5050
tinycss2
51-
python_requires = >= 3.9
51+
python_requires = >= 3.10
5252

5353
[options.entry_points]
5454
console_scripts =

0 commit comments

Comments
 (0)