Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 14, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
orchestra/testbench (source) require-dev major ^7.1 -> ^8.0

Release Notes

orchestral/testbench

v8.2.1

Compare Source

Changes
Testbench Changes
Fixes
  • Fixes Orchestra\Testbench\Foundation\Config::addProviders() usage.
  • Fixes Orchestra\Testbench\transform_relative_path() logic.

v8.2.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Foundation\Bootstrap\LoadMigrationsFromArray class to handle loading migrations from testbench.yaml.
    • You can now disable loading default migrations using either migrations: false in testbench.yaml or adding TESTBENCH_WITHOUT_DEFAULT_MIGRATIONS=(true) environment variable.
  • Added additional configuration options to testbench.yaml:
    • migrations: <bool|array>
    • bootstrappers: <array>
  • Added Orchestra\Testbench\parse_environment_variables() function.
  • Added Orchestra\Testbench\transform_relative_path() function.
Changes
  • env configuration from testbench.yaml with have higher priority than default_environment_variables().
  • Disable Dotenv\Repository\Adapter\PutenvAdapter when generating environment variable on the fly using Orchestra\Testbench\Foundation\Application.
Fixes
  • Fixes console output when an exception is thrown before application can be bootstrapped.
  • Fixes some configuration value leaks between tests due to the way it set environment values including APP_KEY, APP_DEBUG etc.

v8.1.1

Compare Source

Changes
  • Support Laravel Framework 10.5.

v8.1.0

Compare Source

Changes
Testbench Changes
Added
  • Add supports for setup<Concern> and teardown<Concern> with imported traits.
Changes
  • Move PHPUnit 9 support to legacy:
    • Recommend using PHPUnit 10 whenever possible.
    • Remove deprecation handling support for PHPUnit 9.
    • Only recommend using package:test and --parallel with PHPUnit 10.

v8.0.11

Compare Source

Fixes
  • Avoid database connection from eager loaded via spatie/laravel-ray.

v8.0.10

Compare Source

Changes
  • Update minimum support for Laravel Framework to v10.4.1.

v8.0.9

Compare Source

Changes
  • Update minimum support for Laravel Framework to v10.4.0.
  • Support for Testbench Core to v8.1.0.

v8.0.8

Compare Source

Changes
  • Update minimum support for Testbench Core v8.0.5+. (v8.0.4...v8.0.5)
  • Update minimum support for Laravel Framework to v10.3.3.

v8.0.7

Compare Source

Changes
  • Update minimum support for Testbench Core v8.0.4+. (v8.0.2...v8.0.4)
  • Update minimum support for Laravel Framework to v10.3.1.

v8.0.6

Compare Source

Changes
  • Support Laravel Framework 10.3.

v8.0.5

Compare Source

Changes
  • Support Laravel Framework 10.2.

v8.0.4

Compare Source

Changes
  • Update minimum support for Laravel Framework to v10.1.5.

v8.0.3

Compare Source

Changes
  • Update minimum support for Laravel Framework to v10.1.4.

v8.0.2

Compare Source

Changes
  • Update minimum support for Testbench Core v8.0.2+. (v8.0.1...v8.0.2)
  • Support Laravel Framework 10.1.
Testbench Changes
Fixes
  • Fixes app.asset_url config default value from '/' to null.

v8.0.1

Compare Source

Changes
Testbench Changes
Changes
  • Bump minimum laravel/framework to 10.0.3.
  • Use available $_composer_autoload_path from composer-runtime-api.

v8.0.0

Compare Source

8.0.0

Released: 2023-02-14

Added
  • Added support for PHPUnit 10.
Changes
  • Update support for Laravel Framework v10.
  • Increase minimum PHP version to 8.1 and above (tested with 8.1 and 8.2).

v7.24.1

Compare Source

Changes
Testbench Changes
Fixes
  • Fixes Orchestra\Testbench\Foundation\Config::addProviders() usage.
  • Fixes Orchestra\Testbench\transform_relative_path() logic.

v7.24.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Foundation\Bootstrap\LoadMigrationsFromArray class to handle loading migrations from testbench.yaml.
    • You can now disable loading default migrations using either migrations: false in testbench.yaml or adding TESTBENCH_WITHOUT_DEFAULT_MIGRATIONS=(true) environment variable.
  • Added additional configuration options to testbench.yaml:
    • migrations: <bool|array>
    • bootstrappers: <array>
  • Added Orchestra\Testbench\parse_environment_variables() function.
  • Added Orchestra\Testbench\transform_relative_path() function.
Changes
  • env configuration from testbench.yaml with have higher priority than default_environment_variables().
  • Disable Dotenv\Repository\Adapter\PutenvAdapter when generating environment variable on the fly using Orchestra\Testbench\Foundation\Application.
