Dmitry Ng
36ac0c876b
Merge pull request #234 from octo-patch/fix/issue-220-user-defined-provider-precedence
...
fix: user-defined providers take precedence over built-in providers
2026-04-08 04:58:07 +04:00
Dmitry Ng
1a51a7d70a
Merge pull request #237 from vxcontrol/dependabot/npm_and_yarn/frontend/npm_and_yarn-c4bc6a0a9e
...
build(deps-dev): bump vite from 7.2.2 to 7.3.2 in /frontend in the npm_and_yarn group across 1 directory
2026-04-08 04:36:53 +04:00
Dmitry Ng
fc91758b9c
Merge pull request #238 from vxcontrol/feature/frontend
...
Add Analytics Dashboard and Template Management System
2026-04-08 04:36:05 +04:00
Dmitry Ng
089dcb36b4
feat: implement flow templates management
2026-04-08 03:34:32 +03:00
Dmitry Ng
445f131430
chore: remove unused frontend Dockerfile, entrypoint script, and Nginx configuration files
2026-04-08 00:54:35 +03:00
Dmitry Ng
51cb312b57
Merge pull request #230 from mason5052/test/server-models-validation
...
test: add unit tests for key server/models validation types
2026-04-08 01:20:43 +04:00
Dmitry Ng
9f882276a2
Merge pull request #232 from vxcontrol/dependabot/go_modules/backend/go_modules-a978bc362c
...
build(deps): bump github.com/go-jose/go-jose/v4 from 4.1.3 to 4.1.4 in /backend in the go_modules group across 1 directory
2026-04-08 01:15:36 +04:00
Sergey Kozyrenko
fe9ba1a89e
feat: update terminal
2026-04-07 23:14:34 +07:00
mason5052
1b2681cd99
test: shadow loop variable to prevent parallel subtest capture
...
Add tt := tt inside each for-range loop before t.Run to ensure
parallel subtests capture their own immutable copy of the test case.
2026-04-06 19:15:29 -04:00
dependabot[bot]
04a054431e
build(deps-dev): bump vite
...
Bumps the npm_and_yarn group with 1 update in the /frontend directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ).
Updates `vite` from 7.2.2 to 7.3.2
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v7.3.2/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.3.2/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.3.2
dependency-type: direct:development
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-06 20:24:41 +00:00
Octopus
a12ffe9c01
fix: user-defined providers take precedence over built-in providers ( fixes #220 )
2026-04-05 09:44:53 +08:00
dependabot[bot]
17a76e46e2
build(deps): bump github.com/go-jose/go-jose/v4
...
Bumps the go_modules group with 1 update in the /backend directory: [github.com/go-jose/go-jose/v4](https://github.com/go-jose/go-jose ).
Updates `github.com/go-jose/go-jose/v4` from 4.1.3 to 4.1.4
- [Release notes](https://github.com/go-jose/go-jose/releases )
- [Commits](https://github.com/go-jose/go-jose/compare/v4.1.3...v4.1.4 )
---
updated-dependencies:
- dependency-name: github.com/go-jose/go-jose/v4
dependency-version: 4.1.4
dependency-type: indirect
dependency-group: go_modules
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-03 04:22:29 +00:00
Dmitry Ng
d56952653f
Merge pull request #231 from mason5052/test/schema-validation
...
test: add unit tests for schema package JSON Schema validation
2026-04-02 11:08:46 +04:00
Sergey Kozyrenko
53ea23e49e
feat: dashboard
2026-04-02 00:17:30 +07:00
mason5052
8ddc25f411
test: add failure-path coverage for schema validation
...
Add missing negative-path tests:
- Schema.Valid() with invalid $ref that fails compilation
- GetValidator() with same invalid schema returns error
- ValidateBytes() with malformed JSON input returns error
2026-03-31 21:54:51 -04:00
mason5052
62dbefdd25
test: fill coverage gaps in server/models validation tests
...
Add missing test coverage identified by cross-review:
New files:
- assistants_test.go: AssistantStatus enum, Assistant struct, CreateAssistant,
PatchAssistant (stop/input actions), AssistantFlow nested validation
- prompts_test.go: PromptType enum (8 valid constants from templates pkg),
Prompt struct, PatchPrompt validation
Extended existing files:
- users_test.go: add AuthCallback positive-path test, UserRolePrivileges
validation, fix brittle double-call assertion in UserPreferences test
- api_tokens_test.go: add APITokenWithSecret validation (valid, invalid
embedded token, invalid JWT)
- flows_test.go: add Flow.Valid, FlowTasksSubtasks.Valid,
FlowContainers.Valid, Task.Valid, TaskSubtasks.Valid, Subtask.Valid,
Container.Valid with valid/invalid/missing-field cases
2026-03-31 21:53:39 -04:00
mason5052
cc0260b205
test: add unit tests for schema package JSON Schema validation
...
Add comprehensive test coverage for the schema package including
Schema validation, JSON Schema Draft 7 compilation, document validation,
database serialization, and custom Type marshaling.
Tests cover:
- Schema.Valid() with various schema types (string, object, array, etc.)
- Schema.GetValidator() compilation
- Schema.ValidateString/ValidateBytes/ValidateGo with valid and invalid docs
- Schema.Value()/Scan() database serialization round-trip
- Type.MarshalJSON() including object auto-properties and ExtProps
- Type.UnmarshalJSON() including ExtProps extraction
- Pattern, enum, and array constraint validation
- scanFromJSON helper with string, bytes, and error cases
2026-03-31 20:37:16 -04:00
mason5052
5d4638e79d
test: add unit tests for server/models validation functions
...
Add comprehensive test coverage for the server/models package validation
logic including enum types, struct validators, and custom validators.
Test files added:
- users_test.go: UserStatus, UserType, Login, Password, User,
UserPassword, AuthCallback, UserRole, UserPreferences validation
- providers_test.go: ProviderType, Provider, CreateProvider,
PatchProvider, ProviderInfo validation
- api_tokens_test.go: TokenStatus, APIToken, CreateAPITokenRequest,
UpdateAPITokenRequest, APITokenClaims validation
- flows_test.go: FlowStatus, TaskStatus, SubtaskStatus, ContainerStatus,
ContainerType, Role, Privilege, RolePrivileges, PatchFlow validation
- init_test.go: Custom validators (stpass, vmail, oauth_min_scope,
solid, semver, semverex) and scanFromJSON helper
2026-03-31 20:36:51 -04:00
Dmitry Ng
e8d49de9af
Merge pull request #228 from vxcontrol/dependabot/npm_and_yarn/frontend/npm_and_yarn-127d3e4132
...
Bump the npm_and_yarn group across 1 directory with 4 updates
2026-03-29 22:02:51 +04:00
+7
790da20c13
docs: add CONTRIBUTORS.md to acknowledge all project contributors
...
This document recognizes all individuals who contributed to PentAGI
during its development from January 2025 to March 2026.
Co-authored-by: mason5052 <ehehwnwjs5052@gmail.com >
Co-authored-by: niuqun2003 <niuqun2003@gmail.com >
Co-authored-by: Priyanka Singh <priyankasingh15102004@gmail.com >
Co-authored-by: Alex-wuhu <yanglongwei06@gmail.com >
Co-authored-by: liri-ha <258306986+liri-ha@users.noreply.github.com >
Co-authored-by: manusjs <manusjs@users.noreply.github.com >
Co-authored-by: stoykovstoyk <stoykov.stoyk@gmail.com >
Co-authored-by: Kai Kreuzer <kai@openhab.org >
Co-authored-by: Mriganka Dey <mriganka.dey@joulestowatts.com >
Co-authored-by: Salman Muin Kayser Chishti <13schishti@gmail.com >
Co-authored-by: Vaibhavee Singh <vaibhaveesingh89@gmail.com >
Co-authored-by: Peter Dave Hello <hsu@peterdavehello.org >
Co-authored-by: S.B <30941141+s-b-repo@users.noreply.github.com >
Co-authored-by: SkyFlyingMouse <248163859+SkyFlyingMouse@users.noreply.github.com >
Co-authored-by: haosenwang1018 <167664334+haosenwang1018@users.noreply.github.com >
Co-authored-by: Tony Xu <hhktony@gmail.com >
2026-03-29 20:46:55 +03:00
Dmitry Ng
600419bed3
feat: add license compliance documentation and reporting tools
...
- Introduce CONTRIBUTING.md for license compliance guidelines for developers.
- Update Dockerfile to generate license reports for frontend and backend dependencies.
- Add scripts for generating license reports and include them in the Docker build process.
- Create README.md and .gitignore files in the licenses directory for better organization.
- Update go.mod and go.sum to use the latest versions of vxcontrol dependencies.
This enhances the project's compliance with licensing requirements and improves dependency management.
2026-03-29 18:48:06 +03:00
Dmitry Ng
c8cd0e68f9
feat: add Docker host network mode support and improve agent terminal execution
...
- Add host network mode support in Docker client (DOCKER_NETWORK=host)
- Update documentation for network modes (bridge vs host)
- Enhance OOB port allocation guidance with mandatory directives
- Improve terminal command execution descriptions (detach, timeout)
- Fix MSF workflow issues: add process isolation rules and RPC daemon patterns
- Add terminal execution mechanics to adviser prompts for better monitoring
- Update installer locale with host network mode explanation
Fixes agent issues with msfconsole hanging, port conflicts, and process isolation.
2026-03-29 15:53:30 +03:00
dependabot[bot]
1b9a6f4824
Bump the npm_and_yarn group across 1 directory with 4 updates
...
Bumps the npm_and_yarn group with 4 updates in the /frontend directory: [picomatch](https://github.com/micromatch/picomatch ), [yaml](https://github.com/eemeli/yaml ), [flatted](https://github.com/WebReflection/flatted ) and [jspdf](https://github.com/parallax/jsPDF ).
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `picomatch` from 4.0.3 to 4.0.4
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
Updates `yaml` from 2.8.1 to 2.8.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
Updates `flatted` from 3.3.3 to 3.4.2
- [Commits](https://github.com/WebReflection/flatted/compare/v3.3.3...v3.4.2 )
Updates `jspdf` from 4.2.0 to 4.2.1
- [Release notes](https://github.com/parallax/jsPDF/releases )
- [Changelog](https://github.com/parallax/jsPDF/blob/master/RELEASE.md )
- [Commits](https://github.com/parallax/jsPDF/compare/v4.2.0...v4.2.1 )
---
updated-dependencies:
- dependency-name: picomatch
dependency-version: 2.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 4.0.4
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 1.10.3
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 2.8.3
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: flatted
dependency-version: 3.4.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: jspdf
dependency-version: 4.2.1
dependency-type: indirect
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-29 12:26:02 +00:00
Dmitry Ng
b90ea4711e
repo final state
v0.1.0
v0.2.0
v0.3.0
v1.0.0
v1.0.1
v1.1.0
v1.2.0
2026-03-26 06:16:07 +03:00