Skip to content

feat(client): support TrogonEventStore adoption - #1

Merged
yordis merged 1 commit into
mainfrom
yordis/feat-bootstrap-go-client
Sep 10, 2026
Merged

feat(client): support TrogonEventStore adoption#1
yordis merged 1 commit into
mainfrom
yordis/feat-bootstrap-go-client

Conversation

@yordis

@yordis yordis commented Sep 10, 2026

Copy link
Copy Markdown
Member
  • Establishes a TrogonStack-owned Go client identity so users can depend on a supported SDK without inheriting external branding.\n- Keeps compatibility focused on the protocol services currently provided by TrogonEventStore.\n- Makes compatibility checks and GitHub releases repeatable.

@coderabbitai

coderabbitai Bot commented Sep 10, 2026

Copy link
Copy Markdown

Important

Review skipped

Too many files!

This PR contains 125 files, which is 25 over the limit of 100.

To get a review, reduce the PR to 100 files or fewer by splitting it into smaller PRs or changing its base branch.

Upgrade to a paid plan to raise the limit.

This review couldn't start because sufficient usage credits or metered capacity aren't available. Add credits or update usage-based reviews in the billing tab, then retry.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Advanced

Run ID: eae2c7ce-2a99-4b71-b4af-c233a7d27929

📥 Commits

Reviewing files that changed from the base of the PR and between 8c6a6bc and e84efb4.

⛔ Files ignored due to path filters (22)
  • KurrentLogo-Black.png is excluded by !**/*.png
  • KurrentLogo-Plum.png is excluded by !**/*.png
  • KurrentLogo-White.png is excluded by !**/*.png
  • protos/kurrentdb/protocols/v1/code/code.pb.go is excluded by !**/*.pb.go
  • protos/kurrentdb/protocols/v1/projections/projections.pb.go is excluded by !**/*.pb.go
  • protos/kurrentdb/protocols/v1/status/status.pb.go is excluded by !**/*.pb.go
  • protos/kurrentdb/protocols/v2/errors/errors.pb.go is excluded by !**/*.pb.go
  • protos/kurrentdb/protocols/v2/rpc/rpc.pb.go is excluded by !**/*.pb.go
  • protos/kurrentdb/protocols/v2/streams/errors/errors.pb.go is excluded by !**/*.pb.go
  • protos/kurrentdb/protocols/v2/streams/streams/streams.pb.go is excluded by !**/*.pb.go
  • protos/kurrentdb/protocols/v2/streams/streams/streams_grpc.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/gossip/gossip.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/gossip/gossip_grpc.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/persistent/persistent.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/persistent/persistent_grpc.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/projections/projections.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/projections/projections_grpc.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/serverfeatures/serverfeatures.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/serverfeatures/serverfeatures_grpc.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/shared/shared.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/streams/streams.pb.go is excluded by !**/*.pb.go
  • protos/trogoneventstore/protocols/v1/streams/streams_grpc.pb.go is excluded by !**/*.pb.go
