@mikrojs/firmware 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikrojs/firmware",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Mikro.js ESP32 firmware: ESP-IDF component, build tools, and project template",
5
5
  "keywords": [
6
6
  "esp-idf",
@@ -51,8 +51,8 @@
51
51
  },
52
52
  "dependencies": {
53
53
  "esbuild": "^0.28.0",
54
- "@mikrojs/native": "0.6.0",
55
- "@mikrojs/quickjs": "0.6.0"
54
+ "@mikrojs/quickjs": "0.6.1",
55
+ "@mikrojs/native": "0.6.1"
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=24.0.0"
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -132,13 +132,3 @@ CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=n
132
132
  CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN=y
133
133
  CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY=y
134
134
 
135
- # TLS record buffers must come from internal SRAM. The ESP-IDF default for
136
- # the inbound buffer is 16 KB, which competes with QuickJS heap allocations
137
- # for contiguous internal SRAM and causes HTTPS handshake failures (error
138
- # 0x7002) on apps with significant retained JS state. Halving it to 8 KB
139
- # leaves enough room for typical TLS records (handshake fragments are well
140
- # under 4 KB; modern servers rarely send >4 KB application records, and
141
- # mbedTLS will fragment larger records). The outbound buffer was already
142
- # 4 KB via CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y.
143
- CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=8192
144
-