Skip to content

deps(gateway): Bump express and @types/express in /apps/gateway#6

Closed
dependabot[bot] wants to merge 5 commits intomainfrom
dependabot/npm_and_yarn/apps/gateway/multi-b251156d90
Closed

deps(gateway): Bump express and @types/express in /apps/gateway#6
dependabot[bot] wants to merge 5 commits intomainfrom
dependabot/npm_and_yarn/apps/gateway/multi-b251156d90

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 6, 2026

Bumps express and @types/express. These dependencies needed to be updated together.
Updates express from 4.22.1 to 5.2.1

Release notes

Sourced from express's releases.

v5.2.1

What's Changed

[!IMPORTANT]
The prior release (5.2.0) included an erroneous breaking change related to the extended query parser. There is no actual security vulnerability associated with this behavior (CVE-2024-51999 has been rejected). The change has been fully reverted in this release.

Full Changelog: expressjs/express@v5.2.0...v5.2.1

v5.2.0

Important: Security

What's Changed

... (truncated)

Changelog

Sourced from express's changelog.

5.2.1 / 2025-12-01

  • Revert security fix for CVE-2024-51999 (GHSA-pj86-cfqh-vqx6)
    • The prior release (5.2.0) included an erroneous breaking change related to the extended query parser. There is no actual security vulnerability associated with this behavior (CVE-2024-51999 has been rejected). The change has been fully reverted in this release.

5.2.0 / 2025-12-01

  • Security fix for CVE-2024-51999 (GHSA-pj86-cfqh-vqx6)
  • deps: body-parser@^2.2.1
  • A deprecation warning was added when using res.redirect with undefined arguments, Express now emits a warning to help detect calls that pass undefined as the status or URL and make them easier to fix.

5.1.0 / 2025-03-31

  • Add support for Uint8Array in res.send()
  • Add support for ETag option in res.sendFile()
  • Add support for multiple links with the same rel in res.links()
  • Add funding field to package.json
  • perf: use loop for acceptParams
  • refactor: prefix built-in node module imports
  • deps: remove setprototypeof
  • deps: remove safe-buffer
  • deps: remove utils-merge
  • deps: remove methods
  • deps: remove depd
  • deps: debug@^4.4.0
  • deps: body-parser@^2.2.0
  • deps: router@^2.2.0
  • deps: content-type@^1.0.5
  • deps: finalhandler@^2.1.0
  • deps: qs@^6.14.0
  • deps: server-static@2.2.0
  • deps: type-is@2.0.1

5.0.1 / 2024-10-08

5.0.0 / 2024-09-10

  • remove:
    • path-is-absolute dependency - use path.isAbsolute instead
  • breaking:
    • res.status() accepts only integers, and input must be greater than 99 and less than 1000
      • will throw a RangeError: Invalid status code: ${code}. Status code must be greater than 99 and less than 1000. for inputs outside this range
      • will throw a TypeError: Invalid status code: ${code}. Status code must be an integer. for non integer inputs
    • deps: send@1.0.0

... (truncated)

Commits

Updates @types/express from 4.17.25 to 5.0.6

Commits

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 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)

AP3X-Dev and others added 5 commits January 31, 2026 12:04
Introduces SubagentRegistry for runtime subagent management, enabling users to register, unregister, and configure custom subagents through the UI and API. Includes support for disabling MCP servers in configuration and comprehensive API documentation.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Brings AG3NT to feature parity with Claude Code CLI by implementing:

1. **Edit Tool Documentation** - Comprehensive guide for edit_file usage
   - When to use edit_file vs write_file
   - Best practices for exact string matching
   - Examples and common pitfalls

2. **AskUserQuestion Tool** - Interactive user clarification during execution
   - ask_user() tool for asking questions mid-execution
   - Interrupt mechanism integration
   - Support for multiple choice and open-ended questions
   - Worker API updated to handle question interrupts

3. **Plan Mode** - Structured planning before code execution
   - PlanningMiddleware enforces planning phase
   - Prevents file changes during planning
   - Step-by-step execution with progress tracking
   - Plan confirmation workflow

4. **Git Workflow Automation** - Smart commits and PR creation
   - generate_commit_message() using LLM for conventional commits
   - smart_commit() for auto-generated commit messages
   - create_pull_request() with auto-generated titles/descriptions
   - Comprehensive Git workflow guidance in system prompt

5. **Implementation Plan Document** - CLAUDE_CODE_PARITY.md
   - Detailed feature comparison matrix
   - Phase-by-phase implementation plan
   - Testing strategy and verification steps
   - Critical files reference

New files:
- apps/agent/ag3nt_agent/interactive_tools.py
- apps/agent/ag3nt_agent/planning_middleware.py
- CLAUDE_CODE_PARITY.md

Modified files:
- apps/agent/ag3nt_agent/deepagents_runtime.py
- apps/agent/ag3nt_agent/git_tool.py
- apps/agent/ag3nt_agent/worker.py

This implements P0 (critical path) features from the parity plan.
Remaining P2 features (background tasks, Jupyter support, keybindings)
can be implemented in future updates.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add threading locks and async locks to 8 modules that lacked
synchronization for shared mutable state. Prevents silent data
corruption, lost task updates, and resource leaks when agents run
in parallel.

- SubagentMonitor: threading.Lock on all shared collections
- AgentPool: stats increments moved inside lock, _warming flag protected
- PlanningTools: class lock + atomic file save + singleton lock
- InMemoryStateSync: asyncio.Lock for sessions + threading.Lock for subscribers
- Worker: threading.Lock for WebSocket connection dicts
- memory_search, tool_batcher, skill_trigger_middleware: double-checked locking
- ToolBatcher: stats_lock for cross-thread counter safety
- 29 new concurrency tests proving thread safety
- .gitignore: add coverage.xml, .claude/, nul, test.png

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add all remaining platform components:
- Agent: autonomous engine, tool registry, context engine, exec tools,
  file tracking, LSP, fuzzy edit, batch tools, validation gates,
  model config, streaming, snapshots, revert system
- Gateway: agent proxy, routing, directives, metrics, middleware,
  plugins, state management, session store, streaming
- TUI: app screens, widgets, styles, config, gateway client
- UI: Next.js dashboard (AP3X-UI)
- Community: plugin ecosystem with 100+ integrations
- Docker: compose + Dockerfiles for gateway and agent
- Updated start/stop scripts, daemon, vendor libs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Bumps [express](https://github.com/expressjs/express) and [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express). These dependencies needed to be updated together.

Updates `express` from 4.22.1 to 5.2.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@v4.22.1...v5.2.1)

Updates `@types/express` from 4.17.25 to 5.0.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express)

---
updated-dependencies:
- dependency-name: express
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: "@types/express"
  dependency-version: 5.0.6
  dependency-type: direct:development
  update-type: version-update:semver-major
...

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

dependabot bot commented on behalf of github Feb 6, 2026

Labels

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

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

@AP3X-Dev AP3X-Dev closed this Feb 6, 2026
@AP3X-Dev AP3X-Dev deleted the dependabot/npm_and_yarn/apps/gateway/multi-b251156d90 branch February 6, 2026 18:16
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 6, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

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.

1 participant