Skip to content

chore(deps): update dependency microsoft/stl to v17.14 (master) - abandoned#367

Closed
renovate[bot] wants to merge 4 commits into
masterfrom
renovate/master-microsoft-stl-17.x
Closed

chore(deps): update dependency microsoft/stl to v17.14 (master) - abandoned#367
renovate[bot] wants to merge 4 commits into
masterfrom
renovate/master-microsoft-stl-17.x

Conversation

@renovate

@renovate renovate Bot commented May 20, 2025

Copy link
Copy Markdown

This PR contains the following updates:

Package Update Change
microsoft/STL minor 17.13 -> 17.14

Release Notes

microsoft/STL (microsoft/STL)

v17.14: VS 2022 17.14

Compare Source

  • Merged C++26 features:
  • Merged partial C++26 features:
    • P3471R4 #​5274 Standard Library Hardening
      • Currently disabled by default.
      • This can be enabled (for any Standard mode) by defining _MSVC_STL_HARDENING to 1 project-wide.
      • As C++26 Contracts are not yet implemented, this defaults to calling __fastfail() for hardened precondition violations.
  • Related behavior enhancement:
    • Implemented "destructor tombstones" to mitigate use-after-free mistakes. #​5318
      • Currently disabled by default.
      • This can be enabled by defining _MSVC_STL_DESTRUCTOR_TOMBSTONES to 1 project-wide.
  • Merged LWG issue resolutions:
  • Merged proposed resolutions for LWG issues (not yet accepted for the C++ Working Draft, but we've chosen to implement this speculatively):
  • Fixed bugs:
    • Fixed system_category().message() to prefer US English, followed by the system locale, with an ultimate fallback of FormatMessageA's behavior for dwLanguageId == 0. #​5104
      • This is consistent with generic_category().message() (which always returns US English in our implementation) and has the best chance of returning something intelligible instead of "unknown error" or "???".
      • This fixed a regression that was introduced by #​2669 in VS 2022 17.3.
    • Fixed regex's behavior:
      • To reject bogus character class ranges like R"([\d-e])". #​5158
      • For negated character class escapes (\D for non-digits, \S for non-whitespace, \W for non-words) when matching against Unicode characters:
        • Outside square-bracket character classes. #​5160
        • Inside square-bracket character classes (partially fixed). #​5214
      • For character ranges in case-insensitive mode. #​5164
      • For the basic grammar to parse a single digit for backreferences. #​5167
      • For its internal buffers to grow geometrically. #​5175
      • For the special character . (dot). #​5192
      • For its constructor to accept (null, zero) arguments. #​5211
    • Fixed filesystem::equivalent() to return correct results when shared folders are involved. #​5130
    • Fixed chrono::weekday's constructor to avoid integer overflow for extreme inputs. #​5156
    • Fixed push_range() for stack, queue, and priority_queue to forward the range to c.append_range() when possible, exactly as depicted in the Standard. #​5168
    • Fixed code to call ranges::begin and ranges::end exactly as depicted in the Standard:
    • Fixed compiler errors in range_formatter involving highly unusual contiguous ranges. #​5187
    • Fixed heterogeneous lookup for unordered containers to follow the Standard, allowing braced initializer lists to be used as arguments. #​5208
    • Fixed compiler errors in views::counted involving highly unusual types. #​5223
    • Fixed integer overflow in this_thread::sleep_for() with extremely small units (e.g. picoseconds). #​5237
    • Fixed basic_string::reserve()'s ASan annotations to detect writes to its unused capacity. #​5252
    • Fixed how <format> handles field width for alternate form general floating-point. #​5261
    • Fixed compiler errors when constructing a basic_ispanstream from a modifiable basic_string. #​5309
      • This fixed a regression that was introduced by #​4938 in VS 2022 17.13.
    • Fixed compiler errors when using <format> in a CUDA project, by adding a compiler bug workaround. #​5335
    • Fixed compiler errors when converting between different specializations of basic_const_iterator. #​5325
  • Improved performance:
    • Added vectorized implementations of:
      • basic_string::find() for a character. #​5101
    • Improved the vectorized implementations of:
      • basic_string::find_first_of() and basic_string::find_last_of(). #​5029
    • regex_traits::translate() is now an identity function, as required by the Standard, instead of an expensive locale operation. #​5209
    • The STL now takes advantage of compiler support for C++23 P1169R4 static operator() in earlier Standard modes, slightly improving codegen. #​5284 #​5312
    • Optimized the minstd_rand and minstd_rand0 random number engines by avoiding constant divisions. #​5256
    • Slightly improved move_only_function's constructors to do less work when setting the object to be empty. #​5328
  • Enhanced behavior:
    • std::expected, std::unexpected, and all STL exception types are now marked [[nodiscard]]. #​5174
      • This affects all user-defined functions returning these types by value. It also affects any directly constructed temporaries that are immediately discarded.
    • Deprecated the non-Standard locale::empty() static member function. #​5197
    • Changed the STL to avoid using is_trivial, which is being deprecated in C++26. #​5202
    • Improved the STL's debug checks with better messages and fewer branches. #​5270
  • Improved debugger visualization:
    • Improved the visualizers for basic_string_view and its iterators by suppressing irrelevant pointer values. #​5176
    • Dramatically simplified how the visualizers for basic_string and its iterators are implemented. #​5177
  • Improved test coverage:
    • Simplified the test harness by dropping ctest. Now we always directly invoke stl-lit.py. #​5169
    • Improved the test harness to warn only once when a compiler is missing. #​5199
    • Categorized libcxx test failures. #​5231
    • Updated our LLVM submodule, including new tests. #​5235
    • Added test coverage for the ASan annotations in basic_string::reserve() and vector::reserve(). #​5241
    • Skipped libcxx tests in response to a new compiler warning C5321, which warns when the resolution to CWG-1656 affects a u8 string literal. #​5283
  • Code cleanups:
  • Infrastructure improvements:
    • Updated dependencies. #​5186 #​5247 #​5257 #​5284 #​5335
      • Updated build compiler to VS 2022 17.14 Preview 2 (now required).
      • Updated Clang to 19.1.5 (now required).
      • Updated Google Benchmark to 1.9.1.
      • Updated Python to 3.13.2.
      • Updated VMs to compute-optimized F32as_v6.
  • Updated _MSVC_STL_UPDATE. #​5162 #​5217 #​5264 #​5323

Configuration

📅 Schedule: Branch creation - "after 2am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@sourcery-ai

sourcery-ai Bot commented May 20, 2025

Copy link
Copy Markdown

Reviewer's Guide

This PR increments the microsoft/STL dependency from 17.13 to 17.14 by updating the project’s vendor metadata, ensuring that subsequent builds and tests will pull in the new STL release.

File-Level Changes

Change Details Files
Bump microsoft/STL version
  • Replace 17.13 with 17.14 in the vendor metadata file
erts/emulator/ryu/vendor.info

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

garazdawi added 2 commits May 20, 2025 15:29
This change moves github actions updating to renovate and adds
monitoring of vendored dependencies as well as automatically
providing the code needed for the update.
@renovate renovate Bot force-pushed the renovate/master-microsoft-stl-17.x branch from 4e1e982 to 3ca534e Compare May 20, 2025 13:35
@renovate renovate Bot force-pushed the renovate/master-microsoft-stl-17.x branch from b76b2c6 to 61e4984 Compare May 20, 2025 13:39
@renovate

renovate Bot commented May 20, 2025

Copy link
Copy Markdown
Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate renovate Bot changed the title chore(deps): update dependency microsoft/stl to v17.14 (master) chore(deps): update dependency microsoft/stl to v17.14 (master) - abandoned May 22, 2025
@renovate

renovate Bot commented May 22, 2025

Copy link
Copy Markdown
Author

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

@garazdawi garazdawi closed this May 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant