Skip to content

Commit

Permalink
Merge pull request #48 from phenixblue/v1.4.2-prep
Browse files Browse the repository at this point in the history
Prepare v1.4.2 release
  • Loading branch information
phenixblue authored Aug 1, 2021
2 parents 89241b3 + 7ffa178 commit 784db4c
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,17 @@ This is applicable for use cases such as the [Harbor projects image pull-through
### Acknowledgements

- Thanks to @fragolinux for the suggestion!

## 1.4.2

This release fixes a bug in the image swap logic related to a scenario where a library level image is used and the image tag contains `.`'s.

More info can be found in this issue: #46

### Enahncements

- Add fix for dotted tag on library image (#47)

### Acknowledgements

- Thanks to @adavenpo for bringing this to our attention
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

IMAGESWAP_VERSION := v1.4.1
IMAGESWAP_VERSION := v1.4.2
IMAGESWAP_INIT_VERSION := v0.0.2

REPO_ROOT := $(CURDIR)
Expand Down
2 changes: 1 addition & 1 deletion app/imageswap/imageswap.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def swap_image(container_spec):

def main():

app.logger.info("ImageSwap v1.4.1 Startup")
app.logger.info("ImageSwap v1.4.2 Startup")

app.run(
host="0.0.0.0", port=5000, debug=False, threaded=True, ssl_context=("./tls/cert.pem", "./tls/key.pem",),
Expand Down
2 changes: 1 addition & 1 deletion deploy/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ spec:
mountPath: /mwc
containers:
- name: imageswap
image: thewebroot/imageswap:v1.4.1
image: thewebroot/imageswap:v1.4.2
ports:
- containerPort: 5000
command: ["gunicorn", "imageswap:app", "--config=config.py"]
Expand Down
2 changes: 1 addition & 1 deletion deploy/manifests/imageswap-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
mountPath: /mwc
containers:
- name: imageswap
image: thewebroot/imageswap:v1.4.1
image: thewebroot/imageswap:v1.4.2
ports:
- containerPort: 5000
command: ["gunicorn", "imageswap:app", "--config=config.py"]
Expand Down

0 comments on commit 784db4c

Please sign in to comment.