Skip to content

Commit

Permalink
Merge pull request #1541 from SpineEventEngine/small-changes
Browse files Browse the repository at this point in the history
Introduce `BoundedContext.Probe`
  • Loading branch information
alexander-yevsyukov authored Nov 1, 2023
2 parents ce13988 + 43937de commit 3b74ac8
Show file tree
Hide file tree
Showing 100 changed files with 2,169 additions and 1,393 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-on-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

# See: https://github.com/marketplace/actions/junit-report-action
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3.7.6
uses: mikepenz/action-junit-report@v4.0.3
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/**/TEST-*.xml'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-on-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
java-version: 11
distribution: zulu
cache: gradle

# See: https://github.com/al-cheb/configure-pagefile-action
- name: Configure Pagefile
uses: al-cheb/configure-pagefile-action@v1.2
uses: al-cheb/configure-pagefile-action@v1.3

- name: Build project and run tests
shell: cmd
Expand All @@ -28,7 +28,7 @@ jobs:

# See: https://github.com/marketplace/actions/junit-report-action
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3.7.6
uses: mikepenz/action-junit-report@v4.0.3
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/**/TEST-*.xml'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ package io.spine.internal.dependency
*/
@Suppress("unused", "ConstPropertyName")
object Guava {
private const val version = "32.1.2-jre"
private const val version = "32.1.3-jre"
const val lib = "com.google.guava:guava:${version}"
const val testLib = "com.google.guava:guava-testlib:${version}"
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ package io.spine.internal.dependency
// https://github.com/FasterXML/jackson/wiki/Jackson-Releases
@Suppress("unused", "ConstPropertyName")
object Jackson {
const val version = "2.15.2"
private const val databindVersion = "2.15.2"
const val version = "2.15.3"
private const val databindVersion = "2.15.3"

private const val coreGroup = "com.fasterxml.jackson.core"
private const val dataformatGroup = "com.fasterxml.jackson.dataformat"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ package io.spine.internal.dependency
)
object Protobuf {
private const val group = "com.google.protobuf"
const val version = "3.24.1"
const val version = "3.24.4"
val libs = listOf(
"${group}:protobuf-java:${version}",
"${group}:protobuf-java-util:${version}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ object Spine {
*
* @see <a href="https://github.com/SpineEventEngine/base">spine-base</a>
*/
const val base = "2.0.0-SNAPSHOT.190"
const val base = "2.0.0-SNAPSHOT.191"

/**
* The version of [Spine.reflect].
Expand Down
222 changes: 105 additions & 117 deletions license-report.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ all modules and does not describe the project structure per-subproject.
-->
<groupId>io.spine</groupId>
<artifactId>spine-core-java</artifactId>
<version>2.0.0-SNAPSHOT.160</version>
<version>2.0.0-SNAPSHOT.170</version>

<inceptionYear>2015</inceptionYear>

Expand Down Expand Up @@ -62,7 +62,7 @@ all modules and does not describe the project structure per-subproject.
<dependency>
<groupId>io.spine</groupId>
<artifactId>spine-base</artifactId>
<version>2.0.0-SNAPSHOT.190</version>
<version>2.0.0-SNAPSHOT.191</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
Loading

0 comments on commit 3b74ac8

Please sign in to comment.