Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ updates:
- dependency-name: "typo3/cms-*"
versioning-strategy: "increase"
# adjust this number according to your own milestones if used.
milestone: 12
milestone: 8
commit-message:
prefix: "[Dependabot] "

Expand All @@ -50,6 +50,6 @@ updates:
interval: "daily"
versioning-strategy: "increase"
# adjust this number according to your own milestones if used.
milestone: 12
milestone: 8
commit-message:
prefix: "[Dependabot] "
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,34 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Documentation

## V4.1.0: CI improvements, bugfixes and cleanup

### Added

- Add a more comprehensive XLIFF integrity checker (#2148)
- Add a German translation for the BE module (#2163)
- Add Postgres/MySQL to the functional tests on CI (#2101)
- Add Composer caching on CI (#1933, #2139)

### Changed

- Disable some Type Perfect PHPStan rules (#2134)
- Do not process `Build/` with Rector (#2126)
- Move PHPCov from Phive to Composer (#2109)

### Removed

- Drop Composer scripts for functional tests
- Drop the `AbstractFrontendControllerTestCase` (#2076)

### Fixed

- Fix locallang files (#2158)
- Fix path to the Composer cache in GitHub Actions (#2139)
- Actually fix the code with `runTests.sh -s phpCsFixer` (#2136)
- Return exitcode != 0 when `runTests.sh -s composerUpdate(Min|Max)`
fails (#1936)

## 4.0.0

### Added
Expand Down
4 changes: 2 additions & 2 deletions Documentation/guides.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
/>
<project
title="TYPO3 EXT:tea"
release="4.0.0"
version="4.0"
release="4.1.0"
version="4.1"
copyright="since 2013 by the TYPO3 contributors"
/>
</guides>
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "4.1.x-dev"
"dev-main": "5.0.x-dev"
},
"typo3/cms": {
"extension-key": "tea",
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$EM_CONF[$_EXTKEY] = [
'title' => 'Tea example',
'description' => 'Example extension for unit testing and best practices',
'version' => '4.0.0',
'version' => '4.1.0',
'category' => 'example',
'constraints' => [
'depends' => [
Expand Down