Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency orchestra/testbench to v7.45.0 #220

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 4, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
orchestra/testbench (source) 7.17.0 -> 7.45.0 age adoption passing confidence

Release Notes

orchestral/testbench (orchestra/testbench)

v7.45.0

Compare Source

Changes
Testbench Changes
Added
  • Added artisan binary to Laravel skeleton.
  • Added Orchestra\Testbench\join_paths() function.
  • Added Orchestra\Testbench\Attributes\UsesVendor attribute class.
  • Added defineStashRoutes() method to register adhoc route for test.
Changes
  • Change afterApplicationCreated(), afterApplicationRefreshed(), and beforeApplicationDestroyed() methods visibility from protected to public.
  • Improvements to Orchestra\Testbench\default_skeleton_path(), Orchestra\Testbench\package_path(), and Orchestra\Testbench\workbench_path() usage based on new Orchestra\Testbench\join_paths() function.

v7.44.0

Compare Source

Changes
Testbench Changes
Changes
  • Update Orchestra\Testbench\Foundation\Console\Actions\GeneratesFile to remove .gitkeep file when directory contain one or more files.
  • Code Improvements.
Fixes
  • Fixes InteractsWithPublishedFiles should only flush published files within database/migrations directory.

v7.43.0

Compare Source

Changes
Testbench Changes
Added
  • Added new attributes:
    • Orchestra\Testbench\Attributes\ResolvesLaravel
    • Orchestra\Testbench\Attributes\UsesFrameworkConfiguration
  • Allows to discover factories using Workbench to map Workbench\App\Models to Workbench\Database\Factories classes.
  • Allows to auto discover console command classes from workbench/app/Console/Commands.
Changes
  • Implements JsonSerializable to Orchestra\Testbench\Foundation\UndefinedValue.
  • Update skeleton to use workbench as default environment value.
  • Allow Orchestra\Testbench\Attributes\Define and Orchestra\Testbench\Attributes\DefineEnvironment to be used on the class level by @​danjohnson95
Fixes
  • Ensure usesTestingFeature() attribute registration is loaded before class attributes instead of method attributes.

v7.42.2

Compare Source

Changes
Testbench Changes
Fixes
  • Fixes Orchestra\Testbench\Workench\Workbench::applicationExceptionHandler() usage to detect Workbench\App\Exceptions\Handler class.

v7.42.1

Compare Source

Changes
Testbench Changes
Changes
  • Utilise Orchestra\Testbench\package_path() function instead of TESTBENCH_WORKING_PATH constant.
Fixes
  • Fixes Orchestra\Testbench\Attributes\RequiresLaravel attribute usage.

v7.42.0

Compare Source

Changes
Testbench Changes
Changes
  • Uses TESTBENCH_WORKING_PATH from environment variable before fallback to getcwd().
  • PHPStan Improvements.
Fixes
  • Backport fixes to routing registration using macro with Workbench.

v7.41.3

Compare Source

Changes
Testbench Changes
Changes
  • Flush Static Improvements.
  • Allows Orchestra\Testbench\remote to accept $env with either array or string.
  • Includes TESTBENCH_PACKAGE_REMOTE=true when running command using Orchestra\Testbench\remote.

v7.41.2

Compare Source

Changes
Testbench Changes
Fixes
  • Fixes RefreshDatabase to be executed on tearDown() only limited when ad-hoc migrations was added during test.

v7.41.1

Compare Source

Changes
Testbench Changes
Changes
  • Run ResetRefreshDatabaseState via tearDownTheTestEnvironmentUsingTestCase() method.
  • Check against RefreshDatabaseState::$migrated and RefreshDatabaseState::$lazilyRefreshed before loading migration paths to the instance of migrator.
Fixes
  • Fixes beforeApplicationDestroyed() usage on loadLaravelMigrations() method.
  • Fixes RefreshDatabase usage does not reset the database migrations between tests.
  • Fixes class_implements(): Class AllowDynamicProperties does not exist and could not be loaded error on PHP 8.1 and lower.

v7.41.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Attributes\RequiresLaravel attribute.
  • Added Orchestra\Testbench\Foundation\Env::has() method.
  • Added Orchestra\Testbench\once() function.
  • Added Orchestra\Testbench\load_migration_paths() function.
  • Added usesRefreshDatabaseTestingConcern() helper method to Orchestra\Testbench\Concerns\InteractsWithTestCase trait.
