Skip to content

Commit b71613d

Browse files
committed
Changelog entry
1 parent 5b41207 commit b71613d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
44

55
## [UNRELEASED]
66

7-
## Fixed
7+
## Fixed
88

99
- [#2634](https://github.com/plotly/dash/pull/2634) Fix deprecation warning on pkg_resources, fix [#2631](https://github.com/plotly/dash/issues/2631)
1010

@@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1616
## Added
1717

1818
- [#2630](https://github.com/plotly/dash/pull/2630) New layout hooks in the renderer
19+
- [#2647](https://github.com/plotly/dash/pull/2647) `routing_callback_states` allowing to pass more State arguments to the pages routing callback
1920

2021

2122
## [2.12.1] - 2023-08-16

dash/dash.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2106,7 +2106,9 @@ def update(pathname_, search_, **states):
21062106
"""
21072107

21082108
query_parameters = _parse_query_string(search_)
2109-
page, path_variables = _path_to_page(self.strip_relative_path(pathname_))
2109+
page, path_variables = _path_to_page(
2110+
self.strip_relative_path(pathname_)
2111+
)
21102112

21112113
# get layout
21122114
if page == {}:

0 commit comments

Comments
 (0)