Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create a new pull request by comparing changes across two branches #1021

Merged
merged 25 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c6a72f2
src: change SetEncodedValue to return Maybe<void>
tniessen Aug 26, 2024
05bd3cf
test: force spec reporter in test-runner-watch-mode.mjs
cjihrig Aug 26, 2024
8f1fa03
src: use better return types in KVStore
targos Aug 24, 2024
eab97b5
src: return `v8::Object` from error constructors
targos Aug 24, 2024
4ce9864
src: handle errors correctly in `permission.cc`
targos Aug 24, 2024
4f1c27a
src: handle errors correctly in webstorage
targos Aug 26, 2024
3a71ccf
tools: remove unused python files
RedYetiDev Aug 26, 2024
3d5357a
test: refactor test_runner tests to change default reporter
cjihrig Aug 27, 2024
b39fad6
deps: update c-ares to v1.33.1
nodejs-github-bot Aug 27, 2024
c00ea01
buffer: allow invalid encoding in from
ronag Aug 27, 2024
74ea78d
src: remove redundant AESCipherMode
tniessen Aug 27, 2024
dd8eeec
buffer: truncate instead of throw when writing beyond buffer
ronag Aug 27, 2024
431ac16
node-api: remove RefBase and CallbackWrapper
vmoroz Aug 27, 2024
6bf7b6e
src: move more crypto_dh.cc code to ncrypto
jasnell Aug 19, 2024
5e6aab0
module: use amaro default transform values
marco-ippolito Aug 23, 2024
ba07067
zlib: simplify validators
anonrig Aug 27, 2024
eb7e18f
test_runner: always make spec the default reporter
cjihrig Aug 27, 2024
589a60e
doc: add note about shasum generation failure
marco-ippolito Aug 27, 2024
a7271ab
lib: fix emit warning for debuglog.time when disabled
H4ad Aug 27, 2024
d813634
doc: support collaborators - talk amplification
mhdawson Aug 22, 2024
ebaabf6
deps: backport ICU-22787 to fix ClangCL on Windows
StefanStojanovic Aug 27, 2024
342b501
doc: fix information about including coverage files
RedYetiDev Aug 27, 2024
0b3ae01
test: fix embedding test for Windows
vmoroz Aug 27, 2024
885692a
doc: run license-builder
github-actions[bot] Aug 28, 2024
4f14eb1
Revert "net: validate host name for server listen"
jakecastelli Aug 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ The externally maintained libraries used by Node.js are:
SOFTWARE.
"""

- swc, located at deps/amaro, is licensed as follows:
- swc, located at deps/amaro/dist, is licensed as follows:
"""
Apache License
Version 2.0, January 2004
Expand Down
15 changes: 7 additions & 8 deletions deps/cares/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ INCLUDE (CheckCSourceCompiles)
INCLUDE (CheckStructHasMember)
INCLUDE (CheckLibraryExists)

PROJECT (c-ares LANGUAGES C VERSION "1.33.0" )
PROJECT (c-ares LANGUAGES C VERSION "1.33.1" )

# Set this version before release
SET (CARES_VERSION "${PROJECT_VERSION}")
Expand All @@ -30,7 +30,7 @@ INCLUDE (GNUInstallDirs) # include this *AFTER* PROJECT(), otherwise paths are w
# For example, a version of 4:0:2 would generate output such as:
# libname.so -> libname.so.2
# libname.so.2 -> libname.so.2.2.0
SET (CARES_LIB_VERSIONINFO "20:0:18")
SET (CARES_LIB_VERSIONINFO "20:1:18")


OPTION (CARES_STATIC "Build as a static library" OFF)
Expand Down Expand Up @@ -772,12 +772,11 @@ IF (CARES_INSTALL)
INSTALL (EXPORT ${PROJECT_NAME}-targets COMPONENT Devel DESTINATION ${CMAKECONFIG_INSTALL_DIR} NAMESPACE ${PROJECT_NAME}::)
INSTALL (FILES "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config.cmake" "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config-version.cmake" COMPONENT Devel DESTINATION ${CMAKECONFIG_INSTALL_DIR})

# pkgconfig support
IF (NOT CARES_SHARED)
FOREACH (LIB ${CARES_DEPENDENT_LIBS})
SET (CARES_PRIVATE_LIBS "${CARES_PRIVATE_LIBS} -l${LIB}")
ENDFOREACH ()
ENDIF ()
# pkgconfig support for static builds
FOREACH (LIB ${CARES_DEPENDENT_LIBS})
SET (CARES_PRIVATE_LIBS "${CARES_PRIVATE_LIBS} -l${LIB}")
ENDFOREACH ()

CONFIGURE_FILE("libcares.pc.cmake" "libcares.pc" @ONLY)
INSTALL (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcares.pc" COMPONENT Devel DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
ENDIF ()
Expand Down
2 changes: 2 additions & 0 deletions deps/cares/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,8 @@ FGREP = @FGREP@
FILECMD = @FILECMD@
GCOV = @GCOV@
GENHTML = @GENHTML@
GMOCK112_CFLAGS = @GMOCK112_CFLAGS@
GMOCK112_LIBS = @GMOCK112_LIBS@
GMOCK_CFLAGS = @GMOCK_CFLAGS@
GMOCK_LIBS = @GMOCK_LIBS@
GREP = @GREP@
Expand Down
32 changes: 32 additions & 0 deletions deps/cares/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
## c-ares version 1.33.1 - August 23 2024

This is a bugfix release.

Bugfixes:
* Work around systemd-resolved quirk that returns unexpected codes for single
label names. Also adds test cases to validate the work around works and
will continue to work in future releases.
[PR #863](https://github.com/c-ares/c-ares/pull/863),
See Also https://github.com/systemd/systemd/issues/34101
* Fix sysconfig ndots default value, also adds containerized test case to
prevent future regressions.
[PR #862](https://github.com/c-ares/c-ares/pull/862)
* Fix blank DNS name returning error code rather than valid record for
commands like: `adig -t SOA .`. Also adds test case to prevent future
regressions.
[9e574af](https://github.com/c-ares/c-ares/commit/9e574af)
* Fix calculation of query times > 1s.
[2b2eae7](https://github.com/c-ares/c-ares/commit/2b2eae7)
* Fix building on old Linux releases that don't have `TCP_FASTOPEN_CONNECT`.
[b7a89b9](https://github.com/c-ares/c-ares/commit/b7a89b9)
* Fix minor Android build warnings.
[PR #848](https://github.com/c-ares/c-ares/pull/848)

Thanks go to these friendly people for their efforts and contributions for this
release:
* Brad House (@bradh352)
* Erik Lax (@eriklax)
* Hans-Christian Egtvedt (@egtvedt)
* Mikael Lindemann (@mikaellindemann)
* Nodar Chkuaselidze (@nodech)

## c-ares version 1.33.0 - August 2 2024

This is a feature and bugfix release.
Expand Down
2 changes: 1 addition & 1 deletion deps/cares/aminclude_static.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# aminclude_static.am generated automatically by Autoconf
# from AX_AM_MACROS_STATIC on Fri Aug 2 08:48:39 EDT 2024
# from AX_AM_MACROS_STATIC on Fri Aug 23 09:37:25 EDT 2024


# Code coverage
Expand Down
Loading
Loading