Skip to content

Commit

Permalink
[!!!][TASK] Remove compatibility with TYPO3 v12
Browse files Browse the repository at this point in the history
Related: #15
  • Loading branch information
brotkrueml committed Apr 9, 2023
1 parent fd03f26 commit b05adc7
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 15 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,8 @@ jobs:
typo3-versions: ^11
- php-versions: 8.1
typo3-versions: ^11
- php-versions: 8.1
typo3-versions: ^12
- php-versions: 8.2
typo3-versions: ^11
- php-versions: 8.2
typo3-versions: ^12
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Removed
- Compatibility with TYPO3 v12 (due to a form element with same name since TYPO3 v12.3) (#15)

## [2.0.1] - 2023-01-13

### Fixed
Expand Down
6 changes: 6 additions & 0 deletions Documentation/Changelog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0
`Unreleased <https://github.com/brotkrueml/form-country-select/compare/v2.0.1...HEAD>`_
-------------------------------------------------------------------------------------------

Removed
^^^^^^^


* Compatibility with TYPO3 v12 (due to a form element with same name since TYPO3 v12.3) (#15)

`2.0.1 <https://github.com/brotkrueml/form-country-select/compare/v2.0.0...v2.0.1>`_ - 2023-01-13
-----------------------------------------------------------------------------------------------------

Expand Down
8 changes: 7 additions & 1 deletion Documentation/Installation/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@ Installation
Target group: **Administrators**

.. note::
The extension in version |release| supports TYPO3 v11 LTS and TYPO3 v12. Use
The extension in version |release| supports TYPO3 v11 LTS. Use
version 1.x for support with TYPO3 v9 LTS and TYPO3 v10 LTS.

.. attention::
Version 2.0 supported also TYPO3 v12. The compatibility was removed with
version 2.1 again as a form element with the same name was
:ref:`introduced <feature-99735-1678701694>` with TYPO3 v12.3. For
compatibility with TYPO3 v12.3+ use version 3 of this extension.

The recommended way to install this extension is by using Composer. In your
Composer-based TYPO3 project root, just type::

Expand Down
1 change: 1 addition & 0 deletions Documentation/Settings.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ project_discussions =
t3coreapi = https://docs.typo3.org/m/typo3/reference-coreapi/11.5/en-us/
t3start = https://docs.typo3.org/m/typo3/tutorial-getting-started/11.5/en-us/

ext_core = https://docs.typo3.org/c/typo3/cms-core/main/en-us/
ext_form = https://docs.typo3.org/c/typo3/cms-form/11.5/en-us/
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ of the website page.

## Versions and support

| Latest release | TYPO3 | PHP | Updates will contain |
|----------------|-------------|-------|------------------------------------------|
| 2.x | 11.5 - 12.4 | ≥ 7.4 | Features, security and bug fixes |
| 1.x | 9.5 - 11.5 | ≥ 7.2 | Security fixes (EOL expected April 2023) |
| Latest release | TYPO3 | PHP | Updates will contain |
|----------------|------------|-------|------------------------|
| 2.x | 11.5 | ≥ 7.4 | Security and bug fixes |
| 1.x | 9.5 - 11.5 | ≥ 7.2 | End of life |

[Documentation](https://docs.typo3.org/p/brotkrueml/form-country-select/main/en-us/) |
[Changelog](https://github.com/brotkrueml/form-country-select/blob/main/CHANGELOG.md) |
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"require": {
"php": ">=7.4",
"symfony/intl": "^5.4 || ^6.2",
"typo3/cms-core": "^11.5 || ^12.1",
"typo3/cms-extbase": "^11.5 || ^12.1",
"typo3/cms-form": "^11.5 || ^12.1"
"typo3/cms-core": "^11.5",
"typo3/cms-extbase": "^11.5",
"typo3/cms-form": "^11.5"
},
"require-dev": {
"brotkrueml/coding-standards": "~3.0.0",
Expand All @@ -29,7 +29,7 @@
"phpunit/phpunit": "^9.6",
"rector/rector": "0.15.24",
"saschaegerer/phpstan-typo3": "^1.8",
"symfony/yaml": "^5.4 || ^6.2",
"symfony/yaml": "^5.4",
"symplify/phpstan-rules": "^11.2",
"tomasvotruba/cognitive-complexity": "^0.1.1"
},
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
'version' => '2.1.0-dev',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-12.4.99',
'form' => '11.5.0-12.4.99',
'typo3' => '11.5.0-11.5.99',
'form' => '11.5.0-11.5.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down

0 comments on commit b05adc7

Please sign in to comment.