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

Commit 9cc5709

Browse files
authored
Merge branch 'master' into patch-1
2 parents d593db9 + 2f1b083 commit 9cc5709

File tree

8 files changed

+83
-28
lines changed

8 files changed

+83
-28
lines changed

src/_data/var.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ mbi: Adobe Commerce Reporting
2121
# Cloud product name variables
2222

2323
ece: Cloud for Adobe Commerce
24-
ece-release-date: April 20, 2021
24+
ece-release-date: July 29, 2021
2525
csuite: Cloud Suite for Commerce
2626
ct: ece-tools
2727
ct-repo: magento/ece-tools
28-
ct-release: 2002.1.6
28+
ct-release: 2002.1.7
2929
mcp-prod: Cloud Patches for Commerce
3030
mcp-package: magento/magento-cloud-patches
31-
mcp-release: 1.0.10
31+
mcp-release: 1.0.11
3232
mcd-package: magento/magento-cloud-docker
3333
mcd-prod: Cloud Docker for Commerce
34-
mcd-release: 1.2.3
34+
mcd-release: 1.2.4
3535
mcc-prod: Cloud Components of Commerce
3636
mcc-package: magento/magento-cloud-components
37-
mcc-release: 1.0.7
37+
mcc-release: 1.0.8
3838

3939
# TIP: Use the following syntax to use a variable in the documentation source: {{site.data.var.xx}} where xx
4040
# is the variable value.

src/cloud/cdn/trouble-fastly.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,13 +294,13 @@ To rollback the VCL version:
294294
1. To get a list of the available VCL versions for a service, run the following command
295295

296296
```bash
297-
curl -H "Fastly-Key: <FASTLY_API_TOKEN>" https://api.fastly.com/service/<FASTLY_SERVICE_ID>/version/
297+
curl -H "Fastly-Key: <FASTLY_API_TOKEN>" -H "Accept: application/json" https://api.fastly.com/service/<FASTLY_SERVICE_ID>/version
298298
```
299299

300300
1. Run the following command to change the active VCL version to a specified version.
301301

302302
```bash
303-
curl -H "Fastly-Key: <FASTLY_API_TOKEN>" -H 'Content-Type: application/json' -H "Accept: application/json" -X PUT https://api.fastly.com/service/<FASTLY_SERVICE_ID>/version/<Version #>/activate
303+
curl -H "Fastly-Key: <FASTLY_API_TOKEN>" -H "Content-Type: application/x-www-form-urlencoded" -H "Accept: application/json" -X PUT https://api.fastly.com/service/<FASTLY_SERVICE_ID>/version/<VERSION_ID>/activate
304304
```
305305

