Skip to content

Commit 9ce3d11

Browse files
authored
Merge pull request #96 from phenixblue/bump-cryptography
Prepare for v2.3.1 Release
2 parents 09235ff + 08ab50d commit 9ce3d11

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,17 @@ Adopting version 2 of this action allows us to start consuming Docker `buildx`.
109109
**RBAC rule changes**
110110

111111
Due to the change in how user-defined Slack Incoming Webhooks are applied, there's a need for the `magtape-sa` service account to read Secrets across all namespaces. This includes get, list, and watch actions.
112+
113+
## v2.3.1
114+
115+
This release includes a fix for `CVE-2020-36242` in the Python Cryptography package.
116+
117+
### Fixes
118+
119+
Bump cryptography from 3.2 to 3.3.2 in /app/imageswap-init (Dependabot)
120+
121+
Bumps [cryptography](https://github.com/pyca/cryptography) from 3.2 to 3.3.2.
122+
- [Release notes](https://github.com/pyca/cryptography/releases)
123+
- [Changelog](https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst)
124+
- [Commits](https://github.com/pyca/cryptography/compare/3.2...3.3.2)
125+

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# its contributors may be used to endorse or promote products derived from this
1717
# software without specific prior written permission.
1818

19-
MAGTAPE_VERSION := v2.3.0
19+
MAGTAPE_VERSION := v2.3.1
2020
OPA_VERSION := 0.25.2
2121
KUBE_MGMT_VERSION := 0.11
2222

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ You can use the following command to install MagTape and the example policies fr
6767
**NOTE:** The `master` branch of this repository is considered a working branch and may not always be in a functioning state. It's best to select a specific tag for a stable version of MagTape
6868

6969
```
70-
$ kubectl apply -f https://raw.githubusercontent.com/tmobile/magtape/v2.3.0/deploy/install.yaml
70+
$ kubectl apply -f https://raw.githubusercontent.com/tmobile/magtape/v2.3.1/deploy/install.yaml
7171
```
7272

7373
#### This will do the following

app/magtape/magtape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
metrics = PrometheusMetrics(app, defaults_prefix="magtape")
4242

4343
# Static information as metric
44-
metrics.info("app_info", "Application info", version="v2.3.0")
44+
metrics.info("app_info", "Application info", version="v2.3.1")
4545

4646
# Set logging config
4747
log = logging.getLogger("werkzeug")

deploy/install.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ spec:
337337
runAsGroup: 1900
338338
initContainers:
339339
- name: magtape-init
340-
image: tmobile/magtape-init:v2.3.0
340+
image: tmobile/magtape-init:v2.3.1
341341
command: [/app/magtape-init.py]
342342
imagePullPolicy: Always
343343
securityContext:
@@ -361,7 +361,7 @@ spec:
361361
mountPath: /vwc
362362
containers:
363363
- name: magtape
364-
image: tmobile/magtape:v2.3.0
364+
image: tmobile/magtape:v2.3.1
365365
ports:
366366
- containerPort: 5000
367367
command: ["gunicorn", "magtape:app", "--config=config.py"]

deploy/manifests/magtape-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
runAsGroup: 1900
2222
initContainers:
2323
- name: magtape-init
24-
image: tmobile/magtape-init:v2.3.0
24+
image: tmobile/magtape-init:v2.3.1
2525
command: [/app/magtape-init.py]
2626
imagePullPolicy: Always
2727
securityContext:
@@ -45,7 +45,7 @@ spec:
4545
mountPath: /vwc
4646
containers:
4747
- name: magtape
48-
image: tmobile/magtape:v2.3.0
48+
image: tmobile/magtape:v2.3.1
4949
ports:
5050
- containerPort: 5000
5151
command: ["gunicorn", "magtape:app", "--config=config.py"]

0 commit comments

Comments
 (0)