Skip to content

chore: [DEVEX-185] Rebranding #326

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
Apr 23, 2025
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
7029ca7
moved all files into EventStore.Client project
RagingKore Dec 16, 2024
2cdf1f0
moved files into main project and deleted remaining empty projects
RagingKore Dec 18, 2024
bd6b10f
Remove unused target frameworks and pass certificate in healthcheck
w1am Dec 20, 2024
0c2d0e3
Tests
w1am Jan 6, 2025
ebc6e60
Rename test symbols
w1am Jan 7, 2025
a0dd296
Merge branch 'master' of github.com:EventStore/EventStore-Client-Dotn…
w1am Jan 7, 2025
740872b
Test workflow
w1am Jan 7, 2025
f68cec0
Testing something
w1am Jan 7, 2025
7699152
More tests
w1am Jan 7, 2025
4c238c7
Improve CI
w1am Jan 8, 2025
9c693e6
Merge branch 'master' of github.com:EventStore/EventStore-Client-Dotn…
w1am Jan 8, 2025
b278f7d
Improve CI
w1am Jan 8, 2025
fd0b009
Fixup
w1am Jan 8, 2025
d613ba3
Publish actions
w1am Jan 8, 2025
d98910a
Temporarily disable Public actions
w1am Jan 8, 2025
d62b558
Fixup
w1am Jan 8, 2025
55d1547
Test warmup
w1am Jan 9, 2025
44607ea
[DEVEX-222] Add built-in auto-serialization (#329)
oskardudycz Feb 27, 2025
07a8d87
Revert "[DEVEX-222] Add built-in auto-serialization (#329)" (#332)
w1am Feb 27, 2025
dc14196
[DEVEX-222] Add built-in auto-serialization (#333)
w1am Feb 27, 2025
42e4d02
Rename namespaces (#335)
w1am Mar 4, 2025
6594064
feat: add ability to manually dispatch publish workflow
w1am Mar 5, 2025
2517212
chore: set tag prefix to `kurrent@`
w1am Mar 5, 2025
ba47435
chore: set minimum-major-minor to 1.0
w1am Mar 5, 2025
c6783f4
chore: change name to `Kurrent Inc`
w1am Mar 5, 2025
8437642
disable minver
w1am Mar 5, 2025
c9ed2c1
refactor: move ExpectedRevision to StreamState. (#337)
YoEight Mar 19, 2025
1bb43c1
[DEVEX-185] Removed leftover folders that had KurrentDb instead of Ku…
oskardudycz Mar 24, 2025
bb3fd10
chore: update license and readme
w1am Mar 24, 2025
18b26d9
[DEVEX-222] - Auto serialization feedback improvements (#338)
oskardudycz Apr 23, 2025
99ee69e
Merge branch 'master' into DEVEX-185-Rebranding
jasonmitchell Apr 23, 2025
4094c38
chore: point workflows to kurrent-io docker images
jasonmitchell Apr 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
70 changes: 35 additions & 35 deletions .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,47 +22,47 @@ on:
jobs:
test:
timeout-minutes: 20
strategy:
strategy:
fail-fast: false
matrix:
framework: [ net6.0, net7.0, net8.0 ]
framework: [ net8.0, net9.0 ]
os: [ ubuntu-latest ]
configuration: [ release ]
runs-on: ${{ matrix.os }}
name: ${{ inputs.test }} (${{ matrix.os }}, ${{ matrix.framework }})
env:
CLOUDSMITH_CICD_USER: ${{ secrets.CLOUDSMITH_CICD_USER }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to Cloudsmith
if: ${{ env.CLOUDSMITH_CICD_USER != '' }}
uses: docker/login-action@v3
with:
registry: docker.eventstore.com
username: ${{ secrets.CLOUDSMITH_CICD_USER }}
password: ${{ secrets.CLOUDSMITH_CICD_TOKEN }}
- name: Pull EventStore Image
shell: bash
run: |
docker pull docker.eventstore.com/${{ inputs.docker-image }}:${{ inputs.docker-tag }}
- name: Install dotnet SDKs
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Run Tests
shell: bash
env:
ES_DOCKER_TAG: ${{ inputs.docker-tag }}
ES_DOCKER_REGISTRY: docker.eventstore.com/${{ inputs.docker-image }}
run: |
sudo ./gencert.sh
dotnet test --configuration ${{ matrix.configuration }} --blame \
--logger:"GitHubActions;report-warnings=false" --logger:"console;verbosity=normal" \
--framework ${{ matrix.framework }} \
test/EventStore.Client.${{ inputs.test }}.Tests
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to Cloudsmith
if: ${{ env.CLOUDSMITH_CICD_USER != '' }}
uses: docker/login-action@v3
with:
registry: docker.kurrent.io
username: ${{ secrets.CLOUDSMITH_CICD_USER }}
password: ${{ secrets.CLOUDSMITH_CICD_TOKEN }}
- name: Pull KurrentDB Image
shell: bash
run: |
docker pull docker.kurrent.io/${{ inputs.docker-image }}:${{ inputs.docker-tag }}
- name: Install dotnet SDKs
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
9.0.x
- name: Run Tests
shell: bash
env:
ES_DOCKER_TAG: ${{ inputs.docker-tag }}
ES_DOCKER_REGISTRY: docker.kurrent.io/${{ inputs.docker-image }}
run: |
sudo ./gencert.sh
dotnet test --configuration ${{ matrix.configuration }} --blame \
--logger:"GitHubActions;report-warnings=false" --logger:"console;verbosity=normal" \
--framework ${{ matrix.framework }} \
--filter "Category=Target:${{ inputs.test }}" \
test/KurrentDB.Client.Tests
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
fail-fast: false
matrix:
docker-tag: [ ci, lts, previous-lts ]
test: [ Streams, PersistentSubscriptions, Operations, UserManagement, ProjectionManagement ]
test: [ Streams, PersistentSubscriptions, Operations, ProjectionManagement, UserManagement, Security, Misc ]
name: Test CE (${{ matrix.docker-tag }})
with:
docker-tag: ${{ matrix.docker-tag }}
docker-image: eventstore-ce/eventstoredb-ce
test: ${{ matrix.test }}
ee:
uses: ./.github/workflows/base.yml
if: ${{ github.repository_owner == 'EventStore' }}
if: ${{ github.repository_owner == 'kurrent-io' }}
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dispatch-ce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ on:
jobs:
test:
uses: ./.github/workflows/base.yml
strategy:
strategy:
fail-fast: false
matrix:
test: [ Streams, PersistentSubscriptions, Operations, UserManagement, ProjectionManagement ]
test: [ Streams, PersistentSubscriptions, Operations, ProjectionManagement, UserManagement, Security, Misc ]
name: Test CE (${{ inputs.docker-tag }})
with:
docker-tag: ${{ inputs.docker-tag }}
Expand Down
Loading
Loading