Skip to content

v1.1.0

Compare
Choose a tag to compare
@devpro devpro released this 04 Mar 15:26
· 4 commits to main since this release
be6297a

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