homebridge-securitysystem 7.4.0 → 7.5.0-beta.3

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.
package/.eslintrc.js CHANGED
@@ -1,16 +1,16 @@
1
- module.exports = {
2
- env: {
3
- browser: true,
4
- commonjs: true,
5
- es2021: true,
6
- },
7
- extends: "eslint:recommended",
8
- parserOptions: {
9
- ecmaVersion: "latest",
10
- },
11
- rules: {},
12
- globalVariables: {
13
- process: "readonly",
14
- _dirname: "readonly",
15
- },
16
- };
1
+ module.exports = {
2
+ env: {
3
+ browser: true,
4
+ commonjs: true,
5
+ es2021: true,
6
+ },
7
+ extends: "eslint:recommended",
8
+ parserOptions: {
9
+ ecmaVersion: "latest",
10
+ },
11
+ rules: {},
12
+ globalVariables: {
13
+ process: "readonly",
14
+ _dirname: "readonly",
15
+ },
16
+ };
@@ -1,2 +1,2 @@
1
- github: MiguelRipoll23
2
- custom: ["https://www.paypal.me/miguelripoll23"]
1
+ github: MiguelRipoll23
2
+ custom: ["https://www.paypal.me/miguelripoll23"]
@@ -1,46 +1,46 @@
1
- name: Bug Report
2
- description: File a bug report
3
- labels: [bug]
4
- assignees:
5
- - MiguelRipoll23
6
- body:
7
- - type: markdown
8
- attributes:
9
- value: |
10
- Thanks for taking the time to fill out this bug report!
11
- - type: input
12
- id: plugin-version
13
- attributes:
14
- label: Plugin version
15
- description: Installed version of the plugin
16
- placeholder: 1.0.0
17
- validations:
18
- required: true
19
- - type: textarea
20
- id: plugin-configuration
21
- attributes:
22
- label: Plugin configuration
23
- description: Configuration of the plugin
24
- validations:
25
- required: true
26
- - type: input
27
- id: homebridge-version
28
- attributes:
29
- label: Homebridge version
30
- description: Installed version of Homebridge
31
- placeholder: 1.0.0
32
- validations:
33
- required: true
34
- - type: textarea
35
- id: what-happened
36
- attributes:
37
- label: What happened?
38
- description: A description of the bug found plus the steps to reproduce the issue
39
- validations:
40
- required: true
41
- - type: textarea
42
- id: log
43
- attributes:
44
- label: Relevant log output
45
- description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
46
- render: bash
1
+ name: Bug Report
2
+ description: File a bug report
3
+ labels: [bug]
4
+ assignees:
5
+ - MiguelRipoll23
6
+ body:
7
+ - type: markdown
8
+ attributes:
9
+ value: |
10
+ Thanks for taking the time to fill out this bug report!
11
+ - type: input
12
+ id: plugin-version
13
+ attributes:
14
+ label: Plugin version
15
+ description: Installed version of the plugin
16
+ placeholder: 1.0.0
17
+ validations:
18
+ required: true
19
+ - type: textarea
20
+ id: plugin-configuration
21
+ attributes:
22
+ label: Plugin configuration
23
+ description: Configuration of the plugin
24
+ validations:
25
+ required: true
26
+ - type: input
27
+ id: homebridge-version
28
+ attributes:
29
+ label: Homebridge version
30
+ description: Installed version of Homebridge
31
+ placeholder: 1.0.0
32
+ validations:
33
+ required: true
34
+ - type: textarea
35
+ id: what-happened
36
+ attributes:
37
+ label: What happened?
38
+ description: A description of the bug found plus the steps to reproduce the issue
39
+ validations:
40
+ required: true
41
+ - type: textarea
42
+ id: log
43
+ attributes:
44
+ label: Relevant log output
45
+ description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
46
+ render: bash
@@ -1,17 +1,17 @@
1
- name: Feature Request
2
- description: Suggest a new feature
3
- labels: [enhancement]
4
- assignees:
5
- - MiguelRipoll23
6
- body:
7
- - type: markdown
8
- attributes:
9
- value: |
10
- Thanks for taking the time to suggest new features!
11
- - type: textarea
12
- id: feature-description
13
- attributes:
14
- label: What are you missing?
15
- description: A description of the feature suggested to be added
16
- validations:
17
- required: true
1
+ name: Feature Request
2
+ description: Suggest a new feature
3
+ labels: [enhancement]
4
+ assignees:
5
+ - MiguelRipoll23
6
+ body:
7
+ - type: markdown
8
+ attributes:
9
+ value: |
10
+ Thanks for taking the time to suggest new features!
11
+ - type: textarea
12
+ id: feature-description
13
+ attributes:
14
+ label: What are you missing?
15
+ description: A description of the feature suggested to be added
16
+ validations:
17
+ required: true
@@ -1,40 +1,40 @@
1
- name: Questions & Answers
2
- description: Get an answer
3
- labels: [question]
4
- assignees:
5
- - MiguelRipoll23
6
- body:
7
- - type: markdown
8
- attributes:
9
- value: |
10
- Thanks for taking the time to learn about this plugin!
11
- - type: input
12
- id: plugin-version
13
- attributes:
14
- label: Plugin version
15
- description: Installed version of the plugin
16
- placeholder: 1.0.0
17
- validations:
18
- required: true
19
- - type: textarea
20
- id: plugin-configuration
21
- attributes:
22
- label: Plugin configuration
23
- description: Configuration of the plugin
24
- validations:
25
- required: true
26
- - type: input
27
- id: homebridge-version
28
- attributes:
29
- label: Homebridge version
30
- description: Installed version of Homebridge
31
- placeholder: 1.0.0
32
- validations:
33
- required: true
34
- - type: textarea
35
- id: what-question
36
- attributes:
37
- label: What's your question?
38
- description: A description of the question using your use case and expected behavior
39
- validations:
40
- required: true
1
+ name: Questions & Answers
2
+ description: Get an answer
3
+ labels: [question]
4
+ assignees:
5
+ - MiguelRipoll23
6
+ body:
7
+ - type: markdown
8
+ attributes:
9
+ value: |
10
+ Thanks for taking the time to learn about this plugin!
11
+ - type: input
12
+ id: plugin-version
13
+ attributes:
14
+ label: Plugin version
15
+ description: Installed version of the plugin
16
+ placeholder: 1.0.0
17
+ validations:
18
+ required: true
19
+ - type: textarea
20
+ id: plugin-configuration
21
+ attributes:
22
+ label: Plugin configuration
23
+ description: Configuration of the plugin
24
+ validations:
25
+ required: true
26
+ - type: input
27
+ id: homebridge-version
28
+ attributes:
29
+ label: Homebridge version
30
+ description: Installed version of Homebridge
31
+ placeholder: 1.0.0
32
+ validations:
33
+ required: true
34
+ - type: textarea
35
+ id: what-question
36
+ attributes:
37
+ label: What's your question?
38
+ description: A description of the question using your use case and expected behavior
39
+ validations:
40
+ required: true
@@ -1,19 +1,19 @@
1
- # To get started with Dependabot version updates, you'll need to specify which
2
- # package ecosystems to update and where the package manifests are located.
3
- # Please see the documentation for all configuration options:
4
- # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
-
6
- version: 2
7
- updates:
8
- - package-ecosystem: "github-actions"
9
- directory: "/"
10
- schedule:
11
- interval: "daily"
12
-
13
- - package-ecosystem: npm
14
- directory: "/"
15
- schedule:
16
- interval: daily
17
- time: "18:00"
18
- timezone: Europe/Madrid
19
- open-pull-requests-limit: 10
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version: 2
7
+ updates:
8
+ - package-ecosystem: "github-actions"
9
+ directory: "/"
10
+ schedule:
11
+ interval: "daily"
12
+
13
+ - package-ecosystem: npm
14
+ directory: "/"
15
+ schedule:
16
+ interval: daily
17
+ time: "18:00"
18
+ timezone: Europe/Madrid
19
+ open-pull-requests-limit: 10
@@ -1,36 +1,36 @@
1
- changelog:
2
- exclude:
3
- labels:
4
- - ignore-for-release
5
-
6
- categories:
7
- - title: â˜ĸī¸ Security
8
- labels:
9
- - security
10
- - vulnerability
11
-
12
- - title: đŸ’Ĩ Breaking Changes
13
- labels:
14
- - breaking
15
- - breaking-change
16
-
17
- - title: 🎉 New Features
18
- labels:
19
- - feature
20
-
21
- - title: 💅 Enhancements
22
- labels:
23
- - enhancement
24
-
25
- - title: 🐛 Bug Fixes
26
- labels:
27
- - bug
28
- - bugfix
29
-
30
- - title: đŸ“Ļ Dependencies
31
- labels:
32
- - dependencies
33
-
34
- - title: ✨ Miscellaneous Changes
35
- labels:
36
- - "*"
1
+ changelog:
2
+ exclude:
3
+ labels:
4
+ - ignore-for-release
5
+
6
+ categories:
7
+ - title: â˜ĸī¸ Security
8
+ labels:
9
+ - security
10
+ - vulnerability
11
+
12
+ - title: đŸ’Ĩ Breaking Changes
13
+ labels:
14
+ - breaking
15
+ - breaking-change
16
+
17
+ - title: 🎉 New Features
18
+ labels:
19
+ - feature
20
+
21
+ - title: 💅 Enhancements
22
+ labels:
23
+ - enhancement
24
+
25
+ - title: 🐛 Bug Fixes
26
+ labels:
27
+ - bug
28
+ - bugfix
29
+
30
+ - title: đŸ“Ļ Dependencies
31
+ labels:
32
+ - dependencies
33
+
34
+ - title: đŸĒ„ Other Changes
35
+ labels:
36
+ - "*"
@@ -1,76 +1,76 @@
1
- # For most projects, this workflow file will not need changing; you simply need
2
- # to commit it to your repository.
3
- #
4
- # You may wish to alter this file to override the set of languages analyzed,
5
- # or to provide custom queries or build logic.
6
- #
7
- # ******** NOTE ********
8
- # We have attempted to detect the languages in your repository. Please check
9
- # the `language` matrix defined below to confirm you have the correct set of
10
- # supported CodeQL languages.
11
- #
12
- name: "CodeQL"
13
-
14
- on:
15
- push:
16
- branches: ["main"]
17
- paths-ignore:
18
- - "**.md"
19
- pull_request:
20
- types: [opened, reopened, synchronize, ready_for_review]
21
- # The branches below must be a subset of the branches above
22
- branches: ["main"]
23
- paths-ignore:
24
- - "**.md"
25
- schedule:
26
- - cron: "37 23 * * 5"
27
-
28
- jobs:
29
- analyze:
30
- name: Analyze
31
- runs-on: ubuntu-latest
32
- permissions:
33
- actions: read
34
- contents: read
35
- security-events: write
36
-
37
- strategy:
38
- fail-fast: false
39
- matrix:
40
- language: ["javascript"]
41
- # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
42
- # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
43
-
44
- steps:
45
- - name: Checkout repository
46
- uses: actions/checkout@v3
47
-
48
- # Initializes the CodeQL tools for scanning.
49
- - name: Initialize CodeQL
50
- uses: github/codeql-action/init@v2
51
- with:
52
- languages: ${{ matrix.language }}
53
- # If you wish to specify custom queries, you can do so here or in a config file.
54
- # By default, queries listed here will override any specified in a config file.
55
- # Prefix the list here with "+" to use these queries and those in the config file.
56
-
57
- # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
58
- # queries: security-extended,security-and-quality
59
-
60
- # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
61
- # If this step fails, then you should remove it and run the build manually (see below)
62
- - name: Autobuild
63
- uses: github/codeql-action/autobuild@v2
64
-
65
- # â„šī¸ Command-line programs to run using the OS shell.
66
- # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
67
-
68
- # If the Autobuild fails above, remove it and uncomment the following three lines.
69
- # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
70
-
71
- # - run: |
72
- # echo "Run, Build Application using script"
73
- # ./location_of_script_within_repo/buildscript.sh
74
-
75
- - name: Perform CodeQL Analysis
76
- uses: github/codeql-action/analyze@v2
1
+ # For most projects, this workflow file will not need changing; you simply need
2
+ # to commit it to your repository.
3
+ #
4
+ # You may wish to alter this file to override the set of languages analyzed,
5
+ # or to provide custom queries or build logic.
6
+ #
7
+ # ******** NOTE ********
8
+ # We have attempted to detect the languages in your repository. Please check
9
+ # the `language` matrix defined below to confirm you have the correct set of
10
+ # supported CodeQL languages.
11
+ #
12
+ name: "CodeQL"
13
+
14
+ on:
15
+ push:
16
+ branches: ["main"]
17
+ paths-ignore:
18
+ - "**.md"
19
+ pull_request:
20
+ types: [opened, reopened, synchronize, ready_for_review]
21
+ # The branches below must be a subset of the branches above
22
+ branches: ["main"]
23
+ paths-ignore:
24
+ - "**.md"
25
+ schedule:
26
+ - cron: "37 23 * * 5"
27
+
28
+ jobs:
29
+ analyze:
30
+ name: Analyze
31
+ runs-on: ubuntu-latest
32
+ permissions:
33
+ actions: read
34
+ contents: read
35
+ security-events: write
36
+
37
+ strategy:
38
+ fail-fast: false
39
+ matrix:
40
+ language: ["javascript"]
41
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
42
+ # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
43
+
44
+ steps:
45
+ - name: Checkout repository
46
+ uses: actions/checkout@v3
47
+
48
+ # Initializes the CodeQL tools for scanning.
49
+ - name: Initialize CodeQL
50
+ uses: github/codeql-action/init@v2
51
+ with:
52
+ languages: ${{ matrix.language }}
53
+ # If you wish to specify custom queries, you can do so here or in a config file.
54
+ # By default, queries listed here will override any specified in a config file.
55
+ # Prefix the list here with "+" to use these queries and those in the config file.
56
+
57
+ # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
58
+ # queries: security-extended,security-and-quality
59
+
60
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
61
+ # If this step fails, then you should remove it and run the build manually (see below)
62
+ - name: Autobuild
63
+ uses: github/codeql-action/autobuild@v2
64
+
65
+ # â„šī¸ Command-line programs to run using the OS shell.
66
+ # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
67
+
68
+ # If the Autobuild fails above, remove it and uncomment the following three lines.
69
+ # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
70
+
71
+ # - run: |
72
+ # echo "Run, Build Application using script"
73
+ # ./location_of_script_within_repo/buildscript.sh
74
+
75
+ - name: Perform CodeQL Analysis
76
+ uses: github/codeql-action/analyze@v2