openc3 5.10.1 → 5.11.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.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +3 -2
  3. data/data/config/target.yaml +9 -0
  4. data/ext/openc3/ext/packet/packet.c +3 -0
  5. data/ext/openc3/ext/reducer_microservice/extconf.rb +13 -0
  6. data/ext/openc3/ext/reducer_microservice/reducer_microservice.c +165 -0
  7. data/ext/openc3/ext/structure/structure.c +7 -9
  8. data/lib/openc3/accessors/accessor.rb +53 -3
  9. data/lib/openc3/accessors/binary_accessor.rb +16 -0
  10. data/lib/openc3/accessors/cbor_accessor.rb +3 -3
  11. data/lib/openc3/accessors/form_accessor.rb +78 -0
  12. data/lib/openc3/accessors/http_accessor.rb +145 -0
  13. data/lib/openc3/accessors/json_accessor.rb +19 -3
  14. data/lib/openc3/accessors/xml_accessor.rb +18 -1
  15. data/lib/openc3/accessors.rb +3 -1
  16. data/lib/openc3/config/config_parser.rb +7 -5
  17. data/lib/openc3/config/meta_config_parser.rb +1 -1
  18. data/lib/openc3/core_ext/string.rb +16 -1
  19. data/lib/openc3/interfaces/http_client_interface.rb +202 -0
  20. data/lib/openc3/interfaces/http_server_interface.rb +183 -0
  21. data/lib/openc3/interfaces/interface.rb +86 -16
  22. data/lib/openc3/interfaces/mqtt_interface.rb +6 -5
  23. data/lib/openc3/interfaces/protocols/burst_protocol.rb +11 -11
  24. data/lib/openc3/interfaces/protocols/cobs_protocol.rb +7 -7
  25. data/lib/openc3/interfaces/protocols/crc_protocol.rb +7 -7
  26. data/lib/openc3/interfaces/protocols/length_protocol.rb +6 -6
  27. data/lib/openc3/interfaces/protocols/preidentified_protocol.rb +9 -5
  28. data/lib/openc3/interfaces/protocols/protocol.rb +8 -6
  29. data/lib/openc3/interfaces/protocols/slip_protocol.rb +8 -8
  30. data/lib/openc3/interfaces/protocols/template_protocol.rb +6 -7
  31. data/lib/openc3/interfaces/protocols/terminated_protocol.rb +4 -4
  32. data/lib/openc3/interfaces/simulated_target_interface.rb +2 -0
  33. data/lib/openc3/interfaces/stream_interface.rb +6 -4
  34. data/lib/openc3/interfaces/tcpip_server_interface.rb +2 -0
  35. data/lib/openc3/interfaces/udp_interface.rb +8 -5
  36. data/lib/openc3/interfaces.rb +2 -0
  37. data/lib/openc3/logs/buffered_packet_log_writer.rb +6 -7
  38. data/lib/openc3/logs/log_writer.rb +2 -10
  39. data/lib/openc3/logs/packet_log_constants.rb +13 -3
  40. data/lib/openc3/logs/packet_log_reader.rb +35 -98
  41. data/lib/openc3/logs/packet_log_writer.rb +24 -62
  42. data/lib/openc3/logs/text_log_writer.rb +32 -6
  43. data/lib/openc3/microservices/cleanup_microservice.rb +23 -16
  44. data/lib/openc3/microservices/decom_microservice.rb +8 -20
  45. data/lib/openc3/microservices/log_microservice.rb +3 -1
  46. data/lib/openc3/microservices/reaction_microservice.rb +22 -11
  47. data/lib/openc3/microservices/reducer_microservice.rb +174 -130
  48. data/lib/openc3/{models/notification_model.rb → microservices/scope_cleanup_microservice.rb} +20 -21
  49. data/lib/openc3/microservices/text_log_microservice.rb +2 -5
  50. data/lib/openc3/microservices/timeline_microservice.rb +0 -1
  51. data/lib/openc3/microservices/trigger_group_microservice.rb +0 -1
  52. data/lib/openc3/migrations/20230915000002_no_scope_log_messages.rb +44 -0
  53. data/lib/openc3/models/microservice_model.rb +1 -1
  54. data/lib/openc3/models/scope_model.rb +65 -34
  55. data/lib/openc3/models/target_model.rb +25 -5
  56. data/lib/openc3/models/tool_model.rb +14 -2
  57. data/lib/openc3/models/widget_model.rb +1 -1
  58. data/lib/openc3/packets/json_packet.rb +10 -2
  59. data/lib/openc3/packets/packet.rb +30 -9
  60. data/lib/openc3/packets/packet_config.rb +6 -2
  61. data/lib/openc3/packets/parsers/packet_item_parser.rb +11 -6
  62. data/lib/openc3/packets/structure.rb +19 -12
  63. data/lib/openc3/script/storage.rb +1 -1
  64. data/lib/openc3/script/web_socket_api.rb +17 -14
  65. data/lib/openc3/topics/telemetry_topic.rb +2 -1
  66. data/lib/openc3/utilities/bucket_utilities.rb +2 -0
  67. data/lib/openc3/utilities/cli_generator.rb +1 -1
  68. data/lib/openc3/utilities/logger.rb +62 -47
  69. data/lib/openc3/utilities/metric.rb +19 -1
  70. data/lib/openc3/utilities/sleeper.rb +3 -1
  71. data/lib/openc3/utilities/throttle.rb +76 -0
  72. data/lib/openc3/version.rb +6 -6
  73. data/templates/tool_angular/package.json +20 -20
  74. data/templates/tool_angular/yarn.lock +112 -106
  75. data/templates/tool_react/package.json +16 -18
  76. data/templates/tool_react/yarn.lock +977 -664
  77. data/templates/tool_svelte/.prettierrc.js +5 -0
  78. data/templates/tool_svelte/package.json +18 -18
  79. data/templates/tool_svelte/src/services/cable.js +1 -1
  80. data/templates/tool_svelte/src/services/openc3-api.js +173 -173
  81. data/templates/tool_svelte/yarn.lock +767 -665
  82. data/templates/tool_vue/package.json +10 -10
  83. data/templates/tool_vue/yarn.lock +225 -43
  84. data/templates/widget/package.json +10 -10
  85. data/templates/widget/yarn.lock +223 -46
  86. metadata +41 -4
  87. data/lib/openc3/topics/notifications_topic.rb +0 -31
