openc3 5.15.1 → 5.16.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of openc3 might be problematic. Click here for more details.

Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/Rakefile +1 -0
  4. data/bin/openc3cli +20 -0
  5. data/bin/pipinstall +3 -0
  6. data/data/config/interface_modifiers.yaml +4 -1
  7. data/data/config/telemetry_modifiers.yaml +6 -1
  8. data/data/config/widgets.yaml +1 -1
  9. data/ext/openc3/ext/burst_protocol/burst_protocol.c +317 -0
  10. data/ext/openc3/ext/burst_protocol/extconf.rb +13 -0
  11. data/lib/openc3/accessors/accessor.rb +1 -1
  12. data/lib/openc3/accessors/json_accessor.rb +11 -3
  13. data/lib/openc3/api/tlm_api.rb +1 -1
  14. data/lib/openc3/interfaces/http_client_interface.rb +8 -4
  15. data/lib/openc3/interfaces/http_server_interface.rb +22 -6
  16. data/lib/openc3/interfaces/interface.rb +6 -0
  17. data/lib/openc3/interfaces/linc_interface.rb +5 -3
  18. data/lib/openc3/interfaces/mqtt_interface.rb +7 -3
  19. data/lib/openc3/interfaces/mqtt_stream_interface.rb +8 -1
  20. data/lib/openc3/interfaces/protocols/burst_protocol.rb +104 -100
  21. data/lib/openc3/interfaces/protocols/fixed_protocol.rb +11 -3
  22. data/lib/openc3/interfaces/serial_interface.rb +16 -1
  23. data/lib/openc3/interfaces/simulated_target_interface.rb +7 -3
  24. data/lib/openc3/interfaces/tcpip_client_interface.rb +18 -1
  25. data/lib/openc3/interfaces/tcpip_server_interface.rb +24 -15
  26. data/lib/openc3/interfaces/udp_interface.rb +11 -1
  27. data/lib/openc3/io/posix_serial_driver.rb +20 -5
  28. data/lib/openc3/logs/packet_log_writer.rb +1 -1
  29. data/lib/openc3/microservices/decom_microservice.rb +3 -2
  30. data/lib/openc3/microservices/interface_microservice.rb +5 -5
  31. data/lib/openc3/models/activity_model.rb +104 -40
  32. data/lib/openc3/models/gem_model.rb +1 -1
  33. data/lib/openc3/models/plugin_model.rb +5 -3
  34. data/lib/openc3/models/python_package_model.rb +15 -5
  35. data/lib/openc3/models/scope_model.rb +1 -1
  36. data/lib/openc3/models/target_model.rb +1 -1
  37. data/lib/openc3/packets/packet.rb +27 -24
  38. data/lib/openc3/packets/packet_config.rb +18 -1
  39. data/lib/openc3/packets/parsers/packet_item_parser.rb +10 -6
  40. data/lib/openc3/packets/structure.rb +7 -7
  41. data/lib/openc3/packets/structure_item.rb +4 -2
  42. data/lib/openc3/script/api_shared.rb +33 -29
  43. data/lib/openc3/script/plugins.rb +13 -13
  44. data/lib/openc3/script/storage.rb +3 -4
  45. data/lib/openc3/script/web_socket_api.rb +10 -0
  46. data/lib/openc3/version.rb +6 -6
  47. data/templates/target/targets/TARGET/lib/target.py +2 -0
  48. data/templates/tool_angular/package.json +8 -8
  49. data/templates/tool_react/package.json +2 -2
  50. data/templates/tool_svelte/build/smui.css +1 -5
  51. data/templates/tool_svelte/package.json +3 -3
  52. data/templates/tool_vue/package.json +12 -12
  53. data/templates/widget/package.json +11 -11
  54. metadata +21 -18
@@ -11,13 +11,13 @@
11
11
  "smui-theme": "smui-theme compile build/smui.css -i src/theme"
12
12
  },
