Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[OFFICIAL RELEASE] 7.3.0 #2801

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG_OLD.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Older changes
## 7.1.3 (2024-09-20)

- (@foxriver76) improve appearance and standardization of some warning messages
- (@foxriver76) indicate `alert` warnings by the badge color on the notification button
- (@foxriver76) allow distinguishing between alert notifications and others for host notifications
- (@foxriver76) do not automatically open the notification dialog without user interaction
- (@foxriver76) fixed logging as a socket client is now throwing real errors

## 7.1.2 (2024-09-20)

- (@foxriver76) fixed host base settings dialog
Expand Down
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The icons may not be reused in other projects without the proper flaticon licens
<!--
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**
### 7.3.0 (2024-11-13)
- (@GermanBluefox) Corrected cloud icon for admin
- (@GermanBluefox) Added old dialog names to adapter-react-v5 again

Expand All @@ -111,14 +111,6 @@ The icons may not be reused in other projects without the proper flaticon licens

- (bluefox) Added the read-only flag to the `state` JSON Config component

### 7.1.3 (2024-09-20)

- (@foxriver76) improve appearance and standardization of some warning messages
- (@foxriver76) indicate `alert` warnings by the badge color on the notification button
- (@foxriver76) allow distinguishing between alert notifications and others for host notifications
- (@foxriver76) do not automatically open the notification dialog without user interaction
- (@foxriver76) fixed logging as a socket client is now throwing real errors

## License

The MIT License (MIT)
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "7.2.6",
"version": "7.3.0",
"packages": [
"packages/*"
],
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions packages/adapter-react-v5/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iobroker/adapter-react-v5",
"version": "7.2.6",
"version": "7.3.0",
"description": "React components to develop ioBroker interfaces with react.",
"author": {
"name": "bluefox",
Expand Down Expand Up @@ -50,8 +50,8 @@
},
"homepage": "https://github.com/ioBroker/iobroker.admin#readme",
"dependencies": {
"@emotion/styled": "^11.13.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@iobroker/js-controller-common": "^6.0.11",
"@iobroker/js-controller-common-db": "^6.0.11",
"@iobroker/socket-client": "^3.1.1",
Expand Down
1,178 changes: 597 additions & 581 deletions packages/admin/io-package.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/admin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "iobroker.admin",
"description": "The adapter opens a webserver for the ioBroker admin UI.",
"version": "7.2.6",
"version": "7.3.0",
"contributors": [
"bluefox <[email protected]>",
"apollon77",
Expand Down
2 changes: 1 addition & 1 deletion packages/admin/src-admin/public/css/adapter.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/dm-gui-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iobroker/dm-gui-components",
"version": "7.2.6",
"version": "7.3.0",
"description": "ReactJS components to develop admin interface for ioBroker device manager.",
"author": {
"name": "Jey Cee",
Expand Down
2 changes: 1 addition & 1 deletion packages/jsonConfig/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@iobroker/json-config",
"description": "This package contains the ioBroker JSON config UI components",
"version": "7.2.6",
"version": "7.3.0",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
Expand Down
Loading