Skip to content
This repository was archived by the owner on Oct 24, 2023. It is now read-only.

chore(deps): update all dependencies #702

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

chore(deps): update all dependencies #702

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Feb 14, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
conventional-changelog-cli (source) 2.1.1 -> 2.2.2 age adoption passing confidence devDependencies minor
phpunit/phpunit (source) 9.5.10 -> 9.6.13 age adoption passing confidence require-dev minor
symplify/easy-coding-standard 10.0.2 -> 10.3.3 age adoption passing confidence require-dev minor
webfactory/ssh-agent v0.5.3 -> v0.8.0 age adoption passing confidence action minor

Release Notes

conventional-changelog/conventional-changelog (conventional-changelog-cli)

v2.2.2

Compare Source

2.2.2 (2021-12-24)
Bug Fixes
sebastianbergmann/phpunit (phpunit/phpunit)

v9.6.13

Compare Source

v9.6.12

Compare Source

v9.6.11

Compare Source

v9.6.10

Compare Source

v9.6.9

Compare Source

v9.6.8

Compare Source

v9.6.7

Compare Source

v9.6.6

Compare Source

v9.6.5

Compare Source

v9.6.4

Compare Source

v9.6.3

Compare Source

v9.6.2

Compare Source

v9.6.1

Compare Source

v9.6.0

Compare Source

v9.5.28

Compare Source

v9.5.27

Compare Source

v9.5.26

Compare Source

v9.5.25

Compare Source

v9.5.24

Compare Source

v9.5.23

Compare Source

v9.5.22

Compare Source

v9.5.21

Compare Source

v9.5.20

Compare Source

v9.5.19

Compare Source

v9.5.18

Compare Source

v9.5.17

Compare Source

v9.5.16

Compare Source

v9.5.14

Compare Source

v9.5.13

Compare Source

v9.5.12

Compare Source

v9.5.11

Compare Source

easy-coding-standard/easy-coding-standard (symplify/easy-coding-standard)

v10.3.3

Compare Source

v10.3.2

Compare Source

v10.3.1

Compare Source

v10.3.0

Compare Source

v10.2.11

Compare Source

v10.2.10

Compare Source

v10.2.9

Compare Source

v10.2.8

Compare Source

v10.2.7

Compare Source

v10.2.6

Compare Source

v10.2.5

Compare Source

v10.2.4: Released ECS 10.2.4 with native ECSConfig

Compare Source

Make use of native ECSConfig in ecs.php

Running ECS on Symfony project can create conflict with native ContainerConfigurator. To avoid that, we introduce a new config, that is fully scoped and isolated within ECS.

Another big advantage is new configuration methods with validation and autocomplete right in your ide 👍


Read more in https://tomasvotruba.com/blog/new-in-ecs-simpler-config/

Before 💀
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symplify\EasyCodingStandard\ValueObject\Option;

// ups, possible conflict with ContainerConfigurator
return static function (ContainerConfigurator $containerConfigurator): void {
    $parameters = $containerConfigurator->parameters();

    // too verbose params, constants and possible typo in param value
    $parameters->set(Option::PATHS, [[ // ups, "[[" typo
        __DIR__ . '/src/',
    ]]);

    $services = $containerConfigurator->services();
    $services->set(ArraySyntaxFixer::class);
};
Now 🎉
use Symplify\EasyCodingStandard\Config\ECSConfig;
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;

return static function (ECSConfig $ecsConfig): void {
    $ecsConfig->paths([
        __DIR__ . '/src',
    ]);

    $ecsConfig->rule(ArraySyntaxFixer::class);

    $ecsConfig->sets([SetList::PSR_12]);
};

v10.2.3

Compare Source

v10.2.2

Compare Source

v10.2.1

Compare Source

v10.2.0

Compare Source

v10.1.4

Compare Source

v10.1.3

Compare Source

v10.1.2

Compare Source

v10.1.1

Compare Source

v10.1.0

Compare Source

v10.0.25

Compare Source

v10.0.24

Compare Source

v10.0.23

Compare Source

v10.0.22

Compare Source

v10.0.21

Compare Source

v10.0.20

Compare Source

v10.0.19

Compare Source

v10.0.17

Compare Source

v10.0.16

Compare Source

v10.0.15

Compare Source

v10.0.13

Compare Source

v10.0.12

Compare Source

v10.0.11

Compare Source

v10.0.10

Compare Source

v10.0.9

Compare Source

v10.0.8

Compare Source

