Skip to content

Commit 949484e

Browse files
authored
0.7.3 changelog (#1242)
* 0.7.3 changelog * uvicorn
1 parent 5eafb71 commit 949484e

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

.github/workflows/unit_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ env:
1111

1212
on:
1313
push:
14-
branches: ['main']
14+
branches: ["main"]
1515
pull_request:
16-
branches: ['main']
16+
branches: ["main"]
1717
workflow_dispatch:
1818
inputs:
1919
reflex_dep:
@@ -33,16 +33,16 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
os: [ubuntu-latest]
36-
python-version: ['3.11.5', '3.12.0']
36+
python-version: ["3.11.5", "3.12.0"]
3737
runs-on: ${{ matrix.os }}
3838
steps:
3939
- uses: actions/checkout@v4
4040
- name: Install Requirements for reflex-web and reflex
4141
run: |
42-
pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}' -r requirements.txt pytest playwright pytest-playwright
42+
pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}' -r requirements.txt pytest playwright pytest-playwright uvicorn
4343
playwright install --with-deps
4444
- name: Run unit tests
4545
run: |
4646
export PYTHONUNBUFFERED=1
4747
reflex init
48-
pytest tests
48+
pytest tests

pcweb/pages/changelog.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,17 @@ def change(
4848

4949
def changelog_content():
5050
return rx.el.ul(
51+
change(
52+
"2025-03-17",
53+
"v0.7.3",
54+
"New .get var operation",
55+
[
56+
", and _ options for formatted numbers",
57+
"added raw headers to router headers",
58+
"exposed SVG elements at the el level",
59+
],
60+
"https://github.com/reflex-dev/reflex/releases/tag/v0.7.3",
61+
),
5162
change(
5263
"2025-03-12",
5364
"v0.7.2",

0 commit comments

Comments
 (0)