Notable Changes: redesign

This commit is contained in:
Yann Cébron 2019-03-04 19:50:08 +01:00
parent 5ce043b04c
commit cc1d0b7552
2 changed files with 26 additions and 36 deletions

View File

@ -2,26 +2,21 @@
title: Notable Changes in IntelliJ Platform and Plugins API 2018.*
---
<style>
table {
width:100%;
}
th, tr, td {
width:50%;
}
</style>
## Notable Changes in IntelliJ Platform 2018.3
| Change | Description |
|--------|-------------|
| ASM Library 7.0 | Updated to 7.0 [Issue](https://youtrack.jetbrains.com/issue/IDEA-191331) |
| Extendable Registry keys | Plugins can contribute new keys to _Registry_ dialog via EP `com.intellij.registryKey` [Issue](https://youtrack.jetbrains.com/issue/IDEA-177378) |
| Editor: content between text lines| Ability to add arbitrary content (preview, debugger information, etc.) [Issue](https://youtrack.jetbrains.com/issue/IDEA-183815) |
ASM Library 7.0
: Updated to 7.0 [Issue](https://youtrack.jetbrains.com/issue/IDEA-191331).
Extendable Registry keys
: Plugins can contribute new keys to _Registry_ dialog via EP `com.intellij.registryKey`. [Issue](https://youtrack.jetbrains.com/issue/IDEA-177378)
Editor: content between text lines
: Ability to add arbitrary content (preview, debugger information, etc.). [Issue](https://youtrack.jetbrains.com/issue/IDEA-183815)
## Notable Changes in IntelliJ Platform 2018.2
| Change | Description |
|--------|-------------|
| _Run Anything_ (**Double CTRL**) | Allows executing predefined activities using a popup with smart completion, e.g. [Gradle Tasks](https://www.jetbrains.com/help/idea/gradle.html#gradle_tasks), executing Run Configurations, ... See [`RunAnythingProvider`](upsource:///platform/lang-impl/src/com/intellij/ide/actions/runAnything/activity/RunAnythingProvider.java) |
| JPS: Report exception in IDE | Ability to report exceptions from build process [Issue](https://youtrack.jetbrains.com/issue/IDEA-187115) |
_Run Anything_ (**Double CTRL**)
: Allows executing predefined activities using a popup with smart completion, e.g. [Gradle Tasks](https://www.jetbrains.com/help/idea/gradle.html#gradle_tasks), executing Run Configurations, ... see [`RunAnythingProvider`](upsource:///platform/lang-impl/src/com/intellij/ide/actions/runAnything/activity/RunAnythingProvider.java)
JPS: Report exception in IDE
: Ability to report exceptions from build process. [Issue](https://youtrack.jetbrains.com/issue/IDEA-187115)

View File

@ -2,27 +2,22 @@
title: Notable Changes in IntelliJ Platform and Plugins API 2019.*
---
<style>
table {
width:100%;
}
th, tr, td {
width:50%;
}
</style>
## Notable Changes in IntelliJ Platform 2019.2
| Change | Description |
|--------|-------------|
| `com.intellij.util.Query#forEach` | Defaults to thread-safe to prevent problems with clients using unsynchronized collections. |
`com.intellij.util.Query#forEach`
: Defaults to thread-safe to prevent problems with clients using unsynchronized collections.
## Notable Changes in IntelliJ Platform 2019.1
| Change | Description |
|--------|-------------|
| `@org.jetbrains.annotations.ApiStatus.AvailableSince` | External annotations for IntelliJ Platform are generated and attached to plugin projects automatically (replacing `@since` Javadoc). |
| `@org.jetbrains.annotations.ApiStatus.ScheduledForRemoval` | External annotations for IntelliJ Platform are generated and attached to plugin projects automatically. This allows highlighting of API which has been removed in newer platform versions. |
| `PsiReferenceProvider`: assert underlying element | Assert references are created for the given underlying `PsiElement`. [Issue](https://youtrack.jetbrains.com/issue/IDEA-203954) |
| `CachedValue`: more strict assertions | Enabled in tests and EAP/internal mode, see `CachedValueStabilityChecker` Javadoc. |
`@org.jetbrains.annotations.ApiStatus.AvailableSince`
: External annotations for IntelliJ Platform are generated and attached to plugin projects automatically (replacing `@since` Javadoc).
`@org.jetbrains.annotations.ApiStatus.ScheduledForRemoval`
: External annotations for IntelliJ Platform are generated and attached to plugin projects automatically. This allows highlighting of API which has been removed in newer platform versions.
`PsiReferenceProvider` assert underlying element
: Assert references are created for the given underlying `PsiElement`. [Issue](https://youtrack.jetbrains.com/issue/IDEA-203954)
`CachedValue` more strict assertions
: Enabled in tests and EAP/internal mode, see `CachedValueStabilityChecker` Javadoc.