diff --git a/.github/workflows/dogfood-deploy.yml b/.github/workflows/dogfood-deploy.yml index 320c44b26b..a7988e63ca 100644 --- a/.github/workflows/dogfood-deploy.yml +++ b/.github/workflows/dogfood-deploy.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: DOCKER_IMAGE: - description: 'The full name of the docker image to be deployed. (e.g. fleetdm/fleet:v4.28.0)' + description: 'The full name of the docker image to be deployed. (e.g. fleetdm/fleet:v4.28.1)' required: true # This allows a subsequently queued workflow run to interrupt previous runs diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e8b623da7..1bf7269f05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Fleet 4.28.1 (March 14, 2023) + +* Fixed a bug that prevented starting the Fleet server with MDM features if Apple Business Manager (ABM) was not configured. + ## Fleet 4.28.0 (Feb 24, 2023) * Added logic to ingest and decrypt FileVault recovery keys on macOS if Fleet's MDM is enabled. diff --git a/changes/10104-policy-tab-click-bug b/changes/10104-policy-tab-click-bug deleted file mode 100644 index 65140b21ad..0000000000 --- a/changes/10104-policy-tab-click-bug +++ /dev/null @@ -1 +0,0 @@ -* Fix bug to keep team when clicking on policy tab twice \ No newline at end of file diff --git a/changes/10299-mdm-no-abm b/changes/10299-mdm-no-abm deleted file mode 100644 index eb2bdbc5aa..0000000000 --- a/changes/10299-mdm-no-abm +++ /dev/null @@ -1 +0,0 @@ -* Fixed a bug that prevented starting the Fleet server with MDM features if Apple Business Manager (ABM) was not configured. diff --git a/changes/issue-10126-mdm-info b/changes/issue-10126-mdm-info deleted file mode 100644 index aabe515141..0000000000 --- a/changes/issue-10126-mdm-info +++ /dev/null @@ -1 +0,0 @@ -- Added MDM solution name to `host.mdm`in API responses diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index d0bfa23745..dbd4869537 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -8,4 +8,4 @@ version: v5.0.0 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: v4.28.0 +appVersion: v4.28.1 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 52182f09a0..9ebf34a1f0 100644 --- a/charts/fleet/values.yaml +++ b/charts/fleet/values.yaml @@ -2,7 +2,7 @@ # All settings related to how Fleet is deployed in Kubernetes hostName: fleet.localhost replicas: 3 # The number of Fleet instances to deploy -imageTag: v4.28.0 # Version of Fleet to deploy +imageTag: v4.28.1 # Version of Fleet to deploy podAnnotations: {} # Additional annotations to add to the Fleet pod serviceAccountAnnotations: {} # Additional annotations to add to the Fleet service account resources: diff --git a/infrastructure/dogfood/terraform/aws/variables.tf b/infrastructure/dogfood/terraform/aws/variables.tf index 74352293a4..eb8e4c99bb 100644 --- a/infrastructure/dogfood/terraform/aws/variables.tf +++ b/infrastructure/dogfood/terraform/aws/variables.tf @@ -56,7 +56,7 @@ variable "database_name" { variable "fleet_image" { description = "the name of the container image to run" - default = "fleetdm/fleet:v4.28.0" + default = "fleetdm/fleet:v4.28.1" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index 05c83bdaaa..d6418db385 100644 --- a/infrastructure/dogfood/terraform/gcp/variables.tf +++ b/infrastructure/dogfood/terraform/gcp/variables.tf @@ -68,5 +68,5 @@ variable "redis_mem" { } variable "image" { - default = "fleet:v4.28.0" + default = "fleet:v4.28.1" } diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index 23d16db529..24f79eda33 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.28.0", + "version": "v4.28.1", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"