All Versions
22
Latest Version
Avg Release Cycle
53 days
Latest Release
1092 days ago

Changelog History
Page 2

  • v2.5.0 Changes

    March 30, 2019

    🔋 Features:

    • 👌 Support Azure Service Bus. #307
    • 👌 Support In-Memory Storage. #296
    • ⬆️ Upgrade Dapper to version 1.60.1
    • 👷 Support read environment variables CAP_WORKERID and CAP_DATACENTERID as the snowflake algorithm workerid and datacenterid.

    🐛 Bug Fixed:

    • Modify MySQL cap table encoding to utf8mb4. #305
    • 🚚 Move CapSubscribeAttribute class to DotNetCore.CAP project.
    • 🛠 Fixed multiple instance snowflake algorithm generating primary key conflicts. #294
  • v2.4.2 Changes

    January 08, 2019

    🔋 Features:

    Startup the CAP with the .NET Core 2.1 BackgroundService. #265
    👌 Improved message delivery performance. #261

    🐛 Bug Fixed:

    🛠 Fixed PostgreSql version isolation feature bug. #256
    🛠 Fixed SQL Server sql bug for dashboard search. #266

  • 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:

    • 🛠 Fixed different groups of the same topic name in one instance will cause routing bug. (#235)
    • 🛠 Fixed message presistence bug. (#240)
    • 🛠 Fixed RabbitMQ topic name contains numbers will cause exception bug. (#181)
  • 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:

    • 👍 MongoDb supported. (#143)
    • Automatic commit transaction. (#191)

    🐛 Bug Fixed:

    • When the transaction fails, the message is still sent. (#118)
    • Multiple events in one transaction. (#171)
  • 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

    🔋 Features:

    • 👌 Improved log output.
    • ⬆️ Upgrade nuget packages.
    • 👌 Support pattern matching for consumer. (#132)

    🐛 Bug Fixed:

    • 🛠 Fixed exception thrown when terminate the program with Ctrl+C. (#130)
  • v0.9.0

    April 15, 2019