Skip to content

Commit 45f51f4

Browse files
authored
Merge pull request #108 from phenixblue/v2.3.3-release
Prepare v2.3.3 release
2 parents 19e956c + 1b13bcb commit 45f51f4

File tree

6 files changed

+32
-12
lines changed

6 files changed

+32
-12
lines changed

CHANGELOG.md

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,29 @@ This release includes a fix for `CVE-2020-36242` in the Python Cryptography pack
116116

117117
### Fixes
118118

119-
Bump cryptography from 3.2 to 3.3.2 in /app/imageswap-init (Dependabot)
119+
Bump [cryptography](https://github.com/pyca/cryptography) from 3.2 to 3.3.2 in /app/imageswap-init (Dependabot)
120120

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)
121+
- [Release notes](https://github.com/pyca/cryptography/releases)
122+
- [Changelog](https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst)
123+
- [Commits](https://github.com/pyca/cryptography/compare/3.2...3.3.2)
125124

125+
## v2.3.2
126+
127+
Bumps [jinja2](https://github.com/pallets/jinja) from 2.11.2 to 2.11.3. in /app/magtape (ref #99)
128+
129+
- PyPI: https://pypi.org/project/Jinja2/2.11.3/
130+
- Changes: https://jinja.palletsprojects.com/en/2.11.x/changelog/#version-2-11-3
131+
132+
## v2.3.3
133+
134+
### Enhancements
135+
136+
- Add multi-arch image builds for release workflow, amd64, arm64, and ppc64le to start (#107 authored by @phenixblue)
137+
- Fix typos in Makefile (#105 authored by @Freakin)
138+
- Bump urllib3 to 1.26.4 (#101 authored by dependabot)
139+
140+
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.3 to 1.26.4 in /app/magtape-init
141+
142+
- [Release notes](https://github.com/urllib3/urllib3/releases)
143+
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
144+
- [Commits](https://github.com/urllib3/urllib3/commit/a8913042b676c510e94fc2b097f6b514ae11a537)

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
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.2
19+
20+
MAGTAPE_VERSION := v2.3.3
2021
OPA_VERSION := 0.25.2
2122
KUBE_MGMT_VERSION := 0.11
2223

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.2/deploy/install.yaml
70+
$ kubectl apply -f https://raw.githubusercontent.com/tmobile/magtape/v2.3.3/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.2")
44+
metrics.info("app_info", "Application info", version="v2.3.3")
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.2
340+
image: tmobile/magtape-init:v2.3.3
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.2
364+
image: tmobile/magtape:v2.3.3
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.2
24+
image: tmobile/magtape-init:v2.3.3
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.2
48+
image: tmobile/magtape:v2.3.3
4949
ports:
5050
- containerPort: 5000
5151
command: ["gunicorn", "magtape:app", "--config=config.py"]

0 commit comments

Comments
 (0)