Skip to content

Commit

Permalink
deps,test: update to uvwasi 0.0.4
Browse files Browse the repository at this point in the history
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: nodejs#31363
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
  • Loading branch information
cjihrig authored and Trott committed Jan 17, 2020
1 parent e43ee37 commit 12ff616
Show file tree
Hide file tree
Showing 6 changed files with 285 additions and 95 deletions.
1 change: 0 additions & 1 deletion deps/uvwasi/include/fd_table.h
Expand Up @@ -4,7 +4,6 @@
#include <stdint.h>
#include "uv.h"
#include "wasi_types.h"
#include "uv_mapping.h"

struct uvwasi_s;

Expand Down
4 changes: 2 additions & 2 deletions deps/uvwasi/include/uvwasi.h
Expand Up @@ -5,13 +5,13 @@
extern "C" {
#endif

#include "uv.h"
#include "wasi_types.h"
#include "uv_mapping.h"
#include "fd_table.h"

#define UVWASI_VERSION_MAJOR 0
#define UVWASI_VERSION_MINOR 0
#define UVWASI_VERSION_PATCH 3
#define UVWASI_VERSION_PATCH 4
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
(UVWASI_VERSION_MINOR << 8) | \
(UVWASI_VERSION_PATCH))
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 12ff616

Please sign in to comment.