Skip to content

chore(deps): update dependency orchestra/testbench to v10#16

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/orchestra-testbench-10.x
Open

chore(deps): update dependency orchestra/testbench to v10#16
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/orchestra-testbench-10.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 26, 2025

This PR contains the following updates:

Package Change Age Confidence
orchestra/testbench (source) ^9.0^10.0 age confidence

Release Notes

orchestral/testbench (orchestra/testbench)

v10.9.0

Compare Source

Changes
Testbench Changes
Added
  • Add Orchestra\Testbench\package_version_compare() function.
  • Add Orchestra\Testbench\Concerns\WithFixtures to automatically loads fixtures file for test.
Changes
  • Supports flushing JsonResource and JsonApiResource states.
  • Supports PHPUnit 12.5.
  • Use Orchestra\Sidekick\package_path() for better root package path detection.

v10.8.0

Compare Source

Changes
  • Update minimum support for Testbench Core v10.8.0+. (v10.7.0...v10.8.0)
  • Update minimum Laravel Framework version to 12.40.0.
Testbench Changes
Changes
  • PHP 8.5 Compatibility.
  • Supports for Laravel Framework 12.40.0 or above.
  • Fix symlink removal on Windows environment in the following classes:
    • Orchestra\Testbench\Workbench\Actions\AddAssetSymlinkFolders
    • Orchestra\Testbench\Workbench\Actions\RemoveAssetSymlinkFolders

v10.7.0

Compare Source

Changes
  • Update minimum support for Testbench Core v10.7.0+. (v10.6.1...v10.7.0)
  • Update minimum Laravel Framework version to 12.28.0.

v10.6.0

Compare Source

Changes
  • Update minimum Laravel Framework version to 12.24.0.

v10.5.0

Compare Source

Changes
Testbench Changes
Changes
  • Supports for Laravel Framework 12.23.2 or above (fixed integration with PHPUnit 12.3.4).

v10.4.0

Compare Source

Changes
Testbench Changes
Changes
  • Supports PHPUnit 12.2.
  • Orchestra\Foundation\Env now extends Orchestra\Sidekick\Env.
  • Update skeleton's configuration.

v10.3.0

Compare Source

Changes
Testbench Changes
Changes
  • Requires Laravel Framework 12.8.0 and above.
  • Orchestra\Testbench\PHPUnit\TestCase now implements Orchestra\Testbench\Concerns\InteractsWithMockery.
  • Flush Illuminate\Database\Eloquent\Model::automaticallyEagerLoadRelationships() state between tests if the method exists.
Fixes
  • Fix handling deprecations logging when logger is not not available when running tests.

v10.2.2

Compare Source

Changes
Testbench Changes
Changes
  • Flush Illuminate\Database\Eloquent\Model states between tests.

v10.2.1

Compare Source

Changes
Testbench Changes
Changes
  • Remove symfony/polyfill-php84.

v10.2.0

Compare Source

Changes
Testbench Changes
Added
  • Add ability to pass Closure to Orchestra\Testbench\remote() function.
Changes
  • Add support for PHPUnit 12.1.
  • Refactor Orchestra\Testbench\remote() function to use Orchestra\Testbench\Foundation\Process\RemoteCommand.
  • Rename TESTBENCH_ENVIRONMENT_FILE_USING to TESTBENCH_ENVIRONMENT_FILE_USING (internal environment variable).

v10.1.0

Compare Source

Changes
Testbench Changes
Added
  • Added resolvePhpUnitTestClassName() and resolvePhpUnitTestMethodName() to Orchestra\Testbench\Concerns\InteractsWithPHPUnit trait.
Changes
  • Allows usesTestingFeature() to register attribute directly on test method.
  • Improves vendor detection on the default skeleton.
  • Utilise Orchestra\Sidekick\is_symlink() function instead of is_link() to improves support on Windows.
  • Use ::class instead of get_class().
  • Delete vendor symlink via package:purge-skeleton command.
Fixes
  • Fix static variable via Orchestra\Testbench\Attributes\UsesVendor::beforeEach() method.
Deprecate
  • Deprecate following PHPUnit annotations:
    • @environment-setup
    • @define-env
    • @define-database
    • @define-route

v10.0.0

Compare Source

Changes
  • Update support for Laravel Framework v12.
  • Update Orchestra\Testbench\TestCase to use Illuminate\Foundation\Testing\Concerns\InteractsWithViews trait.
