Skip to content

Commit

Permalink
v1.6.0b1 api changes
Browse files Browse the repository at this point in the history
  • Loading branch information
GravySeal committed Oct 25, 2024
1 parent 6c43ef2 commit 00624a3
Show file tree
Hide file tree
Showing 11 changed files with 2,869 additions and 2,533 deletions.
23 changes: 21 additions & 2 deletions bacnetinterface_dev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
<!-- https://developers.home-assistant.io/docs/add-ons/presentation#keeping-a-changelog -->

# 1.6.0b1
25/10/2024

## Added
- New apiv2 points!
- _/cov_ for creating, reading and deleting CoV subscriptions.
- Improved reading and writing functionality.

## Changed
- Subscriptions are now monitored through context, through apiv2 current subscription status can be read.
- Subscription tasks are now eager, hopefully improving performance.

## Dependencies
- ⬆️ Bumped psutil to version v6.1.0.
- ⬆️ Bumped python-multipart to version v0.0.12.
- ⬆️ Bumped websockets to version v13.1.
- ⬆️ Bumped uvicorn to version v0.32.0.


# 1.5.1
07/09/2024

Expand All @@ -12,7 +31,7 @@
- `resub_on_iam` and `reread_on_iam` options under `devices_setup` in the add-on configuration. [#57](https://github.com/Bepacom-Raalte/bepacom-HA-Addons/issues/57)

## Dependencies
- ⬆️ Bumped base-python image to version v14.0.1.
- ⬆️ Bumped psutil to version v14.0.1.


# 1.5.0
Expand All @@ -22,7 +41,7 @@
- Reading resolution property now. Integration will use it once it's updated as well. [#46](https://github.com/Bepacom-Raalte/bepacom-HA-Addons/issues/46)
- Added devices_setup configuration option to allow the user to configure behaviour. See Documentation for usage. [#43](https://github.com/Bepacom-Raalte/bepacom-HA-Addons/discussions/43)
- Updated DOCS.md
- Added units for entity to BACnet translation. [#47](https://github.com/Bepacom-Raalte/bepacom-HA-Addons/issues/47)\
- Added units for entity to BACnet translation. [#47](https://github.com/Bepacom-Raalte/bepacom-HA-Addons/issues/47)
- Added array index to apiv2 writes.

## Fixed
Expand Down
8 changes: 4 additions & 4 deletions bacnetinterface_dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ RUN \
'pydantic<=1.10.17' \
'fastapi<=0.108.0' \
'jinja2<=3.1.4' \
'uvicorn<=0.30.1' \
'websockets<=12.0' \
'python-multipart<=0.0.9' \
'uvicorn<=0.32.0' \
'websockets<=13.1' \
'python-multipart<=0.0.12' \
'requests<=2.32.3 ' \
'backoff<=2.2.1' \
'psutil<=6.0.0'
'psutil<=6.1.0'

WORKDIR /

Expand Down
2 changes: 1 addition & 1 deletion bacnetinterface_dev/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-config
name: Bepacom BACnet/IP Interface Development Version
version: "1.5.1"
version: "1.6.0b1"
slug: bacnetinterface_dev
description: Bepacom BACnet/IP interface for the Bepacom EcoPanel. Allows BACnet/IP devices to be available to Home Assistant through an API
url: "https://github.com/Bepacom-Raalte/bepacom-HA-Addons/tree/main/bacnetinterface"
Expand Down
5 changes: 5 additions & 0 deletions bacnetinterface_dev/rootfs/etc/nginx/templates/ingress.gtpl
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ server {
proxy_pass http://127.0.0.1:7813;
}

location /css/styles.css {
add_header Content-Type text/css;
proxy_pass http://127.0.0.1:7813/css/styles.css;
}

location /ws {
proxy_pass http://127.0.0.1:7813/ws;
proxy_http_version 1.1;
Expand Down
Loading

0 comments on commit 00624a3

Please sign in to comment.