Skip to content

Commit

Permalink
Fixing CI pipeline (#2862)
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox authored Dec 11, 2024
1 parent 3b00714 commit dcf9252
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@alcalzone/release-script-plugin-lerna": "^3.7.0",
"@iobroker/types": "6.0.11",
"lerna": "^8.1.9"
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/adapter-react-v5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ If you want to create the configuration page with ReactJS:
- Change `name` from `src` to `ADAPTERNAME-admin` (Of course replace `ADAPTERNAME` with yours)
- Add to devDependencies:
```json
"@iobroker/adapter-react-v5": "^7.4.4",
"@iobroker/adapter-react-v5": "^7.4.5",
```
Versions can be higher.
So your `src/package.json` should look like:
Expand All @@ -24,7 +24,7 @@ If you want to create the configuration page with ReactJS:
"version": "0.1.0",
"private": true,
"dependencies": {
"@iobroker/adapter-react-v5": "^7.4.4",
"@iobroker/adapter-react-v5": "^7.4.5",
"@iobroker/build-tools": "^1.0.0",
"babel-eslint": "^10.1.0",
"react-scripts": "^5.0.1"
Expand Down
1 change: 1 addition & 0 deletions packages/adapter-react-v5/src/Components/ObjectBrowser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5576,6 +5576,7 @@ export class ObjectBrowserClass extends Component<ObjectBrowserProps, ObjectBrow
from: false,
ack: false,
q: false,
// @ts-expect-error fixed in js-controller 7
addId: false,
aggregate: 'minmax',
})
Expand Down
1 change: 1 addition & 0 deletions packages/adapter-react-v5/src/LegacyConnection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1674,6 +1674,7 @@ export class LegacyConnection {
obj._id = newId as ioBroker.ObjectIDs.Group;
if (newName !== undefined) {
obj.common = obj.common || ({} as ioBroker.GroupCommon);
// @ts-expect-error fixed in js-controller 7
obj.common.name = newName;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"setup"
],
"dependencies": {
"@iobroker/adapter-core": "^3.2.3",
"@iobroker/adapter-core": "^3.2.2",
"@iobroker/i18n": "^0.3.1",
"@iobroker/socket-classes": "^1.6.2",
"@iobroker/webserver": "^1.0.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/admin/src-admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,5 @@
}
]
],
"version": "7.4.4"
"version": "7.4.5"
}

0 comments on commit dcf9252

Please sign in to comment.