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 Composer (major) #2

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

Update Composer (major) #2

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 29, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
larastan/larastan ^2.9 -> ^3.0 age adoption passing confidence
orchestra/testbench (source) ^8.21 -> ^9.0 age adoption passing confidence
pestphp/pest ^2.34 -> ^3.0 age adoption passing confidence
phpstan/phpstan-deprecation-rules ^1.1 -> ^2.0 age adoption passing confidence
rector/rector (source) ^1.0 -> ^2.0 age adoption passing confidence
spaze/phpstan-disallowed-calls ^3.1 -> ^4.0 age adoption passing confidence

Release Notes

larastan/larastan (larastan/larastan)

v3.0.2

Compare Source

What's changed?

Updated minimum required PHPStan version to 2.0.2

Full Changelog: larastan/larastan@v3.0.1...v3.0.2

v3.0.1

Compare Source

What's Changed

Fixed
Internal

Also changes from 2.9.12

New Contributors

Full Changelog: larastan/larastan@v3.0.0...v3.0.1

v3.0.0: 3.0.0

Compare Source

Larastan 3.0 🥳

This release adds compability with PHPStan 2 and drops support for Laravel versions < 11

Please make sure you read the both PHPStan's and Larastan's upgrade guides!

Notable changes:

  • Added support for PHPStan 2
  • Dropped support for Laravel versions <11
  • Dropped support for automatically adding generic return types for relations. Read the upgrade guide for more info.
  • Removed some PHPStan config options. If you want the same behavior as before, you can add them back yourselves.
  • Made some rules enabled by default.
orchestral/testbench (orchestra/testbench)

v9.7.0

Compare Source

Changes
Testbench Changes
Added
  • Added ability to detect Workbench namespace via Orchestra\Testbench\Workbench\Workbench::detectNamespace() method.
  • Added ability to detect the default user model via Orchestra\Testbench\Workbench\Workbench::applicationUserModel() method.
  • Added support for authentication routes within Workbench by configurating workbench.auth config to true.
  • Added new package:sync-skeleton command.
Changes
  • Testbench Dusk integration improvements:
    • Refactor Orchestra\Testbench\Bootstrap\LoadConfiguration and Orchestra\Testbench\Bootstrap\LoadConfigurationWithWorkbench to allow being extended by Testbench Dusk.
    • Refactor Orchestra\Testbench\Console\Commander.
  • Add $tty parameter to Orchestra\Testbench\remote() function.
  • Refactor Orchestra\Testbench\Foundation\Bootstrap\CreateVendorSymlink class and mark it as @api.
  • Add $backupExistingFile and $resetOnTerminating parameter to following methods in Orchestra\Testbench\Foundation\Console\Concerns\CopyTestbenchFiles trait:
    • copyTestbenchConfigurationFile()
    • copyTestbenchDotEnvFile()
  • Supports laravel/serializable-closure v2.
Deprecated
  • Deprecate Orchestra\Testbench\Foundation\Console\Concerns\HandleTerminatingConsole trait, use Orchestra\Testbench\Foundation\Console\TerminatingConsole class instead.

v9.6.1

Compare Source

Changes
Testbench Changes
Fixes
  • Fixes route:cache when health: true configured using testbench.yaml.
  • Fixes compatibility with Laravel Framework v11.33.0.

v9.6.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Foundation\Bootstrap\DeleteVendorSymlink class.
  • Added Orchestra\Testbench\Concerns\InteractsWithMockery trait.
  • Added --database option to package:create-sqlite-db command.
  • Added --database and --all options to package:drop-sqlite-db command.
  • Added Orchestra\Testbench\php_binary() function.
  • Allows laravel/serializable-closure 2.
  • Added draft support for PHP 8.4.
Changes
  • Ensure database directory exists when running package:create-sqlite-db.
  • Allow configuring PHP_CLI_SERVER_WORKERS via Composer Script.
  • Improves CTRL+C and CTRL+BREAK supports on Windows without pcntl extension.
  • Orchestra\Testbench\Foundation\Console\Actions\GeneratesFile should be able to handle $from and $to when given as false or null.
Fixed
  • Fixed #[WithMigration('queue')] should load the default migrations.

v9.5.2

Compare Source

Changes
Testbench Changes
Fixes
  • Prevent seeder from being executed when shouldSeed() exists and return false.

v9.5.1

Compare Source

Changes
Testbench Changes
Changes
  • Listen to SIGHUP, SIGUSR1, and SIGUSR2 signals via Testbench CLI.
  • Update config/concurrency.php configuration file.
Fixes
  • Fixes Testbench CLI signals via serve command to reset published .env and testbench.yaml.

v9.5.0

Compare Source

