diff --git a/Doxygen b/Doxygen index 0a818d213..426af4724 100644 --- a/Doxygen +++ b/Doxygen @@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.15.0b1 +PROJECT_NUMBER = 1.15.0b2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/Makefile b/Makefile index 7b554cf53..73696d825 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ ESPHOME_PATH = ../esphome -ESPHOME_REF = v1.15.0b1 +ESPHOME_REF = v1.15.0b2 .PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png diff --git a/_static/version b/_static/version index f7ab1b05b..92c7e271e 100644 --- a/_static/version +++ b/_static/version @@ -1 +1 @@ -1.15.0b1 \ No newline at end of file +1.15.0b2 \ No newline at end of file diff --git a/changelog/v1.15.0.rst b/changelog/v1.15.0.rst index 07f0ec850..9f6b8dcc7 100644 --- a/changelog/v1.15.0.rst +++ b/changelog/v1.15.0.rst @@ -23,7 +23,11 @@ Changelog - Version 1.15.0 - Release Date TBD Slow PWM, components/output/slow_pwm, pwm.png ESP32 DAC, components/output/esp32_dac, dac.svg AC Dimmer, components/output/ac_dimmer, ac_dimmer.svg - Tuya Fan, components/fan/tuya, fan.svg + Tuya Fan, components/fan/tuya, tuya.png + Tuya Binary Sensor, components/binary_sensor/tuya, tuya.png + Tuya Sensor, components/sensor/tuya, tuya.png + Tuya Switch, components/switch/tuya, tuya.png + Tuya Climate, components/climate/tuya, tuya.png MAX7219 Dot Matrix, components/display/max7219digit, max7219digit.png TM1637, components/display/tm1637, tm1637.jpg ST7789V, components/display/st7789v, st7789v.jpg @@ -93,6 +97,19 @@ New Integrations - esphome: Add E1.31 support :esphomepr:`950` by :ghuser:`ayufan` (new-integration) - esphome: add support for SN74HC595 shift register :esphomepr:`1083` by :ghuser:`phjr` (new-integration) +Beta Fixes +---------- + +- esphome: Mitigate CVE-2020-12638 WiFi WPA Downgrade :esphomepr:`1207` +- esphome: ESP8266 change recommended framework version to 2.7.2 :esphomepr:`1208` +- esphome: Fix base config should override packages config :esphomepr:`1209` +- docs: ESP8266 change recommended framework version to 2.7.2 :docspr:`714` +- esphome: Fix AS3935 sensor configuration issues :esphomepr:`1210` by :ghuser:`trylika` +- esphome: Fix prometheus has wrong setup priority :esphomepr:`1211` +- esphome: Downgrade FastLED to 3.3.2 :esphomepr:`1212` +- docs: Fix old screenshots :docspr:`716` by :ghuser:`glmnet` +- docs: Add tuya platforms to changelog table :docspr:`715` by :ghuser:`jesserockz` + TODO: Merge with below New Features diff --git a/components/esphome.rst b/components/esphome.rst index 4e82b8ec2..272c286c7 100644 --- a/components/esphome.rst +++ b/components/esphome.rst @@ -97,10 +97,13 @@ option you can tell ESPHome which Arduino framework to use for compiling. For the ESP8266, you currently can manually pin the Arduino version to these values (see the full list of Arduino frameworks `here `__): +* `2.7.2 `__ (default) +* `2.7.1 `__ +* `2.7.0 `__ * `2.6.3 `__ * `2.6.2 `__ * `2.6.1 `__ -* `2.5.2 `__ (default) +* `2.5.2 `__ * `2.5.1 `__ * `2.5.0 `__ * `2.4.2 `__ diff --git a/conf.py b/conf.py index 8b4f4dec2..b750a1bbc 100644 --- a/conf.py +++ b/conf.py @@ -72,7 +72,7 @@ author = 'Otto Winter' # The short X.Y version. version = '1.15' # The full version, including alpha/beta/rc tags. -release = '1.15.0b1' +release = '1.15.0b2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/guides/getting_started_hassio.rst b/guides/getting_started_hassio.rst index 525a811a3..ea4016d9a 100644 --- a/guides/getting_started_hassio.rst +++ b/guides/getting_started_hassio.rst @@ -49,7 +49,7 @@ Dashboard Interface Assuming you created your first configuration file with the wizard, let's take a quick tour of the ESPHome dashboard interface. -.. figure:: images/hassio_interface.png +.. figure:: images/dashboard.png :align: center :width: 95.0% diff --git a/guides/images/dashboard.png b/guides/images/dashboard.png index 317ba8e5d..73f2f37b5 100644 Binary files a/guides/images/dashboard.png and b/guides/images/dashboard.png differ diff --git a/guides/images/hassio_interface.png b/guides/images/hassio_interface.png deleted file mode 100644 index 317ba8e5d..000000000 Binary files a/guides/images/hassio_interface.png and /dev/null differ diff --git a/guides/images/hassio_start.png b/guides/images/hassio_start.png index b50a0e6a0..ffe60050b 100644 Binary files a/guides/images/hassio_start.png and b/guides/images/hassio_start.png differ