Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to `dash-ag-grid` will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).
Links "DE#nnn" prior to version 2.0 point to the Dash Enterprise closed-source Dash AG Grid repo

## [32.3.2rc2] - 2025-09-17

### Fixed
- [#403](https://github.com/plotly/dash-ag-grid/issues/403) fix "Maximum update depth exceeded" error

## [32.3.2] - 2025-09-17

### Fixed
- [#403](https://github.com/plotly/dash-ag-grid/issues/403) fix "Maximum update depth exceeded" error

## [32.3.2rc1] - 2025-08-05

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions 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-ag-grid",
"version": "33.3.2rc1",
"version": "33.3.2rc2",
"description": "Dash wrapper around AG Grid, the best interactive data grid for the web.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions tests/test_column_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
alt_colState = [
{
"colId": "price",
"width": 198,
"width": 200,
"hide": False,
"pinned": None,
"sort": "asc",
Expand Down Expand Up @@ -239,7 +239,7 @@ def loadState(n):

dash_duo.find_element("#get-column-state-button").click()
testState = colState.copy()
testState[1]["width"] = 198
testState[1]["width"] = 200
until(
lambda: json.dumps(testState)
in dash_duo.find_element("#reset-column-state-grid-pre").text,
Expand Down
8 changes: 6 additions & 2 deletions tests/test_sizing_buttons.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import pytest
import dash_ag_grid as dag
from dash import Dash, html, dcc, Output, Input, no_update, ctx, State
import requests
Expand Down Expand Up @@ -118,6 +119,7 @@ def selected(state, oldState, opts):
oldValue = dash_duo.find_element("#columnState").text


@pytest.mark.flaky(max_runs=5, min_passes=1)
def test_sb002_sizing_buttons(dash_duo):
app = Dash(__name__)

Expand Down Expand Up @@ -204,6 +206,7 @@ def selected(state):
for x in columnDefs:
assert x["field"] in oldValue

time.sleep(.5) # allow window size to change
for x in ["sizeToFit", "responsiveSizeToFit"]:
dash_duo.find_element(f"#{x}").click()
if x != "responsiveSizeToFit":
Expand Down Expand Up @@ -339,7 +342,7 @@ def selected(state, oldState, opts):
)
oldValue = dash_duo.find_element("#columnState").text


@pytest.mark.flaky(max_runs=5, min_passes=1)
def test_sb004_sizing_buttons(dash_duo):
app = Dash(__name__)

Expand Down Expand Up @@ -427,6 +430,7 @@ def selected(state):
oldValue = dash_duo.find_element("#columnState").text
for x in columnDefs:
assert x["field"] in oldValue
time.sleep(.5)

for x in ["sizeToFit", "responsiveSizeToFit"]:
dash_duo.find_element(f"#{x}").click()
Expand All @@ -448,7 +452,7 @@ def selected(state):
assert oldValue == dash_duo.find_element("#columnState").get_attribute(
"innerText"
)
time.sleep(.2) # allow window size to change
time.sleep(.5) # allow window size to change
dash_duo.find_element(f"#{x}").click()
until(
lambda: oldValue
Expand Down
Loading