YOCKOW

Results 14 issues of YOCKOW

> \ takes a single value `status` that must be the full response of [GET statuses/show/:id](https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/get-statuses-show-id) with the parameters `include_entities=true` and `tweet_mode=extended`. As the document says, we can't use the...

enhancement

**Is your feature request related to a problem? Please describe.** As described in https://github.com/bluesky-social/pds/issues/12, any accounts cannot be created when `PDS_HOSTNAME` has some upper-case character(s), because "Not a supported handle...

While nodemailer can parse address with formatted-name such as "`John `", the name part must be enclosed in double quotes if special symbols are contained. That may be complicated because...

### Description `isolated` keyword cannot precede a constant declaration. The compiler must emit an error when such code is found. While Swift 6.0.3 compiler does emit an error correctly, Swift...

bug
compiler
type checker
crash
regression
triage needed
swift 6.1-dev
Swift 6.2-dev

### Description The compiler crashes when you try to assign a value to a property of optional-chained non-copyable type. ### Reproduction ```swift struct NonCopyable: ~Copyable { var value: Int =...

bug
compiler
crash
expressions
optional chaining
assignments
noncopyable struct/enum

This proposal allows `String.Encoding` to be converted to and from various names. For example: ```swift print(String.Encoding.utf8.ianaName!) // Prints "UTF-8" print(String.Encoding(ianaName: "ISO_646.irv:1991") == .ascii) // Prints "true" ```

proposal

**DO NOT MERGE** This is just an experiment for #1176. Context: #1242 that will fix the issue is failing on Windows possibly because of its limited stack.

This is an umbrella issue that is tracking regression of `String.init(data:encoding:)`/`String.data(using:)`. ## `Data` → `String` - [ ] Non-lossy ASCII: https://github.com/swiftlang/swift-foundation/issues/929 ## `String` → `Data` - [ ] Shift_JIS: https://github.com/swiftlang/swift-foundation/issues/925...

Given the following code: ```swift import Foundation print("Hello, world!".data(using: .iso2022JP) as Any) ``` Results are: | OS | Swift | Result | |--------|-------|----------------------| | macOS | 5.10 | "Optional(13 bytes)"...