Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
DOCKER_IMAGE: ortussolutions/commandbox
BUILD_IMAGE_TAGS: ${{ matrix.BUILD_IMAGE_TAGS }}
COMMANDBOX_VERSION: 6.2.1
IMAGE_VERSION: 3.14.8
IMAGE_VERSION: 3.14.1
run: |
# Split the comma-separated tags
IFS=',' read -ra TAG_ARRAY <<< "$BUILD_IMAGE_TAGS"
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
BUILD_IMAGE_TAGS: ${{ matrix.BUILD_IMAGE_TAGS }}
BASE_IMAGE: ${{ matrix.BASE_IMAGE }}
COMMANDBOX_VERSION: 6.2.1
IMAGE_VERSION: 3.14.0
IMAGE_VERSION: 3.14.1
run: |
# Split the comma-separated tags
IFS=',' read -ra TAG_ARRAY <<< "$BUILD_IMAGE_TAGS"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scans.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
include:
- BUILD_IMAGE_DOCKERFILE: builds/base/Base.Dockerfile
- BUILD_IMAGE_DOCKERFILE: builds/base/Dockerfile
BUILD_IMAGE_TAGS: CommandBox
# - BUILD_IMAGE_DOCKERFILE: builds/debian/Lucee5.Dockerfile
# BUILD_IMAGE_TAG: lucee5.3.10.97
Expand Down
29 changes: 10 additions & 19 deletions build/util/debian/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,18 @@ apt-get update
# Upgrade all packages
apt-get -y upgrade

# TODO: Remove this manual update when the next Ubuntu version is released and test if CVEs are resolved
# Manually update specific packages with known CVE vulnerabilities to latest available versions
apt-get install -y \
linux-libc-dev \
libkrb5support0 \
libkrb5-3 \
libk5crypto3 \
libgssapi-krb5-2

apt-get autoremove -y

apt-get install --assume-yes \
apt-utils \
ca-certificates \
curl \
jq \
bzip2 \
unzip \
gnupg \
libreadline-dev \
fontconfig
apt-get install -y \
apt-utils \
ca-certificates \
curl \
jq \
bzip2 \
unzip \
gnupg \
libreadline-dev \
fontconfig

# add a simple script that can auto-detect the appropriate JAVA_HOME value
# based on whether the JDK or only the JRE is installed
Expand Down
10 changes: 8 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

----
## [Unreleased]
## [6.2.1/3.14.1] - 2025-12-17

### Changed

- Updated version of `commandbox-boxlang` module

## [6.2.1/3.14.0] - 2025-12-10

### Changed

Expand All @@ -21,7 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Adobe 2021 Support to be removed in next version due to 11/25/2025 EOL/EOS notice


## [6.2.1/3.13.7]
## [6.2.1/3.13.7] - 2025-11-15

### Changed

Expand Down
Loading