Skip to content

Commit 0fa9f70

Browse files
Merge branch 'master' into master
2 parents e451321 + 1e45055 commit 0fa9f70

76 files changed

Lines changed: 8483 additions & 2144 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 33 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,44 @@
1-
# Dependabot will run on day 18 of each month at 03:46 (Europe/Berlin timezone)
1+
# Dependabot configuration
2+
# Cooldown delays updating normal npm dependencies by 7 days but allows security updates to be processed immediately.
3+
# Note: Cooldown is not supported for the github-actions ecosystem.
4+
# Reference: https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference
25
version: 2
36
updates:
47

5-
- package-ecosystem: "github-actions"
6-
directory: "/"
8+
- package-ecosystem: 'github-actions'
9+
directory: '/'
710
schedule:
8-
interval: "cron"
9-
timezone: "Europe/Berlin"
10-
cronjob: "46 3 18 * *"
11+
interval: 'cron'
12+
timezone: 'Europe/Berlin'
13+
cronjob: '46 3 18 * *'
1114
open-pull-requests-limit: 15
1215

13-
- package-ecosystem: "npm"
14-
directory: "/"
16+
- package-ecosystem: 'npm'
17+
directory: '/'
1518
schedule:
16-
interval: "cron"
17-
timezone: "Europe/Berlin"
18-
cronjob: "46 3 18 * *"
19+
interval: 'cron'
20+
timezone: 'Europe/Berlin'
21+
cronjob: '46 3 18 * *'
1922
open-pull-requests-limit: 20
20-
versioning-strategy: "increase"
23+
versioning-strategy: 'increase'
24+
ignore:
25+
- dependency-name: '@types/node'
26+
update-types:
27+
- 'version-update:semver-major'
28+
cooldown:
29+
default-days: 7
2130

22-
- package-ecosystem: "npm"
23-
directory: "/src-admin"
31+
- package-ecosystem: 'npm'
32+
directory: '/src-admin'
2433
schedule:
25-
interval: "cron"
26-
timezone: "Europe/Berlin"
27-
cronjob: "46 3 18 * *"
34+
interval: 'cron'
35+
timezone: 'Europe/Berlin'
36+
cronjob: '46 3 18 * *'
2837
open-pull-requests-limit: 20
29-
versioning-strategy: "increase"
38+
versioning-strategy: 'increase'
39+
ignore:
40+
- dependency-name: '@types/node'
41+
update-types:
42+
- 'version-update:semver-major'
43+
cooldown:
44+
default-days: 7

.github/workflows/test-and-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
runs-on: ubuntu-latest
3030

3131
steps:
32-
- uses: ioBroker/testing-action-check@v1
32+
- uses: ioBroker/testing-action-check@v2
3333
with:
34-
node-version: '22.x'
34+
node-version: '24.x'
3535
install-command: 'npm ci && cd src-admin && npm ci && cd ../src-www && npm ci && cd ../packages/dm-widgets && npm ci && npm run build'
3636
lint: true
3737

@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
strategy:
4646
matrix:
47-
node-version: [20.x, 22.x, 24.x]
47+
node-version: [20.x, 22.x, 24.15.0]
4848

4949
steps:
5050
- uses: ioBroker/testing-action-adapter@v1

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ admin/i18n/flat.txt
1313
admin/i18n/*/flat.txt
1414
/src/adapter-react
1515
/iob_npm.done
16+
/build
1617

1718
#ignore .commitinfo created by ioBroker release script
1819
.commitinfo

.releaseconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"plugins": ["iobroker", "license"],
33
"exec": {
4+
"before_check": "npm run lint",
45
"before_commit": "npm run build"
56
}
67
}

CHANGELOG_OLD.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Older changes

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,15 @@ This adapter is built with the help of `type-detector`. All possible devices cou
131131
Placeholder for the next version (at the beginning of the line):
132132
### **WORK IN PROGRESS**
133133
-->
134+
135+
### **WORK IN PROGRESS**
136+
- (ioBroker-Bot) Adapter requires js-controller >= 6.0.11 now.
137+
138+
### 3.0.0 (2026-06-26)
139+
* (@GermanBluefox) Corrected universal widget
140+
* (@GermanBluefox) Added open-meteo-weather adapter support
141+
* (@GermanBluefox) Read all states anew after the reconnection
142+
134143
### 2.1.5 (2026-05-28)
135144
* (@GermanBluefox) Added a theme type to context
136145

@@ -310,6 +319,8 @@ This adapter is built with the help of `type-detector`. All possible devices cou
310319
### 0.1.0 (2019-08-31)
311320
* (bluefox) initial release
312321

322+
[Older changelogs can be found there](CHANGELOG_OLD.md)
323+
313324
## License
314325
MIT License
315326

admin/assets/index-BoG9QJPH.js

Lines changed: 2788 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

admin/assets/index-YQp7yPLa.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)