-
Notifications
You must be signed in to change notification settings - Fork 359
Merge release/1.1 to main #332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
lorentey
merged 41 commits into
apple:main
from
lorentey:merge.2023-11-27.release-1.1→main
Nov 27, 2023
Merged
Merge release/1.1 to main #332
lorentey
merged 41 commits into
apple:main
from
lorentey:merge.2023-11-27.release-1.1→main
Nov 27, 2023
The head ref may contain hidden characters: "merge.2023-11-27.release-1.1\u2192main"
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
It turns out `UInt.bitWidth` is getting too eagerly inlined, so conditions based on it trigger spurious “code will never be executed” warnings. Silence those by switching to looking at `MemoryLayout<UInt>`, which doesn’t get turned into a constant *that* early.
[CollectionUtilities] Silence a warning on 32 bit platforms
[BitSet] Fix a thinko in BitSet.isEqualSet
Grab bag of fixes for small test issues
[Xcode] Set a code sign identity in the Xcode project
Rope: Fix trap when replaceSubrange is called on an empty rope
`Rope.find` returns a bogus remainder for the end position
Fix typo Replace this paragraph with a description of your changes and rationale. Provide links to an existing issue or external references/discussions, if appropriate.
Update TreeSet.md
- For CustomStringConvertible, `description` should print elements using `String(reflecting:)` rather than `String(describing:)`, to avoid element output from interfering with syntactically relevant punctuation within structured list displays. - To make this work without making displays overly verbose, make `debugDescription` mostly the same as `description`, except for escaping raw string displays when and if needed. - Avoid printing type names in `debugDescription` — it is generally not helpful, as the type is already easily accessible elsewhere. Including it makes for overly verbose displays when the type serves as an Element of a collection. - Avoid having `debugDescription` return the empty string — it can be confusing when such a description appears in list displays. Resolves apple#301.
Fix CustomStringConvertible/CustomDebugStringConvertible conformances
[1.0][test] Fix typename shadowing warning in Swift 5.9
[1.0][benchmark] Update std::function syntax for current C++
rdar://114659667
[RopeModule] Fix issues in Swift's ABI stable dialect
[CMake, Xcode] Update configurations for alternate build systems
These render the emitted .swiftinterface unusable when the module is built with library evolution enabled.
…ases [RopeModule] Remove unnecessary typealiases
Co-authored-by: Stephen Canon <[email protected]>
[Heap] Improve type-level doc comment
Fix typos: OrderedSet Documentation
[Heap] insert(contentsOf:) Switch to Floyd’s if we’re inserting too many items
# Conflicts: # Tests/_CollectionsTestSupport/MinimalTypes/MinimalDecoder.swift
# Conflicts: # Sources/BitCollections/CMakeLists.txt # Sources/HashTreeCollections/CMakeLists.txt
Member
Author
|
@swift-ci test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a manual merge of recent changes from release/1.1 to main.