Skip to content

Commit 039d594

Browse files
committed
v3.5.12
1 parent a963033 commit 039d594

File tree

6 files changed

+117
-17
lines changed

6 files changed

+117
-17
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [3.5.12] - 2024-07-06
2+
3+
* Dependency updates
4+
15
## [3.5.11] - 2024-06-21
26

37
* Readme update

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In your flutter project add the dependency:
3030
``` dart
3131
dependencies:
3232
...
33-
wp_json_api: ^3.5.11
33+
wp_json_api: ^3.5.12
3434
```
3535

3636
### Usage example #

example/pubspec.lock

Lines changed: 55 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,22 @@ packages:
1717
url: "https://pub.dev"
1818
source: hosted
1919
version: "2.11.0"
20+
base58check:
21+
dependency: transitive
22+
description:
23+
name: base58check
24+
sha256: "6c300dfc33e598d2fe26319e13f6243fea81eaf8204cb4c6b69ef20a625319a5"
25+
url: "https://pub.dev"
26+
source: hosted
27+
version: "2.0.0"
28+
bech32:
29+
dependency: transitive
30+
description:
31+
name: bech32
32+
sha256: "156cbace936f7720c79a79d16a03efad343b1ef17106716e04b8b8e39f99f7f7"
33+
url: "https://pub.dev"
34+
source: hosted
35+
version: "0.2.2"
2036
boolean_selector:
2137
dependency: transitive
2238
description:
@@ -49,6 +65,30 @@ packages:
4965
url: "https://pub.dev"
5066
source: hosted
5167
version: "1.18.0"
68+
convert:
69+
dependency: transitive
70+
description:
71+
name: convert
72+
sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592"
73+
url: "https://pub.dev"
74+
source: hosted
75+
version: "3.1.1"
76+
crypto:
77+
dependency: transitive
78+
description:
79+
name: crypto
80+
sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab
81+
url: "https://pub.dev"
82+
source: hosted
83+
version: "3.0.3"
84+
date_field:
85+
dependency: transitive
86+
description:
87+
name: date_field
88+
sha256: "8643c8e5f2ee55b4b389fc567ee27186c5a63570f545b291d61f02ab6ca7981d"
89+
url: "https://pub.dev"
90+
source: hosted
91+
version: "5.2.1"
5292
dio:
5393
dependency: transitive
5494
description:
@@ -69,10 +109,10 @@ packages:
69109
dependency: transitive
70110
description:
71111
name: error_stack
72-
sha256: "4a42065d1b3e82e60754ce2e4c462a558d376d6c584c45a7f56c5ab88c896ec9"
112+
sha256: "608c9165184a7ffc10b6b41a72392f6c4e51dd300f3b8746944430b1094c6e37"
73113
url: "https://pub.dev"
74114
source: hosted
75-
version: "1.7.3"
115+
version: "1.8.0"
76116
fake_async:
77117
dependency: transitive
78118
description:
@@ -115,6 +155,14 @@ packages:
115155
description: flutter
116156
source: sdk
117157
version: "0.0.0"
158+
flutter_multi_formatter:
159+
dependency: transitive
160+
description:
161+
name: flutter_multi_formatter
162+
sha256: "3495dc0056c96e467039a05bd184a5285c271a0efb2024a7030c7e84ba828994"
163+
url: "https://pub.dev"
164+
source: hosted
165+
version: "2.12.8"
118166
flutter_secure_storage:
119167
dependency: transitive
120168
description:
@@ -273,10 +321,10 @@ packages:
273321
dependency: transitive
274322
description:
275323
name: nylo_support
276-
sha256: "56d7f9f598715320a2ff95050b0d138b9bd0b108d3eb549160869ec64ac609ed"
324+
sha256: a5f17989b13577f10111dd9ea6d2bacb31bc0c7be4e8786acf93be248e0c01fe
277325
url: "https://pub.dev"
278326
source: hosted
279-
version: "5.76.0"
327+
version: "5.79.1"
280328
page_transition:
281329
dependency: transitive
282330
description:
@@ -385,10 +433,10 @@ packages:
385433
dependency: transitive
386434
description:
387435
name: rxdart
388-
sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb"
436+
sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962"
389437
url: "https://pub.dev"
390438
source: hosted
391-
version: "0.27.7"
439+
version: "0.28.0"
392440
shared_preferences:
393441
dependency: transitive
394442
description:
@@ -632,7 +680,7 @@ packages:
632680
path: ".."
633681
relative: true
634682
source: path
635-
version: "3.5.11"
683+
version: "3.5.12"
636684
xdg_directories:
637685
dependency: transitive
638686
description:

lib/wp_json_api.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import '/models/wp_user.dart';
2222
import '/networking/network_manager.dart';
2323