@@ -172,10 +172,10 @@
172
172
  json5 "^2.2.2"
173
173
  semver "^6.3.0"
174
174
 
175
- "@babel/eslint-parser@7.22.10":
176
- version "7.22.10"
177
- resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.10.tgz#bfdf3d1b32ad573fe7c1c3447e0b485e3a41fd09"
178
- integrity sha512-0J8DNPRXQRLeR9rPaUMM3fA+RbixjnVLe/MRMYCkp3hzgsSuxCHQ8NN8xQG1wIHKJ4a1DTROTvFJdW+B5/eOsg==
175
+ "@babel/eslint-parser@7.22.15":
176
+ version "7.22.15"
177
+ resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz#263f059c476e29ca4972481a17b8b660cb025a34"
178
+ integrity sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==
179
179
  dependencies:
180
180
  "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
181
181
  eslint-visitor-keys "^2.1.0"
@@ -1185,10 +1185,10 @@
1185
1185
  minimatch "^3.1.2"
1186
1186
  strip-json-comments "^3.1.1"
1187
1187
 
1188
- "@eslint/js@^8.47.0":
1189
- version "8.47.0"
1190
- resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.47.0.tgz#5478fdf443ff8158f9de171c704ae45308696c7d"
1191
- integrity sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og==
1188
+ "@eslint/js@8.49.0":
1189
+ version "8.49.0"
1190
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.49.0.tgz#86f79756004a97fa4df866835093f1df3d03c333"
1191
+ integrity sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==
1192
1192
 
1193
1193
  "@graphql-tools/merge@8.3.1":
1194
1194
  version "8.3.1"
@@ -1268,10 +1268,10 @@
1268
1268
  dependencies:
1269
1269
  "@hapi/hoek" "^9.0.0"
1270
1270
 
1271
- "@humanwhocodes/config-array@^0.11.10":
1272
- version "0.11.10"
1273
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2"
1274
- integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==
1271
+ "@humanwhocodes/config-array@^0.11.11":
1272
+ version "0.11.11"
1273
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.11.tgz#88a04c570dbbc7dd943e4712429c3df09bc32844"
1274
+ integrity sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==
1275
1275
  dependencies:
1276
1276
  "@humanwhocodes/object-schema" "^1.2.1"
1277
1277
  debug "^4.1.1"
@@ -1396,6 +1396,18 @@
1396
1396
  "@nodelib/fs.scandir" "2.1.5"
1397
1397
  fastq "^1.6.0"
1398
1398
 
1399
+ "@pkgr/utils@^2.3.1":
1400
+ version "2.4.2"
1401
+ resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc"
1402
+ integrity sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==
1403
+ dependencies:
1404
+ cross-spawn "^7.0.3"
1405
+ fast-glob "^3.3.0"
1406
+ is-glob "^4.0.3"
1407
+ open "^9.1.0"
1408
+ picocolors "^1.0.0"
1409
+ tslib "^2.6.0"
1410
+
1399
1411
  "@polka/url@^1.0.0-next.20":
