Skip to content

Commit 85294ab

Browse files
committed
Add version 0.1.23
1 parent 950e23d commit 85294ab

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ URL_LOCAL=api-version.localhost
5252
GENERAL_BASICAUTH_PRODUCTION='ixno:$apr1$5JvcxkWC$iA7cBjSG3xTSO/Y/dsHZt/'
5353

5454
# Version of this app
55-
VERSION_APP=0.1.22
55+
VERSION_APP=0.1.23
5656

5757
# Version of nginx image
5858
VERSION_NGINX=0.1.0

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Releases
99

10+
### [0.1.23] - 2024-05-31
11+
12+
* Update symfony to 7.0
13+
1014
### [0.1.22] - 2023-12-30
1115

1216
* Fix isFilterBoolean method

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.22
1+
0.1.23

bin/header/ixno

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
1111
VERSION_PATH="$SCRIPT_DIR/../../VERSION"
1212
VERSION=$(cat $VERSION_PATH)
1313

14-
HEADER1="PHPNamingConventions (PNC)"
14+
HEADER1="PhpApiVersionBundle (PAVB)"
1515
HEADER2="Version: $VERSION"
16-
HEADER3="Copyright (c) 2022 björn hempel <bjoern@hempel.li>"
16+
HEADER3="Copyright (c) 2024 Björn Hempel <bjoern@hempel.li>"
1717

1818
echo
1919
printf " ┌───┐ ┌───┐ ┌───┐ ┌───┐ "

tests/Api/Base/BaseApiTestCase.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
use Ixnode\PhpJsonSchemaValidator\Validator;
2525
use Ixnode\PhpJsonSchemaValidator\ValidatorDebugger;
2626
use JsonException;
27+
use LogicException;
2728
use Symfony\Component\DependencyInjection\ContainerInterface;
2829
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
2930
use Symfony\Component\HttpFoundation\Request;
@@ -76,6 +77,10 @@ public static function initClientEnvironment(array $kernelOptions = [], array $d
7677
/* Setup is already done. */
7778
self::$setUpDone = true;
7879

80+
if (is_null(self::$kernel)) {
81+
throw new LogicException('Kernel is null.');
82+
}
83+
7984
/* Save container class. */
8085
self::$container = self::$kernel->getContainer();
8186
}

0 commit comments

Comments
 (0)