Skip to content

Commit a5769f6

Browse files
Update plugin.xml, "Overview" and "What's New" sections
1 parent 088c5e4 commit a5769f6

File tree

1 file changed

+8
-13
lines changed
  • utbot-intellij/src/main/resources/META-INF

1 file changed

+8
-13
lines changed

utbot-intellij/src/main/resources/META-INF/plugin.xml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<li>generating <a href="https://github.com/microsoft/sarif-tutorials/blob/main/README.md">SARIF</a> reports</li>
5757
<li>innovative symbolic execution engine combined with a smart fuzzing platform</li>
5858
</ul>
59-
UnitTestBot supports the latest JDKs, JUnit 4, JUnit 5, TestNG, Mockito and is suitable for all popular operational systems.
59+
UnitTestBot supports JDK 1.8&ndash;17, JUnit 4, JUnit 5, TestNG, Mockito and is suitable for all popular operational systems.
6060
<br/>
6161
Try <a href="https://www.utbot.org/demo/?language=Java&source=public%20class%20Recursion%20%7B%0A%0A%20%20public%20int%20fib(int%20n)%20%7B%0A%20%20%20%20if%20(n%20%3C%200)%20throw%20new%20IllegalArgumentException()%3B%0A%20%20%20%20if%20(n%20%3D%3D%200)%20return%200%3B%0A%20%20%20%20if%20(n%20%3D%3D%201)%20return%201%3B%0A%20%20%20%20%0A%20%20%20%20return%20fib(n%20-%201)%20%2B%20fib(n%20-%202)%3B%0A%20%20%7D%0A%7D%0A">UnitTestBot online demo</a> to see how it generates tests for your code in real time.
6262
<br/>
@@ -69,19 +69,14 @@
6969
</description>
7070
<change-notes>
7171
<![CDATA[
72-
Check out UnitTestBot new features and major improvements in the latest release:
72+
Check out the latest UnitTestBot release with major improvements and bug fixes:
7373
<ul>
74-
<li>Generating tests for Python and JavaScript</li>
75-
<li>New fuzzing platform providing support for multiple languages</li>
76-
<li>Improved test generation for Kotlin code</li>
77-
<li>Multiprocess architecture based on the <a href="https://github.com/JetBrains/rd">Reactive Distributed communication framework</a> with advanced logging and debugging options</li>
78-
<li>Symbolic execution engine with higher priority and fewer false UNSAT verdicts</li>
79-
<li>UI/UX improvements for test sources root, <code>setting.properties</code> file, cancellation, timeout settings, notifications</li>
80-
<li>Summaries with fine-grained settings</li>
81-
<li>SARIF reports enabled by default, displaying sandbox-related and timeout test failures, properly addressing source files</li>
82-
<li>Improved monitoring visualized with Grafana</li>
83-
<li>Test generation bug fixes</li>
84-
<li>Detailed documentation on UnitTestBot components including UnitTestBot architecture overview</li>
74+
<li>Compatibility with IntelliJ IDEA 2022.3</li>
75+
<li>Using Java 17 for plugin compilation</li>
76+
<li>Improved fuzzing behavior</li>
77+
<li>Saving test generation timeout as a project-specific setting</li>
78+
<li>Inspections for the nested classes displayed in the Problems tool window</li>
79+
<li>No more empty tests when selecting multiple classes for generation</li>
8580
</ul>
8681
]]>
8782
</change-notes>

0 commit comments

Comments
 (0)