1400
1412
  version "1.0.0-next.21"
1401
1413
  resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.21.tgz#5de5a2385a35309427f6011992b544514d559aa1"
@@ -2101,13 +2113,13 @@
2101
2113
  optionalDependencies:
2102
2114
  prettier "^1.18.2 || ^2.0.0"
2103
2115
 
2104
- "@vue/eslint-config-prettier@7.1.0":
2105
- version "7.1.0"
2106
- resolved "https://registry.yarnpkg.com/@vue/eslint-config-prettier/-/eslint-config-prettier-7.1.0.tgz#97936379c7fb1d982b9d2c6b122306e3c2e464c8"
2107
- integrity sha512-Pv/lVr0bAzSIHLd9iz0KnvAr4GKyCEl+h52bc4e5yWuDVtLgFwycF7nrbWTAQAS+FU6q1geVd07lc6EWfJiWKQ==
2116
+ "@vue/eslint-config-prettier@8.0.0":
2117
+ version "8.0.0"
2118
+ resolved "https://registry.yarnpkg.com/@vue/eslint-config-prettier/-/eslint-config-prettier-8.0.0.tgz#de5cb77ed483b43683d17a788808a0fa4e7bd07e"
2119
+ integrity sha512-55dPqtC4PM/yBjhAr+yEw6+7KzzdkBuLmnhBrDfp4I48+wy+Giqqj9yUr5T2uD/BkBROjjmqnLZmXRdOx/VtQg==
2108
2120
  dependencies:
2109
- eslint-config-prettier "^8.3.0"
2110
- eslint-plugin-prettier "^4.0.0"
2121
+ eslint-config-prettier "^8.8.0"
2122
+ eslint-plugin-prettier "^5.0.0"
2111
2123
 
2112
2124
  "@vue/shared@3.2.47":
2113
2125
  version "3.2.47"
@@ -2843,6 +2855,11 @@ batch@0.6.1:
2843
2855
  resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
2844
2856
  integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==
2845
2857
 
2858
+ big-integer@^1.6.44:
2859
+ version "1.6.51"
2860
+ resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686"
2861
+ integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==
2862
+
2846
2863
  big.js@^5.2.2:
2847
2864
  version "5.2.2"
2848
2865
  resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
@@ -2940,6 +2957,13 @@ boxen@^5.0.0:
2940
2957
  widest-line "^3.1.0"
2941
2958
  wrap-ansi "^7.0.0"
2942
2959
 
2960
+ bplist-parser@^0.2.0:
2961
+ version "0.2.0"
2962
+ resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e"
2963
+ integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==
2964
+ dependencies:
2965
+ big-integer "^1.6.44"
2966
+
2943
2967
  brace-expansion@^1.1.7:
2944
2968
  version "1.1.11"
2945
2969
  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
@@ -3029,6 +3053,13 @@ builtins@^1.0.3:
3029
3053
  resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88"
3030
3054
  integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==
3031
3055
 
3056
+ bundle-name@^3.0.0:
3057
+ version "3.0.0"
3058
+ resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-3.0.0.tgz#ba59bcc9ac785fb67ccdbf104a2bf60c099f0e1a"
3059
+ integrity sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==
3060
+ dependencies:
3061
+ run-applescript "^5.0.0"
3062
+
3032
3063
  bytes@3.0.0:
3033
3064
  version "3.0.0"
3034
3065
  resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
@@ -3758,6 +3789,24 @@ deepmerge@^4.2.2:
3758
3789
  resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
3759
3790
  integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
3760
3791
 
3792
+ default-browser-id@^3.0.0:
3793
+ version "3.0.0"
3794
+ resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-3.0.0.tgz#bee7bbbef1f4e75d31f98f4d3f1556a14cea790c"
3795
+ integrity sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==
3796
+ dependencies:
3797
+ bplist-parser "^0.2.0"
3798
+ untildify "^4.0.0"
3799
+
3800
+ default-browser@^4.0.0:
3801
+ version "4.0.0"
3802
+ resolved "https://registry.yarnpkg.com/default-browser/-/default-browser-4.0.0.tgz#53c9894f8810bf86696de117a6ce9085a3cbc7da"
3803
+ integrity sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==
3804
+ dependencies:
3805
+ bundle-name "^3.0.0"
3806
+ default-browser-id "^3.0.0"
3807
+ execa "^7.1.1"
3808
+ titleize "^3.0.0"
3809
+
3761
3810
  default-gateway@^6.0.3:
3762
3811
  version "6.0.3"
3763
3812
  resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71"
@@ -3777,6 +3826,11 @@ define-lazy-prop@^2.0.0:
3777
3826
  resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f"
3778
3827
  integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==
3779
3828
 
