openc3 6.4.0 → 6.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c408df49ec8cf1fbcf88e8c05207ac1c65274d56dbee94986c4f56308bc52b23
4
- data.tar.gz: 8e8897d618e69898470fcd8a201ba968688fbe598c4ecb46d1a375da14282490
3
+ metadata.gz: 864ffdf1957f4dc816dc54fb49e31da9b824ade6d4ff0e016dc81d0b4eaafc0c
4
+ data.tar.gz: ad01826136970333f93f6fd24199b5c9f6d21245c342db1709f035a35d09ae49
5
5
  SHA512:
6
- metadata.gz: c37180a0814a4ceb79b6503d52a83e10cba964351f07841db692e44bdb5a619f95b7a955283982f73218dc5f6670bef113654b917fc92ed99a9c71ff8e000e36
7
- data.tar.gz: fa11395f5c24e207e6e6eb6f74b2b8f53c882222572f39cf7d6a6e95668dd99c5ad24015e832df937fb5f12800c92e3c7f55319716a46fc6a07cdbb99abc2e52
6
+ metadata.gz: 8d3515bdd13040340bb39ac3d0bc51478c65b57e9b42ed31b11e6c10ed4228c4eccb9f7228cd2f7271e533bd66a9eee42e386f91ffabaf7c4e5179cc9ddd6efb
7
+ data.tar.gz: 2ef03561529805ed8f09037ab664477071bf6d8e672095b979ad828ce8cddc819ec056999b022df0dd1f522254a36f58bf9b31656ce3845b12c65869eb8f011b
@@ -166,7 +166,7 @@ module OpenC3
166
166
  if not is_complete?()
167
167
  @state = new_state
168
168
  # If setting to complete, check for errors
169
- # and set the state to complete_errors if they exist
169
+ # and set the state to completed_errors if they exist
170
170
  if @state == 'completed' and @errors
171
171
  @state = 'completed_errors'
172
172
  end
@@ -193,7 +193,7 @@ module OpenC3
193
193
  # Magically handle the change from running to completed
194
194
  if is_complete?() and @primary_key == "#{RUNNING_PRIMARY_KEY}__#{@scope}"
195
195
  # Destroy the running key
196
- destroy()
196
+ destroy(queued: queued)
197
197
  @destroyed = false
198
198
 
199
199
  # Move to completed
@@ -205,12 +205,17 @@ module OpenC3
205
205
  end
206
206
 
207
207
  # Delete the model from the Store
208
- def destroy
208
+ def destroy(queued: false)
209
209
  @destroyed = true
210
210
  undeploy()
211
- self.class.store.hdel(@primary_key, @name)
211
+ if queued
212
+ write_store = self.class.store_queued
213
+ else
214
+ write_store = self.class.store
215
+ end
216
+ write_store.hdel(@primary_key, @name)
212
217
  # Also remove from ordered set
213
- self.class.store.zremrangebyscore(@primary_key + "__LIST", @name.to_i, @name.to_i)
218
+ write_store.zremrangebyscore(@primary_key + "__LIST", @name.to_i, @name.to_i)
214
219
  end
215
220
 
216
221
  def as_json(*a)
@@ -1,14 +1,14 @@
1
1
  # encoding: ascii-8bit
2
2
 
3
- OPENC3_VERSION = '6.4.0'
3
+ OPENC3_VERSION = '6.4.1'
4
4
  module OpenC3
5
5
  module Version
6
6
  MAJOR = '6'
7
7
  MINOR = '4'
8
- PATCH = '0'
8
+ PATCH = '1'
9
9
  OTHER = ''
10
- BUILD = '7f674e6c8a5d1e77fc64182365b831a17751b78d'
10
+ BUILD = '09f13531376ee0c7651a2eea12c702318b57a7aa'
11
11
  end
12
- VERSION = '6.4.0'
13
- GEM_VERSION = '6.4.0'
12
+ VERSION = '6.4.1'
13
+ GEM_VERSION = '6.4.1'
14
14
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "<%= tool_name %>",
3
- "version": "6.4.0",
3
+ "version": "6.4.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.4.0",
26
+ "@openc3/js-common": "6.4.1",
27
27
  "rxjs": "~7.8.0",
28
28
  "single-spa": "^5.9.5",
29
29
  "single-spa-angular": "^9.2.0",
@@ -16,7 +16,7 @@
16
16
  "@emotion/react": "^11.13.3",
17
17
  "@emotion/styled": "^11.11.0",
18
18
  "@mui/material": "^6.1.1",
19
- "@openc3/js-common": "6.4.0",
19
+ "@openc3/js-common": "6.4.1",
20
20
  "react": "^18.2.0",
21
21
  "react-dom": "^18.2.0",
22
22
  "single-spa-react": "^5.1.4"
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "@astrouxds/astro-web-components": "^7.24.0",
15
- "@openc3/js-common": "6.4.0",
15
+ "@openc3/js-common": "6.4.1",
16
16
  "@smui/button": "^7.0.0",
17
17
  "@smui/common": "^7.0.0",
18
18
  "@smui/card": "^7.0.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "<%= tool_name %>",
3
- "version": "6.4.0",
3
+ "version": "6.4.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.4.0",
15
- "@openc3/vue-common": "6.4.0",
14
+ "@openc3/js-common": "6.4.1",
15
+ "@openc3/vue-common": "6.4.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.4.0",
3
+ "version": "6.4.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.4.0",
11
+ "@openc3/vue-common": "6.4.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.4.0
4
+ version: 6.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Melton
@@ -1285,7 +1285,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1285
1285
  - !ruby/object:Gem::Version
1286
1286
  version: '0'
1287
1287
  requirements: []
1288
- rubygems_version: 3.6.8
1288
+ rubygems_version: 3.6.9
1289
1289
  specification_version: 4
1290
1290
  summary: OpenC3
1291
1291
  test_files: []