v1.1.0
Version 1.1.0
Changelog since v1.0.5
Feature requests
-
Ability to get information from a SQL Server database (#10)
-
Fine tune application configuration
# appsettings.json
{
"AllowedHosts": "*",
+ "Application": {
+ "IsSwaggerEnabled": false,
+ "IsHttpsEnforced": true
+ },
}
Breaking changes
entities.yml
file
entities:
- name:
queries:
findAll:
- table:
+ serviceNowRestApiTable:
fields:
- name:
- serviceNowFieldName:
+ mapFrom:
Program.cs
file
var app = builder.Build();
- app.AddDefaultMiddlewares();
+ app.AddDefaultMiddlewares(builder.Configuration);
app.Run();
Update
dotnet add package RabbidsIncubator.ServiceNowClient.Application --version 1.1.0
dotnet add package RabbidsIncubator.ServiceNowClient.Application.Generators --version 1.1.0