Skip to content
Merged
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
4ef686f
fix: remove incorrect default query from repos page (that is ignored …
kriswest Mar 21, 2025
232c466
fix: passthrough repository queries
kriswest Mar 25, 2025
ab362e4
test: use unique emails for users in tests and remove afterwards
kriswest Apr 1, 2025
2e3282d
Merge remote-tracking branch 'upstream/main' into 947-repository-list…
kriswest Apr 11, 2025
12e7bfe
test: don't clean-up test-repo as cypress tests rely on it
kriswest Apr 11, 2025
200788c
fix: add indexes, compaction and consistent lowercasing of inputs in …
kriswest Mar 25, 2025
9769be6
fix: consistent lowercasing of inputs in mongoDB implementation
kriswest Mar 25, 2025
188d820
fix: make repo name index non-unique (currently assumed unique but wo…
kriswest Mar 25, 2025
f38c266
test: use unique emails for users in tests and remove afterwards
kriswest Apr 1, 2025
4632e86
fix: add indexes, compaction and consistent lowercasing of inputs in …
kriswest Mar 25, 2025
40a83b5
chore: porting changes from users.js
kriswest Apr 8, 2025
6f08207
fix: bad merge
kriswest Apr 10, 2025
092ec13
test: don't clean-up test-repo as cypress tests rely on it
kriswest Apr 11, 2025
08a6c82
fix: add indexes, compaction and consistent lowercasing of inputs in …
kriswest Mar 25, 2025
1966088
test: use unique emails for users in tests and remove afterwards
kriswest Apr 1, 2025
8463c71
fix: add indexes, compaction and consistent lowercasing of inputs in …
kriswest Mar 25, 2025
fa5f270
fix: consistent lowercasing of inputs in mongoDB implementation
kriswest Mar 25, 2025
4abbe28
chore: porting changes from users.js
kriswest Apr 8, 2025
8a73e5a
fix: bad merge
kriswest Apr 10, 2025
7aaf03c
test: don't clean-up test-repo as cypress tests rely on it
kriswest Apr 11, 2025
5db446b
Merge branch '947-repository-listing-fixes' into 948-neDB-implementat…
kriswest Apr 11, 2025
008e4fa
test: basic db test coverage
kriswest Apr 15, 2025
fa234f8
fix: clean-up DB after CLI tests
kriswest Apr 11, 2025
b67a81c
Merge branch '948-neDB-implementation-issues' of https://natwest.gitl…
kriswest Apr 15, 2025
734fc30
test: more DB test coverage
kriswest Apr 15, 2025
4ff22a3
test: more code coverage in DB and service/routes/repo
kriswest Apr 16, 2025
520a9bc
Merge branch 'main' into 948-neDB-implementation-issues
kriswest Apr 16, 2025
79a30ba
Merge remote-tracking branch 'upstream/948-neDB-implementation-issues…
kriswest Apr 16, 2025
fe64a91
test: more DB test coverage
kriswest Apr 17, 2025
ec4516a
Merge branch 'main' into 948-neDB-implementation-issues
JamieSlome May 6, 2025
ddcc149
Merge branch 'main' into 948-neDB-implementation-issues
kriswest May 7, 2025
b5cd038
chore: extended prettier format command to package/git-proxy-cli and …
kriswest May 7, 2025
12f20c9
Merge branch 'main' into 948-neDB-implementation-issues
kriswest May 19, 2025
c49ae45
Merge branch 'main' into 948-neDB-implementation-issues
JamieSlome May 20, 2025
b434e43
Merge branch 'main' into 948-neDB-implementation-issues
kriswest May 28, 2025
fe3b5a0
Merge branch 'main' into 948-neDB-implementation-issues
kriswest May 30, 2025
37f1684
Merge remote-tracking branch 'github/948-neDB-implementation-issues' …
kriswest May 30, 2025
13aa96e
Merge branch 'main' into 948-neDB-implementation-issues
kriswest Jun 3, 2025
b10763f
Merge branch 'main' into 948-neDB-implementation-issues
JamieSlome Jun 4, 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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"prepare": "node ./scripts/prepare.js",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\" \"test/**/*.{js,jsx,ts,tsx,json}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx,json}\" \"test/**/*.{js,jsx,ts,tsx,json}\"",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,css,md,json,scss} test/**/*.{js,jsx,ts,tsx,json} --config ./.prettierrc",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,css,md,json,scss} test/**/*.{js,jsx,ts,tsx,json} packages/git-proxy-cli/test/**/*.{js,jsx,ts,tsx,json} packages/git-proxy-cli/index.js --config ./.prettierrc",
"gen-schema-doc": "node ./scripts/doc-schema.js",
"cypress:run": "cypress run"
},
Expand Down
7 changes: 3 additions & 4 deletions packages/git-proxy-cli/test/testCli.proxy.config.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"tempPassword": {
"sendEmail": false,
"emailConfig": {
}
"emailConfig": {}
},
"authorisedList": [
{
Expand All @@ -22,9 +21,9 @@
{
"type": "mongo",
"connectionString": "mongodb://localhost:27017/gitproxy",
"options": {
"options": {
"useUnifiedTopology": true
},
},
"enabled": false
}
],
Expand Down
Loading
Loading