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

Component update 5.11.1 #1956

Closed
wants to merge 7 commits into from
Closed

Component update 5.11.1 #1956

wants to merge 7 commits into from

Conversation

APiankouski
Copy link
Contributor

No description provided.

@APiankouski APiankouski requested a review from avarabyeu as a code owner March 25, 2024 15:27
APiankouski and others added 2 commits March 26, 2024 12:01
EPMRPP-89932 || Add possibility to configure autocomplete suggestions when inviting users
@@ -99,8 +99,7 @@ public IntegrationTypeDetails resolvePluginDetails(PluginInfo pluginInfo) {
.flatMap(it -> ofNullable(it.getDetails())).flatMap(
typeDetails -> IntegrationTypeProperties.VERSION.getValue(typeDetails.getDetails())
.map(String::valueOf)).ifPresent(
version -> BusinessRule.expect(version, v -> !v.equalsIgnoreCase(
pluginInfo.getVersion()))
version -> BusinessRule.expect(version, v -> !v.equalsIgnoreCase(pluginInfo.getVersion()))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.sizes.LineLengthCheck> reported by reviewdog 🐶
Line is longer than 100 characters (found 102).

@@ -99,8 +99,7 @@
.flatMap(it -> ofNullable(it.getDetails())).flatMap(
typeDetails -> IntegrationTypeProperties.VERSION.getValue(typeDetails.getDetails())
.map(String::valueOf)).ifPresent(
version -> BusinessRule.expect(version, v -> !v.equalsIgnoreCase(
pluginInfo.getVersion()))
version -> BusinessRule.expect(version, v -> !v.equalsIgnoreCase(pluginInfo.getVersion()))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck> reported by reviewdog 🐶
'lambda arguments' has incorrect indentation level 12, expected level should be one of the following: 18, 20.

@@ -35,9 +35,9 @@ public interface PluginLoader {
*
* @param pluginPath Plugin's path
* @return {@link PluginInfo} with {@link PluginInfo#getId()} and {@link PluginInfo#getVersion()}
* @throws PluginException if there is an issue in loading the plugin or the plugin is not found in the specified path
* @throws PluginRuntimeException if there is an issue in loading the plugin or the plugin is not found in the specified path

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.sizes.LineLengthCheck> reported by reviewdog 🐶
Line is longer than 100 characters (found 127).

Paths.get(PLUGINS_TEMP_PATH, NEW_PLUGIN_FILE_NAME))).thenThrow(new PluginException(
"Manifest not found"));
Paths.get(PLUGINS_TEMP_PATH, NEW_PLUGIN_FILE_NAME))).thenThrow(
new PluginRuntimeException("Manifest not found"));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck> reported by reviewdog 🐶
'new' has incorrect indentation level 8, expected level should be one of the following: 10, 12.

@@ -77,14 +78,18 @@ public class GetProjectHandlerImpl implements GetProjectHandler {

private final ProjectConverter projectConverter;

private final boolean isUserSuggestions;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck> reported by reviewdog 🐶
Line contains a tab character.

@@ -77,14 +78,18 @@

private final ProjectConverter projectConverter;

private final boolean isUserSuggestions;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck> reported by reviewdog 🐶
'member def modifier' has incorrect indentation level 8, expected level should be 2.

@Autowired
public GetProjectHandlerImpl(ProjectRepository projectRepository, UserRepository userRepository,
@Qualifier("projectJasperReportHandler") GetJasperReportHandler<ProjectInfo> jasperReportHandler,
ProjectConverter projectConverter) {
ProjectConverter projectConverter,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck> reported by reviewdog 🐶
Line contains a tab character.

@Autowired
public GetProjectHandlerImpl(ProjectRepository projectRepository, UserRepository userRepository,
@Qualifier("projectJasperReportHandler") GetJasperReportHandler<ProjectInfo> jasperReportHandler,
ProjectConverter projectConverter) {
ProjectConverter projectConverter,
@Value("${rp.environment.variable.user.suggestions:true}") boolean isUserSuggestions) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.sizes.LineLengthCheck> reported by reviewdog 🐶
Line is longer than 100 characters (found 111).

@Autowired
public GetProjectHandlerImpl(ProjectRepository projectRepository, UserRepository userRepository,
@Qualifier("projectJasperReportHandler") GetJasperReportHandler<ProjectInfo> jasperReportHandler,
ProjectConverter projectConverter) {
ProjectConverter projectConverter,
@Value("${rp.environment.variable.user.suggestions:true}") boolean isUserSuggestions) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck> reported by reviewdog 🐶
Line contains a tab character.

return new CompositeFilterCondition(List.of(new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_USER),
new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_FULL_NAME),
new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_EMAIL)
), Operator.AND);
}

private CompositeFilterCondition getUserSearchCondition(String value) {
return new CompositeFilterCondition(List.of(
new FilterCondition(Operator.OR, Condition.EQUALS, false, value, CRITERIA_EMAIL)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.sizes.LineLengthCheck> reported by reviewdog 🐶
Line is longer than 100 characters (found 112).

return new CompositeFilterCondition(List.of(new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_USER),
new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_FULL_NAME),
new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_EMAIL)
), Operator.AND);
}

private CompositeFilterCondition getUserSearchCondition(String value) {
return new CompositeFilterCondition(List.of(
new FilterCondition(Operator.OR, Condition.EQUALS, false, value, CRITERIA_EMAIL)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck> reported by reviewdog 🐶
Line contains a tab character.

private CompositeFilterCondition getUserSearchCondition(String value) {
return new CompositeFilterCondition(List.of(
new FilterCondition(Operator.OR, Condition.EQUALS, false, value, CRITERIA_EMAIL)
), Operator.AND);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck> reported by reviewdog 🐶
Line contains a tab character.

return new CompositeFilterCondition(List.of(
new FilterCondition(Operator.OR, Condition.EQUALS, false, value, CRITERIA_EMAIL)
), Operator.AND);
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck> reported by reviewdog 🐶
Line contains a tab character.

return new CompositeFilterCondition(List.of(
new FilterCondition(Operator.OR, Condition.EQUALS, false, value, CRITERIA_EMAIL)
), Operator.AND);
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck> reported by reviewdog 🐶
'method def rcurly' has incorrect indentation level 8, expected level should be 2.

@APiankouski APiankouski changed the title EPMRPP-89755 || Sort parameters in alphabetical order Component update 5.11.1 Apr 2, 2024
@Value("${rp.environment.variable.user.suggestions:true}")
boolean isUserSuggestions;

@Autowired
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.javadoc.MissingJavadocMethodCheck> reported by reviewdog 🐶
Missing a Javadoc comment.


@Autowired
public GetProjectHandlerImpl(ProjectRepository projectRepository, UserRepository userRepository,
@Qualifier("projectJasperReportHandler") GetJasperReportHandler<ProjectInfo> jasperReportHandler,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.sizes.LineLengthCheck> reported by reviewdog 🐶
Line is longer than 100 characters (found 103).

@IvanKustau IvanKustau closed this Apr 3, 2024
@IvanKustau IvanKustau deleted the hotfix/24.1.1 branch April 3, 2024 09:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants