From eaabb56e22191b516217165af6c26f40ac2c77a6 Mon Sep 17 00:00:00 2001 From: Ryan Morshead Date: Mon, 3 Jul 2023 23:34:06 -0600 Subject: [PATCH 1/2] fix changelog --- docs/source/about/changelog.rst | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/source/about/changelog.rst b/docs/source/about/changelog.rst index a927f0fcf..30d595b94 100644 --- a/docs/source/about/changelog.rst +++ b/docs/source/about/changelog.rst @@ -23,6 +23,20 @@ more info, see the :ref:`Contributor Guide `. Unreleased ---------- +Nothing yet... + + +v1.0.2 +------ + +**Fixed** + +- :issue:`1086` - fix rendering bug when children change positions (via :pull:`1085`) + + +v1.0.1 +------ + **Changed** - :pull:`1050` - Warn and attempt to fix missing mime types, which can result in ``reactpy.run`` not working as expected. @@ -31,7 +45,6 @@ Unreleased - :issue:`930` - better traceback for JSON serialization errors (via :pull:`1008`) - :issue:`437` - explain that JS component attributes must be JSON (via :pull:`1008`) -- :issue:`1086` - fix rendering bug when children change positions (via :pull:`1085`) v1.0.0 From caff604267f3925a2db71de3814e2409903dd0b0 Mon Sep 17 00:00:00 2001 From: Ryan Morshead Date: Mon, 3 Jul 2023 23:36:41 -0600 Subject: [PATCH 2/2] narrow pre-commit steps to particular files --- .pre-commit-config.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ae748a41d..0383cbb1d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,6 +7,7 @@ repos: language: system args: [--fix] pass_filenames: false + files: \.py$ - repo: local hooks: - id: lint-js-fix @@ -14,6 +15,7 @@ repos: entry: hatch run lint-js --fix language: system pass_filenames: false + files: \.(js|jsx|ts|tsx)$ - repo: local hooks: - id: lint-py-check @@ -21,6 +23,7 @@ repos: entry: hatch run lint-py language: system pass_filenames: false + files: \.py$ - repo: local hooks: - id: lint-js-check @@ -28,3 +31,4 @@ repos: entry: hatch run lint-py language: system pass_filenames: false + files: \.(js|jsx|ts|tsx)$