Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
919838e
feat: update cachemanage and cachereposiotry implementations to async.
Jun 27, 2025
0cd7449
[CodeFactor] Apply fixes to commit 919838e
code-factor Jun 27, 2025
dcd584f
Merge branch 'main' into feature/cacheasync
HarryKambo Jun 27, 2025
60f982f
Feat: updated test cases and fixed minor changes.
Jun 30, 2025
8aeb939
Merge branch 'feature/cacheasync' of https://github.com/HarryKambo/Cr…
Jun 30, 2025
8394e7c
[CodeFactor] Apply fixes
code-factor Jun 30, 2025
ba637b8
Merge branch 'main' into feature/cacheasync
guibranco Jul 13, 2025
82cfc19
Merge branch 'main' into feature/cacheasync
guibranco Jul 15, 2025
3af3711
Merge branch 'main' into feature/cacheasync
guibranco Jul 29, 2025
42f526d
Merge branch 'main' into feature/cacheasync
guibranco Aug 8, 2025
c88c0d6
Merge branch 'main' into feature/cacheasync
guibranco Dec 4, 2025
225923e
Merge branch 'main' into feature/cacheasync
guibranco Apr 21, 2026
e91f3cb
Merge branch 'main' into feature/cacheasync
guibranco May 19, 2026
6f5e4e1
Merge branch 'main' into feature/cacheasync
guibranco May 19, 2026
79374c7
Merge branch 'main' into feature/cacheasync
guibranco May 19, 2026
2480e5f
Merge branch 'main' into feature/cacheasync
guibranco May 23, 2026
82b2f44
Merge branch 'main' into feature/cacheasync
guibranco May 23, 2026
49a037a
Merge branch 'main' into feature/cacheasync
guibranco Jul 2, 2026
7036712
Merge branch 'main' into feature/cacheasync
guibranco Jul 4, 2026
e5d61cc
refactor: switch to TryGetAsync for cache retrieval
guibranco Jul 4, 2026
2fe1340
Format files
guibranco Jul 4, 2026
69f06e9
refactor: implement SafeWriteLine to handle test output safely
guibranco Jul 4, 2026
2ebad8a
fix: restrict actions to main repo for external PRs
guibranco Jul 4, 2026
62f1260
refactor: replace async delay with thread sleep in tests
guibranco Jul 4, 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
5 changes: 3 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
"isRoot": true,
"tools": {
"csharpier": {
"version": "1.2.6",
"version": "1.3.0",
"commands": [
"csharpier"
]
],
"rollForward": false
}
}
}
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
dotnet-version: '10.0.x'

- name: 🔧 Install SonarCloud scanner
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
run: dotnet tool install --global dotnet-sonarscanner

- name: 📡 Install DeepSource scanner
Expand All @@ -66,6 +67,7 @@ jobs:
run: dotnet restore

- name: 🔍 Begin SonarCloud analysis
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
run: |
dotnet sonarscanner begin \
/k:"guibranco_CrispyWaffle" \
Expand All @@ -89,12 +91,14 @@ jobs:
/p:CoverletOutputFormat=opencover%2ccobertura

- name: 📊 End SonarCloud analysis
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
run: dotnet sonarscanner end /d:sonar.token="$SONAR_TOKEN"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

- name: ☂️ Upload coverage to Codecov
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
"sonarlint.connectedMode.project": {
"connectionId": "guibranco",
"projectKey": "guibranco_CrispyWaffle"
}
},
"snyk.advanced.autoSelectOrganization": true
}
437 changes: 344 additions & 93 deletions Src/CrispyWaffle.CouchDB/Cache/CouchDBCacheRepository.cs

Large diffs are not rendered by default.

Loading
Loading