Skip to content

Commit

Permalink
Updated EOM and EOL hardcoded dates
Browse files Browse the repository at this point in the history
For more details see #121

Key changes:

* Updated 3.3 EOM and EOL dates (ref.: https://support.ibexa.co/Public/service-life)

* [UI] Fixed incorrect translation string mentioning EOL instead of EOM

* [Composer] Disallowed plugins
  • Loading branch information
alongosz authored Mar 15, 2024
1 parent ef74a0d commit 954fd28
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,8 @@
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml"
},
"config": {
"allow-plugins": false
}
}
4 changes: 2 additions & 2 deletions src/bundle/Resources/translations/dashboard.en.xliff
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</header>
<body>
<trans-unit id="1710718593a511e351e6da36e3bb280e532bb768" resname="dashboard.ez_version.community_end_of_maintenance">
<source><![CDATA[Unfortunately %release% open source version has reached end of life,
<source><![CDATA[Unfortunately %release% open source version has reached end of maintenance,
<a target="_blank" href="%update_url%">please upgrade</a>.]]></source>
<target state="new"><![CDATA[Unfortunately %release% open source version has reached end of life,
<target state="new"><![CDATA[Unfortunately %release% open source version has reached end of maintenance,
<a target="_blank" href="%update_url%">please upgrade</a>.]]></target>
<note>key: dashboard.ez_version.community_end_of_maintenance</note>
</trans-unit>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
'%release%': ez.release,
'%update_url%': urls['update']
})
|desc("Unfortunately %release% open source version has reached end of life,
|desc("Unfortunately %release% open source version has reached end of maintenance,
<a target=\"_blank\" href=\"%update_url%\">please upgrade</a>.")
|raw }}
<em>
Expand Down
4 changes: 2 additions & 2 deletions src/bundle/SystemInfo/Collector/IbexaSystemInfoCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class IbexaSystemInfoCollector implements SystemInfoCollector
'3.0' => '2020-07-10T23:59:59+00:00',
'3.1' => '2020-11-30T23:59:59+00:00',
'3.2' => '2021-02-28T23:59:59+00:00',
'3.3' => '2024-01-31T23:59:59+00:00',
'3.3' => '2024-06-30T23:59:59+00:00',
];

/**
Expand All @@ -74,7 +74,7 @@ class IbexaSystemInfoCollector implements SystemInfoCollector
'3.0' => '2020-08-31T23:59:59+00:00',
'3.1' => '2021-01-30T23:59:59+00:00',
'3.2' => '2021-04-30T23:59:59+00:00',
'3.3' => '2026-01-31T23:59:59+00:00',
'3.3' => '2026-06-30T23:59:59+00:00',
];

/**
Expand Down

0 comments on commit 954fd28

Please sign in to comment.