Skip to content

Commit 5da9df3

Browse files
committed
merge changes from master
2 parents d6fc0f6 + ded5833 commit 5da9df3

File tree

5 files changed

+116
-34
lines changed

5 files changed

+116
-34
lines changed

.github/PULL_REQUEST_TEMPLATE/enhancement_pull_request_template.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE/fix_pull_request_template.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Name of the PR
2+
3+
## :recycle: Current situation
4+
*Describe the current situation (if possible with and exemplary (or real) code snippet and/or where this is used)*
5+
6+
## :bulb: Proposed solution
7+
*Describe the solution (if possible with and exemplary (or real) code snippet)*
8+
9+
### Problem that is solved
10+
*Provide a description and link issues that are solved*
11+
12+
### Implications
13+
*Describe the implications, e.g. refactoring*
14+
15+
## :heavy_plus_sign: Additional Information
16+
*Provide some additional information if possible*
17+
18+
### Testing
19+
*Are there tests included? If yes, which situations are tested and which corner cases are missing?*
20+
21+
### Reviewer Nudging
22+
*Where should the reviewer start, where is a good entry point?*
23+
24+
<!-- Credits to @lschlesinger for creating this PR template :) -->

.github/workflows/codeql-analysis.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ master, beta ]
6+
pull_request:
7+
# The branches below must be a subset of the branches above
8+
branches: [ master, beta ]
9+
schedule:
10+
- cron: '17 9 * * 2'
11+
12+
jobs:
13+
analyze:
14+
name: Analyze
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
language: [ 'javascript' ]
21+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
22+
# Learn more:
23+
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
24+
25+
steps:
26+
- name: Checkout repository
27+
uses: actions/checkout@v2
28+
29+
# Initializes the CodeQL tools for scanning.
30+
- name: Initialize CodeQL
31+
uses: github/codeql-action/init@v1
32+
with:
33+
languages: ${{ matrix.language }}
34+
# If you wish to specify custom queries, you can do so here or in a config file.
35+
# By default, queries listed here will override any specified in a config file.
36+
# Prefix the list here with "+" to use these queries and those in the config file.
37+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
38+
39+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
40+
# If this step fails, then you should remove it and run the build manually (see below)
41+
- name: Autobuild
42+
uses: github/codeql-action/autobuild@v1
43+
44+
# ℹ️ Command-line programs to run using the OS shell.
45+
# 📚 https://git.io/JvXDl
46+
47+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
48+
# and modify them (or add more) to build your code if your project
49+
# uses a compiled language
50+
51+
#- run: |
52+
# make bootstrap
53+
# make release
54+
55+
- name: Perform CodeQL Analysis
56+
uses: github/codeql-action/analyze@v1

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,42 @@ If for any reason Homebridge v1.3.0 is not working for you, you can rollback to
7676
<img src="https://user-images.githubusercontent.com/64748380/102620583-d473d380-4103-11eb-827b-276a13503424.gif" width="600px">
7777
</p>
7878

79+
## v1.2.5 (2020-12-28)
80+
81+
### Bug Fixes
82+
83+
* Updated HAP-NodeJS to [v0.8.5](https://github.com/homebridge/HAP-NodeJS/releases/tag/v0.8.5) incorporating
84+
fixes made to the `ciao` mDNS library.
85+
Refer to the release notes of HAP-NodeJS for more techicnal details.
86+
87+
## v1.2.4 (2020-12-05)
88+
89+
### Bug Fixes
90+
91+
* Updated the mdns library `ciao` to [v1.1.0](https://github.com/homebridge/ciao/releases/tag/v1.1.0)
92+
introducing further stability improvements.
93+
94+
## v1.2.3 (2020-09-21)
95+
96+
### Bug Fixes
97+
98+
* Updated the mdns library `ciao` to the latest version
99+
* Includes general bug fixes and stability improvements
100+
* Improved compatibility with machines running avahi
101+
* Fixed handling of updated ip addresses
102+
* Fixes for Darwin system running in a VM
103+
104+
## v1.2.2 (2020-09-16)
105+
106+
### Bug Fixes
107+
108+
* Added a warning when a plugin takes too long to load and prevents homebridge from starting.
109+
* Update hap-nodejs to v0.8.2 resolving some advertising issues on some uncommon platforms
110+
111+
#### For Developers
112+
113+
* Updated the typing of the accessory context to be any again to allow less strict typing. Though we encourage you to write your own Type Definition for better type safety!
114+
79115
## v1.2.1 (2020-09-15)
80116

81117
### Bug Fixes

0 commit comments

Comments
 (0)