openc3 5.10.0 → 5.10.1
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.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/lib/openc3/microservices/trigger_group_microservice.rb +6 -2
- data/lib/openc3/packets/packet.rb +7 -13
- data/lib/openc3/packets/structure_item.rb +0 -3
- data/lib/openc3/topics/command_decom_topic.rb +0 -4
- data/lib/openc3/topics/telemetry_decom_topic.rb +0 -4
- data/lib/openc3/topics/telemetry_reduced_topics.rb +1 -13
- data/lib/openc3/topics/topic.rb +0 -8
- data/lib/openc3/utilities/aws_bucket.rb +40 -38
- data/lib/openc3/version.rb +5 -5
- data/templates/tool_angular/package.json +17 -17
- data/templates/tool_angular/yarn.lock +1798 -998
- data/templates/tool_react/package.json +20 -20
- data/templates/tool_react/yarn.lock +754 -700
- data/templates/tool_svelte/package.json +21 -21
- data/templates/tool_svelte/yarn.lock +622 -478
- data/templates/tool_vue/package.json +7 -7
- data/templates/tool_vue/yarn.lock +152 -118
- data/templates/widget/package.json +8 -8
- data/templates/widget/yarn.lock +157 -66
- metadata +2 -2
@@ -14,40 +14,40 @@
|
|
14
14
|
"prepare": "husky install",
|
15
15
|
"coverage": "cross-env BABEL_ENV=test jest --coverage"
|
16
16
|
},
|
17
|
+
"dependencies": {
|
18
|
+
"@openc3/tool-common": "5.10.1",
|
19
|
+
"@emotion/react": "^11.11.1",
|
20
|
+
"@emotion/styled": "^11.11.0",
|
21
|
+
"@mui/material": "^5.14.5",
|
22
|
+
"react": "^18.2.0",
|
23
|
+
"react-dom": "^18.2.0",
|
24
|
+
"single-spa-react": "^5.1.4"
|
25
|
+
},
|
17
26
|
"devDependencies": {
|
18
|
-
"@babel/core": "^7.
|
19
|
-
"@babel/eslint-parser": "^7.
|
20
|
-
"@babel/plugin-transform-runtime": "^7.
|
21
|
-
"@babel/preset-env": "^7.
|
27
|
+
"@babel/core": "^7.22.10",
|
28
|
+
"@babel/eslint-parser": "^7.22.10",
|
29
|
+
"@babel/plugin-transform-runtime": "^7.22.10",
|
30
|
+
"@babel/preset-env": "^7.22.10",
|
22
31
|
"@babel/preset-react": "^7.14.5",
|
23
|
-
"@babel/runtime": "^7.
|
24
|
-
"@testing-library/jest-dom": "^
|
32
|
+
"@babel/runtime": "^7.22.10",
|
33
|
+
"@testing-library/jest-dom": "^6.0.0",
|
25
34
|
"@testing-library/react": "^14.0.0",
|
26
|
-
"babel-jest": "^29.
|
35
|
+
"babel-jest": "^29.6.2",
|
27
36
|
"concurrently": "^8.2.0",
|
28
37
|
"cross-env": "^7.0.3",
|
29
|
-
"eslint": "^8.
|
38
|
+
"eslint": "^8.47.0",
|
30
39
|
"eslint-config-prettier": "^8.3.0",
|
31
40
|
"eslint-config-react-important-stuff": "^3.0.0",
|
32
41
|
"eslint-plugin-prettier": "^4.2.1",
|
33
42
|
"identity-obj-proxy": "^3.0.0",
|
34
|
-
"jest": "^29.
|
35
|
-
"jest-cli": "^29.
|
43
|
+
"jest": "^29.6.2",
|
44
|
+
"jest-cli": "^29.6.2",
|
36
45
|
"prettier": "^2.3.2",
|
37
46
|
"pretty-quick": "^3.1.1",
|
38
|
-
"webpack": "^5.88.
|
47
|
+
"webpack": "^5.88.2",
|
39
48
|
"webpack-cli": "^5.1.4",
|
40
49
|
"webpack-config-single-spa-react": "^4.0.0",
|
41
50
|
"webpack-dev-server": "^4.0.0",
|
42
51
|
"webpack-merge": "^5.8.0"
|
43
|
-
},
|
44
|
-
"dependencies": {
|
45
|
-
"@emotion/react": "^11.11.1",
|
46
|
-
"@emotion/styled": "^11.11.0",
|
47
|
-
"@mui/material": "^5.13.6",
|
48
|
-
"@openc3/tool-common": "5.10.0",
|
49
|
-
"react": "^18.2.0",
|
50
|
-
"react-dom": "^18.2.0",
|
51
|
-
"single-spa-react": "^5.1.1"
|
52
52
|
}
|
53
53
|
}
|