306306
For details about using the Fastly API to review and manage VCL, see [Manage VCL using the API]({{ site.baseurl }}/cloud/cdn/cloud-vcl-custom-snippets.html#manage-custom-vcl-snippets-using-the-api).

src/cloud/docker/docker-containers-service.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,27 @@ To mount the custom index.php file using volumes:
307307
- ./pub/index.php:/app/pub/index.php:ro
308308
```
309309

310+
## Zookeeper container
311+
312+
**Container name**: Zookeeper<br/>
313+
**Docker base image**: [zookeeper/latest/](https://hub.docker.com/_/zookeeper)<br/>
314+
**Ports exposed**: 2181<br/>
315+
316+
Developers can use Zookeeper to manage locks to prevent the launch of duplicate cron jobs and cron groups for {{ site.data.var.ee }} and {{ site.data.var.ce }} projects running on servers with multiple nodes.
317+
318+
For {{ site.data.var.ee }} projects on Adobe cloud infrastructure, lock provider settings are configured automatically during provisioning. See [Cloud variables]({{ site.baseurl }}/cloud/env/variables-cloud.html).
319+
320+
For projects hosted on other infrastructure, developers can add the Zookeeper container to the Docker environment and [configure the service][Configure the lock provider].
321+
322+
```bash
323+
./vendor/bin/ece-docker build:compose --php <version> --with-zookeeper
324+
```
325+
326+
The latest Zookeeper version is installed by default from Docker Hub. You can add the following options to customize the installation:
327+
328+
- `--zookeeper-version` – Specify a specific version to install from [Docker Hub](https://hub.docker.com/_/zookeeper).
329+
- `--zookeeper-image` – Specify the Zookeeper image name to install from a custom image.
330+
310331
<!--Link definitions-->
311332

312333
[centos]: https://hub.docker.com/_/centos
@@ -322,7 +343,7 @@ To mount the custom index.php file using volumes:
322343
[mariadb Docker documentation]: https://hub.docker.com/_/mariadb
323344
[mariadb]: https://hub.docker.com/_/mariadb
324345
[nginx config]: https://github.com/magento-dockerhub/magento-cloud-docker/blob/master/images/nginx/1.9/etc/vhost.conf
325-
[nginx configs]: https://github.com/magento/magento-cloud-docker/tree/develop/images/nginx/1.9/etc
346+
[nginx configs]: https://github.com/magento/magento-cloud-docker/tree/develop/images/nginx/1.19/etc
326347
[nginx]: https://hub.docker.com/r/magento/magento-cloud-docker-nginx
327348
[PHP extensions]: {{site.baseurl}}/cloud/project/magento-app-php-application.html#php-extensions
328349
[php-cloud]: https://hub.docker.com/r/magento/magento-cloud-docker-php
@@ -333,3 +354,4 @@ To mount the custom index.php file using volumes:
333354
[varnish]: https://hub.docker.com/r/magento/magento-cloud-docker-varnish
334355
[varnish]: https://hub.docker.com/r/magento/magento-cloud-docker-varnish
335356
[web config]: https://github.com/magento/docker
357+
[Configure the lock provider]: {{site.baseurl}}/guides/v2.4/install-gde/install/cli/install-cli-subcommands-lock.html#instgde-cli-lockconfig

src/cloud/docker/docker-containers.md

Lines changed: 20 additions & 19 deletions
Large diffs are not rendered by default.

src/cloud/release-notes/ece-release-notes.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,20 @@ The `{{site.data.var.ct}}` package uses the following release versioning sequenc
1717
{:.bs-callout-info}
1818
See [Upgrades and patches]({{ site.baseurl }}/cloud/project/project-upgrade-parent.html) for information about updating to the latest release of the `{{site.data.var.ct}}` package.
1919

20-
## v2002.1.6
20+
## v2002.1.7
2121
*Release date: {{ site.data.var.ece-release-date }}*<br/>
2222

23+
**Configuration updates**
24+
25+
- {:.new}<!--MCLOUD-8003-->Added support for Composer 2.0.
26+
27+
- {:.fix} **Updated composer requirements for `symphony/console`**–Updated the {{ site.data.var.ct }} `composer.json` version requirements for the `symphony/console` package to fix an issue that caused the `di:compile` commands to fail with the following error: `Incompatible argument type: Required type: int. Actual type: string`<!--MC-42919-->
28+
29+
- {:.fix}<!--MCLOUD-7938-->Updated the end-of-life software checks (`eol.yaml`) to include Elasticsearch 7.9.x.
30+
31+
## v2002.1.6
32+
*Release date: April 20, 2021*<br/>
33+
2334
- {:.new}<!--MCLOUD-7694--> **Redis authentication credentials**—Added the ability to read Redis authorization credentials from the `relationships` property during the deploy phase.
2435
- {:.new}<!--MCLOUD-7695--> **Elasticsearch authorization credentials**—Added the ability to read Elasticsearch authorization credentials from the `relationships` property during the deploy phase.
2536
- {:.new}<!--MCLOUD-7698--> **Dedicated session storage service**—Added `redis-session` as a second option for session storage. You can use the `redis-session` service to store session information and use the `redis` service for cache to provide better performance.

src/cloud/release-notes/mcc-release-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ The [Magento Cloud Components](https://github.com/magento/magento-cloud-componen
1111

1212
The `{{site.data.var.mcc-package}}` package uses the following version sequence: `<major>.<minor>.<patch>`.
1313

14+
## v1.0.8
15+
*Release date: {{ site.data.var.ece-release-date }}*<br/>
16+
17+
- {:.fix}**Removed trailing slashes from auto-generated URLs**–Removed the trailing slashes from Category Page URLs generated during cache warm up.<!--MCLOUD-7192-->
18+
1419
## v1.0.7
1520
*Release date: September 9, 2020*<br/>
1621

src/cloud/release-notes/mcd-release-notes.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ The release notes include:
1616
- {:.new}New features
1717
- {:.fix}Fixes and improvements
1818

19+
## v1.2.4
20+
*Release date: {{ site.data.var.ece-release-date }}*<br/>
21+
22+
- {:.new}**New `Zookeeper` container**–Added a [Zookeeper container]({{ site.baseurl}}/cloud/docker/docker-containers-service.html#zookeeper-container) to manage lock provider configuration for projects that are not deployed to {{ site.data.var.ee }} on Cloud infrastructure.<!--MCLOUD-8000-->
23+
24+
- {:.new}**Added support for Composer 2.0.**–Added Composer version 2.0 to the Composer configuration file to support upgrades from Composer 1.0 which is approaching end-of-life.<!--MCLOUD-8003-->
25+
1926
## v1.2.3
2027
*Release date: June 14, 2021*<br/>
2128

src/cloud/release-notes/mcp-release-notes.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@ See [Apply patches]({{site.baseurl}}/cloud/project/project-patch.html) for instr
2121

2222
<!--Add release notes below-->
2323

24+
## v1.0.11
25+
*Release date: {{ site.data.var.ece-release-date }}*<br/>
26+
27+
- {:.fix} **Fixed an issue caused by applying the B2B Layered navigation patch**–For customers that have applied the B2B Layered navigation patch, this fix resolves an `Undefined offset` error that displays on the Search page after switching the Store view.<!--MCLOUD-5287-->
28+
29+
- {:.fix} **Paypal Checkout patch**–Fixes a Magento 2.3.7 issue with PayPal Express where the previously placed order price is displayed.<!--MC-42674-->
30+
31+
- {:.fix} **Patch category support**–Added support for processing patch categories and origin sources assigned to Magento Quality Patches. The categories allow customers to use filters and sorting to find patches more quickly when using [Magento Quality Patches](https://github.com/magento/quality-patches) and the Site-wide Analysis Tool (SWAT). <!--MC-38577-->
32+
2433
## v1.0.10
2534
*Release date: May 10, 2021*<br/>
2635

0 commit comments

Comments
 (0)