Skip to content

Commit

Permalink
Merge branch '7.x' into develop
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Sep 25, 2023
2 parents a22644a + 3e493a4 commit 173d8bb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG-7.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

This changelog references the relevant changes (bug and security fixes) done to `orchestra/testbench`.

## 7.32.0

Released: 2023-09-25

### Changes

* Update minimum support for Testbench Core v7.32.0+. ([v7.31.0...v7.32.0](https://github.com/orchestral/testbench-core/compare/v7.31.0...v7.32.0))
* Update minimum support for Workbench 0.4.0+.

#### Testbench Changes

##### Added Added

* Added `cachedConfigurationForWorkbench()` to `Orchestra\Testbench\Concern\InteractsWithWorkbench` trait.
* Add the ability to read `TESTBENCH_WORKING_PATH` from environment variables for Testbench Dusk usage.
* Supports Workbench `discovers` configuration.
* Add the ability to properly forward Environment Variables.
* Add `usesSqliteInMemoryDatabaseConnection` to `Orchestra\Testbench\Concerns\HandlesDatabases` trait.

## 7.31.0

Released: 2023-09-19
Expand Down
2 changes: 1 addition & 1 deletion core
Submodule core updated 96 files
+1 −0 .github/workflows/audits.yaml
+10 −16 .github/workflows/collision-tests.yaml
+1 −13 .github/workflows/coveralls.yaml
+10 −14 .github/workflows/parallel-tests.yaml
+0 −67 .github/workflows/strict-tests.yaml
+6 −71 .github/workflows/tests.yaml
+0 −33 .github/workflows/update-skeleton.yaml
+791 −0 CHANGELOG-6.x.md
+6 −3 CHANGELOG-7.x.md
+0 −487 CHANGELOG-8.x.md
+6 −2 README.md
+5 −44 bin/sync
+19 −16 composer.json
+0 −1 laravel/.env.example
+31 −4 laravel/config/app.php
+2 −2 laravel/config/auth.php
+0 −1 laravel/config/broadcasting.php
+0 −1 laravel/config/cache.php
+0 −9 laravel/config/logging.php
+1 −8 laravel/config/mail.php
+0 −16 laravel/config/queue.php
+20 −0 laravel/lang/en/auth.php
+19 −0 laravel/lang/en/pagination.php
+22 −0 laravel/lang/en/passwords.php
+184 −0 laravel/lang/en/validation.php
+6 −2 laravel/migrations/2014_10_12_000000_testbench_create_users_table.php
+8 −4 laravel/migrations/2014_10_12_100000_testbench_create_password_resets_table.php
+6 −2 laravel/migrations/2019_08_19_000000_testbench_create_failed_jobs_table.php
+74 −82 laravel/resources/views/welcome.blade.php
+3 −2 laravel/tests/CreatesApplication.php
+0 −1 phpstan.neon.dist
+19 −16 phpunit.xml
+31 −3 src/Bootstrap/HandleExceptions.php
+2 −1 src/Concerns/CreatesApplication.php
+24 −0 src/Concerns/HandlesDatabases.php
+2 −12 src/Concerns/InteractsWithPHPUnit.php
+40 −4 src/Concerns/InteractsWithPublishedFiles.php
+1 −0 src/Concerns/Testing.php
+1 −0 src/Database/MigrateProcessor.php
+18 −1 src/Exceptions/Handler.php
+9 −34 src/Exceptions/PHPUnitErrorException.php
+4 −2 src/Factories/UserFactory.php
+4 −4 src/Foundation/Application.php
+1 −1 src/Foundation/Bootstrap/CreateVendorSymlink.php
+1 −1 src/Foundation/Bootstrap/LoadMigrationsFromArray.php
+7 −2 src/Foundation/Bootstrap/StartWorkbench.php
+3 −15 src/Foundation/Console/TestCommand.php
+4 −16 src/Foundation/Console/TestFallbackCommand.php
+9 −24 src/Foundation/PackageManifest.php
+5 −7 src/Foundation/TestbenchServiceProvider.php
+6 −8 src/Http/Kernel.php
+4 −2 src/Http/Middleware/Authenticate.php
+7 −10 src/Http/Middleware/RedirectIfAuthenticated.php
+2 −3 src/Http/Middleware/TrimStrings.php
+1 −1 src/Http/Middleware/TrustHosts.php
+0 −56 src/PHPUnit/TestCase.php
+18 −1 src/TestCase.php
+26 −0 src/Workbench/Composer.php
+27 −0 src/Workbench/Console/CreateSqliteDbCommand.php
+27 −0 src/Workbench/Console/DropSqliteDbCommand.php
+235 −0 src/Workbench/Console/InstallCommand.php
+0 −0 src/Workbench/Console/stubs/.gitkeep
+2 −0 src/Workbench/Console/stubs/testbench.yaml
+27 −0 src/Workbench/Events/WorkbenchInstallEnded.php
+25 −0 src/Workbench/Events/WorkbenchInstallStarted.php
+102 −0 src/Workbench/Http/Controllers/WorkbenchController.php
+37 −0 src/Workbench/Http/Middleware/CatchDefaultRoute.php
+60 −0 src/Workbench/WorkbenchServiceProvider.php
+4 −24 src/helpers.php
+7 −1 testbench
+3 −4 tests/ApplicationTest.php
+52 −0 tests/AssertPublishedFilesTest.php
+1 −5 tests/CacheRouteTest.php
+1 −1 tests/CommanderTest.php
+1 −2 tests/ConfigTest.php
+2 −1 tests/Databases/RefreshDatabaseTest.php
+4 −1 tests/DefaultConfigurationTest.php
+1 −1 tests/DiscoverPackagesTest.php
+0 −43 tests/Factories/UserFactoryTest.php
+0 −76 tests/Foundation/PackageManifestTest.php
+2 −4 tests/HelpersTest.php
+1 −13 tests/InlineCacheRouteTest.php
+1 −1 tests/Integrations/AggregateServiceProviderTest.php
+1 −1 tests/Integrations/CustomConfigurationTest.php
+4 −4 tests/Integrations/DispatchJobTest.php
+0 −46 tests/Integrations/EnvironmentVariablesTest.php
+0 −61 tests/PhpUnit10DeprecationsTest.php
+19 −5 tests/PhpUnit9DeprecationsTest.php
+3 −12 tests/RequestTest.php
+21 −8 tests/RouteTest.php
+1 −6 tests/TestCaseTest.php
+3 −1 tests/TestbenchTest.php
+60 −0 tests/Workbench/Console/CreateSqliteDbCommandTest.php
+60 −0 tests/Workbench/Console/DropSqliteDbCommandTest.php
+183 −0 tests/Workbench/Http/Controllers/WorkbenchControllerTest.php
+97 −0 tests/Workbench/Http/Middleware/CatchDefaultRouteTest.php

0 comments on commit 173d8bb

Please sign in to comment.