External Changelog

Release: v1.0.2

Sprint: Angular sprint 5

Sprint Board: View Sprint Report

Breaking Changes

Jira References

No Jira references found.

Documentation

Chores

Docker Images

ai-agent

Image: hub.friendly-tech.com/ui/ai-agent:1.0.2_0.0.18

SHA256: sha256:1efb24f4a9f826b49ee802a1bd9abf714740c5d474fac8c2ba69ebaf0720344d

Pull from Registry

docker pull hub.friendly-tech.com/ui/ai-agent:1.0.2_0.0.18

Transfer Image to Offline Server

On a machine with Harbor access, pull the image for the target server’s architecture and export it:

docker login hub.friendly-tech.com
docker pull --platform linux/amd64 \
  hub.friendly-tech.com/ui/ai-agent:1.0.2_0.0.18
docker save hub.friendly-tech.com/ui/ai-agent:1.0.2_0.0.18 \
  -o ai-agent-1.0.2_0.0.18.tar
gzip ai-agent-1.0.2_0.0.18.tar

An explicit --platform matching the offline target server’s architecture is required. The image in Harbor is multi-arch (linux/amd64, linux/arm64); without --platform, docker pull selects the host architecture, which may not match the target. For example, on an Apple Silicon (arm64) Mac without --platform, the resulting archive will be arm64 and will fail with a platform does not match warning on amd64 servers. The example uses linux/amd64; replace it with the platform of your offline target server (linux/arm64, etc.).

Transfer ai-agent-1.0.2_0.0.18.tar.gz to the offline server (e.g., via scp or removable media), then load it:

gzip -dc ai-agent-1.0.2_0.0.18.tar.gz | docker load