-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: prefer IAsyncEnumerable<T> over Task<T[]> (#64) * refactor: prefer IAsyncEnumerable<T> over Task<T[]> * Empty commit * Refactor: Deprecate Expressions (#76) * chore: mark expression methods as obsolete * chore: exclude obsolete methods from code coverage * feat: replacement abstractions 1. filter by the lease scope, label, or value 2. filter by the tag label or value 3. sort by the lease scope, label, or value 4. sort by the tag label or value 5. allow an options object to be attached to a query that will allow, among other things, specifying collation for sorting purposes (since value is string and you may want to sort by numeric value) * feat: implement new features in Common library * feat: implement new features in MongoDb library * refactor: update tests for new features and deprecations * bugfix: throw NotSupportedException instead of NotImplementedException * chore: mark obsolete method implementations * refactor: use new enumerate method for projection repository (stop using obsolete method) * Refactor: Envelope Service has too many methods (#78) * Feat: Npgsql (#80) + Implicit Usings * refactor(test): allow each implementation to specify the exact TimeStamp it should expect to get back instead of checking all of the possibilities * feat: Postgres date time column supports microsecond precision * feat: postgres driver * refactor(test): use TestContainers package instead of docker-compose for local and other things for CI * refactor: use getter/setter, remove redundant null assignment * refactor: avoid magic constants * refactor: avoid magic constants * refactor: reduce number of params * refactor: appease codacy * refactor: de-duplicate json envelope logic * refactor: reduce duplication * refactor: reduce duplication? * refactor: reduce duplication * refactor: reduce duplication * refactor: reduce duplication * refactor: remove statics where not needed these classes are only instantiated once, so there's no performance issues with non-static * bugfix: wrong property name * refactor: remove redundant initialization * refactor: reduce duplication * refactor: implicit usings chops off a bunch of lines * feat: record Data Type for Mongo * feat: forgot to implement the postgres provisioner * chore: update a bunch of packages * refactor: codacy suggestion
- Loading branch information
1 parent
03e1792
commit f668486
Showing
330 changed files
with
6,916 additions
and
2,003 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,15 +21,6 @@ jobs: | |
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
- name: Start Redis | ||
uses: supercharge/[email protected] | ||
with: | ||
redis-version: 7.0.2 | ||
- name: Start MongoDB | ||
uses: supercharge/[email protected] | ||
with: | ||
mongodb-version: 5.0.9 | ||
mongodb-replica-set: entitydb | ||
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v2 | ||
- name: Restore Dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,15 +37,6 @@ jobs: | |
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
- name: Start Redis | ||
uses: supercharge/[email protected] | ||
with: | ||
redis-version: 7.0.2 | ||
- name: Start MongoDB | ||
uses: supercharge/[email protected] | ||
with: | ||
mongodb-version: 5.0.9 | ||
mongodb-replica-set: entitydb | ||
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v2 | ||
- name: Restore Dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,15 +45,6 @@ jobs: | |
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
- name: Start Redis | ||
uses: supercharge/[email protected] | ||
with: | ||
redis-version: 7.0.2 | ||
- name: Start MongoDB | ||
uses: supercharge/[email protected] | ||
with: | ||
mongodb-version: 5.0.9 | ||
mongodb-replica-set: entitydb | ||
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v2 | ||
- name: Restore Dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
src/EntityDb.Abstractions/Entities/IEntityRepositoryFactory.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
|
||
namespace EntityDb.Abstractions.Entities; | ||
|
||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
src/EntityDb.Abstractions/Projections/IProjectionRepositoryFactory.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.