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

Commit 423425e

Browse files
committed
added whatsnew info for the week
1 parent 57270d5 commit 423425e

File tree

2 files changed

+50
-1
lines changed

2 files changed

+50
-1
lines changed

Rakefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,15 @@ task :convert do
9292
puts 'Converted text:'.magenta
9393
puts result.bold
9494
end
95+
desc 'Generate data for a news digest. Default timeframe is a week since today. For other period, use "since" argument: since="jul 4"'
96+
task :whatsnew do
97+
date = ENV['since']
98+
print 'Generating data for the weekly digest: $ '.magenta
99+
if date.nil? or date.empty?
100+
sh 'bin/whatsup_github'
101+
elsif date.is_a? String
102+
sh 'bin/whatsup_github', 'since', ENV['since'].to_s
103+
else
104+
puts 'The "since" argument must be a string. Example: "jul 4"'
105+
end
106+
end

src/_data/whats-new.yml

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,48 @@
11
title: Whats New on Devdocs
2-
description: |
2+
description:
33
This page contains recent changes that we think you'd like to know about.
44
We exclude from this list proofreading, spelling checks, and all minor updates.
55
link: /whats-new.html
66
thread: /whatsnew-feed.xml
77
updated: Tue May 5 12:22:39 2020
88
entries:
9+
- description: Added a deprecation notice about the Web Setup Wizard when [installing](https://devdocs.magento.com/guides/v2.3/install-gde/install/web/install-web.html)
10+
or [upgrading](https://devdocs.magento.com/guides/v2.3/comp-mgr/upgrader/upgrade-checklist.html)
11+
Magento in most places where it is mentioned.
12+
versions: 2.3.x
13+
type: Major Update
14+
date: May 14, 2020
15+
link: https://github.com/magento/devdocs/pull/7213
16+
- description: Added [Magento Cloud Patches version 1.0.4 release notes](https://devdocs.magento.com/cloud/release-notes/mcp-release-notes.html).
17+
versions: 2.x
18+
type: Major Update
19+
date: May 12, 2020
20+
link: https://github.com/magento/devdocs/pull/7195
21+
- description: Updated the _Cloud Guide_ to reflect the availability of Microsoft
22+
Azure as an Iaas provider for Magento Commerce Cloud Pro projects.
23+
versions: 2.x
24+
type: Technical
25+
date: May 12, 2020
26+
link: https://github.com/magento/devdocs/pull/7199
27+
- description: Added Release Notes and updated Merchant Documentation for the Amazon
28+
Sales Channel 4.1.0 release.
29+
versions: ''
30+
type: Major Update
31+
date: May 11, 2020
32+
link: https://github.com/magento/devdocs/pull/7193
33+
- description: Added [Bypass Fastly](https://devdocs.magento.com/cloud/cdn/fastly-vcl-bypass-to-origin.html)
34+
topic with instructions for creating a custom VCL snippet to bypass Fastly on
35+
requests from a specific IP address, URL, or URL pattern.
36+
versions: ''
37+
type: New Topic
38+
date: May 7, 2020
39+
link: https://github.com/magento/devdocs/pull/7159
40+
- description: Expanded the example code in the [View Models](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/view-models.html)
41+
topic.
42+
versions: 2.3.x
43+
type: Major Update
44+
date: May 6, 2020
45+
link: https://github.com/magento/devdocs/pull/7139
946
- description: Added a known issue about Amazon Pay to the [2.3.5 release notes](https://devdocs.magento.com/guides/v2.3/release-notes/release-notes-2-3-5-open-source.html).
1047
versions: 2.3.5
1148
type: Major Update

0 commit comments

Comments
 (0)