Changes
  • Validate MYSQL_*, MSSQL_*, SQLITE_* and POSTGRES_* environment variables before trying to override the configuration values.
  • Allow passing $command to Orchestra\Testbench\remote() function using array instead of just string.
Fixes
  • Fixes Orchestra\Testbench\Attributes\ResetRefreshDatabaseState attribute declaration to only Attribute::TARGET_CLASS.

v7.40.1

Compare Source

Changes
Testbench Changes
Changes
  • Support nested configuration files.
Fixes
  • Fixes issue with Livewire testing where calling $router->getRoutes()->refreshActionLookups() caused tests to fail.

v7.40.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Attributes\WithImmutableDates attribute to force Illuminate\Support\Date to use Carbon\CarbonImmutable.
  • Added the following helper functions:
    • Orchestra\Testbench\default_skeleton_path
    • Orchestra\Testbench\refresh_router_lookups

v7.39.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Features\TestingFeature as replacement to HandlesTestingFeature trait.
  • Added support for LOG_DEPRECATIONS_WHILE_TESTING (default to true) environment variables.
  • Add following interfaces for Attribute handling:
    • Orchestra\Testbench\Contracts\Attributes\AfterAll
    • Orchestra\Testbench\Contracts\Attributes\AfterEach
    • Orchestra\Testbench\Contracts\Attributes\BeforeAll
    • Orchestra\Testbench\Contracts\Attributes\BeforeEach
Changes
  • Refactor Orchestra\Testbench\Concerns\InteractsWithPHPUnit.
Deprecated
  • Deprecate Orchestra\Testbench\Concerns\HandlesTestingFeature trait.

v7.38.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Attributes\RequiresEnv attribute to force an environment variables to be required for the test.
  • Added Orchestra\Testbench\Attributes\WithConfig attribute add a configuration value for the test.
  • Added Orchestra\Testbench\Attributes\WithEnv attribute add an environment variable value for the test.
  • Added set() and forget() methods to Orchestra\Testbench\Foundation\Env.

v7.37.0

Compare Source

Changes
Testbench Changes
Added
  • Supports Workbench discovers.components configuration.
Changes
  • Sync view.paths configuration when Workbench discover views.

v7.36.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Attributes\ResetRefreshDatabaseState attribute to force refreshing database before executing the test.
  • Added Orchestra\Testbench\Foundation\Bootstrap\SyncDatabaseEnvironmentVariables bootstrap class and allow database collation to be configurable via environment variables using MYSQL_COLLATION, POSTGRES_COLLATION and MSSQL_COLLATION.
Changes
  • Refactor handling attributes:
    • Add ability to handle actions directly from the attribute.
    • Add ability to set defer when using Orchestra\Testbench\Attributes\DefineDatabase.
Deprecated
  • Deprecate Orchestra\Testbench\Concerns\Database\HandlesConnections trait.

v7.35.0

Compare Source

Changes
Testbench Changes
Added
  • Added new PHPUnit Attribute to run the default laravel, cache, notifications, queue and session database migrations using Orchestra\Testbench\Attributes\WithMigration.
  • Added Orchestra\Testbench\defined_environment_variables() function.
  • Added Orchestra\Testbench\laravel_migration_path() function.
  • Added Orchestra\Testbench\remote() function.
Changes
  • Mark the following classes as @api:
    • Orchestra\Testbench\Foundation\Application
    • Orchestra\Testbench\Foundation\Config
    • Orchestra\Testbench\Foundation\Env
  • Cache results from Orchestra\Testbench\PHPUnit\AttributeParser.

v7.34.1

Compare Source

Changes
  • Add support for Workbench 7.0+.

v7.34.0

Compare Source

Changes
  • Update minimum support for Testbench Core v7.34.0+. (v7.33.0...v7.34.0)
  • Add support for Workbench 1.0+.
