Skip to content

Commit 8dc1849

Browse files
committed
Automatic docs and changelog generation
1 parent 5ad3fbd commit 8dc1849

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [2.2.1](https://github.com/reactive-commons/reactive-commons-java/tree/2.2.1) (2024-04-12)
4+
5+
**Merged pull requests:**
6+
7+
- docs\(bean\): Add bean sample to generate configuration programatically [\#98](https://github.com/reactive-commons/reactive-commons-java/pull/98)
8+
39
## [2.1.0](https://github.com/reactive-commons/reactive-commons-java/tree/2.1.0) (2024-04-03)
410

511
**Merged pull requests:**
@@ -154,6 +160,10 @@
154160

155161
## [1.0.0-beta2](https://github.com/reactive-commons/reactive-commons-java/tree/1.0.0-beta2) (2020-12-05)
156162

163+
**Merged pull requests:**
164+
165+
- Feature unit tests [\#47](https://github.com/reactive-commons/reactive-commons-java/pull/47)
166+
157167
## [1.0.0-beta1](https://github.com/reactive-commons/reactive-commons-java/tree/1.0.0-beta1) (2020-10-28)
158168

159169
**Merged pull requests:**
@@ -193,7 +203,6 @@
193203

194204
**Merged pull requests:**
195205

196-
- Feature unit tests [\#47](https://github.com/reactive-commons/reactive-commons-java/pull/47)
197206
- updates contiperf version, fixes performance test [\#43](https://github.com/reactive-commons/reactive-commons-java/pull/43)
198207
- Feature/listeners matching [\#42](https://github.com/reactive-commons/reactive-commons-java/pull/42)
199208

docs/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<h1>Reactive Commons Reference Guide</h1>
1616
<div class="details">
1717
<span id="author" class="author">Daniel Bustamante Ospina</span><br>
18-
<span id="revnumber">version 2.1.0</span>
18+
<span id="revnumber">version 2.1.1</span>
1919
</div>
2020
<div id="toc" class="toc2">
2121
<div id="toctitle">Table of Contents</div>
@@ -107,7 +107,7 @@ <h3 id="_reactive_commons">1.1. Reactive Commons</h3>
107107
<p>Even though the main purpose is to provide such abstractions in a mostly generic way such abstractions would be of little use without a concrete implementation so we provide some implementations in a best effors maner that aim to be easy to change, personalize and extend.</p>
108108
</div>
109109
<div class="paragraph">
110-
<p>The first approach to this work was to release a very simple abstractions and a corresponding implementation over asyncronous message driven communication between microservices build on top of project-reactor and spring boot.</p>
110+
<p>The first approach to this work was to release a very simple abstractions and a corresponding implementation over asynchronous message driven communication between microservices build on top of project-reactor and spring boot.</p>
111111
</div>
112112
</div>
113113
<div class="sect2">
@@ -133,12 +133,12 @@ <h3 id="_project_reactor">1.2. Project Reactor</h3>
133133
<div class="sect2">
134134
<h3 id="_reactive_api_for_event_mechanism">1.3. Reactive API for Event Mechanism</h3>
135135
<div class="paragraph">
136-
<p>Reactive Commons is a reactive API for asyncronous message driven communication based on Reactor.
136+
<p>Reactive Commons is a reactive API for asynchronous message driven communication based on Reactor.
137137
Reactive Commons API enables messages to be published over a event bus like RabbitMQ or SNS/SQS and consumed using functional APIs with non-blocking back-pressure and low overheads.
138138
It enables applications using Reactor to use RabbitMQ or SNS/SQS as a message bus, integrating it with other systems to provide an end-to-end reactive system.</p>
139139
</div>
140140
<div class="paragraph">
141-
<p>When we talk about asyncronous message driven communication, we can use several sematic ways to use the term "message". So, we can talk about Events, Commands and Queries.</p>
141+
<p>When we talk about asynchronous message driven communication, we can use several sematic ways to use the term "message". So, we can talk about Events, Commands and Queries.</p>
142142
</div>
143143
<div class="sect3">
144144
<h4 id="_events_pubsub">1.3.1. Events - Pub/Sub</h4>
@@ -188,7 +188,7 @@ <h4 id="_start_rabbitmq">2.1.1. Start RabbitMQ</h4>
188188
<div class="sect3">
189189
<h4 id="_sample_spring_boot_application">2.1.2. Sample Spring Boot Application</h4>
190190
<div class="paragraph">
191-
<p>The Spring Boot sample publishes and cosumes messages with the <code>DomainEventBus</code>. This application illustrates how to configure Reactive Commons using RabbitMQ in a Spring Boot environment.</p>
191+
<p>The Spring Boot sample publishes and consumes messages with the <code>DomainEventBus</code>. This application illustrates how to configure Reactive Commons using RabbitMQ in a Spring Boot environment.</p>
192192
</div>
193193
<div class="paragraph">
194194
<p>To build your own application using the Reactive Commons API,
@@ -908,8 +908,8 @@ <h5 id="_handlerregistry_patterns">HandlerRegistry - patterns</h5>
908908
</div>
909909
<div id="footer">
910910
<div id="footer-text">
911-
Version 2.1.0<br>
912-
Last updated 2024-04-03 15:29:52 UTC
911+
Version 2.1.1<br>
912+
Last updated 2024-04-12 13:46:43 UTC
913913
</div>
914914
</div>
915915
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.css">

0 commit comments

Comments
 (0)