Releases: tintoy/dotnet-kube-client
Releases · tintoy/dotnet-kube-client
v3.0.2
v3.0.1
v3.0.0: Merge pull request #169 from tintoy/develop
KubeClient v3.0.0
KubeClient v3 introduces breaking changes, relative to v2.x:
- KubeClient no longer supports
netstandard2.0
; it requiresnet7.x
(ornetstandard2.1
). K8sWebSocket
(a custom implementation that was needed until .NET Core fully supported WebSockets) has been replaced by the (BCL-provided) ClientWebSocket.- HTTPlease, the underlying HTTP client library used by KubeClient, has been internalised (rolled into KubeClient). It is largely source-code-compatible, except that namespaces have changed from
HTTPlease.*
toKubeClient.Http.*
. - Apart from these changes, existing consumer code that compiles against KubeClient v2.x assemblies should largely continue to compile, without modification, against KubeClient v3 assemblies.
For a full list of changes, see here.
v2.5.12
v2.5.10
Changes:
- 1da6dee Merge branch 'develop'
- 7d81a15 Modernise NuGet package properties
- f93f3d0 Merge branch 'develop'
- 7e1227b Merge branch 'develop' of https://github.com/tintoy/dotnet-kube-client into develop
- d32b76c Configure README for all packages.
This list of changes was auto generated.
v2.5.9: Merge pull request #161 from tintoy/develop
Changes:
- a43ba22 Merge pull request #161 from tintoy/develop
- b952ba7 Enable publishing to NuGet
- 0896dec Add missing PFX file for tests [ #160 ]
- 2dc0371 Remove reference to old BouncyCastle package [ #160 ]
- c4ce8dc Merge pull request #160 from Daniel-King-GGL/feature/official-bc
- e7db848 Additional test for CryptoHelper before migrating to official BouncyCastle package. [ #160 ]
- 8095e30 Initial test coverage for BouncyCastle usage scenarios [ #160 ]
- 2b25854 Switch the BC dependency over to the official package
- e0a3629 Merge pull request #159 from tintoy/feature/watch-retry
- 11d9250 Improved logic for ObserveLinesWithRetry [ #157 ]