My docker compose file has been working for years to keep Preview version up to date. But this morning, I noticed it downloaded and deployed 1.21.84.1 which I assume is the latest Release version instead of latest Preview version. It seems this behavior change aligns with checking in this PR: itzg/mc-bds-helper#1
# location of this compose file.
version: '3.4'
services:
bds:
image: itzg/minecraft-bedrock-server
restart: unless-stopped
environment:
VERSION: PREVIEW
EULA: "TRUE"
ports:
- 19132:19132/udp
volumes:
- ./data:/data
stdin_open: true
tty: true```