neoagent 2.3.1-beta.22 → 2.3.1-beta.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/flutter_app/pubspec.lock
CHANGED
|
@@ -21,10 +21,10 @@ packages:
|
|
|
21
21
|
dependency: transitive
|
|
22
22
|
description:
|
|
23
23
|
name: async
|
|
24
|
-
sha256:
|
|
24
|
+
sha256: e2eb0491ba5ddb6177742d2da23904574082139b07c1e33b8503b9f46f3e1a37
|
|
25
25
|
url: "https://pub.dev"
|
|
26
26
|
source: hosted
|
|
27
|
-
version: "2.13.
|
|
27
|
+
version: "2.13.1"
|
|
28
28
|
audioplayers:
|
|
29
29
|
dependency: "direct main"
|
|
30
30
|
description:
|
|
@@ -149,10 +149,10 @@ packages:
|
|
|
149
149
|
dependency: "direct main"
|
|
150
150
|
description:
|
|
151
151
|
name: cupertino_icons
|
|
152
|
-
sha256:
|
|
152
|
+
sha256: "41e005c33bd814be4d3096aff55b1908d419fde52ca656c8c47719ec745873cd"
|
|
153
153
|
url: "https://pub.dev"
|
|
154
154
|
source: hosted
|
|
155
|
-
version: "1.0.
|
|
155
|
+
version: "1.0.9"
|
|
156
156
|
dbus:
|
|
157
157
|
dependency: transitive
|
|
158
158
|
description:
|
|
@@ -602,10 +602,10 @@ packages:
|
|
|
602
602
|
dependency: transitive
|
|
603
603
|
description:
|
|
604
604
|
name: path_provider_android
|
|
605
|
-
sha256:
|
|
605
|
+
sha256: "149441ca6e4f38193b2e004c0ca6376a3d11f51fa5a77552d8bd4d2b0c0912ba"
|
|
606
606
|
url: "https://pub.dev"
|
|
607
607
|
source: hosted
|
|
608
|
-
version: "2.2.
|
|
608
|
+
version: "2.2.23"
|
|
609
609
|
path_provider_foundation:
|
|
610
610
|
dependency: transitive
|
|
611
611
|
description:
|
|
@@ -842,18 +842,18 @@ packages:
|
|
|
842
842
|
dependency: "direct main"
|
|
843
843
|
description:
|
|
844
844
|
name: shared_preferences
|
|
845
|
-
sha256:
|
|
845
|
+
sha256: c3025c5534b01739267eb7d76959bbc25a6d10f6988e1c2a3036940133dd10bf
|
|
846
846
|
url: "https://pub.dev"
|
|
847
847
|
source: hosted
|
|
848
|
-
version: "2.5.
|
|
848
|
+
version: "2.5.5"
|
|
849
849
|
shared_preferences_android:
|
|
850
850
|
dependency: transitive
|
|
851
851
|
description:
|
|
852
852
|
name: shared_preferences_android
|
|
853
|
-
sha256:
|
|
853
|
+
sha256: e8d4762b1e2e8578fc4d0fd548cebf24afd24f49719c08974df92834565e2c53
|
|
854
854
|
url: "https://pub.dev"
|
|
855
855
|
source: hosted
|
|
856
|
-
version: "2.4.
|
|
856
|
+
version: "2.4.23"
|
|
857
857
|
shared_preferences_foundation:
|
|
858
858
|
dependency: transitive
|
|
859
859
|
description:
|
|
@@ -874,10 +874,10 @@ packages:
|
|
|
874
874
|
dependency: transitive
|
|
875
875
|
description:
|
|
876
876
|
name: shared_preferences_platform_interface
|
|
877
|
-
sha256: "
|
|
877
|
+
sha256: "649dc798a33931919ea356c4305c2d1f81619ea6e92244070b520187b5140ef9"
|
|
878
878
|
url: "https://pub.dev"
|
|
879
879
|
source: hosted
|
|
880
|
-
version: "2.4.
|
|
880
|
+
version: "2.4.2"
|
|
881
881
|
shared_preferences_web:
|
|
882
882
|
dependency: transitive
|
|
883
883
|
description:
|
|
@@ -1031,10 +1031,10 @@ packages:
|
|
|
1031
1031
|
dependency: transitive
|
|
1032
1032
|
description:
|
|
1033
1033
|
name: vm_service
|
|
1034
|
-
sha256: "
|
|
1034
|
+
sha256: "0016aef94fc66495ac78af5859181e3f3bf2026bd8eecc72b9565601e19ab360"
|
|
1035
1035
|
url: "https://pub.dev"
|
|
1036
1036
|
source: hosted
|
|
1037
|
-
version: "15.0
|
|
1037
|
+
version: "15.2.0"
|
|
1038
1038
|
web:
|
|
1039
1039
|
dependency: transitive
|
|
1040
1040
|
description:
|
package/lib/install_helpers.js
CHANGED
|
@@ -18,6 +18,21 @@ function hasBundledWebClient(webClientDir) {
|
|
|
18
18
|
return fs.existsSync(path.join(webClientDir, 'index.html'));
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
function repairPubCacheOwnershipIfNeeded(flutterAppDir, runCommand) {
|
|
22
|
+
const repairScript = path.join(path.resolve(flutterAppDir, '..'), 'scripts', 'repair_pub_cache.sh');
|
|
23
|
+
if (!fs.existsSync(repairScript)) {
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const repair = runCommand('bash', [repairScript], {
|
|
28
|
+
cwd: path.dirname(repairScript),
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
if (repair.status !== 0) {
|
|
32
|
+
fail('Failed to repair Flutter pub cache ownership before web rebuild.');
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
21
36
|
function buildBundledWebClientIfPossible({
|
|
22
37
|
flutterAppDir,
|
|
23
38
|
webClientDir,
|
|
@@ -54,6 +69,8 @@ function buildBundledWebClientIfPossible({
|
|
|
54
69
|
);
|
|
55
70
|
}
|
|
56
71
|
|
|
72
|
+
repairPubCacheOwnershipIfNeeded(flutterAppDir, runCommand);
|
|
73
|
+
|
|
57
74
|
const pubGet = runCommand(
|
|
58
75
|
'flutter',
|
|
59
76
|
['pub', 'get'],
|
|
@@ -101,5 +118,6 @@ module.exports = {
|
|
|
101
118
|
buildBundledWebClientIfPossible,
|
|
102
119
|
commandExists,
|
|
103
120
|
hasBundledWebClient,
|
|
121
|
+
repairPubCacheOwnershipIfNeeded,
|
|
104
122
|
withInstallEnv,
|
|
105
123
|
};
|
package/lib/manager.js
CHANGED
package/package.json
CHANGED
|
@@ -5556,7 +5556,6 @@ path_provider_platform_interface
|
|
|
5556
5556
|
path_provider_windows
|
|
5557
5557
|
plugin_platform_interface
|
|
5558
5558
|
shared_preferences_linux
|
|
5559
|
-
shared_preferences_platform_interface
|
|
5560
5559
|
shared_preferences_web
|
|
5561
5560
|
shared_preferences_windows
|
|
5562
5561
|
xdg_directories
|
|
@@ -10835,6 +10834,7 @@ path_provider_foundation
|
|
|
10835
10834
|
shared_preferences
|
|
10836
10835
|
shared_preferences_android
|
|
10837
10836
|
shared_preferences_foundation
|
|
10837
|
+
shared_preferences_platform_interface
|
|
10838
10838
|
|
|
10839
10839
|
Copyright 2013 The Flutter Authors
|
|
10840
10840
|
|
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"59aa584fdf100e6c78c785d8a5b565d1de4b48
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "149001953" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|