Skip to content

Commit

Permalink
Prepare 8.12.0 release
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
1 parent 173d8bb commit 35a0687
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG-8.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`.

## 8.12.0

Released: 2023-09-25

### Changes

* Update minimum support for Testbench Core v8.12.0+. ([v8.11.1...v8.12.0](https://github.com/orchestral/testbench-core/compare/v8.11.1...v8.12.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.

## 8.11.1

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

0 comments on commit 35a0687

Please sign in to comment.