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

Bump vimeo/psalm from 2.0.17 to 3.11.5 #152

Closed

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps vimeo/psalm from 2.0.17 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 use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @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 your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • 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 2.0.17 to 3.11.5.
- [Release notes](https://github.com/vimeo/psalm/releases)
- [Commits](vimeo/psalm@2.0.17...3.11.5)

Signed-off-by: dependabot-preview[bot] <[email protected]>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label May 28, 2020
@dependabot-preview
Copy link
Contributor Author

Superseded by #161.

@dependabot-preview dependabot-preview bot deleted the dependabot/composer/vimeo/psalm-3.11.5 branch June 18, 2020 14:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants