odbcsv 1.1.2

Query an ODBC data source and print the result as csv.
[workspace]

# The [changelog] table configures git-cliff, which release-plz uses under the hood.
# Docs: https://git-cliff.org/docs/configuration/changelog
[changelog]
# We prefer to use a template closer to git-cliff's default, as oppossed to the one from
# release-plz. This means we do not addhere to keep a changelog categories. The difference to
# git-cliff's default is that we include the body of the commit, too. This way we have more
# information if we curate the changelog on release.
body = """
{% if version %}\
    {% if previous.version %}\
        ## [{{ version | trim_start_matches(pat="v") }}](https://github.com/pacman82/odbc2parquet/compare/{{ previous.version }}...{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }}
    {% else %}\
        ## {{ version | trim_start_matches(pat="v") }} - {{ timestamp | date(format="%Y-%m-%d") }}
    {% endif %}\
{% 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 }}
{% if commit.body %}
{{ commit.body | trim | indent(prefix="  ", first=true) }}

{% endif %}
    {%- endfor %}
{% endfor %}
"""
trim = true

# Breaking commits (via `!` marker or `BREAKING CHANGE:` footer) bypass `skip = true` parsers. So
# `refactor!:` surfaces under Refactor with an inline `[**breaking**]` marker, while a plain
# `refactor:` is skipped.
protect_breaking_commits = true

# Allowlist: only feat, fix, doc(s), perf, and body-matched security land in the changelog. Other
# types are skipped except when breaking (see above). Non-allowlisted types retain their
# git-cliff-default group name so the breaking-protected fall-through has a recognizable section to
# land in.
commit_parsers = [
    { message = "^feat", group = "<!-- 0 -->๐Ÿš€ Features" },
    { message = "^fix", group = "<!-- 1 -->๐Ÿ› Bug Fixes" },
    { message = "^refactor", group = "<!-- 2 -->๐Ÿšœ Refactor", skip = true },
    { message = "^doc", group = "<!-- 3 -->๐Ÿ“š Documentation" },
    { message = "^perf", group = "<!-- 4 -->โšก Performance" },
    { message = "^style", group = "<!-- 5 -->๐ŸŽจ Styling", skip = true },
    { message = "^test", group = "<!-- 6 -->๐Ÿงช Testing", skip = true },
    { message = "^chore|^ci", group = "<!-- 7 -->โš™๏ธ Miscellaneous Tasks", skip = true },
    { body = ".*security", group = "<!-- 8 -->๐Ÿ›ก๏ธ Security" },
    { message = "^revert", group = "<!-- 9 -->โ—€๏ธ Revert", skip = true },
    { message = ".*", skip = true },
]