Skip to content

Commit

Permalink
build 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Haehnchen committed May 31, 2020
1 parent 1dab661 commit 3782a03
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 11 deletions.
30 changes: 24 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,30 @@
# Changelog

## Versions
* 6.x: PhpStorm 2019.1+
* 5.x: PhpStorm 2017.1+
* 4.x: PhpStorm 2016.1.2+
* 3.x: PhpStorm 2016.1+
* 2.x: PhpStorm9, 10
* 1.x: PhpStorm8
* 7.x: PhpStorm 2020.1+
* 6.x: PhpStorm 2019.1+ (no support)
* 5.x: PhpStorm 2017.1+ (no support)
* 4.x: PhpStorm 2016.1.2+ (no support)
* 3.x: PhpStorm 2016.1+ (no support)
* 2.x: PhpStorm9, 10 (no support)
* 1.x: PhpStorm8 (no support)

## 7.0.0
* Smarter ORM column field detection for insert @Column tag (Daniel Espendiller)
* Optimize imports and its references should also take into account constants with namespaces (Daniel Espendiller)
* Support attribute types also on its attribute values (Daniel Espendiller)
* Provide type detection on column also on the Field type it self to support typed properties of PHP (Daniel Espendiller)
* Add property suggestions from Doctrine @Attribute annotations [#112](https://github.com/Haehnchen/idea-php-annotation-plugin/issues/112) (https://www.doctrine-project.org/projects/doctrine-annotations/en/latest/custom.html#attribute-types) (Daniel Espendiller)
* Hide non public properties on DocBlock attribute list completion [#139](https://github.com/Haehnchen/idea-php-annotation-plugin/issues/139) (Daniel Espendiller)
* Provide deprecated hint on importing class on DocBlock [#163](https://github.com/Haehnchen/idea-php-annotation-plugin/issues/163) (Daniel Espendiller)
* Provide inspections for deprecated constant and class constant in DocBlocks (Daniel Espendiller)
* Prefix inspection messages (Daniel Espendiller)
* Support namespace in class constant annotation string (Daniel Espendiller)
* Provide importing annotation classes based on the alias (Daniel Espendiller)
* Provide inspection to check that a class behind a class constant in DocBlocks exists (Daniel Espendiller)
* Provide inspection to check if there is a real class behind a annotation doc block based on the use statements (Daniel Espendiller)
* DocBlock annotations should also check alias and check for a valid import; provide lazy and higher the scope for DocBlock to be the parent document reducing element processing (Daniel Espendiller)
* Drop support older PhpStorm versions (Daniel Espendiller)

## 6.3.0
* Provide annotation deprecation inspection for Doctrine column (Daniel Espendiller)
Expand Down
19 changes: 15 additions & 4 deletions src/main/resources/META-INF/change-notes.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
<html>
<ul>
<li>Provide annotation deprecation inspection for Doctrine column (Daniel Espendiller)</li>
<li>Insert Embeddable instead of Embedded annotation for class (Konstantin Myakshin)</li>
<li>Strikeout whole LookupElement, if deprecated, as PHP plugin does (Cedric Ziel)</li>
<li>Assign lower priority to deprecated classes' LookupElements (Cedric Ziel)</li>
<li>Smarter ORM column field detection for insert @Column tag (Daniel Espendiller)</li>
<li>Optimize imports and its references should also take into account constants with namespaces (Daniel Espendiller)</li>
<li>Support attribute types also on its attribute values (Daniel Espendiller)</li>
<li>Provide type detection on column also on the Field type it self to support typed properties of PHP (Daniel Espendiller)</li>
<li>Add property suggestions from Doctrine @Attribute annotations <a href="https://github.com/Haehnchen/idea-php-annotation-plugin/issues/112">#112</a> (https://www.doctrine-project.org/projects/doctrine-annotations/en/latest/custom.html#attribute-types) (Daniel Espendiller)</li>
<li>Hide non public properties on DocBlock attribute list completion <a href="https://github.com/Haehnchen/idea-php-annotation-plugin/issues/139">#139</a> (Daniel Espendiller)</li>
<li>Provide deprecated hint on importing class on DocBlock <a href="https://github.com/Haehnchen/idea-php-annotation-plugin/issues/163">#163</a> (Daniel Espendiller)</li>
<li>Provide inspections for deprecated constant and class constant in DocBlocks (Daniel Espendiller)</li>
<li>Prefix inspection messages (Daniel Espendiller)</li>
<li>Support namespace in class constant annotation string (Daniel Espendiller)</li>
<li>Provide importing annotation classes based on the alias (Daniel Espendiller)</li>
<li>Provide inspection to check that a class behind a class constant in DocBlocks exists (Daniel Espendiller)</li>
<li>Provide inspection to check if there is a real class behind a annotation doc block based on the use statements (Daniel Espendiller)</li>
<li>DocBlock annotations should also check alias and check for a valid import; provide lazy and higher the scope for DocBlock to be the parent document reducing element processing (Daniel Espendiller)</li>
<li>Drop support older PhpStorm versions (Daniel Espendiller)</li>
</ul>
</html>
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin url="https://github.com/Haehnchen/idea-php-annotation-plugin">
<id>de.espend.idea.php.annotation</id>
<name>PHP Annotations</name>
<version>6.3.0</version>
<version>7.0.0</version>
<vendor email="daniel@espendiller.net" url="http://www.espend.de">espend_de</vendor>

<description><![CDATA[
Expand Down

0 comments on commit 3782a03

Please sign in to comment.