-
Notifications
You must be signed in to change notification settings - Fork 2
/
changelog.txt
135 lines (94 loc) · 5.43 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
iotsa 2.7 - 03-Jun-2023
- Added support for esp32c3
- Added support for HPS (HTTP Proxy Service) over BLE, which allows making API calls over Bluetooth.
- Power management and enabling and disabling of wifi and ble redesigned
- Added more versioning information to /api/config
iotsa 2.6 - 07-Oct-2022
- Various changes to configuration mode: can now be enabled (by the iotsa program) with other
interaction than reboot. AP enabled while in configuration mode.
- iotsaBatteryMod sleep modes rationalized. Added various features for postponing sleep.
- Python iotsa package, including iotsa (formerly iotsaConfig) as a script entry point.
- Added API for per-module objects.
- Added IotsaRtcMod to control ds1302 realtime clock module.
- Prefer libc timezone handling over Timezone library.
- Handle JSON buffer overflow, added jsonBufSize URL parameter.
- Moved to Arduino framework 3.0.
- Switched to ArduinoNimble for BLE support.
- Use ESP32Encoder library to handle rotary encoders in iotsaInput module.
- iotsa Python module and iotsaControl have support for BLE through commands bleTargets and ble.
- Python 2 support dropped, and type annotations added to Python module.
- LittleFS is now default filesystem (but SPIFFS can be selected with a define).
iotsa 2.4.1 - 23-Apr-2020
- Version number reported was wrong. Fixed.
iotsa 2.4 - 18-Apr-2020
- Added BLE support (esp32 only): iotsa devices can now be a Bluetooth LE server.
- Added IotsaBatteryMod which enables power-saving for battery-operated devices.
- Fixed building of iotsa without WiFi support.
- Refactored various classes to enable wifi-less operation and different webserver implementations.
- Allow use of esp32_https_server_compat as http or https server (esp32 only). Enabled by default.
- WiFi can now switch between AP en STAtion mode on the fly, and is handled in loop() so
boot is much faster.
- Added IotsaInput module for handling buttons, touchpads (esp32 only) and rotary encoders.
- Versioning scheme changed: even minor numbers are stable, odd numbers are work-in-progress.
iotsa 2.2 - 03-Dec-2019
- Updated to PlatformIO 4
- newer version of esp8266 and esp32 Arduino frameworks
- new ArduinoJson API
- Rationalized PlatformIO/Arduino support
- Backups and file listing implemented on esp32
iotsa 2.1 - 02-Jun-2019
- Got rid of default password, it provides no extra security.
- Allow uploading of certificate/key as DER with POST requests.
- Write-only REST attributes now always have a "has_" boolean in the read interface to signal that they exist and are set.
- REST read interface was made more consistent.
iotsa 2.0.1 - 01-Jul-2018
- Various changes to make https (server side) more usable, such as
interfacing to the Igor Certificate Authority, and forwarding http
requests to https. Added some scripts to help create certificates.
- Bug fixes for some security issues (which allowed config changes when not in config mode)
iotsa 2.0 - 31-May-2018
- The API has changed in an incompatible way: you no longer need to create the IotsaWebServer object
yourself. The IotsaApplication constructor does this, if needed.
- The server by-reference instance variable of application and module objects is now a pointer.
- There are a number of compile-time flags in iotsaBuildOptions.h that enable and disable
various features such as REST api access, normal web access and more.
- COAP is supported (as an alternative to, or in addition to, REST access).
- HTTPS is supported, as an alternative to HTTP.
iotsa 1.8.1 - 25-May-2018
- Fixed issue with platformio not finding ESP8266HttpClient.h
iotsa 1.8 - 15-Apr-2018
- IotsaRequest and IotsaButton modules added.
iotsa 1.7.2 - 8-Apr-2018
- Enabled (experimental) esp32 support again.
- Various fixes to iotsaControl and how it interfaces to iotsa boards
iotsa 1.7.1 - 30-Mar-2018
- Added iotsaControl module and program to allow programmatic configuration of iotsa devices.
- Added more variables to /api/config for iotsaControl.
- Fixed case error in Esp.h include which stopped travis builds from working.
iotsa 1.6.1
- Added iotsaVersion.h and return version info in config api.
iotsa 1.6 - 26-Mar-2018
- WiFi config and general config have been split into two modules (listening on /wifi and /config, and the
respective /api endpoints). All general configuration parameters are now in a global iotsaConfig structure.
The iotsaConfig module does not have to be instantiated, this happens automatically.
- Configuration mode can now be active on the normal WiFi network. The special private network is only used when
no WiFi network is configured or the configured network is not available. Private network no longer implies
configuration mode.
- All web form argument handling has been converted to no longer using looping over the arguments.
- Default timeouts for reprogramming and configuration mode and such set to 5 minutes.
iotsa 1.5 - 8-Mar-2018
- Added support for capability-based access to resources.
iotsa 1.4 - 6-Mar-2018
- Fixed serious issue in design of access control.
iotsa 1.2.1 - 5-Mar-2018
- Fixed typo in ArduinoJson dependency
iotsa 1.2.0 - 28-Feb-2018
- Added unified REST access through IotsaApiMod.
- Adadpted IotsaAuthMode to allow fine-grained access control over API methods.
iotsa 1.1.0 - 29-Jan-2018
- Ported to platformIO (in addition to Arduino IDE)
iotsa 1.0.1 - 17-Jul-2017
- Added IotsaMod::htmlEncode() method to help escaping strings embedded in the HTML.
- Documentation updates
iotsa 1.0 - April 2017
- Initial github release.