Skip to content

Commit e9c56dc

Browse files
committed
Merge branch 'main' into fix-phpstorm-on-windows-v1
2 parents 51ce47b + 81165c0 commit e9c56dc

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

.ai/boost/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- You must use this tool to search for Laravel-ecosystem documentation before falling back to other approaches.
2424
- Search the documentation before making code changes to ensure we are taking the correct approach.
2525
- Use multiple, broad, simple, topic based queries to start. For example: `['rate limiting', 'routing rate limiting', 'routing']`.
26-
- Do not add package names to queries, package information is already shared. Use `test resource table`, not `filament 4 test resource table`.
26+
- Do not add package names to queries - package information is already shared. For example, use `test resource table`, not `filament 4 test resource table`.
2727

2828
### Available Search Syntax
2929
- You can and should pass multiple queries at once. The most relevant results will be returned first.

.ai/filament/3/core.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
## Version 3 Changes To Focus On
44
- Resources are located in `app/Filament/Resources/` directory.
5-
- Resource pages (List, Create, Edit) are auto-generated within the resource's directory, i.e. `app/Filament/Resources/PostResource/Pages/`.
5+
- Resource pages (List, Create, Edit) are auto-generated within the resource's directory - e.g., `app/Filament/Resources/PostResource/Pages/`.
66
- Forms use the `Forms\Components` namespace for form fields.
77
- Tables use the `Tables\Columns` namespace for table columns.
8-
- New RichEditor component available (`Filament\Forms\Components\RichEditor`).
8+
- A new `Filament\Forms\Components\RichEditor` component is available.
99
- Form and table schemas now use fluent method chaining.
1010
- Added `php artisan filament:optimize` command for production optimization.
1111
- Requires implementing `FilamentUser` contract for production access control.

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/boost/compare/v1.0.14...main)
3+
## [Unreleased](https://github.com/laravel/boost/compare/v1.0.15...main)
4+
5+
## [v1.0.15](https://github.com/laravel/boost/compare/v1.0.14...v1.0.15) - 2025-08-14
6+
7+
### What's Changed
8+
9+
* fixes #67 by only finding files that begin with an uppercase letter by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/116
10+
11+
**Full Changelog**: https://github.com/laravel/boost/compare/v1.0.14...v1.0.15
412

513
## [v1.0.14](https://github.com/laravel/boost/compare/v1.0.13...v1.0.14) - 2025-08-14
614

src/Install/GuidelineAssist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private function discover(callable $cb): array
6868
$finder = Finder::create()
6969
->in($appPath)
7070
->files()
71-
->name('*.php');
71+
->name('/[A-Z].*\.php$/');
7272

7373
foreach ($finder as $file) {
7474
$relativePath = $file->getRelativePathname();

src/Install/GuidelineComposer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protected function find(): Collection
8787
$guidelines->put('foundation', $this->guideline('foundation'));
8888
$guidelines->put('boost', $this->guideline('boost/core'));
8989

90-
$guidelines->put('php', $this->guideline('php/base'));
90+
$guidelines->put('php', $this->guideline('php/core'));
9191

9292
// TODO: AI-48: Use composer target version, not PHP version. Production could be 8.1, but local is 8.4
9393
// $phpMajorMinor = PHP_MAJOR_VERSION.'.'.PHP_MINOR_VERSION;

0 commit comments

Comments
 (0)