From f8dee9d2b4df5f695e8bf7dd915da14f80bc068b Mon Sep 17 00:00:00 2001 From: Nikita Skvortsov <539027+nskvortsov@users.noreply.github.com> Date: Thu, 26 Oct 2023 16:23:40 +0200 Subject: [PATCH] Document removal of GradleProjectResolver.CONFIGURATION_ARTIFACTS (#1141) * Document removal of GradleProjectResolver.CONFIGURATION_ARTIFACTS This key used to point to artifacts' mapping information in DataNode. Since 2023.3 this information is stored in `org.jetbrains.plugins.gradle.service.project.ProjectResolverContext` * Fix punctuation --- reference_guide/api_changes_list_2023.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reference_guide/api_changes_list_2023.md b/reference_guide/api_changes_list_2023.md index 26ca5e3f6..6eed76403 100644 --- a/reference_guide/api_changes_list_2023.md +++ b/reference_guide/api_changes_list_2023.md @@ -98,6 +98,9 @@ JsonPath library unbundled `org.jetbrains.plugins.gradle.service.project.GradleProjectResolverUtil.buildDependencies(ProjectResolverContext, Map, Map, DataNode, Collection, DataNode)` method parameter type changed from `Map` to `ArtifactMappingService` : Update usages of this method. Change parameter `artifactsMap` value to an `ArtifactMappingService` instance. It can be obtained from `ProjectResolverContext`, or created in-place using the `MapBasedArtifactMappingService` +`org.jetbrains.plugins.gradle.service.project.GradleProjectResolver.CONFIGURATION_ARTIFACTS` field removed +: Related mapping information is no longer accessible using this key. Artifacts mapping data is now stored in the instance of the `ArtifactMappingService` and can be obtained via `org.jetbrains.plugins.gradle.service.project.ProjectResolverContext#getArtifactsMap()`. + ### Collaboration Tools Module 2023.3 `com.intellij.collaboration.ui.codereview.action.CodeReviewCheckoutRemoteBranchAction` class removed