Skip to content

chore(deps-dev): Bump vitest from 1.6.1 to 3.2.3 in /memory#5

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/memory/vitest-3.2.3
Closed

chore(deps-dev): Bump vitest from 1.6.1 to 3.2.3 in /memory#5
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/memory/vitest-3.2.3

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Jun 10, 2025

Bumps vitest from 1.6.1 to 3.2.3.

Release notes

Sourced from vitest's releases.

v3.2.3

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.2.2

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.2.1

   🐞 Bug Fixes

    View changes on GitHub

v3.2.0

... (truncated)

Commits
  • b87ee3e chore: release v3.2.3
  • 83862d4 fix: run only the name plugin last, not all config plugins (#8130)
  • dc469f2 fix(runner): comments between fixture destructures (#8127)
  • 1d8ebf9 feat(browser): use base url instead of vitest (#8126)
  • dfe81a6 fix(pool): throw if user's tests use process.send() (#8125)
  • 0f33506 fix: rerun tests when project's setup file is changed (#8097)
  • 7ddcd33 chore: release v3.2.2
  • 33f7120 Revert "fix(browser): optimize build output and always prebundle vitest"
  • 00a3916 fix(browser): optimize build output and always prebundle vitest
  • 142c735 fix(browser): calculate prepare time from createTesters call on the main th...
  • Additional commits viewable in compare view

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) from 1.6.1 to 3.2.3.
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.2.3/packages/vitest)

---
updated-dependencies:
- dependency-name: vitest
  dependency-version: 3.2.3
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Jun 10, 2025

Labels

The following labels could not be found: dependencies, npm. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Jun 10, 2025

The reviewers field in the dependabot.yml file will be removed soon. Please use the code owners file to specify reviewers for Dependabot PRs. For more information, see this blog post.

@dependabot dependabot Bot requested a review from ruvnet June 10, 2025 03:50
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Jun 23, 2025

Superseded by #80.

@dependabot dependabot Bot closed this Jun 23, 2025
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/memory/vitest-3.2.3 branch June 23, 2025 10:49
ElNiak referenced this pull request in ElNiak/claude-code-flow Jul 13, 2025
- Issue #1: Simulated Neural/AI Features (Critical)
- Issue #2: False Performance Metrics (Critical)
- Issue #3: Misleading MCP Tool Count (Critical)
- Issue #4: Enterprise Feature Simulation (Medium)
- Issue #5: Missing AI/ML Dependencies (Medium)
- Issue #6: Documentation vs Reality Gap (Medium)
- Issue #7: Placeholder Resource Monitoring (Low)
- Issue #8: False WASM/SIMD Claims (Low)
- Issue #0: Master Tracking Issue (Coordination)

Comprehensive analysis exposing 70% simulated features with detailed solutions.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
@coygeek coygeek mentioned this pull request Jul 15, 2025
fabcancia added a commit to fabcancia/claude-flow that referenced this pull request Nov 14, 2025
…ates (WS3)

Workstream 3 - Agent Status Tracking (COMPLETE):

Backend Changes:
- Created AgentWorkMonitor service to track agent work completion
- Monitors TodoWrite completion via tasks table
- Detects when agents finish their assigned work
- Updates agent work_status: initializing → working → completed
- Emits WebSocket events for real-time UI updates

ProcessHealthMonitor Enhancements:
- Integrated AgentWorkMonitor into 30-second health check cycle
- Added checkAgentWorkCompletion() method
- Added emitAgentStatusUpdates() for WebSocket events
- Fixed NodeJS.Timeout type to ReturnType<typeof setInterval>

Database Migration (004_agent_work_status.sql):
- Added work_status column (initializing/working/completing/completed/failed)
- Added work_started_at and work_completed_at timestamps
- Added work_output JSONB for structured results
- Created agent_work_events table for detailed event tracking
- Indexes for efficient queries

Migration Runner:
- Auto-applies migrations on startup
- Tracks applied migrations in migrations_history table
- Supports .sql files in /app/migrations directory
- Idempotent (skips already-applied migrations)

Frontend Changes (Agents.tsx):
- Added agent:status_changed WebSocket listener
- Real-time agent list updates when status changes
- React Query cache invalidation on agent updates
- Removed redundant polling (only when WebSocket down)
- Hybrid fallback: Poll only if WebSocket unavailable

WebSocket Server Enhancement:
- Enhanced emitAgentStatusChange() to accept object data
- Backward compatible (supports string status or full object)
- Payload includes: agentId, status, workStatus, workCompletedAt

Files Created:
- backend/src/services/AgentWorkMonitor.ts
- backend/src/database/migrationRunner.ts
- backend/migrations/004_agent_work_status.sql

Files Modified:
- backend/src/services/ProcessHealthMonitor.ts
- backend/src/app.ts (migration runner integration)
- backend/src/websocket/index.ts (enhanced agent status)
- backend/Dockerfile (copy migrations folder)
- web-ui/src/pages/Agents.tsx (WebSocket + hybrid polling)

Fixes Issues:
- ruvnet#4: Agents stuck on "Coordinator initializing..."
- ruvnet#5: ProcessHealthMonitor now tracks work completion
- ruvnet#9: Redundant polling removed (WS6)

Features:
- Agents show real work status (not just process status)
- Work completion detected via TodoWrite and Task tools
- 30-second check cycle for all active sessions
- WebSocket events for instant UI updates
- Hybrid fallback ensures updates even when WebSocket fails

Progress: 55% Complete (12 of 22 tasks done)
Next: WS4 - Task hierarchy with automatic parent detection

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Bolivar1234 added a commit to Bolivar1234/claude-flow-test that referenced this pull request Feb 19, 2026
Sherlock investigation found 8 issues + code review found 2 more (N2, N5).
All 10 fixed with 33 passing tests (22 unit + 11 integration).

Fixes:
- ruvnet#1 getEntry no longer mutates backend entry objects
- ruvnet#2 shutdown() export + process exit handlers for writer lock release
- ruvnet#3 hasEmbedding checks entryIdToVectorId map after META_SEG restart
- ruvnet#4 All 5 CRUD functions guard on ensureBackend() return value
- ruvnet#5 getMemoryFunctions() cached after first resolution
- ruvnet#6 Upsert skips redundant embedding pre-generation
- ruvnet#7 22 unit tests + 11 integration tests (London School TDD)
- ruvnet#8 Namespace filter passed to backend.search() with 3x limit
- N2 Access metadata update errors now logged instead of swallowed
- N5 Init failure retry with 30s cooldown for transient errors

Co-Authored-By: claude-flow <ruv@ruv.net>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants