Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix upgrade deps #455

Merged
merged 5 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .github/workflows/checkmarx.ym_

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/codesee-arch-diagram.yml

This file was deleted.

2 changes: 1 addition & 1 deletion base
Submodule base updated 3 files
+2 −1 Dockerfile
+1,553 −1,625 package-lock.json
+17 −19 package.json
2 changes: 1 addition & 1 deletion lib/thinx/coap.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = class CoAP {
req.on('response', (res) => {
res.pipe(process.stdout);
res.on('end', () => {
process.exit(0);
console.log("[debug] CoAP connection terminated");
});
});
req.end();
Expand Down
132 changes: 101 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"@hapi/hoek": "9.0.3",
"@slack/rtm-api": "^6.1.1",
"@slack/web-api": "^6.9.1",
"@snyk/protect": "^1.657.0",
"@snyk/protect": "^1.1242.0",
"axios": "^1.6.0",
"base-64": "^0.1.0",
"bcrypt": "^5.0.0",
Expand All @@ -40,14 +40,14 @@
"chai-http": "^4.3.0",
"chalk": "^4.1.0",
"chmodr": "^1.2.0",
"coap": "^0.26.0",
"coap": "^1.3.0",
"connect-redis": "^6.1.3",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.5",
"crypto-js": "^4.0.0",
"dateformat": "^3.0.3",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"crypto-js": "^4.2.0",
"dateformat": "^5.0.3",
"express": "^4.18.2",
"express-rate-limit": "^7.1.4",
"express-session": "^1.17.2",
"fs-extra": "^9.0.1",
"fs-finder": "github:suculent/Node-FsFinder#master",
Expand Down Expand Up @@ -88,7 +88,7 @@
"typeof": "^1.0.0",
"utf-8": "^2.0.0",
"uuid": "^8.3.2",
"ws": "^7.4.6",
"ws": "^8.14.2",
"yaml": "2.2.2"
},
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion services/transformer
2 changes: 1 addition & 1 deletion services/worker
2 changes: 1 addition & 1 deletion spec/test_repositories/thinx-firmware-esp8266
Submodule thinx-firmware-esp8266 updated 79 files
+1 −0 .cxast
+1 −0 cx-note.md
+63 −0 lib/thinx-aes-lib/.github/workflows/codeql-analysis 2.yml
+63 −0 lib/thinx-aes-lib/.github/workflows/codeql-analysis.yml
+4 −1 lib/thinx-aes-lib/.gitignore
+0 −0 lib/thinx-aes-lib/.scannerwork/.sonar_lock 2
+1 −1 lib/thinx-aes-lib/.travis.yml
+58 −0 lib/thinx-aes-lib/LICENSE
+35 −92 lib/thinx-aes-lib/README.md
+13 −0 lib/thinx-aes-lib/SECURITY.md
+ lib/thinx-aes-lib/build-wrapper-linux-x86/build-wrapper-linux-x86-64
+ lib/thinx-aes-lib/build-wrapper-linux-x86/libinterceptor-i686.so
+ lib/thinx-aes-lib/build-wrapper-linux-x86/libinterceptor-x86_64.so
+ lib/thinx-aes-lib/build-wrapper-macosx-x86/build-wrapper-macosx-x86
+ lib/thinx-aes-lib/build-wrapper-macosx-x86/libinterceptor.dylib
+0 −100 lib/thinx-aes-lib/examples/base64_iv/base64_iv.ino
+0 −174 lib/thinx-aes-lib/examples/complex/complex.ino
+0 −115 lib/thinx-aes-lib/examples/esp_serial/esp_serial.ino
+0 −110 lib/thinx-aes-lib/examples/large/large.ino
+0 −118 lib/thinx-aes-lib/examples/medium/medium.ino
+0 −101 lib/thinx-aes-lib/examples/simple/simple.ino
+3 −3 lib/thinx-aes-lib/library.json
+3 −3 lib/thinx-aes-lib/library.properties
+14 −18 lib/thinx-aes-lib/nodejs/index.js
+2 −2 lib/thinx-aes-lib/nodejs/package.json
+3 −0 lib/thinx-aes-lib/sonar-project.properties
+17 −116 lib/thinx-aes-lib/src/AES.cpp
+13 −95 lib/thinx-aes-lib/src/AES.h
+38 −139 lib/thinx-aes-lib/src/AESLib.cpp
+7 −11 lib/thinx-aes-lib/src/AESLib.h
+1 −1 lib/thinx-aes-lib/src/AES_config.h
+9 −9 lib/thinx-aes-lib/src/xbase64.cpp
+3 −3 lib/thinx-aes-lib/src/xbase64.h
+0 −4 lib/thinx-aes-lib/test/020-TestCase.cpp
+0 −3,080 lib/thinx-aes-lib/test/build_wrapper_output_directory/build-wrapper.log
+0 −105 lib/thinx-aes-lib/test/coverage/020-TestCase.cpp.gcov
+0 −42 lib/thinx-aes-lib/test/coverage/AESLib.h.gcov
+0 −658 lib/thinx-aes-lib/test/coverage/__functional_base.gcov
+0 −1,528 lib/thinx-aes-lib/test/coverage/__locale.gcov
+0 −642 lib/thinx-aes-lib/test/coverage/__split_buffer.gcov
+0 −882 lib/thinx-aes-lib/test/coverage/__string.gcov
+0 −2,828 lib/thinx-aes-lib/test/coverage/__tree.gcov
+0 −392 lib/thinx-aes-lib/test/coverage/_ctype.h.gcov
+0 −5,826 lib/thinx-aes-lib/test/coverage/algorithm.gcov
+0 −172 lib/thinx-aes-lib/test/coverage/all.gcov
+0 −17,188 lib/thinx-aes-lib/test/coverage/catch2.hpp.gcov
+0 −1,665 lib/thinx-aes-lib/test/coverage/chrono.gcov
+0 −2,938 lib/thinx-aes-lib/test/coverage/deque.gcov
+0 −342 lib/thinx-aes-lib/test/coverage/exception.gcov
+0 −1,715 lib/thinx-aes-lib/test/coverage/fstream.gcov
+0 −2,529 lib/thinx-aes-lib/test/coverage/functional.gcov
+0 −123 lib/thinx-aes-lib/test/coverage/initializer_list.gcov
+0 −675 lib/thinx-aes-lib/test/coverage/iomanip.gcov
+0 −1,053 lib/thinx-aes-lib/test/coverage/ios.gcov
+0 −209 lib/thinx-aes-lib/test/coverage/iosfwd.gcov
+0 −1,481 lib/thinx-aes-lib/test/coverage/istream.gcov
+0 −1,890 lib/thinx-aes-lib/test/coverage/iterator.gcov
+0 −822 lib/thinx-aes-lib/test/coverage/limits.gcov
+0 −4,341 lib/thinx-aes-lib/test/coverage/locale.gcov
+0 −2,068 lib/thinx-aes-lib/test/coverage/map.gcov
+0 −1,536 lib/thinx-aes-lib/test/coverage/math.h.gcov
+0 −5,674 lib/thinx-aes-lib/test/coverage/memory.gcov
+0 −321 lib/thinx-aes-lib/test/coverage/new.gcov
+0 −1,107 lib/thinx-aes-lib/test/coverage/ostream.gcov
+0 −6,619 lib/thinx-aes-lib/test/coverage/regex.gcov
+0 −1,306 lib/thinx-aes-lib/test/coverage/set.gcov
+0 −991 lib/thinx-aes-lib/test/coverage/sstream.gcov
+0 −327 lib/thinx-aes-lib/test/coverage/stack.gcov
+0 −283 lib/thinx-aes-lib/test/coverage/stdexcept.gcov
+0 −131 lib/thinx-aes-lib/test/coverage/stdlib.h.gcov
+0 −506 lib/thinx-aes-lib/test/coverage/streambuf.gcov
+0 −4,309 lib/thinx-aes-lib/test/coverage/string.gcov
+0 −827 lib/thinx-aes-lib/test/coverage/string_view.gcov
+0 −1,417 lib/thinx-aes-lib/test/coverage/tuple.gcov
+0 −4,855 lib/thinx-aes-lib/test/coverage/type_traits.gcov
+0 −245 lib/thinx-aes-lib/test/coverage/typeinfo.gcov
+0 −1,621 lib/thinx-aes-lib/test/coverage/utility.gcov
+0 −3,404 lib/thinx-aes-lib/test/coverage/vector.gcov
+9 −17 lib/thinx-aes-lib/test/test_ncrypt.c
Loading