3829
+ define-lazy-prop@^3.0.0:
3830
+ version "3.0.0"
3831
+ resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f"
3832
+ integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==
3833
+
3780
3834
  define-properties@^1.1.4:
3781
3835
  version "1.2.0"
3782
3836
  resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5"
@@ -4059,17 +4113,23 @@ escape-string-regexp@^4.0.0:
4059
4113
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
4060
4114
  integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
4061
4115
 
4062
- eslint-config-prettier@8.8.0, eslint-config-prettier@^8.3.0:
4063
- version "8.8.0"
4064
- resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz#bfda738d412adc917fd7b038857110efe98c9348"
4065
- integrity sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==
4116
+ eslint-config-prettier@9.0.0:
4117
+ version "9.0.0"
4118
+ resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz#eb25485946dd0c66cd216a46232dc05451518d1f"
4119
+ integrity sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==
4066
4120
 
4067
- eslint-plugin-prettier@4.2.1, eslint-plugin-prettier@^4.0.0:
4068
- version "4.2.1"
4069
- resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b"
4070
- integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==
4121
+ eslint-config-prettier@^8.8.0:
4122
+ version "8.10.0"
4123
+ resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11"
4124
+ integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==
4125
+
4126
+ eslint-plugin-prettier@5.0.0, eslint-plugin-prettier@^5.0.0:
4127
+ version "5.0.0"
4128
+ resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.0.tgz#6887780ed95f7708340ec79acfdf60c35b9be57a"
4129
+ integrity sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==
4071
4130
  dependencies:
4072
4131
  prettier-linter-helpers "^1.0.0"
4132
+ synckit "^0.8.5"
4073
4133
 
4074
4134
  eslint-plugin-vue@9.17.0:
4075
4135
  version "9.17.0"
@@ -4139,16 +4199,16 @@ eslint-webpack-plugin@^3.1.0:
4139
4199
  normalize-path "^3.0.0"
4140
4200
  schema-utils "^4.0.0"
4141
4201
 
4142
- eslint@8.47.0:
4143
- version "8.47.0"
4144
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.47.0.tgz#c95f9b935463fb4fad7005e626c7621052e90806"
4145
- integrity sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q==
4202
+ eslint@8.49.0:
4203
+ version "8.49.0"
4204
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.49.0.tgz#09d80a89bdb4edee2efcf6964623af1054bf6d42"
4205
+ integrity sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==
4146
4206
  dependencies:
4147
4207
  "@eslint-community/eslint-utils" "^4.2.0"
4148
4208
  "@eslint-community/regexpp" "^4.6.1"
4149
4209
  "@eslint/eslintrc" "^2.1.2"
4150
- "@eslint/js" "^8.47.0"
4151
- "@humanwhocodes/config-array" "^0.11.10"
4210
+ "@eslint/js" "8.49.0"
4211
+ "@humanwhocodes/config-array" "^0.11.11"
4152
4212
  "@humanwhocodes/module-importer" "^1.0.1"
4153
4213
  "@nodelib/fs.walk" "^1.2.8"
4154
4214
  ajv "^6.12.4"
@@ -4330,6 +4390,21 @@ execa@^5.0.0:
4330
4390
  signal-exit "^3.0.3"
4331
4391
  strip-final-newline "^2.0.0"
4332
4392
 
4393
+ execa@^7.1.1:
4394
+ version "7.2.0"
4395
+ resolved "https://registry.yarnpkg.com/execa/-/execa-7.2.0.tgz#657e75ba984f42a70f38928cedc87d6f2d4fe4e9"
4396
+ integrity sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==
4397
+ dependencies:
4398
+ cross-spawn "^7.0.3"
4399
+ get-stream "^6.0.1"
4400
+ human-signals "^4.3.0"
4401
+ is-stream "^3.0.0"
4402
+ merge-stream "^2.0.0"
4403
+ npm-run-path "^5.1.0"
4404
+ onetime "^6.0.0"
4405
+ signal-exit "^3.0.7"
4406
+ strip-final-newline "^3.0.0"
4407
+
4333
4408
  expand-brackets@^2.1.4:
4334
4409
  version "2.1.4"
4335
4410
  resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
@@ -4459,6 +4534,17 @@ fast-glob@^3.2.7, fast-glob@^3.2.9:
4459
4534
  merge2 "^1.3.0"
4460
4535
  micromatch "^4.0.4"
4461
4536
 
4537
+ fast-glob@^3.3.0:
4538
+ version "3.3.1"
4539
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4"
4540
+ integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==
4541
+ dependencies:
4542
+ "@nodelib/fs.stat" "^2.0.2"
4543
+ "@nodelib/fs.walk" "^1.2.3"
4544
+ glob-parent "^5.1.2"
4545
+ merge2 "^1.3.0"
4546
+ micromatch "^4.0.4"
4547
+
4462
4548
  fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
