What's Changed
New Contributors
[1.3.69] — 2026-06-27
Fixed
- EKS —
DescribeClusterreturns a host-reachable endpoint on every path —DescribeClusternow advertises the host-published port,https://{MINISTACK_HOST}:{port}(MINISTACK_HOSTdefaults tolocalhost), uniformly on cluster create, OIDC-config restart, and persistence restore. Previously the failure-fallback and restore paths could leave a stale value, soaws eks update-kubeconfig+ kubectl from the host got an unreachable endpoint. The k3s container publishes 6443 to that host port (ports={"6443/tcp": port}), so the endpoint works from the host and from containers that can route toMINISTACK_HOST, keeping theACTIVE-cluster shape consistent foraws eks update-kubeconfigand Terraform. Contributed by @b-rajesh. - SQS —
SendMessagerejects message bodies with XML 1.0 forbidden characters — AWS SQS only accepts characters valid in XML 1.0 and returnsInvalidMessageContentsfor anything else; MiniStack silently accepted them, so a payload that fails against real AWS passed locally.SendMessage(and everySendMessageBatchentry) now rejects bodies containing C0 control characters other than tab/LF/CR, the surrogate block#xD800–#xDFFF, and#xFFFE/#xFFFFwithInvalidMessageContents. Contributed by @yamachu.