Fixes
  • Fixes console output when an exception is thrown before application can be bootstrapped.
  • Fixes some configuration value leaks between tests due to the way it set environment values including APP_KEY, APP_DEBUG etc.

v7.23.0

Compare Source

Changes
Testbench Changes
Added
  • Add supports for setup<Concern> and teardown<Concern> with imported traits.

v7.22.2

Compare Source

Changes
Testbench Changes
Fixes
  • Avoid database connection from eager loaded via spatie/laravel-ray.

v7.22.1

Compare Source

Changes

v7.22.0

Compare Source

Changes
Testbench Changes
Changes
  • Improve package:test --parallel command usage.
  • Use $app->bootstrapPath() instead of $app->basePath('bootstrap') whenever possible.

v7.21.0

Compare Source

Changes
Testbench Changes
Added
  • Added support for Illuminate\Foundation\Testing\DatabaseTruncation.
Changes
  • Bump minimum laravel/framework to 9.50.2.

v7.20.0

Compare Source

Changes
Testbench Changes
Changes
  • Improves package:test commands.
  • Update skeleton to match v9.5.2.

v7.19.0

Compare Source

Changes
Testbench Changes
Added
  • Added Illuminate\Foundation\Testing\InteractsWithDeprecationHandling to Orchestra\Testbench\TestCase.

v7.18.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\laravel_version_compare function as alias to version_compare specifically for Laravel Framework.
  • Added Orchestra\Testbench\phpunit_version_compare function as alias to version_compare specifically for PHPUnit.
  • Added Orchestra\Testbench\Exceptions\PHPUnitErrorException class.
Changes
  • Mark Orchestra\Testbench\Bootstrap\ConfigureRay class as final.
  • Refactor Orchestra\Testbench\Concerns\HandlesAnnotations trait.

v7.17.0

Compare Source

Changes
Testbench Changes
Changes
  • Bump minimum laravel/framework to 9.45.0.
  • Update skeleton to match v9.4.1.

v7.16.0

Compare Source

Changes
Testbench Changes
Added
  • Added resolveApplicationEnvironmentVariables() method.
  • Added Orchestra\Testbench\Bootstrap\HandleExceptions bootstrap to allow catching deprecation errors during tests.
    • Throws Orchestra\Testbench\Exceptions\DeprecatedException exception when deprecation occured.
    • Set logging.deprecations.trace to true.
    • Set deprecations log file to storage/logs/deprecations.log when LOG_DEPRECATIONS_CHANNEL=single.
Changes
  • Bump minimum laravel/framework to 9.44.0.

v7.15.0

Compare Source

Changes
Testbench Changes
Changes
  • Bump minimum laravel/framework to 9.41.0.

v7.14.1

Compare Source

Changes
Testbench Changes
Fixes
  • Fixes serve command with no-reload options.

v7.14.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Exceptions\ApplicationNotAvailableException exception when trying to access $this->app outside of booted application.
  • Added tests/CreatesApplication.php to skeleton.
Changes
  • Update skeleton to match v9.3.11.

v7.13.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Bootstrap\ConfigureRay and use it when creating Application.

v7.12.1

Compare Source

Changes
Testbench Changes
Fixes
  • Fixes where the default database connection as sqlite causes an exception when the database file isn't available. The loaded application should revert to testing database connection for the state.

v7.12.0

Compare Source

Changes
Testbench Changes
Added
  • Added support for about artisan command.
  • Added package:devtool to generate .env, testbench.yaml and database.sqlite file.
  • Added package:create-sqlite-db and package:drop-sqlite-db command.
  • Improves support for serve command.

v7.11.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Foundation\Application::createVendorSymlink() method.
    • The feature uses Orchestra\Testbench\Foundation\Bootstrap\CreateVendorSymlink.
Changes
  • Bump minimum laravel/framework to 9.36.0
    • Forget View Component's cache and factory between tests.

v7.10.2

Compare Source

Changes
Testbench Changes
Fixes
  • Don't attempt to discover any packages on vendor symlink event.

v7.10.1

Compare Source

Changes
Testbench Changes
Fixes
  • Remove bootstrap/cache/packages.php on vendor symlink event.

v7.10.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Foundation\Config to read Yaml file from testbench.yaml.

v7.9.0

Compare Source

Changes
Testbench Changes
Added
  • Added draft support for PHP 8.2.
Changes
  • Bump minimum laravel/framework to 9.34.0.
  • Bump minimum mockery/mockery to 1.5.1.
  • Bump minimum symfony dependencies to 6.0.9.

v7.8.1

Compare Source

Changes
Testbench Changes
Fixes
  • Fixes missing Illuminate\Support\Arr import on HandlesTestFailures trait.

v7.8.0

Compare Source

Changes
Testbench Changes
Changes
  • Bump minimum laravel/framework to 9.32.0.
  • Improves PHPUnit memory leaks.

v7.7.1

Compare Source

