diff --git a/CHANGELOG.md b/CHANGELOG.md index 13e4a043..d372a874 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,11 @@ All notable changes to this project will be documented in this file. 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). +## [3.32.7] - 2024-10-15 + +### Fixed +- Remove the ability to read VCS password from a file which is no longer necessary. + ## [3.32.6] - 2024-10-08 ### Changed diff --git a/Dockerfile b/Dockerfile index 687e72e7..15f086ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,7 +55,7 @@ RUN apk update && \ python3 -m venv $VIRTUAL_ENV COPY requirements.lock.txt requirements.txt -ARG PIP_EXTRA_INDEX_URL="https://artifactory.algol60.net/artifactory/csm-python-modules/simple" +ARG PIP_EXTRA_INDEX_URL="https://artifactory.algol60.net/artifactory/csm-python-modules/simple https://artifactory.algol60.net/artifactory/csm-python-modules/unstable" RUN --mount=type=secret,id=netrc,target=/root/.netrc \ pip3 install --no-cache-dir -U pip && \ pip3 install -r requirements.txt diff --git a/requirements-dev.lock.txt b/requirements-dev.lock.txt index d19db647..fcfef49a 100644 --- a/requirements-dev.lock.txt +++ b/requirements-dev.lock.txt @@ -11,10 +11,10 @@ cffi==1.15.0 charset-normalizer==2.0.12 click==8.0.4 coverage==6.3.2 -cray-product-catalog==2.3.1 +cray-product-catalog==2.4.1 croniter==0.3.37 cryptography==43.0.1 -csm-api-client==2.2.2 +csm-api-client==2.2.3 dataclasses-json==0.5.6 docutils==0.17.1 google-auth==2.6.0 diff --git a/requirements.lock.txt b/requirements.lock.txt index ca2e0c22..3fffbfa2 100644 --- a/requirements.lock.txt +++ b/requirements.lock.txt @@ -8,10 +8,10 @@ certifi==2024.7.4 cffi==1.15.0 charset-normalizer==2.0.12 click==8.0.4 -cray-product-catalog==2.3.1 +cray-product-catalog==2.4.1 croniter==0.3.37 cryptography==43.0.1 -csm-api-client==2.2.2 +csm-api-client==2.2.3 dataclasses-json==0.5.6 google-auth==2.6.0 htmlmin==0.1.12 diff --git a/requirements.txt b/requirements.txt index d19ccc8a..093f22e2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,8 +21,8 @@ argcomplete boto3 botocore -cray-product-catalog >= 2.3.1 -csm-api-client >= 2.2.2, <3.0 +cray-product-catalog >= 2.4.1 +csm-api-client >= 2.2.3, <3.0 croniter >= 0.3, < 1.0 inflect >= 0.2.5, < 3.0 Jinja2 >= 3.0, < 4.0