Klemen Tusar
Klemen Tusar
This pull request includes several updates to the `packages/envied/README.md` file to improve readability and provide additional clarity on the usage of the `envied` package. The most important changes include reformatting...
This pull request introduces enhancements to the MySQL-to-SQLite data transfer process, focusing on foreign key handling, schema metadata extraction, and table creation order computation. Additionally, unit tests have been expanded...
This pull request includes a fix to the `CupertinoSliverNavigationBarState` class in the `nav_bar.dart` file. The change ensures that the `animateTo` method is only called when the `target` is within the...
Updates the Android dependency from: ```groovy implementation 'com.github.scottyab:rootbeer:0.1.0' ``` to ```groovy implementation 'com.scottyab:rootbeer-lib:0.1.1' ``` RootBeer 0.1.1 adds support for devices using 16 KB memory page sizes introduced on newer Android...
### Steps to reproduce 1. Upgrade to v5.1.1 2. Use it on a paginated API 3. It only loads page 1 ### Expected results I would expect it to load...
I have noticed that v5.1.1 only loads page 1 of my items and never attempts to load page 2. It works fine in v5.1.0. After some research I have found...
### Problem `qs` splits bracket groups with a regex that *forbids* `[]` inside a group: ```js var child = /(\[[^[][^\]]*])/g; // original: /(\[[^[\]]*])/g ``` This causes keys like `search[withbracket[]]` to...
This pull request introduces significant updates to the `copyWith` methods for `BaseRequest`, `StreamedRequest`, and related classes, transitioning them to asynchronous operations. It also adds comprehensive test coverage for these changes,...