Skip to content

Commit 5bd3f6c

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 6055134 commit 5bd3f6c

File tree

6 files changed

+285
-95
lines changed

6 files changed

+285
-95
lines changed

deps/uvwasi/include/fd_table.h

-1
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
struct uvwasi_s;
109

deps/uvwasi/include/uvwasi.h

+2-2
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
#define UVWASI_VERSION_MAJOR 0
1313
#define UVWASI_VERSION_MINOR 0
14-
#define UVWASI_VERSION_PATCH 3
14+
#define UVWASI_VERSION_PATCH 4
1515
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
1616
(UVWASI_VERSION_MINOR << 8) | \
1717
(UVWASI_VERSION_PATCH))
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)