Changes
Testbench Changes
Changes
  • Update skeleton to match v9.3.8.

v7.7.0

Compare Source

Changes
Testbench Changes
Added
  • Added loadLaravelMigrationsWithoutRollback() and runLaravelMigrationsWithoutRollback() helpers.
Changes
  • Update skeleton to match v9.3.5.

v7.6.1

Compare Source

Changes
Testbench Changes
Changes
  • Update skeleton to match v9.3.3.

v7.6.0

Compare Source

Changes
Testbench Changes
Changes
  • Bump minimum laravel/framework to 9.12.0.
  • Update skeleton to match v9.2.0.

v7.5.0

Compare Source

Changes
Testbench Changes
  • Bump minimum laravel/framework to 9.12.0.
  • Update skeleton to match v9.1.8.

v7.4.0

Compare Source

Changes
Testbench Changes
Changes
  • Bump minimum laravel/framework to 9.7.0.
  • Add support for --drop-databases on package:test command.
  • Update skeleton to match v9.1.5.

v7.3.0

Compare Source

Changes
Testbench Changes
Changes
  • Bump minimum laravel/framework to 9.6.0.
  • Update skeleton to match v9.1.3.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner February 14, 2023 18:45
@renovate
Copy link
Contributor Author

renovate bot commented Feb 14, 2023

⚠ 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: docker run --rm --name=renovate_sidecar --label=renovate_child -v "/mnt/renovate/gh/XNXKTech/laravel-redis-helper":"/mnt/renovate/gh/XNXKTech/laravel-redis-helper" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -v "/tmp/containerbase":"/tmp/containerbase" -e COMPOSER_CACHE_DIR -e COMPOSER_AUTH -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w "/mnt/renovate/gh/XNXKTech/laravel-redis-helper" docker.io/containerbase/sidecar bash -l -c "install-tool php 8.2.3 && install-tool composer 2.5.4 && composer update orchestra/testbench --with-dependencies --ignore-platform-req='ext-*' --ignore-platform-req='lib-*' --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins"
Loading composer repositories with package information
Dependency laravel/framework 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.
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
    - Root composer.json requires pestphp/pest 1.22.3, found pestphp/pest[v1.22.3] but the package is fixed to v1.22.2 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
  Problem 2
    - orchestra/testbench 8.x-dev requires phpunit/phpunit ^9.6 || ^10.0.7 -> found phpunit/phpunit[dev-main, 9.6.0, ..., 9.6.x-dev, 10.0.7, ..., 10.1.x-dev (alias of dev-main)] but it conflicts with your root composer.json require (9.5.26).
    - orchestra/testbench v8.0.0 requires laravel/framework >=10.0.0 <10.1.0 -> found laravel/framework[v10.0.0, v10.0.1, v10.0.2, v10.0.3] but it conflicts with your root composer.json require (^8.0 || ^9.0).
    - orchestra/testbench v8.0.1 requires laravel/framework >=10.0.3 <10.1.0 -> found laravel/framework[v10.0.3] but it conflicts with your root composer.json require (^8.0 || ^9.0).
    - orchestra/testbench v8.0.2 requires laravel/framework >=10.0.3 <10.2.0 -> found laravel/framework[v10.0.3, ..., v10.1.5] but it conflicts with your root composer.json require (^8.0 || ^9.0).
    - orchestra/testbench v8.0.3 requires laravel/framework >=10.1.4 <10.2.0 -> found laravel/framework[v10.1.4, v10.1.5] but it conflicts with your root composer.json require (^8.0 || ^9.0).
    - orchestra/testbench v8.0.4 requires laravel/framework >=10.1.5 <10.2.0 -> found laravel/framework[v10.1.5] but it conflicts with your root composer.json require (^8.0 || ^9.0).
    - orchestra/testbench v8.0.5 requires laravel/framework >=10.1.5 <10.3.0 -> found laravel/framework[v10.1.5, v10.2.0] but it conflicts with your root composer.json require (^8.0 || ^9.0).
    - orchestra/testbench v8.0.6 requires laravel/framework >=10.1.5 <10.4.0 -> found laravel/framework[v10.1.5, ..., v10.3.3] but it conflicts with your root composer.json require (^8.0 || ^9.0).
    - orchestra/testbench v8.0.7 requires laravel/framework >=10.3.1 <10.4.0 -> found laravel/framework[v10.3.1, v10.3.2, v10.3.3] but it conflicts with your root composer.json require (^8.0 || ^9.0).
    - orchestra/testbench v8.0.8 requires laravel/framework >=10.3.3 <10.4.0 -> found laravel/framework[v10.3.3] but it conflicts with your root composer.json require (^8.0 || ^9.0).
    - Root composer.json requires orchestra/testbench ^8.0 -> satisfiable by orchestra/testbench[v8.0.0, ..., 8.x-dev].

Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants