Loading .cliff.git.tomldeleted 100644 → 0 +0 −65 Original line number Diff line number Diff line [changelog] # changelog header header = """ # Changelog\n All notable changes to this project will be documented in this file.\n """ # template for the changelog body # https://keats.github.io/tera/docs/#introduction body = """ {% if version %}\ ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} {% else %}\ ## [unreleased] {% endif %}\ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | striptags | trim | upper_first }} {% for commit in commits %} - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ {% if commit.breaking %}[**breaking**] {% endif %}\ {{ commit.message | upper_first }}\ {% endfor %} {% endfor %}\n """ # template for the changelog footer footer = """ <!-- generated by git-cliff --> """ # remove the leading and trailing s trim = true [git] # parse the commits based on https://www.conventionalcommits.org conventional_commits = true # filter out the commits that are not conventional filter_unconventional = true # process each line of a commit as an individual commit split_commits = false # regex for parsing and grouping commits commit_parsers = [ { message = "^feat", group = "<!-- 0 -->🚀 Features" }, { message = "^fix|^bugfix|^hotfix", group = "<!-- 1 -->🐛 Bug Fixes" }, { message = "^refactor", group = "<!-- 2 -->🚜 Refactor" }, { message = "^doc.*update changelog.*", group = "<!-- 3 -->📚 Documentation", skip = true }, { message = "^doc", group = "<!-- 3 -->📚 Documentation" }, { message = "^perf", group = "<!-- 4 -->⚡ Performance" }, { message = "^style", group = "<!-- 5 -->🎨 Styling" }, { message = "^test", group = "<!-- 6 -->🧪 Testing" }, { message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks", skip = true }, { body = ".*security", group = "<!-- 8 -->🛡️ Security" }, { message = "^revert", group = "<!-- 9 -->◀️ Revert" }, { message = "^chore\\(release\\): prepare for", skip = true }, { message = "^chore\\(deps.*\\)", skip = true }, { message = "^chore\\(pr\\)", skip = true }, { message = "^chore\\(pull\\)", skip = true }, ] # protect breaking changes from being skipped due to matching a skipping commit_parser protect_breaking_commits = true # filter out the commits that are not matched by commit parsers filter_commits = true # sort the tags topologically topo_order = false # sort the commits inside sections by oldest/newest order sort_commits = "newest" # limit the number of commits included in the changelog. limit_commits = 100000 .cliff.release.tomldeleted 100644 → 0 +0 −51 Original line number Diff line number Diff line [changelog] # template for the changelog body # https://keats.github.io/tera/docs/#introduction body = """ {% for group, commits in commits | group_by(attribute="group") %} ## {{ group | striptags | trim | upper_first }} {% for commit in commits %} - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ {% if commit.breaking %}[**breaking**] {% endif %}\ {{ commit.message | upper_first }}\ {% endfor %} {% endfor %} """ # remove the leading and trailing s trim = true [git] # parse the commits based on https://www.conventionalcommits.org conventional_commits = true # filter out the commits that are not conventional filter_unconventional = true # process each line of a commit as an individual commit split_commits = false # regex for parsing and grouping commits commit_parsers = [ { message = "^feat", group = "<!-- 0 -->🚀 Features" }, { message = "^fix|^bugfix|^hotfix", group = "<!-- 1 -->🐛 Bug Fixes" }, { message = "^refactor", group = "<!-- 2 -->🚜 Refactor" }, { message = "^doc.*update changelog.*", group = "<!-- 3 -->📚 Documentation", skip = true }, { message = "^doc", group = "<!-- 3 -->📚 Documentation" }, { message = "^perf", group = "<!-- 4 -->⚡ Performance" }, { message = "^style", group = "<!-- 5 -->🎨 Styling" }, { message = "^test", group = "<!-- 6 -->🧪 Testing" }, { message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks", skip = true }, { body = ".*security", group = "<!-- 8 -->🛡️ Security" }, { message = "^revert", group = "<!-- 9 -->◀️ Revert" }, { message = "^chore\\(release\\): prepare for", skip = true }, { message = "^chore\\(deps.*\\)", skip = true }, { message = "^chore\\(pr\\)", skip = true }, { message = "^chore\\(pull\\)", skip = true }, ] # protect breaking changes from being skipped due to matching a skipping commit_parser protect_breaking_commits = true # filter out the commits that are not matched by commit parsers filter_commits = true # sort the tags topologically topo_order = false # sort the commits inside sections by oldest/newest order sort_commits = "newest" # limit the number of commits included in the changelog. limit_commits = 100000 CHANGELOG.mddeleted 100644 → 0 +0 −380 Original line number Diff line number Diff line # Changelog All notable changes to this project will be documented in this file. ## [0.1.22] - 2025-10-03 ### 🚜 Refactor - Update Browserslist db ## [0.1.21] - 2025-09-30 ### 🚜 Refactor - Update Browserslist db ## [0.1.20] - 2025-09-30 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.1.19] - 2025-09-09 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db ## [0.1.18] - 2025-07-16 ### 🚜 Refactor - Update Browserslist db ## [0.1.17] - 2025-06-25 ### 🚜 Refactor - Update Browserslist db ## [0.1.16] - 2025-06-20 ### 🚜 Refactor - Update Browserslist db ## [0.1.15] - 2025-06-13 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.1.14] - 2025-06-04 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.1.13] - 2025-05-17 ### 🚜 Refactor - Update Browserslist db ## [0.1.12] - 2025-05-05 ### 🚜 Refactor - Update Browserslist db ## [0.1.11] - 2025-05-01 ### 🚜 Refactor - Update Browserslist db ## [0.1.10] - 2025-04-21 ### 🚜 Refactor - Update Browserslist db ## [0.1.9] - 2025-04-16 ### 🚜 Refactor - Update Browserslist db ## [0.1.8] - 2025-04-13 ### 🚜 Refactor - Update Browserslist db ## [0.1.7] - 2025-04-07 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db ## [0.1.6] - 2025-03-23 ### 🚜 Refactor - Update Browserslist db ## [0.1.5] - 2025-03-18 ### 🚜 Refactor - Update Browserslist db ## [0.1.4] - 2025-03-16 ### 🚜 Refactor - Update Browserslist db ## [0.1.3] - 2025-03-13 ### 🚜 Refactor - Update Browserslist db ## [0.1.2] - 2025-03-12 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db - Update Browserslist db ## [0.1.1] - 2025-02-20 ### 🚜 Refactor - Readme ## [0.0.59] - 2025-02-17 ### 🚜 Refactor - Update Browserslist db ## [0.0.58] - 2025-02-09 ### 🚜 Refactor - Update Browserslist db ## [0.0.57] - 2025-02-07 ### 🚜 Refactor - Update Browserslist db ## [0.0.56] - 2025-02-04 ### 🚜 Refactor - Update Browserslist db ## [0.0.55] - 2025-01-30 ### 🚜 Refactor - Dockerfile mount ## [0.0.54] - 2025-01-29 ### 🚜 Refactor - Update Browserslist db ## [0.0.53] - 2025-01-19 ### 🚜 Refactor - Update Browserslist db ## [0.0.52] - 2025-01-10 ### 🚜 Refactor - Update Browserslist db ## [0.0.51] - 2024-12-19 ### 🚜 Refactor - Dockerignore ## [0.0.50] - 2024-12-19 ### 🚜 Refactor - Update Browserslist db ## [0.0.49] - 2024-12-18 ### 🚜 Refactor - Remove unused - Dockerfile ## [0.0.48] - 2024-12-18 ### 🚜 Refactor - Dockerfile with versions for Dependabot ## [0.0.47] - 2024-12-16 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.0.46] - 2024-12-07 ### 🚜 Refactor - Update Browserslist db ## [0.0.45] - 2024-12-03 ### 🚜 Refactor - Update Browserslist db ## [0.0.44] - 2024-12-02 ### 🚜 Refactor - Update Browserslist db ## [0.0.43] - 2024-11-24 ### 🚜 Refactor - Update Browserslist db ## [0.0.42] - 2024-11-21 ### 🚜 Refactor - Update Browserslist db ## [0.0.41] - 2024-11-12 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.0.40] - 2024-11-07 ### 🚜 Refactor - Update Browserslist db ## [0.0.39] - 2024-11-04 ### 🚜 Refactor - Update Browserslist db ## [0.0.38] - 2024-10-31 ### 🚜 Refactor - Update Browserslist db ## [0.0.37] - 2024-10-31 ### 🚜 Refactor - Update Browserslist db ## [0.0.36] - 2024-10-30 ### 🚜 Refactor - Update Browserslist db ## [0.0.35] - 2024-10-28 ### 🚜 Refactor - Update Browserslist db ## [0.0.34] - 2024-10-28 ### 🚜 Refactor - Update Browserslist db ## [0.0.33] - 2024-10-27 ### 🚜 Refactor - Update Browserslist db ## [0.0.32] - 2024-10-16 ### 🚜 Refactor - Update Browserslist db ## [0.0.31] - 2024-10-14 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.0.30] - 2024-10-03 ### 🚜 Refactor - Update Browserslist db ## [0.0.29] - 2024-09-26 ### 🚜 Refactor - Update Browserslist db ## [0.0.28] - 2024-09-24 ### 🚜 Refactor - Update Browserslist db ## [0.0.26] - 2024-09-19 ### 🚜 Refactor - Update Browserslist db ## [0.0.24] - 2024-09-09 ### 🐛 Bug Fixes - DCO for update-browserlist-db.yaml (#105) ## [0.0.22] - 2024-08-27 ### 🐛 Bug Fixes - Update dependencies ## [0.0.21] - 2024-08-06 ### 🐛 Bug Fixes - Trigger (#91) ## [0.0.20] - 2024-08-06 ### 🐛 Bug Fixes - Dockerfile envs (#89) ## [0.0.1] - 2023-12-28 <!-- generated by git-cliff --> Loading
.cliff.git.tomldeleted 100644 → 0 +0 −65 Original line number Diff line number Diff line [changelog] # changelog header header = """ # Changelog\n All notable changes to this project will be documented in this file.\n """ # template for the changelog body # https://keats.github.io/tera/docs/#introduction body = """ {% if version %}\ ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} {% else %}\ ## [unreleased] {% endif %}\ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | striptags | trim | upper_first }} {% for commit in commits %} - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ {% if commit.breaking %}[**breaking**] {% endif %}\ {{ commit.message | upper_first }}\ {% endfor %} {% endfor %}\n """ # template for the changelog footer footer = """ <!-- generated by git-cliff --> """ # remove the leading and trailing s trim = true [git] # parse the commits based on https://www.conventionalcommits.org conventional_commits = true # filter out the commits that are not conventional filter_unconventional = true # process each line of a commit as an individual commit split_commits = false # regex for parsing and grouping commits commit_parsers = [ { message = "^feat", group = "<!-- 0 -->🚀 Features" }, { message = "^fix|^bugfix|^hotfix", group = "<!-- 1 -->🐛 Bug Fixes" }, { message = "^refactor", group = "<!-- 2 -->🚜 Refactor" }, { message = "^doc.*update changelog.*", group = "<!-- 3 -->📚 Documentation", skip = true }, { message = "^doc", group = "<!-- 3 -->📚 Documentation" }, { message = "^perf", group = "<!-- 4 -->⚡ Performance" }, { message = "^style", group = "<!-- 5 -->🎨 Styling" }, { message = "^test", group = "<!-- 6 -->🧪 Testing" }, { message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks", skip = true }, { body = ".*security", group = "<!-- 8 -->🛡️ Security" }, { message = "^revert", group = "<!-- 9 -->◀️ Revert" }, { message = "^chore\\(release\\): prepare for", skip = true }, { message = "^chore\\(deps.*\\)", skip = true }, { message = "^chore\\(pr\\)", skip = true }, { message = "^chore\\(pull\\)", skip = true }, ] # protect breaking changes from being skipped due to matching a skipping commit_parser protect_breaking_commits = true # filter out the commits that are not matched by commit parsers filter_commits = true # sort the tags topologically topo_order = false # sort the commits inside sections by oldest/newest order sort_commits = "newest" # limit the number of commits included in the changelog. limit_commits = 100000
.cliff.release.tomldeleted 100644 → 0 +0 −51 Original line number Diff line number Diff line [changelog] # template for the changelog body # https://keats.github.io/tera/docs/#introduction body = """ {% for group, commits in commits | group_by(attribute="group") %} ## {{ group | striptags | trim | upper_first }} {% for commit in commits %} - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ {% if commit.breaking %}[**breaking**] {% endif %}\ {{ commit.message | upper_first }}\ {% endfor %} {% endfor %} """ # remove the leading and trailing s trim = true [git] # parse the commits based on https://www.conventionalcommits.org conventional_commits = true # filter out the commits that are not conventional filter_unconventional = true # process each line of a commit as an individual commit split_commits = false # regex for parsing and grouping commits commit_parsers = [ { message = "^feat", group = "<!-- 0 -->🚀 Features" }, { message = "^fix|^bugfix|^hotfix", group = "<!-- 1 -->🐛 Bug Fixes" }, { message = "^refactor", group = "<!-- 2 -->🚜 Refactor" }, { message = "^doc.*update changelog.*", group = "<!-- 3 -->📚 Documentation", skip = true }, { message = "^doc", group = "<!-- 3 -->📚 Documentation" }, { message = "^perf", group = "<!-- 4 -->⚡ Performance" }, { message = "^style", group = "<!-- 5 -->🎨 Styling" }, { message = "^test", group = "<!-- 6 -->🧪 Testing" }, { message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks", skip = true }, { body = ".*security", group = "<!-- 8 -->🛡️ Security" }, { message = "^revert", group = "<!-- 9 -->◀️ Revert" }, { message = "^chore\\(release\\): prepare for", skip = true }, { message = "^chore\\(deps.*\\)", skip = true }, { message = "^chore\\(pr\\)", skip = true }, { message = "^chore\\(pull\\)", skip = true }, ] # protect breaking changes from being skipped due to matching a skipping commit_parser protect_breaking_commits = true # filter out the commits that are not matched by commit parsers filter_commits = true # sort the tags topologically topo_order = false # sort the commits inside sections by oldest/newest order sort_commits = "newest" # limit the number of commits included in the changelog. limit_commits = 100000
CHANGELOG.mddeleted 100644 → 0 +0 −380 Original line number Diff line number Diff line # Changelog All notable changes to this project will be documented in this file. ## [0.1.22] - 2025-10-03 ### 🚜 Refactor - Update Browserslist db ## [0.1.21] - 2025-09-30 ### 🚜 Refactor - Update Browserslist db ## [0.1.20] - 2025-09-30 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.1.19] - 2025-09-09 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db ## [0.1.18] - 2025-07-16 ### 🚜 Refactor - Update Browserslist db ## [0.1.17] - 2025-06-25 ### 🚜 Refactor - Update Browserslist db ## [0.1.16] - 2025-06-20 ### 🚜 Refactor - Update Browserslist db ## [0.1.15] - 2025-06-13 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.1.14] - 2025-06-04 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.1.13] - 2025-05-17 ### 🚜 Refactor - Update Browserslist db ## [0.1.12] - 2025-05-05 ### 🚜 Refactor - Update Browserslist db ## [0.1.11] - 2025-05-01 ### 🚜 Refactor - Update Browserslist db ## [0.1.10] - 2025-04-21 ### 🚜 Refactor - Update Browserslist db ## [0.1.9] - 2025-04-16 ### 🚜 Refactor - Update Browserslist db ## [0.1.8] - 2025-04-13 ### 🚜 Refactor - Update Browserslist db ## [0.1.7] - 2025-04-07 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db - Update Browserslist db - Update Browserslist db ## [0.1.6] - 2025-03-23 ### 🚜 Refactor - Update Browserslist db ## [0.1.5] - 2025-03-18 ### 🚜 Refactor - Update Browserslist db ## [0.1.4] - 2025-03-16 ### 🚜 Refactor - Update Browserslist db ## [0.1.3] - 2025-03-13 ### 🚜 Refactor - Update Browserslist db ## [0.1.2] - 2025-03-12 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db - Update Browserslist db ## [0.1.1] - 2025-02-20 ### 🚜 Refactor - Readme ## [0.0.59] - 2025-02-17 ### 🚜 Refactor - Update Browserslist db ## [0.0.58] - 2025-02-09 ### 🚜 Refactor - Update Browserslist db ## [0.0.57] - 2025-02-07 ### 🚜 Refactor - Update Browserslist db ## [0.0.56] - 2025-02-04 ### 🚜 Refactor - Update Browserslist db ## [0.0.55] - 2025-01-30 ### 🚜 Refactor - Dockerfile mount ## [0.0.54] - 2025-01-29 ### 🚜 Refactor - Update Browserslist db ## [0.0.53] - 2025-01-19 ### 🚜 Refactor - Update Browserslist db ## [0.0.52] - 2025-01-10 ### 🚜 Refactor - Update Browserslist db ## [0.0.51] - 2024-12-19 ### 🚜 Refactor - Dockerignore ## [0.0.50] - 2024-12-19 ### 🚜 Refactor - Update Browserslist db ## [0.0.49] - 2024-12-18 ### 🚜 Refactor - Remove unused - Dockerfile ## [0.0.48] - 2024-12-18 ### 🚜 Refactor - Dockerfile with versions for Dependabot ## [0.0.47] - 2024-12-16 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.0.46] - 2024-12-07 ### 🚜 Refactor - Update Browserslist db ## [0.0.45] - 2024-12-03 ### 🚜 Refactor - Update Browserslist db ## [0.0.44] - 2024-12-02 ### 🚜 Refactor - Update Browserslist db ## [0.0.43] - 2024-11-24 ### 🚜 Refactor - Update Browserslist db ## [0.0.42] - 2024-11-21 ### 🚜 Refactor - Update Browserslist db ## [0.0.41] - 2024-11-12 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.0.40] - 2024-11-07 ### 🚜 Refactor - Update Browserslist db ## [0.0.39] - 2024-11-04 ### 🚜 Refactor - Update Browserslist db ## [0.0.38] - 2024-10-31 ### 🚜 Refactor - Update Browserslist db ## [0.0.37] - 2024-10-31 ### 🚜 Refactor - Update Browserslist db ## [0.0.36] - 2024-10-30 ### 🚜 Refactor - Update Browserslist db ## [0.0.35] - 2024-10-28 ### 🚜 Refactor - Update Browserslist db ## [0.0.34] - 2024-10-28 ### 🚜 Refactor - Update Browserslist db ## [0.0.33] - 2024-10-27 ### 🚜 Refactor - Update Browserslist db ## [0.0.32] - 2024-10-16 ### 🚜 Refactor - Update Browserslist db ## [0.0.31] - 2024-10-14 ### 🚜 Refactor - Update Browserslist db - Update Browserslist db ## [0.0.30] - 2024-10-03 ### 🚜 Refactor - Update Browserslist db ## [0.0.29] - 2024-09-26 ### 🚜 Refactor - Update Browserslist db ## [0.0.28] - 2024-09-24 ### 🚜 Refactor - Update Browserslist db ## [0.0.26] - 2024-09-19 ### 🚜 Refactor - Update Browserslist db ## [0.0.24] - 2024-09-09 ### 🐛 Bug Fixes - DCO for update-browserlist-db.yaml (#105) ## [0.0.22] - 2024-08-27 ### 🐛 Bug Fixes - Update dependencies ## [0.0.21] - 2024-08-06 ### 🐛 Bug Fixes - Trigger (#91) ## [0.0.20] - 2024-08-06 ### 🐛 Bug Fixes - Dockerfile envs (#89) ## [0.0.1] - 2023-12-28 <!-- generated by git-cliff -->