mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
* chore(deps): bump axios from 1.13.2 to 1.16.0 in /panel Bumps [axios](https://github.com/axios/axios) from 1.13.2 to 1.16.0. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.13.2...v1.16.0) --- updated-dependencies: - dependency-name: axios dependency-version: 1.16.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * [47c230b6] Finish + harden axios dependency bump (supersedes PR #344) (#355) * [9a0e97fb] Bump axios to ^1.16.0 and verify build/lint/typecheck/test (#349) * [9a0e97fb] chore(panel): regenerate lockfile for axios ^1.16.0 (1.18.1) * [9a0e97fb] docs(changelog): document axios ^1.16.0 bump with new transitive deps --------- Co-authored-by: Frontend Developer 1 <fe-dev-1@roboco.tech> Co-authored-by: Frontend Documenter <fe-doc@roboco.tech> * [2b0d5fe8] docs(api-client): record axios 1.16 compatibility audit finding (#352) Co-authored-by: Frontend Developer 1 <fe-dev-1@roboco.tech> * [36ae2ab0] Remove stray .venv symlink and harden .gitignore (#359) * [36ae2ab0] chore(repo): remove stray .venv symlink and harden .gitignore Removes the tracked .venv symlink at the repository root and drops the trailing slash on the .gitignore .venv entry so the pattern matches a symlink or plain file named .venv, not only a real directory. * [36ae2ab0] chore(repo): untrack the .venv symlink from the branch --------- Co-authored-by: Frontend Developer 1 <fe-dev-1@roboco.tech> --------- Co-authored-by: Frontend Developer 1 <fe-dev-1@roboco.tech> Co-authored-by: Frontend Documenter <fe-doc@roboco.tech> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Frontend Developer 1 <fe-dev-1@roboco.tech> Co-authored-by: Frontend Documenter <fe-doc@roboco.tech>
124 lines
2.0 KiB
Plaintext
124 lines
2.0 KiB
Plaintext
# Claude Code
|
|
.claude/scheduled_tasks.lock
|
|
.claude/agents/*
|
|
.claude/commands/*
|
|
.claude/hooks/*
|
|
.claude/scripts/*
|
|
.claude/skills/*
|
|
|
|
# Superpowers (session-private design + plans)
|
|
docs/superpowers/
|
|
|
|
# Python (anchored to repo root so the names don't shadow legitimate
|
|
# subdirectories like panel/src/lib).
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
/.Python
|
|
/build/
|
|
/develop-eggs/
|
|
/dist/
|
|
/downloads/
|
|
/eggs/
|
|
/.eggs/
|
|
/lib/
|
|
/lib64/
|
|
/parts/
|
|
/sdist/
|
|
/var/
|
|
/wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
.venv
|
|
venv/
|
|
ENV/
|
|
env/
|
|
# Per-workspace uv managed CPython (UV_PYTHON_INSTALL_DIR); lives in clone + worktrees
|
|
.uv-python/
|
|
|
|
# uv
|
|
.uv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# Type checking
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Ruff
|
|
.ruff_cache/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# Alembic
|
|
alembic/versions/*.pyc
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
/data
|
|
/#recycle
|
|
.OLD/
|
|
logos/
|
|
|
|
# Panel (Next.js frontend)
|
|
panel/node_modules/
|
|
panel/.next/
|
|
panel/out/
|
|
panel/coverage/
|
|
# pnpm content-addressable store — a dev once committed the ~115MB store and hit
|
|
# GitHub's 100MB pre-receive limit (GH001), spiralling open_pr into a retry loop.
|
|
# An ignored dir can't be staged by any `git add`, so this is the root fix.
|
|
.pnpm-store/
|
|
panel/tsconfig.tsbuildinfo
|
|
panel/.env.local
|
|
panel/.env.*.local
|
|
|
|
# motion/ (HyperFrames compositions) + video-renderer (its render sidecar)
|
|
motion/node_modules/
|
|
video-renderer/node_modules/
|
|
# hyperframes lint/preview generates index.html in each composition dir —
|
|
# regenerated locally as needed, not tracked (the sidecar renders
|
|
# <orientation>.html directly, never index.html)
|
|
motion/compositions/*/index.html
|
|
# Internal-only: strategy/scratch/reference dumps — never publish
|
|
docs/internal/
|
|
.pnpm-store/
|
|
|
|
# MkDocs build output (published to gh-pages by CI; never committed to master)
|
|
/site/
|
|
.playwright-mcp/
|
|
|
|
# Private per-repo uv cache (see Makefile UV_CACHE_DIR)
|
|
.uv-cache/
|