11plugins {
22 // https://github.com/JetBrains/gradle-intellij-plugin
3- id ' org.jetbrains.intellij' version ' 1.9.0 '
3+ id ' org.jetbrains.intellij' version ' 1.10.1 '
44 id ' jacoco'
55 id ' com.github.kt3k.coveralls' version ' 2.8.4'
66 id ' com.github.ManifestClasspath' version ' 0.1.0-RELEASE'
@@ -73,7 +73,7 @@ var final EAP_BUILD = '223'
7373var idea_version = System . getenv(). getOrDefault(' IDEA_VERSION' , ' 2022.2.1' )
7474var build_version = idea_version == EAP_VERSION ? EAP_BUILD : idea_version. substring(2 , 4 ) + idea_version. charAt(5 ) // extract e.g. '221' from '2022.1.1'
7575
76- version ' 3.0.1 -' + build_version
76+ version ' 3.0.2 -' + build_version
7777
7878apply plugin : ' org.jetbrains.intellij'
7979intellij {
@@ -107,15 +107,17 @@ Feedback is welcome!
107107PS: The previous versions are still available on the project page.
108108
109109
110- Update 3.0.1
111-
112- FIX: cannot init component state (componentName=CsvFileAttributes) #359
113- FIX: cannot invoke "add(Object)" because "this.myUncommittedActions" is null #361
114- FIX: cannot invoke "createNotification(...)" because "notificationGroup" is null #362
115- FIX: cannot invoke "getManager()" because the return value of "getPsiFile()" is null #363
116- FIX: image in plugin description
117- FIX: plugin update restart
110+ Update 3.0.2
118111
112+ FIX: Detected bulk mode status update from DocumentBulkUpdateListener #384
113+ FIX: Argument for @NotNull parameter 'parent' of PsiHelper.getNthChildOfType must not be null #372
114+ FIX: Argument for @NotNull parameter 'element' of PsiHelper.getSiblingOfType must not be null #375
115+ FIX: Cannot invoke "Document.getText()" because "document" is null #388
116+ FIX: Cannot invoke "PsiFile.getProject()" because the return value of "CsvPsiTreeUpdater.getPsiFile()" is null #378
117+ FIX: Argument for @NotNull parameter 'replacement' of CsvPsiTreeUpdater$ReplacePsiAction . <init> must not be null #380
118+ FIX: provide project parameter for opening link
119+ FIX: Cannot invoke "Document.insertString(int, java.lang.CharSequence)" because "document" is null #386
120+ FIX: first extension sanity check
119121
120122</pre>"""
121123}
@@ -164,10 +166,3 @@ tasks.named("generateLexer").configure {
164166compileJava {
165167 dependsOn generateLexer
166168}
167-
168- // TODO https://youtrack.jetbrains.com/issue/IDEA-298989 - remove after gradle plugin v1.9.1 or v1.10.0 released
169- setupDependencies {
170- doLast {
171- fileTree(" $buildDir /instrumented/instrumentCode" ) { include(" **/*TableEditorSwing.class" ) }. files. forEach { delete(it) }
172- }
173- }
0 commit comments