Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
864b1d4
Prepare next release 5.2.2-SNAPSHOT
juanfeSanahuja Sep 13, 2024
afde81c
Clean ls in test-xetabase workflow #TASK-6879
juanfeSanahuja Sep 16, 2024
1e042b9
Merge branch 'release-5.x.x' into TASK-6879
juanfeSanahuja Sep 16, 2024
c62cd60
Delete test pll request approve cicd #TASK-6879
juanfeSanahuja Sep 16, 2024
8cafa9f
SDLC: Prepare release 2.3.0 de Xetabase #TASK-6879
juanfeSanahuja Sep 16, 2024
18819ff
SDLC: Prepare release 2.3.0 de Xetabase #TASK-6879
juanfeSanahuja Sep 16, 2024
aa8dc12
SDLC: Prepare release 2.3.0 of Xetabase #TASK-6879
juanfeSanahuja Sep 16, 2024
316a876
Merge branch 'TASK-6879' of github.com:opencb/java-common-libs into T…
juanfeSanahuja Sep 16, 2024
bdc9fa4
cicd: Review cicd after brnch renames #TASK-6879
juanfeSanahuja Sep 17, 2024
c9a79d9
cicd: Review cicd after brnch renames #TASK-6879
juanfeSanahuja Sep 17, 2024
a6a8434
cicd: Refactor tmp test to cicd after brnch renames #TASK-6879
juanfeSanahuja Sep 17, 2024
a1efd8f
cicd: Refactor tmp test to cicd after brnch renames #TASK-6879
juanfeSanahuja Sep 17, 2024
9c1bb4a
Merge pull request #91 from opencb/TASK-6879
juanfeSanahuja Sep 19, 2024
38d0967
Prepare release in hotfix branch release-5.2.x
juanfeSanahuja Sep 26, 2024
92d6d21
Merge branch 'release-5.2.x' of github.com:opencb/java-common-libs in…
juanfeSanahuja Oct 7, 2024
2332d00
Prepare release 5.2.2
juanfeSanahuja Oct 7, 2024
f55f153
Prepare Port Patch 2.2.2 -> 2.3.0 #TASK-7038
juanfeSanahuja Oct 8, 2024
986063b
Merge branch 'release-5.x.x' into TASK-7038
juanfeSanahuja Oct 8, 2024
92a5865
CICD: deleted tmp yml file #TASK-6780
juanfeSanahuja Oct 8, 2024
d0f8720
pom update versions to fix unmerged changes
juanfeSanahuja Oct 10, 2024
da13696
pom update versions to fix unmerged changes
juanfeSanahuja Oct 10, 2024
32b5f40
pom update versions to fix unmerged changes
juanfeSanahuja Oct 10, 2024
923964e
Delete duplicated jackson-databind library
juanfeSanahuja Oct 10, 2024
55ac86e
test: fix JUnit test, #TASK-4974
jtarraga Oct 10, 2024
878949e
Merge pull request #95 from opencb/TASK-7038
juanfeSanahuja Oct 11, 2024
c6a60ff
Merge branch 'release-5.x.x' into TASK-4974
juanfeSanahuja Oct 11, 2024
9dfa2c5
Merge pull request #96 from opencb/TASK-4974
jtarraga Oct 11, 2024
507c5dc
Prepare release 5.3.0
juanfeSanahuja Oct 15, 2024
3acfb33
Prepare Port Patch 5.3.0 -> 6.0.0 Xetabase 2.3.0 -> 3.0.0 #TASK-7097
juanfeSanahuja Oct 17, 2024
e08dd88
Merge branch 'develop' into TASK-7097
juanfeSanahuja Oct 17, 2024
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: 0 additions & 1 deletion .github/workflows/scripts/get-xetabase-branch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ get_xetabase_branch() {

# Check if the branch name starts with "release-" and follows the patterns "release-a.x.x" or "release-a.b.x"
if [[ "$input_branch" =~ ^release-([0-9]+)\.x\.x$ ]] || [[ "$input_branch" =~ ^release-([0-9]+)\.([0-9]+)\.x$ ]]; then

# Extract the MAJOR part of the branch name
MAJOR=${BASH_REMATCH[1]}
# Calculate the XETABASE_MAJOR by subtracting 3 from MAJOR
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,15 +441,13 @@ public void testAggregate() {

queryResult = mongoDBCollection.aggregate(dbObjectList, new QueryOptions(QueryOptions.LIMIT, 1).append(QueryOptions.SKIP, 0));
assertEquals("There must be 1 results", 1, queryResult.getResults().size());
assertTrue(queryResult.getResults().contains(result.get(0)));
// As the order of result list change between executions, we must ensure the assertTrue doesn't depend on the order
assertTrue(result.contains(queryResult.getResults().get(0)));

queryResult = mongoDBCollection.aggregate(dbObjectList, new QueryOptions(QueryOptions.LIMIT, 1).append(QueryOptions.SKIP, 1));
assertEquals("There must be 1 results", 1, queryResult.getResults().size());

System.out.println("result = " + result);
System.out.println("queryResult.getResults() = " + queryResult.getResults());

assertTrue(queryResult.getResults().contains(result.get(1)));
// As the order of result list change between executions, we must ensure the assertTrue doesn't depend on the order
assertTrue(result.contains(queryResult.getResults().get(0)));
}

@Test
Expand Down
6 changes: 0 additions & 6 deletions commons-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -64,11 +63,6 @@
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down