Skip to content

Commit

Permalink
deps: update simdutf to 3.2.17
Browse files Browse the repository at this point in the history
  • Loading branch information
nodejs-github-bot committed Aug 11, 2023
1 parent 05baf5d commit 4abd68a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion deps/simdutf/simdutf.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* auto-generated on 2023-08-04 13:27:03 -0400. Do not edit! */
/* auto-generated on 2023-08-11 13:30:54 -0400. Do not edit! */
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/src, filename=simdutf.cpp
/* begin file src/simdutf.cpp */
#include "simdutf.h"
Expand Down Expand Up @@ -14116,6 +14116,7 @@ result generic_validate_utf8_with_errors(const uint8_t * input, size_t length) {
reader.advance();
c.check_eof();
if (c.errors()) {
if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk
result res = scalar::utf8::rewind_and_validate_with_errors(reinterpret_cast<const char*>(input), reinterpret_cast<const char*>(input) + count, length - count);
res.count += count;
return res;
Expand Down Expand Up @@ -21759,6 +21760,7 @@ result generic_validate_utf8_with_errors(const uint8_t * input, size_t length) {
reader.advance();
c.check_eof();
if (c.errors()) {
if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk
result res = scalar::utf8::rewind_and_validate_with_errors(reinterpret_cast<const char*>(input), reinterpret_cast<const char*>(input) + count, length - count);
res.count += count;
return res;
Expand Down Expand Up @@ -23536,6 +23538,7 @@ result generic_validate_utf8_with_errors(const uint8_t * input, size_t length) {
reader.advance();
c.check_eof();
if (c.errors()) {
if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk
result res = scalar::utf8::rewind_and_validate_with_errors(reinterpret_cast<const char*>(input), reinterpret_cast<const char*>(input) + count, length - count);
res.count += count;
return res;
Expand Down Expand Up @@ -27214,6 +27217,7 @@ result generic_validate_utf8_with_errors(const uint8_t * input, size_t length) {
reader.advance();
c.check_eof();
if (c.errors()) {
if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk
result res = scalar::utf8::rewind_and_validate_with_errors(reinterpret_cast<const char*>(input), reinterpret_cast<const char*>(input) + count, length - count);
res.count += count;
return res;
Expand Down
6 changes: 3 additions & 3 deletions deps/simdutf/simdutf.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* auto-generated on 2023-08-04 13:27:03 -0400. Do not edit! */
/* auto-generated on 2023-08-11 13:30:54 -0400. Do not edit! */
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/include, filename=simdutf.h
/* begin file include/simdutf.h */
#ifndef SIMDUTF_H
Expand Down Expand Up @@ -576,7 +576,7 @@ SIMDUTF_DISABLE_UNDESIRED_WARNINGS
#define SIMDUTF_SIMDUTF_VERSION_H
/** The version of simdutf being used (major.minor.revision) */
#define SIMDUTF_VERSION "3.2.15"
#define SIMDUTF_VERSION "3.2.17"
namespace simdutf {
enum {
Expand All @@ -591,7 +591,7 @@ enum {
/**
* The revision (major.minor.REVISION) of simdutf being used.
*/
SIMDUTF_VERSION_REVISION = 15
SIMDUTF_VERSION_REVISION = 17
};
} // namespace simdutf
Expand Down
6 changes: 3 additions & 3 deletions doc/contributing/maintaining/maintaining-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This a list of all the dependencies:
* [npm 9.6.7][]
* [openssl 3.0.8][]
* [postject 1.0.0-alpha.6][]
* [simdutf 3.2.15][]
* [simdutf 3.2.17][]
* [undici 5.22.1][]
* [uvwasi 0.0.16][]
* [V8 11.3.244.8][]
Expand Down Expand Up @@ -286,7 +286,7 @@ See [maintaining-openssl][] for more informations.
The [postject](https://github.com/nodejs/postject) dependency is used for the
[Single Executable strategic initiative](https://github.com/nodejs/single-executable).

### simdutf 3.2.15
### simdutf 3.2.17

The [simdutf](https://github.com/simdutf/simdutf) dependency is
a C++ library for fast UTF-8 decoding and encoding.
Expand Down Expand Up @@ -344,7 +344,7 @@ performance improvements not currently available in standard zlib.
[npm 9.6.7]: #npm-967
[openssl 3.0.8]: #openssl-308
[postject 1.0.0-alpha.6]: #postject-100-alpha6
[simdutf 3.2.15]: #simdutf-3215
[simdutf 3.2.17]: #simdutf-3217
[undici 5.22.1]: #undici-5221
[update-openssl-action]: ../../../.github/workflows/update-openssl.yml
[uvwasi 0.0.16]: #uvwasi-0016
Expand Down

0 comments on commit 4abd68a

Please sign in to comment.