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

Commit

Permalink
added whatsnew info for the week
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrontain committed May 14, 2020
1 parent 57270d5 commit 423425e
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
12 changes: 12 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,15 @@ task :convert do
puts 'Converted text:'.magenta
puts result.bold
end
desc 'Generate data for a news digest. Default timeframe is a week since today. For other period, use "since" argument: since="jul 4"'
task :whatsnew do
date = ENV['since']
print 'Generating data for the weekly digest: $ '.magenta
if date.nil? or date.empty?
sh 'bin/whatsup_github'
elsif date.is_a? String
sh 'bin/whatsup_github', 'since', ENV['since'].to_s
else
puts 'The "since" argument must be a string. Example: "jul 4"'
end
end
39 changes: 38 additions & 1 deletion src/_data/whats-new.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,48 @@
title: Whats New on Devdocs
description: |
description:
This page contains recent changes that we think you'd like to know about.
We exclude from this list proofreading, spelling checks, and all minor updates.
link: /whats-new.html
thread: /whatsnew-feed.xml
updated: Tue May 5 12:22:39 2020
entries:
- 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)
or [upgrading](https://devdocs.magento.com/guides/v2.3/comp-mgr/upgrader/upgrade-checklist.html)
Magento in most places where it is mentioned.
versions: 2.3.x
type: Major Update
date: May 14, 2020
link: https://github.com/magento/devdocs/pull/7213
- description: Added [Magento Cloud Patches version 1.0.4 release notes](https://devdocs.magento.com/cloud/release-notes/mcp-release-notes.html).
versions: 2.x
type: Major Update
date: May 12, 2020
link: https://github.com/magento/devdocs/pull/7195
- description: Updated the _Cloud Guide_ to reflect the availability of Microsoft
Azure as an Iaas provider for Magento Commerce Cloud Pro projects.
versions: 2.x
type: Technical
date: May 12, 2020
link: https://github.com/magento/devdocs/pull/7199
- description: Added Release Notes and updated Merchant Documentation for the Amazon
Sales Channel 4.1.0 release.
versions: ''
type: Major Update
date: May 11, 2020
link: https://github.com/magento/devdocs/pull/7193
- description: Added [Bypass Fastly](https://devdocs.magento.com/cloud/cdn/fastly-vcl-bypass-to-origin.html)
topic with instructions for creating a custom VCL snippet to bypass Fastly on
requests from a specific IP address, URL, or URL pattern.
versions: ''
type: New Topic
date: May 7, 2020
link: https://github.com/magento/devdocs/pull/7159
- description: Expanded the example code in the [View Models](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/view-models.html)
topic.
versions: 2.3.x
type: Major Update
date: May 6, 2020
link: https://github.com/magento/devdocs/pull/7139
- 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).
versions: 2.3.5
type: Major Update
Expand Down

0 comments on commit 423425e

Please sign in to comment.