📒 Files selected for processing (125)
  • .env
  • .github/CODEOWNERS
  • .github/ISSUE_TEMPLATE/BUG_REPORT.yml
  • .github/ISSUE_TEMPLATE/config.yml
  • .github/release-please-config.json
  • .github/release-please-manifest.json
  • .github/workflows/build-docs.yml
  • .github/workflows/cherry-pick-pr-for-label.yml
  • .github/workflows/ci.yml
  • .github/workflows/go-version.yml
  • .github/workflows/go.yml
  • .github/workflows/integration.yml
  • .github/workflows/load-configuration.yml
  • .github/workflows/qa.yml
  • .github/workflows/release-please.yml
  • .github/workflows/semconv.yml
  • .github/workflows/tests.yml
  • .mise.toml
  • CHANGELOG.md
  • CONTRIBUTING.md
  • INSTALL.md
  • LICENSE
  • Makefile
  • README.md
  • build.ps1
  • build.sh
  • docker-compose.oauth.yml
  • docker-compose.yml
  • docs/.vuepress/configs/theme.ts
  • docs/.vuepress/public/js/snippet.js
  • docs/.vuepress/public/robots.txt
  • docs/api/appending-events.md
  • docs/api/authentication.md
  • docs/api/delete-stream.md
  • docs/api/getting-started.md
  • docs/api/persistent-subscriptions.md
  • docs/api/projections.md
  • docs/api/reading-events.md
  • docs/api/subscriptions.md
  • docs/package.json
  • go.mod
  • kurrentdb/append_records_options.go
  • kurrentdb/errors.go
  • oauth/oauth.conf
  • oauth/realm-export.json
  • protos/kurrentdb/protocols/v1/serverfeatures.proto
  • protos/kurrentdb/protocols/v2/errors.proto
  • protos/kurrentdb/protocols/v2/rpc.proto
  • protos/kurrentdb/protocols/v2/streams/errors.proto
  • protos/kurrentdb/protocols/v2/streams/streams.proto
  • protos/trogoneventstore/protocols/v1/code.proto
  • protos/trogoneventstore/protocols/v1/gossip.proto
  • protos/trogoneventstore/protocols/v1/persistent.proto
  • protos/trogoneventstore/protocols/v1/projections.proto
  • protos/trogoneventstore/protocols/v1/serverfeatures.proto
  • protos/trogoneventstore/protocols/v1/shared.proto
  • protos/trogoneventstore/protocols/v1/status.proto
  • protos/trogoneventstore/protocols/v1/streams.proto
  • samples/appendingEvents.go
  • samples/persistentSubscriptions.go
  • samples/projectionManagement.go
  • samples/quickstart.go
  • samples/readingEvents.go
  • samples/serverSideFiltering.go
  • samples/subscribingToStream.go
  • samples/userCertificates.go
  • shared.env
  • test/append_records_test.go
  • test/append_test.go
  • test/auth_insecure_test.go
  • test/auth_oauth_test.go
  • test/auth_secure_test.go
  • test/client_certificates_test.go
  • test/client_fixture_test.go
  • test/client_test.go
  • test/cluster_test.go
  • test/configuration_test.go
  • test/connection_test.go
  • test/delete_test.go
  • test/multi_append_test.go
  • test/persistent_subscription_read_test.go
  • test/persistent_subscriptions_test.go
  • test/position_parsing_test.go
  • test/projection_fixture_test.go
  • test/projection_test.go
  • test/read_all_test.go
  • test/read_stream_test.go
  • test/subscriptions_test.go
  • test/tls_test.go
  • test/types_test.go
  • test/uuid_parsing_test.go
  • trogoneventstore/append_options.go
  • trogoneventstore/client.go
  • trogoneventstore/configuration.go
  • trogoneventstore/credentials.go
  • trogoneventstore/credentials_test.go
  • trogoneventstore/delete_options.go
  • trogoneventstore/delete_result.go
  • trogoneventstore/endpoint.go
  • trogoneventstore/errors.go
  • trogoneventstore/event_data.go
  • trogoneventstore/impl.go
  • trogoneventstore/logging.go
  • trogoneventstore/operations.go
  • trogoneventstore/options.go
  • trogoneventstore/persistent_options.go
  • trogoneventstore/persistent_subscription.go
  • trogoneventstore/persistent_subscription_client.go
  • trogoneventstore/persistent_subscription_http_client.go
  • trogoneventstore/position.go
  • trogoneventstore/projection_client.go
  • trogoneventstore/projection_contract_test.go
  • trogoneventstore/projection_options.go
  • trogoneventstore/protobuf_utils.go
  • trogoneventstore/read_options.go
  • trogoneventstore/reads.go
  • trogoneventstore/recorded_event.go
  • trogoneventstore/resolved_event.go
  • trogoneventstore/revision.go
  • trogoneventstore/subscribe_options.go
  • trogoneventstore/subscription_event.go
  • trogoneventstore/subscriptions.go
  • trogoneventstore/tombstone_options.go
  • trogoneventstore/types.go
  • trogoneventstore/write_result.go

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@yordis
yordis force-pushed the yordis/feat-bootstrap-go-client branch from da0dd8d to 05eb496 Compare September 10, 2026 07:10
Signed-off-by: Yordis Prieto <yordis.prieto@gmail.com>
@yordis
yordis force-pushed the yordis/feat-bootstrap-go-client branch from 05eb496 to e84efb4 Compare September 10, 2026 07:26
@yordis
yordis merged commit b5006ac into main Sep 10, 2026
8 checks passed
@yordis
yordis deleted the yordis/feat-bootstrap-go-client branch September 10, 2026 08:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant