openc3 5.0.9 → 5.0.11

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 (46) hide show
  1. checksums.yaml +4 -4
  2. data/data/config/_id_items.yaml +2 -1
  3. data/data/config/_id_params.yaml +2 -1
  4. data/data/config/_items.yaml +2 -1
  5. data/data/config/_params.yaml +2 -1
  6. data/data/config/command_modifiers.yaml +30 -0
  7. data/data/config/item_modifiers.yaml +10 -0
  8. data/data/config/microservice.yaml +12 -0
  9. data/data/config/param_item_modifiers.yaml +10 -0
  10. data/data/config/plugins.yaml +0 -9
  11. data/data/config/telemetry_modifiers.yaml +10 -0
  12. data/ext/openc3/ext/packet/packet.c +20 -2
  13. data/ext/openc3/ext/structure/structure.c +12 -17
  14. data/lib/openc3/accessors/accessor.rb +71 -0
  15. data/lib/openc3/accessors/binary_accessor.rb +1226 -0
  16. data/lib/openc3/accessors/cbor_accessor.rb +83 -0
  17. data/lib/openc3/accessors/html_accessor.rb +28 -0
  18. data/lib/openc3/accessors/json_accessor.rb +131 -0
  19. data/lib/openc3/accessors/xml_accessor.rb +67 -0
  20. data/lib/openc3/accessors.rb +23 -0
  21. data/lib/openc3/api/interface_api.rb +10 -3
  22. data/lib/openc3/config/config_parser.rb +10 -4
  23. data/lib/openc3/core_ext/tempfile.rb +20 -0
  24. data/lib/openc3/core_ext.rb +1 -0
  25. data/lib/openc3/interfaces/interface.rb +1 -1
  26. data/lib/openc3/models/auth_model.rb +0 -1
  27. data/lib/openc3/models/cvt_model.rb +1 -10
  28. data/lib/openc3/models/microservice_model.rb +26 -0
  29. data/lib/openc3/models/note_model.rb +5 -5
  30. data/lib/openc3/packets/binary_accessor.rb +2 -1207
  31. data/lib/openc3/packets/packet.rb +106 -6
  32. data/lib/openc3/packets/packet_config.rb +30 -7
  33. data/lib/openc3/packets/parsers/limits_response_parser.rb +1 -3
  34. data/lib/openc3/packets/parsers/processor_parser.rb +1 -2
  35. data/lib/openc3/packets/structure.rb +39 -14
  36. data/lib/openc3/packets/structure_item.rb +15 -1
  37. data/lib/openc3/script/storage.rb +2 -0
  38. data/lib/openc3/utilities/authentication.rb +6 -4
  39. data/lib/openc3/utilities/local_mode.rb +10 -1
  40. data/lib/openc3/utilities/s3.rb +3 -1
  41. data/lib/openc3/utilities/s3_autoload.rb +8 -6
  42. data/lib/openc3/utilities/simulated_target.rb +3 -2
  43. data/lib/openc3/utilities/target_file.rb +45 -6
  44. data/lib/openc3/version.rb +5 -5
  45. data/lib/openc3.rb +1 -0
  46. metadata +38 -2
@@ -1,14 +1,14 @@
1
1
  # encoding: ascii-8bit
2
2
 
3
- OPENC3_VERSION = '5.0.9'
3
+ OPENC3_VERSION = '5.0.11'
4
4
  module OpenC3
5
5
  module Version
6
6
  MAJOR = '5'
7
7
  MINOR = '0'
8
- PATCH = '9'
8
+ PATCH = '11'
9
9
  OTHER = ''
10
- BUILD = '7c04d727e4664a45e6b1021bea58c06e2c046b10'
10
+ BUILD = '51036b91d9fe3f5508477f8212a6fd7fa5edea68'
11
11
  end
12
- VERSION = '5.0.9'
13
- GEM_VERSION = '5.0.9'
12
+ VERSION = '5.0.11'
13
+ GEM_VERSION = '5.0.11'
14
14
  end
data/lib/openc3.rb CHANGED
@@ -37,6 +37,7 @@ require 'openc3/version'
37
37
  require 'openc3/top_level'
38
38
  require 'openc3/core_ext'
39
39
  require 'openc3/utilities'
40
+ require 'openc3/accessors'
40
41
  require 'openc3/conversions'
41
42
  require 'openc3/interfaces'
42
43
  require 'openc3/processors'
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.0.9
4
+ version: 5.0.11
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: 2022-09-02 00:00:00.000000000 Z
12
+ date: 2022-10-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -305,6 +305,34 @@ dependencies:
305
305
  - - "~>"
306
306
  - !ruby/object:Gem::Version
307
307
  version: '3.8'
308
+ - !ruby/object:Gem::Dependency
309
+ name: cbor
310
+ requirement: !ruby/object:Gem::Requirement
311
+ requirements:
312
+ - - "~>"
313
+ - !ruby/object:Gem::Version
314
+ version: 0.5.9.6
315
+ type: :runtime
316
+ prerelease: false
317
+ version_requirements: !ruby/object:Gem::Requirement
318
+ requirements:
319
+ - - "~>"
320
+ - !ruby/object:Gem::Version
321
+ version: 0.5.9.6
322
+ - !ruby/object:Gem::Dependency
323
+ name: jsonpath
324
+ requirement: !ruby/object:Gem::Requirement
325
+ requirements:
326
+ - - "~>"
327
+ - !ruby/object:Gem::Version
328
+ version: '1.1'
329
+ type: :runtime
330
+ prerelease: false
331
+ version_requirements: !ruby/object:Gem::Requirement
332
+ requirements:
333
+ - - "~>"
334
+ - !ruby/object:Gem::Version
335
+ version: '1.1'
308
336
  - !ruby/object:Gem::Dependency
309
337
  name: dead_end
310
338
  requirement: !ruby/object:Gem::Requirement
@@ -578,6 +606,13 @@ files:
578
606
  - lib/cosmos.rb
579
607
  - lib/cosmosc2.rb
580
608
  - lib/openc3.rb
609
+ - lib/openc3/accessors.rb
610
+ - lib/openc3/accessors/accessor.rb
611
+ - lib/openc3/accessors/binary_accessor.rb
612
+ - lib/openc3/accessors/cbor_accessor.rb
613
+ - lib/openc3/accessors/html_accessor.rb
614
+ - lib/openc3/accessors/json_accessor.rb
615
+ - lib/openc3/accessors/xml_accessor.rb
581
616
  - lib/openc3/api/api.rb
582
617
  - lib/openc3/api/authorized_api.rb
583
618
  - lib/openc3/api/cmd_api.rb
@@ -627,6 +662,7 @@ files:
627
662
  - lib/openc3/core_ext/socket.rb
628
663
  - lib/openc3/core_ext/string.rb
629
664
  - lib/openc3/core_ext/stringio.rb
665
+ - lib/openc3/core_ext/tempfile.rb
630
666
  - lib/openc3/core_ext/time.rb
631
667
  - lib/openc3/interfaces.rb
632
668
  - lib/openc3/interfaces/interface.rb