Skip to content

Commit 8d9c2ee

Browse files
author
Willem Leuverink
authored
Merge branch 'NativePHP:main' into main
2 parents 45d0d42 + 597e0dc commit 8d9c2ee

File tree

5 files changed

+24
-3
lines changed

5 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
All notable changes to `nativephp-laravel` will be documented in this file.
44

5+
## 1.0.0-beta.1 - 2025-01-21
6+
7+
### What's Changed
8+
9+
* Child process queue workers by @XbNz in https://github.com/NativePHP/laravel/pull/450
10+
* fix: static analysis by @SRWieZ in https://github.com/NativePHP/laravel/pull/452
11+
* feat: default notification title by @SRWieZ in https://github.com/NativePHP/laravel/pull/451
12+
* Fix menubar not ready by @SRWieZ in https://github.com/NativePHP/laravel/pull/453
13+
* Add support for Window::show() by @curtisblackwell in https://github.com/NativePHP/laravel/pull/454
14+
* Fix: Return type mismatch between screen facade and screen class methods. by @kondi3 in https://github.com/NativePHP/laravel/pull/463
15+
16+
### New Contributors
17+
18+
* @kondi3 made their first contribution in https://github.com/NativePHP/laravel/pull/463
19+
20+
**Full Changelog**: https://github.com/NativePHP/laravel/compare/0.7.0...0.8.0
21+
522
## 0.7.0 - 2024-12-19
623

724
### What's Changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Please review [our security policy](../../security/policy) on how to report secu
4444
## Credits
4545

4646
- [Marcel Pociot](https://github.com/mpociot)
47+
- [Simon Hamp](https://github.com/simonhamp)
4748
- [All Contributors](../../contributors)
4849

4950
## License

config/nativephp.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@
115115
],
116116
],
117117

118+
/**
119+
* The queue workers that get auto-started on your application start.
120+
*/
118121
'queue_workers' => [
119122
'default' => [
120123
'queues' => ['default'],

src/Facades/ChildProcess.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
/**
1010
* @method static \Native\Laravel\ChildProcess[] all()
11-
* @method static \Native\Laravel\ChildProcess get(string $alias = null)
11+
* @method static \Native\Laravel\ChildProcess|null get(string $alias = null)
1212
* @method static \Native\Laravel\ChildProcess message(string $message, string $alias = null)
1313
* @method static \Native\Laravel\ChildProcess restart(string $alias = null)
1414
* @method static \Native\Laravel\ChildProcess start(string|array $cmd, string $alias, string $cwd = null, array $env = null, bool $persistent = false)

src/Facades/Dock.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
use Native\Laravel\Menu\Menu;
77

88
/**
9-
* @method static void bounce()
10-
* @method static void|string badge(string $type = null)
9+
* @method static void bounce(string $type = 'informational')
10+
* @method static void|string badge(?string $type = null)
1111
* @method static void cancelBounce()
1212
* @method static void hide()
1313
* @method static void icon(string $Path)

0 commit comments

Comments
 (0)