Skip to content

Commit

Permalink
Merge pull request #5 from zepgram/develop
Browse files Browse the repository at this point in the history
[v0.0.5] @deprecated on magento 2.4.4
  • Loading branch information
Benjamin Calef authored Apr 1, 2022
2 parents fab3629 + 48d6b8a commit 491d7cd
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Zero Downtime Deployment #

## Magento 2.4.4 - @deprecated

On version 2.4.4, Magento is able to handle blue/green deployment, making this module no more required to handle Zero Downtime Deployment.<br>
To enable blue/green deployment you can add the config `deployment/blue_green/enabled` in your <b>app/etc/env.php</b>:
```php
'deployment' => [
'blue_green' => [
'enabled' => true
]
]
```

<b>magento/framework/Module/Plugin/DbStatusValidator.php</b>
![image](https://user-images.githubusercontent.com/16258478/161338149-52febed8-d9b9-4e95-ba9d-60b999627aa5.png)
<b>magento/module-deploy/Model/Plugin/ConfigChangeDetector.php</b>
![image](https://user-images.githubusercontent.com/16258478/161338272-f72b6d73-3763-42d4-a684-1450a47290b8.png)

Related commit is here: https://github.com/magento/magento2/commit/c241e11adf59baeca9d9e66cdbd726e4b0b88b21

&#9888; Consequently, this module is now deprecated and will not be maintained anymore.

## Purpose

Disable native change detection from Magento2 to allow Zero Downtime Deployment (ZDD).

Normal behavior:<br>
Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "zepgram/module-zero-downtime-deployment",
"description": "Disable native change detection from Magento2 to allow Zero Downtime Deployment (ZDD)",
"abandoned": true,
"type": "magento2-module",
"version": "0.0.4",
"version": "0.0.5",
"require": {
"magento/framework": "^102.0.0|^103.0.0",
"magento/module-deploy": "^100.2.0"
"magento/framework": "^0",
"magento/module-deploy": "^0"
},
"autoload": {
"files": [
Expand Down

0 comments on commit 491d7cd

Please # to comment.