Klemen Tusar
Klemen Tusar
> Very unlikely. While it's not a new feature, it's also not a crash or something that severely breaks customers. I see. I was under the impression that https://github.com/flutter/flutter/issues/164458 was...
If it helps, [QsSwift](https://github.com/techouse/qs-swift) (my Swift port of Node’s [qs](https://www.npmjs.com/package/qs)) already parses **URL-encoded form arrays**—including **indexed arrays and arrays of objects**—and can be dropped in as a stop-gap or a...
> **Describe the bug** Table with that definition cause exception: > > ```sql > CREATE TABLE `test` ( > `test` text NOT NULL DEFAULT '[]' > ) ENGINE=InnoDB; > ```...
> But I can't test it with mysql 'cause I've only mariadb instance. 🤷♂️ Perhaps you could spin one up in Docker?
> Is there a way to refer to this commit in the `pubspec.yaml` ? Of course, ```yaml dependency_overrides: cryptography: git: url: https://github.com/techouse/cryptography ref: chore/update-js path: cryptography ``` alternatively, you could...
If you want to avoid params getting dropped/overwritten when a URL already contains a query, you can pre-merge the query yourself with [qs_codec](https://github.com/techouse/qs_codec) (my Python port of the Node.js [qs](https://www.npmjs.com/package/qs)...
If it helps, [QsSwift](https://github.com/techouse/qs-swift) (my Swift port of Node’s [qs](https://www.npmjs.com/package/qs)) already parses indexed arrays and arrays of objects in URL-encoded query/form data—the exact shapes discussed here. These [test examples](https://github.com/techouse/qs-swift/blob/main/Tests/QsSwiftTests/ExampleTests.swift) ```swift...
@ljharb, it seems some of the tests fail because the runners are unable to download a specific Node version, i.e. ``` curl: (56) OpenSSL SSL_read: Connection reset by peer, errno...
@ljharb, have you had a chance to look at this yet? 😊
> This is pretty hard to review. Could you perhaps make a refactoring commit that makes the majority of the changes, and then a fix commit with the test and...