Skip to content

Latest commit

 

History

History
63 lines (51 loc) · 1.81 KB

whats-new.md

File metadata and controls

63 lines (51 loc) · 1.81 KB
layout title
full-width
What's new on DevDocs

{% assign whatsnew = site.data.whats-new %}

RSS feed

{{ whatsnew.description }}

{% assign entries = whatsnew.entries %}

{% assign grouped_by_year = entries | group_by_exp: "entry", "entry.date | date: '%Y'" %}

{% for year_group in grouped_by_year limit:2 %}

{% assign grouped_by_month = year_group.items | group_by_exp: "entry", "entry.date | date: '%B'" %}

{{ year_group.name }}

{% for month_group in grouped_by_month %}

{{ month_group.name }}

{% assign grouped_by_date = month_group.items | group_by: "date" %}

{% for date_group in grouped_by_date %}

{{ date_group.name }}

{% for item in date_group.items %} {% if item.link contains "-commerce" %} {% else %} {% endif %} {% endfor %}
Description Versions Type Source
{{ item.description | markdownify }} {% if item.membership == false %}

Community contribution by {{ item.contributor }}

{% endif %}
{{ item.versions }} {{ item.type }}{{ item.merge_commit | slice: 0, 6 }}{{ item.link | split: "/" | last }}
{% endfor %} {% endfor %}

{% endfor %}