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

Update prebuilds #50

Merged
merged 7 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mirror_drive(
SOURCE qogbhqbcxknrpeotyz7hk4x3mxuf6d9mhb1dxm6ms5sdn6hh1uso
DESTINATION ${PROJECT_SOURCE_DIR}/prebuilds
PREFIX /${target}
CHECKOUT 282
CHECKOUT 288
)

if(target MATCHES "win32")
Expand Down Expand Up @@ -130,8 +130,8 @@ if(NOT TARGET js)
endif()

fetch_package("github:libuv/[email protected]")
fetch_package("github:holepunchto/libutf#c4b7b15")
fetch_package("github:holepunchto/libjs#41e480f")
fetch_package("github:holepunchto/libutf#9509b28")
fetch_package("github:holepunchto/libjs#35e7566")
fetch_package("github:holepunchto/libnapi#324c25c")

add_bare_bundle(
Expand Down
13 changes: 8 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"homepage": "https://github.com/holepunchto/bare#readme",
"dependencies": {
"bare-addon-resolve": "^1.4.1",
"bare-buffer": "^2.0.0",
"bare-buffer": "^3.0.0-0",
"bare-console": "^6.0.0",
"bare-events": "^2.0.0",
"bare-hrtime": "^2.0.0",
Expand Down
20 changes: 15 additions & 5 deletions src/js.def
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ EXPORTS
js_create_error
js_create_external
js_create_external_arraybuffer
js_create_external_string_latin1
js_create_external_string_utf16le
js_create_external_string_utf8
js_create_function
js_create_function_with_ffi
Copy link
Contributor Author

@kasperisager kasperisager Jan 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto on #50 (comment).

js_create_function_with_source
js_create_inspector
js_create_int32
Expand All @@ -42,6 +44,9 @@ EXPORTS
js_create_object
js_create_platform
js_create_promise
js_create_property_key_latin1
js_create_property_key_utf16le
js_create_property_key_utf8
js_create_range_error
js_create_reference
js_create_sharedarraybuffer
Expand All @@ -54,6 +59,7 @@ EXPORTS
js_create_synthetic_module
js_create_threadsafe_function
js_create_type_error
js_create_typed_function
js_create_typedarray
js_create_uint32
js_create_unsafe_arraybuffer
Expand All @@ -75,9 +81,6 @@ EXPORTS
js_escape_handle
js_exit_context
js_fatal_exception
js_ffi_create_function
js_ffi_create_function_info
js_ffi_create_type_info
Comment on lines -78 to -80
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The experimental FFI API is now removed.

js_finish_deferred_teardown_callback
js_get_and_clear_last_exception
js_get_array_length
Expand All @@ -87,6 +90,7 @@ EXPORTS
js_get_boolean
js_get_callback_info
js_get_dataview_info
js_get_dataview_view
js_get_element
js_get_env_loop
js_get_env_platform
Expand All @@ -108,8 +112,11 @@ EXPORTS
js_get_reference_value
js_get_sharedarraybuffer_backing_store
js_get_sharedarraybuffer_info
js_get_string_view
js_get_threadsafe_function_context
js_get_typed_callback_info
js_get_typedarray_info
js_get_typedarray_view
js_get_undefined
js_get_value_bigint_int64
js_get_value_bigint_uint64
Expand Down Expand Up @@ -191,20 +198,23 @@ EXPORTS
js_reference_unref
js_reject_deferred
js_release_arraybuffer_backing_store
js_release_dataview_view
js_release_string_view
js_release_threadsafe_function
js_release_typedarray_view
js_remove_teardown_callback
js_remove_wrap
js_request_garbage_collection
js_resolve_deferred
js_run_module
js_run_script
js_send_inspector_request
js_set_arraybuffer_zero_fill_enabled
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was an internal function previously used by bare-buffer.

js_set_element
js_set_module_export
js_set_named_property
js_set_property
js_strict_equals
js_symbol_for
js_terminate_execution
js_throw
js_throw_error
Expand Down
Loading