Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 925709e

Browse files
committed
Update the data
1 parent c910bdf commit 925709e

File tree

3 files changed

+36
-7
lines changed

3 files changed

+36
-7
lines changed

.whatsup.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ output_format:
1919

2020
magic_word: whatsnew
2121

22-
membership: magento-commerce
22+
membership: magento-commerce

src/_data/whats-new.yml

+26-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,32 @@ description: This page contains recent changes that we think you'd like to know
44
We exclude from this list proofreading, spelling checks, and insignificant updates.
55
link: "/getting-started/whats-new.html"
66
thread: "/whatsnew-feed.xml"
7-
updated: Mon Mar 15 14:25:55 2021
7+
updated: Wed Mar 31 09:45:38 2021
88
entries:
9+
- description: Adding content about how you can [preview](https://docs.magento.com/user-guide/marketing/create-new-rec.html#preview)
10+
recommendation units before deploying to your storefront.
11+
versions: 2.4.x
12+
type: Major update
13+
date: March 23, 2021
14+
link: https://github.com/magento-commerce/merchdocs/pull/1
15+
merge_commit: d61f9e91dde91cf62b900f0dc0eb71cf886c9858
16+
contributor: dshevtsov
17+
membership: true
18+
labels:
19+
- 2.4.x
20+
- Major update
21+
- description: Adding information about [private keys](https://docs.magento.com/user-guide/configuration/services/saas.html)
22+
when connecting to SaaS services.
23+
versions: 2.4.x
24+
type: Minor update
25+
date: March 18, 2021
26+
link: https://github.com/magento-commerce/merchdocs/pull/2
27+
merge_commit: 1539402c15261e1e528ca5d043acff7018e31cb9
28+
contributor: erikmarr
29+
membership: true
30+
labels:
31+
- 2.4.x
32+
- Minor update
933
- description: Updated the Sales Channels [Global Settings](https://docs.magento.com/user-guide/configuration/sales-channels.html)
1034
topic to include the _Read Only Mode_ function.
1135
versions: 2.4.x
@@ -450,4 +474,4 @@ entries:
450474
versions: 2.4.0
451475
type: Major update
452476
date: July 28, 2020
453-
link:
477+
link:

src/whats-new.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,18 @@ group: getting-started
4040
<tbody>
4141
{% for item in date_group.items %}
4242
<tr>
43-
<td>{{ item.description | markdownify }}</td>
43+
<td>
44+
{{ item.description | markdownify }}
45+
{% if item.membership == false %}
46+
<p><i>Community contribution by {{ item.contributor }}</i></p>
47+
{% endif %}
48+
</td>
4449
<td>{{ item.versions }}</td>
4550
<td>{{ item.type }}</td>
46-
{% if item.link contains "pull" %}
47-
<td><a href="{{ item.link }}">{{ item.link | split: "/" | last }}</a></td>
51+
{% if item.link contains "-commerce" %}
52+
<td><a href="https://github.com/magento/devdocs/commit/{{ item.merge_commit }}">{{ item.merge_commit | slice: 0, 6 }}</a></td>
4853
{% else %}
49-
<td><a href="{{ item.link }}">{{ item.link | split: "/" | last | slice: 0, 6 }}</a></td>
54+
<td><a href="{{ item.link }}">{{ item.link | split: "/" | last }}</a></td>
5055
{% endif %}
5156
</tr>
5257
{% endfor %}

0 commit comments

Comments
 (0)