<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chango.git/tests/template_tests, branch devmain</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/chango.git/atom?h=devmain</id>
<link rel='self' href='http://cgit.adnoto.dev/chango.git/atom?h=devmain'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/'/>
<updated>2026-05-06T23:43:37Z</updated>
<entry>
<title>Fixed #36784 -- Added csp_nonce_attr template tag for CSP nonce inclusion.</title>
<updated>2026-05-06T23:43:37Z</updated>
<author>
<name>Natalia</name>
<email>124304+nessita@users.noreply.github.com</email>
</author>
<published>2026-03-26T01:53:58Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=5686ce41958b21f0ae5bfa290e8d4420a6349c1b'/>
<id>urn:sha1:5686ce41958b21f0ae5bfa290e8d4420a6349c1b</id>
<content type='text'>
New default tag `{% csp_nonce_attr %}` was added for explicit CSP nonce
inclusion into `&lt;script&gt;` and `&lt;link&gt;` elements.

`{% csp_nonce_attr %}` renders `nonce="&lt;value&gt;"` when `csp_nonce` is
present in the template context, and renders nothing otherwise.
`{% csp_nonce_attr media %}` renders a `Media` object's assets with the
nonce attr applied to each tag.

Thanks Jacob Walls for the accurate and spot on review comments.

Co-authored-by: Johannes Maron &lt;johannes@maron.family&gt;
</content>
</entry>
<entry>
<title>Fixed #35738 -- Deprecated double-dot variable lookups.</title>
<updated>2026-04-28T17:07:11Z</updated>
<author>
<name>David Smith</name>
<email>smithdc@gmail.com</email>
</author>
<published>2026-04-26T06:53:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=5d911f2d2fecc703be91b2b9b28acc59d34b35f3'/>
<id>urn:sha1:5d911f2d2fecc703be91b2b9b28acc59d34b35f3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #10919 -- Refactored walk_items as module-level _walk_items and added truncated_unordered_list filter.</title>
<updated>2026-04-23T02:22:55Z</updated>
<author>
<name>Rodrigo Vieira</name>
<email>rodrigo.vieira@gmail.com</email>
</author>
<published>2026-04-22T21:53:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=a586f03f36f511064f171c0e30f4ca2ebfd60085'/>
<id>urn:sha1:a586f03f36f511064f171c0e30f4ca2ebfd60085</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #36903 -- Fixed further NameErrors when inspecting functions with deferred annotations.</title>
<updated>2026-02-10T21:51:55Z</updated>
<author>
<name>93578237</name>
<email>43147888+93578237@users.noreply.github.com</email>
</author>
<published>2026-02-09T21:06:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=56ed37e17e5b1a509aa68a0c797dcff34fcc1366'/>
<id>urn:sha1:56ed37e17e5b1a509aa68a0c797dcff34fcc1366</id>
<content type='text'>
Provide a wrapper for safe introspection of user functions on Python 3.14+.

Follow-up to 601914722956cc41f1f2c53972d669ddee6ffc04.
</content>
</entry>
<entry>
<title>Fixed #36783 -- Ensured proper handling of multi-value QueryDicts in querystring template tag.</title>
<updated>2025-12-15T21:58:41Z</updated>
<author>
<name>Marc Gibbons</name>
<email>1726961+marcgibbons@users.noreply.github.com</email>
</author>
<published>2025-12-08T14:42:43Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=922c4cf972e04b1ce7ecee592231106724dcfd09'/>
<id>urn:sha1:922c4cf972e04b1ce7ecee592231106724dcfd09</id>
<content type='text'>
Co-authored-by: Jacob Walls &lt;jacobtylerwalls@gmail.com&gt;
Co-authored-by: Natalia &lt;124304+nessita@users.noreply.github.com&gt;
</content>
</entry>
<entry>
<title>Fixed #36728 -- Validated template tag arguments at definition time.</title>
<updated>2025-12-05T15:06:48Z</updated>
<author>
<name>Jake Howard</name>
<email>git@theorangeone.net</email>
</author>
<published>2025-11-12T17:41:32Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=0ac548635eee801d5de49bec482b7b8e1e97ef59'/>
<id>urn:sha1:0ac548635eee801d5de49bec482b7b8e1e97ef59</id>
<content type='text'>
Before, `context` and `content` were validated at compile time.
</content>
</entry>
<entry>
<title>Fixed #36712 -- Evaluated type annotations lazily in template tag registration.</title>
<updated>2025-12-02T01:48:54Z</updated>
<author>
<name>Jacob Walls</name>
<email>jacobtylerwalls@gmail.com</email>
</author>
<published>2025-11-29T23:45:39Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=34186e731ca20a2344b1f88fd543a854d6b13a00'/>
<id>urn:sha1:34186e731ca20a2344b1f88fd543a854d6b13a00</id>
<content type='text'>
Ideally, this will be reverted when an upstream solution is available for
https://github.com/python/cpython/issues/141560.

Thanks Patrick Rauscher for the report and Augusto Pontes for the
first iteration and test.
</content>
</entry>
<entry>
<title>Refs #35535 -- Used intended decorator in test_simple_block_tag_parens().</title>
<updated>2025-12-01T13:38:27Z</updated>
<author>
<name>Jacob Walls</name>
<email>jacobtylerwalls@gmail.com</email>
</author>
<published>2025-11-30T00:17:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=e94b19f6abdda70689aa17e399ce5fdef7897674'/>
<id>urn:sha1:e94b19f6abdda70689aa17e399ce5fdef7897674</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #36705 -- Added coverage for multiple types of enclosing punctuation in urlize().</title>
<updated>2025-11-21T17:11:38Z</updated>
<author>
<name>Jacob Walls</name>
<email>jacobtylerwalls@gmail.com</email>
</author>
<published>2025-11-21T15:28:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=3f15935420c0f45760804b807a78a26f4ffe28e4'/>
<id>urn:sha1:3f15935420c0f45760804b807a78a26f4ffe28e4</id>
<content type='text'>
This case was inadvertently fixed in ad94446fcc5b50401dd0c48718502d5d1b92df58.
</content>
</entry>
<entry>
<title>Refs #36559, #35667 -- Used skip_file_prefixes in PartialTemplate.source warning.</title>
<updated>2025-09-04T16:14:10Z</updated>
<author>
<name>farhan</name>
<email>farhanalirazaazeemi@gmail.com</email>
</author>
<published>2025-09-04T12:05:03Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=34bd3ed944bf38792c631b55e581963d44d52284'/>
<id>urn:sha1:34bd3ed944bf38792c631b55e581963d44d52284</id>
<content type='text'>
</content>
</entry>
</feed>