Testbench Changes
Added
  • Added Orchestra\Testbench\Workbench\Workbench to handle integrations with Workbench.
  • Added Orchestra\Testbench\Foundation\Config::getWorkbenchDiscoversAttributes() method.
  • Added Orchestra\Testbench\Concerns\Database\InteractsWithSqliteDatabaseFile trait.
  • Added following methods to Orchestra\Testbench\Foundation\Application:
    • make()
    • makeFromConfig()
    • createFromConfig()
  • Added support for PHPUnit Attribute as replacements to Annotations:
    • @define-env and @environment-setup will be replaced with Orchestra\Testbench\Attributes\DefineEnvironment.
    • @define-db will be replaced with Orchestra\Testbench\Attributes\DefineDatabase.
    • @define-route will be replaced with Orchestra\Testbench\Attributes\DefineRoute.
Fixes
  • Fixes generating path using Orchestra\Testbench\package_path() and Orchestra\Testbench\workbench_path().
Deprecated
  • Deprecate Orchestra\Testbench\Concerns\WithFactories.
Removed
  • Remove Orchestra\Testbench\Foundation\Bootstrap\StartWorkbench, use Orchestra\Testbench\Workbench\Workbench::start() or Orchestra\Testbench\Workbench\Workbench::startWithProviders() instead.

v7.33.0

Compare Source

Changes
  • Update minimum support for Testbench Core v7.33.0+. (v7.32.0...v7.33.0)
  • Add support for Workbench 0.5.0+.
Testbench Changes
Changes
  • Code refactors.
  • Mark Orchestra\Testbench\Bootstrap\LoadEnvironmentVariables class as @internal.

v7.32.0

Compare Source