13
13
  "dependencies": {
14
- "@openc3/tool-common": "5.15.1",
15
- "@astrouxds/astro-web-components": "7.20.0",
14
+ "@openc3/tool-common": "5.16.0",
15
+ "@astrouxds/astro-web-components": "7.22.0",
16
16
  "@smui/button": "^7.0.0-beta.16",
17
17
  "@smui/card": "^7.0.0-beta.16",
18
18
  "@smui/list": "^7.0.0-beta.16",
19
19
  "@smui/menu": "^7.0.0-beta.16",
20
- "axios": "1.6.5",
20
+ "axios": "1.6.8",
21
21
  "single-spa-svelte": "^2.1.1",
22
22
  "sirv-cli": "^2.0.2",
23
23
  "svelte-portal": "^2.2.0"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "<%= tool_name %>",
3
- "version": "5.15.1",
3
+ "version": "5.16.0",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -11,10 +11,10 @@
11
11
  "test:components": "vue-cli-service test:components"
12
12
  },
13
13
  "dependencies": {
14
- "@openc3/tool-common": "5.15.1",
15
- "@astrouxds/astro-web-components": "7.20.0",
16
- "axios": "1.6.5",
17
- "date-fns": "2.30.0",
14
+ "@openc3/tool-common": "5.16.0",
15
+ "@astrouxds/astro-web-components": "7.22.0",
16
+ "axios": "1.6.8",
17
+ "date-fns": "3.6.0",
18
18
  "portal-vue": "2.1.7",
19
19
  "single-spa-vue": "2.5.1",
20
20
  "sprintf-js": "1.1.3",
@@ -25,7 +25,7 @@
25
25
  "vuex": "3.6.2"
26
26
  },
27
27
  "devDependencies": {
28
- "@babel/eslint-parser": "7.23.3",
28
+ "@babel/eslint-parser": "7.24.5",
29
29
  "@vue/babel-preset-app": "5.0.8",
30
30
  "@vue/cli": "5.0.8",
31
31
  "@vue/cli-plugin-babel": "5.0.8",
@@ -39,15 +39,15 @@
39
39
  "babel-plugin-istanbul": "6.1.1",
40
40
  "eslint": "8.56.0",
41
41
  "eslint-config-prettier": "9.1.0",
42
- "eslint-plugin-prettier": "5.1.2",
43
- "eslint-plugin-vue": "9.19.2",
42
+ "eslint-plugin-prettier": "5.1.3",
43
+ "eslint-plugin-vue": "9.25.0",
44
44
  "html-webpack-plugin": "^5.6.0",
45
- "prettier": "3.1.1",
46
- "sass": "1.69.7",
47
- "sass-loader": "13.3.3",
45
+ "prettier": "3.2.5",
46
+ "sass": "1.76.0",
47
+ "sass-loader": "14.2.1",
48
48
  "vue-cli-plugin-single-spa": "3.3.0",
49
49
  "vue-cli-plugin-vuetify": "2.5.8",
50
50
  "vue-template-compiler": "2.7.16",
51
- "webpack": "5.89.0"
51
+ "webpack": "5.91.0"
52
52
  }
53
53
  }
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "widget",
3
- "version": "5.15.1",
3
+ "version": "5.16.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.15.1",
10
- "@astrouxds/astro-web-components": "7.20.0",
9
+ "@openc3/tool-common": "5.16.0",
10
+ "@astrouxds/astro-web-components": "7.22.0",
11
11
  "vue": "2.7.16",
12
12
  "vuetify": "2.7.1"
13
13
  },
