Skip to content

Commit 77b3662

Browse files
committed
Update Gradle IntelliJ plugin and adjust publish token key
Upgraded Gradle IntelliJ plugin to version 2, enabling support for IntelliJ IDEA Community edition and eliminating the need for the Ultimate edition. Also refined the publishing token environment variable for better clarity and consistency.
1 parent 3a3f53e commit 77b3662

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
66

77
## 5.4.0
88

9+
### Changed
10+
11+
- Updated Gradle Intellij plugin to version 2 [#2473](https://github.com/magento/magento2-phpstorm-plugin/pull/2473)
12+
The project no longer requires the paid Ultimate edition of IntelliJ IDEA. It can now run seamlessly in the Community edition.
13+
Enabled code emulation directly within PHPStorm, eliminating the dependency on IntelliJ IDEA for this functionality.
14+
915
## 5.3.1
1016

1117
### Fixed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ intellijPlatform {
101101
}
102102

103103
publishing {
104-
token = providers.environmentVariable("PUBLISH_TOKEN")
104+
token = providers.environmentVariable("MAGENTO_PHPSTORM_intellijPublishToken")
105105
channels = providers.gradleProperty("pluginVersion").map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
106106
}
107107

0 commit comments

Comments
 (0)