diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d94b2c..ea2f3b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,6 @@ on: - "/keywords.txt" - "/library.json" - "/library.properties" - - "/vue-frontend" - "/docs" pull_request: paths-ignore: @@ -15,7 +14,6 @@ on: - "/keywords.txt" - "/library.json" - "/library.properties" - - "/vue-frontend" - "/docs" jobs: @@ -62,13 +60,13 @@ jobs: run: arduino-cli core install --additional-urls "${{ matrix.index_url }}" ${{ matrix.core }} - name: Install AsyncTCP - run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.1.4 + run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.2.3 - name: Install ESPAsyncTCP run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/esphome-ESPAsyncTCP#v2.0.0 - name: Install ESPAsyncWebServer - run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.0.2 + run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.1.1 - name: Build Demo run: arduino-cli compile --library . --warnings none -b ${{ matrix.board }} "examples/Demo/Demo.ino" @@ -101,7 +99,7 @@ jobs: - name: esp32dev|arduino-3 board: esp32dev platform: espressif32 - opts: "--project-option 'lib_compat_mode = strict' --project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.2, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.2/esp32-arduino-libs-3.0.2.zip'" + opts: "--project-option 'lib_compat_mode = strict' --project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.3, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.3/esp32-arduino-libs-3.0.3.zip'" - name: esp32-s3-devkitc-1|arduino board: esp32-s3-devkitc-1 platform: espressif32 @@ -113,7 +111,7 @@ jobs: - name: esp32-s3-devkitc-1|arduino-3 board: esp32-s3-devkitc-1 platform: espressif32 - opts: "--project-option 'lib_compat_mode = strict' --project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.2, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.2/esp32-arduino-libs-3.0.2.zip'" + opts: "--project-option 'lib_compat_mode = strict' --project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.3, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.3/esp32-arduino-libs-3.0.3.zip'" - name: huzzah|espressif8266 board: huzzah platform: espressif8266 diff --git a/library.json b/library.json index 8d9a4f2..58c6fed 100644 --- a/library.json +++ b/library.json @@ -18,12 +18,12 @@ "dependencies": [ { "owner": "mathieucarbou", - "name": "ESP Async WebServer", - "version": "^3.0.2", + "name": "ESPAsyncWebServer", + "version": "^3.1.1", "platforms": ["espressif8266", "espressif32"] } ], - "version": "3.1.2", + "version": "3.1.3", "frameworks": "arduino", "platforms": ["espressif8266", "espressif32", "raspberrypi"] } diff --git a/library.properties b/library.properties index e5342ff..996e59a 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=ElegantOTA -version=3.1.2 +version=3.1.3 author=Ayush Sharma category=Communication maintainer=Ayush Sharma diff --git a/platformio.ini b/platformio.ini index e0f979d..1d457b2 100644 --- a/platformio.ini +++ b/platformio.ini @@ -6,8 +6,8 @@ build_flags = -D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG -D ELEGANTOTA_USE_ASYNC_WEBSERVER=1 lib_deps = - mathieucarbou/Async TCP @ ^3.1.4 - mathieucarbou/ESP Async WebServer @ 3.0.2 + mathieucarbou/AsyncTCP@^3.2.3 + mathieucarbou/ESPAsyncWebServer@^3.1.1 upload_protocol = esptool monitor_speed = 115200 monitor_filters = esp32_exception_decoder, log2file @@ -28,16 +28,16 @@ board = esp32-s3-devkitc-1 [env:arduino-3] platform = espressif32 platform_packages= - platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.2 - platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.2/esp32-arduino-libs-3.0.2.zip + platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.3 + platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.3/esp32-arduino-libs-3.0.3.zip board = esp32-s3-devkitc-1 [env:esp8266] platform = espressif8266 board = huzzah lib_deps = - mathieucarbou/ESP Async WebServer @ 3.0.2 - esphome/ESPAsyncTCP-esphome @ 2.0.0 + mathieucarbou/ESPAsyncWebServer@^3.1.1 + esphome/ESPAsyncTCP-esphome@^2.0.0 [env:pico] platform = https://github.com/maxgerhardt/platform-raspberrypi.git