Skip to content

Commit

Permalink
2024.3 release (#1376)
Browse files Browse the repository at this point in the history
* switch to 243, update gh-ic links

* code samples: build against 2024.1

* action_basics: mute warning in PopupDialogAction

* GH build: mute invalid plugin ID on CI

* GH build: mute invalid plugin ID on CI

* final 2024.3, regen EP-lists

* code samples: 2024.3
  • Loading branch information
YannCebron authored Nov 13, 2024
1 parent 823dd6e commit e27c803
Show file tree
Hide file tree
Showing 47 changed files with 573 additions and 367 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/code-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
paths: [ 'code_samples/**','.github/workflows/code-samples.yml' ]

env:
PLUGIN_VERIFIER_IDE_VERSIONS: '2023.3.7 2024.1.5 2024.2'
PLUGIN_VERIFIER_IDE_VERSIONS: '2024.1.7 2024.2.4 2024.3'

jobs:

Expand Down Expand Up @@ -72,6 +72,7 @@ jobs:
tasks {
runPluginVerifier {
ideVersions.set("\"$PLUGIN_VERIFIER_IDE_VERSIONS\"".split(' ').toList())
freeArgs.set(listOf(\"-mute\", \"TemplateWordInPluginId\"))
}
}
" >> code_samples/${{ matrix.plugin }}/build.gradle.kts
Expand Down
8 changes: 4 additions & 4 deletions code_samples/action_basics/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
}

tasks {
Expand All @@ -28,7 +28,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2024 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.

package org.intellij.sdk.action;

Expand All @@ -17,8 +17,9 @@
/**
* Action class to demonstrate how to interact with the IntelliJ Platform.
* The only action this class performs is to provide the user with a popup dialog as feedback.
* Typically this class is instantiated by the IntelliJ Platform framework based on declarations
* in the plugin.xml file. But when added at runtime this class is instantiated by an action group.
* Typically, this class is instantiated by the IntelliJ Platform framework based on declarations
* in the plugin.xml file.
* But when added at runtime, this class is instantiated by an action group.
*/
public class PopupDialogAction extends AnAction {

Expand All @@ -44,6 +45,7 @@ public PopupDialogAction() {
* @param description The description of the menu item.
* @param icon The icon to be used with the menu item.
*/
@SuppressWarnings("ActionPresentationInstantiatedInCtor") // via DynamicActionGroup
public PopupDialogAction(@Nullable String text, @Nullable String description, @Nullable Icon icon) {
super(text, description, icon);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -22,7 +22,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
plugins.set(listOf("com.intellij.java"))
}

Expand All @@ -33,7 +33,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/conditional_operator_intention/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -22,7 +22,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
plugins.set(listOf("com.intellij.java"))
}

Expand All @@ -33,7 +33,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/editor_basics/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
}

tasks {
Expand All @@ -28,7 +28,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/facet_basics/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
}

tasks {
Expand All @@ -28,7 +28,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/framework_basics/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
plugins.set(listOf("com.intellij.java"))
}

Expand All @@ -29,7 +29,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/live_templates/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
}

tasks {
Expand All @@ -28,7 +28,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/max_opened_projects/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -19,7 +19,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
}

tasks {
Expand All @@ -29,7 +29,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/module/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
}

tasks {
Expand All @@ -28,7 +28,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/product_specific/pycharm_basics/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.6")
version.set("2024.1.7")
type.set("PY")
plugins.set(listOf("Pythonid"))
downloadSources.set(false)
Expand All @@ -31,7 +31,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/project_model/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
plugins.set(listOf("com.intellij.java"))
}

Expand All @@ -29,7 +29,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/project_view_pane/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
}

tasks {
Expand All @@ -28,7 +28,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/project_wizard/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
}

tasks {
Expand All @@ -28,7 +28,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
8 changes: 4 additions & 4 deletions code_samples/psi_demo/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.

plugins {
id("java")
Expand All @@ -18,7 +18,7 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.7")
version.set("2024.1.7")
plugins.set(listOf("com.intellij.java"))
}

Expand All @@ -29,7 +29,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("233")
untilBuild.set("242.*")
sinceBuild.set("241")
untilBuild.set("243.*")
}
}
Loading

0 comments on commit e27c803

Please sign in to comment.