From 99bb064d91b9afaa6325f741228d6e4921f27f25 Mon Sep 17 00:00:00 2001 From: Daniil Tsaryov Date: Mon, 7 Nov 2022 10:26:49 +0100 Subject: [PATCH] Specify breaking change about UrlPathInlayAction for 2022.3 instead of 2023.1 (#875) --- reference_guide/api_changes_list_2022.md | 6 ++++++ reference_guide/api_changes_list_2023.md | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/reference_guide/api_changes_list_2022.md b/reference_guide/api_changes_list_2022.md index 4b7d5174e..87966be83 100644 --- a/reference_guide/api_changes_list_2022.md +++ b/reference_guide/api_changes_list_2022.md @@ -161,6 +161,12 @@ _Early Access Program_ (EAP) releases of upcoming versions are available [here]( `com.intellij.lang.javascript.buildTools.webpack.WebPackConfigManager.Companion` class moved to package `com.intellij.webpack` : Use `com.intellij.webpack.WebpackConfigManager.Companion` instead. +### Microservices Plugin 2022.3 + +`com.intellij.microservices.url.inlay.UrlPathInlayAction.isAvailable(file: PsiFile, urlPathContext: UrlPathContext)` method parameter type changed from `com.intellij.microservices.url.references.UrlPathContext` +to `com.intellij.microservices.url.inlay.UrlPathInlayHint`. +: Use `com.intellij.microservices.url.inlay.UrlPathInlayHint.getContext` to obtain corresponding `UrlPathContext` instance. + ## 2022.2 ### IntelliJ Platform 2022.2 diff --git a/reference_guide/api_changes_list_2023.md b/reference_guide/api_changes_list_2023.md index 676e5563b..2a00ffa53 100644 --- a/reference_guide/api_changes_list_2023.md +++ b/reference_guide/api_changes_list_2023.md @@ -83,9 +83,3 @@ _Early Access Program_ (EAP) releases of upcoming versions are available [here]( ### IntelliJ Platform 2023.1 - -### Microservices Plugin 2023.1 - -`com.intellij.microservices.url.inlay.UrlPathInlayAction.isAvailable(file: PsiFile, urlPathContext: UrlPathContext)` method parameter type changed from `com.intellij.microservices.url.references.UrlPathContext` -to `com.intellij.microservices.url.inlay.UrlPathInlayHint`. -: Use `com.intellij.microservices.url.inlay.UrlPathInlayHint.getContext` to obtain corresponding `UrlPathContext` instance.