Skip to content

Releases: DotNetNomads/NextApi

Exception handling fixed for requests over HTTP with MessagePack serialization

06 Nov 04:53
5c5801f
Compare
Choose a tag to compare

This is a minor release. Contains fixes for server exception handling when requests are routed through HTTP with MessagePack serialization.

MR: #22

Updated packages:

Thanks to @lordofffarm for contributing to this release.

MessagePack messaging protocol for HTTP requests

19 Oct 07:42
64cbd4b
Compare
Choose a tag to compare

This release introduces the option to select the MessagePack message protocol type for HTTP connections.

For backward compatibility JSON messaging protocol enabled by default.

MR: #21

Updated packages:

Thanks to @lordofffarm for contributing to this release.

Changes in NextApiUserAccessor and changes in AuditLog Implementation

20 May 18:29
5615fb4
Compare
Choose a tag to compare

This release contains some fixes to improve NextApi integration with different types of authentication data providers.

More info is located here: #18, changes here #17.

Updated packages:

Ordering functionality

14 May 06:02
8ff4510
Compare
Choose a tag to compare

This is minor release with new functionality, but without any breaking changes :)

Extending the paged request, so that users can set the order of the returned data.

Usage example:

var paged = new PagedRequest
{
    Orders = new [] 
    {
        new Order( OrderOperators.OrderBy, "propertyName0"),
        new Order( OrderOperators.ThenByDescending, "propertyName1"),
    }
};

These changes available in the following versions of packages:

How to update?

Client-side: Update or install NextApi.Common package with version 1.0.2.
Server-side: Update NextApi.Server package to 1.0.2.

@uzarra, thank you for this functionality and notes about usage.
We'll add it in the documentation :)

v1.0.0

04 May 18:14
ba1669a
Compare
Choose a tag to compare

This is initial OpenSource release of NextApi web service framework.
Here you can get our NuGet packages: https://www.nuget.org/profiles/DotNetNomads