openc3 6.5.0 → 6.5.1
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.
- checksums.yaml +4 -4
- data/lib/openc3/models/gem_model.rb +2 -2
- data/lib/openc3/utilities/aws_bucket.rb +3 -3
- data/lib/openc3/utilities/bucket.rb +1 -1
- data/lib/openc3/utilities/local_mode.rb +1 -0
- data/lib/openc3/version.rb +5 -5
- data/templates/tool_angular/package.json +2 -2
- data/templates/tool_react/package.json +1 -1
- data/templates/tool_svelte/package.json +1 -1
- data/templates/tool_vue/package.json +3 -3
- data/templates/widget/package.json +2 -2
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99470dde632de3fe5fd6db9eaf4d529b117ac3d7ff8bcdb77fec5e7451c20b77
|
4
|
+
data.tar.gz: e8bfd360f210fef3a41c14605b561f9b6072b07b01dec9e2479069594fc67502
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63177085f3628d368fe69a17a15bdbbb2d46fcf6b9eccc45cf32744cf4ff709925480176cc140026a55f0593c343f7a62ae435c858532a2a5c9e3d1d4d8cdfeb
|
7
|
+
data.tar.gz: 3f55acbf143f0d8307d47533998cbc63144935226e6c0b774537321c2fe62b81a19949e3169ca4a53a1032b3132e13a23fabf5707625d9c7c24e273caa7f26b3
|
@@ -91,10 +91,10 @@ module OpenC3
|
|
91
91
|
Gem.done_installing_hooks.clear
|
92
92
|
begin
|
93
93
|
# Look for local gems only first, this avoids lengthy timeouts when checking rubygems in airgap env
|
94
|
-
Gem.install(gem_file_path, "> 0.pre", build_args: ['--no-document'], prerelease: true, domain: :local)
|
94
|
+
Gem.install(gem_file_path, "> 0.pre", build_args: ['--no-document, --without development,test'], prerelease: true, domain: :local)
|
95
95
|
rescue Gem::Exception => e
|
96
96
|
# If there is a failure look for both local and remote gems
|
97
|
-
Gem.install(gem_file_path, "> 0.pre", build_args: ['--no-document'], prerelease: true, domain: :both)
|
97
|
+
Gem.install(gem_file_path, "> 0.pre", build_args: ['--no-document, --without development,test'], prerelease: true, domain: :both)
|
98
98
|
end
|
99
99
|
rescue => e
|
100
100
|
message = "Gem file #{gem_file_path} error installing to #{ENV['GEM_HOME']}\n#{e.formatted}"
|
@@ -100,11 +100,11 @@ module OpenC3
|
|
100
100
|
end
|
101
101
|
end
|
102
102
|
|
103
|
-
def get_object(bucket:, key:, path: nil)
|
103
|
+
def get_object(bucket:, key:, path: nil, range: nil)
|
104
104
|
if path
|
105
|
-
@client.get_object(bucket: bucket, key: key, response_target: path)
|
105
|
+
@client.get_object(bucket: bucket, key: key, response_target: path, range: range)
|
106
106
|
else
|
107
|
-
@client.get_object(bucket: bucket, key: key)
|
107
|
+
@client.get_object(bucket: bucket, key: key, range: range)
|
108
108
|
end
|
109
109
|
# If the key is not found return nil
|
110
110
|
rescue Aws::S3::Errors::NoSuchKey
|
@@ -53,7 +53,7 @@ module OpenC3
|
|
53
53
|
raise NotImplementedError, "#{self.class} has not implemented method '#{__method__}'"
|
54
54
|
end
|
55
55
|
|
56
|
-
def get_object(bucket:, key:, path: nil)
|
56
|
+
def get_object(bucket:, key:, path: nil, range: nil)
|
57
57
|
raise NotImplementedError, "#{self.class} has not implemented method '#{__method__}'"
|
58
58
|
end
|
59
59
|
|
data/lib/openc3/version.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# encoding: ascii-8bit
|
2
2
|
|
3
|
-
OPENC3_VERSION = '6.5.
|
3
|
+
OPENC3_VERSION = '6.5.1'
|
4
4
|
module OpenC3
|
5
5
|
module Version
|
6
6
|
MAJOR = '6'
|
7
7
|
MINOR = '5'
|
8
|
-
PATCH = '
|
8
|
+
PATCH = '1'
|
9
9
|
OTHER = ''
|
10
|
-
BUILD = '
|
10
|
+
BUILD = 'bccc9a29582eed0d565be2c5135676ce87c066f8'
|
11
11
|
end
|
12
|
-
VERSION = '6.5.
|
13
|
-
GEM_VERSION = '6.5.
|
12
|
+
VERSION = '6.5.1'
|
13
|
+
GEM_VERSION = '6.5.1'
|
14
14
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "<%= tool_name %>",
|
3
|
-
"version": "6.5.
|
3
|
+
"version": "6.5.1",
|
4
4
|
"scripts": {
|
5
5
|
"ng": "ng",
|
6
6
|
"start": "ng serve",
|
@@ -23,7 +23,7 @@
|
|
23
23
|
"@angular/platform-browser-dynamic": "^18.2.6",
|
24
24
|
"@angular/router": "^18.2.6",
|
25
25
|
"@astrouxds/astro-web-components": "^7.24.0",
|
26
|
-
"@openc3/js-common": "6.5.
|
26
|
+
"@openc3/js-common": "6.5.1",
|
27
27
|
"rxjs": "~7.8.0",
|
28
28
|
"single-spa": "^5.9.5",
|
29
29
|
"single-spa-angular": "^9.2.0",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "<%= tool_name %>",
|
3
|
-
"version": "6.5.
|
3
|
+
"version": "6.5.1",
|
4
4
|
"private": true,
|
5
5
|
"type": "module",
|
6
6
|
"scripts": {
|
@@ -11,8 +11,8 @@
|
|
11
11
|
},
|
12
12
|
"dependencies": {
|
13
13
|
"@astrouxds/astro-web-components": "^7.24.0",
|
14
|
-
"@openc3/js-common": "6.5.
|
15
|
-
"@openc3/vue-common": "6.5.
|
14
|
+
"@openc3/js-common": "6.5.1",
|
15
|
+
"@openc3/vue-common": "6.5.1",
|
16
16
|
"axios": "^1.7.7",
|
17
17
|
"date-fns": "^4.1.0",
|
18
18
|
"lodash": "^4.17.21",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "<%= widget_name %>",
|
3
|
-
"version": "6.5.
|
3
|
+
"version": "6.5.1",
|
4
4
|
"private": true,
|
5
5
|
"type": "module",
|
6
6
|
"scripts": {
|
@@ -8,7 +8,7 @@
|
|
8
8
|
},
|
9
9
|
"dependencies": {
|
10
10
|
"@astrouxds/astro-web-components": "^7.24.0",
|
11
|
-
"@openc3/vue-common": "6.5.
|
11
|
+
"@openc3/vue-common": "6.5.1",
|
12
12
|
"vuetify": "^3.7.1"
|
13
13
|
},
|
14
14
|
"devDependencies": {
|
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: 6.5.
|
4
|
+
version: 6.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Melton
|
@@ -766,6 +766,20 @@ dependencies:
|
|
766
766
|
- - "~>"
|
767
767
|
- !ruby/object:Gem::Version
|
768
768
|
version: '2.1'
|
769
|
+
- !ruby/object:Gem::Dependency
|
770
|
+
name: simplecov_json_formatter
|
771
|
+
requirement: !ruby/object:Gem::Requirement
|
772
|
+
requirements:
|
773
|
+
- - "~>"
|
774
|
+
- !ruby/object:Gem::Version
|
775
|
+
version: '0.1'
|
776
|
+
type: :development
|
777
|
+
prerelease: false
|
778
|
+
version_requirements: !ruby/object:Gem::Requirement
|
779
|
+
requirements:
|
780
|
+
- - "~>"
|
781
|
+
- !ruby/object:Gem::Version
|
782
|
+
version: '0.1'
|
769
783
|
description: |2
|
770
784
|
OpenC3 provides all the functionality needed to send
|
771
785
|
commands to and receive data from one or more embedded systems
|