2424
/// The version of the wp_json_api
25-
String _wpJsonAPIVersion = "3.5.11";
25+
String _wpJsonAPIVersion = "3.5.12";
2626

2727
/// The base class to initialize and use WPJsonAPI
2828
class WPJsonAPI {

pubspec.lock

Lines changed: 54 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,22 @@ packages:
1717
url: "https://pub.dev"
1818
source: hosted
1919
version: "2.11.0"
20+
base58check:
21+
dependency: transitive
22+
description:
23+
name: base58check
24+
sha256: "6c300dfc33e598d2fe26319e13f6243fea81eaf8204cb4c6b69ef20a625319a5"
25+
url: "https://pub.dev"
26+
source: hosted
27+
version: "2.0.0"
28+
bech32:
29+
dependency: transitive
30+
description:
31+
name: bech32
32+
sha256: "156cbace936f7720c79a79d16a03efad343b1ef17106716e04b8b8e39f99f7f7"
33+
url: "https://pub.dev"
34+
source: hosted
35+
version: "0.2.2"
2036
boolean_selector:
2137
dependency: transitive
2238
description:
@@ -49,6 +65,30 @@ packages:
4965
url: "https://pub.dev"
5066
source: hosted
5167
version: "1.18.0"
68+
convert:
69+
dependency: transitive
70+
description:
71+
name: convert
72+
sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592"
73+
url: "https://pub.dev"
74+
source: hosted
75+
version: "3.1.1"
76+
crypto:
77+
dependency: transitive
78+
description:
79+
name: crypto
80+
sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab
81+
url: "https://pub.dev"
82+
source: hosted
83+
version: "3.0.3"
84+
date_field:
85+
dependency: transitive
86+
description:
87+
name: date_field
88+
sha256: "8643c8e5f2ee55b4b389fc567ee27186c5a63570f545b291d61f02ab6ca7981d"
89+
url: "https://pub.dev"
90+
source: hosted
91+
version: "5.2.1"
5292
dio:
5393
dependency: "direct main"
5494
description:
@@ -69,10 +109,10 @@ packages:
69109
dependency: transitive
70110
description:
71111
name: error_stack
72-
sha256: "4a42065d1b3e82e60754ce2e4c462a558d376d6c584c45a7f56c5ab88c896ec9"
112+
sha256: "608c9165184a7ffc10b6b41a72392f6c4e51dd300f3b8746944430b1094c6e37"
73113
url: "https://pub.dev"
74114
source: hosted
75-
version: "1.7.3"
115+
version: "1.8.0"
76116
fake_async:
77117
dependency: transitive
78118
description:
@@ -115,6 +155,14 @@ packages:
115155
description: flutter
116156
source: sdk
117157
version: "0.0.0"
158+
flutter_multi_formatter:
159+
dependency: transitive
160+
description:
161+
name: flutter_multi_formatter
162+
sha256: "3495dc0056c96e467039a05bd184a5285c271a0efb2024a7030c7e84ba828994"
163+
url: "https://pub.dev"
164+
source: hosted
165+
version: "2.12.8"
118166
flutter_secure_storage:
119167
dependency: transitive
120168
description:
@@ -273,10 +321,10 @@ packages:
273321
dependency: "direct main"
274322
description:
275323
name: nylo_support
276-
sha256: "56d7f9f598715320a2ff95050b0d138b9bd0b108d3eb549160869ec64ac609ed"
324+
sha256: a5f17989b13577f10111dd9ea6d2bacb31bc0c7be4e8786acf93be248e0c01fe
277325
url: "https://pub.dev"
278326
source: hosted
279-
version: "5.76.0"
327+
version: "5.79.1"
280328
page_transition:
281329
dependency: transitive
282330
description:
@@ -385,10 +433,10 @@ packages:
385433
dependency: transitive
386434
description:
387435
name: rxdart
388-
sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb"
436+
sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962"
389437
url: "https://pub.dev"
390438
source: hosted
391-
version: "0.27.7"
439+
version: "0.28.0"
392440
shared_preferences:
393441
dependency: transitive
394442
description:

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: wp_json_api
22
description: WordPress and WooCommerce JSON API for Flutter Mobile. API allows you to login, register new users, get users info and more.
3-
version: 3.5.11
3+
version: 3.5.12
44
homepage: https://woosignal.com
55
repository: https://github.com/woosignal/wp-json-api-flutter
66
issue_tracker: https://github.com/woosignal/wp-json-api-flutter/issues
@@ -12,7 +12,7 @@ environment:
1212

1313
dependencies:
1414
dio: ^5.4.3+1
15-
nylo_support: ^5.76.0
15+
nylo_support: ^5.79.1
1616
flutter:
1717
sdk: flutter
1818
collection: ^1.17.0

0 commit comments

Comments
 (0)