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

Release 5.11.1 #368

Merged
merged 22 commits into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9b052f8
Merge pull request #350 from reportportal/rc/5.10.0
IvanKustau Aug 28, 2023
90f4353
EPMRPP-86199 || Add common not found error
APiankouski Sep 6, 2023
c94a391
EPMRPP-86199 || Add common not found error
APiankouski Sep 6, 2023
c86571e
Add common not found Error (#352)
APiankouski Sep 8, 2023
cd4791d
Merge branch 'develop' into feature/settings
APiankouski Sep 15, 2023
e9c131f
EPMRPP-86221 || Fix missed fields
Yumfriez Apr 7, 2022
07815af
EPMRPP-86250 || Update Analyzer settings. Provide the base for analy…
APiankouski Sep 29, 2023
b2fb5e6
EPMRPP-86250 || Update Analyzer settings. Provide the base for analy…
APiankouski Oct 3, 2023
b866410
EPMRPP-86742 add lombok support (#355)
grabsefx Oct 11, 2023
2cdb3e2
EPMRPP-86743 || Add new launch import rq (#356)
pbortnik Oct 25, 2023
67c5f50
EPMRPP-87332 || Send launchNumber to analyzer
APiankouski Nov 2, 2023
2ebbf09
Merge pull request #357 from reportportal/feature/EPMRPP-87332
APiankouski Nov 3, 2023
55ec356
EPMRPP-87316 || Update PostFromField model (#358)
pbortnik Nov 10, 2023
2a346aa
EPMRPP-87493 || Add description of the field (#360)
pbortnik Nov 10, 2023
508b9ef
EPMRPP-87271 added ActivityEventResource.subjectId field (#359)
grabsefx Nov 13, 2023
83f012f
EPMRPP-87613 || Add back compatibility with older plugins (#361)
pbortnik Nov 16, 2023
6a49944
EPMRPP-87813 || Send to the analyzer the id of previous launch
APiankouski Nov 22, 2023
87c7b44
Merge pull request #362 from reportportal/EPMRPP-87813
APiankouski Nov 23, 2023
61d713e
EPMRPP-88638 || Add name validation for launch import endpoint (#364)
pbortnik Dec 11, 2023
87ca2fe
EPMRPP-88727 || Support null value for name in import (#365)
pbortnik Dec 13, 2023
9204e57
Merge branch 'develop' of https://github.com/reportportal/commons-mod…
pbortnik Dec 15, 2023
ed4f60b
rc/5.11.1 || Update version
pbortnik Dec 15, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
env:
GH_USER_NAME: github.actor
SCRIPTS_VERSION: 5.10.0
RELEASE_VERSION: 5.10.0
RELEASE_VERSION: 5.11.1

jobs:
release:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ public class IndexLaunch {
@JsonProperty("launchNumber")
private Long launchNumber;

@JsonProperty("previousLaunchId")
private Long previousLaunchId;

public IndexLaunch() {
}

Expand Down Expand Up @@ -122,4 +125,12 @@ public Long getLaunchNumber() {
public void setLaunchNumber(Long launchNumber) {
this.launchNumber = launchNumber;
}

public Long getPreviousLaunchId() {
return previousLaunchId;
}

public void setPreviousLaunchId(Long previousLaunchId) {
this.previousLaunchId = previousLaunchId;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,16 @@ public class PostFormField implements Comparable<PostFormField>, Serializable {
@JsonProperty(value = "definedValues")
private List<AllowedValue> definedValues;

public PostFormField(String id, String name, String type, boolean isReq, List<String> values,
List<AllowedValue> defValues) {
this.id = id;
this.fieldName = name;
this.fieldType = type;
this.isRequired = isReq;
this.value = values;
this.definedValues = defValues;
}

public PostFormField(String id, String fieldName, String fieldType, boolean isRequired,
String commandName) {
this.id = id;
Expand All @@ -109,4 +119,13 @@ public int compareTo(PostFormField field) {
Boolean byField = field.isRequired;
return byField.compareTo(current);
}

public void setIsRequired(boolean value) {
this.isRequired = value;
}

public boolean getIsRequired() {
return isRequired;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@

package com.epam.ta.reportportal.ws.model.launch;

import static com.epam.ta.reportportal.ws.model.ValidationConstraints.MAX_NAME_LENGTH;
import static com.epam.ta.reportportal.ws.model.ValidationConstraints.MAX_PARAMETERS_LENGTH;
import static com.epam.ta.reportportal.ws.model.ValidationConstraints.MIN_LAUNCH_NAME_LENGTH;

import com.epam.ta.reportportal.ws.model.attribute.ItemAttributesRQ;
import com.fasterxml.jackson.annotation.JsonAlias;
Expand All @@ -36,6 +38,7 @@ public class LaunchImportRQ {

@JsonProperty(value = "name")
@ApiModelProperty
@Size(min = MIN_LAUNCH_NAME_LENGTH, max = MAX_NAME_LENGTH)
protected String name;

@JsonProperty(value = "description")
Expand Down
Loading