Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

# TestSpark Changelog
## Unreleased

## 0.4.2
### Added
- Support IDEA `253.*`.

## 0.4.1
### Fixed
- Changed TestSpark's vendor to JetBrains
- Fixed minor bugs
### Changed
- Improved the error-handling structure
### Added
- Support IDEA `252.*`.

## 0.4.0
### Fixed
- Resolve compatibility issues with Marketplace verifier
### Changed
- Improve the collection of sample test code candidates
### Added
- Support for Google AI as an LLM
- KEX as a new test generation feature
- Support IDEA `251.*`.

## 0.3.1
### Fixed
- Multiple minor bugs in test generation algorithms.
Expand Down
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,11 @@ dependencies {
// make a custom version of IDEA
create(properties("platformType"), properties("platformVersion"))
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file.
bundledPlugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
bundledPlugins(
providers.gradleProperty("platformPlugins").map {
it.split(',') + "com.intellij.gradle"
},
)

pluginVerifier()
zipSigner()
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
pluginGroup = org.jetbrains.research.testspark
pluginName = TestSpark
# SemVer format -> https://semver.org
pluginVersion = 0.4.1
pluginVersion = 0.4.2

evosuiteVersion = 1.0.5
kexVersion = 0.0.8

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 242
pluginUntilBuild = 252.*
pluginUntilBuild = 253.*

# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
platformType = IC
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
]]></description>

<change-notes><![CDATA[
<h4>0.4.2</h>
<ul>
<li>Support IDE 253.*</li>
</ul>
<h4>0.4.1</h4>
<ul>
<li>Changed TestSpark’s vendor to JetBrains.</li>
Expand Down