Skip to content

Releases: buehler/dotnet-operator-sdk

v3.1.0-prerelease.1

22 Feb 09:59
01358bf
Compare
Choose a tag to compare
v3.1.0-prerelease.1 Pre-release
Pre-release

3.1.0-prerelease.1 (2021-02-22)

Features

v3.0.1-prerelease.2

21 Feb 15:58
cd169e3
Compare
Choose a tag to compare
v3.0.1-prerelease.2 Pre-release
Pre-release

3.0.1-prerelease.2 (2021-02-21)

Bug Fixes

  • Expand code generator support for enumerable and collection types in JSON Schema (#153) (cd169e3)

v3.0.1-prerelease.1

09 Feb 21:36
437a52b
Compare
Choose a tag to compare
v3.0.1-prerelease.1 Pre-release
Pre-release

3.0.1-prerelease.1 (2021-02-09)

Bug Fixes

v3.0.0

08 Feb 10:03
04b1a68
Compare
Choose a tag to compare

3.0.0 (2021-02-08)

Bug Fixes

  • deps: update dependency namotion.reflection to v1.0.16 (#145) (8d38373)
  • deps: update dependency namotion.reflection to v1.0.18 (#147) (04b1a68)
  • Correctly translate the kubernetes "special" fields in crds. (e5573c4)

Code Refactoring

  • controller: Refactoring to scoped controllers. (17d636f), closes #138
  • finalizer: Use scoped finalizer. (307cc55)
  • function naming: Use best practice names. (4e675b8)
  • testing: Adjust test helpers according to breaking changes. (163c18b)
  • validators: Use scoped validators and register by type. (a63b511)

Features

  • crd generation: Add additional printer columns. (#118) (1fd76c3), closes #60
  • documentation: Add documentation for public elements of the libs (#119) (f97a3ef)
  • events: Add event support for resources and controllers. (#132) (3537772), closes #5
  • logging: Remove the structured logger in favor of JsonLogger. (8a6bf9d)
  • webhooks: Add validation webhooks and cert support. (#136) (6633845), closes #3
  • add KubeOpsBasePath to msbuild properties (#117) (532b878)

BREAKING CHANGES

  • testing: This removes the mocked event queue.
    To test controllers and finalizers, use the provided
    methods of the KubernetesOperatorFactory to enqueue
    events and finalizers.
  • validators: Validators do not need to be registered via
    AddValidationWebhook method. All validators are infered/searched
    by type when they implement the IValidationWebhook<> interface.
    When the validation webhook is called, a scope is created.
  • function naming: This essentially renames all async functions.
    According to best practices, async functions should have the
    suffix Async.
  • finalizer: Refactoring of the finalizer logic. Same as with
    the controller, the finalizer are now instantiated via dependency injection
    in a scope. As soon as a finalization request happens, the finalizer
    manager will search for the adequate finalizer and call it.
    The new way of registering finalizer is via the IFinalizerManager
    to attach a finalizer to an entity.
  • controller: Refactoring of the whole controller instantation.
    This removes the ResourceControllerBase class. Please migrate to
    the new interface IResourceController. The basic idea is to provide
    scoped access like asp.net api controller. ALL non abstract classes
    that implement that interface are registered as controllers on startup.
    Whenever an event for a resource happens, a dependency injection
    scope is created and the controller is called with the specific action.
    There is no need for a base class anymore.
  • logging: This removes the structured console logger.
    Dotnet 5.0 provides a "simple logger" (default) as well as a
    "json logger".

v3.0.0-prerelease.4

04 Feb 21:36
04b1a68
Compare
Choose a tag to compare
v3.0.0-prerelease.4 Pre-release
Pre-release

3.0.0-prerelease.4 (2021-02-04)

Bug Fixes

  • deps: update dependency namotion.reflection to v1.0.18 (#147) (04b1a68)

v3.0.0-prerelease.3

29 Jan 21:45
8d38373
Compare
Choose a tag to compare
v3.0.0-prerelease.3 Pre-release
Pre-release

3.0.0-prerelease.3 (2021-01-29)

Bug Fixes

  • deps: update dependency namotion.reflection to v1.0.16 (#145) (8d38373)

v3.0.0-prerelease.2

29 Jan 14:16
Compare
Choose a tag to compare
v3.0.0-prerelease.2 Pre-release
Pre-release

3.0.0-prerelease.2 (2021-01-29)

Code Refactoring

  • controller: Refactoring to scoped controllers. (17d636f), closes #138
  • finalizer: Use scoped finalizer. (307cc55)
  • function naming: Use best practice names. (4e675b8)
  • testing: Adjust test helpers according to breaking changes. (163c18b)
  • validators: Use scoped validators and register by type. (a63b511)

BREAKING CHANGES

  • testing: This removes the mocked event queue.
    To test controllers and finalizers, use the provided
    methods of the KubernetesOperatorFactory to enqueue
    events and finalizers.
  • validators: Validators do not need to be registered via
    AddValidationWebhook method. All validators are infered/searched
    by type when they implement the IValidationWebhook<> interface.
    When the validation webhook is called, a scope is created.
  • function naming: This essentially renames all async functions.
    According to best practices, async functions should have the
    suffix Async.
  • finalizer: Refactoring of the finalizer logic. Same as with
    the controller, the finalizer are now instantiated via dependency injection
    in a scope. As soon as a finalization request happens, the finalizer
    manager will search for the adequate finalizer and call it.
    The new way of registering finalizer is via the IFinalizerManager
    to attach a finalizer to an entity.
  • controller: Refactoring of the whole controller instantation.
    This removes the ResourceControllerBase class. Please migrate to
    the new interface IResourceController. The basic idea is to provide
    scoped access like asp.net api controller. ALL non abstract classes
    that implement that interface are registered as controllers on startup.
    Whenever an event for a resource happens, a dependency injection
    scope is created and the controller is called with the specific action.
    There is no need for a base class anymore.

v3.0.0-prerelease.1

24 Jan 18:01
Compare
Choose a tag to compare
v3.0.0-prerelease.1 Pre-release
Pre-release

3.0.0-prerelease.1 (2021-01-24)

Bug Fixes

  • Correctly translate the kubernetes "special" fields in crds. (e5573c4)

Features

  • crd generation: Add additional printer columns. (#118) (1fd76c3), closes #60
  • documentation: Add documentation for public elements of the libs (#119) (f97a3ef)
  • events: Add event support for resources and controllers. (#132) (3537772), closes #5
  • logging: Remove the structured logger in favor of JsonLogger. (8a6bf9d)
  • webhooks: Add validation webhooks and cert support. (#136) (6633845), closes #3
  • add KubeOpsBasePath to msbuild properties (#117) (532b878)

BREAKING CHANGES

  • logging: This removes the structured console logger.
    Dotnet 5.0 provides a "simple logger" (default) as well as a
    "json logger".

v2.5.0

28 Dec 15:19
Compare
Choose a tag to compare

2.5.0 (2020-12-28)

Bug Fixes

Features

  • Add extensions for specifying additional assemblies to search for resources/entities. (#108) (89ced44)
  • add preload cache mechanism via settings (#114) (6438064), closes #58
  • Add setting WatcherHttpTimeout (#109) (1276010)

v2.4.0

11 Dec 08:10
Compare
Choose a tag to compare

2.4.0 (2020-12-11)

Features

  • upgrade to C#9.0 (f2181b8)
  • upgrade to net5.0 (285c92d)
  • use DotnetKubernetesClient instead of own implementation (46e69be)