Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tillsteinbach committed Feb 26, 2024
1 parent 56aac3f commit cd86075
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-docker-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5.0.0
uses: docker/metadata-action@v5.4.0
with:
images: |
tillsteinbach/weconnect-mqtt
Expand All @@ -44,7 +44,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5.0.0
uses: docker/build-push-action@v5.1.0
with:
context: .
file: docker/Dockerfile-edge
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Version from input
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5.0.0
uses: docker/metadata-action@v5.4.0
with:
images: |
tillsteinbach/weconnect-mqtt
Expand All @@ -94,7 +94,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5.0.0
uses: docker/build-push-action@v5.1.0
with:
context: docker
push: ${{ github.event_name != 'pull_request' }}
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
- No unreleased changes so far

## [0.48.4] - 2024-02-26
### Added
- Adds several new attributes and status

### Changed
- Updated API to 0.60.0

## [0.48.3] - 2023-11-15
### Fixed
- Fixes a bug in active ventialtion and auxiliary heating controls
Expand Down Expand Up @@ -854,7 +861,8 @@ Send empty message when topic is disabled
## [0.1.0] - 2021-05-27
Initial release

[unreleased]: https://github.com/tillsteinbach/WeConnect-mqtt/compare/v0.48.3...HEAD
[unreleased]: https://github.com/tillsteinbach/WeConnect-mqtt/compare/v0.48.4...HEAD
[0.48.4]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.48.4
[0.48.3]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.48.3
[0.48.2]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.48.2
[0.48.1]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.48.1
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
weconnect[Images]~=0.59.5
weconnect[Images]~=0.60.0
paho-mqtt~=1.6.1
python-dateutil~=2.8.2
6 changes: 3 additions & 3 deletions setup_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytest-runner~=6.0.0
pytest-runner~=6.0.1
mccabe~=0.7.0
flake8~=6.1.0
pylint~=3.0.1
bandit~=1.7.5
pylint~=3.0.3
bandit~=1.7.6

0 comments on commit cd86075

Please sign in to comment.