1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
.. :changelog:
Release History
---------------
1.2.0 (2025-06-16)
++++++++++++++++++
- Add support for comments
- Drop support for Python 3.8, add testing for Python 3.13
1.1.2 (2024-05-01)
++++++++++++++++++
- Fix #1383 Revert lxml<=4.9.2 pin that breaks Python 3.12 install
- Fix #1385 Support use of Part._rels by python-docx-template
- Add support and testing for Python 3.12
1.1.1 (2024-04-29)
++++++++++++++++++
- Fix #531, #1146 Index error on table with misaligned borders
- Fix #1335 Tolerate invalid float value in bottom-margin
- Fix #1337 Do not require typing-extensions at runtime
1.1.0 (2023-11-03)
++++++++++++++++++
- Add BlockItemContainer.iter_inner_content()
1.0.1 (2023-10-12)
++++++++++++++++++
- Fix #1256: parse_xml() and OxmlElement moved.
- Add Hyperlink.fragment and .url
1.0.0 (2023-10-01)
+++++++++++++++++++
- Remove Python 2 support. Supported versions are 3.7+
- Fix #85: Paragraph.text includes hyperlink text
- Add #1113: Hyperlink.address
- Add Hyperlink.contains_page_break
- Add Hyperlink.runs
- Add Hyperlink.text
- Add Paragraph.contains_page_break
- Add Paragraph.hyperlinks
- Add Paragraph.iter_inner_content()
- Add Paragraph.rendered_page_breaks
- Add RenderedPageBreak.following_paragraph_fragment
- Add RenderedPageBreak.preceding_paragraph_fragment
- Add Run.contains_page_break
- Add Run.iter_inner_content()
- Add Section.iter_inner_content()
0.8.11 (2021-05-15)
+++++++++++++++++++
- Small build changes and Python 3.8 version changes like collections.abc location.
0.8.10 (2019-01-08)
+++++++++++++++++++
- Revert use of expanded package directory for default.docx to work around setup.py
problem with filenames containing square brackets.
0.8.9 (2019-01-08)
++++++++++++++++++
- Fix gap in MANIFEST.in that excluded default document template directory
0.8.8 (2019-01-07)
++++++++++++++++++
- Add support for headers and footers
0.8.7 (2018-08-18)
++++++++++++++++++
- Add _Row.height_rule
- Add _Row.height
- Add _Cell.vertical_alignment
- Fix #455: increment next_id, don't fill gaps
- Add #375: import docx failure on --OO optimization
- Add #254: remove default zoom percentage
- Add #266: miscellaneous documentation fixes
- Add #175: refine MANIFEST.ini
- Add #168: Unicode error on core-props in Python 2
0.8.6 (2016-06-22)
++++++++++++++++++
- Add #257: add Font.highlight_color
- Add #261: add ParagraphFormat.tab_stops
- Add #303: disallow XML entity expansion
0.8.5 (2015-02-21)
++++++++++++++++++
- Fix #149: KeyError on Document.add_table()
- Fix #78: feature: add_table() sets cell widths
- Add #106: feature: Table.direction (i.e. right-to-left)
- Add #102: feature: add CT_Row.trPr
0.8.4 (2015-02-20)
++++++++++++++++++
- Fix #151: tests won't run on PyPI distribution
- Fix #124: default to inches on no TIFF resolution unit
0.8.3 (2015-02-19)
++++++++++++++++++
- Add #121, #135, #139: feature: Font.color
0.8.2 (2015-02-16)
++++++++++++++++++
- Fix #94: picture prints at wrong size when scaled
- Extract `docx.document.Document` object from `DocumentPart`
Refactor `docx.Document` from an object into a factory function for new
`docx.document.Document object`. Extract methods from prior `docx.Document`
and `docx.parts.document.DocumentPart` to form the new API class and retire
`docx.Document` class.
- Migrate `Document.numbering_part` to `DocumentPart.numbering_part`. The
`numbering_part` property is not part of the published API and is an
interim internal feature to be replaced in a future release, perhaps with
something like `Document.numbering_definitions`. In the meantime, it can
now be accessed using ``Document.part.numbering_part``.
0.8.1 (2015-02-10)
++++++++++++++++++
- Fix #140: Warning triggered on Document.add_heading/table()
0.8.0 (2015-02-08)
++++++++++++++++++
- Add styles. Provides general capability to access and manipulate paragraph,
character, and table styles.
- Add ParagraphFormat object, accessible on Paragraph.paragraph_format, and
providing the following paragraph formatting properties:
+ paragraph alignment (justfification)
+ space before and after paragraph
+ line spacing
+ indentation
+ keep together, keep with next, page break before, and widow control
- Add Font object, accessible on Run.font, providing character-level
formatting including:
+ typeface (e.g. 'Arial')
+ point size
+ underline
+ italic
+ bold
+ superscript and subscript
The following issues were retired:
- Add feature #56: superscript/subscript
- Add feature #67: lookup style by UI name
- Add feature #98: Paragraph indentation
- Add feature #120: Document.styles
**Backward incompatibilities**
Paragraph.style now returns a Style object. Previously it returned the style
name as a string. The name can now be retrieved using the Style.name
property, for example, `paragraph.style.name`.
0.7.6 (2014-12-14)
++++++++++++++++++
- Add feature #69: Table.alignment
- Add feature #29: Document.core_properties
0.7.5 (2014-11-29)
++++++++++++++++++
- Add feature #65: _Cell.merge()
0.7.4 (2014-07-18)
++++++++++++++++++
- Add feature #45: _Cell.add_table()
- Add feature #76: _Cell.add_paragraph()
- Add _Cell.tables property (read-only)
0.7.3 (2014-07-14)
++++++++++++++++++
- Add Table.autofit
- Add feature #46: _Cell.width
0.7.2 (2014-07-13)
++++++++++++++++++
- Fix: Word does not interpret <w:cr/> as line feed
0.7.1 (2014-07-11)
++++++++++++++++++
- Add feature #14: Run.add_picture()
0.7.0 (2014-06-27)
++++++++++++++++++
- Add feature #68: Paragraph.insert_paragraph_before()
- Add feature #51: Paragraph.alignment (read/write)
- Add feature #61: Paragraph.text setter
- Add feature #58: Run.add_tab()
- Add feature #70: Run.clear()
- Add feature #60: Run.text setter
- Add feature #39: Run.text and Paragraph.text interpret '\n' and '\t' chars
0.6.0 (2014-06-22)
++++++++++++++++++
- Add feature #15: section page size
- Add feature #66: add section
- Add page margins and page orientation properties on Section
- Major refactoring of oxml layer
0.5.3 (2014-05-10)
++++++++++++++++++
- Add feature #19: Run.underline property
0.5.2 (2014-05-06)
++++++++++++++++++
- Add feature #17: character style
0.5.1 (2014-04-02)
++++++++++++++++++
- Fix issue #23, `Document.add_picture()` raises ValueError when document
contains VML drawing.
0.5.0 (2014-03-02)
++++++++++++++++++
- Add 20 tri-state properties on Run, including all-caps, double-strike,
hidden, shadow, small-caps, and 15 others.
0.4.0 (2014-03-01)
++++++++++++++++++
- Advance from alpha to beta status.
- Add pure-python image header parsing; drop Pillow dependency
0.3.0a5 (2014-01-10)
++++++++++++++++++++++
- Hotfix: issue #4, Document.add_picture() fails on second and subsequent
images.
0.3.0a4 (2014-01-07)
++++++++++++++++++++++
- Complete Python 3 support, tested on Python 3.3
0.3.0a3 (2014-01-06)
++++++++++++++++++++++
- Fix setup.py error on some Windows installs
0.3.0a1 (2014-01-05)
++++++++++++++++++++++
- Full object-oriented rewrite
- Feature-parity with prior version
- text: add paragraph, run, text, bold, italic
- table: add table, add row, add column
- styles: specify style for paragraph, table
- picture: add inline picture, auto-scaling
- breaks: add page break
- tests: full pytest and behave-based 2-layer test suite
0.3.0dev1 (2013-12-14)
++++++++++++++++++++++
- Round-trip .docx file, preserving all parts and relationships
- Load default "template" .docx on open with no filename
- Open from stream and save to stream (file-like object)
- Add paragraph at and of document
|