4463
4549
  version "2.1.0"
4464
4550
  resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
@@ -4813,7 +4899,7 @@ get-stream@^5.0.0:
4813
4899
  dependencies:
4814
4900
  pump "^3.0.0"
4815
4901
 
4816
- get-stream@^6.0.0:
4902
+ get-stream@^6.0.0, get-stream@^6.0.1:
4817
4903
  version "6.0.1"
4818
4904
  resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
4819
4905
  integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
@@ -5191,6 +5277,11 @@ human-signals@^2.1.0:
5191
5277
  resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
5192
5278
  integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
5193
5279
 
5280
+ human-signals@^4.3.0:
5281
+ version "4.3.1"
5282
+ resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2"
5283
+ integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==
5284
+
5194
5285
  iconv-lite@0.4.24, iconv-lite@^0.4.24:
5195
5286
  version "0.4.24"
5196
5287
  resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
@@ -5416,6 +5507,11 @@ is-docker@^2.0.0, is-docker@^2.1.1:
5416
5507
  resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
5417
5508
  integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
5418
5509
 
5510
+ is-docker@^3.0.0:
5511
+ version "3.0.0"
5512
+ resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200"
5513
+ integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==
5514
+
5419
5515
  is-extendable@^0.1.0, is-extendable@^0.1.1:
5420
5516
  version "0.1.1"
5421
5517
  resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
@@ -5457,6 +5553,13 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
5457
5553
  dependencies:
5458
5554
  is-extglob "^2.1.1"
5459
5555
 
5556
+ is-inside-container@^1.0.0:
5557
+ version "1.0.0"
5558
+ resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4"
5559
+ integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==
5560
+ dependencies:
5561
+ is-docker "^3.0.0"
5562
+
5460
5563
  is-interactive@^1.0.0:
5461
5564
  version "1.0.0"
5462
5565
  resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e"
@@ -5526,6 +5629,11 @@ is-stream@^2.0.0:
5526
5629
  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
5527
5630
  integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
5528
5631
 
5632
+ is-stream@^3.0.0:
5633
+ version "3.0.0"
5634
+ resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac"
5635
+ integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==
5636
+
5529
5637
  is-unicode-supported@^0.1.0:
5530
5638
  version "0.1.0"
5531
5639
  resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
@@ -6144,6 +6252,11 @@ mimic-fn@^2.1.0:
6144
6252
  resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
6145
6253
  integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
6146
6254
 
6255
+ mimic-fn@^4.0.0:
6256
+ version "4.0.0"
6257
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc"
6258
+ integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==
6259
+
6147
6260
  mimic-response@^1.0.0:
6148
6261
  version "1.0.1"
6149
6262
  resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
@@ -6406,6 +6519,13 @@ npm-run-path@^4.0.0, npm-run-path@^4.0.1:
6406
6519
  dependencies:
6407
6520
  path-key "^3.0.0"
6408
6521
 
6522
+ npm-run-path@^5.1.0:
6523
+ version "5.1.0"
6524
+ resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00"
6525
+ integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==
6526
+ dependencies:
6527
+ path-key "^4.0.0"
6528
+
6409
6529
  nth-check@^2.0.1, nth-check@^2.1.1:
6410
6530
  version "2.1.1"
6411
6531
  resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d"
@@ -6507,6 +6627,13 @@ onetime@^5.1.0, onetime@^5.1.2:
6507
6627
  dependencies:
6508
6628
  mimic-fn "^2.1.0"
6509
6629
 
6630
+ onetime@^6.0.0:
6631
+ version "6.0.0"
6632
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4"
6633
+ integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==
6634
+ dependencies:
6635
+ mimic-fn "^4.0.0"
6636
+
6510
6637
  open@^8.0.2, open@^8.0.9:
6511
6638
  version "8.4.2"
6512
6639
  resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
@@ -6516,6 +6643,16 @@ open@^8.0.2, open@^8.0.9:
6516
6643
  is-docker "^2.1.1"
6517
6644
  is-wsl "^2.2.0"
6518
6645
 
6646
+ open@^9.1.0:
6647
+ version "9.1.0"
6648
+ resolved "https://registry.yarnpkg.com/open/-/open-9.1.0.tgz#684934359c90ad25742f5a26151970ff8c6c80b6"
6649
+ integrity sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==
6650
+ dependencies:
6651
+ default-browser "^4.0.0"
6652
+ define-lazy-prop "^3.0.0"
6653
+ is-inside-container "^1.0.0"
6654
+ is-wsl "^2.2.0"
6655
+
6519
6656
  opener@^1.5.2:
