Karl
Karl
Hi! I really love the live URL viewer; I use it all the time when I need to quickly check something. But there is one issue that is a little...
With https://github.com/whatwg/meta/pull/238 we now have 5 bugs to file for normative changes, across 5 different issue trackers, and that still does not cover all interested parties. For example, I would...
### Overview Currently, the bot which generates binaries appears to only do so for Windows and Linux ([example](https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.763)):  It would be nice to provide builds for macOS users, too....
This requirement seems to be too restrictive. The test works for me as-is on an M2 Max (removing the REQUIRES line, of course). I assume the intention is to limit...
Allows protocols to be nested in non-generic types/functions. Gated behind flag `-enable-experimental-feature NestedProtocols`. SE proposal coming soon. TODO: - [ ] Test that ASTPrinter adds feature guards around uses of...
I have a function which makes use of `FilePath(cString:)`, so it can be used as far back as macOS 11/iOS 14. Now, I'm getting a warning that that initializer has...
### Background [RFC-3986](https://www.rfc-editor.org/rfc/rfc3986#section-2.2) reserves two kinds of delimiters: - `gen-delims`, which are used by the URL syntax itself (things like `?` and `#`), and - `sub-delims`, which are available for...
- A URL's opaque path can contain trailing spaces if there is a query or fragment after it - This presents a problem, because if the URL somehow loses its...
Resolves #784 I'll do the tests/bugs/etc if we're okay with this approach (escaping trailing spaces rather than trimming them). PR is for discussion at this point. --- - [ ]...
These operations are not valid: https://github.com/sindresorhus/normalize-url/blob/3c7235ebb06a6ec8b753d4d9d24d0b7adf2d425b/index.js#L178-L183 https://github.com/sindresorhus/normalize-url/blob/3c7235ebb06a6ec8b753d4d9d24d0b7adf2d425b/index.js#L243-L245 Since URLs are a textual format, certain characters have semantic meaning. Percent-encoding can be used to escape those characters. For example, if we...