Changes
  • Update minimum support for Testbench Core v7.32.0+. (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.

v7.31.0

Compare Source

Changes
  • Update minimum support for Testbench Core v7.31.0+. (v7.30.0...v7.31.0)
  • Update minimum support for Workbench 0.3.0+.
Testbench Changes
Added
  • Added methods to Orchestra\Testbench\Concerns\InteractsWithPublishedFiles trait:
    • assertMigrationFileExists.
    • assertMigrationFileNotExists.
Changes
  • Allow passing wildcard filenames to Orchestra\Testbench\Concerns\InteractsWithPublishedFiles::$files property.
  • Allow using custom directory on assertMigrationFileContains and assertMigrationFileNotContains from Orchestra\Testbench\Concerns\InteractsWithPublishedFiles trait.
  • Rename methods in Orchestra\Testbench\Concerns\InteractsWithPublishedFiles trait:
    • cleanUpFiles to cleanUpPublishedFiles.
    • cleanUpMigrationFiles to cleanUpPublishedMigrationFiles.
    • getMigrationFile to findFirstPublishedMigrationFile.

v7.30.0

Compare Source

Changes
Testbench Changes
Added
  • Add ability to automatically run default Laravel migrations using Orchestra\Testbench\Concerns\WithLaravelMigrations.
  • Add Console Actions classes:
    • Orchestra\Testbench\Foundation\Console\Actions\DeleteFiles
    • Orchestra\Testbench\Foundation\Console\Actions\DeleteDirectories
    • Orchestra\Testbench\Foundation\Console\Actions\EnsureDirectoryExists
    • Orchestra\Testbench\Foundation\Console\Actions\GeneratesFile

v7.29.1

Compare Source

Changes
Testbench Changes
Changes
  • Allow using $model property override when extending Orchestra\Testbench\Factories\UserFactory.

v7.29.0

Compare Source

Changes
Testbench Changes
Added
  • Added new workbench.welcome configuration option.
Changes
  • Allow testbench.yaml configuration fallback similar to .env.
  • Utilise Illuminate\Support\LazyCollection.
  • Skip loading Orchestra\Workbench\WorkbenchServiceProvider when applying Orchestra\Testbench\Concerns\WithWorkbench.

v7.28.2

Compare Source

Changes
Testbench Changes
Fixes
  • Fixes configuration leak when running some TestCase without Orchestra\Testbench\Concerns\WithWorkbench.

v7.28.1

Compare Source

Changes
Testbench Changes
Added
  • Readd deprecated Orchestra\Testbench\Foundation\Console\DevToolCommand for integration compatibility.
Changes
  • Disable Composer default timeout when using serve command under Composer's script.

v7.28.0

Compare Source

Changes
Testbench Changes
Added
  • Added package:purge-skeleton command.
  • Added Orchestra\Testbench\Concerns\Database\InteractsWithSqliteDatabaseFile trait.
  • Added Orchestra\Testbench\package_path() function.
  • Added support for orchestra/workbench.
Changes
  • Rename Orchestra\Testbench\Workbench\Bootstrap\StartWorkbench to Orchestra\Testbench\Foundation\Bootstrap\StartWorkbench.
Fixes
  • Fixes serve command usage.
  • Fixes class namespace.

v7.27.0

Compare Source

Changes
Testbench Changes
Added
  • Added following events:
    • Orchestra\Testbench\Foundation\Events\ServeCommandStarted
    • Orchestra\Testbench\Foundation\Events\ServeCommandEnded
    • Orchestra\Testbench\Workbench\Events\WorkbenchInstallStarted
    • Orchestra\Testbench\Workbench\Events\WorkbenchInstallEnded
Changes
  • Change HandlesRoutes loading sequence to match common Laravel bootstrap steps.
  • Refactor HandlesAnnotations and InteractsWithPHPUnit traits.
  • Workbench integration improvements.
  • Update workbench configuration schema.
Fixes
  • Fixes Illuminate\Foundation\Application::runningUnitTests() detection.

v7.26.2

Compare Source

Changes
  • Bump minimum laravel/framework to 9.52.15.
  • Update minimum support for Testbench Core v7.26.2+. (v7.26.1...v7.26.2)
Testbench Changes
Fixes
  • Fixes app()->environment() detection when creating application Orchestra\Testbench\Concerns\CreatesApplication outside of PHPUnit.
  • Fixes error Undefined array key "autoload-dev" when executing workbench:install command.

v7.26.1

Compare Source

Changes
Testbench Changes
Added
  • Add new Orchestra\Testbench\Concerns\InteractsWithPHPUnit to handle CreatesApplication within PHPUnit.
Fixes
  • Fixes workbench.start path when accessing the / route return 404.
  • Only Configure TESTBENCH_APP_BASE_PATH environment variable only when running under tests.

v7.26.0

Compare Source

Changes
Testbench Changes
Added
  • Added new Workbench support (experimental feature).
    • Register routes under /_workbench prefix.
    • Automatically run configured seeds when executing migrate:fresh and migrate:refresh
    • Bind Orchestra\Testbench\Contracts\Config to IoC Container and introduce the new Orchestra\Testbench\workbench and Orchestra\Testbench\workbench_path helper function.
    • Add workbench:install, workbench:create-sqlite-db and workbench:drop-sqlite-db commands.
  • Add new Orchestra\Testbench\Concerns\WithWorkbench to automatically loads configuration from testbench.yaml when running tests.
Deprecated
  • Deprecated package:devtool, package:create-sqlite-db and package:drop-sqlite-db commands.

v7.25.0

Compare Source

Changes
Testbench Changes
Added
  • Orchestra\Testbench\Bootstrap\LoadEnvironmentVariables to manage loading .env file during tests, backport from Testbench Core 8 releases.
Changes
  • Bump minimum laravel/framework to 9.52.9.
  • Automate registering tearDownInteractsWithPublishedFiles() from setUpInteractsWithPublishedFiles() method.

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.

Warning: Breaking change is possible if your package contains any traits with setup<TraitClassName> or teardown<TraitClassName>

This version now will automatically run those methods during application bootstrap and terminate to be consistent with Laravel Framework implementations.

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.

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-7.x branch from 0f9ea57 to 9de4f5a Compare January 10, 2023 13:14
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.18.0 Update dependency orchestra/testbench to v7.19.0 Jan 10, 2023
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.19.0 Update dependency orchestra/testbench to v7.19.0 - autoclosed Jan 13, 2023
@renovate renovate bot closed this Jan 13, 2023
@renovate renovate bot deleted the renovate/orchestra-testbench-7.x branch January 13, 2023 10:09
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.19.0 - autoclosed Update dependency orchestra/testbench to v7.19.0 Jan 13, 2023
@renovate renovate bot reopened this Jan 13, 2023
@renovate renovate bot restored the renovate/orchestra-testbench-7.x branch January 13, 2023 13:38
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 9de4f5a to ee37bc6 Compare February 1, 2023 03:14
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.19.0 Update dependency orchestra/testbench to v7.20.0 Feb 1, 2023
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from ee37bc6 to 142f9a9 Compare February 3, 2023 03:59
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.20.0 Update dependency orchestra/testbench to v7.21.0 Feb 3, 2023
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.21.0 Update dependency orchestra/testbench to v7.22.0 Feb 8, 2023
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 142f9a9 to ddadde0 Compare February 8, 2023 03:29
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.22.0 Update dependency orchestra/testbench to v7.22.1 Feb 24, 2023
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from ddadde0 to 476fcaa Compare February 24, 2023 06:15
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 476fcaa to 0dad080 Compare June 1, 2023 20:42
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.22.1 Update dependency orchestra/testbench to v7.24.1 Jun 1, 2023
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 0dad080 to 2d652af Compare June 13, 2023 08:20
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.24.1 Update dependency orchestra/testbench to v7.25.0 Jun 13, 2023
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.25.0 Update dependency orchestra/testbench to v7.26.0 Aug 8, 2023
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 2d652af to 68d2463 Compare August 8, 2023 11:14
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.26.0 Update dependency orchestra/testbench to v7.26.1 Aug 9, 2023
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch 2 times, most recently from 7f22248 to 77abcad Compare August 10, 2023 05:13
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.26.1 Update dependency orchestra/testbench to v7.26.2 Aug 10, 2023
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.26.2 Update dependency orchestra/testbench to v7.27.0 Aug 12, 2023
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 77abcad to 1f10795 Compare August 12, 2023 07:10
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.27.0 Update dependency orchestra/testbench to v7.28.0 Aug 15, 2023
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 1f10795 to d23c8d9 Compare August 15, 2023 10:43
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.36.0 Update dependency orchestra/testbench to v7.37.0 Dec 6, 2023
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.37.0 Update dependency orchestra/testbench to v7.38.0 Dec 19, 2023
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from dbcbc74 to aea79ea Compare December 19, 2023 01:52
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.38.0 Update dependency orchestra/testbench to v7.39.0 Dec 28, 2023
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from aea79ea to 60b604e Compare December 28, 2023 15:24
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 60b604e to 238e4a1 Compare January 19, 2024 16:00
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.39.0 Update dependency orchestra/testbench to v7.40.0 Jan 19, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 238e4a1 to 3617136 Compare January 22, 2024 05:02
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.40.0 Update dependency orchestra/testbench to v7.40.1 Jan 22, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 3617136 to b65b393 Compare March 13, 2024 07:26
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.40.1 Update dependency orchestra/testbench to v7.41.0 Mar 13, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from b65b393 to e2777c8 Compare March 19, 2024 15:14
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.41.0 Update dependency orchestra/testbench to v7.41.1 Mar 19, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from e2777c8 to 91fd788 Compare March 26, 2024 15:23
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.41.1 Update dependency orchestra/testbench to v7.41.2 Mar 26, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 91fd788 to 5bfa106 Compare April 16, 2024 10:52
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.41.2 Update dependency orchestra/testbench to v7.41.3 Apr 16, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 5bfa106 to 028e812 Compare May 21, 2024 10:38
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.41.3 Update dependency orchestra/testbench to v7.42.0 May 21, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 028e812 to 3712e3b Compare June 1, 2024 11:15
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.42.0 Update dependency orchestra/testbench to v7.42.1 Jun 1, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 3712e3b to 4e4d550 Compare June 4, 2024 13:55
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.42.1 Update dependency orchestra/testbench to v7.42.2 Jun 4, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 4e4d550 to 3640679 Compare July 13, 2024 08:02
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.42.2 Update dependency orchestra/testbench to v7.43.0 Jul 13, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 3640679 to 1e3f8e7 Compare August 14, 2024 07:39
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.43.0 Update dependency orchestra/testbench to v7.44.0 Aug 14, 2024
@renovate renovate bot force-pushed the renovate/orchestra-testbench-7.x branch from 1e3f8e7 to 04c16de Compare August 26, 2024 07:19
@renovate renovate bot changed the title Update dependency orchestra/testbench to v7.44.0 Update dependency orchestra/testbench to v7.45.0 Aug 26, 2024
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