Skip to content

Update dependency djlint to v1.40.6#12

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/djlint-1.x-lockfile
Open

Update dependency djlint to v1.40.6#12
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/djlint-1.x-lockfile

Conversation

@renovate

@renovate renovate Bot commented Apr 4, 2024

Copy link
Copy Markdown

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
djlint 1.3.01.40.6 age confidence

Release Notes

djlint/djLint (djlint)

v1.40.6

Compare Source

Performance and refactoring
  • Replace repeated HTML regex scans with tokenization.

v1.40.5

Compare Source

Fix
  • Avoid false H037 reports when attribute names appear inside quoted values or other attribute names.
  • Preserve template expressions in HTML attribute names when wrapping attributes.
  • Preserve indentation after void tags containing markup in quoted attributes.

v1.40.4

Compare Source

Fix
  • Keep Jinja comments and set tags idempotently indented with preserve_leading_space.
  • Avoid false H026 reports when id appears inside quoted attribute values.
  • Avoid false D018/J018 reports for action parameters inside quoted template URL helper attributes.
  • Report H007 when leading template tags appear before an HTML tag without a preceding doctype.
  • Keep blank_line_after_tag from inserting blank lines inside multiline HTML attribute values, preserving idempotent reformatting for embedded template tags.
  • Report T003 when {% endblock name %} does not match its opening {% block name %}.
  • Report H025 when list tags are nested inside <p> tags.

v1.40.3

Compare Source

Fix
  • Preserve djlint:off blocks inside tag attributes and avoid false H025 orphan reports when a matching tag crosses a djlint:off block boundary.
  • Keep repeated single-line Django {% if %} blocks idempotent after one reformat pass.

v1.40.2

Compare Source

Fix
  • Keep multiline inline-tag indentation when an inline child appears before following text.

v1.40.1

Compare Source

Fix
  • Preserve full djlint:off blocks before formatter passes so ignored template, script, and style content is not rewritten.
  • Preserve inline template blocks embedded in rendered text or captured content so formatting does not add meaningful whitespace or misalign following content.
  • Keep chained Jinja function calls and lookups intact when formatting template expressions.
  • Preserve whitespace-sensitive Django filter blocks instead of moving punctuation or translated text around them.
  • Keep Jinja/Nunjucks-trimmed <textarea> closing tags aligned without reformatting untrimmed textarea contents.

v1.40.0

Compare Source

Feature
  • Add single_attribute_per_line to wrap attributes in a Prettier-like layout using the configured indent.

v1.39.7

Compare Source

Fix
  • Preserve Jinja template comments inside formatted <script> and <style> blocks.

v1.39.6

Compare Source

Fix
  • Avoid false H025 reports for HTML-like strings inside template tags.
  • Preserve Jinja template tags inside formatted <script> and <style> blocks.
Packaging
  • Revise the minimum required dependency versions:
    • click raised from 8.0.1 to 8.2.0
    • cssbeautifier lowered from 1.14.4 to 1.13.0
    • jsbeautifier lowered from 1.14.4 to 1.13.0
    • json5 raised from 0.9.11 to 0.10.0
    • pathspec lowered from 0.12 to 0.9.0
    • pyyaml lowered from 6 to 5.1
    • regex lowered from 2023 to 2021.8.21
    • tomli is lowered from 2.0.1 to 0.2.0

v1.39.5

Compare Source

Fix
  • Return 1 when no files match the requested lint or format run.
  • Make --check - return 1 when formatting changes are needed.
  • Keep progress output off stdin runs.
Performance
  • Defer runtime-only imports until the CLI code paths that need them.
  • Process stdin formatting in memory instead of creating a temporary file.
  • Avoid creating an executor when a run only has one worker.

v1.39.4

Compare Source

Fix
  • Fix crashes in mypyc-compiled wheels.

v1.39.3

Compare Source

Fix
  • Use Click instead of tqdm for progress output, send progress to stderr, respect --quiet, and honor NO_COLOR. Remove direct colorama and tqdm dependencies now that Click handles CLI colors and progress.
  • Avoid false H025 reports after self-closing tags in Django templates.
  • Avoid false H025 reports for multiline Go template attributes.
  • Keep Django child-template reformatting idempotent when inline control blocks also appear inside HTML attributes.
  • Respect whitespace-control dashes when applying blank_line_after_tag and blank_line_before_tag.

v1.39.2

Compare Source

v1.39.1 was not published due to mypyc compilation error.

Packaging
  • Fix mypyc compilation.

v1.39.0

Compare Source

Feature
  • Add preserve_class_newlines / --preserve-class-newlines to keep authored line breaks inside multiline class attributes.
Fix
  • Fix Django 6.0 {% partialdef %} block indentation so {% endpartialdef %} aligns with its opener.
  • Preserve multiline Django/Jinja control-flow blocks instead of condensing short bodies onto one line.
  • Preserve single-line inline HTML and template tag bodies during expansion, even when they exceed max_line_length.

v1.38.2

Compare Source

Fix
  • Fix python -m djlint not working due to mypyc compilation.

v1.38.1

Compare Source

Fix
  • Match exclude paths on path boundaries.

v1.38.0

Compare Source

Feature
  • Add support for .djlint.toml project and global config files.
Fix
  • Preserve single-line inline HTML tag bodies when they fit within max_line_length.
  • Avoid evaluating template expressions while formatting tag contents.
Packaging
  • Fix npm publish workflow.

v1.37.0

Compare Source

Feature
  • Add --format-attribute-js-json for formatting JavaScript and JSON inside HTML attributes. It also supports format_attribute_js_json_pattern and format_attribute_js_json_min_props for tuning which attributes are formatted. Thanks, @​oliverhaas.
  • Add --github-output for GitHub Actions annotations. Thanks, @​iloveitaly.
