Files
pezkuwi-subxt/polkadot/scripts/ci/changelog/templates/host_functions.md.tera
T
Mara Robin B baaa6bf021 changelog: update template for new label behavior (E3/E4) (#6804)
* update changelog template for new label behavior (E3/E4)

This distinguishes E3 and E4 labels in the changelog output

* Separate E3/E4 notices in changelog

* fixup
2023-03-06 20:36:13 +01:00

43 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{%- import "change.md.tera" as m_c -%}
{%- set_global host_fn_count = 0 -%}
{%- set_global upgrade_first = 0 -%}
{% for pr in changes | sort(attribute="merged_at") -%}
{%- if pr.meta.B and pr.meta.B.B0 -%}
{#- We skip silent ones -#}
{%- else -%}
{%- if pr.meta.E and pr.meta.E.E3 -%}
{%- set_global host_fn_count = host_fn_count + 1 -%}
- {{ m_c::change(c=pr) }}
{% endif -%}
{% endif -%}
{%- if pr.meta.E and pr.meta.E.E4 -%}
{%- set_global upgrade_first = upgrade_first + 1 -%}
- {{ m_c::change(c=pr) }}
{% endif -%}
{% endif -%}
{%- endfor -%}
<!-- {{ upgrade_first }} changes require node upgrade -->
{%- if upgrade_first != 0 %}
## Node upgrade required
⚠️ There is a runtime change that will require nodes to be upgraded BEFORE the runtime upgrade.
⚠️ It is critical that you update your client before the chain switches to the new runtime.
{%- endif %}
<!-- {{ host_fn_count }} host functions were detected -->
## Host functions
{% if host_fn_count == 0 %}
️ This release does not contain any new host functions.
{% elif host_fn_count == 1 -%}
{# ---- #}
️ The runtimes in this release contain one new **host function**.
{%- else -%}
️ The runtimes in this release contain {{ host_fn_count }} new **host function{{ host_fn_count | pluralize }}**.
{%- endif %}