Skip to content
Open
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
2 changes: 1 addition & 1 deletion rpc-go
2 changes: 1 addition & 1 deletion rps
Submodule rps updated 58 files
+2 −2 .github/workflows/api-test.yml
+5 −5 .github/workflows/codeql-analysis.yml
+2 −2 .github/workflows/dependency-review.yml
+2 −2 .github/workflows/docker-image.yml
+4 −4 .github/workflows/node.js.yml
+1 −1 .github/workflows/projectsSync.yaml
+5 −5 .github/workflows/release.yml
+3 −3 .github/workflows/scorecard.yml
+2 −2 .github/workflows/semantic.yml
+4 −4 .github/workflows/trivy-scan.yml
+2 −1 .rpsrc
+9 −0 CHANGELOG.md
+1 −1 Dockerfile
+507 −441 package-lock.json
+13 −12 package.json
+0 −5 src/CommandParser.ts
+217 −0 src/DataProcessor.tls.test.ts
+64 −9 src/DataProcessor.ts
+205 −0 src/TLSTunnelManager.ts
+25 −6 src/Validator.ts
+9 −4 src/WebSocketListener.ts
+30 −2 src/certManager.ts
+72 −0 src/certs/amt-odca.ts
+1 −1 src/data/postgres/index.ts
+1 −1 src/data/postgres/tables/ieee8021xProfiles.ts
+1 −1 src/data/postgres/tables/profiles.ts
+13 −1 src/models/RCS.Config.ts
+2 −0 src/models/index.ts
+1 −3 src/routes/admin/domains/domain.test.ts
+2 −1 src/routes/admin/domains/domain.ts
+1 −1 src/routes/admin/profiles/all.ts
+1 −2 src/routes/admin/profiles/edit.ts
+1 −1 src/routes/admin/version/get.test.ts
+203 −1 src/stateMachines/activation.test.ts
+144 −12 src/stateMachines/activation.ts
+2 −0 src/stateMachines/ciraConfiguration.test.ts
+12 −6 src/stateMachines/ciraConfiguration.ts
+199 −0 src/stateMachines/common.tls.test.ts
+204 −7 src/stateMachines/common.ts
+2 −0 src/stateMachines/deactivation.test.ts
+14 −5 src/stateMachines/error.ts
+2 −1 src/stateMachines/featuresConfiguration.test.ts
+2 −0 src/stateMachines/featuresConfiguration.ts
+2 −0 src/stateMachines/networkConfiguration.test.ts
+1 −2 src/stateMachines/networkConfiguration.ts
+7 −4 src/stateMachines/tls.ts
+2 −0 src/stateMachines/unconfiguration.test.ts
+12 −4 src/stateMachines/unconfiguration.ts
+2 −0 src/stateMachines/wifiNetworkConfiguration.test.ts
+2 −0 src/stateMachines/wiredNetworkConfiguration.test.ts
+106 −22 src/stateMachines/wiredNetworkConfiguration.ts
+3 −1 src/test/helper/Config.ts
+11 −2 src/utils/ClientMsgJsonParser.ts
+4 −1 src/utils/ClientResponseMsg.ts
+4 −0 src/utils/Environment.ts
+1 −1 src/utils/SignatureHelper.ts
+20 −0 src/utils/constants.ts
+2 −2 src/webSocketListener.test.ts
2 changes: 1 addition & 1 deletion sample-web-ui
Submodule sample-web-ui updated 54 files
+5 −5 .github/workflows/codeql-analysis.yml
+5 −5 .github/workflows/cypress.yaml
+2 −2 .github/workflows/dependency-review.yml
+2 −2 .github/workflows/docker.yaml
+4 −4 .github/workflows/nodejs.yaml
+1 −1 .github/workflows/projectsSync.yaml
+5 −5 .github/workflows/release.yml
+3 −3 .github/workflows/scorecard.yml
+1 −1 .github/workflows/semantic.yml
+4 −4 .github/workflows/trivy-scan.yaml
+58 −0 CHANGELOG.md
+2 −2 Dockerfile
+5 −3 cypress.config.ts
+113 −0 cypress/e2e/integration/device/create.spec.ts
+101 −0 cypress/e2e/integration/device/delete.spec.ts
+41 −179 cypress/e2e/integration/rpc/activation.spec.ts
+181 −0 cypress/e2e/integration/rpc/cloud.activation.spec.ts
+169 −0 cypress/e2e/integration/rpc/console.activation.spec.ts
+31 −10 cypress/support/commands.ts
+1,638 −0 cypress/support/custom-reporter.js
+11 −0 cypress/support/multi-reporter-config.json
+2,724 −2,155 package-lock.json
+36 −30 package.json
+2 −2 src/app/devices/alarms/alarms.component.html
+173 −15 src/app/devices/alarms/alarms.component.spec.ts
+81 −42 src/app/devices/alarms/alarms.component.ts
+8 −2 src/app/devices/device-toolbar/device-toolbar.component.html
+23 −22 src/app/devices/device-toolbar/device-toolbar.component.spec.ts
+6 −4 src/app/devices/device-toolbar/device-toolbar.component.ts
+7 −21 src/app/devices/devices.component.html
+1 −1 src/app/devices/devices.component.ts
+24 −4 src/app/devices/devices.service.ts
+5 −3 src/app/devices/general/general.component.ts
+8 −3 src/app/devices/kvm/kvm.component.html
+13 −1 src/app/devices/kvm/kvm.component.scss
+110 −3 src/app/devices/kvm/kvm.component.spec.ts
+33 −10 src/app/devices/kvm/kvm.component.ts
+3 −11 src/app/error-handling.interceptor.spec.ts
+51 −7 src/assets/i18n/ar.json
+53 −9 src/assets/i18n/de.json
+56 −0 src/assets/i18n/en.json
+51 −7 src/assets/i18n/es.json
+58 −14 src/assets/i18n/fi.json
+52 −8 src/assets/i18n/fr.json
+48 −4 src/assets/i18n/he.json
+53 −9 src/assets/i18n/it.json
+51 −7 src/assets/i18n/ja.json
+61 −17 src/assets/i18n/nl.json
+51 −7 src/assets/i18n/ru.json
+54 −10 src/assets/i18n/sv.json
+1 −0 src/environments/environment.enterprise.dev.ts
+1 −0 src/environments/environment.enterprise.ts
+1 −0 src/environments/environment.prod.ts
+1 −0 src/environments/environment.ts
Loading