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

versions bump before 0.6.4 #4208

Merged
merged 4 commits into from
Oct 21, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/check_outdated_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
echo "$outdated"

# Ignore 3rd party dependencies that are not updated.
filtered_outdated=$(echo "$outdated" | grep -vE 'Package|@chakra-ui|lucide-react|@splinetool/runtime|ag-grid-react|framer-motion|react-markdown|remark-math|remark-gfm|rehype-katex|rehype-raw' || true)
filtered_outdated=$(echo "$outdated" | grep -vE 'Package|@chakra-ui|lucide-react|@splinetool/runtime|ag-grid-react|framer-motion|react-markdown|remark-math|remark-gfm|rehype-katex|rehype-raw|remark-unwrap-images' || true)
no_extra=$(echo "$filtered_outdated" | grep -vE '\|\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-' || true)


Expand Down
1,068 changes: 547 additions & 521 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pytest-asyncio = ">=0.24.0"
pytest-cov = ">=4.0.0,<6.0"
ruff = "^0.6.9"
pandas = ">=2.1.1,<3.0"
pillow = ">=10.0.0,<11.0"
pillow = ">=10.0.0,<12.0"
plotly = ">=5.13.0,<6.0"
asynctest = ">=0.13.0,<1.0"
pre-commit = ">=3.2.1"
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/core/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class UploadFilesProvider(Component):
class Upload(MemoizationLeaf):
"""A file upload component."""

library = "[email protected].9"
library = "[email protected].10"

tag = "ReactDropzone"

Expand Down
2 changes: 1 addition & 1 deletion reflex/components/datadisplay/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ class Theme:
class CodeBlock(Component):
"""A code block."""

library = "react-syntax-highlighter@15.5.0"
library = "react-syntax-highlighter@15.6.1"

tag = "PrismAsyncLight"

Expand Down
4 changes: 2 additions & 2 deletions reflex/components/recharts/recharts.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class Recharts(Component):
"""A component that wraps a recharts lib."""

library = "recharts@2.12.7"
library = "recharts@2.13.0"

def render(self) -> Dict:
"""Render the tag.
Expand All @@ -29,7 +29,7 @@ def render(self) -> Dict:
class RechartsCharts(NoSSRComponent, MemoizationLeaf):
"""A component that wraps a recharts lib."""

library = "recharts@2.12.7"
library = "recharts@2.13.0"


LiteralAnimationEasing = Literal["ease", "ease-in", "ease-out", "ease-in-out", "linear"]
Expand Down
6 changes: 3 additions & 3 deletions reflex/constants/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,18 @@ class Commands(SimpleNamespace):
PATH = "package.json"

DEPENDENCIES = {
"@babel/standalone": "7.25.7",
"@babel/standalone": "7.25.8",
"@emotion/react": "11.13.3",
"axios": "1.7.7",
"json5": "2.2.3",
"next": "14.2.14",
"next": "14.2.15",
"next-sitemap": "4.2.3",
"next-themes": "0.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-focus-lock": "2.13.2",
"socket.io-client": "4.8.0",
"universal-cookie": "7.2.0",
"universal-cookie": "7.2.1",
}
DEV_DEPENDENCIES = {
"autoprefixer": "10.4.20",
Expand Down
2 changes: 1 addition & 1 deletion reflex/constants/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Tailwind(SimpleNamespace):
"""Tailwind constants."""

# The Tailwindcss version
VERSION = "[email protected].13"
VERSION = "[email protected].14"
# The Tailwind config.
CONFIG = "tailwind.config.js"
# Default Tailwind content paths
Expand Down
Loading