v10.0.7

Compare Source

v10.0.6

Compare Source

v10.0.5

Compare Source

v10.0.4

Compare Source

v10.0.3

Compare Source

webfactory/ssh-agent (webfactory/ssh-agent)

v0.8.0: SSH host keys no longer managed – read below 👇

Compare Source

Starting with this release, this action no longer writes GitHub's SSH host keys into the known_hosts SSH config file upon start.

GitHub changed their host keys on short notice this morning, see https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/. We took this as an opportunity to stop maintaining GH SSH keys in the code shipped with this action (#​171).

What you need to do:

Other code changes in this release
New Contributors

Full Changelog: webfactory/ssh-agent@v0.7.0...v0.8.0

v0.7.0

Compare Source

Added
  • Add the log-public-key input that can be used to turn off logging key identities (#​122)
Fixed
  • Fix path to git binary on Windows, assuming GitHub-hosted runners (#​136, #​137)
  • Fix a nonsensical log message (#​139)

v0.6.0

Compare Source

Changed

v0.5.4

Compare Source

Fixed
Changed
  • Various documentation (README) improvements and additions
  • Change logging to more precisely state that public keys are being printed

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (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 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, 2022 01:39
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from 1510776 to 1b18cf7 Compare February 23, 2022 18:25
@codecov-commenter
Copy link

codecov-commenter commented Feb 23, 2022

Codecov Report

Merging #702 (f3da851) into main (15357a3) will decrease coverage by 9.07%.
The diff coverage is n/a.

❗ Current head f3da851 differs from pull request most recent head 86caf64. Consider uploading reports for the commit 86caf64 to get more accurate results

@@             Coverage Diff              @@
##               main     #702      +/-   ##
============================================
- Coverage     83.41%   74.33%   -9.08%     
  Complexity     5480     5480              
============================================
  Files          1266     1266              
  Lines         16068    15607     -461     
============================================
- Hits          13403    11602    -1801     
- Misses         2665     4005    +1340     
Impacted Files Coverage Δ
src/Core/Request/Me/MeEndpoint.php 0.00% <0.00%> (-100.00%) ⬇️
src/Core/Request/Me/MeGetRequest.php 0.00% <0.00%> (-100.00%) ⬇️
src/Core/Client/FileUploadRequest.php 0.00% <0.00%> (-100.00%) ⬇️
src/Core/Error/ClientErrorException.php 0.00% <0.00%> (-100.00%) ⬇️
src/Core/Model/Store/StoreReference.php 0.00% <0.00%> (-100.00%) ⬇️
src/Core/Request/Me/MeDeleteRequest.php 0.00% <0.00%> (-100.00%) ⬇️
src/Core/Model/Order/ParcelCollection.php 0.00% <0.00%> (-100.00%) ⬇️
src/Core/Request/Me/MeCartByIdRequest.php 0.00% <0.00%> (-100.00%) ⬇️
src/Core/Request/InStores/InStoreTrait.php 0.00% <0.00%> (-100.00%) ⬇️
src/Core/Request/Me/MeCartQueryRequest.php 0.00% <0.00%> (-100.00%) ⬇️
... and 378 more

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 7cbe68b to 1f77680 Compare March 8, 2022 10:01
@renovate renovate bot changed the title Update all dependencies chore(deps): update all dependencies Mar 12, 2022
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 898ca5c to 6e16b2a Compare March 16, 2022 16:38
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from ec39e3d to 8c6eddc Compare April 17, 2022 12:39
@renovate renovate bot force-pushed the renovate/all branch from 8c6eddc to 2b49bc4 Compare May 3, 2022 15:47
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 773053d to 5448cdc Compare May 21, 2022 12:59
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from fd97800 to af56fdc Compare June 7, 2022 00:14
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from feea844 to e26e9c5 Compare June 13, 2022 15:06
@renovate renovate bot changed the title chore(deps): update all dependencies chore(deps): update all dependencies to v2.2.2 Aug 9, 2022
@renovate renovate bot changed the title chore(deps): update all dependencies to v2.2.2 chore(deps): update all dependencies Aug 10, 2022
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 55c66e8 to 0c619ba Compare August 22, 2022 17:10
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 85c5467 to 86caf64 Compare October 19, 2022 16:33
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from e0fc703 to b5a268e Compare March 27, 2023 12:01
@renovate renovate bot force-pushed the renovate/all branch from 4639592 to 065290c Compare May 28, 2023 10:18
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant