diff --git a/.changes/unreleased/Bugfix-20240115-222806.yaml b/.changes/unreleased/Bugfix-20240115-222806.yaml deleted file mode 100644 index c8fba80..0000000 --- a/.changes/unreleased/Bugfix-20240115-222806.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Bugfix -body: Prevent nil pointer dereference when reading K8sEvents -time: 2024-01-15T22:28:06.713115-05:00 diff --git a/.changes/unreleased/Bugfix-20240115-223028.yaml b/.changes/unreleased/Bugfix-20240115-223028.yaml deleted file mode 100644 index 574a833..0000000 --- a/.changes/unreleased/Bugfix-20240115-223028.yaml +++ /dev/null @@ -1,4 +0,0 @@ -kind: Bugfix -body: The mainloop now supports a nil waitgroup so that the controller can be used - continuously instead of for just one run -time: 2024-01-15T22:30:28.859207-05:00 diff --git a/.changes/unreleased/Bugfix-20240117-135549.yaml b/.changes/unreleased/Bugfix-20240117-135549.yaml deleted file mode 100644 index e075e48..0000000 --- a/.changes/unreleased/Bugfix-20240117-135549.yaml +++ /dev/null @@ -1,4 +0,0 @@ -kind: Bugfix -body: Fix bug where events could sometimes be missed when starting K8sController to - run once -time: 2024-01-17T13:55:49.226371-05:00 diff --git a/.changes/unreleased/Feature-20240117-135512.yaml b/.changes/unreleased/Feature-20240117-135512.yaml deleted file mode 100644 index 96ad40c..0000000 --- a/.changes/unreleased/Feature-20240117-135512.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: Add ability to pass a Context to the K8sController which will stop event processing -time: 2024-01-17T13:55:12.86853-05:00 diff --git a/.changes/unreleased/Feature-20240122-201906.yaml b/.changes/unreleased/Feature-20240122-201906.yaml deleted file mode 100644 index fb11920..0000000 --- a/.changes/unreleased/Feature-20240122-201906.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: Bump actions/cache from 3 to 4 -time: 2024-01-22T20:19:06.335585419Z diff --git a/.changes/unreleased/Feature-20240122-205808.yaml b/.changes/unreleased/Feature-20240122-205808.yaml deleted file mode 100644 index e1017af..0000000 --- a/.changes/unreleased/Feature-20240122-205808.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: Bump k8s.io/apimachinery from 0.29.0 to 0.29.1 -time: 2024-01-22T20:58:08.811977204Z diff --git a/.changes/unreleased/Feature-20240122-205821.yaml b/.changes/unreleased/Feature-20240122-205821.yaml deleted file mode 100644 index d2a36a8..0000000 --- a/.changes/unreleased/Feature-20240122-205821.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Feature -body: Bump k8s.io/klog/v2 from 2.120.0 to 2.120.1 -time: 2024-01-22T20:58:21.40799353Z diff --git a/.changes/v2024.1.25.md b/.changes/v2024.1.25.md new file mode 100644 index 0000000..1dddb40 --- /dev/null +++ b/.changes/v2024.1.25.md @@ -0,0 +1,10 @@ +## [January 25, 2024]((https://github.com/OpsLevel/opslevel-k8s-controller/compare/v2024.1.13...v2024.1.25)) +### Feature +* Add ability to pass a Context to the K8sController which will stop event processing +* Bump actions/cache from 3 to 4 +* Bump k8s.io/apimachinery from 0.29.0 to 0.29.1 +* Bump k8s.io/klog/v2 from 2.120.0 to 2.120.1 +### Bugfix +* Prevent nil pointer dereference when reading K8sEvents +* The mainloop now supports a nil waitgroup so that the controller can be used continuously instead of for just one run +* Fix bug where events could sometimes be missed when starting K8sController to run once diff --git a/CHANGELOG.md b/CHANGELOG.md index a01c057..67f4286 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and is generated by [Changie](https://github.com/miniscruff/changie). +## [January 25, 2024]((https://github.com/OpsLevel/opslevel-k8s-controller/compare/v2024.1.13...v2024.1.25)) +### Feature +* Add ability to pass a Context to the K8sController which will stop event processing +* Bump actions/cache from 3 to 4 +* Bump k8s.io/apimachinery from 0.29.0 to 0.29.1 +* Bump k8s.io/klog/v2 from 2.120.0 to 2.120.1 +### Bugfix +* Prevent nil pointer dereference when reading K8sEvents +* The mainloop now supports a nil waitgroup so that the controller can be used continuously instead of for just one run +* Fix bug where events could sometimes be missed when starting K8sController to run once + ## [January 13, 2024]((https://github.com/OpsLevel/opslevel-k8s-controller/compare/v2023.12.22...v2024.1.13)) ### Feature * Bump opslevel-jq-parser to 2024 release diff --git a/version.go b/version.go index e0b3ba1..1f0a811 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package opslevel_k8s_controller -const ReleaseVersion = "v2024.1.13" +const ReleaseVersion = "v2024.1.25"