@alteriom/painlessmesh 1.6.1 → 1.7.3

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.
Files changed (152) hide show
  1. package/CHANGELOG.md +435 -144
  2. package/LICENSE +674 -674
  3. package/README.md +491 -434
  4. package/RELEASE_GUIDE.md +504 -418
  5. package/docs/DOCUMENTATION_MIGRATION_PLAN.md +175 -175
  6. package/docs/IMPLEMENTATION_PLAN_MESH_TOPOLOGY.md +1062 -0
  7. package/docs/MESH_TOPOLOGY_GUIDE.md +992 -0
  8. package/docs/MESH_TOPOLOGY_PROGRESS.md +422 -0
  9. package/docs/MQTT_BRIDGE_COMMANDS.md +894 -0
  10. package/docs/MQTT_BRIDGE_IMPLEMENTATION_SUMMARY.md +324 -0
  11. package/docs/MQTT_COMMAND_SCHEMA_PROPOSAL.md +576 -0
  12. package/docs/MQTT_SCHEMA_COMPLIANCE.md +285 -0
  13. package/docs/MQTT_SCHEMA_PROPOSALS.md +446 -0
  14. package/docs/MQTT_SCHEMA_REVIEW.md +690 -0
  15. package/docs/OTA_COMMANDS_REFERENCE.md +554 -0
  16. package/docs/PHASE1_GUIDE.md +349 -0
  17. package/docs/PHASE2_GUIDE.md +543 -0
  18. package/docs/README.md +130 -71
  19. package/docs/SCHEMA_VALIDATION_CHECKLIST.md +222 -0
  20. package/docs/alteriom/overview.md +507 -507
  21. package/docs/api/core-api.md +606 -606
  22. package/docs/architecture/mesh-architecture.md +378 -378
  23. package/docs/architecture/plugin-system.md +516 -516
  24. package/docs/archive/DOCUSAURUS_DEPLOYMENT.md +166 -0
  25. package/docs/archive/FEATURE_PROPOSALS.md +337 -0
  26. package/docs/archive/LIBRARY_JSON_FIX.md +98 -0
  27. package/docs/archive/LIBRARY_STRUCTURE_FIX.md +215 -0
  28. package/docs/archive/PHASE1_IMPLEMENTATION.md +325 -0
  29. package/docs/archive/PHASE2_IMPLEMENTATION.md +567 -0
  30. package/docs/archive/RELEASE_SUMMARY.md +173 -0
  31. package/docs/archive/SCONS_BUILD_FIX.md +313 -0
  32. package/docs/archive/TRIGGER_RELEASE.md +280 -0
  33. package/docs/archive/VECTOR_INCLUDE_FIX.md +129 -0
  34. package/docs/archive/ota-and-status-enhancements.md +911 -0
  35. package/docs/archive/ota-status-architecture-diagrams.md +658 -0
  36. package/docs/archive/ota-status-quick-reference.md +284 -0
  37. package/docs/development/ARDUINO_COMPLIANCE_SUMMARY.md +71 -0
  38. package/docs/development/CODE_REFACTORING_RECOMMENDATIONS.md +1011 -0
  39. package/docs/development/DOCKER_TESTING.md +196 -0
  40. package/docs/development/PLATFORMIO_USAGE.md +180 -0
  41. package/docs/development/TESTING_SUMMARY.md +126 -0
  42. package/docs/development/contributing.md +301 -0
  43. package/docs/development/documentation.md +583 -0
  44. package/docs/getting-started/first-mesh.md +409 -409
  45. package/docs/getting-started/installation.md +274 -274
  46. package/docs/getting-started/quickstart.md +157 -157
  47. package/docs/improvements/FUTURE_PROPOSALS.md +1016 -0
  48. package/docs/improvements/IMPLEMENTATION_HISTORY.md +1091 -0
  49. package/docs/improvements/OTA_STATUS_ENHANCEMENTS.md +709 -0
  50. package/docs/improvements/README.md +212 -69
  51. package/docs/platformio-publishing.md +255 -0
  52. package/docs/platformio-setup-summary.md +121 -0
  53. package/docs/releases/FEATURE_HISTORY.md +543 -0
  54. package/docs/releases/PATCH_v1.7.3.md +262 -0
  55. package/docs/releases/PHASE1_SUMMARY.md +246 -0
  56. package/docs/releases/PHASE2_SUMMARY.md +499 -0
  57. package/docs/releases/RELEASE_NOTES_1.7.0.md +539 -0
  58. package/docs/troubleshooting/common-issues.md +520 -520
  59. package/docs/troubleshooting/debugging.md +455 -0
  60. package/docs/troubleshooting/faq.md +472 -472
  61. package/docs/tutorials/basic-examples.md +717 -717
  62. package/docs/wiki/API-Reference.md +245 -245
  63. package/docs/wiki/Complete-Documentation.md +122 -122
  64. package/examples/alteriom/README.md +139 -81
  65. package/examples/alteriom/alteriom.ino +186 -185
  66. package/examples/alteriom/alteriom_sensor_package.hpp +240 -127
  67. package/examples/alteriom/platformio.ini +24 -24
  68. package/examples/alteriomImproved/alteriom_sensor_package.hpp +224 -0
  69. package/examples/{alteriom → alteriomImproved}/improved_sensor_node.ino +245 -245
  70. package/examples/alteriomImproved/platformio.ini +25 -0
  71. package/examples/alteriomPhase1/alteriom_sensor_package.hpp +224 -0
  72. package/examples/alteriomPhase1/phase1_features.ino +242 -0
  73. package/examples/alteriomPhase1/platformio.ini +25 -0
  74. package/examples/alteriomPhase2/alteriom_sensor_package.hpp +224 -0
  75. package/examples/alteriomPhase2/phase2_features.ino +186 -0
  76. package/examples/alteriomPhase2/platformio.ini +25 -0
  77. package/examples/{alteriom → alteriomSensorNode}/alteriom_sensor_node.ino +183 -183
  78. package/examples/alteriomSensorNode/alteriom_sensor_package.hpp +224 -0
  79. package/examples/alteriomSensorNode/platformio.ini +25 -0
  80. package/examples/basic/basic.ino +66 -66
  81. package/examples/basic/platformio.ini +25 -25
  82. package/examples/bridge/bridge.ino +51 -51
  83. package/examples/bridge/mesh_event_publisher.hpp +253 -0
  84. package/examples/bridge/mesh_topology_reporter.hpp +303 -0
  85. package/examples/bridge/mqtt_command_bridge.hpp +459 -0
  86. package/examples/bridge/mqtt_status_bridge.hpp +519 -0
  87. package/examples/bridge/platformio.ini +25 -25
  88. package/examples/echoNode/echoNode.ino +33 -33
  89. package/examples/echoNode/platformio.ini +25 -25
  90. package/examples/logClient/logClient.ino +109 -109
  91. package/examples/logClient/platformio.ini +25 -25
  92. package/examples/logServer/logServer.ino +81 -81
  93. package/examples/logServer/platformio.ini +25 -25
  94. package/examples/meshCommandNode/alteriom_sensor_package.hpp +235 -0
  95. package/examples/meshCommandNode/meshCommandNode.ino +263 -0
  96. package/examples/meshCommandNode/platformio.ini +25 -0
  97. package/examples/mqttBridge/mqttBridge.ino +118 -118
  98. package/examples/mqttBridge/platformio.ini +26 -26
  99. package/examples/mqttCommandBridge/alteriom_sensor_package.hpp +235 -0
  100. package/examples/mqttCommandBridge/mesh_event_publisher.hpp +253 -0
  101. package/examples/mqttCommandBridge/mesh_topology_reporter.hpp +303 -0
  102. package/examples/mqttCommandBridge/mqttCommandBridge.ino +252 -0
  103. package/examples/mqttCommandBridge/mqtt_command_bridge.hpp +459 -0
  104. package/examples/mqttCommandBridge/platformio.ini +26 -0
  105. package/examples/mqttStatusBridge/mqttStatusBridge.ino +216 -0
  106. package/examples/mqttStatusBridge/mqtt_status_bridge.hpp +522 -0
  107. package/examples/mqttStatusBridge/platformio.ini +26 -0
  108. package/examples/mqttTopologyTest/README.md +467 -0
  109. package/examples/mqttTopologyTest/mqttTopologyTest.ino +748 -0
  110. package/examples/mqttTopologyTest/platformio.ini +26 -0
  111. package/examples/namedMesh/namedMesh.ino +97 -97
  112. package/examples/namedMesh/platformio.ini +25 -25
  113. package/examples/otaReceiver/otaReceiver.ino +79 -79
  114. package/examples/otaReceiver/platformio.ini +25 -25
  115. package/examples/otaSender/otaSender.ino +160 -151
  116. package/examples/otaSender/platformio.ini +25 -25
  117. package/examples/startHere/platformio.ini +25 -25
  118. package/examples/startHere/startHere.ino +159 -159
  119. package/examples/webServer/platformio.ini +27 -27
  120. package/examples/webServer/webServer.ino +89 -89
  121. package/keywords.txt +48 -48
  122. package/library.json +55 -34
  123. package/library.properties +10 -10
  124. package/package.json +86 -78
  125. package/src/AlteriomPainlessMesh.h +97 -97
  126. package/src/arduino/wifi.hpp +365 -365
  127. package/src/boost/asynctcp.hpp +279 -279
  128. package/src/painlessMesh.h +70 -70
  129. package/src/painlessMeshSTA.cpp +236 -236
  130. package/src/painlessMeshSTA.h +58 -58
  131. package/src/painlessTaskOptions.h +4 -4
  132. package/src/painlessmesh/base64.hpp +111 -111
  133. package/src/painlessmesh/buffer.hpp +229 -229
  134. package/src/painlessmesh/callback.hpp +91 -91
  135. package/src/painlessmesh/configuration.hpp +77 -77
  136. package/src/painlessmesh/connection.hpp +192 -192
  137. package/src/painlessmesh/layout.hpp +188 -188
  138. package/src/painlessmesh/logger.hpp +158 -158
  139. package/src/painlessmesh/memory.hpp +119 -119
  140. package/src/painlessmesh/mesh.hpp +761 -560
  141. package/src/painlessmesh/metrics.hpp +322 -322
  142. package/src/painlessmesh/ntp.hpp +263 -263
  143. package/src/painlessmesh/ota.hpp +582 -553
  144. package/src/painlessmesh/plugin.hpp +188 -188
  145. package/src/painlessmesh/protocol.hpp +813 -813
  146. package/src/painlessmesh/router.hpp +338 -322
  147. package/src/painlessmesh/tcp.hpp +71 -71
  148. package/src/painlessmesh/validation.hpp +238 -238
  149. package/src/plugin/performance.hpp +214 -214
  150. package/src/plugin/remote.hpp +64 -64
  151. package/src/scheduler.cpp +10 -10
  152. package/src/wifi.cpp +2 -2
