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

Modernize #8

Merged
merged 48 commits into from
Apr 26, 2024
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
26b04ae
Use primary constructor where possible
RobThree Apr 23, 2024
ad7e4bb
Use collection expressions where possible
RobThree Apr 23, 2024
9484ea9
Make VersionedState readonly
RobThree Apr 23, 2024
fdf3ff8
Use inferred membername
RobThree Apr 23, 2024
132f0b3
Fix async warnings.
RobThree Apr 23, 2024
45ab6e9
Reformat queries
RobThree Apr 23, 2024
e59d763
Suppress naming style messages (member names should start with an Upp…
RobThree Apr 23, 2024
a7e5800
Proper implementation of IDisposable, IAsyncDisposable
RobThree Apr 23, 2024
fc14bb2
Use ThrowIfNull where possible
RobThree Apr 23, 2024
59d8520
Compare with length/count == 0 where possible instead of .Any()
RobThree Apr 23, 2024
87ad0c5
Forgot a IDE1006 message
RobThree Apr 23, 2024
7b1151c
Make methods static where possible.
RobThree Apr 23, 2024
16c9f21
Remove unused method
RobThree Apr 23, 2024
2e2f965
Return actual class instead of interface where possble (CA1859).
RobThree Apr 23, 2024
7f18ee5
Fix nullability warning
RobThree Apr 23, 2024
29766e9
Remove unused packages.
RobThree Apr 23, 2024
470f498
Extend editorconfig.
RobThree Apr 23, 2024
bea09e3
Run init.db on startup. This ain't pretty but it works.
RobThree Apr 23, 2024
61d1d6a
Fix concurrency bug
RobThree Apr 25, 2024
5fa9d39
Migrate sequence_id to BIGSERIAL
kchenery Apr 25, 2024
47f9db2
Update process_managers.process to a bigserial
kchenery Apr 25, 2024
adf4f39
Use schema instead of database
RobThree Apr 25, 2024
ac80195
Use primary constructor where possible
RobThree Apr 23, 2024
3b54c92
Use collection expressions where possible
RobThree Apr 23, 2024
11ffffc
Make VersionedState readonly
RobThree Apr 23, 2024
bd35fe8
Use inferred membername
RobThree Apr 23, 2024
f2bf75f
Fix async warnings.
RobThree Apr 23, 2024
d06edf7
Reformat queries
RobThree Apr 23, 2024
b504e26
Suppress naming style messages (member names should start with an Upp…
RobThree Apr 23, 2024
4c83ff9
Proper implementation of IDisposable, IAsyncDisposable
RobThree Apr 23, 2024
b851bd9
Use ThrowIfNull where possible
RobThree Apr 23, 2024
f513ef9
Compare with length/count == 0 where possible instead of .Any()
RobThree Apr 23, 2024
57bfd3a
Forgot a IDE1006 message
RobThree Apr 23, 2024
915d986
Make methods static where possible.
RobThree Apr 23, 2024
ef6f5b7
Remove unused method
RobThree Apr 23, 2024
f2b3ab6
Return actual class instead of interface where possble (CA1859).
RobThree Apr 23, 2024
2cfddfb
Fix nullability warning
RobThree Apr 23, 2024
edf0c62
Remove unused packages.
RobThree Apr 23, 2024
1c0ee8d
Extend editorconfig.
RobThree Apr 23, 2024
b79b8f7
Merge branch 'modernize' of https://github.com/RobThree/kafkaflow-con…
RobThree Apr 25, 2024
694d094
Release 2.0.0
AlexeyRaga Apr 26, 2024
33190be
Fix integration tests
AlexeyRaga Apr 26, 2024
23e9210
Wait for docker compose
AlexeyRaga Apr 26, 2024
3b095b3
Fix: waiting for test container
AlexeyRaga Apr 26, 2024
135a551
Use primary constructor where possible
RobThree Apr 23, 2024
d5bb872
Run init.db on startup. This ain't pretty but it works.
RobThree Apr 23, 2024
b256b7c
Fix merge issue
RobThree Apr 26, 2024
873719f
Merge branch 'main' into modernize
AlexeyRaga Apr 26, 2024
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
Prev Previous commit
Next Next commit
Remove unused method
  • Loading branch information
RobThree committed Apr 25, 2024
commit ef6f5b7c1ce722934ea23f06d20bf51259ae1846
4 changes: 0 additions & 4 deletions src/Contrib.KafkaFlow.Outbox/OutboxProducerDecorator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,5 @@ public void SetSaslCredentials(string username, string password)
public void AbortTransaction(TimeSpan timeout) => throw new InvalidOperationException("This producer does not support transactions");

public void AbortTransaction() => throw new InvalidOperationException("This producer does not support transactions");

public void SendOffsetsToTransaction(IEnumerable<Confluent.Kafka.TopicPartitionOffset> offsets, IConsumerGroupMetadata groupMetadata, TimeSpan timeout) => throw new InvalidOperationException("This producer does not support transactions");

public void SendOffsetsToTransaction(IEnumerable<TopicPartitionOffset> offsets,
IConsumerGroupMetadata groupMetadata, TimeSpan timeout) => throw new InvalidOperationException("This producer does not support transactions");
}