Skip to content

Commit

Permalink
RELEASE: 2.8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
yyluchkiv committed Jun 11, 2024
1 parent 51bce0f commit ac87263
Show file tree
Hide file tree
Showing 18 changed files with 24 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ on:
workflow_dispatch:

env:
MAVEN_DEPLOYMENT_ENABLED: 'false'
MAVEN_DEPLOYMENT_ENABLED: 'true'
DOCKER_REGISTRY: ghcr.io
DOCKER_MONGODB_SERVER_IMAGE: tech1-io/tech1-framework-b2b-mongodb-server
DOCKER_POSTGRES_SERVER_IMAGE: tech1-io/tech1-framework-b2b-postgres-server
DOCKER_VERSION: '2.8.6-SNAPSHOT'
DOCKER_PUSH_ENABLED: 'false'
DOCKER_VERSION: '2.8.6'
DOCKER_PUSH_ENABLED: 'true'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
### Changelog [v2.8.6]
TBD
Modification: AsyncConfigs, EventsConfigs as***()
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<packaging>pom</packaging>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>

<name>${project.artifactId}</name>
<description>Tech1 Framework</description>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-b2b-base-security-jwt-websockets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-b2b-base-security-jwt-websockets</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-b2b-base-security-jwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-b2b-base-security-jwt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-b2b-mongodb-security-jwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-b2b-mongodb-security-jwt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-b2b-mongodb-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-b2b-mongodb-server</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-b2b-postgres-security-jwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-b2b-postgres-security-jwt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-b2b-postgres-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-b2b-postgres-server</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-configurations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-configurations</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-domain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-domain</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import java.math.BigDecimal;

import static io.tech1.framework.domain.constants.BigDecimalConstants.ONE_HUNDRED;
import static io.tech1.framework.domain.tuples.TuplePercentage.progressTuplePercentage;
import static io.tech1.framework.domain.utilities.random.RandomUtility.randomString;

// Lombok (property-based)
Expand Down Expand Up @@ -38,10 +39,10 @@ public boolean isParentPropertiesNode() {
}

public TuplePercentage asThreadsCorePoolTuplePercentage() {
return new TuplePercentage(this.threadsCorePoolPercentage, ONE_HUNDRED);
return progressTuplePercentage(this.threadsCorePoolPercentage, ONE_HUNDRED);
}

public TuplePercentage asThreadsMaxPoolTuplePercentage() {
return new TuplePercentage(this.threadsMaxPoolPercentage, ONE_HUNDRED);
return progressTuplePercentage(this.threadsMaxPoolPercentage, ONE_HUNDRED);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import java.math.BigDecimal;

import static io.tech1.framework.domain.constants.BigDecimalConstants.ONE_HUNDRED;
import static io.tech1.framework.domain.tuples.TuplePercentage.progressTuplePercentage;
import static io.tech1.framework.domain.utilities.random.RandomUtility.randomString;

// Lombok (property-based)
Expand Down Expand Up @@ -38,10 +39,10 @@ public boolean isParentPropertiesNode() {
}

public TuplePercentage asThreadsCorePoolTuplePercentage() {
return new TuplePercentage(this.threadsCorePoolPercentage, ONE_HUNDRED);
return progressTuplePercentage(this.threadsCorePoolPercentage, ONE_HUNDRED);
}

public TuplePercentage asThreadsMaxPoolTuplePercentage() {
return new TuplePercentage(this.threadsMaxPoolPercentage, ONE_HUNDRED);
return progressTuplePercentage(this.threadsMaxPoolPercentage, ONE_HUNDRED);
}
}
2 changes: 1 addition & 1 deletion tech1-framework-emails/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-emails</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-feign-clients/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-feign-clients</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-hardware/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-hardware</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-incidents/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-incidents</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tech1-framework-utilities/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.tech1.framework</groupId>
<artifactId>tech1-framework</artifactId>
<version>2.8.6-SNAPSHOT</version>
<version>2.8.6</version>
</parent>

<artifactId>tech1-framework-utilities</artifactId>
Expand Down

0 comments on commit ac87263

Please sign in to comment.