Skip to content

Commit 193be51

Browse files
committed
deps: update ada to 2.6.7
PR-URL: nodejs/node#49340 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent 701e100 commit 193be51

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

graal-nodejs/deps/ada/ada.cpp

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2023-08-30 11:44:21 -0400. Do not edit! */
1+
/* auto-generated on 2023-09-05 16:55:45 -0400. Do not edit! */
22
/* begin file src/ada.cpp */
33
#include "ada.h"
44
/* begin file src/checkers.cpp */
@@ -15013,6 +15013,14 @@ uint8_t ada_get_host_type(ada_url result) noexcept {
1501315013
return r->host_type;
1501415014
}
1501515015

15016+
uint8_t ada_get_scheme_type(ada_url result) noexcept {
15017+
ada::result<ada::url_aggregator>& r = get_instance(result);
15018+
if (!r) {
15019+
return 0;
15020+
}
15021+
return r->type;
15022+
}
15023+
1501615024
bool ada_set_href(ada_url result, const char* input, size_t length) noexcept {
1501715025
ada::result<ada::url_aggregator>& r = get_instance(result);
1501815026
if (!r) {

graal-nodejs/deps/ada/ada.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2023-08-30 11:44:21 -0400. Do not edit! */
1+
/* auto-generated on 2023-09-05 16:55:45 -0400. Do not edit! */
22
/* begin file include/ada.h */
33
/**
44
* @file ada.h
@@ -6930,14 +6930,14 @@ inline void url_search_params::sort() {
69306930
#ifndef ADA_ADA_VERSION_H
69316931
#define ADA_ADA_VERSION_H
69326932

6933-
#define ADA_VERSION "2.6.5"
6933+
#define ADA_VERSION "2.6.7"
69346934

69356935
namespace ada {
69366936

69376937
enum {
69386938
ADA_VERSION_MAJOR = 2,
69396939
ADA_VERSION_MINOR = 6,
6940-
ADA_VERSION_REVISION = 5,
6940+
ADA_VERSION_REVISION = 7,
69416941
};
69426942

69436943
} // namespace ada

graal-nodejs/deps/ada/ada_c.h

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ ada_string ada_get_pathname(ada_url result);
6969
ada_string ada_get_search(ada_url result);
7070
ada_string ada_get_protocol(ada_url result);
7171
uint8_t ada_get_host_type(ada_url result);
72+
uint8_t ada_get_scheme_type(ada_url result);
7273

7374
// url_aggregator setters
7475
// if ada_is_valid(result)) is false, the setters have no effect

graal-nodejs/doc/contributing/maintaining/maintaining-dependencies.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ All dependencies are located within the `deps` directory.
99
This a list of all the dependencies:
1010

1111
* [acorn][]
12-
* [ada 2.6.5][]
12+
* [ada 2.6.7][]
1313
* [base64][]
1414
* [brotli][]
1515
* [c-ares][]
@@ -148,7 +148,7 @@ The [acorn](https://github.com/acornjs/acorn) dependency is a JavaScript parser.
148148
[acorn-walk](https://github.com/acornjs/acorn/tree/master/acorn-walk) is
149149
an abstract syntax tree walker for the ESTree format.
150150

151-
### ada 2.6.5
151+
### ada 2.6.7
152152

153153
The [ada](https://github.com/ada-url/ada) dependency is a
154154
fast and spec-compliant URL parser written in C++.
@@ -312,7 +312,7 @@ it comes from the Chromium team's zlib fork which incorporated
312312
performance improvements not currently available in standard zlib.
313313

314314
[acorn]: #acorn
315-
[ada 2.6.5]: #ada-265
315+
[ada 2.6.7]: #ada-267
316316
[base64]: #base64
317317
[brotli]: #brotli
318318
[c-ares]: #c-ares

0 commit comments

Comments
 (0)