Overview
Our software development process ensures that all code changes are properly reviewed, tested, and deployed with appropriate security controls and change management.Core Development Practices
1. Code Changes and Review
All code changes follow our formal change management process as documented in the Change Management Procedure. Key requirements:- All changes start with a GitLab Epic or Issue
- Feature branches are created from
develop(orreleasefor hotfixes) - All changes are supported by full implementation plans
- Merge requests require approval from qualified team member
- Merge requests must include completed change impact assessment
2. Secure Development Practices
All developers must follow secure development principles as documented in the Secure Development Policy. Key requirements:- Apply secure-by-design and privacy-by-design principles
- Follow secure coding standards
- Address identified security vulnerabilities within defined SLAs
- Complete annual secure development training
3. Code Review Process
Code reviews are conducted via GitLab merge requests. Review criteria:- Code quality and maintainability
- Security implications (injection attacks, authentication, authorization)
- Test coverage and validation
- Breaking vs non-breaking change classification
- Impact on existing systems and dependencies
- Security scanning is performed automatically via GitLab pipelines
4. Weekly Deployment Approval
Production deployments require weekly go/no-go approval from cross-functional team documented in the#deployment-status Slack channel.
Approval team:
- Tech Leads
- Product Managers
- Test Leads
- Quality standards met
- Performance acceptable
- Security scans passed
- Functionality validated
Emergency Changes (Hotfixes)
Emergency changes follow an expedited process for critical production issues:- Branch from
releasebranch - Test on staging environment
- Deploy to production with same approval requirements
- Merge back to
develop - Required: Post-implementation review within 48 hours documented in GitLab
Related Documentation
- Change Management Procedure
- Secure Development Policy
- Deploy Review Process Guide
- QA and Testing Procedures