openc3 5.11.3 → 5.12.0
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.
Potentially problematic release.
This version of openc3 might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +2 -2
- data/bin/openc3cli +26 -12
- data/data/config/_id_items.yaml +6 -4
- data/data/config/_id_params.yaml +9 -6
- data/data/config/_items.yaml +6 -4
- data/data/config/_params.yaml +3 -2
- data/data/config/interface_modifiers.yaml +1 -1
- data/data/config/microservice.yaml +10 -1
- data/data/config/plugins.yaml +13 -3
- data/data/config/target.yaml +9 -0
- data/data/config/target_config.yaml +12 -0
- data/data/config/tool.yaml +12 -3
- data/lib/openc3/api/api.rb +1 -1
- data/lib/openc3/api/cmd_api.rb +24 -24
- data/lib/openc3/api/config_api.rb +12 -12
- data/lib/openc3/api/limits_api.rb +4 -3
- data/lib/openc3/api/settings_api.rb +5 -2
- data/lib/openc3/api/tlm_api.rb +7 -10
- data/lib/openc3/conversions/unix_time_conversion.rb +8 -6
- data/lib/openc3/interfaces/tcpip_server_interface.rb +0 -7
- data/lib/openc3/io/json_drb.rb +3 -2
- data/lib/openc3/io/json_rpc.rb +6 -6
- data/lib/openc3/logs/buffered_packet_log_writer.rb +4 -2
- data/lib/openc3/logs/packet_log_writer.rb +22 -7
- data/lib/openc3/microservices/cleanup_microservice.rb +8 -1
- data/lib/openc3/microservices/decom_microservice.rb +1 -1
- data/lib/openc3/microservices/interface_microservice.rb +2 -2
- data/lib/openc3/microservices/microservice.rb +5 -2
- data/lib/openc3/microservices/reaction_microservice.rb +1 -0
- data/lib/openc3/microservices/timeline_microservice.rb +7 -5
- data/lib/openc3/migrations/20231022000000_tlm_viewer_config.rb +22 -0
- data/lib/openc3/models/activity_model.rb +21 -3
- data/lib/openc3/models/cvt_model.rb +2 -1
- data/lib/openc3/models/gem_model.rb +4 -1
- data/lib/openc3/models/interface_model.rb +11 -5
- data/lib/openc3/models/metadata_model.rb +11 -0
- data/lib/openc3/models/microservice_model.rb +16 -3
- data/lib/openc3/models/model.rb +18 -0
- data/lib/openc3/models/note_model.rb +11 -0
- data/lib/openc3/models/plugin_model.rb +18 -0
- data/lib/openc3/models/python_package_model.rb +104 -0
- data/lib/openc3/models/scope_model.rb +2 -0
- data/lib/openc3/models/sorted_model.rb +17 -8
- data/lib/openc3/models/target_model.rb +53 -18
- data/lib/openc3/models/tool_config_model.rb +9 -3
- data/lib/openc3/models/tool_model.rb +22 -7
- data/lib/openc3/models/widget_model.rb +19 -3
- data/lib/openc3/operators/microservice_operator.rb +2 -0
- data/lib/openc3/packets/limits.rb +6 -18
- data/lib/openc3/packets/packet.rb +1 -0
- data/lib/openc3/packets/parsers/format_string_parser.rb +4 -4
- data/lib/openc3/packets/parsers/limits_parser.rb +4 -4
- data/lib/openc3/packets/parsers/limits_response_parser.rb +5 -5
- data/lib/openc3/packets/parsers/processor_parser.rb +4 -4
- data/lib/openc3/packets/parsers/state_parser.rb +3 -3
- data/lib/openc3/script/api_shared.rb +50 -32
- data/lib/openc3/script/calendar.rb +109 -0
- data/lib/openc3/script/commands.rb +1 -8
- data/lib/openc3/script/{gems.rb → packages.rb} +20 -16
- data/lib/openc3/script/script.rb +49 -38
- data/lib/openc3/system/system.rb +2 -0
- data/lib/openc3/system/target.rb +10 -1
- data/lib/openc3/top_level.rb +2 -2
- data/lib/openc3/utilities/aws_bucket.rb +3 -2
- data/lib/openc3/utilities/bucket_file_cache.rb +1 -1
- data/lib/openc3/utilities/local_mode.rb +3 -1
- data/lib/openc3/utilities/logger.rb +1 -1
- data/lib/openc3/utilities/ruby_lex_utils.rb +0 -8
- data/lib/openc3/version.rb +6 -6
- data/templates/tool_angular/package.json +14 -14
- data/templates/tool_angular/yarn.lock +282 -129
- data/templates/tool_react/package.json +11 -11
- data/templates/tool_react/yarn.lock +353 -300
- data/templates/tool_svelte/package.json +12 -12
- data/templates/tool_svelte/src/services/openc3-api.js +16 -60
- data/templates/tool_svelte/yarn.lock +338 -212
- data/templates/tool_vue/package.json +9 -9
- data/templates/tool_vue/yarn.lock +55 -41
- data/templates/widget/package.json +10 -10
- data/templates/widget/yarn.lock +59 -45
- metadata +36 -5
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "<%= tool_name %>",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.12.0",
|
4
4
|
"private": true,
|
5
5
|
"scripts": {
|
6
6
|
"serve": "vue-cli-service serve",
|
@@ -11,14 +11,14 @@
|
|
11
11
|
"test:components": "vue-cli-service test:components"
|
12
12
|
},
|
13
13
|
"dependencies": {
|
14
|
-
"@openc3/tool-common": "5.
|
14
|
+
"@openc3/tool-common": "5.12.0",
|
15
15
|
"axios": "0.27.2",
|
16
16
|
"date-fns": "2.30.0",
|
17
17
|
"portal-vue": "2.1.7",
|
18
18
|
"single-spa-vue": "2.5.1",
|
19
19
|
"sprintf-js": "1.1.3",
|
20
20
|
"systemjs-webpack-interop": "2.3.7",
|
21
|
-
"vue": "2.7.
|
21
|
+
"vue": "2.7.15",
|
22
22
|
"vue-router": "3.5.3",
|
23
23
|
"vuetify": "2.7.1",
|
24
24
|
"vuex": "3.6.2"
|
@@ -36,17 +36,17 @@
|
|
36
36
|
"@vue/test-utils": "1.3.0",
|
37
37
|
"babel-loader": "9.1.3",
|
38
38
|
"babel-plugin-istanbul": "6.1.1",
|
39
|
-
"eslint": "8.
|
39
|
+
"eslint": "8.53.0",
|
40
40
|
"eslint-config-prettier": "9.0.0",
|
41
|
-
"eslint-plugin-prettier": "5.0.
|
42
|
-
"eslint-plugin-vue": "9.
|
41
|
+
"eslint-plugin-prettier": "5.0.1",
|
42
|
+
"eslint-plugin-vue": "9.18.1",
|
43
43
|
"html-webpack-plugin": "^5.5.3",
|
44
44
|
"prettier": "3.0.3",
|
45
|
-
"sass": "1.
|
45
|
+
"sass": "1.69.5",
|
46
46
|
"sass-loader": "13.3.2",
|
47
47
|
"vue-cli-plugin-single-spa": "3.3.0",
|
48
48
|
"vue-cli-plugin-vuetify": "2.5.8",
|
49
|
-
"vue-template-compiler": "2.7.
|
50
|
-
"webpack": "5.
|
49
|
+
"vue-template-compiler": "2.7.15",
|
50
|
+
"webpack": "5.89.0"
|
51
51
|
}
|
52
52
|
}
|
@@ -1232,10 +1232,10 @@
|
|
1232
1232
|
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8"
|
1233
1233
|
integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==
|
1234
1234
|
|
1235
|
-
"@eslint/eslintrc@^2.1.
|
1236
|
-
version "2.1.
|
1237
|
-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.
|
1238
|
-
integrity sha512
|
1235
|
+
"@eslint/eslintrc@^2.1.3":
|
1236
|
+
version "2.1.3"
|
1237
|
+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.3.tgz#797470a75fe0fbd5a53350ee715e85e87baff22d"
|
1238
|
+
integrity sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==
|
1239
1239
|
dependencies:
|
1240
1240
|
ajv "^6.12.4"
|
1241
1241
|
debug "^4.3.2"
|
@@ -1247,10 +1247,10 @@
|
|
1247
1247
|
minimatch "^3.1.2"
|
1248
1248
|
strip-json-comments "^3.1.1"
|
1249
1249
|
|
1250
|
-
"@eslint/js@8.
|
1251
|
-
version "8.
|
1252
|
-
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.
|
1253
|
-
integrity sha512-
|
1250
|
+
"@eslint/js@8.53.0":
|
1251
|
+
version "8.53.0"
|
1252
|
+
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.53.0.tgz#bea56f2ed2b5baea164348ff4d5a879f6f81f20d"
|
1253
|
+
integrity sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==
|
1254
1254
|
|
1255
1255
|
"@graphql-tools/merge@8.3.1":
|
1256
1256
|
version "8.3.1"
|
@@ -1330,12 +1330,12 @@
|
|
1330
1330
|
dependencies:
|
1331
1331
|
"@hapi/hoek" "^9.0.0"
|
1332
1332
|
|
1333
|
-
"@humanwhocodes/config-array@^0.11.
|
1334
|
-
version "0.11.
|
1335
|
-
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.
|
1336
|
-
integrity sha512-
|
1333
|
+
"@humanwhocodes/config-array@^0.11.13":
|
1334
|
+
version "0.11.13"
|
1335
|
+
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.13.tgz#075dc9684f40a531d9b26b0822153c1e832ee297"
|
1336
|
+
integrity sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==
|
1337
1337
|
dependencies:
|
1338
|
-
"@humanwhocodes/object-schema" "^
|
1338
|
+
"@humanwhocodes/object-schema" "^2.0.1"
|
1339
1339
|
debug "^4.1.1"
|
1340
1340
|
minimatch "^3.0.5"
|
1341
1341
|
|
@@ -1344,10 +1344,10 @@
|
|
1344
1344
|
resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
|
1345
1345
|
integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
|
1346
1346
|
|
1347
|
-
"@humanwhocodes/object-schema@^
|
1348
|
-
version "
|
1349
|
-
resolved "https://registry.
|
1350
|
-
integrity sha512-
|
1347
|
+
"@humanwhocodes/object-schema@^2.0.1":
|
1348
|
+
version "2.0.1"
|
1349
|
+
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz#e5211452df060fa8522b55c7b3c0c4d1981cb044"
|
1350
|
+
integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==
|
1351
1351
|
|
1352
1352
|
"@istanbuljs/load-nyc-config@^1.0.0":
|
1353
1353
|
version "1.1.0"
|
@@ -1806,6 +1806,11 @@
|
|
1806
1806
|
dependencies:
|
1807
1807
|
"@types/node" "*"
|
1808
1808
|
|
1809
|
+
"@ungap/structured-clone@^1.2.0":
|
1810
|
+
version "1.2.0"
|
1811
|
+
resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
|
1812
|
+
integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
|
1813
|
+
|
1809
1814
|
"@vue/babel-helper-vue-jsx-merge-props@^1.4.0":
|
1810
1815
|
version "1.4.0"
|
1811
1816
|
resolved "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz"
|
@@ -4125,7 +4130,15 @@ eslint-config-prettier@^8.8.0:
|
|
4125
4130
|
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11"
|
4126
4131
|
integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==
|
4127
4132
|
|
4128
|
-
eslint-plugin-prettier@5.0.
|
4133
|
+
eslint-plugin-prettier@5.0.1:
|
4134
|
+
version "5.0.1"
|
4135
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz#a3b399f04378f79f066379f544e42d6b73f11515"
|
4136
|
+
integrity sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==
|
4137
|
+
dependencies:
|
4138
|
+
prettier-linter-helpers "^1.0.0"
|
4139
|
+
synckit "^0.8.5"
|
4140
|
+
|
4141
|
+
eslint-plugin-prettier@^5.0.0:
|
4129
4142
|
version "5.0.0"
|
4130
4143
|
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.0.tgz#6887780ed95f7708340ec79acfdf60c35b9be57a"
|
4131
4144
|
integrity sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==
|
@@ -4133,10 +4146,10 @@ eslint-plugin-prettier@5.0.0, eslint-plugin-prettier@^5.0.0:
|
|
4133
4146
|
prettier-linter-helpers "^1.0.0"
|
4134
4147
|
synckit "^0.8.5"
|
4135
4148
|
|
4136
|
-
eslint-plugin-vue@9.
|
4137
|
-
version "9.
|
4138
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.
|
4139
|
-
integrity sha512-
|
4149
|
+
eslint-plugin-vue@9.18.1:
|
4150
|
+
version "9.18.1"
|
4151
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.18.1.tgz#73cf29df7450ce5913296465f8d1dc545344920c"
|
4152
|
+
integrity sha512-7hZFlrEgg9NIzuVik2I9xSnJA5RsmOfueYgsUGUokEDLJ1LHtxO0Pl4duje1BriZ/jDWb+44tcIlC3yi0tdlZg==
|
4140
4153
|
dependencies:
|
4141
4154
|
"@eslint-community/eslint-utils" "^4.4.0"
|
4142
4155
|
natural-compare "^1.4.0"
|
@@ -4196,18 +4209,19 @@ eslint-webpack-plugin@^3.1.0:
|
|
4196
4209
|
normalize-path "^3.0.0"
|
4197
4210
|
schema-utils "^4.0.0"
|
4198
4211
|
|
4199
|
-
eslint@8.
|
4200
|
-
version "8.
|
4201
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.
|
4202
|
-
integrity sha512-
|
4212
|
+
eslint@8.53.0:
|
4213
|
+
version "8.53.0"
|
4214
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.53.0.tgz#14f2c8244298fcae1f46945459577413ba2697ce"
|
4215
|
+
integrity sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==
|
4203
4216
|
dependencies:
|
4204
4217
|
"@eslint-community/eslint-utils" "^4.2.0"
|
4205
4218
|
"@eslint-community/regexpp" "^4.6.1"
|
4206
|
-
"@eslint/eslintrc" "^2.1.
|
4207
|
-
"@eslint/js" "8.
|
4208
|
-
"@humanwhocodes/config-array" "^0.11.
|
4219
|
+
"@eslint/eslintrc" "^2.1.3"
|
4220
|
+
"@eslint/js" "8.53.0"
|
4221
|
+
"@humanwhocodes/config-array" "^0.11.13"
|
4209
4222
|
"@humanwhocodes/module-importer" "^1.0.1"
|
4210
4223
|
"@nodelib/fs.walk" "^1.2.8"
|
4224
|
+
"@ungap/structured-clone" "^1.2.0"
|
4211
4225
|
ajv "^6.12.4"
|
4212
4226
|
chalk "^4.0.0"
|
4213
4227
|
cross-spawn "^7.0.2"
|
@@ -7812,10 +7826,10 @@ sass-loader@13.3.2:
|
|
7812
7826
|
dependencies:
|
7813
7827
|
neo-async "^2.6.2"
|
7814
7828
|
|
7815
|
-
sass@1.
|
7816
|
-
version "1.
|
7817
|
-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.
|
7818
|
-
integrity sha512-
|
7829
|
+
sass@1.69.5:
|
7830
|
+
version "1.69.5"
|
7831
|
+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.69.5.tgz#23e18d1c757a35f2e52cc81871060b9ad653dfde"
|
7832
|
+
integrity sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==
|
7819
7833
|
dependencies:
|
7820
7834
|
chokidar ">=3.0.0 <4.0.0"
|
7821
7835
|
immutable "^4.0.0"
|
@@ -8944,10 +8958,10 @@ vue-style-loader@^4.1.0, vue-style-loader@^4.1.3:
|
|
8944
8958
|
hash-sum "^1.0.2"
|
8945
8959
|
loader-utils "^1.0.2"
|
8946
8960
|
|
8947
|
-
vue-template-compiler@2.7.
|
8948
|
-
version "2.7.
|
8949
|
-
resolved "https://registry.
|
8950
|
-
integrity sha512-
|
8961
|
+
vue-template-compiler@2.7.15:
|
8962
|
+
version "2.7.15"
|
8963
|
+
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.15.tgz#ec88ba8ceafe0f17a528b89c57e01e02da92b0de"
|
8964
|
+
integrity sha512-yQxjxMptBL7UAog00O8sANud99C6wJF+7kgbcwqkvA38vCGF7HWE66w0ZFnS/kX5gSoJr/PQ4/oS3Ne2pW37Og==
|
8951
8965
|
dependencies:
|
8952
8966
|
de-indent "^1.0.2"
|
8953
8967
|
he "^1.2.0"
|
@@ -9091,10 +9105,10 @@ webpack-virtual-modules@^0.4.2:
|
|
9091
9105
|
resolved "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz"
|
9092
9106
|
integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==
|
9093
9107
|
|
9094
|
-
webpack@5.
|
9095
|
-
version "5.
|
9096
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.
|
9097
|
-
integrity sha512-
|
9108
|
+
webpack@5.89.0:
|
9109
|
+
version "5.89.0"
|
9110
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.89.0.tgz#56b8bf9a34356e93a6625770006490bf3a7f32dc"
|
9111
|
+
integrity sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==
|
9098
9112
|
dependencies:
|
9099
9113
|
"@types/eslint-scope" "^3.7.3"
|
9100
9114
|
"@types/estree" "^1.0.0"
|
@@ -1,18 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"name": "widget",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.12.0",
|
4
4
|
"private": true,
|
5
5
|
"scripts": {
|
6
6
|
"build": "vue-cli-service build --target lib --dest tools/widgets/<%= widget_name %> --formats umd-min <%= widget_path %> --name <%= widget_name %>"
|
7
7
|
},
|
8
8
|
"dependencies": {
|
9
|
-
"@openc3/tool-common": "5.
|
10
|
-
"vue": "2.7.
|
9
|
+
"@openc3/tool-common": "5.12.0",
|
10
|
+
"vue": "2.7.15",
|
11
11
|
"vuetify": "2.7.1"
|
12
12
|
},
|
13
13
|
"devDependencies": {
|
14
14
|
"@babel/eslint-parser": "7.22.15",
|
15
|
-
"@rushstack/eslint-patch": "1.
|
15
|
+
"@rushstack/eslint-patch": "1.5.1",
|
16
16
|
"@vue/babel-preset-app": "5.0.8",
|
17
17
|
"@vue/cli": "5.0.8",
|
18
18
|
"@vue/cli-plugin-babel": "5.0.8",
|
@@ -21,15 +21,15 @@
|
|
21
21
|
"@vue/eslint-config-prettier": "8.0.0",
|
22
22
|
"babel-loader": "9.1.3",
|
23
23
|
"babel-plugin-istanbul": "6.1.1",
|
24
|
-
"eslint": "8.
|
24
|
+
"eslint": "8.53.0",
|
25
25
|
"eslint-config-prettier": "9.0.0",
|
26
|
-
"eslint-plugin-prettier": "5.0.
|
27
|
-
"eslint-plugin-vue": "9.
|
26
|
+
"eslint-plugin-prettier": "5.0.1",
|
27
|
+
"eslint-plugin-vue": "9.18.1",
|
28
28
|
"prettier": "3.0.3",
|
29
|
-
"sass": "1.
|
29
|
+
"sass": "1.69.5",
|
30
30
|
"sass-loader": "13.3.2",
|
31
31
|
"vue-cli-plugin-vuetify": "2.5.8",
|
32
|
-
"vue-template-compiler": "2.7.
|
33
|
-
"webpack": "5.
|
32
|
+
"vue-template-compiler": "2.7.15",
|
33
|
+
"webpack": "5.89.0"
|
34
34
|
}
|
35
35
|
}
|
data/templates/widget/yarn.lock
CHANGED
@@ -1170,10 +1170,10 @@
|
|
1170
1170
|
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8"
|
1171
1171
|
integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==
|
1172
1172
|
|
1173
|
-
"@eslint/eslintrc@^2.1.
|
1174
|
-
version "2.1.
|
1175
|
-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.
|
1176
|
-
integrity sha512
|
1173
|
+
"@eslint/eslintrc@^2.1.3":
|
1174
|
+
version "2.1.3"
|
1175
|
+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.3.tgz#797470a75fe0fbd5a53350ee715e85e87baff22d"
|
1176
|
+
integrity sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==
|
1177
1177
|
dependencies:
|
1178
1178
|
ajv "^6.12.4"
|
1179
1179
|
debug "^4.3.2"
|
@@ -1185,10 +1185,10 @@
|
|
1185
1185
|
minimatch "^3.1.2"
|
1186
1186
|
strip-json-comments "^3.1.1"
|
1187
1187
|
|
1188
|
-
"@eslint/js@8.
|
1189
|
-
version "8.
|
1190
|
-
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.
|
1191
|
-
integrity sha512-
|
1188
|
+
"@eslint/js@8.53.0":
|
1189
|
+
version "8.53.0"
|
1190
|
+
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.53.0.tgz#bea56f2ed2b5baea164348ff4d5a879f6f81f20d"
|
1191
|
+
integrity sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==
|
1192
1192
|
|
1193
1193
|
"@graphql-tools/merge@8.3.1":
|
1194
1194
|
version "8.3.1"
|
@@ -1268,12 +1268,12 @@
|
|
1268
1268
|
dependencies:
|
1269
1269
|
"@hapi/hoek" "^9.0.0"
|
1270
1270
|
|
1271
|
-
"@humanwhocodes/config-array@^0.11.
|
1272
|
-
version "0.11.
|
1273
|
-
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.
|
1274
|
-
integrity sha512-
|
1271
|
+
"@humanwhocodes/config-array@^0.11.13":
|
1272
|
+
version "0.11.13"
|
1273
|
+
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.13.tgz#075dc9684f40a531d9b26b0822153c1e832ee297"
|
1274
|
+
integrity sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==
|
1275
1275
|
dependencies:
|
1276
|
-
"@humanwhocodes/object-schema" "^
|
1276
|
+
"@humanwhocodes/object-schema" "^2.0.1"
|
1277
1277
|
debug "^4.1.1"
|
1278
1278
|
minimatch "^3.0.5"
|
1279
1279
|
|
@@ -1282,10 +1282,10 @@
|
|
1282
1282
|
resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
|
1283
1283
|
integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
|
1284
1284
|
|
1285
|
-
"@humanwhocodes/object-schema@^
|
1286
|
-
version "
|
1287
|
-
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-
|
1288
|
-
integrity sha512-
|
1285
|
+
"@humanwhocodes/object-schema@^2.0.1":
|
1286
|
+
version "2.0.1"
|
1287
|
+
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz#e5211452df060fa8522b55c7b3c0c4d1981cb044"
|
1288
|
+
integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==
|
1289
1289
|
|
1290
1290
|
"@istanbuljs/load-nyc-config@^1.0.0":
|
1291
1291
|
version "1.1.0"
|
@@ -1466,10 +1466,10 @@
|
|
1466
1466
|
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
|
1467
1467
|
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
|
1468
1468
|
|
1469
|
-
"@rushstack/eslint-patch@1.
|
1470
|
-
version "1.
|
1471
|
-
resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.
|
1472
|
-
integrity sha512-
|
1469
|
+
"@rushstack/eslint-patch@1.5.1":
|
1470
|
+
version "1.5.1"
|
1471
|
+
resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.5.1.tgz#5f1b518ec5fa54437c0b7c4a821546c64fed6922"
|
1472
|
+
integrity sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==
|
1473
1473
|
|
1474
1474
|
"@sideway/address@^4.1.3":
|
1475
1475
|
version "4.1.4"
|
@@ -1743,6 +1743,11 @@
|
|
1743
1743
|
dependencies:
|
1744
1744
|
"@types/node" "*"
|
1745
1745
|
|
1746
|
+
"@ungap/structured-clone@^1.2.0":
|
1747
|
+
version "1.2.0"
|
1748
|
+
resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
|
1749
|
+
integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
|
1750
|
+
|
1746
1751
|
"@vue/babel-helper-vue-jsx-merge-props@^1.4.0":
|
1747
1752
|
version "1.4.0"
|
1748
1753
|
resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz#8d53a1e21347db8edbe54d339902583176de09f2"
|
@@ -4123,7 +4128,15 @@ eslint-config-prettier@^8.8.0:
|
|
4123
4128
|
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11"
|
4124
4129
|
integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==
|
4125
4130
|
|
4126
|
-
eslint-plugin-prettier@5.0.
|
4131
|
+
eslint-plugin-prettier@5.0.1:
|
4132
|
+
version "5.0.1"
|
4133
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz#a3b399f04378f79f066379f544e42d6b73f11515"
|
4134
|
+
integrity sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==
|
4135
|
+
dependencies:
|
4136
|
+
prettier-linter-helpers "^1.0.0"
|
4137
|
+
synckit "^0.8.5"
|
4138
|
+
|
4139
|
+
eslint-plugin-prettier@^5.0.0:
|
4127
4140
|
version "5.0.0"
|
4128
4141
|
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.0.tgz#6887780ed95f7708340ec79acfdf60c35b9be57a"
|
4129
4142
|
integrity sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==
|
@@ -4131,10 +4144,10 @@ eslint-plugin-prettier@5.0.0, eslint-plugin-prettier@^5.0.0:
|
|
4131
4144
|
prettier-linter-helpers "^1.0.0"
|
4132
4145
|
synckit "^0.8.5"
|
4133
4146
|
|
4134
|
-
eslint-plugin-vue@9.
|
4135
|
-
version "9.
|
4136
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.
|
4137
|
-
integrity sha512-
|
4147
|
+
eslint-plugin-vue@9.18.1:
|
4148
|
+
version "9.18.1"
|
4149
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.18.1.tgz#73cf29df7450ce5913296465f8d1dc545344920c"
|
4150
|
+
integrity sha512-7hZFlrEgg9NIzuVik2I9xSnJA5RsmOfueYgsUGUokEDLJ1LHtxO0Pl4duje1BriZ/jDWb+44tcIlC3yi0tdlZg==
|
4138
4151
|
dependencies:
|
4139
4152
|
"@eslint-community/eslint-utils" "^4.4.0"
|
4140
4153
|
natural-compare "^1.4.0"
|
@@ -4199,18 +4212,19 @@ eslint-webpack-plugin@^3.1.0:
|
|
4199
4212
|
normalize-path "^3.0.0"
|
4200
4213
|
schema-utils "^4.0.0"
|
4201
4214
|
|
4202
|
-
eslint@8.
|
4203
|
-
version "8.
|
4204
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.
|
4205
|
-
integrity sha512-
|
4215
|
+
eslint@8.53.0:
|
4216
|
+
version "8.53.0"
|
4217
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.53.0.tgz#14f2c8244298fcae1f46945459577413ba2697ce"
|
4218
|
+
integrity sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==
|
4206
4219
|
dependencies:
|
4207
4220
|
"@eslint-community/eslint-utils" "^4.2.0"
|
4208
4221
|
"@eslint-community/regexpp" "^4.6.1"
|
4209
|
-
"@eslint/eslintrc" "^2.1.
|
4210
|
-
"@eslint/js" "8.
|
4211
|
-
"@humanwhocodes/config-array" "^0.11.
|
4222
|
+
"@eslint/eslintrc" "^2.1.3"
|
4223
|
+
"@eslint/js" "8.53.0"
|
4224
|
+
"@humanwhocodes/config-array" "^0.11.13"
|
4212
4225
|
"@humanwhocodes/module-importer" "^1.0.1"
|
4213
4226
|
"@nodelib/fs.walk" "^1.2.8"
|
4227
|
+
"@ungap/structured-clone" "^1.2.0"
|
4214
4228
|
ajv "^6.12.4"
|
4215
4229
|
chalk "^4.0.0"
|
4216
4230
|
cross-spawn "^7.0.2"
|
@@ -7750,10 +7764,10 @@ sass-loader@13.3.2:
|
|
7750
7764
|
dependencies:
|
7751
7765
|
neo-async "^2.6.2"
|
7752
7766
|
|
7753
|
-
sass@1.
|
7754
|
-
version "1.
|
7755
|
-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.
|
7756
|
-
integrity sha512-
|
7767
|
+
sass@1.69.5:
|
7768
|
+
version "1.69.5"
|
7769
|
+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.69.5.tgz#23e18d1c757a35f2e52cc81871060b9ad653dfde"
|
7770
|
+
integrity sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==
|
7757
7771
|
dependencies:
|
7758
7772
|
chokidar ">=3.0.0 <4.0.0"
|
7759
7773
|
immutable "^4.0.0"
|
@@ -8843,10 +8857,10 @@ vue-style-loader@^4.1.0, vue-style-loader@^4.1.3:
|
|
8843
8857
|
hash-sum "^1.0.2"
|
8844
8858
|
loader-utils "^1.0.2"
|
8845
8859
|
|
8846
|
-
vue-template-compiler@2.7.
|
8847
|
-
version "2.7.
|
8848
|
-
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.
|
8849
|
-
integrity sha512-
|
8860
|
+
vue-template-compiler@2.7.15:
|
8861
|
+
version "2.7.15"
|
8862
|
+
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.15.tgz#ec88ba8ceafe0f17a528b89c57e01e02da92b0de"
|
8863
|
+
integrity sha512-yQxjxMptBL7UAog00O8sANud99C6wJF+7kgbcwqkvA38vCGF7HWE66w0ZFnS/kX5gSoJr/PQ4/oS3Ne2pW37Og==
|
8850
8864
|
dependencies:
|
8851
8865
|
de-indent "^1.0.2"
|
8852
8866
|
he "^1.2.0"
|
@@ -8985,10 +8999,10 @@ webpack-virtual-modules@^0.4.2:
|
|
8985
8999
|
resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45"
|
8986
9000
|
integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==
|
8987
9001
|
|
8988
|
-
webpack@5.
|
8989
|
-
version "5.
|
8990
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.
|
8991
|
-
integrity sha512-
|
9002
|
+
webpack@5.89.0:
|
9003
|
+
version "5.89.0"
|
9004
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.89.0.tgz#56b8bf9a34356e93a6625770006490bf3a7f32dc"
|
9005
|
+
integrity sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==
|
8992
9006
|
dependencies:
|
8993
9007
|
"@types/eslint-scope" "^3.7.3"
|
8994
9008
|
"@types/estree" "^1.0.0"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openc3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Melton
|
@@ -9,8 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-10
|
12
|
+
date: 2023-11-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: irb
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - '='
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 1.6.2
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - '='
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 1.6.2
|
14
28
|
- !ruby/object:Gem::Dependency
|
15
29
|
name: bundler
|
16
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -157,14 +171,28 @@ dependencies:
|
|
157
171
|
requirements:
|
158
172
|
- - "~>"
|
159
173
|
- !ruby/object:Gem::Version
|
160
|
-
version: '
|
174
|
+
version: '3.0'
|
161
175
|
type: :runtime
|
162
176
|
prerelease: false
|
163
177
|
version_requirements: !ruby/object:Gem::Requirement
|
164
178
|
requirements:
|
165
179
|
- - "~>"
|
166
180
|
- !ruby/object:Gem::Version
|
167
|
-
version: '
|
181
|
+
version: '3.0'
|
182
|
+
- !ruby/object:Gem::Dependency
|
183
|
+
name: rackup
|
184
|
+
requirement: !ruby/object:Gem::Requirement
|
185
|
+
requirements:
|
186
|
+
- - "~>"
|
187
|
+
- !ruby/object:Gem::Version
|
188
|
+
version: '2.1'
|
189
|
+
type: :runtime
|
190
|
+
prerelease: false
|
191
|
+
version_requirements: !ruby/object:Gem::Requirement
|
192
|
+
requirements:
|
193
|
+
- - "~>"
|
194
|
+
- !ruby/object:Gem::Version
|
195
|
+
version: '2.1'
|
168
196
|
- !ruby/object:Gem::Dependency
|
169
197
|
name: redis
|
170
198
|
requirement: !ruby/object:Gem::Requirement
|
@@ -930,6 +958,7 @@ files:
|
|
930
958
|
- lib/openc3/migrations/20221210174900_convert_to_multi.rb
|
931
959
|
- lib/openc3/migrations/20230615000000_autonomic.rb
|
932
960
|
- lib/openc3/migrations/20230915000002_no_scope_log_messages.rb
|
961
|
+
- lib/openc3/migrations/20231022000000_tlm_viewer_config.rb
|
933
962
|
- lib/openc3/models/activity_model.rb
|
934
963
|
- lib/openc3/models/auth_model.rb
|
935
964
|
- lib/openc3/models/cvt_model.rb
|
@@ -949,6 +978,7 @@ files:
|
|
949
978
|
- lib/openc3/models/ping_model.rb
|
950
979
|
- lib/openc3/models/plugin_model.rb
|
951
980
|
- lib/openc3/models/process_status_model.rb
|
981
|
+
- lib/openc3/models/python_package_model.rb
|
952
982
|
- lib/openc3/models/reaction_model.rb
|
953
983
|
- lib/openc3/models/reducer_model.rb
|
954
984
|
- lib/openc3/models/router_model.rb
|
@@ -994,12 +1024,13 @@ files:
|
|
994
1024
|
- lib/openc3/processors/watermark_processor.rb
|
995
1025
|
- lib/openc3/script.rb
|
996
1026
|
- lib/openc3/script/api_shared.rb
|
1027
|
+
- lib/openc3/script/calendar.rb
|
997
1028
|
- lib/openc3/script/commands.rb
|
998
1029
|
- lib/openc3/script/exceptions.rb
|
999
1030
|
- lib/openc3/script/extract.rb
|
1000
|
-
- lib/openc3/script/gems.rb
|
1001
1031
|
- lib/openc3/script/limits.rb
|
1002
1032
|
- lib/openc3/script/metadata.rb
|
1033
|
+
- lib/openc3/script/packages.rb
|
1003
1034
|
- lib/openc3/script/plugins.rb
|
1004
1035
|
- lib/openc3/script/screen.rb
|
1005
1036
|
- lib/openc3/script/script.rb
|