Skip to content

Commit af1c21f

Browse files
committed
Preparing for v1.1.0 release from esp32_idf5_https_server
1 parent 7cbaf1d commit af1c21f

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

CHANGELOG.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
# Changelog
22

3-
## [pending (master)](https://github.com/fhessel/esp32_https_server/tree/master)
3+
## [v1.1.0](https://github.com/jackjansen/esp32_idf5_https_server/tree/master)
44

5-
New functionality:
6-
7-
8-
9-
Bug fixes:
10-
11-
12-
13-
Breaking changes:
5+
- Compatible with ESP-IDF 5.0
6+
- Use esp-tls in stead of openssl
147

15-
168

179
## [v1.0.0](https://github.com/fhessel/esp32_https_server/releases/tag/v1.0.0)
1810

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1-
# ESP32 HTTPS Server
1+
# ESP32 HTTPS Server, IDF5 fork
22

3-
![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/fhessel/esp32_https_server?label=Version&sort=semver) ![Build Examples](https://github.com/fhessel/esp32_https_server/workflows/Build%20Examples/badge.svg?branch=master)
3+
This repository is a fork of `fhessel/esp32_https_server`. The only reason for its existence is that it seems _fhessel_ currently does not have the time to maintain `esp32_https_server`, and due to changes in the underlying Espressif frameworks such as `ESP_IDF` it has stopped working.
4+
5+
This forked repository has just enough changes so that the library works. It is hoped that it will go away in the future (after a warning period) when `esp32_idf_server` maintainance is picked up again.
6+
7+
In the following instructions
8+
9+
- replace every mention of `esp32_https_server` with `esp32_idf5_https_server`
10+
11+
## Original readme of esp32_https_server
412

513
This repository contains an HTTPS server library that can be used with the [ESP32 Arduino Core](https://github.com/espressif/arduino-esp32). It supports HTTP as well.
614

library.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "esp32_https_server",
2+
"name": "esp32_idf5_https_server",
33
"keywords": "communication, esp32, http, https, server, ssl, tls, webserver, websockets",
4-
"description": "Alternative ESP32 Webserver implementation for the ESP32, supporting HTTPS and HTTP. The library provides TLS support and simultaneous connections. It can be used to run an HTTP or HTTPS server, or both in parallel. The server's resources are defined through handler and middleware functions, giving an easy start to everyone who has worked with frameworks like Express or Servlets before.",
4+
"description": "Alternative ESP32 Webserver implementation for the ESP32, supporting HTTPS and HTTP. The library provides TLS support and simultaneous connections. It can be used to run an HTTP or HTTPS server, or both in parallel. The server's resources are defined through handler and middleware functions, giving an easy start to everyone who has worked with frameworks like Express or Servlets before. This fork is compatible with ESP-IDF 5.0 or later.",
55
"repository":
66
{
77
"type": "git",
8-
"url": "https://github.com/fhessel/esp32_https_server.git"
8+
"url": "https://github.com/jackjansen/esp32_idf5_https_server.git"
99
},
1010
"license": "MIT",
11-
"version": "1.0.0",
11+
"version": "1.1.0",
1212
"frameworks": "arduino",
1313
"platforms": ["espressif32"]
1414
}

library.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name=ESP32_HTTPS_Server
1+
name=ESP32_IDF5_HTTPS_Server
22
version=1.0.0
33
author=Frank Hessel <frank@fhessel.de>
4-
maintainer=Frank Hessel <frank@fhessel.de>
5-
sentence=Alternative ESP32 Webserver implementation for the ESP32, supporting HTTPS and HTTP.
4+
maintainer=Jack Jansen <Jack.Jansen@cwi.nl>
5+
sentence=Alternative ESP32 Webserver implementation for the ESP32, supporting HTTPS and HTTP. Compatible with ESP-IDF 5.0 or later.
66
paragraph=The library provides TLS support and simultaneous connections. It can be used to run an HTTP or HTTPS server, or both in parallel. The server's resources are defined through handler and middleware functions, giving an easy start to everyone who has worked with frameworks like Express or Servlets before.
77
category=Communication
8-
url=https://github.com/fhessel/esp32_https_server
8+
url=https://github.com/jackjansen/esp32_idf5_https_server
99
architectures=esp32
1010
includes=HTTPSServer.hpp,HTTPRequest.hpp,HTTPResponse.hpp

0 commit comments

Comments
 (0)