Commit 193be51 1 parent 701e100 commit 193be51 Copy full SHA for 193be51
File tree 4 files changed +16
-7
lines changed
doc/contributing/maintaining
4 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 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! */
2
2
/* begin file src/ada.cpp */
3
3
#include "ada.h"
4
4
/* begin file src/checkers.cpp */
@@ -15013,6 +15013,14 @@ uint8_t ada_get_host_type(ada_url result) noexcept {
15013
15013
return r->host_type;
15014
15014
}
15015
15015
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
+
15016
15024
bool ada_set_href(ada_url result, const char* input, size_t length) noexcept {
15017
15025
ada::result<ada::url_aggregator>& r = get_instance(result);
15018
15026
if (!r) {
Original file line number Diff line number Diff line change 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! */
2
2
/* begin file include/ada.h */
3
3
/* *
4
4
* @file ada.h
@@ -6930,14 +6930,14 @@ inline void url_search_params::sort() {
6930
6930
#ifndef ADA_ADA_VERSION_H
6931
6931
#define ADA_ADA_VERSION_H
6932
6932
6933
- #define ADA_VERSION " 2.6.5 "
6933
+ #define ADA_VERSION " 2.6.7 "
6934
6934
6935
6935
namespace ada {
6936
6936
6937
6937
enum {
6938
6938
ADA_VERSION_MAJOR = 2 ,
6939
6939
ADA_VERSION_MINOR = 6 ,
6940
- ADA_VERSION_REVISION = 5 ,
6940
+ ADA_VERSION_REVISION = 7 ,
6941
6941
};
6942
6942
6943
6943
} // namespace ada
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ ada_string ada_get_pathname(ada_url result);
69
69
ada_string ada_get_search (ada_url result );
70
70
ada_string ada_get_protocol (ada_url result );
71
71
uint8_t ada_get_host_type (ada_url result );
72
+ uint8_t ada_get_scheme_type (ada_url result );
72
73
73
74
// url_aggregator setters
74
75
// if ada_is_valid(result)) is false, the setters have no effect
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ All dependencies are located within the `deps` directory.
9
9
This a list of all the dependencies:
10
10
11
11
* [ acorn] [ ]
12
- * [ ada 2.6.5 ] [ ]
12
+ * [ ada 2.6.7 ] [ ]
13
13
* [ base64] [ ]
14
14
* [ brotli] [ ]
15
15
* [ c-ares] [ ]
@@ -148,7 +148,7 @@ The [acorn](https://github.com/acornjs/acorn) dependency is a JavaScript parser.
148
148
[ acorn-walk] ( https://github.com/acornjs/acorn/tree/master/acorn-walk ) is
149
149
an abstract syntax tree walker for the ESTree format.
150
150
151
- ### ada 2.6.5
151
+ ### ada 2.6.7
152
152
153
153
The [ ada] ( https://github.com/ada-url/ada ) dependency is a
154
154
fast and spec-compliant URL parser written in C++.
@@ -312,7 +312,7 @@ it comes from the Chromium team's zlib fork which incorporated
312
312
performance improvements not currently available in standard zlib.
313
313
314
314
[ acorn ] : #acorn
315
- [ ada 2.6.5 ] : #ada-265
315
+ [ ada 2.6.7 ] : #ada-267
316
316
[ base64 ] : #base64
317
317
[ brotli ] : #brotli
318
318
[ c-ares ] : #c-ares
You can’t perform that action at this time.
0 commit comments