mirror of https://github.com/nodejs/node.git
deps: update zlib to 1.2.13.1-motley-dfc48fc
PR-URL: https://github.com/nodejs/node/pull/50456 Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>pull/50505/head
parent
a3e09b3fdd
commit
538d0c2a3f
|
@ -157,7 +157,7 @@ class ZipReaderTest : public PlatformTest {
|
|||
|
||||
static base::FilePath GetTestDataDirectory() {
|
||||
base::FilePath path;
|
||||
CHECK(base::PathService::Get(base::DIR_SOURCE_ROOT, &path));
|
||||
CHECK(base::PathService::Get(base::DIR_SRC_TEST_DATA_ROOT, &path));
|
||||
return path.AppendASCII("third_party")
|
||||
.AppendASCII("zlib")
|
||||
.AppendASCII("google")
|
||||
|
|
|
@ -206,7 +206,7 @@ class VirtualFileSystem : public zip::FileAccessor {
|
|||
|
||||
info->is_directory = !files_.count(path);
|
||||
info->last_modified =
|
||||
base::Time::FromDoubleT(172097977); // Some random date.
|
||||
base::Time::FromSecondsSinceUnixEpoch(172097977); // Some random date.
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -256,7 +256,7 @@ class ZipTest : public PlatformTest {
|
|||
|
||||
static base::FilePath GetDataDirectory() {
|
||||
base::FilePath path;
|
||||
bool success = base::PathService::Get(base::DIR_SOURCE_ROOT, &path);
|
||||
bool success = base::PathService::Get(base::DIR_SRC_TEST_DATA_ROOT, &path);
|
||||
EXPECT_TRUE(success);
|
||||
return std::move(path)
|
||||
.AppendASCII("third_party")
|
||||
|
|
|
@ -31,7 +31,7 @@ This a list of all the dependencies:
|
|||
* [undici 5.27.0][]
|
||||
* [uvwasi 0.0.19][]
|
||||
* [V8 11.8.172.12][]
|
||||
* [zlib 1.2.13.1-motley-fef5869][]
|
||||
* [zlib 1.2.13.1-motley-dfc48fc][]
|
||||
|
||||
Any code which meets one or more of these conditions should
|
||||
be managed as a dependency:
|
||||
|
@ -311,7 +311,7 @@ See [maintaining-web-assembly][] for more informations.
|
|||
high-performance JavaScript and WebAssembly engine, written in C++.
|
||||
See [maintaining-V8][] for more informations.
|
||||
|
||||
### zlib 1.2.13.1-motley-fef5869
|
||||
### zlib 1.2.13.1-motley-dfc48fc
|
||||
|
||||
The [zlib](https://chromium.googlesource.com/chromium/src/+/refs/heads/main/third_party/zlib)
|
||||
dependency lossless data-compression library,
|
||||
|
@ -349,4 +349,4 @@ performance improvements not currently available in standard zlib.
|
|||
[update-openssl-action]: ../../../.github/workflows/update-openssl.yml
|
||||
[uvwasi 0.0.19]: #uvwasi-0019
|
||||
[v8 11.8.172.12]: #v8-11817212
|
||||
[zlib 1.2.13.1-motley-fef5869]: #zlib-12131-motley-fef5869
|
||||
[zlib 1.2.13.1-motley-dfc48fc]: #zlib-12131-motley-dfc48fc
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// Refer to tools/dep_updaters/update-zlib.sh
|
||||
#ifndef SRC_ZLIB_VERSION_H_
|
||||
#define SRC_ZLIB_VERSION_H_
|
||||
#define ZLIB_VERSION "1.2.13.1-motley-fef5869"
|
||||
#define ZLIB_VERSION "1.2.13.1-motley-dfc48fc"
|
||||
#endif // SRC_ZLIB_VERSION_H_
|
||||
|
|
Loading…
Reference in New Issue