Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b73e18b

Browse filesBrowse files
deps: update ada to 2.6.7
PR-URL: #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 baf2256 commit b73e18b
Copy full SHA for b73e18b

File tree

Expand file treeCollapse file tree

4 files changed

+16
-7
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

4 files changed

+16
-7
lines changed
Open diff view settings
Collapse file

‎deps/ada/ada.cpp‎

Copy file name to clipboardExpand all lines: deps/ada/ada.cpp
+9-1Lines changed: 9 additions & 1 deletion
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 */
@@ -15009,6 +15009,14 @@ uint8_t ada_get_host_type(ada_url result) noexcept {
1500915009
return r->host_type;
1501015010
}
1501115011

15012+
uint8_t ada_get_scheme_type(ada_url result) noexcept {
15013+
ada::result<ada::url_aggregator>& r = get_instance(result);
15014+
if (!r) {
15015+
return 0;
15016+
}
15017+
return r->type;
15018+
}
15019+
1501215020
bool ada_set_href(ada_url result, const char* input, size_t length) noexcept {
1501315021
ada::result<ada::url_aggregator>& r = get_instance(result);
1501415022
if (!r) {
Collapse file

‎deps/ada/ada.h‎

Copy file name to clipboardExpand all lines: deps/ada/ada.h
+3-3Lines changed: 3 additions & 3 deletions
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
@@ -6926,14 +6926,14 @@ inline void url_search_params::sort() {
69266926
#ifndef ADA_ADA_VERSION_H
69276927
#define ADA_ADA_VERSION_H
69286928

6929-
#define ADA_VERSION "2.6.5"
6929+
#define ADA_VERSION "2.6.7"
69306930

69316931
namespace ada {
69326932

69336933
enum {
69346934
ADA_VERSION_MAJOR = 2,
69356935
ADA_VERSION_MINOR = 6,
6936-
ADA_VERSION_REVISION = 5,
6936+
ADA_VERSION_REVISION = 7,
69376937
};
69386938

69396939
} // namespace ada
Collapse file

‎deps/ada/ada_c.h‎

Copy file name to clipboardExpand all lines: deps/ada/ada_c.h
+1Lines changed: 1 addition & 0 deletions
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
Collapse file

‎doc/contributing/maintaining/maintaining-dependencies.md‎

Copy file name to clipboardExpand all lines: doc/contributing/maintaining/maintaining-dependencies.md
+3-3Lines changed: 3 additions & 3 deletions
  • Display the source diff
  • Display the rich diff
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 8.10.0][]
12-
* [ada 2.6.5][]
12+
* [ada 2.6.7][]
1313
* [base64 0.5.0][]
1414
* [brotli 1.0.9][]
1515
* [c-ares 1.19.0][]
@@ -150,7 +150,7 @@ The [acorn](https://github.com/acornjs/acorn) dependency is a JavaScript parser.
150150
[acorn-walk](https://github.com/acornjs/acorn/tree/master/acorn-walk) is
151151
an abstract syntax tree walker for the ESTree format.
152152

153-
### ada 2.6.5
153+
### ada 2.6.7
154154

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

321321
[acorn 8.10.0]: #acorn-8100
322-
[ada 2.6.5]: #ada-265
322+
[ada 2.6.7]: #ada-267
323323
[base64 0.5.0]: #base64-050
324324
[brotli 1.0.9]: #brotli-109
325325
[c-ares 1.19.0]: #c-ares-1190

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.