accessibility-exchange / platform

The Accessibility Exchange platform.
https://github.com/orgs/accessibility-exchange/projects/2/views/8
BSD 3-Clause "New" or "Revised" License
4 stars 10 forks source link

chore(deps): bump worksome/request-factories from 2.6.0 to 3.3.0 #2245

Open dependabot[bot] opened 1 month ago

dependabot[bot] commented 1 month ago

Bumps worksome/request-factories from 2.6.0 to 3.3.0.

Release notes

Sourced from worksome/request-factories's releases.

v3.3.0

What's Changed

New Contributors

Full Changelog: https://github.com/worksome/request-factories/compare/v3.2.0...v3.3.0

v3.2.0

What's Changed

Full Changelog: https://github.com/worksome/request-factories/compare/v3.1.0...v3.2.0

v3.1.0

What's Changed

Full Changelog: https://github.com/worksome/request-factories/compare/v3.0.0...v3.1.0

v3.0.0

What's Changed

New Contributors

Full Changelog: https://github.com/worksome/request-factories/compare/v2.5.0...v3.0.0

Changelog

Sourced from worksome/request-factories's changelog.

Changelog

All notable changes to request-factories will be documented in this file.

3.2.0 - 2023-03-22

  • Migrated to Pest v2 43
  • Required Laravel 10 as the minimum version 43

3.1.0 - 2023-02-01

  • Added support for Laravel 10 35

3.0.0 - 2023-01-27

💡 Be sure to check out our upgrade guide for 3.0.0 in https://github.com/worksome/request-factories/blob/main/UPGRADE.md

  • Removes the HasFactory trait in favor of macros #33
  • Bumps minimum PHP version to 8.2 #32

2.5.0 - 2022-09-15

  • Added support for using without with a string for single properties #26

2.4.0 - 2022-09-13

  • Added support for lazily resolving model factories #24
  • Closures, nested request factories and model factories now work in infinitely nested arrays #24

2.3.0 - 2022-09-01

  • Added a handy RequestFactory::image method as a shortcut for $factory->file()->image('name.png') #23

2.2.0 - 2022-08-30

  • Added support for passing an instance of a factory to the factory ::new method #22

2.1.0 - 2022-08-04

  • Added support for using custom Faker Generators #21

2.0.2 - 2022-07-25

  • Fixes a bug where using dot notation in an array would cause sibling elements to disappear #19

2.0.1 - 2022-06-23

  • Fixes a bug when using lists and nested dot notation #14

2.0.0 - 2022-06-20

... (truncated)

Upgrade guide

Sourced from worksome/request-factories's upgrade guide.

Upgrade Guide

This guide documents breaking changes to Request Factories and details how to make the required changes in your application.

3.0.0

Estimated upgrade time: less than 2 minutes.

Upgrade to PHP 8.2

Likelihood of impact: high.

The minimum PHP version for Request Factories is not 8.2. If you are not yet running PHP 8.2, you are of course still able to use v2 of Request Factories.

Remove HasFactory trait

Likelihood of impact: high.

One of the biggest gripes with Request Factories was that if you wanted to use the HasFactory trait, you had to install this package as a production dependency. In order to fix that, we've removed the HasFactory trait and achieved the same functionality using macros on the FormRequest instead.

To upgrade, simply remove the HasFactory trait from any FormRequest classes that you previously added it to.

// Before
use Illuminate\Foundation\Http\FormRequest;
use Worksome\RequestFactories\Concerns\HasFactory;

class MyFormRequest extends FormRequest
{
use HasFactory;
}

// After
use Illuminate\Foundation\Http\FormRequest;

class MyFormRequest extends FormRequest
{
}

So long as you haven't done any really "out there" customisation, your tests should continue to work exactly as they did before!

2.0.0

Estimated upgrade time: less than 2 minutes.

state method dot notation

... (truncated)

Commits
  • 70e2bce Merge pull request #50 from worksome/feature/laravel-11
  • 137d986 chore(deps): add support for Laravel 11
  • 108ac6a Merge pull request #49 from parth391/main
  • b577465 chore(deps-dev): update worksome/coding-style
  • f39bb69 Upgrade to larastan/larastan
  • 4822b00 Merge pull request #48 from SuperDJ/patch-1
  • c0ba3d0 Add PHP 8.3 to test matrix
  • 53cbe28 Merge pull request #47 from worksome/docs/typo
  • 5c15091 docs: resolve namespace for RequestFactory class
  • ab60978 chore(changelog): Update CHANGELOG
  • Additional commits viewable in compare view


Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.