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
7c59b86
Add project-update spec: requirements, design, and tasks
Apr 17, 2026
f87fe16
add steering files
Apr 17, 2026
5ad55e3
Add unit and property-based test suite
Apr 17, 2026
13b11d5
Upgrade NuGet packages and replace Swashbuckle with Scalar
Apr 17, 2026
1ee0091
Rewrite documentation and remove screenshots
Apr 17, 2026
0bccaae
Rewrite .http file with all endpoints and comments
Apr 17, 2026
15ad219
Mark all spec tasks as completed
Apr 17, 2026
1c85c07
Add bugfix spec for .NET 10 upgrade, Swagger revert, solution folder,…
Apr 17, 2026
edc422e
fix: upgrade to .NET 10, restore Swashbuckle, add Tests solution fold…
Apr 17, 2026
730e126
refactor: add endpoint descriptions, remove deprecated WithOpenApi calls
Apr 18, 2026
f46a995
docs: add marketplace-enrich-and-inbox feature spec (requirements, de…
Apr 18, 2026
9b3f1ec
chore: remove unused using statements
Apr 18, 2026
1525d4a
feat: enrich ProductEntity with catalog properties (name, price, sku,…
Apr 18, 2026
a33dddd
feat: enrich OrderEntity with marketplace properties, OrderStatus enu…
Apr 18, 2026
73220b0
feat: add InboxMessageEntity and persistence configuration for Transa…
Apr 18, 2026
54c074a
feat: update seed data with realistic marketplace products and orders
Apr 18, 2026
07243eb
feat: implement InboxMessageProcessorJob with Quartz scheduling and u…
Apr 18, 2026
7f06eaf
feat: add API endpoints (cancel order, get product, inbox receive) wi…
Apr 18, 2026
4d1c2f4
docs: update README and docs for marketplace Orders microservice with…
Apr 18, 2026
b4657b5
chore: mark all marketplace-enrich-and-inbox spec tasks as completed
Apr 18, 2026
05d85bd
chore: downgrade MediatR to 12.5.0 (last free Apache-2.0 version)
Apr 20, 2026
0e3db59
ci: add GitHub Actions build and test pipeline
Apr 20, 2026
5a0c23b
feat: add domain-layer foundation types for generic inbox
Apr 20, 2026
4995ef8
test: add property tests for MessageTypeRegistry
Apr 20, 2026
9eb293c
feat: add InboxMessageRepository with idempotent receive
Apr 20, 2026
37c083c
test: add property tests for InboxMessageRepository
Apr 20, 2026
07ff263
feat: extract endpoints into IEndpoint classes with auto-discovery
Apr 20, 2026
c915159
feat: refactor InboxMessageProcessorJob to generic MediatR dispatch
Apr 20, 2026
6c75b3f
test: add property and unit tests for InboxMessageProcessorJob
Apr 20, 2026
3b035ac
docs: add spec for endpoint restructure and generic inbox
Apr 20, 2026
a07cf60
docs: align documentation with generic inbox and endpoint restructure
Apr 20, 2026
6394e06
docs: fix MediatR version in README (14.1.0 → 12.5.0)
Apr 20, 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
40 changes: 40 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build and Test

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
build-and-test:
name: Build & Test
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
dotnet-quality: 'preview'

- name: Restore dependencies
run: dotnet restore src/Sample.TransactionalOutbox.sln

- name: Build
run: dotnet build src/Sample.TransactionalOutbox.sln --no-restore --configuration Release

- name: Test
run: dotnet test src/Sample.TransactionalOutbox.sln --no-build --configuration Release --logger "trx;LogFileName=test-results.trx"

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: '**/TestResults/*.trx'
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"specId": "385a1449-9854-4133-af01-15c8ff996340", "workflowType": "requirements-first", "specType": "feature"}
Loading
Loading