6520
6657
  version "1.5.2"
6521
6658
  resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
@@ -6747,6 +6884,11 @@ path-key@^3.0.0, path-key@^3.1.0:
6747
6884
  resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
6748
6885
  integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
6749
6886
 
6887
+ path-key@^4.0.0:
6888
+ version "4.0.0"
6889
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18"
6890
+ integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==
6891
+
6750
6892
  path-parse@^1.0.7:
6751
6893
  version "1.0.7"
6752
6894
  resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
@@ -7152,10 +7294,10 @@ prettier-linter-helpers@^1.0.0:
7152
7294
  dependencies:
7153
7295
  fast-diff "^1.1.2"
7154
7296
 
7155
- prettier@2.8.8:
7156
- version "2.8.8"
7157
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
7158
- integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
7297
+ prettier@3.0.3:
7298
+ version "3.0.3"
7299
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.3.tgz#432a51f7ba422d1469096c0fdc28e235db8f9643"
7300
+ integrity sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==
7159
7301
 
7160
7302
  "prettier@^1.18.2 || ^2.0.0":
7161
7303
  version "2.8.6"
@@ -7546,6 +7688,13 @@ rss-parser@^3.11.0:
7546
7688
  entities "^2.0.3"
7547
7689
  xml2js "^0.4.19"
7548
7690
 
7691
+ run-applescript@^5.0.0:
7692
+ version "5.0.0"
7693
+ resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-5.0.0.tgz#e11e1c932e055d5c6b40d98374e0268d9b11899c"
7694
+ integrity sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==
7695
+ dependencies:
7696
+ execa "^5.0.0"
7697
+
7549
7698
  run-async@^2.4.0:
7550
7699
  version "2.4.1"
7551
7700
  resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
@@ -7601,10 +7750,10 @@ sass-loader@13.3.2:
7601
7750
  dependencies:
7602
7751
  neo-async "^2.6.2"
7603
7752
 
7604
- sass@1.63.6:
7605
- version "1.63.6"
7606
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.63.6.tgz#481610e612902e0c31c46b46cf2dad66943283ea"
7607
- integrity sha512-MJuxGMHzaOW7ipp+1KdELtqKbfAWbH7OLIdoSMnVe3EXPMTmxTmlaZDCTsgIpPCs3w99lLo9/zDKkOrJuT5byw==
7753
+ sass@1.66.1:
7754
+ version "1.66.1"
7755
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.66.1.tgz#04b51c4671e4650aa393740e66a4e58b44d055b1"
7756
+ integrity sha512-50c+zTsZOJVgFfTgwwEzkjA3/QACgdNsKueWPyAR0mRINIvLAStVQBbPg14iuqEQ74NPDbXzJARJ/O4SI1zftA==
7608
7757
  dependencies:
7609
7758
  chokidar ">=3.0.0 <4.0.0"
7610
7759
  immutable "^4.0.0"
@@ -7843,7 +7992,7 @@ side-channel@^1.0.4:
7843
7992
  get-intrinsic "^1.0.2"
7844
7993
  object-inspect "^1.9.0"
7845
7994
 
7846
- signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3:
7995
+ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
7847
7996
  version "3.0.7"
7848
7997
  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
7849
7998
  integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
@@ -8131,6 +8280,11 @@ strip-final-newline@^2.0.0:
8131
8280
  resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
8132
8281
  integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
8133
8282
 
8283
+ strip-final-newline@^3.0.0:
8284
+ version "3.0.0"
8285
+ resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd"
8286
+ integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==
8287
+
8134
8288
  strip-indent@^2.0.0:
8135
8289
  version "2.0.0"
8136
8290
  resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
@@ -8216,6 +8370,14 @@ symbol-observable@^1.0.4:
8216
8370
  resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
8217
8371
  integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
8218
8372
 
8373
+ synckit@^0.8.5:
8374
+ version "0.8.5"
8375
+ resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.5.tgz#b7f4358f9bb559437f9f167eb6bc46b3c9818fa3"
8376
+ integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==
8377
+ dependencies:
8378
+ "@pkgr/utils" "^2.3.1"
8379
+ tslib "^2.5.0"
8380
+
8219
8381
  tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0:
8220
8382
  version "2.2.1"
8221
8383
  resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
@@ -8324,6 +8486,11 @@ timed-out@^4.0.1:
8324
8486
  resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
8325
8487
  integrity sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==
8326
8488
 
8489
+ titleize@^3.0.0:
8490
+ version "3.0.0"
8491
+ resolved "https://registry.yarnpkg.com/titleize/-/titleize-3.0.0.tgz#71c12eb7fdd2558aa8a44b0be83b8a76694acd53"
8492
+ integrity sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==
8493
+
8327
8494
  tmp@^0.0.33:
