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

feat!(CosmosStore): Azure.Cosmos 'V4' support / enable mocking Cosmos APIs #197

Draft
wants to merge 86 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
86 commits
Select commit Hold shift + click to select a range
0cd50f9
Target FSharp.Control.AsyncSeq 2.0.23
bartelink Feb 19, 2020
48fea8d
Change Cosmos to netstandard2.1, tools to netcoreapp3.1
bartelink Feb 19, 2020
59fda04
Make tests pass
bartelink Aug 16, 2019
723c7d8
Reduce leniency on stored proc call
bartelink Aug 20, 2019
3baeb3e
V4
bartelink Feb 11, 2020
fa23d16
Up to L365
bartelink Feb 11, 2020
bbd90c6
Correctly retrieve request charge from Azure.Core response types; Swi…
ylibrach Feb 11, 2020
8485484
Migrate to new etag match predicate
ylibrach Feb 12, 2020
65c27d6
Migrate from FeedIterator to IAsyncEnumerable
ylibrach Feb 12, 2020
4aa3319
Only set gateway options when in Gateway mode
ylibrach Feb 18, 2020
26fd82e
Add and use NewtonsoftJsonSerializer
ylibrach Feb 18, 2020
f2a0633
Rearrange files
ylibrach Feb 18, 2020
482b797
Fix test RU limits
ylibrach Feb 18, 2020
a36e742
Remove Microsoft.Azure.Cosmos.Direct ref
bartelink Feb 19, 2020
f09a731
Change from byte[] payloads to STJ.JsonElement; Rewrite converters us…
ylibrach Feb 25, 2020
aec8068
Replace FSCodec.NewtonsoftJson with core FSCodec
ylibrach Feb 25, 2020
2035d49
Remove NewtonsoftJsonSerializer
ylibrach Feb 25, 2020
b61e367
Update FsCodec to 2.0.1
ylibrach Feb 26, 2020
c37789d
Fully switch over to STJ
ylibrach Feb 27, 2020
561e17c
Update tests
ylibrach Feb 27, 2020
c121ca2
Create Tutorial STJ codecs
ylibrach Feb 27, 2020
48a874e
Create Store integration STJ codecs
ylibrach Feb 28, 2020
b231595
Move STJ code to Equinox
ylibrach Feb 28, 2020
dd97e50
Add FsCodec.STJ to Equinox
ylibrach Feb 28, 2020
7973a73
Move FsCodec.STJ to Equinox.Core; Fix net461
ylibrach Feb 28, 2020
e2d3d6b
Pair codecs together with Event types
ylibrach Feb 28, 2020
125e3b0
Pair codecs together with Event types
ylibrach Mar 2, 2020
a68f80a
Split resolvers into UTF8 and JsonElement
ylibrach Mar 2, 2020
301fdc5
Remove unnecessary async block
ylibrach Mar 2, 2020
1c92b08
Fix typo
ylibrach Mar 2, 2020
d95e121
Change to camelCase field names
ylibrach Mar 2, 2020
4398d30
Move FsCodec dep to end
ylibrach Mar 2, 2020
3fabd8f
Rearrange open statements
ylibrach Mar 2, 2020
b0a3a9b
Merge pull request #200 from jet/stj
ylibrach Mar 3, 2020
d599f6c
Fix ValueTask versioning
ylibrach Mar 3, 2020
a670bcd
Merge branch 'master' into cosmossdk4
bartelink Mar 5, 2020
b1f4f03
Abstract Cosmos clients and allow them to be provided by consumers
ylibrach Mar 6, 2020
88ec2bf
Clean up CancellationToken usages
ylibrach Mar 9, 2020
c509a1b
Streamline clients
ylibrach Mar 9, 2020
0a5a176
Move all initialization functions to separate module
ylibrach Mar 10, 2020
4b92f85
Make abstractions more generic
ylibrach Mar 10, 2020
618c535
Rename to EquinoxCosmosClientFactory
ylibrach Mar 10, 2020
474575a
Fix spacing
ylibrach Mar 10, 2020
a423299
Add argument docs
ylibrach Mar 10, 2020
138a01e
Inline map/bind 'help'ers
bartelink Mar 11, 2020
d7d92bb
Merge remote-tracking branch 'origin/master' into cosmossdk4
bartelink Mar 11, 2020
4b84edd
Rebase on Codec logic extracted into FsCodec.System.Text.Json (#202)
bartelink Mar 12, 2020
cd998c8
Merge remote-tracking branch 'origin/master' into cosmossdk4
bartelink Mar 12, 2020
5e42546
Merge branch 'master' of https://github.com/jet/equinox into cosmossdk4
ylibrach Mar 13, 2020
28499e6
Remove net461 target from tests
ylibrach Mar 13, 2020
a2d742f
Fix various test issues
ylibrach Mar 17, 2020
2f3cfaa
Provide options
ylibrach Mar 17, 2020
d044dfd
Merge with latest changes from cosmossdk4
ylibrach Mar 17, 2020
6207c09
Merge branch 'client-abstractions' of https://github.com/jet/equinox …
ylibrach Mar 17, 2020
a188f69
Tip compression toggle through optional argument (#206)
ylibrach Mar 19, 2020
0a7fa6d
Change container initialization to be explicitly called on demand
ylibrach Mar 19, 2020
d6637ee
Switch from Force() to Value
ylibrach Mar 19, 2020
3374a6d
Rename Client to Operations
ylibrach Mar 19, 2020
a17704b
Remove Sdk from naming
ylibrach Mar 19, 2020
e4270f9
Rename to compressUnfolds for clarity
ylibrach Mar 19, 2020
5f7469f
Merge pull request #203 from jet/client-abstractions
ylibrach Mar 19, 2020
820db24
Target FsCodec 2.0.2-alpha.0.8
bartelink Mar 19, 2020
634ae3d
Misc cleanup
bartelink Mar 19, 2020
a5374fb
Store.Operations ?
bartelink Mar 19, 2020
a94843a
Store* naming
bartelink Mar 19, 2020
0b1a400
Move Converter out of type definitions
bartelink Mar 19, 2020
e40d9d9
Fix naming stragglers
bartelink Mar 19, 2020
6a36d46
Add dump -b to enable overriding Cosmos MaxItems
bartelink Apr 1, 2020
ad1dae4
Merge branch 'master' into cosmossdk4
bartelink Apr 1, 2020
18eb774
Merge remote-tracking branch 'origin/master' into cosmossdk4
bartelink Apr 6, 2020
07c8492
Cosmos V4: Reduce initialization confusion (#208)
bartelink Apr 7, 2020
1e24121
simplify GetContainer
bartelink Apr 6, 2020
73fa4be
Merge remote-tracking branch 'origin/master' into cosmossdk4
bartelink Apr 7, 2020
84c3b73
Cosmos -> CosmosStore and related renames (#216)
bartelink Apr 15, 2020
358bbe2
Merge with FsCodec 2.1.0 release updates
bartelink May 10, 2020
730079f
Remove CancellationToken.useOrCreate
bartelink May 10, 2020
3b5cb66
Merge branch 'master' into cosmossdk4
bartelink Jun 3, 2020
d2e96f2
Implement pretty-printing for JsonElement
bartelink Jun 25, 2020
511e122
Merge branch 'master' into cosmossdk4
bartelink Jun 26, 2020
31c94ce
Tidy comments
bartelink Sep 2, 2020
4eae601
Tidy
bartelink Sep 3, 2020
6622026
Polish comments
bartelink Sep 3, 2020
175eefc
Merge remote-tracking branch 'origin/master' into cosmossdk4
bartelink Sep 15, 2020
e7009b7
Upgrade to STJ 5.0 rc1
bartelink Sep 15, 2020
75d4551
Fix json
bartelink Sep 17, 2020
792e420
Really Fix json
bartelink Sep 17, 2020
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 Microsoft.Azure.Cosmos.Direct ref
bartelink committed Feb 19, 2020
commit a36e7425ed630ca8b760fab0fe56c1f8e7892bdf
1 change: 0 additions & 1 deletion samples/Infrastructure/Infrastructure.fsproj
Original file line number Diff line number Diff line change
@@ -35,7 +35,6 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.Seq" Version="4.0.0" />
<PackageReference Include="Microsoft.Azure.Cosmos.Direct" Version="3.1.4" />
</ItemGroup>

</Project>