Skip to content

Commit 4664dd6

Browse files
committed
[TASK] Release version 6.0.0
1 parent 7fa4014 commit 4664dd6

6 files changed

Lines changed: 32 additions & 26 deletions

File tree

Build/rector/rector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
AddVoidReturnTypeWhereNoReturnRector::class,
4444
])
4545
->withConfiguredRule(ExtEmConfRector::class, [
46-
ExtEmConfRector::TYPO3_VERSION_CONSTRAINT => '13.4.0-14.1.99',
46+
ExtEmConfRector::TYPO3_VERSION_CONSTRAINT => '13.4.0-14.3.99',
4747
ExtEmConfRector::PHP_VERSION_CONSTRAINT => '8.2.0-8.5.99',
4848
ExtEmConfRector::ADDITIONAL_VALUES_TO_BE_REMOVED => [],
4949
])

ChangeLog

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
2026-04-22 Francois Suter (Idéative) <typo3@ideative.ch>
2+
3+
* Release version 6.0.0
4+
15
2026-03-31 Francois Suter (Idéative) <typo3@ideative.ch>
26

3-
* Refactor paginators, pass constructor instance to paginator, resolves #19
7+
* Refactor paginators, pass connector instance to paginator, resolves #19
48

59
2026-02-09 Francois Suter (Idéative) <typo3@ideative.ch>
610

Documentation/guides.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/>
1313
<project
1414
title="JSON Connector Service"
15-
release="5.0.0"
15+
release="6.0.0"
1616
copyright="2013-2026"
1717
/>
1818
<inventory id="svconnector" url="https://docs.typo3.org/p/cobweb/svconnector/main/en-us/"/>

Tests/Functional/ConnectorJsonTest.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,13 @@
1717
* The TYPO3 project - inspiring people to share!
1818
*/
1919

20+
use Cobweb\Svconnector\Domain\Model\Dto\CallContext;
21+
use Cobweb\Svconnector\Domain\Model\Dto\ConnectionInformation;
2022
use Cobweb\Svconnector\Exception\SourceErrorException;
2123
use Cobweb\SvconnectorJson\Service\ConnectorJson;
2224
use PHPUnit\Framework\Attributes\DataProvider;
2325
use PHPUnit\Framework\Attributes\Test;
26+
use Psr\EventDispatcher\EventDispatcherInterface;
2427
use TYPO3\CMS\Core\Utility\GeneralUtility;
2528
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
2629

@@ -45,7 +48,12 @@ public function setUp(): void
4548
{
4649
parent::setUp();
4750
try {
48-
$this->subject = GeneralUtility::makeInstance(ConnectorJson::class);
51+
$this->subject = GeneralUtility::makeInstance(
52+
ConnectorJson::class,
53+
$this->getContainer()->get(EventDispatcherInterface::class),
54+
$this->getMockBuilder(CallContext::class)->getMock(),
55+
$this->getMockBuilder(ConnectionInformation::class)->getMock()
56+
);
4957
} catch (\Exception $e) {
5058
self::markTestSkipped($e->getMessage());
5159
}

composer.json

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "cobweb/svconnector_json",
33
"type": "typo3-cms-extension",
4-
"description": "Connector service for JSON data",
4+
"description": "Connector service JSON – Connector service for JSON data",
55
"license": [
66
"GPL-2.0-or-later"
77
],
@@ -20,14 +20,14 @@
2020
"require": {
2121
"php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
2222
"ext-json": "*",
23-
"typo3/cms-core": "^13.4 || ^14.0",
24-
"cobweb/svconnector": "dev-develop",
25-
"typo3/coding-standards": "*"
23+
"typo3/cms-core": "^13.4 || ^14.3",
24+
"cobweb/svconnector": "^7.0"
2625
},
2726
"require-dev": {
28-
"ergebnis/composer-normalize": "^2.48",
29-
"friendsofphp/php-cs-fixer": "^3.88",
30-
"typo3/testing-framework": "^9.x-dev",
27+
"ergebnis/composer-normalize": "^2.51",
28+
"friendsofphp/php-cs-fixer": "^3.95",
29+
"typo3/coding-standards": "*",
30+
"typo3/testing-framework": "^9.5",
3131
"phpstan/phpstan": "^2.1"
3232
},
3333
"replace": {
@@ -36,7 +36,12 @@
3636
"extra": {
3737
"typo3/cms": {
3838
"extension-key": "svconnector_json",
39-
"web-dir": ".Build/web"
39+
"web-dir": ".Build/web",
40+
"version": "6.0.0",
41+
"Package": {
42+
"providesPackages": {
43+
}
44+
}
4045
}
4146
},
4247
"config": {

ext_emconf.php

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,10 @@
11
<?php
22

3-
/***************************************************************
4-
* Extension Manager/Repository config file for ext "svconnector_json".
5-
*
6-
* Auto generated 05-04-2017 18:01
7-
*
8-
* Manual updates:
9-
* Only the data in the array - everything else is removed by next
10-
* writing. "version" and "dependencies" must not be touched!
11-
***************************************************************/
12-
133
$EM_CONF[$_EXTKEY] = [
144
'title' => 'Connector service - JSON',
155
'description' => 'Connector service for JSON data',
166
'category' => 'services',
17-
'version' => '5.0.0',
7+
'version' => '6.0.0',
188
'state' => 'stable',
199
'clearcacheonload' => 0,
2010
'author' => 'Francois Suter (Idéative)',
@@ -25,8 +15,8 @@
2515
'depends' =>
2616
[
2717
'php' => '8.2.0-8.5.99',
28-
'typo3' => '13.4.0-14.1.99',
29-
'svconnector' => '6.0.0-0.0.0',
18+
'typo3' => '13.4.0-14.3.99',
19+
'svconnector' => '7.0.0-0.0.0',
3020
],
3121
'conflicts' =>
3222
[
@@ -36,4 +26,3 @@
3626
],
3727
],
3828
];
39-

0 commit comments

Comments
 (0)