7 files changed
+177
-219
lines changedSubmodule aws-crt-cpp updated 79 files
- .github/workflows/ci.yml+16
- .github/workflows/release.yml+17
- CMakeLists.txt+14-2
- NOTICE+1
- aws-common-runtime/aws-c-common+1-1
- aws-common-runtime/aws-c-io+1-1
- aws-common-runtime/aws-c-mqtt+1-1
- aws-common-runtime/s2n+1-1
- bin/elasticurl_cpp/main.cpp+3-13
- codebuild/create-projects.py+2-12
- include/aws/crt/Api.h+3-13
- include/aws/crt/Config.h.in+3-13
- include/aws/crt/DateTime.h+3-13
- include/aws/crt/JsonObject.h+3-13
- include/aws/crt/Optional.h+3-13
- include/aws/crt/StlAllocator.h+3-13
- include/aws/crt/StringUtils.h+3-13
- include/aws/crt/Types.h+3-13
- include/aws/crt/UUID.h+3-13
- include/aws/crt/auth/Credentials.h+3-13
- include/aws/crt/auth/Signing.h+3-13
- include/aws/crt/auth/Sigv4Signing.h+3-13
- include/aws/crt/crypto/HMAC.h+3-13
- include/aws/crt/crypto/Hash.h+3-13
- include/aws/crt/http/HttpConnection.h+3-13
- include/aws/crt/http/HttpConnectionManager.h+3-13
- include/aws/crt/http/HttpRequestResponse.h+3-13
- include/aws/crt/io/Bootstrap.h+3-13
- include/aws/crt/io/EventLoopGroup.h+3-13
- include/aws/crt/io/HostResolver.h+3-13
- include/aws/crt/io/SocketOptions.h+3-13
- include/aws/crt/io/Stream.h+3-13
- include/aws/crt/io/TlsOptions.h+3-13
- include/aws/crt/io/Uri.h+3-13
- include/aws/crt/mqtt/MqttClient.h+3-13
- include/aws/iot/MqttClient.h+3-13
- source/Api.cpp+3-13
- source/DateTime.cpp+3-13
- source/JsonObject.cpp+3-13
- source/StringUtils.cpp+3-13
- source/Types.cpp+11-15
- source/UUID.cpp+3-13
- source/auth/Credentials.cpp+3-13
- source/auth/Sigv4Signing.cpp+3-13
- source/crypto/HMAC.cpp+3-13
- source/crypto/Hash.cpp+3-13
- source/http/HttpConnection.cpp+3-13
- source/http/HttpConnectionManager.cpp+3-13
- source/http/HttpRequestResponse.cpp+3-13
- source/io/Bootstrap.cpp+3-13
- source/io/EventLoopGroup.cpp+3-13
- source/io/HostResolver.cpp+3-13
- source/io/SocketOptions.cpp+3-13
- source/io/Stream.cpp+3-13
- source/io/TlsOptions.cpp+3-13
- source/io/Uri.cpp+3-13
- source/iot/MqttClient.cpp+3-13
- source/mqtt/MqttClient.cpp+3-13
- tests/CMakeLists.txt+1
- tests/ChannelBootstrapTest.cpp+3-13
- tests/CredentialsTest.cpp+3-13
- tests/DateTimeTest.cpp+3-13
- tests/EventLoopGroupTest.cpp+3-13
- tests/HMACTest.cpp+3-13
- tests/HashTest.cpp+3-13
- tests/HostResolverTest.cpp+3-13
- tests/HttpClientConnectionManagerTest.cpp+3-13
- tests/HttpClientTest.cpp+3-13
- tests/HttpRequestTest.cpp+3-13
- tests/IotServiceTest.cpp+3-13
- tests/JsonParserTest.cpp+3-13
- tests/MqttClientTest.cpp+3-13
- tests/OptionalMemorySafetyTest.cpp+3-13
- tests/Sigv4SigningTest.cpp+3-13
- tests/StreamTest.cpp+3-13
- tests/TLSContextTest.cpp+3-13
- tests/TypesTest.cpp+31
- tests/UUIDTest.cpp+3-13
- update-version.sh+27
Lines changed: 7 additions & 14 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
190 | 190 |
| |
191 | 191 |
| |
192 | 192 |
| |
193 |
| - | |
194 |
| - | |
195 |
| - | |
196 |
| - | |
| 193 | + | |
| 194 | + | |
197 | 195 |
| |
198 | 196 |
| |
199 | 197 |
| |
| |||
256 | 254 |
| |
257 | 255 |
| |
258 | 256 |
| |
259 |
| - | |
260 |
| - | |
| 257 | + | |
261 | 258 |
| |
262 | 259 |
| |
263 | 260 |
| |
| |||
274 | 271 |
| |
275 | 272 |
| |
276 | 273 |
| |
277 |
| - | |
278 |
| - | |
| 274 | + | |
279 | 275 |
| |
280 | 276 |
| |
281 | 277 |
| |
| |||
301 | 297 |
| |
302 | 298 |
| |
303 | 299 |
| |
304 |
| - | |
305 |
| - | |
| 300 | + | |
306 | 301 |
| |
307 | 302 |
| |
308 | 303 |
| |
| |||
323 | 318 |
| |
324 | 319 |
| |
325 | 320 |
| |
326 |
| - | |
327 |
| - | |
| 321 | + | |
328 | 322 |
| |
329 | 323 |
| |
330 | 324 |
| |
| |||
373 | 367 |
| |
374 | 368 |
| |
375 | 369 |
| |
376 |
| - | |
377 |
| - | |
| 370 | + | |
378 | 371 |
| |
379 | 372 |
| |
380 | 373 |
| |
|
Lines changed: 43 additions & 58 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
183 | 183 |
| |
184 | 184 |
| |
185 | 185 |
| |
186 |
| - | |
| 186 | + | |
187 | 187 |
| |
188 | 188 |
| |
189 | 189 |
| |
| |||
206 | 206 |
| |
207 | 207 |
| |
208 | 208 |
| |
209 |
| - | |
210 |
| - | |
211 |
| - | |
212 |
| - | |
| 209 | + | |
| 210 | + | |
213 | 211 |
| |
214 | 212 |
| |
215 | 213 |
| |
| |||
218 | 216 |
| |
219 | 217 |
| |
220 | 218 |
| |
221 |
| - | |
| 219 | + | |
222 | 220 |
| |
223 | 221 |
| |
224 | 222 |
| |
225 | 223 |
| |
226 |
| - | |
| 224 | + | |
227 | 225 |
| |
228 |
| - | |
229 |
| - | |
230 |
| - | |
231 | 226 |
| |
232 | 227 |
| |
233 | 228 |
| |
| |||
236 | 231 |
| |
237 | 232 |
| |
238 | 233 |
| |
239 |
| - | |
| 234 | + | |
240 | 235 |
| |
241 |
| - | |
242 | 236 |
| |
243 | 237 |
| |
244 | 238 |
| |
| |||
254 | 248 |
| |
255 | 249 |
| |
256 | 250 |
| |
257 |
| - | |
258 |
| - | |
259 |
| - | |
260 |
| - | |
261 |
| - | |
| 251 | + | |
262 | 252 |
| |
263 | 253 |
| |
264 | 254 |
| |
265 |
| - | |
266 |
| - | |
267 |
| - | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
268 | 258 |
| |
269 |
| - | |
270 |
| - | |
271 |
| - | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
272 | 262 |
| |
273 |
| - | |
274 |
| - | |
275 |
| - | |
| 263 | + | |
| 264 | + | |
| 265 | + | |
276 | 266 |
| |
277 | 267 |
| |
278 | 268 |
| |
| |||
281 | 271 |
| |
282 | 272 |
| |
283 | 273 |
| |
284 |
| - | |
285 |
| - | |
| 274 | + | |
286 | 275 |
| |
287 | 276 |
| |
288 | 277 |
| |
| |||
293 | 282 |
| |
294 | 283 |
| |
295 | 284 |
| |
296 |
| - | |
297 |
| - | |
| 285 | + | |
298 | 286 |
| |
299 | 287 |
| |
300 | 288 |
| |
301 | 289 |
| |
302 | 290 |
| |
303 | 291 |
| |
304 | 292 |
| |
| 293 | + | |
305 | 294 |
| |
306 |
| - | |
307 |
| - | |
| 295 | + | |
308 | 296 |
| |
309 | 297 |
| |
310 | 298 |
| |
| |||
346 | 334 |
| |
347 | 335 |
| |
348 | 336 |
| |
349 |
| - | |
350 |
| - | |
| 337 | + | |
351 | 338 |
| |
352 | 339 |
| |
353 | 340 |
| |
| |||
358 | 345 |
| |
359 | 346 |
| |
360 | 347 |
| |
361 |
| - | |
362 |
| - | |
| 348 | + | |
363 | 349 |
| |
364 | 350 |
| |
365 | 351 |
| |
366 | 352 |
| |
367 | 353 |
| |
368 | 354 |
| |
369 | 355 |
| |
| 356 | + | |
370 | 357 |
| |
371 |
| - | |
372 |
| - | |
| 358 | + | |
373 | 359 |
| |
374 | 360 |
| |
375 | 361 |
| |
| |||
411 | 397 |
| |
412 | 398 |
| |
413 | 399 |
| |
414 |
| - | |
415 |
| - | |
| 400 | + | |
416 | 401 |
| |
417 | 402 |
| |
418 | 403 |
| |
419 | 404 |
| |
420 | 405 |
| |
421 | 406 |
| |
| 407 | + | |
422 | 408 |
| |
423 |
| - | |
424 |
| - | |
| 409 | + | |
425 | 410 |
| |
426 | 411 |
| |
427 | 412 |
| |
| |||
460 | 445 |
| |
461 | 446 |
| |
462 | 447 |
| |
463 |
| - | |
464 |
| - | |
| 448 | + | |
465 | 449 |
| |
466 | 450 |
| |
467 | 451 |
| |
| |||
514 | 498 |
| |
515 | 499 |
| |
516 | 500 |
| |
517 |
| - | |
518 |
| - | |
519 |
| - | |
520 |
| - | |
521 |
| - | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
522 | 507 |
| |
523 | 508 |
| |
524 | 509 |
| |
| |||
571 | 556 |
| |
572 | 557 |
| |
573 | 558 |
| |
574 |
| - | |
575 |
| - | |
576 |
| - | |
577 |
| - | |
578 |
| - | |
| 559 | + | |
| 560 | + | |
| 561 | + | |
| 562 | + | |
| 563 | + | |
| 564 | + | |
579 | 565 |
| |
580 | 566 |
| |
581 | 567 |
| |
582 |
| - | |
| 568 | + | |
| 569 | + | |
583 | 570 |
| |
584 |
| - | |
585 |
| - | |
586 |
| - | |
| 571 | + | |
587 | 572 |
| |
588 | 573 |
| |
589 | 574 |
|
0 commit comments