8328
8495
  version "0.0.33"
8329
8496
  resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
@@ -8405,6 +8572,11 @@ tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0:
8405
8572
  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
8406
8573
  integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==
8407
8574
 
8575
+ tslib@^2.5.0, tslib@^2.6.0:
8576
+ version "2.6.2"
8577
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
8578
+ integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
8579
+
8408
8580
  tunnel-agent@^0.6.0:
8409
8581
  version "0.6.0"
8410
8582
  resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
@@ -8511,6 +8683,11 @@ unset-value@^1.0.0:
8511
8683
  has-value "^0.3.1"
8512
8684
  isobject "^3.0.0"
8513
8685
 
8686
+ untildify@^4.0.0:
8687
+ version "4.0.0"
8688
+ resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b"
8689
+ integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==
8690
+
8514
8691
  update-browserslist-db@^1.0.10:
8515
8692
  version "1.0.10"
8516
8693
  resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
@@ -8687,10 +8864,10 @@ vue@2.7.14, vue@^2.6.14:
8687
8864
  "@vue/compiler-sfc" "2.7.14"
8688
8865
  csstype "^3.1.0"
8689
8866
 
8690
- vuetify@2.6.14:
8691
- version "2.6.14"
8692
- resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-2.6.14.tgz#a5bf662de938efe0450ac59776b04f760f5407d2"
8693
- integrity sha512-nr6wU3uTzhhEPssH23cW0Ee/hCrayp7cjl3nNjM2OmNwiJlV91tZiL1VO3597SqZyjh1xIa+m9J2rpKTSdIlrA==
8867
+ vuetify@2.7.1:
8868
+ version "2.7.1"
8869
+ resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-2.7.1.tgz#49fc4d460ecfb51ed40d5befff779ceabf4f5a03"
8870
+ integrity sha512-DVFmRsDtYrITw9yuGLwpFWngFYzEgk0KwloDCIV3+vhZw+NBFJOSzdbttbYmOwtqvQlhDxUyIRQolrRbSFAKlg==
8694
8871
 
8695
8872
  watchpack@^2.4.0:
8696
8873
  version "2.4.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.10.1
4
+ version: 5.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Melton
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-08-17 00:00:00.000000000 Z
12
+ date: 2023-09-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -235,6 +235,20 @@ dependencies:
235
235
  - - "~>"
236
236
  - !ruby/object:Gem::Version
237
237
  version: '2.7'
238
+ - !ruby/object:Gem::Dependency
239
+ name: faraday-follow_redirects
240
+ requirement: !ruby/object:Gem::Requirement
241
+ requirements:
242
+ - - "~>"
243
+ - !ruby/object:Gem::Version
244
+ version: '0.3'
245
+ type: :runtime
246
+ prerelease: false
247
+ version_requirements: !ruby/object:Gem::Requirement
248
+ requirements:
249
+ - - "~>"
250
+ - !ruby/object:Gem::Version
251
+ version: '0.3'
238
252
  - !ruby/object:Gem::Dependency
239
253
  name: aws-sdk-s3
240
254
  requirement: !ruby/object:Gem::Requirement
@@ -459,6 +473,20 @@ dependencies:
459
473
  - - "~>"
460
474
  - !ruby/object:Gem::Version
461
475
  version: '0.3'
476
+ - !ruby/object:Gem::Dependency
477
+ name: webrick
478
+ requirement: !ruby/object:Gem::Requirement
479
+ requirements:
480
+ - - "~>"
481
+ - !ruby/object:Gem::Version
482
+ version: '1.8'
483
+ type: :runtime
484
+ prerelease: false
485
+ version_requirements: !ruby/object:Gem::Requirement
486
+ requirements:
487
+ - - "~>"
488
+ - !ruby/object:Gem::Version
489
+ version: '1.8'
462
490
  - !ruby/object:Gem::Dependency
463
491
  name: websocket
464
492
  requirement: !ruby/object:Gem::Requirement
@@ -691,6 +719,7 @@ extensions:
691
719
  - ext/openc3/ext/packet/extconf.rb
692
720
  - ext/openc3/ext/platform/extconf.rb
693
721
  - ext/openc3/ext/polynomial_conversion/extconf.rb
722
+ - ext/openc3/ext/reducer_microservice/extconf.rb
694
723
  - ext/openc3/ext/string/extconf.rb
695
724
  - ext/openc3/ext/tabbed_plots_config/extconf.rb
696
725
  - ext/openc3/ext/telemetry/extconf.rb
@@ -752,6 +781,8 @@ files:
752
781
  - ext/openc3/ext/platform/platform.c
