Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.7.3 changelog #1242

Merged
merged 2 commits into from
Mar 21, 2025
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ env:

on:
push:
branches: ['main']
branches: ["main"]
pull_request:
branches: ['main']
branches: ["main"]
workflow_dispatch:
inputs:
reflex_dep:
Expand All @@ -33,16 +33,16 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ['3.11.5', '3.12.0']
python-version: ["3.11.5", "3.12.0"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Requirements for reflex-web and reflex
run: |
pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}' -r requirements.txt pytest playwright pytest-playwright
pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}' -r requirements.txt pytest playwright pytest-playwright uvicorn
playwright install --with-deps
- name: Run unit tests
run: |
export PYTHONUNBUFFERED=1
reflex init
pytest tests
pytest tests
11 changes: 11 additions & 0 deletions pcweb/pages/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@ def change(

def changelog_content():
return rx.el.ul(
change(
"2025-03-17",
"v0.7.3",
"New .get var operation",
[
", and _ options for formatted numbers",
"added raw headers to router headers",
"exposed SVG elements at the el level",
],
"https://github.com/reflex-dev/reflex/releases/tag/v0.7.3",
),
change(
"2025-03-12",
"v0.7.2",
Expand Down