Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed request param cast issue for ImpEx execution #1002

Merged
merged 1 commit into from
Feb 8, 2024
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
- IDE error when running FlexibleSearch query [#976](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/976)
- SOLR connection settings are not properly changed [#977](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/977)
- Fixed code generation on Windows [#979](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/979)
- Fixed request param cast issue for ImpEx execution [#1002](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1002)

## [2023.3.4]

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -43,23 +43,23 @@ intellij.update.since.until.build=true

intellij.plugin.name=SAP-Commerce-Developers-Toolset
intellij.plugin.version=2024.1.0
intellij.plugin.since.build=241.10840.26
intellij.plugin.since.build=241.11761.10
intellij.plugin.until.build=241.*

intellij.type=IU
intellij.version=241.10840.26-EAP-SNAPSHOT
intellij.version=241.11761-EAP-CANDIDATE-SNAPSHOT
intellij.download.sources=true

# Plugin Verifier integration -> https://github.com/JetBrains/intellij-plugin-verifier
# https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions
# EAP snapshots -> https://www.jetbrains.com/intellij-repository/snapshots
plugin.verifier.ide.versions=IU-241.10840.26
plugin.verifier.ide.versions=IU-241.11761.10

# Plugin Dependencies -> https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_dependencies.html
# Platform explorer (Plugin) -> https://plugins.jetbrains.com/intellij-platform-explorer/extensions
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
intellij.plugins=AntSupport:241.10840.26,\
intellij.plugins=AntSupport:241.11761.10,\
Spring,\
JavaScript,\
uml,\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class HybrisImpexConsole(project: Project) : HybrisConsole(project, HybrisConsta
"scriptContent" to query,
"validationEnum" to importModeComboBox.selectedItem as String,
"encoding" to "UTF-8",
"maxThreads" to maxThreadsSpinner.value as String,
"maxThreads" to maxThreadsSpinner.value.toString(),
"_legacyMode" to "on", // Legacy Mode
"_enableCodeExecution" to "on",
"_distributedMode" to "on", // Distributed mode
Expand Down
Loading