Skip to content

Commit

Permalink
wip
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 Aug 29, 2023
1 parent dff5caa commit 20df6d8
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 62 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG-6.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

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

## 6.34.0

Released: 2023-08-29

### Changes

* Update minimum support for Testbench Core v6.38.0+. ([v6.37.1...v6.38.0](https://github.com/orchestral/testbench-core/compare/v6.37.1...v6.38.0))

#### Testbench Changes

##### Added

* Add ability to automatically run default Laravel migrations using `Orchestra\Testbench\Concerns\WithLaravelMigrations`.

## 6.33.1

Released: 2023-08-22

### Changes

* Update minimum support for Testbench Core v6.37.1+. ([v6.37.0...v6.37.1](https://github.com/orchestral/testbench-core/compare/v6.37.0...v6.37.1))

#### Testbench Changes

##### Fixes

* Fixes missing import for `Orchestra\Testbench\after_resolving` helper function.

## 6.33.0

Released: 2023-08-22
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"fakerphp/faker": "^1.21",
"laravel/framework": "^9.52.15",
"mockery/mockery": "^1.5.1",
"orchestra/testbench-core": "^7.29.1",
"orchestra/workbench": "^0.1.7 || ^0.2.0",
"orchestra/testbench-core": "^7.30",
"orchestra/workbench": "^0.2.3",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ray": "^1.32.4",
"symfony/process": "^6.0.9",
Expand Down
2 changes: 1 addition & 1 deletion core
Submodule core updated 31 files
+16 −0 CHANGELOG-6.x.md
+13 −0 CHANGELOG-7.x.md
+1 −0 phpunit.xml
+5 −0 src/Concerns/HandlesDatabases.php
+145 −0 src/Concerns/InteractsWithMigrations.php
+2 −3 src/Concerns/Testing.php
+3 −79 src/Concerns/WithLaravelMigrations.php
+0 −64 src/Concerns/WithLoadMigrationsFrom.php
+32 −0 src/Foundation/Console/Actions/Action.php
+50 −0 src/Foundation/Console/Actions/DeleteDirectories.php
+52 −0 src/Foundation/Console/Actions/DeleteFiles.php
+51 −0 src/Foundation/Console/Actions/EnsureDirectoryExists.php
+58 −0 src/Foundation/Console/Actions/GeneratesFile.php
+0 −0 src/Foundation/Console/Actions/stubs/.gitkeep
+3 −0 src/Foundation/Console/Concerns/InteractsWithIO.php
+10 −12 src/Foundation/Console/CreateSqliteDbCommand.php
+5 −15 src/Foundation/Console/DropSqliteDbCommand.php
+24 −73 src/Foundation/Console/PurgeSkeletonCommand.php
+4 −2 src/Foundation/Console/TestCommand.php
+1 −2 src/TestCase.php
+5 −5 tests/CommanderTest.php
+44 −0 tests/Databases/MigrateWithLaravelMigrationsTest.php
+3 −10 tests/Databases/MigrateWithLaravelTest.php
+34 −0 tests/Foundation/Console/Actions/DeleteDirectoriesTest.php
+34 −0 tests/Foundation/Console/Actions/DeleteFilesTest.php
+37 −0 tests/Foundation/Console/Actions/EnsureDirectoryExistsTest.php
+87 −0 tests/Foundation/Console/Actions/GeneratesFileTest.php
+1 −1 tests/Foundation/Console/CreateSqliteDbCommandTest.php
+1 −1 tests/Foundation/Console/DropSqliteDbCommandTest.php
+1 −1 tests/Workbench/Console/CreateSqliteDbCommandTest.php
+1 −1 tests/Workbench/Console/DropSqliteDbCommandTest.php
1 change: 0 additions & 1 deletion sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ git submodule foreach git checkout $BRANCH
git submodule foreach git pull

cp -rf core/testbench.yaml ./
cp -rf core/workbench ./
3 changes: 0 additions & 3 deletions workbench/.gitignore

This file was deleted.

13 changes: 0 additions & 13 deletions workbench/app/Providers/TestbenchServiceProvider.php

This file was deleted.

This file was deleted.

0 comments on commit 20df6d8

Please sign in to comment.