From f8849dcafe5bf6abe54e182641fd6bb9015e4d33 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Jun 2024 08:14:55 +0200 Subject: [PATCH 1/3] Bump actions/checkout from 4.1.6 to 4.1.7 (#3948) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/docker.yml | 2 +- .github/workflows/lint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index e591ee74f..39999b057 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -25,7 +25,7 @@ jobs: repo: cloudcannon/pagefind - name: Checkout source code - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v4.1.7 - name: Set up QEMU uses: docker/setup-qemu-action@v3 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 24006869e..d57b3bf43 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,7 +23,7 @@ jobs: uses: jaxxstorm/action-install-gh-release@v1.12.0 with: repo: cloudcannon/pagefind - - uses: actions/checkout@v4.1.6 + - uses: actions/checkout@v4.1.7 - name: Set up Python 3.8 uses: actions/setup-python@v5 with: From 07264aada3176344025f7cfd590eddc6d8574d2c Mon Sep 17 00:00:00 2001 From: Sergiy Andrusenko Date: Fri, 14 Jun 2024 12:15:55 +0300 Subject: [PATCH 2/3] Update pipsolar.rst (#3954) please fix the typo in the property name --- components/pipsolar.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/pipsolar.rst b/components/pipsolar.rst index 5597ec1da..89b63d2f6 100644 --- a/components/pipsolar.rst +++ b/components/pipsolar.rst @@ -191,7 +191,7 @@ All sensors are normal binary sensors... so all binary sensor variables are work - **warning_battery_too_low_to_charge** (*Optional*): warning battery too low to charge - **fault_dc_dc_over_current** (*Optional*): fault dc dc over current - **fault_code** (*Optional*): fault code -- **warnung_low_pv_energy** (*Optional*): warnung low pv energy +- **warning_low_pv_energy** (*Optional*): warning low pv energy - **warning_high_ac_input_during_bus_soft_start** (*Optional*): warning high ac input during bus soft start - **warning_battery_equalization** (*Optional*): warning battery equalization From 8414dc7a63d0445c2193b132aaf740ea4ccdb43f Mon Sep 17 00:00:00 2001 From: Varun Madiath Date: Sat, 15 Jun 2024 00:35:38 -0400 Subject: [PATCH 3/3] Update documentation for dashboard command (#3923) Document previously undocumented options `--address` and `--socket` --- guides/cli.rst | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/guides/cli.rst b/guides/cli.rst index 56dfedb42..68e600eb2 100644 --- a/guides/cli.rst +++ b/guides/cli.rst @@ -197,10 +197,19 @@ The ``esphome dashboard `` command starts the ESPHome dashboard server f through a graphical user interface. This command accepts a configuration directory instead of a single configuration file. +.. option:: --address ADDRESS + + Manually set the address to bind to (defaults to 0.0.0.0) + .. option:: --port PORT Manually set the HTTP port to open connections on (defaults to 6052) +.. option:: --socket SOCKET + + Manually set the unix socket to bind to. If specified along with ``--address`` or ``--port`` the values + for those parameters will be ignored. Cannot be used along with ``--systemd-socket``. + .. option:: --username USERNAME The optional username to require for authentication. @@ -211,7 +220,8 @@ single configuration file. .. option:: --open-ui - If set, opens the dashboard UI in a browser once the server is up and running. + If set, opens the dashboard UI in a browser once the server is up and running. Does not work when using + ``--socket``. ``logs`` Command ---------------------