Fix
  • Fix ignore_blocks matching when ignored blocks are indented. Thanks, @​tdryer.
  • Use relative paths for --exclude and --use-gitignore matching so path filters work consistently from nested directories. Thanks, @​satya-waylit.
  • Stop D018/J018 from flagging root links such as href="/". Thanks, @​SAY-5.
  • Do not treat soft hyphen entities as text for H023. Thanks, @​kotutuloro.
  • Fix Handlebars {{#unless}} indentation. Thanks, @​S1mplePixels.
  • Fix formatting when /> appears inside an HTML attribute value. Thanks, @​novucs.
  • Improve CPU count handling for worker setup.
Performance
  • Improve formatter caching and reduce cache memory usage. Formatting is about 19% faster.
Documentation
Packaging
  • Drop Python 3.9 support.

v1.36.4

Compare Source

  • Fix specific mixture of quotes and escaped quotes (e.g. in a json string in an html attribute) breaks the html. Thanks, @​oliverhaas.
  • Fix broken formatting of template tags inside template tags. Thanks, @​oliverhass.

v1.36.3

Compare Source

This release reverts the following changes from the last release as they caused issues:

  • Fix specific mixture of quotes and escaped quotes (e.g. in a json string in an html attribute) breaks the html. Issue #​1048.
  • Resolve exclude paths. Issue #​1047.

v1.36.2

Compare Source

Fix:

  • Fix specific mixture of quotes and escaped quotes (e.g. in a json string in an html attribute) breaks the html. Thanks, @​oliverhaas.
  • Resolve exclude paths. Thanks, @​antoineauger.

Performance:

v1.36.1

Compare Source

v1.36.0

Compare Source

Feature
  • Add support for djlint.toml config file. The format is identical to pyproject.toml, but it does not use [tool.djlint] table.
Fix
  • Do not format HTML in attributes. Thanks, @​oliverhaas.
  • Fix using js_config instead of css_config.
Performance
  • Increase performance by ~30% by using regex more efficiently and caching more stuff.

v1.35.4

Compare Source

Compiled mypyc wheels are now also available, which improve performance by ~21% over Pure Python. They will be automatically installed by your package manager when available for your platform. Pure Python wheel is still available.

Other changes have been made to improve performance, thanks to @​JCWasmx86. See the commits for more details.

Formatting performance comparison with the previous version (tested on https://github.com/openedx/edx-platform with single thread):

Version Seconds
v1.35.3 20.39
v1.35.4 pure Python 14.39
v1.35.4 compiled 11.35

v1.35.3

Compare Source

Compiled mypyc wheels are now also available, which improve performance by ~21% over Pure Python. They will be automatically installed by your package manager when available for your platform. Pure Python wheel is still available.

Other changes have been made to improve performance, thanks to @​JCWasmx86. See the commits for more details.

Formatting performance comparison with the previous version (tested on https://github.com/openedx/edx-platform with single thread):

Version Seconds
v1.35.3 20.39
v1.35.4 pure Python 14.39
v1.35.4 compiled 11.35

v1.35.2

Compare Source

  • Fix npm publishing

v1.35.1

Compare Source

  • Fix npm publishing

v1.35.0

Compare Source

  • Unpin dependencies upper bounds.
  • Use min(cpu_count, files_count, 4) workers. Use a thread instead of a process if only one worker will be used. This gives the best performance and low resource usage.
  • Refactor the code.
  • Fix max attribute length with longer regex custom html tags (#​884)
  • Fix Jinja formatting issues (#​715)
  • Fix: not detecting tabs as a valid seperation between tags (#​813)
  • Fix: Add ignore for sms links (#​815)
  • Fix: Allow attributes on <title> (#​830)

v1.34.2

Compare Source

Bug Fixes
  • max attribute length with longer regex custom html tags (#​884) (a8e3835)

v1.34.1

Compare Source

Bug Fixes
  • formatter: Avoid rewriting the file if it has not been changed (6965ba5)
  • linter: fix missed H025 for double closing (cf52faf), closes #​786

v1.34.0

Compare Source

Bug Fixes
  • configuration: Fix formatting, unused import and forgotten print (f6dbef2)
Features
  • configuration: Accept pyproject.toml as a --configuration argument (d8a059a)

v1.33.0

Compare Source

Bug Fixes
  • formatter: fixed extra breaks added around html tags inside template tags (6091ffb), closes #​742
  • formatter: fixed extra indend in script tags (9d04d51), closes #​733
  • formatter: fixed formatting on functions that used python keywords as the param name (183a7c0), closes #​756
  • h033: fix rull to not match data-action (f6881e0)
  • linter: fixed false positive on DJ018 (78d81dc), closes #​755
Features
  • formatter: added support for nunjucks async loop tags (5a32bb3)

v1.32.1

Compare Source

Bug Fixes

v1.32.0

Compare Source

Bug Fixes
  • formatter: fixed formatting on chained function (7c2756d), closes #​704
  • linter: fixed false positive on h026 data-id (400882a), closes #​711
  • linter: fixed golang false positive on T027 (232f4bc), closes #​712
Features
  • formatter: added support for jazzband's sorl-thumbnail tags (86122dc), closes #​714

v1.31.1

Compare Source

Bug Fixes
  • formatter: fixed formatter formatting ignored code (5c75d87), closes #​655
  • formatter: fixed function formatting with nested quoted parenthesis (6d63a6a), closes #​698
  • formatter: fixed overgrabbing on template tag condensing (75c3134), closes #​686
  • formatter: function index was not formatted correctly (a197200), closes #​693

v1.31.0

Compare Source

Bug Fixes
  • formatter: fixed line_break_after_multiline_tag to force break in all cases (3b37ec8), closes #​680
  • formatter: fixed isolated quotes being deleted from attributes (19425f9), closes #​652
  • formatter: fixed wild match on template tags (d288b78), closes #​686
  • linter: fixed false positive on t001 (1caf4c4), closes #​606
Features
  • formatter: added max-blank-lines flag to consolidate blank lines (4a7897f), closes #​675
  • formatter: added support for symphony forms (e716ddc), closes #​476

v1.30.2

Compare Source

Bug Fixes
  • formatter: added quotes to json keys, added option to disable set/function formatting (6f7df03), closes #​682

v1.30.1

Compare Source

Bug Fixes

v1.30.0

Compare Source

Bug Fixes
  • formatter: fixed endset indent level (cdebe42), closes #​670
  • formatter: fixed issue with spaceless macro tags having spacess added before - (5593937), closes #​667
  • npm: install exact version of djlint (0727279)
Features
  • npm: add script to update djlint version in postinstall using semantic-release/exec (040ffc6)

v1.29.0

Compare Source

Bug Fixes
  • formatter: fix cases where ignore was still formatting set and function code (ab878ea), closes #​659
  • formatter: fix extra parenth being added in a function call (faba4f4), closes #​660
  • linter: fixed missing positive on a few <img rules (5f33d08)
Features
  • formatter: added option to disable newlines after yaml front matter (9bf64ac), closes #​662
  • linter: allow codes to be ignored for remainder of file (4637a0f), closes #​655

v1.28.0

Compare Source

Bug Fixes
  • formatter: allow djlint:off to exluce the rest of a file (17faf5f), closes #​649
  • formatter: don't add blank line to empty files (8ea5fd2), closes #​635
Features
  • formatter: added ability to format objects/arrays in function tags (d446efc), closes #​370
  • formatter: format set blocks (d88371c), closes #​646

v1.27.2

Compare Source

Bug Fixes
  • formatter: fixed an edge case wild regex grab (0d57e75), closes #​640
  • formatter: fixed formatting of plural tag in blocktrans (92c083b), closes #​641
  • formatter: fixed js/css being formatted even inside ignored blocks (cbf5796), closes #​613
  • linter: fixed a few false positives/missing positives, added tests (30f8d31), closes #​643 #​642
  • linter: fixed false postive in alpinejs tags for H037 (6520f63), closes #​639

v1.27.1

Compare Source

Bug Fixes

v1.27.0

Compare Source

Bug Fixes
  • linter: fixed overly greedy H037, improved linter tests (66c9187), closes #​631
Features
  • formatter: Add option to not condense multi-line-tags (4973a32)

v1.26.0

Compare Source

Bug Fixes
  • blocktrans: fixes whitespace issues on blocktrans, allows indenting on blocktrans trimmed (249c8e8), closes #​623
Features
  • formatter: added white space cleanup for template tags (13d0d4f), closes #​485
  • linter: added rule H037 (6048c46)
  • void tags: added option to auto close void tags (linter rule H017) (9050d30), closes #​252

v1.25.1

Compare Source

Bug Fixes

v1.25.0

Compare Source

Bug Fixes
  • formatter: fixed extra indent on endblocktrans tags (35e1041), closes #​611
Features

v1.24.0

Compare Source

Features
  • formatter: added option to prevent contents of some template tags from indenting (cc196d3)

v1.23.3

Compare Source

Bug Fixes

v1.23.2

Compare Source

Bug Fixes
  • blocktrans: fix issue with back to back blocktrans formatting (703e176), closes #​600

v1.23.1

Compare Source

Bug Fixes
  • yaml: fixed conflict with yaml and preserve_blank_lines option (b89fb07), closes #​596

v1.23.0

Compare Source

Features
  • formatter: will now attempt to fix case on known html tags by default, can be disabled (fb1f6eb), closes #​589

v1.22.0

Compare Source

Features
  • whitespace: improved whitespace handling on tag closing bracket (53d9b29), closes #​582

v1.21.0

Compare Source

Features
  • linter: added rule H036. Avoid use of
    tags. Disabled by default (cefa840), closes #​571

v1.20.0

Compare Source

Features
  • linter: added option to disable rules by default. Split H017 and disabled by default (2dd3675), closes #​372
  • yaml: added line break after yaml front matter (1b1cff3), closes #​584

v1.19.17

Compare Source

Bug Fixes
  • blocktrans: allowed closing transblocks to be indented if they have a leading space (d667273)
  • custom tags: fixed issue where end tag for custom block was not de-indented (fb8bf5e), closes #​572
  • ignored code: fixed formatting of ignore code inside django comment blocks (120460d), closes #​569
  • linter: linter will now ignore {% raw %} {% endraw %} blocks (2a6865e), closes #​539
  • max line length: fixes issues around max line length not fully respected on indented lines (1ec6b29), closes #​580
  • preserving space: misc improvements for the preserve leading space option (03ee6f0), closes #​566

v1.19.16

Compare Source

Bug Fixes
  • ignored rules: prevent ignoring a single rule from ignoring multiple (2c9caaf), closes #​560

v1.19.15

Compare Source

Bug Fixes
  • formatter: fixed template tag formatting with trailing parenthesis (24d0b82), closes #​554

v1.19.14

Compare Source

Bug Fixes
  • config: added error message print when config loading fails (e21fa29), closes #​531

v1.19.13

Compare Source

Bug Fixes
  • handlebars each: fixed bug in handlebars tags w/ trailing pipe (9d42baf), closes #​529

v1.19.12

Compare Source

Bug Fixes

v1.19.11

Compare Source

Bug Fixes

v1.19.10

Compare Source

Bug Fixes
  • check: fixed issue where check was reformatting files that contained a hyphen in the name (9812f60), closes #​494

v1.19.9

Compare Source

Bug Fixes
  • stdin --check: stdin with the --check flag should return a formatted output (57e1eec), closes #​486

v1.19.8

Compare Source

Bug Fixes
  • attributes: fixed outer quotes being stripped from attribute values (dff02dc), closes #​471
  • settings: fixed pyproject loader (5890161), closes #​469
  • textarea: fixed textarea attribute formatting (e7c904e), closes #​486

v1.19.7

Compare Source

Bug Fixes
  • formatter: fixed a few broken alpinejs attributes (6c2d843), closes #​448

v1.19.6

Compare Source

Bug Fixes
  • css/js: fixed extra blank lines being appended to blank lines in css/js formatter (10e593f), closes #​451

v1.19.5

Compare Source

Bug Fixes
  • linter: make attribute pattern on H025 more accepting. Prevent false positive (1bd0bf7), closes #​447

v1.19.4

Compare Source

Bug Fixes

v1.19.3

Compare Source

Bug Fixes
  • formatter: fixed poor formatting on long inline blocks (62a8879), closes #​432

v1.19.2

Compare Source

Bug Fixes
  • windows+py3.9: fixed an issue on windows with py3.9 and stdin (280e1fc)

v1.19.1

Compare Source

Bug Fixes
  • formatter: fixed indent on inline block followed by inline template block (4a0bee6), closes #​425

v1.19.0

Compare Source

Bug Fixes
  • formatter: fixed formatting on nested inline comments (a86df43), closes #​423
Features
  • configuration: allow local configuration to override global config (b4cbcb4), closes #​422

v1.18.0

Compare Source

Features
  • quiet: updated output of the --quiet flag to reduce unneeded verbose stuff (b53f670)

v1.17.3

Compare Source

Bug Fixes
  • linter: fixed false positive on H017. Added test (17ff881), closes #​406
  • linter: fixed false positive on T002. Added tests (67e8c64), closes #​405

v1.17.2

Compare Source

Bug Fixes
  • formatter: fixed issue with blank links added between blocks (31161ce), closes #​402

v1.17.1

Compare Source

Bug Fixes
  • formatter: fixed poor indentation on span tags with leading text (8f36fec), closes #​398
  • t002: fixed false positive in t002. Added test (e23ee46), closes #​399

v1.17.0

Compare Source

Features
  • stats: moved linter stats to be appended to lint output (90f023d), closes #​396

v1.16.0

Compare Source

Bug Fixes
Features
  • linter: added --statistics flag to print summary of linter findings (489decb), closes #​389

v1.15.0

Compare Source

Bug Fixes
  • formatter: fixed formatting of repeating inline tags (d31ce52), closes #​387
Features
  • linter t034: added linter T034 to check for {% ... }% typo (ecb95bb), closes #​385
  • linter: t002 added a few more tags to the check (532c5b8), closes #​386

v1.14.2

Compare Source

Bug Fixes
  • span: fixed indent on nested inline tags on a span (4ac5fd0), closes #​383

v1.14.1

Compare Source

Bug Fixes
  • alpine js: fix incorrect indent on alpinejs attribs w/ nested HTML (f0d37a5), closes #​381

v1.14.0

Compare Source

Features
  • config: allow source files to be specified in the config file (bbcde2b), closes #​371

v1.13.0

Compare Source

Features
  • config: added option for cust

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • 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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from d962b59 to a37e539 Compare August 28, 2024 13:57
@renovate renovate Bot changed the title chore(deps): update dependency djlint to v1.34.1 chore(deps): update dependency djlint to v1.34.2 Aug 28, 2024
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from a37e539 to ca16264 Compare August 29, 2024 10:54
@renovate renovate Bot changed the title chore(deps): update dependency djlint to v1.34.2 chore(deps): update dependency djlint to v1.35.2 Aug 29, 2024
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from ca16264 to 2b87940 Compare October 30, 2024 11:33
@renovate renovate Bot changed the title chore(deps): update dependency djlint to v1.35.2 chore(deps): update dependency djlint to v1.35.3 Oct 30, 2024
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 2b87940 to 08874ed Compare November 1, 2024 09:17
@renovate renovate Bot changed the title chore(deps): update dependency djlint to v1.35.3 chore(deps): update dependency djlint to v1.35.4 Nov 1, 2024
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 08874ed to e0e026e Compare November 5, 2024 06:23
@renovate renovate Bot changed the title chore(deps): update dependency djlint to v1.35.4 chore(deps): update dependency djlint to v1.36.0 Nov 5, 2024
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from e0e026e to 14f9a76 Compare November 7, 2024 07:16
@renovate renovate Bot changed the title chore(deps): update dependency djlint to v1.36.0 chore(deps): update dependency djlint to v1.36.1 Nov 7, 2024
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 14f9a76 to 954ccb6 Compare November 28, 2024 09:27
@renovate renovate Bot changed the title chore(deps): update dependency djlint to v1.36.1 chore(deps): update dependency djlint to v1.36.2 Nov 28, 2024
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 954ccb6 to 7880497 Compare November 29, 2024 09:27
@renovate renovate Bot changed the title chore(deps): update dependency djlint to v1.36.2 chore(deps): update dependency djlint to v1.36.3 Nov 29, 2024
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 7880497 to d88b8be Compare December 24, 2024 14:17
@renovate renovate Bot changed the title chore(deps): update dependency djlint to v1.36.3 chore(deps): update dependency djlint to v1.36.4 Dec 24, 2024
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from d88b8be to 6f0aacf Compare August 10, 2025 13:31
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 6f0aacf to d0a9b5c Compare August 19, 2025 14:06
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from d0a9b5c to c2d5e1f Compare November 18, 2025 23:53
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from c2d5e1f to 5630eea Compare February 2, 2026 17:47
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 5630eea to d321648 Compare March 13, 2026 14:05
@renovate renovate Bot changed the title chore(deps): update dependency djlint to v1.36.4 Update dependency djlint to v1.36.4 Apr 8, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from d321648 to f5a3135 Compare April 30, 2026 16:55
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from f5a3135 to 040c9c7 Compare May 12, 2026 10:05
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 040c9c7 to 551db56 Compare June 4, 2026 16:39
@renovate renovate Bot changed the title Update dependency djlint to v1.36.4 Update dependency djlint to v1.37.0 Jun 4, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 551db56 to cd15838 Compare June 4, 2026 21:46
@renovate renovate Bot changed the title Update dependency djlint to v1.37.0 Update dependency djlint to v1.38.0 Jun 4, 2026
@renovate renovate Bot changed the title Update dependency djlint to v1.38.1 Update dependency djlint to v1.38.2 Jun 5, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 88cbc6a to 0dae9f2 Compare June 5, 2026 21:30
@renovate renovate Bot changed the title Update dependency djlint to v1.38.2 Update dependency djlint to v1.39.0 Jun 5, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 0dae9f2 to 39970eb Compare June 11, 2026 15:39
@renovate renovate Bot changed the title Update dependency djlint to v1.39.0 Update dependency djlint to v1.39.2 Jun 11, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 39970eb to 5bf2144 Compare June 23, 2026 21:38
@renovate renovate Bot changed the title Update dependency djlint to v1.39.2 Update dependency djlint to v1.39.3 Jun 23, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 5bf2144 to 2d3f01a Compare June 24, 2026 01:15
@renovate renovate Bot changed the title Update dependency djlint to v1.39.3 Update dependency djlint to v1.39.4 Jun 24, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 2d3f01a to 575563d Compare June 29, 2026 03:42
@renovate renovate Bot changed the title Update dependency djlint to v1.39.4 Update dependency djlint to v1.39.5 Jun 29, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 575563d to ca25e87 Compare June 30, 2026 17:09
@renovate renovate Bot changed the title Update dependency djlint to v1.39.5 Update dependency djlint to v1.39.6 Jun 30, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from ca25e87 to b520f30 Compare July 1, 2026 00:46
@renovate renovate Bot changed the title Update dependency djlint to v1.39.6 Update dependency djlint to v1.39.7 Jul 1, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from b520f30 to acba93b Compare July 1, 2026 21:48
@renovate renovate Bot changed the title Update dependency djlint to v1.39.7 Update dependency djlint to v1.40.0 Jul 1, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from acba93b to b53f73a Compare July 2, 2026 02:53
@renovate renovate Bot changed the title Update dependency djlint to v1.40.0 Update dependency djlint to v1.40.1 Jul 2, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from b53f73a to 994c997 Compare July 3, 2026 01:39
@renovate renovate Bot changed the title Update dependency djlint to v1.40.1 Update dependency djlint to v1.40.2 Jul 3, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 994c997 to 9655bd5 Compare July 4, 2026 13:06
@renovate renovate Bot changed the title Update dependency djlint to v1.40.2 Update dependency djlint to v1.40.3 Jul 4, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 9655bd5 to 4447aa4 Compare July 8, 2026 02:49
@renovate renovate Bot changed the title Update dependency djlint to v1.40.3 Update dependency djlint to v1.40.4 Jul 8, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 4447aa4 to 8be207d Compare July 12, 2026 12:59
@renovate renovate Bot changed the title Update dependency djlint to v1.40.4 Update dependency djlint to v1.40.5 Jul 12, 2026
@renovate renovate Bot force-pushed the renovate/djlint-1.x-lockfile branch from 8be207d to aabb48b Compare July 13, 2026 11:38
@renovate renovate Bot changed the title Update dependency djlint to v1.40.5 Update dependency djlint to v1.40.6 Jul 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants