Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
fix(deps): update matterbridge and project-chip (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
t0bst4r authored Jun 29, 2024
1 parent 30eaedd commit 2bc731a
Show file tree
Hide file tree
Showing 6 changed files with 180 additions and 168 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Bug Report
description: File a bug report.
title: "[Bug]: "
labels: [ "bug" ]
title: '[Bug]: '
labels: ['bug']
body:
- type: markdown
attributes:
Expand All @@ -16,7 +16,7 @@ body:
Also tell us, what did you expect to happen?
Please include screenshots if possible.
placeholder: Tell us what you see!
value: "A bug happened!"
value: 'A bug happened!'
validations:
required: true

Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/domain-request.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Domain Request
description: Request support for a new domain
title: "[Domain]: "
labels: [ "enhancement" ]
title: '[Domain]: '
labels: ['enhancement']
body:
- type: markdown
attributes:
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature-request.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Feature Request
description: Request a new feature.
title: "[Feature]: "
labels: [ "enhancement" ]
title: '[Feature]: '
labels: ['enhancement']
body:
- type: markdown
attributes:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
yarn release
yarn pack --filename matterbridge-home-assistant.tgz
echo "released-version=$(yq -r '.version' package.json)" >> "$GITHUB_OUTPUT"
if [[ "${{github.ref}}" = 'refs/heads/main' ]]; then
echo "dist-tag=latest" >> "$GITHUB_OUTPUT"
elif [[ "${{github.ref}}" = 'refs/heads/beta' ]]; then
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
dispatch:
name: 🚀 Repository Dispatch
needs: [ node, docker ]
needs: [node, docker]
runs-on: ubuntu-latest
if: needs.node.outputs.released-version != '0.0.0' && needs.node.outputs.dist-tag == 'latest'
steps:
Expand Down
23 changes: 14 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,28 @@
"serve": "dotenvx run -f .env.local -- matterbridge -bridge"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.0.0",
"@eslint/js": "^9.4.0",
"@project-chip/matter-node.js": "0.9.2",
"@project-chip/matter.js": "0.9.2",
"@dotenvx/dotenvx": "^1.1.0",
"@eslint/js": "^9.6.0",
"@types/color": "^3.0.6",
"@types/debounce-promise": "^3.1.9",
"@types/glob-to-regexp": "^0.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^18",
"@types/ws": "^8.5.10",
"eslint": "9.x",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.4.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"matterbridge": "1.3.4",
"prettier": "^3.3.1",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.30"
"typescript-eslint": "^8.0.0-alpha.34",
"@project-chip/matter-node.js": "0.9.3",
"@project-chip/matter.js": "0.9.3",
"matterbridge": "1.3.6"
},
"dependencies": {
"color": "^4.2.3",
Expand All @@ -56,15 +56,20 @@
},
"release": {
"ci": true,
"branches": ["main"],
"branches": [
"main"
],
"tagFormat": "v${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{ "type": "bump", "release": "patch" }
{
"type": "bump",
"release": "patch"
}
]
}
],
Expand Down
Loading

0 comments on commit 2bc731a

Please sign in to comment.