Skip to content

Commit

Permalink
v2.6.0
Browse files Browse the repository at this point in the history
* Hide double/long press action in Home app when disabled (#143) (#157) @donavanbecker
* Bump socket.io-parser and homebridge-config-ui-x (#141) @dependabot
* Bump systeminformation and homebridge-config-ui-x (#140) @dependabot
* Bump class-validator and homebridge-config-ui-x (#139) @dependabot
* Bump fastify and homebridge-config-ui-x (#138) @dependabot
* Bump @babel/traverse from 7.22.20 to 7.23.2 (#130) @dependabot
* update README to include support for 4 button scene keypads (#131) @DonutEspresso
* Add `Name` & `ConfiguredName` to AccessoryInformation so Names sync from Lutron app to Home app. (@donavanbecker)
* Update dependencies
  • Loading branch information
donavanbecker committed Jul 3, 2024
1 parent f32a1a1 commit 4817017
Show file tree
Hide file tree
Showing 11 changed files with 1,718 additions and 1,024 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
template: |
### What’s Changed
$CHANGES
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
# the Node.js versions to build on
# 16.x is required by Homebridge: https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-macOS
node-version: [16.x, 17.x]
node-version: [18, 20]

steps:
- uses: actions/checkout@v2
Expand Down
41 changes: 41 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Release Drafter

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- main
# pull_request event is required only for autolabeler
pull_request:
# Only following types are handled by the action, but one can default to all as well
types: [opened, reopened, synchronize]
# pull_request_target event is required for autolabeler to support PRs from forks
# pull_request_target:
# types: [opened, reopened, synchronize]

permissions:
contents: read

jobs:
update_release_draft:
permissions:
# write permission is required to create a github release
contents: write
# write permission is required for autolabeler
# otherwise, read permission is required at least
pull-requests: write
runs-on: ubuntu-latest
steps:
# (Optional) GitHub Enterprise requires GHE_HOST variable set
#- name: Set GHE_HOST
# run: |
# echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV

# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v6
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
# with:
# config-name: my-config.yml
# disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58 changes: 58 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Release to NPM

on:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
# the Node.js versions to build on
# 16.x is required by Homebridge: https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-macOS
node-version: [18, 20]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install

- name: Lint the project
run: npm run lint

- name: Build the project
run: npm run build
env:
CI: true

publish:
needs: build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x

- name: Install dependencies
run: npm install

- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}




23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Change Log

All notable changes to `homebridge` will be documented in this file. This project tries to adhere to [Semantic Versioning](http://semver.org/).

## v2.6.0 (2024-07-02)

### What’s Changed

* Hide double/long press action in Home app when disabled (#143) (#157) @donavanbecker
* Bump socket.io-parser and homebridge-config-ui-x (#141) @dependabot
* Bump systeminformation and homebridge-config-ui-x (#140) @dependabot
* Bump class-validator and homebridge-config-ui-x (#139) @dependabot
* Bump fastify and homebridge-config-ui-x (#138) @dependabot
* Bump @babel/traverse from 7.22.20 to 7.23.2 (#130) @dependabot
* update README to include support for 4 button scene keypads (#131) @DonutEspresso
* Add `Name` & `ConfiguredName` to AccessoryInformation so Names sync from Lutron app to Home app. (@donavanbecker)
* Update dependencies

## v2.5.3 (2023-09-24)

### What’s Changed

* Many thanks for @Bleufarmer for sponsoring support for the new paddle switch Pico!
Loading

0 comments on commit 4817017

Please sign in to comment.