Skip to content
This repository was archived by the owner on Oct 22, 2025. It is now read-only.

Commit a411472

Browse files
Update doc for lib
1 parent 3ef5dd6 commit a411472

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

.github/SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ We use [SemVer](https://semver.org/) for versioning. For the versions available,
88

99
| Version | Nginx Unit Capability | Supported |
1010
|---------|:----------------------|--------------------|
11-
| 0.9.x | 1.33.0 | :white_check_mark: |
11+
| 0.9.x | >=1.33.0 | :white_check_mark: |
1212
| 0.8.x | 1.32.1 | :white_check_mark: |
1313
| < 0.7.x | - | :x: |
1414

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## v0.9.0 - [2025/09/20]
4+
5+
- Added new class `Telemetry` and `TelemetryProtocolEnum` for telemetry support
6+
- Added `ModuleStatisticsInterface` and class `ModuleStatistics` for module statistics
7+
- Added enum ApiPathEnum for managing API paths
8+
- Added methods `getRouteBlock` and `removeRouteBlock` in `Route` class
9+
310
## v0.8.0 - [2024/09/10]
411

512
- Updated application classes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ server management into your projects
3131
| Version | Nginx Unit Capability | Supported |
3232
|---------|:----------------------|--------------------|
3333
| 0.9.x | >= 1.33.0 | :white_check_mark: |
34-
| 0.8.x | <= 1.32.1 | :white_check_mark: |
34+
| 0.8.x | <= 1.32.1 | :x: |
3535
| < 0.7.x | - | :x: |
3636

3737
### Quick start

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"ext-curl": "*"
3737
},
3838
"require-dev": {
39+
"roave/security-advisories": "dev-latest",
3940
"pestphp/pest": "^2.36",
4041
"phpstan/phpstan": "^1.12",
4142
"mockery/mockery": "^1.6",

src/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Config implements ConfigInterface, Uploadable
6767
* @param object|null $data
6868
* @throws UnitException
6969
*/
70-
public function __construct(object $data = null, UnitRequest $unitRequest = null)
70+
public function __construct(?object $data = null, ?UnitRequest $unitRequest = null)
7171
{
7272
$this->unitRequest = $unitRequest;
7373

0 commit comments

Comments
 (0)