mirror of
https://github.com/esphome/esphome.git
synced 2025-10-12 06:43:48 +01:00
Merge remote-tracking branch 'upstream/dev' into integration
This commit is contained in:
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
@@ -23,7 +23,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
debug-only: ${{ github.ref != 'refs/heads/dev' }} # Dry-run when not run on dev branch
|
debug-only: ${{ github.ref != 'refs/heads/dev' }} # Dry-run when not run on dev branch
|
||||||
remove-stale-when-updated: true
|
remove-stale-when-updated: true
|
||||||
operations-per-run: 150
|
operations-per-run: 400
|
||||||
|
|
||||||
# The 90 day stale policy for PRs
|
# The 90 day stale policy for PRs
|
||||||
# - PRs
|
# - PRs
|
||||||
|
@@ -329,7 +329,8 @@ ARDUINO_FRAMEWORK_VERSION_LOOKUP = {
|
|||||||
"dev": cv.Version(3, 3, 1),
|
"dev": cv.Version(3, 3, 1),
|
||||||
}
|
}
|
||||||
ARDUINO_PLATFORM_VERSION_LOOKUP = {
|
ARDUINO_PLATFORM_VERSION_LOOKUP = {
|
||||||
cv.Version(3, 3, 1): cv.Version(55, 3, 31),
|
cv.Version(3, 3, 2): cv.Version(55, 3, 31, "1"),
|
||||||
|
cv.Version(3, 3, 1): cv.Version(55, 3, 31, "1"),
|
||||||
cv.Version(3, 3, 0): cv.Version(55, 3, 30, "2"),
|
cv.Version(3, 3, 0): cv.Version(55, 3, 30, "2"),
|
||||||
cv.Version(3, 2, 1): cv.Version(54, 3, 21, "2"),
|
cv.Version(3, 2, 1): cv.Version(54, 3, 21, "2"),
|
||||||
cv.Version(3, 2, 0): cv.Version(54, 3, 20),
|
cv.Version(3, 2, 0): cv.Version(54, 3, 20),
|
||||||
@@ -347,8 +348,8 @@ ESP_IDF_FRAMEWORK_VERSION_LOOKUP = {
|
|||||||
"dev": cv.Version(5, 5, 1),
|
"dev": cv.Version(5, 5, 1),
|
||||||
}
|
}
|
||||||
ESP_IDF_PLATFORM_VERSION_LOOKUP = {
|
ESP_IDF_PLATFORM_VERSION_LOOKUP = {
|
||||||
cv.Version(5, 5, 1): cv.Version(55, 3, 31),
|
cv.Version(5, 5, 1): cv.Version(55, 3, 31, "1"),
|
||||||
cv.Version(5, 5, 0): cv.Version(55, 3, 31),
|
cv.Version(5, 5, 0): cv.Version(55, 3, 31, "1"),
|
||||||
cv.Version(5, 4, 2): cv.Version(54, 3, 21, "2"),
|
cv.Version(5, 4, 2): cv.Version(54, 3, 21, "2"),
|
||||||
cv.Version(5, 4, 1): cv.Version(54, 3, 21, "2"),
|
cv.Version(5, 4, 1): cv.Version(54, 3, 21, "2"),
|
||||||
cv.Version(5, 4, 0): cv.Version(54, 3, 21, "2"),
|
cv.Version(5, 4, 0): cv.Version(54, 3, 21, "2"),
|
||||||
@@ -363,8 +364,8 @@ ESP_IDF_PLATFORM_VERSION_LOOKUP = {
|
|||||||
# - https://github.com/pioarduino/platform-espressif32/releases
|
# - https://github.com/pioarduino/platform-espressif32/releases
|
||||||
PLATFORM_VERSION_LOOKUP = {
|
PLATFORM_VERSION_LOOKUP = {
|
||||||
"recommended": cv.Version(54, 3, 21, "2"),
|
"recommended": cv.Version(54, 3, 21, "2"),
|
||||||
"latest": cv.Version(55, 3, 31),
|
"latest": cv.Version(55, 3, 31, "1"),
|
||||||
"dev": "https://github.com/pioarduino/platform-espressif32.git#develop",
|
"dev": cv.Version(55, 3, 31, "1"),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -656,6 +657,7 @@ def _show_framework_migration_message(name: str, variant: str) -> None:
|
|||||||
+ "Why change? ESP-IDF offers:\n"
|
+ "Why change? ESP-IDF offers:\n"
|
||||||
+ color(AnsiFore.GREEN, " ✨ Up to 40% smaller binaries\n")
|
+ color(AnsiFore.GREEN, " ✨ Up to 40% smaller binaries\n")
|
||||||
+ color(AnsiFore.GREEN, " 🚀 Better performance and optimization\n")
|
+ color(AnsiFore.GREEN, " 🚀 Better performance and optimization\n")
|
||||||
|
+ color(AnsiFore.GREEN, " ⚡ 2-3x faster compile times\n")
|
||||||
+ color(AnsiFore.GREEN, " 📦 Custom-built firmware for your exact needs\n")
|
+ color(AnsiFore.GREEN, " 📦 Custom-built firmware for your exact needs\n")
|
||||||
+ color(
|
+ color(
|
||||||
AnsiFore.GREEN,
|
AnsiFore.GREEN,
|
||||||
@@ -663,7 +665,6 @@ def _show_framework_migration_message(name: str, variant: str) -> None:
|
|||||||
)
|
)
|
||||||
+ "\n"
|
+ "\n"
|
||||||
+ "Trade-offs:\n"
|
+ "Trade-offs:\n"
|
||||||
+ color(AnsiFore.YELLOW, " ⏱️ Compile times are ~25% longer\n")
|
|
||||||
+ color(AnsiFore.YELLOW, " 🔄 Some components need migration\n")
|
+ color(AnsiFore.YELLOW, " 🔄 Some components need migration\n")
|
||||||
+ "\n"
|
+ "\n"
|
||||||
+ "What should I do?\n"
|
+ "What should I do?\n"
|
||||||
|
@@ -1,4 +0,0 @@
|
|||||||
<<: !include common.yaml
|
|
||||||
|
|
||||||
esp32:
|
|
||||||
cpu_frequency: 80MHz
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common.yaml
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common.yaml
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common-usb_cdc.yaml
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common-default_uart.yaml
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common-default_uart.yaml
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common-enabled.yaml
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common-enabled.yaml
|
|
@@ -1,4 +0,0 @@
|
|||||||
substitutions:
|
|
||||||
network_enable_ipv6: "true"
|
|
||||||
|
|
||||||
<<: !include common.yaml
|
|
@@ -1,4 +0,0 @@
|
|||||||
substitutions:
|
|
||||||
network_enable_ipv6: "true"
|
|
||||||
|
|
||||||
<<: !include common.yaml
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common.yaml
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common.yaml
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common.yaml
|
|
@@ -1 +0,0 @@
|
|||||||
<<: !include common.yaml
|
|
Reference in New Issue
Block a user