Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CRAYSAT-1913: Remove the ability to read VCS password from a file #276

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might clarify that this applies to sat bootprep. Does it apply anywhere else?


## [3.32.6] - 2024-10-08

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.lock.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions requirements.lock.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading