Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
2202175
refactor(architecture): align with CSR pattern [MODULE-001]
RedaChannaCiscode Feb 2, 2026
0df1e5b
test(auth-service): implement testing infrastructure and AuthService …
RedaChannaCiscode Feb 2, 2026
81fd471
test(auth-controller): add integration tests (WIP - 13/25 passing)
RedaChannaCiscode Feb 2, 2026
eb46daf
test(services): add LoggerService & MailService tests
RedaChannaCiscode Feb 2, 2026
54265c7
test(services): add AdminRoleService & SeedService tests
RedaChannaCiscode Feb 2, 2026
23b8b75
test(services): add UsersService tests - 22 tests, 100% coverage
RedaChannaCiscode Feb 2, 2026
7b6aa69
test(services): add RolesService tests - 18 tests, 100% coverage
RedaChannaCiscode Feb 2, 2026
3f728b2
test(services): add PermissionsService tests - 14 tests, 100% coverage
RedaChannaCiscode Feb 2, 2026
c4bde5e
refactor(oauth): restructure OAuthService into modular architecture
RedaChannaCiscode Feb 2, 2026
af5bfeb
test(oauth): add comprehensive tests for refactored OAuth architecture
RedaChannaCiscode Feb 2, 2026
651952b
test(controllers): add unit tests for 4 controllers (Health, Permissi…
RedaChannaCiscode Feb 2, 2026
79c7a15
test(guards): add unit tests for 3 guards + fix configuration error h…
RedaChannaCiscode Feb 2, 2026
204c9a0
refactor(auth-kit): complete code quality refactoring and test organi…
RedaChannaCiscode Feb 2, 2026
d8d72fd
refactor(module): align architecture to CSR pattern [MODULE-001]
RedaChannaCiscode Feb 4, 2026
e450460
docs: complete API documentation with Swagger and structured error co…
RedaChannaCiscode Feb 4, 2026
671efe4
docs(copilot): update Copilot instructions to align with current arch…
RedaChannaCiscode Feb 4, 2026
9d0e9c7
feat(rbac): implement manual permission query and fix role/permission…
RedaChannaCiscode Feb 5, 2026
5750ade
test(oauth): stabilize FacebookOAuthProvider spec and fix mongoose ch…
RedaChannaCiscode Feb 5, 2026
f1e368b
fix: Rename workflow file - remove space from ci .yml to ci.yml
Zaiidmo Mar 5, 2026
bb34cdf
Merge branch 'develop' of github.com:CISCODE-MA/AuthKit into refactor…
Zaiidmo Mar 5, 2026
5ffa8b6
fix: resolve merge conflicts and dependency issues
Zaiidmo Mar 5, 2026
3783351
chore: updated npm threshhold for branches;
Zaiidmo Mar 5, 2026
1d15dfe
fix: align prettier config and scripts with develop branch
Zaiidmo Mar 5, 2026
f18f35a
chore: cleanup script files and gitignore
Zaiidmo Mar 5, 2026
a73bfb5
fix: add explicit cache-dependency-path to CI workflow
Zaiidmo Mar 5, 2026
cb1c539
ops: added write permission to the prettier step
Zaiidmo Mar 5, 2026
00bb4c8
fix(security): replace hardcoded passwords with constant in RBAC tests
Zaiidmo Mar 5, 2026
64e8f3b
refactor(tests): extract common test utilities to reduce duplication
Zaiidmo Mar 5, 2026
8b6d1b2
fix(security): resolve remaining hardcoded password violations
Zaiidmo Mar 5, 2026
e31bc7a
refactor(tests): consolidate duplicate placeholder tests
Zaiidmo Mar 5, 2026
77102c2
fix(security): eliminate hardcoded passwords using dynamic generation
Zaiidmo Mar 5, 2026
59a3eae
fix(security): eliminate ALL password literals using dynamic constants
Zaiidmo Mar 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changeset/authkit_71368.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@ciscode/authentication-kit": patch
'@ciscode/authentication-kit': patch
---

## Summary
Expand Down
2 changes: 1 addition & 1 deletion .github/codeql/codeql-config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "CodeQL Config for AuthKit"
name: 'CodeQL Config for AuthKit'

# Suppress false positives for Mongoose queries
# Mongoose automatically sanitizes all query parameters
Expand Down
22 changes: 11 additions & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,33 @@ version: 2
updates:
# npm dependencies
- package-ecosystem: npm
directory: "/"
directory: '/'
schedule:
interval: weekly
day: monday
time: "03:00"
time: '03:00'
open-pull-requests-limit: 5
assignees:
- CISCODE-MA/cloud-devops
labels:
- "dependencies"
- "npm"
- 'dependencies'
- 'npm'
commit-message:
prefix: "chore(deps)"
include: "scope"
prefix: 'chore(deps)'
include: 'scope'
rebase-strategy: auto

# GitHub Actions
- package-ecosystem: github-actions
directory: "/"
directory: '/'
schedule:
interval: weekly
day: sunday
time: "03:00"
time: '03:00'
assignees:
- CISCODE-MA/cloud-devops
labels:
- "dependencies"
- "github-actions"
- 'dependencies'
- 'github-actions'
commit-message:
prefix: "ci(deps)"
prefix: 'ci(deps)'
Loading