Skip to content

Commit 5c1e0d7

Browse files
authored
Add an initial changelog to the Dart IntelliJ plugin (#40)
This resolves #23
1 parent 797ffbf commit 5c1e0d7

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

third_party/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Dart Plugin for IntelliJ Changelog
2+
3+
## [Unreleased]
4+
5+
- Vendor change from "JetBrains" to "Google"
6+
- Build system change from Basel to Gradle
7+
- Removal of the old Code Coverage support, all references to com.intellij.coverage.*
8+
- New Dart language feature: Dot Shorthands (https://youtrack.jetbrains.com/issue/IDEA-370100)
9+
- Support new 'Null-Aware Elements’ syntax (https://youtrack.jetbrains.com/issue/IDEA-374053)
10+
- Fix: IDE freezes after inserting a piece of Dart code (https://youtrack.jetbrains.com/issue/IDEA-231468)
11+
- Fix: DartParser performance issue: sluggish typing in the editor (https://youtrack.jetbrains.com/issue/IDEA-365957)
12+
- Fix: Format of very long line gives uncompilable code (https://youtrack.jetbrains.com/issue/IDEA-328345)
13+
- Fix: Cannot save Dart line length in Settings (https://youtrack.jetbrains.com/issue/IDEA-322573)
14+
- Closing labels should look like inlay hints, not like real comments (https://youtrack.jetbrains.com/issue/IDEA-289260)

third_party/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,13 @@ intellijPlatform {
3434
name = providers.gradleProperty("pluginName")
3535
id = providers.gradleProperty("pluginId")
3636
version = providers.gradleProperty("pluginVersion")
37-
// TODO(https://github.com/flutter/dart-intellij-third-party/issues/23) Add a changelog:
38-
// val changelog = ...
3937
ideaVersion {
4038
sinceBuild = providers.gradleProperty("pluginSinceBuild")
4139
untilBuild = providers.gradleProperty("pluginUntilBuild")
4240
}
41+
changeNotes = provider {
42+
file("CHANGELOG.md").readText(Charsets.UTF_8)
43+
}
4344
}
4445
pluginVerification {
4546
failureLevel = listOf(

0 commit comments

Comments
 (0)