Skip to content

Commit

Permalink
Preparing 1.0.12 release
Browse files Browse the repository at this point in the history
  • Loading branch information
emilhe committed Feb 4, 2024
1 parent 8844f09 commit 5a75d11
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.


## [1.0.12] - 04-02-23

### Changed

- Set `allow_duplicate=True` for the default logging configurations for the `LogTransform`, thereby fixing [#280](https://github.com/emilhe/dash-extensions/issues/280).

## [1.0.11] - 03-02-23

### Changed
Expand Down
4 changes: 2 additions & 2 deletions dash_extensions/enrich.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ def __init__(self, log_output, log_writer_map: Dict[int, Callable],

def setup_notifications_log_config():
log_id = "notifications_provider"
log_output = Output(log_id, "children")
log_output = Output(log_id, "children", allow_duplicate=True)

def notification_layout_transform(layout: List[Component]):
import dash_mantine_components as dmc
Expand All @@ -674,7 +674,7 @@ def div_layout_transform(layout: List[Component]):
layout.append(html.Div(id=log_id))
return layout

log_output = Output(log_id, "children")
log_output = Output(log_id, "children", allow_duplicate=True)
return LogConfig(log_output, get_default_log_writers(), div_layout_transform)


Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-extensions",
"version": "1.0.11",
"version": "1.0.12",
"description": "Extensions for Plotly Dash.",
"main": "build/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dash-extensions"
version = "1.0.11"
version = "1.0.12"
description = "Extensions for Plotly Dash."
authors = ["emher <emil.h.eriksen@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 5a75d11

Please sign in to comment.