Removed
  • Remove deprecated functions:
    • Orchestra\Testbench\once()
    • Orchestra\Testbench\transform_relative_path()
  • Remove deprecated methods in Orchestra\Testbench\Concerns\CreatesApplication trait:
    • getBasePath()
    • getDefaultApplicationBootstrapFile()
  • Remove deprecated methods in Orchestra\Testbench\Concerns\InteractsWithMigrations trait:
    • loadMigrationsWithoutRollbackFrom()
    • loadLaravelMigrationsWithoutRollback()
    • runLaravelMigrationsWithoutRollback()

v9.16.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\terminate() and Orchestra\Testbench\bail() function to allow using exit() on pnctl enabled tests.
  • Add Orchestra\Testbench\uses_default_skeleton() function.
  • Supports flushing Illuminate\Validator\Validator state.
  • Add Orchestra\Testbench\package_version_compare() function.
  • Add Orchestra\Testbench\Concerns\WithFixtures to automatically loads fixtures file for test.
Changes
  • Ability to merge Framework configurations when using custom skeleton.
  • Support disabling Laravel default service providers.
  • Flush Illuminate\Support\Str states via during test teardown.
  • Use Orchestra\Sidekick\package_path() for better root package path detection.

v9.15.0

Compare Source

Changes
Testbench Changes
Changes
  • Supports for Laravel Framework 11.45.2 or above (fixed integration with PHPUnit 12.3.4).
  • Supports PHPUnit 12.2 and 12.3.
  • Remove temporary SQLite database files available via journal_mode configuration.
  • Convert Collection::make() to new Collection().

v9.14.0

Compare Source

Changes
Testbench Changes
Changes
  • Orchestra\Testbench\PHPUnit\TestCase now implements Orchestra\Testbench\Concerns\InteractsWithMockery.
Fixes
  • Fix handling deprecations logging when logger is not not available when running tests.

v9.13.1

Compare Source

Changes
Testbench Changes
Changes
  • Supports for Laravel Framework 11.44.7.
  • Flush Illuminate\Database\Eloquent\Model states between tests.

v9.13.0

Compare Source

Changes
Testbench Changes
Added
  • Add ability to pass Closure to Orchestra\Testbench\remote() function.
Changes
  • Add support for PHPUnit 12.1.
  • Refactor Orchestra\Testbench\remote() function to use Orchestra\Testbench\Foundation\Process\RemoteCommand.
  • Rename TESTBENCH_ENVIRONMENT_FILE_USING to TESTBENCH_ENVIRONMENT_FILE_USING (internal environment variable).

v9.12.0

Compare Source

Changes
Testbench Changes
Added
  • Added resolvePhpUnitTestClassName() and resolvePhpUnitTestMethodName() to Orchestra\Testbench\Concerns\InteractsWithPHPUnit trait.
Changes
  • Allows usesTestingFeature() to register attribute directly on test method.
  • Improves vendor detection on the default skeleton.
  • Utilise Orchestra\Sidekick\is_symlink() function instead of is_link() to improves support on Windows.
  • Use ::class instead of get_class().
  • Delete vendor symlink via package:purge-skeleton command.
Fixes
  • Fix static variable via Orchestra\Testbench\Attributes\UsesVendor::beforeEach() method.
Deprecate
  • Deprecate following PHPUnit annotations:
    • @environment-setup
    • @define-env
    • @define-database
    • @define-route

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/orchestra-testbench-10.x branch from 2af1e9d to eb4674e Compare August 14, 2025 19:52
@renovate renovate bot force-pushed the renovate/orchestra-testbench-10.x branch from eb4674e to c2c9bb1 Compare August 23, 2025 19:54
@renovate renovate bot force-pushed the renovate/orchestra-testbench-10.x branch from c2c9bb1 to fc73c88 Compare November 20, 2025 15:51
@renovate renovate bot force-pushed the renovate/orchestra-testbench-10.x branch from fc73c88 to 166a2fb Compare November 24, 2025 20:10
@renovate
Copy link
Contributor Author

renovate bot commented Nov 24, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: composer.lock
Command failed: composer update orchestra/testbench:10.9.0 --with-dependencies --ignore-platform-req=ext-* --ignore-platform-req=lib-* --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins --minimal-changes
Loading composer repositories with package information
Dependency phpunit/phpunit is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Updating dependencies
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - laravel/nova is locked to version 5.2.5 and an update of this package was not requested.
    - laravel/nova 5.2.5 requires rap2hpoutre/fast-excel ^5.4 -> satisfiable by rap2hpoutre/fast-excel[v5.6.0].
    - openspout/openspout v4.28.5 requires php ~8.2.0 || ~8.3.0 || ~8.4.0 -> your php version (8.5.4) does not satisfy that requirement.
    - rap2hpoutre/fast-excel v5.6.0 requires openspout/openspout ^4.24 -> satisfiable by openspout/openspout[v4.28.5].


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants