All Versions
22
Latest Version
Avg Release Cycle
53 days
Latest Release
1092 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v2.5.0 Changes
March 30, 2019 -
v2.4.2 Changes
January 08, 2019 -
v2.4.1 Changes
December 19, 2018🐛 Bug Fixed:
- 🛠 Fixed MongoDB version isolation feature bug. (#253)
-
v2.4.0 Changes
December 08, 2018🔋 Features :
- 👌 Supported version options. (#220)
- ⬆️ Upgrade nuget package to .net core 2.2.
💥 Breaking Changes
👍 In order to support the "version isolation" feature, we introduced a new version field in version 2.4.0 to isolate different versions of the message, so this requires some adjustments to the database table structure. You can use the following SQL to add a version field to your database CAP related table.
MySQL
ALTER TABLE `cap.published` ADD Version VARCHAR(20) NULL;ALTER TABLE `cap.received` ADD Version VARCHAR(20) NULL;
SQL Server
ALTER TABLE Cap.[Published] ADD Version VARCHAR(20) NULL;ALTER TABLE Cap.[Received] ADD Version VARCHAR(20) NULL;
PostgreSQL
ALTER TABLE cap.published ADD "Version" VARCHAR(20) NULL;ALTER TABLE cap.received ADD "Version" VARCHAR(20) NULL;
MongoDb
db.CapPublishedMessage.update({},{"$set" : {"Version" : "1"}}); db.CapReceivedMessage.update({},{"$set" : {"Version" : "1"}});
🐛 Bug Fixed:
-
v2.3.1 Changes
October 29, 2018🔋 Features:
- ➕ Add Source Link Support
- ⬆️ Upgrade dependent NuGet packages.
🐛 Bug Fixed:
- 🛠 Fixed dashboard messages requeue error. ( #205 )
- 👷 Adjustment snowflake workerId to random id.
- 🛠 Fixed flush unclaer data bug.
-
v2.3.0 Changes
August 30, 2018👀 In this version, we made some breaking changes for the publisher API, you can see this blog to understand the story behind.
If you have any migration question, please comment in issue #190.
💥 Breaking Changes:
- ✂ Removed
app.UseCap()
from Startup.cs - Message table primary key data type has been modified to
Bigint
and non auto-Increment. (#180) - 🆕 New publisher Api. (#188)
🔋 Features:
🐛 Bug Fixed:
- ✂ Removed
-
v2.2.5 Changes
July 19, 2018🔋 Features:
- 🐎 Performance improvement
🐛 Bug Fixed:
- 🛠 Fixed message enqueue exception.
- 🛠 Fixed Retry processor bugs.
- 🛠 Fixed Kafka producer exception log without logging when publish message.
- 🛠 Fixed Incorrect local IP address judgment of IPv6. (#140)
- 🛠 Fixed DateTime localization format conversion error to sql. (#139)
- 🛠 Fixed dashboard message page re-requeue and re-executed operate bug. #158
- 🛠 Fixed SendAsync or ExecuteAsync recursion retries bug. (#160)
- 🛠 Fixed configuration options of FailedThresholdCallback could not be invoke when the value less then three. (#161)
-
v2.2.4 Changes
June 05, 2018🚀 Because version 2.2.3 was not released to nuget, so released 2.2.4.
-
v2.2.3 Changes
June 05, 2018 -
v0.9.0
April 15, 2019