@@ -0,0 +1,280 @@
1
+ # Release Trigger Guide - Alteriom painlessMesh
2
+
3
+ ## 🚀 Quick Release Process
4
+
5
+ ### Standard Release (Recommended)
6
+
7
+ ```bash
8
+ # 1. Update version using the bump script
9
+ ./scripts/bump-version.sh patch # or minor, major
10
+
11
+ # 2. Update CHANGELOG.md with your changes
12
+ # Add your changes under the new version section
13
+
14
+ # 3. Commit and trigger release
15
+ git add library.properties library.json CHANGELOG.md package.json
16
+ git commit -m "release: v1.6.1"
17
+ git push origin main
18
+ ```
19
+
20
+ That's it! GitHub Actions will automatically:
21
+ - ✅ Run comprehensive test suite
22
+ - ✅ Create git tag
23
+ - ✅ Generate GitHub release with changelog
24
+ - ✅ Publish to NPM (public registry)
25
+ - ✅ Publish to GitHub Packages
26
+ - ✅ Update GitHub Wiki
27
+ - ✅ Package library for Arduino Library Manager
28
+ - ✅ Validate all distribution channels
29
+
30
+ ## 📋 Release Checklist
31
+
32
+ ### Pre-Release Validation
33
+ - [ ] All tests passing locally (`npm run test`)
34
+ - [ ] Version consistency verified (`./scripts/validate-release.sh`)
35
+ - [ ] Changelog updated with new version
36
+ - [ ] Examples compile successfully
37
+ - [ ] Documentation updated if needed
38
+
39
+ ### Release Execution
40
+ - [ ] Version bumped in all files
41
+ - [ ] Commit message starts with "release:"
42
+ - [ ] Pushed to main branch
43
+ - [ ] GitHub Actions workflows completed successfully
44
+
45
+ ### Post-Release Verification
46
+ - [ ] GitHub release created
47
+ - [ ] NPM package published
48
+ - [ ] GitHub Packages updated
49
+ - [ ] Wiki synchronized
50
+ - [ ] Library available in distribution channels
51
+
52
+ ## 🎯 Distribution Channels
53
+
54
+ ### Automatic (Zero Manual Work)
55
+ 1. **GitHub Releases** - Created automatically with changelog
56
+ 2. **NPM Public Registry** - Published to https://www.npmjs.com/package/@alteriom/painlessmesh
57
+ 3. **GitHub Packages** - Published to GitHub's NPM registry
58
+ 4. **PlatformIO Registry** - Automatically indexed from GitHub releases
59
+ 5. **GitHub Wiki** - Documentation synchronized automatically
60
+
61
+ ### Semi-Automatic (Requires Manual Submission)
62
+ 6. **Arduino Library Manager** - Requires one-time submission to Arduino team
63
+
64
+ ## 📝 Version Management
65
+
66
+ ### Semantic Versioning
67
+
68
+ ```bash
69
+ # Patch version (1.6.0 → 1.6.1) - Bug fixes
70
+ ./scripts/bump-version.sh patch
71
+
72
+ # Minor version (1.6.0 → 1.7.0) - New features
73
+ ./scripts/bump-version.sh minor
74
+
75
+ # Major version (1.6.0 → 2.0.0) - Breaking changes
76
+ ./scripts/bump-version.sh major
77
+
78
+ # Specific version
79
+ ./scripts/bump-version.sh patch 1.6.2
80
+ ```
81
+
82
+ ### Version Consistency
83
+
84
+ The script automatically updates:
85
+ - `library.properties` (Arduino)
86
+ - `library.json` (PlatformIO)
87
+ - `package.json` (NPM)
88
+
89
+ ## 🔧 NPM Publishing Details
90
+
91
+ ### Dual Publishing Strategy
92
+
93
+ The release workflow publishes to **two NPM registries**:
94
+
95
+ 1. **Public NPM** (npmjs.com)
96
+ - Package: `@alteriom/painlessmesh`
97
+ - Anyone can install: `npm install @alteriom/painlessmesh`
98
+ - No authentication required for installation
99
+
100
+ 2. **GitHub Packages** (npm.pkg.github.com)
101
+ - Package: `@alteriom/painlessmesh`
102
+ - Scoped to Alteriom organization
103
+ - Requires authentication for installation
104
+
105
+ ### Installation Methods
106
+
107
+ ```bash
108
+ # Public NPM (recommended for users)
109
+ npm install @alteriom/painlessmesh
110
+
111
+ # GitHub Packages (for Alteriom team/authenticated users)
112
+ echo '@alteriom:registry=https://npm.pkg.github.com' >> .npmrc
113
+ npm install @alteriom/painlessmesh
114
+ ```
115
+
116
+ ## 📚 Wiki Publishing
117
+
118
+ ### Automatic Synchronization
119
+
120
+ The wiki is automatically updated with each release:
121
+
122
+ - **Home Page** - Generated from README.md
123
+ - **Release Guide** - From RELEASE_GUIDE.md
124
+ - **Changelog** - From CHANGELOG.md
125
+ - **Examples** - Auto-generated from examples directory
126
+ - **API Reference** - Generated documentation pages
127
+ - **CI/CD Pipeline** - Automated documentation
128
+
129
+ ### Manual Wiki Override
130
+
131
+ If needed, you can manually update the wiki:
132
+
133
+ ```bash
134
+ # Clone wiki repository
135
+ git clone https://github.com/Alteriom/painlessMesh.wiki.git
136
+
137
+ # Edit markdown files
138
+ # Commit and push changes
139
+ ```
140
+
141
+ ## 🛠️ Arduino Library Manager Submission
142
+
143
+ ### One-Time Setup (Required)
144
+
145
+ After your first release, submit to Arduino Library Manager:
146
+
147
+ 1. Go to: https://github.com/arduino/library-registry
148
+ 2. Create a new issue with the following template:
149
+
150
+ ```
151
+ Title: Add painlessMesh library
152
+
153
+ Body:
154
+ Repository URL: https://github.com/Alteriom/painlessMesh
155
+ Release tag: v1.6.0
156
+ Library name: painlessMesh
157
+ Version: 1.6.0
158
+
159
+ This is the Alteriom fork of the painlessMesh library with enhanced
160
+ CI/CD, automated releases, and improved Arduino Library Manager compatibility.
161
+ Includes SensorPackage, CommandPackage, and StatusPackage extensions.
162
+ ```
163
+
164
+ 3. Monitor the issue for Arduino team approval
165
+ 4. Once approved, all future releases are automatically indexed
166
+
167
+ ## 🔍 Validation Scripts
168
+
169
+ ### Pre-Release Validation
170
+ ```bash
171
+ # Comprehensive validation
172
+ ./scripts/validate-release.sh
173
+
174
+ # Check version consistency
175
+ ./scripts/bump-version.sh --verify
176
+
177
+ # Test library compilation
178
+ npm run build
179
+ npm run test
180
+ ```
181
+
182
+ ### Release Monitoring
183
+ ```bash
184
+ # Check GitHub Actions status
185
+ # Visit: https://github.com/Alteriom/painlessMesh/actions
186
+
187
+ # Verify NPM publication
188
+ npm view @alteriom/painlessmesh version
189
+
190
+ # Check GitHub Packages
191
+ # Visit: https://github.com/Alteriom/painlessMesh/packages
192
+
193
+ # Verify wiki update
194
+ # Visit: https://github.com/Alteriom/painlessMesh/wiki
195
+ ```
196
+
197
+ ## 🚨 Troubleshooting
198
+
199
+ ### Common Issues
200
+
201
+ **Version Mismatch Error**
202
+ ```bash
203
+ # Fix version inconsistencies
204
+ ./scripts/bump-version.sh patch 1.6.1 # Force set version
205
+ ```
206
+
207
+ **NPM Publication Failure**
208
+ ```bash
209
+ # Check NPM token is valid
210
+ npm whoami
211
+
212
+ # Verify package.json configuration
213
+ npm run validate-library
214
+ ```
215
+
216
+ **GitHub Packages Authentication**
217
+ ```bash
218
+ # Verify GitHub token has packages:write permission
219
+ # Check repository settings → Actions → General → Permissions
220
+ ```
221
+
222
+ **Wiki Update Failure**
223
+ ```bash
224
+ # Wiki may need to be manually initialized
225
+ # Go to: https://github.com/Alteriom/painlessMesh/wiki
226
+ # Create any page to initialize wiki, then re-run release
227
+ ```
228
+
229
+ ### Manual Override
230
+
231
+ If automation fails, you can manually perform any step:
232
+
233
+ ```bash
234
+ # Manual NPM publish
235
+ npm publish --access public
236
+
237
+ # Manual GitHub release
238
+ gh release create v1.6.1 --title "painlessMesh v1.6.1" --notes-file CHANGELOG.md
239
+
240
+ # Manual tag creation
241
+ git tag v1.6.1
242
+ git push origin v1.6.1
243
+ ```
244
+
245
+ ## 📊 Release Success Indicators
246
+
247
+ ### Successful Release Shows:
248
+ - ✅ GitHub release created with changelog
249
+ - ✅ Git tag pushed to repository
250
+ - ✅ NPM package published (check npmjs.com)
251
+ - ✅ GitHub Packages updated
252
+ - ✅ Wiki pages synchronized
253
+ - ✅ All GitHub Actions workflows completed
254
+
255
+ ### Distribution Verification:
256
+ ```bash
257
+ # NPM
258
+ npm view @alteriom/painlessmesh
259
+
260
+ # GitHub Packages
261
+ npm view @alteriom/painlessmesh --registry=https://npm.pkg.github.com
262
+
263
+ # PlatformIO (updated within 24 hours)
264
+ # Check: https://registry.platformio.org/libraries/alteriom/painlessMesh
265
+ ```
266
+
267
+ ## 🎉 Success!
268
+
269
+ Once your release is complete, the library will be available through:
270
+ - GitHub Releases
271
+ - NPM (public + GitHub Packages)
272
+ - PlatformIO Registry (automatic)
273
+ - Arduino Library Manager (after initial submission)
274
+ - GitHub Wiki (documentation)
275
+
276
+ All future releases follow the same simple process - just bump version, update changelog, commit with "release:" prefix, and push!
277
+
278
+ ---
279
+
280
+ **Questions?** Create an issue with the `ci/cd` label for release process support.
@@ -0,0 +1,129 @@
1
+ # Missing #include <vector> Fix
2
+
3
+ ## Issue
4
+
5
+ Compilation errors when building projects that use AlteriomPainlessMesh:
6
+
7
+ ```
8
+ error: 'vector' in namespace 'std' does not name a template type
9
+ std::vector<ConnectionInfo> getConnectionDetails() {
10
+ ^~~~~~
11
+ note: 'std::vector' is defined in header '<vector>'; did you forget to '#include <vector>'?
12
+ ```
13
+
14
+ ## Root Cause
15
+
16
+ The file `src/painlessmesh/mesh.hpp` uses `std::vector` but was missing the required include:
17
+
18
+ ```cpp
19
+ #include <vector>
20
+ ```
21
+
22
+ This caused compilation failures in any code that included `painlessMesh.h`.
23
+
24
+ ## Files Affected
25
+
26
+ - `src/painlessmesh/mesh.hpp` - Uses `std::vector<ConnectionInfo>` at line 386
27
+ - `src/painlessmesh/mesh.hpp` - Uses `std::vector<uint32_t>` at line 594
28
+
29
+ ## Fix Applied
30
+
31
+ Added `#include <vector>` to the top of `src/painlessmesh/mesh.hpp`:
32
+
33
+ ```cpp
34
+ #ifndef _PAINLESS_MESH_MESH_HPP_
35
+ #define _PAINLESS_MESH_MESH_HPP_
36
+
37
+ #include <vector> // ← ADDED THIS LINE
38
+
39
+ #include "painlessmesh/configuration.hpp"
40
+ // ... rest of includes
41
+ ```
42
+
43
+ ## Why This Wasn't Caught Earlier
44
+
45
+ This is a common C++ compilation issue where:
46
+ 1. Sometimes the `<vector>` header gets transitively included by other headers
47
+ 2. Works on some compilers/platforms but not others
48
+ 3. Depends on which headers are included first in your project
49
+ 4. May work in the library's test environment but fail in user projects
50
+
51
+ ## Testing
52
+
53
+ After this fix, the following should compile successfully:
54
+
55
+ ```cpp
56
+ #include <Arduino.h>
57
+ #include <painlessMesh.h>
58
+
59
+ Scheduler userScheduler;
60
+ painlessMesh mesh;
61
+
62
+ void setup() {
63
+ Serial.begin(115200);
64
+ mesh.init("TestMesh", "password", &userScheduler, 5555);
65
+
66
+ // This function uses std::vector internally
67
+ auto connections = mesh.getConnectionDetails();
68
+ }
69
+
70
+ void loop() {
71
+ mesh.update();
72
+ }
73
+ ```
74
+
75
+ ## For Users
76
+
77
+ To get the fix:
78
+
79
+ 1. **Clean your build:**
80
+ ```bash
81
+ pio run --target clean
82
+ rm -rf .pio
83
+ ```
84
+
85
+ 2. **Update library:**
86
+ ```bash
87
+ pio pkg update
88
+ ```
89
+
90
+ 3. **Rebuild:**
91
+ ```bash
92
+ pio run
93
+ ```
94
+
95
+ The library will be re-downloaded from GitHub with the fix included.
96
+
97
+ ## Verification
98
+
99
+ Your build output should change from:
100
+
101
+ **Before (ERROR):**
102
+ ```
103
+ error: 'vector' in namespace 'std' does not name a template type
104
+ *** [.pio/build/universal-sensor/libb89/AlteriomPainlessMesh/painlessMeshSTA.cpp.o] Error 1
105
+ ```
106
+
107
+ **After (SUCCESS):**
108
+ ```
109
+ Building .pio/build/universal-sensor/libb89/AlteriomPainlessMesh/painlessMeshSTA.cpp.o
110
+ Building .pio/build/universal-sensor/libb89/AlteriomPainlessMesh/wifi.cpp.o
111
+ Linking .pio/build/universal-sensor/firmware.elf
112
+ SUCCESS
113
+ ```
114
+
115
+ ## Related Fixes
116
+
117
+ This is part of a series of library structure fixes:
118
+ 1. ✅ Added `srcDir` and `includeDir` to library.json
119
+ 2. ✅ Removed conflicting `export.include` section
120
+ 3. ✅ Fixed header references in library.properties
121
+ 4. ✅ **Added missing `#include <vector>` to mesh.hpp** ← This fix
122
+
123
+ ## Date
124
+
125
+ October 15, 2025
126
+
127
+ ## Status
128
+
129
+ ✅ FIXED - Ready for use