Changelog
All notable changes to Dangl.Data.Shared are documented here.
v2.2.0:
- Added a new target for .NET 6, dropped support for .NET Core 3.1
- Removed netstandard2.0andnet5.0targets for Dangl.Data.Shared.AspNetCore, and addednet7.0
- The UseLocalizedSpaStaticFileswill now also try to resolve relative paths for requests, meaning e.g. assets placed relative to an SPA subfolder will also be correctly removed now, transparent to the client requesting the file. For example, a client that requests/assets/picture.jpgmight be served the file internally from/dist/en/assets/picture.jpg
v2.1.1
- Added CdnNoCacheAttribute : ActionFilterAttribute, an attribute which sets theCache-Controlheader tono-store, no-cache, no-transform
v2.1.0:
- The LocalizedSpaStaticFileExtensionsnow make sure that the default entry file for the SPA is never cached and returnsCache-Control: no-storewhen delivered
v2.0.0:
- Dropped support for netstandard1.3. The lowest supported framework is nownetstandard2.0
v1.9.0:
- Added a new generic overload ApiError<TError>
v1.8.0:
- Added a new generic overload RepositoryResult<TResult, TError>
v1.7.0:
- The CamelCaseDefaultValuesContractResolverwas changed to now preserve the casing for keys in dictionaries
- Drop tests for netcoreapp2.2and add tests fornetcoreapp2.1
v1.6.0:
- Added the EmptyEnumDeserializerand theGuidStringDeserializer. Both these classes are used to deserialize either Guids or Enums from null values or empty strings and will return the default values for them, e.g.Guid.Empty. They are automatically activated when usingConfigureDefaultJsonSerializerSettings
v1.5.0:
- Drop netcoreapp3.0target and addnetcoreapp3.1target
v1.4.0:
- Add netstandard2.1andnetcoreapp3.0targets
v1.3.1:
- Add CamelCaseDefaultValuesContractResolver
v1.3.0:
- The generated assemblies now have a strong name. This is a breaking change of the binary API and will require recompilation on all systems that consume this package. The strong name of the generated assembly allows compatibility with other, signed tools. Please note that this does not increase security or provide tamper-proof binaries, as the key is available in the source code per Microsoft guidelines
v1.2.0:
- Move JsonExtensions from Dangl.Data.Shared.AspNetCore to Dangl.Data.Shared
v1.1.1:
- Add EmptyFormFileValidatorwith extensions to support the generation of an invalidModelStateif a parameter of typeIFormFile(or derived) is passed with aLengthof zero bytes
v1.1.0:
- The Dangl.Data.Shared.AspNetCorepackage was updated to ASP.NET Core 2.2
- Add LocalizedSpaStaticFileExtensionsto help serving localized Single Page Applications (SPAs)
- Add IUserLanguageServicewith default implementation
v1.0.10:
- Add CompressedRequestMiddlewareto support clients sending compressed request bodies
v1.0.9:
- Add HttpHeadRequestMiddlewareto support HttpHEADrequests to all actions supporting originally only HttpGET
v1.0.8:
- Add IClaimBasedAuthorizationRequirementand supporting functionality
v1.0.7:
- Add JsonOptionsExtensions
v1.0.6:
- Rename FileResulttoFileResultContainer
v1.0.5:
- Add FileResult
v1.0.3:
- Add logging to ModelStateValidationFilterif invalid requests get rejected
v1.0.2:
- Add RequiredFormFileValidationFilterto support checking for[Required]parameters of typeIFormFileon controller actions