chore(deps): bump fast-xml-parser from 5.3.4 to 5.3.7 - #91
Closed
dependabot[bot] wants to merge 425 commits into
Closed
chore(deps): bump fast-xml-parser from 5.3.4 to 5.3.7#91dependabot[bot] wants to merge 425 commits into
dependabot[bot] wants to merge 425 commits into
Conversation
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Co-Authored-By: G <butaeff@gmail.com>
Removed dead code: - lib/rag/ folder (149 lines, never imported - demo/chat has inline impl) - lib/schemas/search.ts (10 lines, never used) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Removed dead code that was never imported: - hooks/useDemoMode.ts (101 lines) - data/conversation.ts (28 lines) - types/index.ts (44 lines) - utils/constants.ts (34 lines) - utils/navigation.ts (22 lines) - utils/validation.ts (8 lines) Total: 237 lines removed Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Removed orphaned files: - app/bots/medical-expert/types/index.ts (92 lines, never imported) - app/bots/product-manager/metadata.ts (18 lines, never used) Restored utils needed by swiss-german-teacher components: - utils/constants.ts (used by EmailGenerator, TextGenerator, SwissContentSection) - utils/navigation.ts (used by EmailGenerator) Note: Previous commit incorrectly removed these as orphaned. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Previously, createClientComponentClient() was called at module load time, causing the app to crash when Supabase environment variables weren't configured. This prevented pages from rendering even when they didn't need authentication. Changes: - Made Supabase client lazy-loaded via getSupabaseClient() function - Check isSupabaseConfigured() before creating the client - Return early from useEffect if Supabase is not configured - Added optional chaining for all Supabase method calls Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Replace individual static bot pages with a single dynamic [slug]/page.tsx that renders from centralized configuration. This makes adding new bots a matter of editing config files only - no new page files needed. Architecture changes: - Add lib/config/bot-pages.ts as SSOT for all bot page content - Add components/shared/sections/ with generic section components - Add app/bots/[slug]/page.tsx as single dynamic page - Remove 100+ files from individual bot directories New section components: - DisclaimerSection, FeaturesSection, HowItWorksSection - BenefitsSection, TestimonialsSection, VisionSection - TechnologySection, CTASection, DemoSectionWrapper To add a new bot now: 1. Add entry to lib/config/bot-pages.ts (sections + content) 2. Add hero config to data/botHeroConfigs.ts 3. Add demo config to lib/demo/botDemoConfigs.ts 4. Add basic info to data/bots.ts Done - no new page.tsx files needed! Files deleted: ~100+ (bot-specific pages/components) Files added: 11 (config + generic sections) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
The artistic-advisor page was missing its hero section because the hero configuration was not defined in botHeroConfigs.ts. This adds the complete hero config including title, badge, chat preview, and key benefits. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Reduces files needed to add a new bot from 7-8 to 3-4 by eliminating hardcoded bot lists in multiple locations: - Add `display` field to Bot interface for bots list page metadata - Footer.tsx: Generate AI Assistants links from bots array - app/bots/page.tsx: Remove 100-line botDetails Record, derive from bot.display - menuItems.ts: Generate Professionals menu children from bots array Adding a new bot now automatically updates the footer, navigation menu, and bots list page without any additional code changes. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add model visibility and switching UI for AI professionals: - ModelIndicator: shows current model with icon in chat header - ModelSelector: dropdown to switch models (auth-gated for guests) - PrivacyTierInfo: expandable Cloud vs Self-Hosted comparison - ChatAuthCTA: dismissible guest conversion banner Config files (SSOT): - privacy-tiers.ts: tier definitions, model display config - auth-cta.ts: CTA content for guest/authenticated users Also increases quick-chat maxTokens from 256 to 1024 to prevent response cutoff. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Port features from legacy codebase: - Add DocumentCategory type with 7 categories (legal, health, research, etc.) - Add PROFESSIONAL_DOCUMENT_ACCESS mapping for category-based access - Add CategoryBadge and CategorySelector components - Add professional-chat API with document context integration - Add ErrorBoundary component for error handling - Add professionals layout with metadata - Add useRateLimitCountdown hook Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add comprehensive prompt sanitization to prevent LLM prompt injection: - Create lib/prompt-sanitizer.ts with detection and filtering - Detect injection patterns (instruction overrides, role manipulation, jailbreaks) - Escape delimiter sequences that could break prompt structure - Wrap user-provided context in XML-like tags with data-not-instructions note - Apply sanitization to all 4 chat API routes: - /api/quick-chat - /api/professional-chat - /api/demo/chat - /api/demo/document-chat Security measures: - Length limits on all user inputs - Injection pattern detection with filtering - Control character removal - Clear separation between instructions and user data Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add Cache-Control header support to API response utilities: - NONE: no-store for mutations and sensitive data - PRIVATE_SHORT: 1 minute for user-specific data - PRIVATE_MEDIUM: 5 minutes for less frequent user data - PUBLIC_SHORT: 5 minutes for public data - PUBLIC_MEDIUM: 1 hour for semi-static data - IMMUTABLE: 1 day for truly static data Apply caching to key routes: - GET /api/settings: private, 1 min cache - GET /api/health: public, 5 min cache - GET /api/documents: private, 1 min cache - GET /api/stats: private, 1 min cache - GET /api/conversations: private, 1 min cache - All mutations (POST/PUT/DELETE): no-store - All errors: no-store (automatic) Expected impact: 2-3x reduction in database queries for repeated requests within cache window. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Security fixes: - Add npm override for fast-xml-parser@^5.3.4 to fix RangeError DoS - Update @aws-sdk/client-ses to 3.980.0 - Reduces vulnerabilities from 25 to 8 (fixed 17 high severity) Code improvements (prep for future Next.js 15): - Replace <a> tags with <Link> components for internal navigation - Create ConsultationFormLoader client wrapper for dynamic imports - Use direct Analytics import instead of dynamic with ssr:false - Add eslint-disable for global-error.tsx (intentional <a> usage) Remaining vulnerabilities (require breaking changes): - 7 moderate: eslint circular reference stack overflow - 1 high: Next.js DoS (specific conditions, low practical risk) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
TextEncoder/TextDecoder are globally available in modern Node.js. Fixes build failure due to strict unused directive check. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Fix dynamic Tailwind classes in ProfessionalDemo.tsx that were purged at build time by replacing string interpolation with static lookups - Deduplicate LLM config by importing GROQ/OpenRouter constants from API_CONFIG instead of defining them locally in llm-client.ts - Remove duplicate input type interfaces from types/ that duplicated Zod-inferred types in lib/validations/, re-export from SSOT - Extract shared navigation config (AUTH_NAV_ITEMS) and icon components used by both AuthNav and MobileNav into lib/config/navigation.ts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- APIKeyInput: add focusRing field to ProviderColorClasses, replace
focus:${colors.ring} with static ${colors.focusRing} lookup
- ProfessionalCard: add groupHoverText field to accent color classes,
replace group-hover:${colors.text} with static ${colors.groupHoverText}
- Zero dynamic Tailwind interpolations remain in the codebase
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Archive 10 stale/completed docs to docs/archive/ (MongoDB-era, migration plans, stale status snapshots, AGENTS.md.new) - Rewrite SHARED_CONTEXT.md: remove MongoDB sections, update env vars table to Supabase, fix project structure to match reality, fix data flow diagrams - Fix "January 2025" typo → "January 2026" across 6 doc files - Update governance demo dates from 2023 to 2026 - Fix "launching 2025" → "launching 2026" in techno-capital - Update bot roadmap timelines and expected launch dates - Fix demo chat bot status from "coming soon" to "demo available" - Add missing OPENROUTER_API_KEY to .env.example - Fix stale path in RALPH.md (src/lib/schemas/ → lib/validations/) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Remove duplicate ApiResponse, apiSuccess, apiError, withErrorHandling, requireAuth, ERROR_MESSAGES from lib/api-utils.ts — only verifyUser was actually imported anywhere. Response utils SSOT is lib/api/responses.ts - Archive 14 historical LEX-era design docs to docs/archive/ — docs/ now has only 9 active reference files (down from 29) - Remove mock data and placeholder images from Amazon/Ricardo platform integrations — functions return [] until real APIs are implemented - Update platform tests to match actual behavior - Fix README.md: update backend tech (Groq/OpenRouter), add Supabase to prerequisites Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 5.3.4 to 5.3.7. - [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases) - [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md) - [Commits](NaturalIntelligence/fast-xml-parser@v5.3.4...v5.3.7) --- updated-dependencies: - dependency-name: fast-xml-parser dependency-version: 5.3.7 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Collaborator
|
Closing stale automated PR — cleaning up repo. |
Contributor
Author
|
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
dependabot
Bot
deleted the
dependabot/npm_and_yarn/fast-xml-parser-5.3.7
branch
February 26, 2026 07:21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps fast-xml-parser from 5.3.4 to 5.3.7.
Release notes
Sourced from fast-xml-parser's releases.
Changelog
Sourced from fast-xml-parser's changelog.
... (truncated)
Commits
fc97a55update relese infob9aef04UnexportX2jOptionsat declaration site (#787)c20fbd6remove unused codeecb2ca1update release info910dae5fix entities performance & security issuesfe9a852update strnum and release detail943ef0efix: Escape regex char in entity nameddcd0acEscape regex char in entity name341b582Add missing exports to fxp commonjs types (#782)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.