Changes
Testbench Changes
Added
  • Added Orchestra\Testbench\Attributes\RequiresDatabase attribute class.
  • Added markTestSkippedWhen() and markTestSkippedUnless() assertion helper to conditionally handle markTestSkipped().
  • Added Orchestra\Testbench\default_migration_path() helper function.
  • Added Orchestra\Testbench\laravel_vendor_exists() helper function.
  • Allows TestCase to inherit Attributes defined on parent TestCase by @​BlackLanzer in #​233.
Changes
  • Allow Testbench to delete vendor symlink directory if it was created while running tests.
Fixes
  • Fixes view.paths configuration not being updated to include workbench/resources/views due to IoC booting sequence.
Deprecated
  • Deprecated Orchestra\Testbench\laravel_migration_path(), use default_migration_path() instead.
New Contributors

v9.4.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
  • 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.

v9.3.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.

v9.2.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
  • Bump minimum support to Laravel Framework v11.11.
  • 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.

v9.1.2

Compare Source

Changes
Testbench Changes
Fixes
  • Fixes Orchestra\Testbench\Workench\Workbench::applicationExceptionHandler() usage to detect Workbench\App\Exceptions\Handler class.
  • Fixes Orchestra\Testbench\Console\Kernel and Orchestra\Testbench\Foundation\Console\Kernel unable to discover commands.

v9.1.1

Compare Source

Changes
Testbench Changes
Changes
  • Utilise Orchestra\Testbench\package_path() function instead of TESTBENCH_WORKING_PATH constant.
  • Update configuration to match Laravel Framework v11.8.0.
Fixes
  • Fixes Orchestra\Testbench\Attributes\RequiresLaravel attribute usage.

v9.1.0

Compare Source

Changes
Testbench Changes
Changes
  • Uses TESTBENCH_WORKING_PATH from environment variable before fallback to getcwd().
  • PHPStan Improvements.
  • Add support for PHPUnit 11.1.
  • Update skeleton to match v11.0.7.
Fixes
  • Fixes routing registration using macro with Workbench.

v9.0.4

Compare Source

Changes
Testbench Changes
Changes
  • Allows Orchestra\Testbench\remote to accept $env with either array or string.
  • Includes TESTBENCH_PACKAGE_REMOTE=true when running command using Orchestra\Testbench\remote.
  • Flush Static Improvements.
  • Revert setting workbench environment variable when Testbench CLI is used outside of testing.
Fixes
  • Fixes serve command.
  • Fixes runningInUnitTests() returning true when not running tests via Testbench CLI.

v9.0.3

Compare Source

Changes
  • Update minimum support for Testbench Core v9.0.9+. (v9.0.7...v9.0.9)
  • Update minimum support for Laravel Framework 11.1.0.
Testbench Changes
Changes
  • Add support for HASH_VERIFY environment variables.
Fixes
  • Force reset RefreshDatabaseState when using LazilyRefreshDatabase with SQLite :in-memory: database connections.

v9.0.2

Compare Source

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

v9.0.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.
  • Update skeleton to match v11.0.3.
  • Revert default skeleton database collations to utf8mb4_unicode_ci.
Fixes
  • Fixes beforeApplicationDestroyed() usage on loadLaravelMigrations() method.
  • Fixes RefreshDatabase usage does not reset the database migrations between tests.
  • Fixes class_implements() should only be executed if the Attribute class exists.
  • Testbench CLI should prioritize application kernels defined via bootstrap/app.php when configured using a custom skeleton.

v9.0.0

Compare Source

Added
  • Added support for PHPUnit 11.
Changes
  • Update support for Laravel Framework v11.
  • Increase minimum PHP version to 8.2 and above (tested with 8.2 and 8.3).
Deprecated
  • Deprecate Orchestra\Testbench\Concerns\HandlesAnnotations in line with PHPUnit removal support for meta-comment support using annotation.
Removed
  • Remove deprecated Orchestra\Testbench\Concerns\Database\HandlesConnections trait.
  • Removed deprecated create-sqlite-db and drop-sqlite-db standalone commands.
pestphp/pest (pestphp/pest)

v3.7.1

Compare Source

  • Bumps PHPUnit and Paratest versions

v3.7.0

Compare Source

  • Adds PHPUnit 11.5.0 support

v3.6.0

Compare Source

v3.5.2

Compare Source

v3.5.1

Compare Source

Full Changelog: pestphp/pest@v3.5.0...v3.5.1

v3.5.0

Compare Source

feat: support for nested describe blocks by @​jshayes in https://github.com/pestphp/pest/pull/1295
fix: issue where a describe block will prevent a beforeEach call from executing by @​jshayes in https://github.com/pestphp/pest/pull/1294

v3.4.2

Compare Source

Full Changelog: pestphp/pest@v3.4.1...v3.4.2

v3.4.1

Compare Source

