Releases: leancodepl/flutter_corelibrary
Releases · leancodepl/flutter_corelibrary
cqrs-v7.0.0
- Breaking: Rename
CQRS
and similar toCqrs
per Effective Dart. - Breaking: Remove
IRemoteQuery
andIRemoteCommand
. Use their equivalentsQuery
andCommand
respectively. - Add new transport type
Operation
which is aQuery
with side effects of aCommand
.
override_api_endpoint-v1.0.0+1
Update README usage section (#53) * Update README usage section * Bump override_api_endpoint to 1.0.0+1 * Remove unused codecov badge * Lock lint package version on the last supported version
leancode_lint-v1.0.0
- Initial release
override_api_endpoint-v1.0.0
override_api_endpoint
Overrides and persists default API endpoint for the test environment.
The deeplinkOverrideSegment
is the part of deeplink that uniquely
identifies deeplink that is used to override API endpoint
eg. override
in app://app/override?apiAddress=https%3A%2F%2Fexample.com
The deeplinkQueryParameter
is the query parameter of the override API
endpoint deeplink that contains url encoded API endpoint to be used
eg. apiAddress
in app://app/override?apiAddress=https%3A%2F%2Fexample.com
The defaultEndpoint
is fallback url that should be used if app does not
have any endpoint introduced via deeplink or if deeplinkQueryParameter
is
not provided
Usage
final apiEndpoint = await overrideApiEndpoint(
'override',
'apiAddress',
Uri.parse('https://api.example.com/'),
);
login_client-v2.0.3
- Try refreshing the token on
401 Unauthorized
response
login_client-v2.0.2
- Fix closing default HTTP client after logging out.
login_client_flutter-v2.0.0
- Breaking: Migrate to null-safety.
- Breaking: Bump minimum Dart version to 2.12.
- Breaking: Bump minimum Flutter version to 2.0.
login_client-v2.0.1
- Downgrade
meta
dependency from1.4.0
to1.3.0
.
login_client-v2.0.0
- Breaking: Migrate to null-safety.
- Breaking: Bump minimum Dart version to 2.12.
- Breaking: Remove deprecated
credentialsChangedCallback
parameter fromLoginClient
constructor.
cqrs-v6.0.0
- Stable null-safe release.
- Breaking: Bump minimum Dart version to 2.12.