Skip to content
Merged

Test #34

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
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,9 @@ repos:
hooks:
- id: flake8
args: ["--config=.flake8"]

- repo: https://github.com/commitizen-tools/commitizen
rev: v4.9.1
hooks:
- id: commitizen
stages: [commit-msg]
59 changes: 58 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,78 @@
## v1.1.1 (2026-01-06)

### Fix

- refine Plotly dependencies for platform compatibility

## v1.1.0 (2025-11-03)

### Refactor

- **react_plugin**: optimize Plotly rendering with CDN loading

## v1.0.0 (2025-08-29)

### Fix

- **action**: 🐛 update install command to include --refresh option for uv sync

### Refactor

- **react_plugin**: 🛠️ migrate to Vite and update package structure

## v0.3.2 (2025-06-06)

### Fix

- **test**: 🐛 update expected options for x value in test_express_xy
- **data**: 🐛 handle index as x value in plot_multidata function

## v0.3.1 (2025-04-19)

## v0.3.0 (2025-03-27)

### Feat

- update package dependencies and refactor render plugin types for improved compatibility

## v0.2.8 (2025-03-02)

## v0.2.7 (2025-03-02)

### Feat

- add CSS styles for funcnodes_plotly_container and update module path in React plugin

## v0.2.6 (2025-02-28)

### Fix

- update kaleido dependency condition for non-Windows platforms

## v0.2.5 (2025-02-28)

### Feat

- enhance add_trace function to support optional figure input and handle trace as figure

### Fix

- **data**: 🐛 handle index as x value in plot_multidata function
- update kaleido dependency condition for non-Windows platforms
- handle potential purge errors
- handle potential purge errors
- handle NoValue in plotting functions to ensure proper data representation

### Refactor

- rename test classes and update output variable names for clarity
- update plotting functions to return both trace and figure

## v0.2.4 (2025-01-29)

## v0.2.3 (2025-01-29)

## v0.2.2 (2024-10-23)

## v0.2.1 (2024-09-04)

## v0.2.0 (2024-08-29)
6 changes: 6 additions & 0 deletions cz.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "uv"
update_changelog_on_bump = true
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "funcnodes-plotly"
version = "1.1.0"
version = "1.1.1"
description = ""
readme = "README.md"
classifiers = [
Expand All @@ -12,7 +12,9 @@ dependencies = [
"funcnodes_pandas>=0.2.3",
"funcnodes_core>=0.3.51",
"funcnodes_images",
"plotly[kaleido]>=6.0.0",
"plotly[kaleido]>=6.0.0; sys_platform != 'emscripten'",
"plotly>=6.0.0; sys_platform == 'emscripten'",


]
requires-python = ">=3.11"
Expand Down
28 changes: 15 additions & 13 deletions uv.lock

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