Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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 fireflyframework-webhooks-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.fireflyframework</groupId>
<artifactId>fireflyframework-webhooks</artifactId>
<version>26.04.01</version>
<version>26.05.06</version>
</parent>

<artifactId>fireflyframework-webhooks-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion fireflyframework-webhooks-interfaces/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.fireflyframework</groupId>
<artifactId>fireflyframework-webhooks</artifactId>
<version>26.04.01</version>
<version>26.05.06</version>
</parent>

<artifactId>fireflyframework-webhooks-interfaces</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion fireflyframework-webhooks-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.fireflyframework</groupId>
<artifactId>fireflyframework-webhooks</artifactId>
<version>26.04.01</version>
<version>26.05.06</version>
</parent>

<artifactId>fireflyframework-webhooks-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion fireflyframework-webhooks-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.fireflyframework</groupId>
<artifactId>fireflyframework-webhooks</artifactId>
<version>26.04.01</version>
<version>26.05.06</version>
</parent>

<artifactId>fireflyframework-webhooks-sdk</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion fireflyframework-webhooks-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.fireflyframework</groupId>
<artifactId>fireflyframework-webhooks</artifactId>
<version>26.04.01</version>
<version>26.05.06</version>
</parent>

<artifactId>fireflyframework-webhooks-web</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ server:

# Firefly Webhook Configuration
firefly:
observability:
health:
enabled: false
webhooks:
destination:
prefix: ""
Expand Down Expand Up @@ -153,3 +156,11 @@ logging:
reactor.netty: ERROR
pattern:
console: "%clr(%d{HH:mm:ss.SSS}){faint} %clr(%-5level) %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} : %msg%n"

# Disable strict health-group validation in tests + observability health probes
# (avoids multi-CacheAdapter ambiguity in cache 26.05.06 and missing db contributor
# in observability 26.05.06 readiness default; both fixed in 26.05.07).
management:
endpoint:
health:
validate-group-membership: false
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<parent>
<groupId>org.fireflyframework</groupId>
<artifactId>fireflyframework-parent</artifactId>
<version>26.04.01</version>
<version>26.05.06</version>
<relativePath/>
</parent>

<groupId>org.fireflyframework</groupId>
<artifactId>fireflyframework-webhooks</artifactId>
<version>26.04.01</version>
<version>26.05.06</version>
<packaging>pom</packaging>

<name>Firefly Framework - Webhooks Library</name>
Expand Down
Loading