Skip to content
This repository has been archived by the owner on Jan 4, 2022. It is now read-only.

Build(deps-dev): Bump vimeo/psalm from 3.11.4 to 3.11.5 #242

Merged
merged 1 commit into from
May 27, 2020

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps vimeo/psalm from 3.11.4 to 3.11.5.

Release notes

Sourced from vimeo/psalm's releases.

3.11.5

Features

Import @psalm-type annotations into classes

Added support for importing @psalm-type annotations from one class to another based on a suggestion from @malukenho (in vimeo/psalm#2924)

Given a class Phone that defines a @psalm-type annotation on a class:

<?php
/**
 * @psalm-type PhoneType = array{phone: string}
 */
class Phone {
    /**
     * @psalm-return PhoneType
     */
    public function toArray(): array {
        return ["phone" => "Nokia"];
    }
}

You can reference that type with the @psalm-import-type annotation:

/**
 * @psalm-import-type PhoneType from Phone
 */
class User {
    /**
     * @psalm-return PhoneType
     */
    function toArray(): array {
        return array_merge([], (new Phone)->toArray());
    }
}   

Other features

  • Psalm now detects a number of unused magic methods (e.g. __get, __set) (#3236)
  • Psalm now continues its analysis after encountering undefined variables (#3366)
  • @dereuromark added a pretty-print option for JSON output
  • Language Server: @joehoyle added variable assignment hover information (#3401)

Bugfixes

  • Prevent crashes in method type parsing (#3340), when @mixin type can't be found (#3452), when throwing an exception without a known alias (#3465), and when yielded type tokenisation fails (#3430)
  • Prevent notice due to empty function id (#3354)
... (truncated)
Commits
  • 3c60609 Support better mixin handling
  • 203ed6d Remove newline
  • 9b413cf Improved understanding of array_key_exists
  • b9ea115 Support string class_alias calls with leading backslash
  • ef53ee3 Fix crash on aliased exception
  • 769ac5c Fix #3458 - scope templated mixin accurately
  • d04e21e Define mixin declaring classname
  • 700b5dd Fix #3461 by removing file from issues after removing last issue (#3462)
  • b4855b3 Catch errors during yield annotation tokenisation
  • 3da3d61 Fix #3434 by removing extraneous call to simplifyType
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 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)
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in the .dependabot/config.yaml file in this repo:

  • Update frequency
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [vimeo/psalm](https://github.com/vimeo/psalm) from 3.11.4 to 3.11.5.
- [Release notes](https://github.com/vimeo/psalm/releases)
- [Commits](vimeo/psalm@3.11.4...3.11.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@codecov
Copy link

codecov bot commented May 27, 2020

Codecov Report

Merging #242 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@             Coverage Diff             @@
##              master      #242   +/-   ##
===========================================
  Coverage     100.00%   100.00%           
  Complexity        41        41           
===========================================
  Files              4         4           
  Lines            159       159           
===========================================
  Hits             159       159           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 7e76fcc...f83ef5e. Read the comment docs.

@ergebnis-bot ergebnis-bot self-requested a review May 27, 2020 18:21
@ergebnis-bot ergebnis-bot self-assigned this May 27, 2020
@ergebnis-bot ergebnis-bot merged commit e35fe25 into master May 27, 2020
@ergebnis-bot ergebnis-bot deleted the dependabot/composer/vimeo/psalm-3.11.5 branch May 27, 2020 18:21
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.

None yet

1 participant