Skip to content

Commit

Permalink
Fix for incompatible ssl versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sjthespian committed Jan 1, 2021
1 parent 01b8b44 commit 0baaab3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4] - 2020-12-31
### Changed
- Upgraded to base image 8.0.6 to fix incompability between libssl/libcrypto and openssl-dev versions. Also force install of all three packages to get latest verion.

## [0.3] - 2020-10-27
### Added
- Added missing python modules for latest Z-Wave Network Viewer [\#1](https://github.com/sjthespian/addon-zwave-network-viewer/issues/1)
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ RUN apk add --no-cache \
python3 \
py3-pip \
musl \
libssl1.1 libcrypto1.1 \
&& apk add --no-cache --virtual .build-deps \
build-base \
python3-dev \
Expand Down
10 changes: 5 additions & 5 deletions build.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"squash": false,
"build_from": {
"aarch64": "hassioaddons/base-aarch64:8.0.1",
"amd64": "hassioaddons/base-amd64:8.0.5",
"armhf": "hassioaddons/base-armhf:8.0.5",
"armv7": "hassioaddons/base-armv7:8.0.5",
"i386": "hassioaddons/base-i386:8.0.5"
"aarch64": "hassioaddons/base-aarch64:8.0.6",
"amd64": "hassioaddons/base-amd64:8.0.6",
"armhf": "hassioaddons/base-armhf:8.0.6",
"armv7": "hassioaddons/base-armv7:8.0.6",
"i386": "hassioaddons/base-i386:8.0.6"
},
"args": {}
}
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
"stage": "experimental",
"startup": "services",
"url": "https://github.com/sjthespian/addon-zwave-network-viewer",
"version": "0.3",
"version": "0.4",
"webui": "[PROTO:ssl]://[HOST]:[PORT:6123]"
}

0 comments on commit 0baaab3

Please sign in to comment.