mirror of https://github.com/nodejs/node.git
deps: update ada to 2.6.7
PR-URL: https://github.com/nodejs/node/pull/49340 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>pull/49712/head
parent
baf2256617
commit
b73e18b5dc
|
@ -1,4 +1,4 @@
|
|||
/* auto-generated on 2023-08-30 11:44:21 -0400. Do not edit! */
|
||||
/* auto-generated on 2023-09-05 16:55:45 -0400. Do not edit! */
|
||||
/* begin file src/ada.cpp */
|
||||
#include "ada.h"
|
||||
/* begin file src/checkers.cpp */
|
||||
|
@ -15009,6 +15009,14 @@ uint8_t ada_get_host_type(ada_url result) noexcept {
|
|||
return r->host_type;
|
||||
}
|
||||
|
||||
uint8_t ada_get_scheme_type(ada_url result) noexcept {
|
||||
ada::result<ada::url_aggregator>& r = get_instance(result);
|
||||
if (!r) {
|
||||
return 0;
|
||||
}
|
||||
return r->type;
|
||||
}
|
||||
|
||||
bool ada_set_href(ada_url result, const char* input, size_t length) noexcept {
|
||||
ada::result<ada::url_aggregator>& r = get_instance(result);
|
||||
if (!r) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* auto-generated on 2023-08-30 11:44:21 -0400. Do not edit! */
|
||||
/* auto-generated on 2023-09-05 16:55:45 -0400. Do not edit! */
|
||||
/* begin file include/ada.h */
|
||||
/**
|
||||
* @file ada.h
|
||||
|
@ -6926,14 +6926,14 @@ inline void url_search_params::sort() {
|
|||
#ifndef ADA_ADA_VERSION_H
|
||||
#define ADA_ADA_VERSION_H
|
||||
|
||||
#define ADA_VERSION "2.6.5"
|
||||
#define ADA_VERSION "2.6.7"
|
||||
|
||||
namespace ada {
|
||||
|
||||
enum {
|
||||
ADA_VERSION_MAJOR = 2,
|
||||
ADA_VERSION_MINOR = 6,
|
||||
ADA_VERSION_REVISION = 5,
|
||||
ADA_VERSION_REVISION = 7,
|
||||
};
|
||||
|
||||
} // namespace ada
|
||||
|
|
|
@ -69,6 +69,7 @@ ada_string ada_get_pathname(ada_url result);
|
|||
ada_string ada_get_search(ada_url result);
|
||||
ada_string ada_get_protocol(ada_url result);
|
||||
uint8_t ada_get_host_type(ada_url result);
|
||||
uint8_t ada_get_scheme_type(ada_url result);
|
||||
|
||||
// url_aggregator setters
|
||||
// if ada_is_valid(result)) is false, the setters have no effect
|
||||
|
|
|
@ -9,7 +9,7 @@ All dependencies are located within the `deps` directory.
|
|||
This a list of all the dependencies:
|
||||
|
||||
* [acorn 8.10.0][]
|
||||
* [ada 2.6.5][]
|
||||
* [ada 2.6.7][]
|
||||
* [base64 0.5.0][]
|
||||
* [brotli 1.0.9][]
|
||||
* [c-ares 1.19.0][]
|
||||
|
@ -150,7 +150,7 @@ The [acorn](https://github.com/acornjs/acorn) dependency is a JavaScript parser.
|
|||
[acorn-walk](https://github.com/acornjs/acorn/tree/master/acorn-walk) is
|
||||
an abstract syntax tree walker for the ESTree format.
|
||||
|
||||
### ada 2.6.5
|
||||
### ada 2.6.7
|
||||
|
||||
The [ada](https://github.com/ada-url/ada) dependency is a
|
||||
fast and spec-compliant URL parser written in C++.
|
||||
|
@ -319,7 +319,7 @@ it comes from the Chromium team's zlib fork which incorporated
|
|||
performance improvements not currently available in standard zlib.
|
||||
|
||||
[acorn 8.10.0]: #acorn-8100
|
||||
[ada 2.6.5]: #ada-265
|
||||
[ada 2.6.7]: #ada-267
|
||||
[base64 0.5.0]: #base64-050
|
||||
[brotli 1.0.9]: #brotli-109
|
||||
[c-ares 1.19.0]: #c-ares-1190
|
||||
|
|
Loading…
Reference in New Issue