Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop:
  specify next release
  update changelog
  CS
  remove the --local -l flag from the df command in the UnixDisk Class
  • Loading branch information
Baptouuuu committed Sep 30, 2024
2 parents f291d1c + 07f5bce commit 814be09
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 4.1.1 - 2024-09-30

### Fixed

- Networks Volumes are now listed in the `Innmind\Server\Status\Server\Disk::volumes()` method

## 4.1.0 - 2023-09-23

### Added
Expand Down
5 changes: 1 addition & 4 deletions src/Facade/LoadAverage/PhpFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@

namespace Innmind\Server\Status\Facade\LoadAverage;

use Innmind\Server\Status\{
Facade\LoadAverageFacade,
Server\LoadAverage,
};
use Innmind\Server\Status\Server\LoadAverage;

/**
* @internal
Expand Down
2 changes: 1 addition & 1 deletion src/Server/Disk/UnixDisk.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function volumes(): Set
->processes
->execute(
Command::foreground('df')
->withShortOption('lh'),
->withShortOption('h'),
)
->wait()
->maybe()
Expand Down
5 changes: 1 addition & 4 deletions src/Server/Processes.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@

namespace Innmind\Server\Status\Server;

use Innmind\Server\Status\Server\{
Process,
Process\Pid,
};
use Innmind\Server\Status\Server\Process\Pid;
use Innmind\Immutable\{
Set,
Maybe,
Expand Down
6 changes: 1 addition & 5 deletions tests/Server/Processes/UnixProcessesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@
Server\Processes,
Server\Process,
Server\Process\Pid,
Clock\PointInTime\Delay,
};
use Innmind\Server\Control\ServerFactory as Control;
use Innmind\TimeContinuum\{
Clock as ClockInterface,
Earth\Clock,
};
use Innmind\TimeContinuum\Earth\Clock;
use Innmind\TimeWarp\Halt\Usleep;
use Innmind\Stream\Streams;
use Innmind\Immutable\Set;
Expand Down

0 comments on commit 814be09

Please sign in to comment.