Skip to content

Commit 676e3c3

Browse files
cjihrigcodebytere
authored andcommitted
deps,test: update to uvwasi 0.0.4
This commit updates the uvwasi dependency to version 0.0.4. The most notable change is a refactor of the way paths are resolved. All paths, including symlinks, are now resolved in terms of sandboxed paths instead of leaking host system paths. PR-URL: #31363 Reviewed-By: David Carlier <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent d944fa7 commit 676e3c3

File tree

6 files changed

+285
-95
lines changed

6 files changed

+285
-95
lines changed

‎deps/uvwasi/include/fd_table.h‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#include<stdint.h>
55
#include"uv.h"
66
#include"wasi_types.h"
7-
#include"uv_mapping.h"
87

98
structuvwasi_s;
109

‎deps/uvwasi/include/uvwasi.h‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
extern"C"{
66
#endif
77

8+
#include"uv.h"
89
#include"wasi_types.h"
9-
#include"uv_mapping.h"
1010
#include"fd_table.h"
1111

1212
#defineUVWASI_VERSION_MAJOR 0
1313
#defineUVWASI_VERSION_MINOR 0
14-
#defineUVWASI_VERSION_PATCH3
14+
#defineUVWASI_VERSION_PATCH4
1515
#defineUVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
1616
(UVWASI_VERSION_MINOR << 8) | \
1717
(UVWASI_VERSION_PATCH))

0 commit comments

Comments
(0)