chore: uses stable versions of collision and termwind (with PHP 8.4 support)

v3.4.0

Compare Source

feat: php v8.4 support

v3.3.2

Compare Source

docs: fixes composer command by @​AbdellahBoutmad in https://github.com/pestphp/pest/pull/1293
fix: missing policy suffix test by @​olivernybroe in https://github.com/pestphp/pest/pull/1292

v3.3.1

Compare Source

chore: bumps dependencies

v3.3.0

Compare Source

feat: uses phpunit v11.4.0.

v3.2.5

Compare Source

fix: missing middleware method on allowable public methods on controllers on laravel preset by @​CamKem in https://github.com/pestphp/pest/pull/1280
fix: strict types expectation to allows for comments above declaration by @​midnite81 in https://github.com/pestphp/pest/pull/1279

v3.2.4

Compare Source

fix: App\Exceptions\Handler ignored on laravel preset

v3.2.3

Compare Source

feat: laravel preset now ignores concerns on App\Enums and App\Features by @​jeremynikolic in https://github.com/pestphp/pest/pull/1275

v3.2.2

Compare Source

fix: auto-complete on ->preset method

v3.2.1

Compare Source

fix: fix: missing != and !== on new toUseStrictEquality arch expectation

v3.2.0

Compare Source

feat: adds toUseStrictEquality arch expectation

v3.1.0

Compare Source

feat: adds mutates function. https://pestphp.com/docs/mutation-testing

v3.0.8

Compare Source

fix: todo calls with ints on parameters

v3.0.7

Compare Source

chore: bumps phpunit version
fix: update assignee URL for Jira by @​owenvoke in https://github.com/pestphp/pest/pull/1254

v3.0.6

Compare Source

fix: team city usage on phpstorm. https://github.com/pestphp/pest/issues/1236

v3.0.5

Compare Source

fix: parallel mutation testing when using Laravel Herd

v3.0.4

Compare Source

fix: afterEach being called twice. https://github.com/pestphp/pest/issues/1230

v3.0.3

Compare Source

fix: pest()->printer() method wrongly named. https://github.com/pestphp/pest/issues/1229

v3.0.2

Compare Source

v3.0.1

Compare Source

v3.0.0

Compare Source

Please consult the upgrade guide and release notes in the official Pest documentation.

phpstan/phpstan-deprecation-rules (phpstan/phpstan-deprecation-rules)

v2.0.1

Compare Source

  • 1cc1259 - Bleeding edge - CallWithDeprecatedIniOptionRule

v2.0.0

Compare Source

  • 81833b5 - Removed always true PHP_VERSION_ID condition
  • f4a969d - Merge branch '1.2.x' into 2.0.x
  • 0ccccb1 - selectSingle() is being deprecated
  • 392bbe7 - Updates for PHPStan 2.0 changes
  • 89572d5 - Merge branch '1.2.x' into 2.0.x
  • 398e2e2 - Merge remote-tracking branch 'origin/1.2.x' into 2.0.x
  • 4590cf6 - Update build-cs
  • 681b2db - Stop testing PHP 7.2 and 7.3
  • 0e1d78a - Open 2.0.x
rectorphp/rector (rector/rector)

v2.0.3

Compare Source

v2.0.2

Compare Source

v2.0.1

Compare Source

v2.0.0

Compare Source

spaze/phpstan-disallowed-calls (spaze/phpstan-disallowed-calls)

v4.0.1: Support both PHPStan 1.12 & 2.0

Compare Source

The 4.0 release removed support for PHPStan 1.x, and this release brings it back. Both PHPStan 1.12 and PHPStan 2.0 are supported (#​273).

You can learn more about PHPStan 2.0 in the release notes or in the blog post and don't forget to get yourself an elephpant and a t-shirt!

v4.0.0: Support & require PHPStan 2.0

Compare Source

This major release supports and requires PHPStan 2.0 (#​267)

As mentioned in the UPGRADING.md guide:

It's not feasible to try to support both PHPStan 1.x and PHPStan 2.x with the same extension code.

You can learn more about PHPStan 2.0 in the release notes or in the blog post and don't forget to get yourself an elephpant and a t-shirt!


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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/major-composer branch from c4de8d0 to f1f83bb Compare September 9, 2024 10:52
@renovate renovate bot changed the title Update dependency orchestra/testbench to v9 Update Composer (major) Sep 9, 2024
@renovate renovate bot force-pushed the renovate/major-composer branch from f1f83bb to 8468d33 Compare October 8, 2024 18:51
@renovate renovate bot force-pushed the renovate/major-composer branch 3 times, most recently from 83ac56a to b96b4fa Compare November 15, 2024 10:56
@renovate renovate bot force-pushed the renovate/major-composer branch from b96b4fa to 36fb47b Compare December 12, 2024 12:09
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