Skip to content

Commit 0b563cb

Browse files
committed
Merge branch 'main' into generate-sitemap-new
2 parents 599e4a0 + 126a55e commit 0b563cb

235 files changed

Lines changed: 2440 additions & 77775 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/setup_build_env/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ inputs:
1818
uv-version:
1919
description: "Uv version to install"
2020
required: false
21-
default: "0.6.5"
21+
default: "0.6.9"
2222
run-uv-sync:
2323
description: "Whether to run uv sync on current dir"
2424
required: false

.github/workflows/benchmarks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ jobs:
116116
- name: Install UV
117117
uses: astral-sh/setup-uv@v5
118118
with:
119-
version: 0.6.5
119+
version: 0.6.9
120120

121121
- name: Run uv sync
122122
shell: bash
123123
run: |
124-
uv pip install --no-install-project --no-dev
124+
uv sync --no-install-project --no-dev
125125
126126
- name: calculate and upload size
127127
run:

.github/workflows/check_generated_pyi.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/check_node_latest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
name: integration-node-latest
2+
permissions:
3+
contents: read
24

35
on:
46
push:

.github/workflows/check_outdated_dependencies.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
name: check-outdated-dependencies
2+
permissions:
3+
contents: read
24

35
on:
46
push: # This will trigger the action when a pull request is opened or updated.

.github/workflows/performance.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
name: performance-tests
2+
permissions:
3+
contents: read
24

35
on:
46
push:

.github/workflows/pre-commit.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
name: pre-commit
2+
permissions:
3+
contents: read
24

35
concurrency:
46
group: ${{ github.workflow }}-${{ github.event.pull_request.id }}
@@ -21,12 +23,9 @@ jobs:
2123
- uses: actions/checkout@v4
2224
- uses: ./.github/actions/setup_build_env
2325
with:
24-
# running vs. one version of Python is OK
25-
# i.e. ruff, black, etc.
26-
python-version: 3.12.8
26+
python-version: 3.13.2
2727
run-uv-sync: true
28-
29-
# TODO pre-commit related stuff can be cached too (not a bottleneck yet)
30-
- run: uv run pre-commit run --all-files
31-
env:
32-
SKIP: update-pyi-files
28+
- uses: actions/checkout@v4
29+
with:
30+
clean: false
31+
- run: uv run pre-commit run --all-files --show-diff-on-failure

.github/workflows/reflex_init_in_docker_test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
name: reflex-init-in-docker-test
2+
permissions:
3+
contents: read
24

35
concurrency:
46
group: ${{ github.workflow }}-${{ github.event.pull_request.id }}

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@ reflex.db
1818
.codspeed
1919
.env
2020
.env.*
21-
node_modules
21+
node_modules
22+
package-lock.json
23+
*.pyi

.pre-commit-config.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ repos:
1111
exclude: "^integration/benchmarks/"
1212

1313
- repo: https://github.com/codespell-project/codespell
14-
rev: v2.3.0
14+
rev: v2.4.1
1515
hooks:
1616
- id: codespell
1717
args: ["reflex"]
18+
additional_dependencies:
19+
- tomli
1820

1921
# Run pyi check before pyright because pyright can fail if pyi files are wrong.
2022
- repo: local
@@ -28,7 +30,7 @@ repos:
2830
entry: python3 scripts/make_pyi.py
2931

3032
- repo: https://github.com/RobertCraigie/pyright-python
31-
rev: v1.1.397
33+
rev: v1.1.398
3234
hooks:
3335
- id: pyright
3436
args: [reflex, tests]

0 commit comments

Comments
 (0)