Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9db6d14
feat(CB2-10573): Implement AWS AppConfig Feature Flagging (#151)
me-matt Apr 18, 2024
c1b3e5c
CB2-11004: AWS SDK v2 to v3 (#156)
Ruairidh-BJSS Apr 19, 2024
6c092d1
chore(cb2-11004): fix linting (#163)
Ruairidh-BJSS Apr 19, 2024
aac8b1e
CB2-9315: Generate Welsh Cert HGV PRS (#158)
cb-cs Apr 30, 2024
2dd9863
CB2-9317: Generate welsh TRL PRS certificate (#157)
Daniel-Searle May 1, 2024
0391f8c
CB2-9316: PSV PRS Bilingual Certificate (#165)
Daniel-Searle May 7, 2024
d6ece05
feat(cb2-12097): add logs for debug (#167)
May 23, 2024
59168d9
feat(cb2-11895): removed obsolete logic and updated existing test-sta…
cb-cs May 28, 2024
fb4f7c1
feat(cb2-12417): added case logic, corrected and updated tests (#173)
cb-cs May 31, 2024
3a56bd2
(CB2-12233): Certificate Signature Blank (#174)
Daniel-Searle Jun 3, 2024
abae4f1
feat(cb2-12591): update cert-gen to use new feature-flags package (#177)
Jun 18, 2024
0635a88
feat(cb2-12614): required standards section sorting (#178)
kcarr-bjss Jun 21, 2024
0417e7b
ature(CB2-12602): added reapplcation date (#179)
Daniel-Searle Jun 25, 2024
2ac2b7d
feature/cb2-12318: Fix sonar scanner (#184)
me-matt Sep 26, 2024
9e5c900
feature/cb2-12310: Update linting (#182)
me-matt Sep 26, 2024
b384760
feature/cb2-12314: Update dependency injection (#185)
me-matt Sep 26, 2024
089ebfd
added missing reflection to entrypoint (#190)
me-matt Sep 27, 2024
2e417ba
feature/cb2-12323: Fix the local development with serverless (#183)
me-matt Sep 30, 2024
bd45d1b
feature/cb2-12312: Refactor into repositories (#186)
me-matt Sep 30, 2024
3dbac3d
CB2-14227: Update cert-gen to remove snowball SQS pattern (#191)
me-matt Oct 1, 2024
543c67f
fixed the config injection for s3 (#192)
me-matt Oct 4, 2024
0788939
feature/cb2-12317: Refactor into services (#187)
me-matt Oct 7, 2024
c1bd7ae
feat(cb2-*): add in missing error log in catch block (#194)
Oct 9, 2024
bbea5eb
feature/CB2-12313: Refactor certificate generation into commands (#193)
me-matt Oct 11, 2024
76a4635
feat(CB2-14255): Error being thrown in cert-gen when TRL make is null…
Daniel-Searle Oct 18, 2024
87449da
feat(cb2-12692): Implement Types Definition into cert-gen (#197)
cb-cs Nov 18, 2024
d8ba22a
feat(cb2-14701): add in recalls object to MOT pass/fails (#199)
Dec 3, 2024
701dc3a
feat(cb2-14815): bundled code, added decorators (#203)
cb-cs Dec 5, 2024
e854cbe
feat(CB2-15040): types definition version bump (#201)
m-mullen Dec 6, 2024
6a3087e
feat(cb2-12580): add cert-gen-init logic and types refactor (#202)
Dec 11, 2024
5dae3c9
feat(cb2-15350): VTG/VTP12 can be generated from abandoned tests (#205)
cb-cs Dec 17, 2024
796cc59
fix(cb2-13841): add in query string param hardcoded to 2019 for test …
Jan 8, 2025
1f0093e
feat(cb2-15586): remove test type ids for VTG and VTP12 generation (#…
m-coslett Jan 8, 2025
a960e47
feat(cb2-15689): refactored abandoned logic and caching (#209)
cb-cs Jan 8, 2025
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
5 changes: 5 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
version: v1.5.0
ignore:
'SNYK-JS-RAILROADDIAGRAMS-6282875':
- '* > railroad-diagrams':
reason: 'No fix available - file with vulnerability not used'
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug NPM Script",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"start:debug"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": ["<node_internals>/**"]
}
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
{
"testing.openTesting": "neverOpen",
"search.exclude": {
"**/node_modules": false
}
}
25 changes: 25 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"extends": ["@dvsa/biome-config/biome"],
"linter": {
"rules": {
"suspicious": {
"noExplicitAny": "off"
},
"complexity": {
"noForEach": "off",
"noUselessCatch": "off",
"noThisInStatic": "off"
},
"correctness": {
"noSwitchDeclarations": "off"
},
"style": {
"noUnusedTemplateLiteral": "off",
"noNonNullAssertion": "off",
"noUselessElse": "off",
"useTemplate": "off",
"useNodejsImportProtocol": "off"
}
}
}
}
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,9 @@ services:
ports:
- "7000:7000" # s3 server
- "9991:9991" # data store
sqs:
container_name: sqs
image: softwaremill/elasticmq
ports:
- "9324:9324"
- "9325:9325"
Loading