14
14
  "devDependencies": {
15
- "@babel/eslint-parser": "7.23.3",
16
- "@rushstack/eslint-patch": "1.6.1",
15
+ "@babel/eslint-parser": "7.24.5",
16
+ "@rushstack/eslint-patch": "1.10.2",
17
17
  "@vue/babel-preset-app": "5.0.8",
18
18
  "@vue/cli": "5.0.8",
19
19
  "@vue/cli-plugin-babel": "5.0.8",
@@ -24,13 +24,13 @@
24
24
  "babel-plugin-istanbul": "6.1.1",
25
25
  "eslint": "8.56.0",
26
26
  "eslint-config-prettier": "9.1.0",
27
- "eslint-plugin-prettier": "5.1.2",
28
- "eslint-plugin-vue": "9.19.2",
29
- "prettier": "3.1.1",
30
- "sass": "1.69.7",
31
- "sass-loader": "13.3.3",
27
+ "eslint-plugin-prettier": "5.1.3",
28
+ "eslint-plugin-vue": "9.25.0",
29
+ "prettier": "3.2.5",
30
+ "sass": "1.76.0",
31
+ "sass-loader": "14.2.1",
32
32
  "vue-cli-plugin-vuetify": "2.5.8",
33
33
  "vue-template-compiler": "2.7.16",
34
- "webpack": "5.89.0"
34
+ "webpack": "5.91.0"
35
35
  }
36
36
  }
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.15.1
4
+ version: 5.16.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: 2024-03-15 00:00:00.000000000 Z
12
+ date: 2024-05-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -25,6 +25,20 @@ dependencies:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
27
  version: '2.3'
28
+ - !ruby/object:Gem::Dependency
29
+ name: hiredis-client
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '0.22'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '0.22'
28
42
  - !ruby/object:Gem::Dependency
29
43
  name: irb
30
44
  requirement: !ruby/object:Gem::Requirement
@@ -179,20 +193,6 @@ dependencies:
179
193
  - - "~>"
180
194
  - !ruby/object:Gem::Version
181
195
  version: '5.0'
182
- - !ruby/object:Gem::Dependency
183
- name: hiredis-client
184
- requirement: !ruby/object:Gem::Requirement
185
- requirements:
186
- - - "~>"
187
- - !ruby/object:Gem::Version
188
- version: '0.20'
189
- type: :runtime
190
- prerelease: false
191
- version_requirements: !ruby/object:Gem::Requirement
192
- requirements:
193
- - - "~>"
194
- - !ruby/object:Gem::Version
195
- version: '0.20'
196
196
  - !ruby/object:Gem::Dependency
197
197
  name: rubyzip
198
198
  requirement: !ruby/object:Gem::Requirement
@@ -283,14 +283,14 @@ dependencies:
283
283
  requirements:
284
284
  - - "~>"
285
285
  - !ruby/object:Gem::Version
286
- version: '4.1'
286
+ version: '5.0'
287
287
  type: :runtime
288
288
  prerelease: false
289
289
  version_requirements: !ruby/object:Gem::Requirement
290
290
  requirements:
291
291
  - - "~>"
292
292
  - !ruby/object:Gem::Version
293
- version: '4.1'
293
+ version: '5.0'
294
294
  - !ruby/object:Gem::Dependency
295
295
  name: connection_pool
296
296
  requirement: !ruby/object:Gem::Requirement
@@ -755,6 +755,7 @@ executables:
755
755
  extensions:
756
756
  - ext/openc3/ext/array/extconf.rb
757
757
  - ext/openc3/ext/buffered_file/extconf.rb
758
+ - ext/openc3/ext/burst_protocol/extconf.rb
758
759
  - ext/openc3/ext/config_parser/extconf.rb
759
760
  - ext/openc3/ext/openc3_io/extconf.rb
760
761
  - ext/openc3/ext/crc/extconf.rb
@@ -812,6 +813,8 @@ files:
812
813
  - ext/openc3/ext/array/extconf.rb
813
814
  - ext/openc3/ext/buffered_file/buffered_file.c
814
815
  - ext/openc3/ext/buffered_file/extconf.rb
816
+ - ext/openc3/ext/burst_protocol/burst_protocol.c
817
+ - ext/openc3/ext/burst_protocol/extconf.rb
815
818
  - ext/openc3/ext/config_parser/config_parser.c
816
819
  - ext/openc3/ext/config_parser/extconf.rb
817
820
  - ext/openc3/ext/crc/crc.c