Skip to content

Commit 44441e4

Browse files
committed
## [0.4.0+2] - 2023/02/09
* Minor housekeeping to fix running tests & lint deprecations * Fixed typo in description * Updated example
1 parent d8cb5b5 commit 44441e4

File tree

8 files changed

+193
-99
lines changed

8 files changed

+193
-99
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [0.4.0+2] - 2023/02/09
2+
3+
* Minor housekeeping to fix running tests & lint deprecations
4+
* Fixed typo in description
5+
* Updated example
6+
17
## [0.4.0+1] - 2022/01/25
28

39
* Added comments for better auto documentation

analysis_options.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ linter:
7474
- file_names
7575
- hash_and_equals
7676
- implementation_imports
77-
- invariant_booleans
7877
- iterable_contains_unrelated_type
7978
- join_return_with_assignment
8079
- leading_newlines_in_multiline_strings

example/aws_request.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'package:aws_request/aws_request.dart';
22
import 'package:http/http.dart';
33

44
Future<void> awsRequestFunction(String logString) async {
5-
final AwsRequest request = new AwsRequest(
5+
final AwsRequest request = AwsRequest(
66
awsAccessKey: 'awsAccessKey',
77
awsSecretKey: 'awsSecretKey',
88
region: 'region',

example/pubspec.lock

Lines changed: 80 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -5,65 +5,74 @@ packages:
55
dependency: transitive
66
description:
77
name: async
8-
url: "https://pub.dartlang.org"
8+
sha256: bfe67ef28df125b7dddcea62755991f807aa39a2492a23e1550161692950bbe0
9+
url: "https://pub.dev"
910
source: hosted
10-
version: "2.8.2"
11+
version: "2.10.0"
1112
aws_request:
1213
dependency: "direct main"
1314
description:
1415
name: aws_request
15-
url: "https://pub.dartlang.org"
16+
sha256: e255fb772aa0dcf9ed6fe4d90f28884264ad784eaa71df4ab3deee75082222cd
17+
url: "https://pub.dev"
1618
source: hosted
17-
version: "0.3.0"
19+
version: "0.4.0"
1820
boolean_selector:
1921
dependency: transitive
2022
description:
2123
name: boolean_selector
22-
url: "https://pub.dartlang.org"
24+
sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
25+
url: "https://pub.dev"
2326
source: hosted
24-
version: "2.1.0"
27+
version: "2.1.1"
2528
characters:
2629
dependency: transitive
2730
description:
2831
name: characters
29-
url: "https://pub.dartlang.org"
32+
sha256: e6a326c8af69605aec75ed6c187d06b349707a27fbff8222ca9cc2cff167975c
33+
url: "https://pub.dev"
3034
source: hosted
31-
version: "1.2.0"
35+
version: "1.2.1"
3236
charcode:
3337
dependency: transitive
3438
description:
3539
name: charcode
36-
url: "https://pub.dartlang.org"
40+
sha256: fb98c0f6d12c920a02ee2d998da788bca066ca5f148492b7085ee23372b12306
41+
url: "https://pub.dev"
3742
source: hosted
3843
version: "1.3.1"
3944
clock:
4045
dependency: transitive
4146
description:
4247
name: clock
43-
url: "https://pub.dartlang.org"
48+
sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
49+
url: "https://pub.dev"
4450
source: hosted
45-
version: "1.1.0"
51+
version: "1.1.1"
4652
collection:
4753
dependency: transitive
4854
description:
4955
name: collection
50-
url: "https://pub.dartlang.org"
56+
sha256: cfc915e6923fe5ce6e153b0723c753045de46de1b4d63771530504004a45fae0
57+
url: "https://pub.dev"
5158
source: hosted
52-
version: "1.15.0"
59+
version: "1.17.0"
5360
crypto:
5461
dependency: transitive
5562
description:
5663
name: crypto
57-
url: "https://pub.dartlang.org"
64+
sha256: cf75650c66c0316274e21d7c43d3dea246273af5955bd94e8184837cd577575c
65+
url: "https://pub.dev"
5866
source: hosted
5967
version: "3.0.1"
6068
fake_async:
6169
dependency: transitive
6270
description:
6371
name: fake_async
64-
url: "https://pub.dartlang.org"
72+
sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
73+
url: "https://pub.dev"
6574
source: hosted
66-
version: "1.2.0"
75+
version: "1.3.1"
6776
flutter:
6877
dependency: "direct main"
6978
description: flutter
@@ -78,44 +87,66 @@ packages:
7887
dependency: "direct main"
7988
description:
8089
name: http
81-
url: "https://pub.dartlang.org"
90+
sha256: "2ed163531e071c2c6b7c659635112f24cb64ecbebf6af46b550d536c0b1aa112"
91+
url: "https://pub.dev"
8292
source: hosted
8393
version: "0.13.4"
8494
http_parser:
8595
dependency: transitive
8696
description:
8797
name: http_parser
88-
url: "https://pub.dartlang.org"
98+
sha256: e362d639ba3bc07d5a71faebb98cde68c05bfbcfbbb444b60b6f60bb67719185
99+
url: "https://pub.dev"
89100
source: hosted
90101
version: "4.0.0"
91102
intl:
92103
dependency: transitive
93104
description:
94105
name: intl
95-
url: "https://pub.dartlang.org"
106+
sha256: "910f85bce16fb5c6f614e117efa303e85a1731bb0081edf3604a2ae6e9a3cc91"
107+
url: "https://pub.dev"
96108
source: hosted
97109
version: "0.17.0"
110+
js:
111+
dependency: transitive
112+
description:
113+
name: js
114+
sha256: "5528c2f391ededb7775ec1daa69e65a2d61276f7552de2b5f7b8d34ee9fd4ab7"
115+
url: "https://pub.dev"
116+
source: hosted
117+
version: "0.6.5"
98118
matcher:
99119
dependency: transitive
100120
description:
101121
name: matcher
102-
url: "https://pub.dartlang.org"
122+
sha256: "16db949ceee371e9b99d22f88fa3a73c4e59fd0afed0bd25fc336eb76c198b72"
123+
url: "https://pub.dev"
124+
source: hosted
125+
version: "0.12.13"
126+
material_color_utilities:
127+
dependency: transitive
128+
description:
129+
name: material_color_utilities
130+
sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724
131+
url: "https://pub.dev"
103132
source: hosted
104-
version: "0.12.11"
133+
version: "0.2.0"
105134
meta:
106135
dependency: transitive
107136
description:
108137
name: meta
109-
url: "https://pub.dartlang.org"
138+
sha256: "6c268b42ed578a53088d834796959e4a1814b5e9e164f147f580a386e5decf42"
139+
url: "https://pub.dev"
110140
source: hosted
111-
version: "1.7.0"
141+
version: "1.8.0"
112142
path:
113143
dependency: transitive
114144
description:
115145
name: path
116-
url: "https://pub.dartlang.org"
146+
sha256: db9d4f58c908a4ba5953fcee2ae317c94889433e5024c27ce74a37f94267945b
147+
url: "https://pub.dev"
117148
source: hosted
118-
version: "1.8.0"
149+
version: "1.8.2"
119150
sky_engine:
120151
dependency: transitive
121152
description: flutter
@@ -125,57 +156,65 @@ packages:
125156
dependency: transitive
126157
description:
127158
name: source_span
128-
url: "https://pub.dartlang.org"
159+
sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250
160+
url: "https://pub.dev"
129161
source: hosted
130-
version: "1.8.1"
162+
version: "1.9.1"
131163
stack_trace:
132164
dependency: transitive
133165
description:
134166
name: stack_trace
135-
url: "https://pub.dartlang.org"
167+
sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
168+
url: "https://pub.dev"
136169
source: hosted
137-
version: "1.10.0"
170+
version: "1.11.0"
138171
stream_channel:
139172
dependency: transitive
140173
description:
141174
name: stream_channel
142-
url: "https://pub.dartlang.org"
175+
sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
176+
url: "https://pub.dev"
143177
source: hosted
144-
version: "2.1.0"
178+
version: "2.1.1"
145179
string_scanner:
146180
dependency: transitive
147181
description:
148182
name: string_scanner
149-
url: "https://pub.dartlang.org"
183+
sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
184+
url: "https://pub.dev"
150185
source: hosted
151-
version: "1.1.0"
186+
version: "1.2.0"
152187
term_glyph:
153188
dependency: transitive
154189
description:
155190
name: term_glyph
156-
url: "https://pub.dartlang.org"
191+
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
192+
url: "https://pub.dev"
157193
source: hosted
158-
version: "1.2.0"
194+
version: "1.2.1"
159195
test_api:
160196
dependency: transitive
161197
description:
162198
name: test_api
163-
url: "https://pub.dartlang.org"
199+
sha256: ad540f65f92caa91bf21dfc8ffb8c589d6e4dc0c2267818b4cc2792857706206
200+
url: "https://pub.dev"
164201
source: hosted
165-
version: "0.4.3"
202+
version: "0.4.16"
166203
typed_data:
167204
dependency: transitive
168205
description:
169206
name: typed_data
170-
url: "https://pub.dartlang.org"
207+
sha256: "53bdf7e979cfbf3e28987552fd72f637e63f3c8724c9e56d9246942dc2fa36ee"
208+
url: "https://pub.dev"
171209
source: hosted
172210
version: "1.3.0"
173211
vector_math:
174212
dependency: transitive
175213
description:
176214
name: vector_math
177-
url: "https://pub.dartlang.org"
215+
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
216+
url: "https://pub.dev"
178217
source: hosted
179-
version: "2.1.1"
218+
version: "2.1.4"
180219
sdks:
181-
dart: ">=2.14.0 <3.0.0"
220+
dart: ">=2.18.0 <3.0.0"

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
flutter:
1010
sdk: flutter
1111

12-
aws_request: 0.3.0
12+
aws_request: 0.4.0
1313
http: ^0.13.0
1414

1515
dev_dependencies:

0 commit comments

Comments
 (0)