openc3 5.0.9 → 5.0.11
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/data/config/_id_items.yaml +2 -1
- data/data/config/_id_params.yaml +2 -1
- data/data/config/_items.yaml +2 -1
- data/data/config/_params.yaml +2 -1
- data/data/config/command_modifiers.yaml +30 -0
- data/data/config/item_modifiers.yaml +10 -0
- data/data/config/microservice.yaml +12 -0
- data/data/config/param_item_modifiers.yaml +10 -0
- data/data/config/plugins.yaml +0 -9
- data/data/config/telemetry_modifiers.yaml +10 -0
- data/ext/openc3/ext/packet/packet.c +20 -2
- data/ext/openc3/ext/structure/structure.c +12 -17
- data/lib/openc3/accessors/accessor.rb +71 -0
- data/lib/openc3/accessors/binary_accessor.rb +1226 -0
- data/lib/openc3/accessors/cbor_accessor.rb +83 -0
- data/lib/openc3/accessors/html_accessor.rb +28 -0
- data/lib/openc3/accessors/json_accessor.rb +131 -0
- data/lib/openc3/accessors/xml_accessor.rb +67 -0
- data/lib/openc3/accessors.rb +23 -0
- data/lib/openc3/api/interface_api.rb +10 -3
- data/lib/openc3/config/config_parser.rb +10 -4
- data/lib/openc3/core_ext/tempfile.rb +20 -0
- data/lib/openc3/core_ext.rb +1 -0
- data/lib/openc3/interfaces/interface.rb +1 -1
- data/lib/openc3/models/auth_model.rb +0 -1
- data/lib/openc3/models/cvt_model.rb +1 -10
- data/lib/openc3/models/microservice_model.rb +26 -0
- data/lib/openc3/models/note_model.rb +5 -5
- data/lib/openc3/packets/binary_accessor.rb +2 -1207
- data/lib/openc3/packets/packet.rb +106 -6
- data/lib/openc3/packets/packet_config.rb +30 -7
- data/lib/openc3/packets/parsers/limits_response_parser.rb +1 -3
- data/lib/openc3/packets/parsers/processor_parser.rb +1 -2
- data/lib/openc3/packets/structure.rb +39 -14
- data/lib/openc3/packets/structure_item.rb +15 -1
- data/lib/openc3/script/storage.rb +2 -0
- data/lib/openc3/utilities/authentication.rb +6 -4
- data/lib/openc3/utilities/local_mode.rb +10 -1
- data/lib/openc3/utilities/s3.rb +3 -1
- data/lib/openc3/utilities/s3_autoload.rb +8 -6
- data/lib/openc3/utilities/simulated_target.rb +3 -2
- data/lib/openc3/utilities/target_file.rb +45 -6
- data/lib/openc3/version.rb +5 -5
- data/lib/openc3.rb +1 -0
- metadata +38 -2
data/lib/openc3/version.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# encoding: ascii-8bit
|
2
2
|
|
3
|
-
OPENC3_VERSION = '5.0.
|
3
|
+
OPENC3_VERSION = '5.0.11'
|
4
4
|
module OpenC3
|
5
5
|
module Version
|
6
6
|
MAJOR = '5'
|
7
7
|
MINOR = '0'
|
8
|
-
PATCH = '
|
8
|
+
PATCH = '11'
|
9
9
|
OTHER = ''
|
10
|
-
BUILD = '
|
10
|
+
BUILD = '51036b91d9fe3f5508477f8212a6fd7fa5edea68'
|
11
11
|
end
|
12
|
-
VERSION = '5.0.
|
13
|
-
GEM_VERSION = '5.0.
|
12
|
+
VERSION = '5.0.11'
|
13
|
+
GEM_VERSION = '5.0.11'
|
14
14
|
end
|
data/lib/openc3.rb
CHANGED
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.
|
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-
|
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
|