Skip to content
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

[DEVEX-189] Rebrand Client #392

Merged
merged 33 commits into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3f9f6aa
Rename symbols
w1am Dec 13, 2024
117c384
Rename dubug namespace
w1am Dec 13, 2024
0a49167
Upgrade grpc js
w1am Dec 13, 2024
3d63d54
Remove unnecesary tests
w1am Dec 13, 2024
02857b7
Mid stream test
w1am Dec 13, 2024
8bbf54f
Rename package names
w1am Dec 16, 2024
d234019
Rename eventstore in README
w1am Dec 16, 2024
90e2b04
Remove lerna
w1am Dec 16, 2024
f1396c3
Rename esdb to kdb
w1am Dec 16, 2024
1da39c3
Use npm in ci
w1am Dec 16, 2024
c7e8545
Clean up
w1am Dec 18, 2024
b36d05c
Improve CI and use pnpm
w1am Dec 19, 2024
42a5dee
feat: use latest yarn
w1am Feb 14, 2025
074558c
chore: deprecate node 14 and 16
w1am Feb 14, 2025
222ab7c
chore: remove nx
w1am Feb 14, 2025
50de0cf
chore: git ignore nx
w1am Feb 14, 2025
0cca291
use yarn in github workflow
w1am Feb 14, 2025
17af9f7
chore: re generate snapshots
w1am Feb 14, 2025
cb6693e
chore: update contributing and license
w1am Feb 14, 2025
605f8cc
chore: other renames
w1am Feb 14, 2025
79c74e9
feat: deprecate `certChain` and `privateKey`
w1am Feb 14, 2025
e2a8313
test: use same test for write after end test
w1am Feb 14, 2025
05aab2d
Update eslint
w1am Feb 17, 2025
7f902f2
Fix lint
w1am Feb 17, 2025
b9fb123
Integrate Rust Client Bridge (#400)
w1am Feb 27, 2025
565956d
feat: support kurrentdb protocol and rename package name
w1am Mar 3, 2025
e5d9994
chore: use bridge packages
w1am Mar 11, 2025
77794c3
bump db-client to `1.0.0-alpha.2`
w1am Mar 11, 2025
b2f5eed
chore: upgrade packages
w1am Mar 17, 2025
2f37c1f
refactor!: move ExpectedRevision to StreamState. (#403)
YoEight Mar 25, 2025
0c8981b
chore: bump bridge client
w1am Mar 26, 2025
88c254c
chore: update snapshots
w1am Mar 26, 2025
2ce1337
fixup
w1am Mar 26, 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
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module.exports = {
// prettier decides
"no-unexpected-multiline": ["off"],
"no-async-promise-executor": ["off"],
"@typescript-eslint/no-unsafe-function-type": ["off"],
"@typescript-eslint/no-empty-interface": [
"error",
{
Expand Down
60 changes: 60 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Bug Report
description: Create a bug report to help us improve
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: description
attributes:
label: Bug Description
description: A clear and concise description of what the bug is
placeholder: Tell us what you see!
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: To Reproduce
description: Steps to reproduce the behavior
placeholder: |
1. Start the KurrentDB server
2. Connect the client to the server
3. Create a new stream
4. Append an event to the stream
5. Read the event from the stream
6. Observe the issue
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen
validations:
required: true
- type: markdown
attributes:
value: '## Environment'
- type: input
id: db
attributes:
label: KurrentDB Version
placeholder: ex. 24.10.0
validations:
required: true
- type: input
id: client
attributes:
label: Client Version
placeholder: ex. 1.0.0
validations:
required: true
- type: input
id: nodejs-version
attributes:
label: Node.js Version
placeholder: ex. 18.16.0
validations:
required: true
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Feature request
url: https://discuss.eventstore.com/
about: Suggest an idea for this project
- name: Question / Problem
url: https://discuss.eventstore.com/
about: Questions and problems with n8n
8 changes: 0 additions & 8 deletions .github/files/package_check.txt

This file was deleted.

34 changes: 34 additions & 0 deletions .github/scripts/bump_versions.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import {promisify} from 'util';
import assert from 'assert';
import {resolve} from 'path';
import semver from 'semver';
import {exec as execCallback} from 'child_process';
import {writeFile, readFile} from 'fs/promises';

const exec = promisify(execCallback);

async function updatePackageVersion(packagePath, currentVersion, releaseType) {
const packageFile = resolve(packagePath, 'package.json');
const packageJson = JSON.parse(await readFile(packageFile, 'utf-8'));

packageJson.version = semver.inc(currentVersion, releaseType);

await writeFile(packageFile, JSON.stringify(packageJson, null, 2) + '\n');
}

async function main() {
const releaseType = process.env.RELEASE_TYPE;
assert.match(releaseType, /^(patch|minor|major)$/, 'Invalid RELEASE_TYPE');

const packages = JSON.parse((await exec('pnpm ls -r --only-projects --json')).stdout);

for (let {name, path, version, private: isPrivate} of packages) {
if (isPrivate && name !== 'kurrent-node-client-repository') continue;
await updatePackageVersion(path, version, releaseType);
}
}

main().catch(error => {
console.error('Error updating package versions:', error);
process.exit(1);
});
57 changes: 57 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Benchmark

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

jobs:
benchmark:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest ]

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

- uses: actions/setup-node@v4
with:
node-version-file: .github/files/.nvmrc

- name: Corepack
run: corepack enable

- name: Install Dependencies
run: yarn

- name: Build
run: yarn build

- name: Start KurrentDB
run: docker compose -f packages/benchmark/docker-compose.yml up -d

- name: Load Events
run: yarn nx run benchmark:loadEvents

- name: Run Benchmarks
run: |
echo "Number of events: 10k"
echo "Size of each event: 23bytes"
echo "Node.js version: $(node --version)"
echo "1 warmup iteration"
echo "20 iterations"
yarn nx run benchmark:benchmark | tee benchmark-bridge-client-output-${{ matrix.os }}.txt

- name: Upload Benchmark Results
uses: actions/upload-artifact@v4
with:
name: benchmark-results
path: benchmark-bridge-client-output-${{ matrix.os }}.txt

- name: Shutdown KurrentDB
run: docker compose -f packages/benchmark/docker-compose.yml down
54 changes: 17 additions & 37 deletions .github/workflows/build_and_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Corepack
run: corepack enable

- name: Install
run: yarn

- name: Linting
run: yarn lint

- name: Build on Ubuntu
run: yarn build

- name: All generated code is commited
run: |
git update-index --refresh
Expand All @@ -30,54 +37,27 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version-file: .github/files/.nvmrc
- name: NodeJS version
run: node -v
- name: Install
run: yarn
- name: Build
run: yarn build

package:
name: Package compiles as a dependency
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: NodeJS version
run: node -v

- name: Corepack
run: corepack enable

- name: Yarn version
run: yarn --version

- name: Install
run: yarn

- name: Build
run: yarn build
- name: Create and Test All Packages
run: |
for DIR in packages/*; do
if [ -d "$DIR" ]; then
cd $DIR
if [ -f "package.json" ]; then
PACKAGE_NAME=$(node -p "require('./package.json').name")
SHOULD_PUBLISH=$(node -p "require('./package.json').publishConfig && require('./package.json').publishConfig.public ? 'true' : 'false'")
if [[ $PACKAGE_NAME == @eventstore/* ]] && [[ $SHOULD_PUBLISH == 'true' ]]; then
npm pack
PACKAGE_PATH=$(pwd)/$(ls *.tgz)
mkdir -p ../../../temp/$PACKAGE_NAME
cd ../../../temp/$PACKAGE_NAME
yarn init -y
yarn add $PACKAGE_PATH
yarn add --dev typescript
cp ../../..$DIR/.github/files/package_check.txt ./main.ts
yarn tsc main.ts --alwaysStrict --noImplicitAny --noImplicitReturns --strictNullChecks --module system --moduleResolution node --target es2018 --lib es2020 --types node
cd ../../..
fi
fi
cd ..
fi
done
58 changes: 58 additions & 0 deletions .github/workflows/release_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: 'Release: Create Pull Request'

on:
workflow_dispatch:
inputs:
base-branch:
description: 'The branch, tag, or commit to create this release PR from.'
required: true
default: 'master'

release-type:
description: 'A SemVer release type.'
required: true
type: choice
default: 'minor'
options:
- patch
- minor
- major

jobs:
create-release-pr:
runs-on: ubuntu-latest

permissions:
contents: write
pull-requests: write

timeout-minutes: 5

steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
ref: ${{ github.event.inputs.base-branch }}

- run: npm install --prefix=.github/scripts --no-package-lock

- name: Bump package versions
run: |
echo "NEXT_RELEASE=$(node .github/scripts/bump_versions.mjs)" >> $GITHUB_ENV
env:
RELEASE_TYPE: ${{ github.event.inputs.release-type }}

- name: Push the base branch
run: |
git push -f origin refs/remotes/origin/${{ github.event.inputs.base-branch }}:refs/heads/release/${{ env.NEXT_RELEASE }}

- name: Push the release branch, and Create the PR
uses: peter-evans/create-pull-request@v6
with:
base: 'release/${{ env.NEXT_RELEASE }}'
branch: 'release-pr/${{ env.NEXT_RELEASE }}'
commit-message: 'Release ${{ env.NEXT_RELEASE }}'
delete-branch: true
labels: release,release:${{ github.event.inputs.release-type }}
title: 'Release ${{ env.NEXT_RELEASE }}'
46 changes: 46 additions & 0 deletions .github/workflows/release_publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: 'Release: Publish'

on:
pull_request:
types:
- closed
branches:
- 'release/*'

jobs:
publish-to-npm:
name: Publish to NPM
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
timeout-minutes: 10
permissions:
id-token: write
outputs:
release: ${{ steps.set-release.outputs.release }}
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0

- name: Corepack
run: corepack enable

- run: yarn

- name: Build
run: yarn build

- name: Cache build artifacts
uses: actions/cache/[email protected]
with:
path: ./packages/**/dist
key: ${{ github.sha }}-release:build

- name: Dry-run publishing
run: yarn publish -r --no-git-checks --dry-run

- name: Publish to NPM
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
yarn npm publish -r --publish-branch ${{github.event.pull_request.base.ref}} --access public --no-git-checks
3 changes: 0 additions & 3 deletions .github/workflows/test_LTS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,3 @@ jobs:
uses: ./.github/workflows/tests.yml
with:
version: "latest"
secrets:
eventstore_cloud_id: ${{ secrets.EVENTSTORE_CLOUD_ID }}
tailscale_auth: ${{ secrets.TAILSCALE_AUTH }}
3 changes: 0 additions & 3 deletions .github/workflows/test_dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,3 @@ jobs:
uses: ./.github/workflows/tests.yml
with:
version: ${{ inputs.version }}
secrets:
eventstore_cloud_id: ${{ secrets.EVENTSTORE_CLOUD_ID }}
tailscale_auth: ${{ secrets.TAILSCALE_AUTH }}
Loading