From e397e0a6d695832c445e95057d23c89828ba31e9 Mon Sep 17 00:00:00 2001 From: Vendulamrdka95 <122843768+Vendulamrdka95@users.noreply.github.com> Date: Fri, 30 Jun 2023 21:37:28 +0200 Subject: [PATCH 1/3] Create SECURITY.md --- SECURITY.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..034e848 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,21 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | + +## Reporting a Vulnerability + +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc. From dc54e2495da21011d06562c5e2ae03c8c9734c5e Mon Sep 17 00:00:00 2001 From: Vendulamrdka95 <122843768+Vendulamrdka95@users.noreply.github.com> Date: Fri, 30 Jun 2023 20:43:43 +0000 Subject: [PATCH 2/3] --- .vscode/launch.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2445a47 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,36 @@ +{ + // Pro informace o možných atributech použijte technologii IntelliSense. + // Umístěním ukazatele myši zobrazíte popisy existujících atributů. + // Další informace najdete tady: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "args": [ + "generator" + ], + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "name": "Yeoman generator", + "program": "${workspaceFolder}/node_modules/yo/lib/cli.js", + "request": "launch", + "skipFiles": [ + "/**" + ], + "type": "node" + }, + { + "request": "launch", + "name": "Launch Program", + "type": "node", + "program": "${workspaceFolder}/main.ts", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "deno", + "runtimeArgs": [ + "run", + "--inspect-brk", + "--allow-all" + ], + "attachSimplePort": 9229 + } + ] +} \ No newline at end of file From 5e29765a505126b6fc1d907c6ad258408fec84a1 Mon Sep 17 00:00:00 2001 From: Vendulamrdka95 <122843768+Vendulamrdka95@users.noreply.github.com> Date: Fri, 30 Jun 2023 20:45:56 +0000 Subject: [PATCH 3/3] --- .vscode/launch.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 2445a47..aee3cd2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,13 @@ // Další informace najdete tady: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "Attach to Edge", + "port": 9222, + "request": "attach", + "type": "msedge", + "webRoot": "${workspaceFolder}" + }, { "args": [ "generator"