summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Added a test for undefined itemsfeature/pairsArmin Ronacher2022-01-091-0/+5
|
* Added pairs filterArmin Ronacher2022-01-023-0/+40
|
* Merge remote-tracking branch 'origin/3.0.x'David Lord2021-12-263-11/+22
|\
| * Merge pull request #1560 from pallets/update-toolsDavid Lord2021-12-263-11/+22
| |\ | | | | | | update tools
| | * pin os and python version in rtd buildDavid Lord2021-12-261-0/+4
| | |
| | * update option names for v3David Lord2021-12-261-3/+3
| | |
| | * updates go to maintenance branchDavid Lord2021-12-261-8/+15
| |/
* | Merge pull request #1559 from pallets/i18n-context-blockDavid Lord2021-12-264-19/+63
|\ \ | | | | | | specify context for translation block
| * | specify context for translation blockDavid Lord2021-12-264-19/+63
|/ /
* | Merge branch '3.0.x'David Lord2021-12-2617-44/+46
|\ \ | |/
| * Merge pull request #1558 from pallets:update-requirementsDavid Lord2021-12-2617-52/+51
| |\ | | | | | | update requirements
| | * fix new mypy findingsDavid Lord2021-12-2612-17/+15
| | |
| | * update requirementsDavid Lord2021-12-265-35/+36
| |/
| * Merge pull request #1557 from bzinberg/patch-1David Lord2021-12-241-1/+1
| |\ | | | | | | Typo in docs (trailing backtick)
| | * Typo in docs (trailing backtick)Ben Zinberg2021-12-241-1/+1
| |/ | | | | | | At least, I _think_ this is a typo? :slightly_smiling_face:
| * Merge pull request #1548 from mabdelaal86/patch-1David Lord2021-11-281-1/+1
| |\ | | | | | | Fix little typo in docstring
| | * Fix little typo in docstringMohamed Abdelaal2021-11-281-1/+1
| |/ | | | | Fix a little typo in `do_sort` docstring.
* | Merge pull request #1511 from mkrizek/issue-1510David Lord2021-11-106-6/+25
|\ \ | | | | | | Support native types in macros
| * | support native types in macrosMartin Krizek2021-11-106-6/+25
|/ /
* | Merge pull request #1544 from pallets/remove-deprecated-codeDavid Lord2021-11-1010-274/+27
|\ \ | | | | | | remove deprecated code
| * | update docs requirementsDavid Lord2021-11-102-10/+10
| | | | | | | | | | | | new version of pallets-sphinx-themes to address removals
| * | remove deprecated unicode_urlencodeDavid Lord2021-11-102-12/+1
| | |
| * | remove deprecated legacy resolve mode for context subclassDavid Lord2021-11-103-55/+3
| | |
| * | remove deprecated unicode_join runtime aliasDavid Lord2021-11-102-12/+2
| | |
| * | remove deprecated Markup and escape aliasesDavid Lord2021-11-103-24/+1
| | |
| * | remove deprecated template function decoratorsDavid Lord2021-11-105-136/+5
| | |
| * | remove deprecated extensionsDavid Lord2021-11-092-25/+5
|/ /
* | Merge branch '3.0.x'David Lord2021-11-0912-104/+156
|\ \ | |/
| * Merge pull request #1543 from pallets/release-3.0.33.0.3David Lord2021-11-092-2/+2
| |\ | | | | | | release version 3.0.3
| | * release version 3.0.3David Lord2021-11-092-2/+2
| |/
| * Merge pull request #1542 from pallets/package-loader-fileDavid Lord2021-11-093-4/+36
| |\ | | | | | | PackageLoader works with single module file
| | * PackageLoader works with single module fileDavid Lord2021-11-093-4/+36
| |/
| * Merge pull request #1541 from pallets/docs-pow-orderDavid Lord2021-11-091-2/+13
| |\ | | | | | | document chained pow order
| | * document chained pow orderDavid Lord2021-11-091-2/+13
| |/
| * Merge pull request #1540 from pallets/docs-macro-defaultsDavid Lord2021-11-091-8/+17
| |\ | | | | | | rewrite docs about extending template objects
| | * rewrite docs about extending template objectsDavid Lord2021-11-091-8/+17
| | |
| * | Merge pull request #1539 from pallets/docs-macro-defaultsDavid Lord2021-11-091-3/+0
| |\ \ | | |/ | | | remove reference to macro.defaults
| | * remove reference to macro.defaultsDavid Lord2021-11-091-3/+0
| |/
| * Merge pull request #1538 from pallets/docs-templateDavid Lord2021-11-091-27/+14
| |\ | | | | | | rewrite Template class doc
| | * rewrite Template class docDavid Lord2021-11-091-27/+14
| |/
| * Merge pull request #1509 from kianmeng/fix-typosDavid Lord2021-11-093-4/+4
| |\ | | | | | | Fix typos
| | * Fix typosKian-Meng, Ang2021-10-123-4/+4
| | |
| * | Merge pull request #1522 from klette/fix-node-hashDavid Lord2021-11-093-2/+6
| |\ \ | | | | | | | | Use `object.__hash__` for `Node.__hash__`
| | * | Use object.__hash__ for Node.__hash__Kristian Klette2021-11-093-2/+6
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes a regression in commit 60293416db69782fd048a7820667afa4ae7c423b that changed the `__hash__` implementation of Node from the default pointer hash, to a hash based on the node fields. Since these fields contains list objects, they are not hashable, making every call to `Node.__hash__` fail. This breaks some third-party usage such as in `django-compressor` (See: https://github.com/django-compressor/django-compressor/issues/1060) This changed reverts the hash method back to using `object.__hash__` as the hash implementation.
| * | Merge pull request #1516 from mohd-akram/async-perfDavid Lord2021-11-092-0/+9
| |\ \ | | | | | | | | Reduce async overhead due to auto_await
| | * | Reduce async overhead due to auto_awaitMohamed Akram2021-11-092-0/+9
| |/ /
| * | Merge pull request #1537 from mkrizek/literal_eval-py-310David Lord2021-11-093-1/+15
| |\ \ | | | | | | | | native: keep same behavior on Python 3.10
| | * | native: keep same behavior on Python 3.10Martin Krizek2021-11-093-1/+15
| |/ /
| * | Merge pull request #1536 from pallets/traceback-codetypeDavid Lord2021-11-092-53/+42
| |\ \ | | | | | | | | simplify CodeType rewriting
| | * | simplify CodeType rewritingDavid Lord2021-11-092-53/+42
| |/ /