Skip to content

Commit 6eacd19

Browse files
nodejs-github-botaduh95
authored andcommittedJan 31, 2025
deps: update simdutf to 5.7.0
PR-URL: #56332 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent 4352bf6 commit 6eacd19

File tree

2 files changed

+680
-238
lines changed

2 files changed

+680
-238
lines changed
 

Diff for: ‎deps/simdutf/simdutf.cpp

+669-234
Large diffs are not rendered by default.

Diff for: ‎deps/simdutf/simdutf.h

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2024-12-10 14:54:53 -0500. Do not edit! */
1+
/* auto-generated on 2024-12-17 14:54:59 -0500. Do not edit! */
22
/* begin file include/simdutf.h */
33
#ifndef SIMDUTF_H
44
#define SIMDUTF_H
@@ -675,7 +675,7 @@ SIMDUTF_DISABLE_UNDESIRED_WARNINGS
675675
#define SIMDUTF_SIMDUTF_VERSION_H
676676

677677
/** The version of simdutf being used (major.minor.revision) */
678-
#define SIMDUTF_VERSION "5.6.4"
678+
#define SIMDUTF_VERSION "5.7.0"
679679

680680
namespace simdutf {
681681
enum {
@@ -686,11 +686,11 @@ enum {
686686
/**
687687
* The minor version (major.MINOR.revision) of simdutf being used.
688688
*/
689-
SIMDUTF_VERSION_MINOR = 6,
689+
SIMDUTF_VERSION_MINOR = 7,
690690
/**
691691
* The revision (major.minor.REVISION) of simdutf being used.
692692
*/
693-
SIMDUTF_VERSION_REVISION = 4
693+
SIMDUTF_VERSION_REVISION = 0
694694
};
695695
} // namespace simdutf
696696

@@ -2702,6 +2702,9 @@ simdutf_warn_unused size_t trim_partial_utf16(const char16_t *input,
27022702
size_t length);
27032703

27042704
// base64_options are used to specify the base64 encoding options.
2705+
// ASCII spaces are ' ', '\t', '\n', '\r', '\f'
2706+
// garbage characters are characters that are not part of the base64 alphabet
2707+
// nor ASCII spaces.
27052708
enum base64_options : uint64_t {
27062709
base64_default = 0, /* standard base64 format (with padding) */
27072710
base64_url = 1, /* base64url format (no padding) */
@@ -2711,6 +2714,10 @@ enum base64_options : uint64_t {
27112714
base64_reverse_padding, /* standard base64 format without padding */
27122715
base64_url_with_padding =
27132716
base64_url | base64_reverse_padding, /* base64url with padding */
2717+
base64_default_accept_garbage =
2718+
4, /* standard base64 format accepting garbage characters */
2719+
base64_url_accept_garbage =
2720+
5, /* base64url format accepting garbage characters */
27142721
};
27152722

27162723
// last_chunk_handling_options are used to specify the handling of the last

0 commit comments

Comments
 (0)
Please sign in to comment.