753
782
  - ext/openc3/ext/polynomial_conversion/extconf.rb
754
783
  - ext/openc3/ext/polynomial_conversion/polynomial_conversion.c
784
+ - ext/openc3/ext/reducer_microservice/extconf.rb
785
+ - ext/openc3/ext/reducer_microservice/reducer_microservice.c
755
786
  - ext/openc3/ext/string/extconf.rb
756
787
  - ext/openc3/ext/string/string.c
757
788
  - ext/openc3/ext/structure/structure.c
@@ -766,7 +797,9 @@ files:
766
797
  - lib/openc3/accessors/accessor.rb
767
798
  - lib/openc3/accessors/binary_accessor.rb
768
799
  - lib/openc3/accessors/cbor_accessor.rb
800
+ - lib/openc3/accessors/form_accessor.rb
769
801
  - lib/openc3/accessors/html_accessor.rb
802
+ - lib/openc3/accessors/http_accessor.rb
770
803
  - lib/openc3/accessors/json_accessor.rb
771
804
  - lib/openc3/accessors/xml_accessor.rb
772
805
  - lib/openc3/api/README.md
@@ -828,6 +861,8 @@ files:
828
861
  - lib/openc3/core_ext/time.rb
829
862
  - lib/openc3/ext/.keep
830
863
  - lib/openc3/interfaces.rb
864
+ - lib/openc3/interfaces/http_client_interface.rb
865
+ - lib/openc3/interfaces/http_server_interface.rb
831
866
  - lib/openc3/interfaces/interface.rb
832
867
  - lib/openc3/interfaces/linc_interface.rb
833
868
  - lib/openc3/interfaces/mqtt_interface.rb
@@ -886,6 +921,7 @@ files:
886
921
  - lib/openc3/microservices/reaction_microservice.rb
887
922
  - lib/openc3/microservices/reducer_microservice.rb
888
923
  - lib/openc3/microservices/router_microservice.rb
924
+ - lib/openc3/microservices/scope_cleanup_microservice.rb
889
925
  - lib/openc3/microservices/text_log_microservice.rb
890
926
  - lib/openc3/microservices/timeline_microservice.rb
891
927
  - lib/openc3/microservices/trigger_group_microservice.rb
@@ -893,6 +929,7 @@ files:
893
929
  - lib/openc3/migrations/20221202214600_add_target_names.rb
894
930
  - lib/openc3/migrations/20221210174900_convert_to_multi.rb
895
931
  - lib/openc3/migrations/20230615000000_autonomic.rb
932
+ - lib/openc3/migrations/20230915000002_no_scope_log_messages.rb
896
933
  - lib/openc3/models/activity_model.rb
897
934
  - lib/openc3/models/auth_model.rb
898
935
  - lib/openc3/models/cvt_model.rb
@@ -908,7 +945,6 @@ files:
908
945
  - lib/openc3/models/migration_model.rb
909
946
  - lib/openc3/models/model.rb
910
947
  - lib/openc3/models/note_model.rb
911
- - lib/openc3/models/notification_model.rb
912
948
  - lib/openc3/models/offline_access_model.rb
913
949
  - lib/openc3/models/ping_model.rb
914
950
  - lib/openc3/models/plugin_model.rb
@@ -1001,7 +1037,6 @@ files:
1001
1037
  - lib/openc3/topics/decom_interface_topic.rb
1002
1038
  - lib/openc3/topics/interface_topic.rb
1003
1039
  - lib/openc3/topics/limits_event_topic.rb
1004
- - lib/openc3/topics/notifications_topic.rb
1005
1040
  - lib/openc3/topics/router_topic.rb
1006
1041
  - lib/openc3/topics/telemetry_decom_topic.rb
1007
1042
  - lib/openc3/topics/telemetry_reduced_topics.rb
@@ -1037,6 +1072,7 @@ files:
1037
1072
  - lib/openc3/utilities/store.rb
1038
1073
  - lib/openc3/utilities/store_autoload.rb
1039
1074
  - lib/openc3/utilities/target_file.rb
1075
+ - lib/openc3/utilities/throttle.rb
1040
1076
  - lib/openc3/utilities/zip.rb
1041
1077
  - lib/openc3/version.rb
1042
1078
  - lib/openc3/win32/excel.rb
@@ -1101,6 +1137,7 @@ files:
1101
1137
  - templates/tool_react/yarn.lock
1102
1138
  - templates/tool_svelte/.gitignore
1103
1139
  - templates/tool_svelte/.prettierignore
1140
+ - templates/tool_svelte/.prettierrc.js
1104
1141
  - templates/tool_svelte/babel.config.js
1105
1142
  - templates/tool_svelte/build/smui.css
1106
1143
  - templates/tool_svelte/jest.config.js