Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Metadata update #219

Merged
merged 3 commits into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/alice/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Added unit tests.
* Updated CI/CD task for tests.
* General refactor of code base.
* Updated metadata.

# 1.0.0-dev.8
* Added storage abstractions (by Klemen Tusar https://github.com/techouse).
Expand Down
1 change: 1 addition & 0 deletions packages/alice/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ description: Alice is an HTTP Inspector tool which helps debugging http requests
version: 1.0.0-dev.9
homepage: https://github.com/jhomlala/alice
repository: https://github.com/jhomlala/alice
topics: http, inspector, dio, chopper, interceptor, alice
jhomlala marked this conversation as resolved.
Show resolved Hide resolved

environment:
sdk: ^3.0.0
Expand Down
4 changes: 4 additions & 0 deletions packages/alice_chopper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.5
* Untrack gitignored files.
* Updated metadata.

# 1.0.4

* Create error log on http exception (by Klemen Tusar https://github.com/techouse).
Expand Down
3 changes: 2 additions & 1 deletion packages/alice_chopper/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: alice_chopper
description: "Alice + Chopper integration. It contains plugin for Alice which allows to use Chopper package."
version: 1.0.4
version: 1.0.5
repository: https://github.com/jhomlala/alice
homepage: https://github.com/jhomlala/alice
topics: http, inspector, alice, chopper, interceptor
jhomlala marked this conversation as resolved.
Show resolved Hide resolved

environment:
sdk: '>=3.4.1 <4.0.0'
Expand Down
5 changes: 5 additions & 0 deletions packages/alice_dio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.0.4

* Untrack gitignored files.
* Updated metadata.

# 1.0.3

* Changed linter from very good analysis to flutter lints.
Expand Down
5 changes: 5 additions & 0 deletions packages/alice_http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.0.4

* Untracked gitignored files.
* Updated metadata.

# 1.0.3

* Changed linter from very good analysis to flutter lints.
Expand Down
3 changes: 2 additions & 1 deletion packages/alice_http/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: alice_http
description: "Alice + HTTP integration. It contains plugin for Alice which allows to use http package."
version: 1.0.3
version: 1.0.4
repository: https://github.com/jhomlala/alice
homepage: https://github.com/jhomlala/alice
topics: http, inspector, alice, interceptor
jhomlala marked this conversation as resolved.
Show resolved Hide resolved

environment:
sdk: '>=3.4.1 <4.0.0'
Expand Down
5 changes: 5 additions & 0 deletions packages/alice_http_client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.0.4

* Untracked gitignored files.
* Updated metadata.

# 1.0.3

* Changed linter from very good analysis to flutter lints.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import 'package:alice/model/alice_http_call.dart';
import 'package:alice/model/alice_http_request.dart';
import 'package:alice/model/alice_http_response.dart';
import 'package:alice/utils/alice_parser.dart';

class AliceHttpClientAdapter with AliceAdapter {
/// Handles httpClientRequest and creates http alice call from it
Expand Down Expand Up @@ -44,7 +43,7 @@
headers[header] = value;
});

httpRequest.headers = AliceParser.parseHeaders(headers: headers);

Check failure on line 46 in packages/alice_http_client/lib/alice_http_client_adapter.dart

View workflow job for this annotation

GitHub Actions / analyze

Undefined name 'AliceParser'.

Try correcting the name to one that is defined, or defining the name. See https://dart.dev/diagnostics/undefined_identifier to learn more about this problem.
String? contentType = 'unknown';
if (headers.containsKey('Content-Type')) {
contentType = headers['Content-Type'];
Expand Down
3 changes: 2 additions & 1 deletion packages/alice_http_client/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: alice_http_client
description: "Alice + HTTP Client integration. It contains plugin for Alice which allows to use Http Client."
version: 1.0.3
version: 1.0.4
repository: https://github.com/jhomlala/alice
homepage: https://github.com/jhomlala/alice
topics: http, inspector, alice, interceptor
jhomlala marked this conversation as resolved.
Show resolved Hide resolved

environment:
sdk: '>=3.4.1 <4.0.0'
Expand Down
7 changes: 6 additions & 1 deletion packages/alice_objectbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.0
# 1.0.1

* Updated documentation.
* Updated metadata.

# 1.0.0

- Initial version.
3 changes: 2 additions & 1 deletion packages/alice_objectbox/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: alice_objectbox
description: "Alice + ObjectBox integration. It contains a plugin for Alice which stores http requests and responses in an ObjectBox NoSQL database."
version: 1.0.0
version: 1.0.1
repository: https://github.com/jhomlala/alice
homepage: https://github.com/jhomlala/alice
topics: http, inspector, alice, interceptor
jhomlala marked this conversation as resolved.
Show resolved Hide resolved

environment:
sdk: ^3.0.0
Expand Down
Loading