diff --git a/.github/workflows/npm_release.yml b/.github/workflows/npm_release.yml index a94d3775..01305770 100644 --- a/.github/workflows/npm_release.yml +++ b/.github/workflows/npm_release.yml @@ -63,12 +63,12 @@ jobs: - name: Upload npm package artifact uses: actions/upload-artifact@v4 with: - name: npm-package-${{ matrix.runs-on }} + name: npm-package path: dist/nativescript-ios-${{steps.npm_version_output.outputs.NPM_VERSION}}.tgz - name: Upload dSYMs artifact uses: actions/upload-artifact@v4 with: - name: NativeScript-dSYMs-${{ matrix.runs-on }} + name: NativeScript-dSYMs path: dist/dSYMs test: name: Test @@ -124,7 +124,7 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: test-results-${{ matrix.runs-on }} + name: test-results path: ${{env.TEST_FOLDER}}/test_results.xcresult publish: runs-on: ubuntu-latest diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 6fef3bda..0922e0a4 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -47,12 +47,12 @@ jobs: - name: Upload npm package artifact uses: actions/upload-artifact@v4 with: - name: npm-package-${{ matrix.runs-on }} + name: npm-package path: dist/nativescript-ios-${{env.NPM_VERSION}}.tgz - name: Upload dSYMs artifact uses: actions/upload-artifact@v4 with: - name: NativeScript-dSYMs-${{ matrix.runs-on }} + name: NativeScript-dSYMs path: dist/dSYMs test: name: Test @@ -107,5 +107,5 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: test-results-${{ matrix.runs-on }} + name: test-results path: ${{env.TEST_FOLDER}}/test_results.xcresult diff --git a/NativeScript/ada/ada.cpp b/NativeScript/ada/ada.cpp index 29e451c1..4537123d 100644 --- a/NativeScript/ada/ada.cpp +++ b/NativeScript/ada/ada.cpp @@ -1,4 +1,4 @@ -/* auto-generated on 2025-02-23 20:08:55 -0500. Do not edit! */ +/* auto-generated on 2025-02-26 20:29:12 -0500. Do not edit! */ /* begin file src/ada.cpp */ #include "ada.h" /* begin file src/checkers.cpp */ diff --git a/NativeScript/ada/ada.h b/NativeScript/ada/ada.h index 999b33f8..a52775e8 100644 --- a/NativeScript/ada/ada.h +++ b/NativeScript/ada/ada.h @@ -1,4 +1,4 @@ -/* auto-generated on 2025-02-23 20:08:55 -0500. Do not edit! */ +/* auto-generated on 2025-02-26 20:29:12 -0500. Do not edit! */ /* begin file include/ada.h */ /** * @file ada.h @@ -290,7 +290,8 @@ bool valid_name_code_point(char32_t input, bool first); ADA_DISABLE_GCC_WARNING("-Wreturn-type") \ ADA_DISABLE_GCC_WARNING("-Wshadow") \ ADA_DISABLE_GCC_WARNING("-Wunused-parameter") \ - ADA_DISABLE_GCC_WARNING("-Wunused-variable") + ADA_DISABLE_GCC_WARNING("-Wunused-variable") \ + ADA_DISABLE_GCC_WARNING("-Wsign-compare") #define ADA_PRAGMA(P) _Pragma(#P) #define ADA_DISABLE_GCC_WARNING(WARNING) \ ADA_PRAGMA(GCC diagnostic ignored WARNING) @@ -9202,25 +9203,24 @@ result> url_pattern::match( // https://github.com/cloudflare/workerd/blob/8620d14012513a6ce04d079e401d3becac3c67bd/src/workerd/jsg/url.c%2B%2B#L2038 protocol = url->get_protocol().substr(0, url->get_protocol().size() - 1); // Set username to url’s username. - username = std::move(url->get_username()); + username = url->get_username(); // Set password to url’s password. - password = std::move(url->get_password()); + password = url->get_password(); // Set hostname to url’s host, serialized, or the empty string if the value // is null. - hostname = std::move(url->get_hostname()); + hostname = url->get_hostname(); // Set port to url’s port, serialized, or the empty string if the value is // null. - port = std::move(url->get_port()); + port = url->get_port(); // Set pathname to the result of URL path serializing url. - pathname = std::move(url->get_pathname()); + pathname = url->get_pathname(); // Set search to url’s query or the empty string if the value is null. // IMPORTANT: Not documented on the URLPattern spec, but search prefix '?' // is removed. Similar work was done on workerd: // https://github.com/cloudflare/workerd/blob/8620d14012513a6ce04d079e401d3becac3c67bd/src/workerd/jsg/url.c%2B%2B#L2232 if (url->has_search()) { auto view = url->get_search(); - search = - view.starts_with("?") ? url->get_search().substr(1) : std::move(view); + search = view.starts_with("?") ? url->get_search().substr(1) : view; } // Set hash to url’s fragment or the empty string if the value is null. // IMPORTANT: Not documented on the URLPattern spec, but hash prefix '#' is @@ -9228,8 +9228,7 @@ result> url_pattern::match( // https://github.com/cloudflare/workerd/blob/8620d14012513a6ce04d079e401d3becac3c67bd/src/workerd/jsg/url.c%2B%2B#L2242 if (url->has_hash()) { auto view = url->get_hash(); - hash = - view.starts_with("#") ? url->get_hash().substr(1) : std::move(view); + hash = view.starts_with("#") ? url->get_hash().substr(1) : view; } } @@ -9456,7 +9455,8 @@ constructor_string_parser::is_non_special_pattern_char( // If token’s value is not value, then return false. // TODO: Remove this once we make sure get_safe_token returns a non-empty // string. - if (!token->value.empty() && token->value[0] != value) { + if (!token->value.empty() && + static_cast(token->value[0]) != value) { return false; } @@ -10454,14 +10454,14 @@ constructor_string_parser::parse(std::string_view input) { #ifndef ADA_ADA_VERSION_H #define ADA_ADA_VERSION_H -#define ADA_VERSION "3.1.1" +#define ADA_VERSION "3.1.3" namespace ada { enum { ADA_VERSION_MAJOR = 3, ADA_VERSION_MINOR = 1, - ADA_VERSION_REVISION = 1, + ADA_VERSION_REVISION = 3, }; } // namespace ada diff --git a/package.json b/package.json index 0aa33ad1..a39e835d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@nativescript/ios", "description": "NativeScript Runtime for iOS", - "version": "8.9.0", + "version": "8.9.1", "keywords": [ "NativeScript", "iOS", @@ -44,4 +44,4 @@ "clang-format -i" ] } -} \ No newline at end of file +} pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy