Skip to content

Commit

Permalink
Release: final tweaks 5.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ea-inspections-team committed Jun 5, 2023
1 parent b342748 commit 2a25e38
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 18 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ tasks {
sinceBuild.set(properties("pluginSinceBuild"))
untilBuild.set(properties("pluginUntilBuild"))
changeNotes.set(file("src/main/resources/META-INF/change-notes.html").readText().replace("<html>", "").replace("</html>", ""))
pluginDescription.set(file("src/main/resources/META-INF/description.html").readText().replace("<html>", "").replace("</html>", ""))

// Get the latest available change notes from the changelog file
// changeNotes.set(provider {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ pluginVersion = 5.0.0.0
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
# we are able to support a minimum version having at least "TwigElementTypes.ARRAY_LITERAL"
pluginSinceBuild = 223.6160.11
pluginSinceBuild = 223.7571.4
pluginUntilBuild =

# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
platformType = IU
platformVersion = 2023.1.1
platformVersion = 2022.3

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins = java,yaml,xpath,webDeployment,JavaScript,com.jetbrains.php:231.8770.68
platformPlugins = java,yaml,xpath,webDeployment,JavaScript,com.jetbrains.php:223.7571.4

# Java language level used to compile sources and to generate the files for - Java 11 is required since 2020.3
javaVersion = 17
Expand Down
25 changes: 11 additions & 14 deletions src/main/resources/META-INF/change-notes.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
<html>
Bug-fix and new features release:<br/>
Compatibility release:<br/>
<br/>
- PhpStorm 2021.3 compatibility fixes<br/>
- 'array_is_list(...)' can be used: implemented<br/>
- 'empty(...)' usage: added new setting (suggest null comparison for scalars)<br/>
- PhpStorm 2023.1.1+ compatibility fixes<br/>
- Static closure can be used: new settings (Suggest for short functions)<br/>
- Insecure 'extract(...)' usage (Variable extract Vulnerability): dropped<br/>
- 'in_array(...)' misused: new settings (Use strict comparison only)<br/>
<br/>
- Callable parameter usage violates definition: resolved false-positives (multiple cases)<br/>
- Cascading 'str_replace(...)' calls: multiple code generation bug-fixes<br/>
- Class property initialization flaws: resolved false-positives (multiple cases)<br/>
- Isset operations variables existence: fixed a false-positive (goto handling)<br/>
- Non-optimal if conditions: resolved false-positives (multiple cases)<br/>
- One-time use variables: resolved false-positives (multiple cases)<br/>
- PHPUnit: API deprecations: address deprecations in PHPUnit 9.1<br/>
- PHPUnit: bugs and best practices: address deprecations in PHPUnit 9.1<br/>
- Referencing objects: resolved false-positives (multiple cases)<br/>
- Unnecessary type casting: resolved a false-positive (string type handling)<br/>
- JSON encoding API usage: resolved a false-positive (JSON_PARTIAL_OUTPUT_ON_ERROR).<br/>
- Traits properties conflicts resolution: resolved false-positives (multiple cases)<br/>
- Type unsafe comparison: resolved a false-positives (multiple cases).<br/>
- Unnecessary semicolon: resolved a false-positive (valid html-injections).<br/>
- Unused constructor dependencies: resolved a false-positive (multi-resolve issue).
- 'compact(...)' can be used: resolved false-positives (array destructing)<br/>
<br/>
<hr/>
</html>
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<depends>com.intellij.modules.platform</depends>

<!-- http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<idea-version since-build="231" />
<idea-version since-build="223" />

<description><![CDATA[
Replaced by description.html .....................
Expand Down

0 comments on commit 2a25e38

Please sign in to comment.