Releases: VahidFarahmandian/Jinget
Releases · VahidFarahmandian/Jinget
v3.0.0
What is included:
Jinget.Core
- Exclude specific type from Swagger Schemas list using
SwaggerExcludeTypeFilter
andSwaggerExclude
attribute.
Jinget.Logger
- Log your request/response or custom messages to Elasticsearch
- Log your request/response or custom messages to files
v2.3.2
What is included:
Jinget.Core
- Check if string contains only numeric characters using
StringUtility.IsDigitOnly
(View Unit Tests) - Check if given string is a valid Persian date using
DateTimeUtility.IsValidPersianDate
(View Unit Tests)
v2.3.1: Merge pull request #64 from VahidFarahmandian/servicehandler_timeout
What is included:
Jinget.Core
- Compress/Decompress files using
ZipUtility
(View Unit Tests)
Jinget.Handlers.ExternalServiceHandler
- Bug fixed: Set timeout for
HttpClientFactory
while usingJingetServiceHandler
.
v2.2.0
What is included:
Jinget.Core
- Upload files using
JingetServiceHandler
(View Unit Tests) - Mapping file extensions to mime types. (View Unit Tests)
v2.1.1: Merge pull request #58 from VahidFarahmandian/orderby-ext-methods
What is included:
Jinget.Core
- Decode JWT token. (View Unit Tests)
- Validate JWT token. (View Unit Tests)
- Validate JSON string. (View Unit Tests)
- Use
IgnorePropertiesResolver
to ignore some properties while serializing an object to JSON string. (View Unit Tests) - Use
NonPublicSetterResolver
to serialize an object containing properties with non-public setter. (View Unit Tests) - Parse database connection string. (View Unit Tests)
v2.0.5
What is included:
Jinget.Core
- Create Order By clause using C# Expressions and Jinget will transform it to T-SQL Order By clause
- Create pagination clause using C# Expressions and Jinget will transform it to T-SQL Pagination clause
v2.0.4
What is included:
Jinget.Core
- Add
ToCamelCase
method toStringExtensions.cs
- Properties can be excluded from swagger using
SwaggerExclude
filter - Create random string using given length and character set using
StringUtility.GenerateRandomString
v2.0.3
What is included:
Jinget.handlers.ExternalServiceHandlers
- You can now create
HttpClientFactory
by passingbaseUrl
toServiceHandler
- Some bugs fixed
v2.0.1
What is included:
Jinget.Core:
-
SOAPUtility
which helps to serialize an object to soap envelop or deserialize a soap envelops to an object
Jinget.handlers.ExternalServiceHandlers
-
JingetServiceHandler
as default service handler
v2.0.0
XmlUtilities added to Jinget.Core
Jinget.Handlers.ExternalServiceHandler added