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

Commit 7a0f4fb

Browse files
authored
Merge branch 'master' into cart-query-error-coverage
2 parents 20aebc0 + 4bfd722 commit 7a0f4fb

File tree

878 files changed

+7375
-148592
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

878 files changed

+7375
-148592
lines changed

.github/ISSUE_TEMPLATE/NEW_FEATURE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ Issues that do not comply with our Code of Conduct or do not contain enough info
3636
3737
Feel free to remove this section before creating this issue.
3838
-->
39-

.github/workflows/linter.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,11 @@ name: Lint Code Base
1111
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
1212
#
1313

14-
#############################
15-
# Start the job on all push #
16-
#############################
14+
###################################
15+
# Start the job on a pull request #
16+
###################################
1717
on:
18-
pull_request:
19-
branches:
20-
- master
21-
- 2.*-develop
22-
paths-ignore:
23-
- '**.md'
24-
- '**.html'
25-
- '**.xml'
18+
pull_request
2619

2720
###############
2821
# Set the Job #
@@ -54,4 +47,5 @@ jobs:
5447
VALIDATE_ALL_CODEBASE: false
5548
DEFAULT_BRANCH: master
5649
VALIDATE_HTML: false
57-
VALIDATE_MARKDOWN: false
50+
VALIDATE_OPENAPI: false
51+
MARKDOWN_CONFIG_FILE: .markdownlint.json

.github/workflows/main.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

Docfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ content_map:
1313
-
1414
directory: src/mftf/v2
1515
repository: magento/magento2-functional-testing-framework
16-
branch: 2.6.5
16+
branch: 2.x-develop
1717
filter: true
1818
-
1919
directory: src/page-builder

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This site is built by [Jekyll](https://jekyllrb.com/), which is an open-source t
1515
You can build the site locally in the following ways:
1616

1717
- [Installing the project dependencies locally](#build-locally) (Mac, Linux)
18-
- [Using Docker (docker-compose)](#docker-docker-compose) (Mac, Linux, Windows)
18+
- [Using Docker (docker-compose)](https://github.com/magento/devdocs/wiki/Build-DevDocs-with-Docker) (Mac, Linux, Windows)
1919
- [Using a Vagrant virtual machine](https://github.com/magento-devdocs/vagrant-for-magento-devdocs) (Mac, Linux, Windows)
2020
- [Build DevDocs in Windows](https://github.com/magento/devdocs/wiki/Build-DevDocs-in-Windows) (Windows 7 & 10)
2121
- [Building older versions of the documentation](https://github.com/magento/devdocs/wiki/Build-DevDocs-with-Docker)

Rakefile

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,14 @@ task :whatsnew do
7878
print 'Generating data for the What\'s New digest: $ '.magenta
7979

8080
# Generate tmp/whats-new.yml
81-
if since.nil? || since.empty?
82-
sh 'bin/whatsup_github', 'since', last_update
83-
elsif since.is_a? String
84-
sh 'bin/whatsup_github', 'since', since
85-
else
86-
abort 'The "since" argument must be a string. Example: "jul 4"'
87-
end
81+
report =
82+
if since.nil? || since.empty?
83+
`bin/whatsup_github since '#{last_update}'`
84+
elsif since.is_a? String
85+
`bin/whatsup_github since #{since}`
86+
else
87+
abort 'The "since" argument must be a string. Example: "jul 4"'
88+
end
8889

8990
# Merge generated tmp/whats-new.yml with existing src/_data/whats-new.yml
9091
generated_data = YAML.load_file generated_file
@@ -94,6 +95,9 @@ task :whatsnew do
9495

9596
puts "Writing updates to #{current_file}"
9697
File.write current_file, current_data.to_yaml
98+
99+
abort report if report.include? 'MISSING whatsnew'
100+
puts report
97101
end
98102

99103
desc 'Generate index for Algolia'

_checks/html_check_hook.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
if url_ignore
3434
url_ignore.push(jekyll_excludes_as_regex).flatten!.uniq!
3535
else
36-
checks_config['html-proofer'].merge!(url_ignore: jekyll_excludes_as_regex)
36+
checks_config['html-proofer'][:url_ignore] = jekyll_excludes_as_regex
3737
end
3838

3939
# Read configuration options for html-proofer

_plugins/debug/site_post_render.rb

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# frozen_string_literal: true
2+
3+
# Copyright © Magento, Inc. All rights reserved.
4+
# See COPYING.txt for license details.
5+
6+
# To enable this plugin, add to your '_config.local.yml' the following:
7+
#
8+
# debug: site_post_render
9+
#
10+
# This plugin runs an IRB session (https://github.com/ruby/irb) of a Jekyll application in a serving mode when it's at a state after rendering the whole site, but before writing any files.
11+
# See the ":site, :post_render" hook: https://jekyllrb.com/docs/plugins/hooks/
12+
# Available objects to explore are 'site' and 'payload'.
13+
#
14+
# Several helpful methods (to use a method, chain to an object such as 'site.methods', 'payload.keys'):
15+
# - '.methods.sort'
16+
# - '.instance_variables.sort'
17+
# - '.keys.sort'
18+
#
19+
# Examples:
20+
#
21+
# To view available configuration data of the site
22+
# > payload.site.keys
23+
#
24+
# To view the number of pages:
25+
# > payload.site.pages.count
26+
#
27+
# To find a page by path and view its data:
28+
# > page = payload.site.pages.select { |page| page.path == 'cloud/env/variables-build.md' }[0]
29+
# > page.data
30+
#
31+
# To exit from the IRB session:
32+
# > exit!
33+
#
34+
Jekyll::Hooks.register :site, :post_render do |site, payload|
35+
next unless site.config['serving']
36+
37+
# rubocop:disable Lint/Debugger
38+
binding.irb if site.config['debug'] == 'site_post_render'
39+
# rubocop:enable Lint/Debugger
40+
end

_plugins/debug/site_pre_render.rb

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# frozen_string_literal: true
2+
3+
# Copyright © Magento, Inc. All rights reserved.
4+
# See COPYING.txt for license details.
5+
6+
# To enable this plugin, add to your '_config.local.yml' the following:
7+
#
8+
# debug: site_pre_render
9+
#
10+
# This plugin runs an IRB session (https://github.com/ruby/irb) of a Jekyll application in a serving mode when it's at a state just before rendering the whole site.
11+
# See the ":site, :pre_render" hook: https://jekyllrb.com/docs/plugins/hooks/
12+
# Available objects to explore are 'site' and 'payload'.
13+
#
14+
# Several helpful methods (to use a method, chain to an object such as 'site.methods', 'payload.keys'):
15+
# - '.methods.sort'
16+
# - '.instance_variables.sort'
17+
# - '.keys.sort'
18+
#
19+
# Examples:
20+
#
21+
# To view available configuration data of the site
22+
# > payload.site.keys
23+
#
24+
# To view the number of pages:
25+
# > payload.site.pages.count
26+
#
27+
# To find a page by path and view its data:
28+
# > page = payload.site.pages.select { |page| page.path == 'cloud/env/variables-build.md' }[0]
29+
# > page.data
30+
#
31+
# To exit from the IRB session:
32+
# > exit!
33+
#
34+
Jekyll::Hooks.register :site, :pre_render do |site, payload|
35+
next unless site.config['serving']
36+
37+
# rubocop:disable Lint/Debugger
38+
binding.irb if site.config['debug'] == 'site_pre_render'
39+
# rubocop:enable Lint/Debugger
40+
end

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.6'
22

33
services:
44
jekyll:
5-
image: jekyll/jekyll:latest
5+
image: jekyll/jekyll:3.8.6
66
command: jekyll serve --watch --incremental --open-url --livereload
77
ports:
88
- 4000:4000

src/_data/codebase/v2_3/mrg/b2b/BundleNegotiableQuote.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ content: "## Overview\n\nThe Magento_BundleNegotiableQuote module enables bundle
2020
\n[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.2/extension-dev-guide/depend-inj.html)
2121
enables you to override the functionality of the Magento_BundleNegotiableQuote module.\n\n##
2222
Additional information\n \nYou can track [backward incompatible changes made in
23-
a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html).\n"
23+
a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html)."

src/_data/codebase/v2_3/mrg/b2b/BundleRequisitionList.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ content: "## Overview\n\nThe Magento_BundleRequisitionList module enables bundle
1717
\n### Layouts\n \nYou can extend and override layouts in the `Magento\\BundleRequisitionList\\view\\frontend\\layout`
1818
directories.\n\nFor more information about layouts, see the [Layout documentation](http://devdocs.magento.com/guides/v2.2/frontend-dev-guide/layouts/layout-overview.html).\n\n##
1919
Additional information\n \nYou can track [backward incompatible changes made in
20-
a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html).\n"
20+
a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html)."

src/_data/codebase/v2_3/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2b2b
44
release: 1.1.6
55
github_path: app/code/Magento/CheckoutAddressSearchNegotiableQuote/README.md
66
last_modified_at: '2019-04-10 17:47:51 -0500'
7-
content: |
7+
content: |-
88
## CheckoutAddressSearchNegotiableQuote module Overview
99
1010
CheckoutAddressSearchNegotiableQuote module extends Magento_CheckoutAddressSearch if it is enabled in configuration and it modifies NegotiableQuote shipping address on checkout.

src/_data/codebase/v2_3/mrg/b2b/CheckoutAgreementsNegotiableQuote.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2b2b
44
release: 1.1.6
55
github_path: app/code/Magento/CheckoutAgreementsNegotiableQuote/README.md
66
last_modified_at: '2019-08-16 15:20:08 -0500'
7-
content: |
7+
content: |-
88
## CheckoutAgreementsNegotiableQuote module Overview
99
1010
CheckoutAgreementsNegotiableQuote module extends CheckoutAgreements if it is enabled in configuration and it adds agreements to payment data on checkout with negotiable quote.

src/_data/codebase/v2_3/mrg/b2b/ConfigurableNegotiableQuote.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ content: "## Overview\n\nThe Magento_ConfigurableNegotiableQuote module enables
2020
\n[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.2/extension-dev-guide/depend-inj.html)
2121
enables you to override the functionality of the Magento_ConfigurableNegotiableQuote
2222
module.\n\n## Additional information\n \nYou can track [backward incompatible changes
23-
made in a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html).\n"
23+
made in a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html)."

src/_data/codebase/v2_3/mrg/b2b/ConfigurableRequisitionList.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ content: "## Overview\n\nThe Magento_ConfigurableRequisitionList module enables
1717
Layouts\n \nYou can extend and override layouts in the `Magento\\ConfigurableRequisitionList\\view\\frontend\\layout`
1818
directories.\n\nFor more information about layouts, see the [Layout documentation](http://devdocs.magento.com/guides/v2.2/frontend-dev-guide/layouts/layout-overview.html).\n\n##
1919
Additional information\n \nYou can track [backward incompatible changes made in
20-
a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html).\n"
20+
a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html)."

src/_data/codebase/v2_3/mrg/b2b/GiftCardNegotiableQuote.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2b2b
44
release: 1.1.6
55
github_path: app/code/Magento/GiftCardNegotiableQuote/README.md
66
last_modified_at: '2017-04-10 10:33:01 +0300'
7-
content: |
7+
content: |-
88
## Overview
99
1010
The Magento_GiftCardNegotiableQuote module enables gift cards to be displayed in a negotiable quote in an B2B environment. This module extends Magento_NegotiableQuote and Magento_GiftCard modules.

src/_data/codebase/v2_3/mrg/b2b/GiftCardRequisitionList.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ content: "## Overview\n\nThe Magento_GiftCardRequisitionList module enables gift
1515
at any time.\n\n## Structure\n\n[Learn about a typical file structure for a Magento
1616
2 module](http://devdocs.magento.com/guides/v2.2/extension-dev-guide/build/module-file-structure.html).\n\n##
1717
Additional information\n\nYou can track [backward incompatible changes made in a
18-
Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html).\n"
18+
Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html)."

src/_data/codebase/v2_3/mrg/b2b/GiftCardSharedCatalog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ content: "## Overview\n\nThe Magento_GiftCardSharedCatalog module enables gift c
2727
`Magento\\GiftCardSharedCatalog\\view\\adminhtml\\ui_component` - renderer for pricing
2828
and structure listings\n\nFor more information, see [UI Listing/Grid Component](http://devdocs.magento.com/guides/v2.2/ui-components/ui-listing-grid.html).\n\n##
2929
Additional information\n\nYou can track [backward incompatible changes made in a
30-
Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html).\n"
30+
Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html)."

src/_data/codebase/v2_3/mrg/b2b/GroupedRequisitionList.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ content: "## Overview\n\nThe Magento_GroupedRequisitionList module enables group
2323
module.\n\n### Layouts\n \nYou can extend and override layouts in the `Magento\\GroupedRequistionList\\view\\frontend\\layout`
2424
directories.\n\nFor more information about layouts, see the [Layout documentation](http://devdocs.magento.com/guides/v2.2/frontend-dev-guide/layouts/layout-overview.html).\n\n##
2525
Additional information\n \nYou can track [backward incompatible changes made in
26-
a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html).\n"
26+
a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html)."

src/_data/codebase/v2_3/mrg/b2b/SharedCatalog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ content: "## Overview\n\nThe Magento_SharedCatalog modules defines the visibilit
4242
more information, see [UI Listing/Grid Component](http://devdocs.magento.com/guides/v2.2/ui-components/ui-listing-grid.html)
4343
and [UI Form Component](http://devdocs.magento.com/guides/v2.2/ui_comp_guide/components/ui-form.html).\n\n##
4444
Additional information\n \nYou can track [backward incompatible changes made in
45-
a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html).\n"
45+
a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.2/release-notes/changes/b2b_changes.html)."

src/_data/codebase/v2_3/mrg/ce/AdminNotification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2ce
44
release: 2.3.6
55
github_path: app/code/Magento/AdminNotification/README.md
66
last_modified_at: '2019-08-19 00:16:18 +0100'
7-
content: |
7+
content: |-
88
The Magento_AdminNotification module provides the ability to alert administrators via system messages and provides a message inbox for surveys and notifications.
99
1010
## Installation details

src/_data/codebase/v2_3/mrg/ce/AmqpStore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2ce
44
release: 2.3.6
55
github_path: app/code/Magento/AmqpStore/README.md
66
last_modified_at: '2019-08-27 01:59:34 +0100'
7-
content: |
7+
content: |-
88
The Magento_AmqpStore module provides the ability to specify a store before publishing messages with the Advanced Message Queuing Protocol (AMQP).
99
1010
## Extensibility

src/_data/codebase/v2_3/mrg/ce/Analytics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2ce
44
release: 2.3.6
55
github_path: app/code/Magento/Analytics/README.md
66
last_modified_at: '2019-09-15 22:49:37 +0100'
7-
content: |
7+
content: |-
88
The Magento_Analytics module integrates your Magento instance with the [Magento Business Intelligence (MBI)](https://magento.com/products/business-intelligence) to use [Advanced Reporting](https://devdocs.magento.com/guides/v2.3/advanced-reporting/modules.html) functionality.
99
1010
The module implements the following functionality:

src/_data/codebase/v2_3/mrg/ce/AsynchronousOperations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ content: "This component is designed to provide a response for a client that lau
2525
`bulk_details_form`\n- `bulk_details_form_modal`\n- `bulk_listing`\n- `failed_operation_listing`\n-
2626
`failed_operation_modal_listing`\n- `notification_area`\n- `retriable_operation_listing`\n-
2727
`retriable_operation_modal_listing`\n\nFor information about UI components in Magento
28-
2, see [Overview of UI components](https://devdocs.magento.com/guides/v2.3/ui_comp_guide/bk-ui_comps.html).\n"
28+
2, see [Overview of UI components](https://devdocs.magento.com/guides/v2.3/ui_comp_guide/bk-ui_comps.html)."

src/_data/codebase/v2_3/mrg/ce/Authorization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2ce
44
release: 2.3.6
55
github_path: app/code/Magento/Authorization/README.md
66
last_modified_at: '2019-08-25 07:43:56 +0100'
7-
content: |
7+
content: |-
88
The Magento_Authorization module enables management of access control list roles and rules in the application.
99
1010
## Installation details

src/_data/codebase/v2_3/mrg/ce/Authorizenet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ content: "The Magento_Authorizenet module implements the integration with the Au
2626
module introduces the following layouts and layout handles in the `view/frontend/layout`
2727
directory:\n\n- `authorizenet_directpost_payment_backendresponse`\n- `authorizenet_directpost_payment_redirect`\n-
2828
`authorizenet_directpost_payment_response`\n\nFor more information about layouts
29-
in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/layout-overview.html).\n"
29+
in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/layout-overview.html)."

src/_data/codebase/v2_3/mrg/ce/AuthorizenetAcceptjs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2ce
44
release: 2.3.6
55
github_path: app/code/Magento/AuthorizenetAcceptjs/README.md
66
last_modified_at: '2019-08-28 00:26:17 +0100'
7-
content: |
7+
content: |-
88
The Magento_AuthorizenetAcceptjs module implements the integration with the Authorize.Net payment gateway and makes the latter available as a payment method in Magento.
99
1010
## Installation details

src/_data/codebase/v2_3/mrg/ce/AuthorizenetCardinal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ content: "Use the Magento_AuthorizenetCardinal module to enable 3D Secure 2.0 su
1616
enables you to override the functionality of the Magento_AuthorizenetCardinal module.\n\n###
1717
Events\n \nThis module observes the following events:\n\n- `payment_method_assign_data_authorizenet_acceptjs`
1818
event in the `Magento\\AuthorizenetCardinal\\Observer\\DataAssignObserver` file.\n\nFor
19-
information about an event in Magento 2, see [Events and observers](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/events-and-observers.html#events).\n"
19+
information about an event in Magento 2, see [Events and observers](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/events-and-observers.html#events)."

src/_data/codebase/v2_3/mrg/ce/AuthorizenetGraphQl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2ce
44
release: 2.3.6
55
github_path: app/code/Magento/AuthorizenetGraphQl/README.md
66
last_modified_at: '2019-08-28 00:38:47 +0100'
7-
content: |
7+
content: |-
88
The Magento_AuthorizenetGraphQl module defines the data types needed to pass payment information data from the client to Magento.
99
1010
## Extensibility

src/_data/codebase/v2_3/mrg/ce/Backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2ce
44
release: 2.3.6
55
github_path: app/code/Magento/Backend/README.md
66
last_modified_at: '2019-09-15 23:59:05 +0100'
7-
content: |
7+
content: |-
88
The Magento_Backend module contains common infrastructure and assets for other modules to be defined and used in their
99
administration user interface (UI).
1010

src/_data/codebase/v2_3/mrg/ce/Backup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ content: "The Magento_Backup module allows administrators to perform backups and
1616
directory: \n\n`backup_index_block`\n`backup_index_disabled`\n`backup_index_grid`\n`backup_index_index`\n\nFor
1717
more information about layouts in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/layout-overview.html).\n\n##
1818
Additional information\n\nFor information about significant changes in patch releases,
19-
see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html).\n"
19+
see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html)."

src/_data/codebase/v2_3/mrg/ce/Braintree.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2ce
44
release: 2.3.6
55
github_path: app/code/Magento/Braintree/README.md
66
last_modified_at: '2019-09-23 14:26:40 -0500'
7-
content: |
7+
content: |-
88
The Magento_Braintree module implements integration with the Braintree payment system.
99
1010
## Extensibility

src/_data/codebase/v2_3/mrg/ce/BraintreeGraphQl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source_repo: magento2ce
44
release: 2.3.6
55
github_path: app/code/Magento/BraintreeGraphQl/README.md
66
last_modified_at: '2019-09-30 15:26:35 +0100'
7-
content: |
7+
content: |-
88
The Magento_BraintreeGraphQl module provides type and resolver information for the GraphQL module to pass payment information data from the client to Magento.
99
1010
## Extensibility

src/_data/codebase/v2_3/mrg/ce/Bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ source_repo: magento2ce
44
release: 2.3.6
55
github_path: app/code/Magento/Bundle/README.md
66
last_modified_at: '2014-12-12 12:14:06 -0800'
7-
content: |
7+
content: |-
88
Magento_Bundle module introduces new product type in the Magento application named Bundle Product.
99
This module is designed to extend existing functionality of Magento_Catalog module by adding new product type.

0 commit comments

Comments
 (0)