Skip to content

Commit

Permalink
Merge pull request #712 from eventflow/header-correction
Browse files Browse the repository at this point in the history
Correct license header in accordance with CLA
  • Loading branch information
rasmus authored Dec 10, 2019
2 parents 5fe9a7e + 0ef2bb6 commit ecc0bc5
Show file tree
Hide file tree
Showing 94 changed files with 1,099 additions and 172 deletions.
19 changes: 12 additions & 7 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributers
# Contributors

List of notable contributers to EventFlow sorted alphabetically. For a
List of notable contributors to EventFlow sorted alphabetically. For a
complete list of all contributions to EventFlow, have look at the
[contributors](https://github.com/eventflow/EventFlow/graphs/contributors)
graph.
Expand All @@ -19,6 +19,11 @@ If you think your name is missing from the list, create a pull-request.

* Original MongoDB author

### [Emanuele Curati](https://github.com/ProH4Ck)

* ASP.NET Core 3
* Docker integration test cleanup

### [Frank Ebersoll](https://github.com/frankebersoll)

* Created following packages
Expand All @@ -37,18 +42,18 @@ If you think your name is missing from the list, create a pull-request.
* Several key contributions and bug fixes
* Donated Navicat Essentials for SQLite

### [janfeyen](https://github.com/janfeyen)
### [Jan Feyen](https://github.com/janfeyen)

* Key MongoDB contributions

### [rmess](https://github.com/rmess)

* PostgreSQL implementation

### [Rasmus Mikkelsen](https://github.com/rasmus)

* Original creator and author of EventFlow

### [Rida Messaoudene](https://github.com/rmess)

* PostgreSQL implementation

### [Willem Peters](https://github.com/wgtmpeters)

* MongoDB cleanup and move to main repository
Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow.AspNetCore/EventFlow.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Title>EventFlow.AspNetCore</Title>
<Authors>Rasmus Mikkelsen</Authors>
<Company>Rasmus Mikkelsen</Company>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2018</Copyright>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2019</Copyright>
<Description>AspNetCore support for EventFlow</Description>
<PackageTags>CQRS ES event sourcing AspNetCore</PackageTags>
<RepositoryType>git</RepositoryType>
Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow.Autofac/EventFlow.Autofac.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Title>EventFlow.Autofac</Title>
<Authors>Rasmus Mikkelsen</Authors>
<Company>Rasmus Mikkelsen</Company>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2018</Copyright>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2019</Copyright>
<Description>Autofac support for EventFlow</Description>
<PackageTags>CQRS ES event sourcing Autofac</PackageTags>
<RepositoryType>git</RepositoryType>
Expand Down
27 changes: 25 additions & 2 deletions Source/EventFlow.Autofac/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
using System.Runtime.CompilerServices;
// The MIT License (MIT)
//
// Copyright (c) 2015-2019 Rasmus Mikkelsen
// Copyright (c) 2015-2019 eBay Software Foundation
// https://github.com/eventflow/EventFlow
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

[assembly: InternalsVisibleTo("EventFlow.Autofac.Tests")]
using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo("EventFlow.Autofac.Tests")]
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Title>EventFlow.DependencyInjection</Title>
<Authors>Frank Ebersoll</Authors>
<Company>Rasmus Mikkelsen</Company>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2018</Copyright>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2019</Copyright>
<Description>Microsoft.Extensions.DependencyInjection support for EventFlow</Description>
<PackageTags>CQRS ES event sourcing Microsoft.Extensions.DependencyInjection ServiceProvider ServiceCollection</PackageTags>
<RepositoryType>git</RepositoryType>
Expand Down
27 changes: 25 additions & 2 deletions Source/EventFlow.DependencyInjection/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
using System.Runtime.CompilerServices;
// The MIT License (MIT)
//
// Copyright (c) 2015-2019 Rasmus Mikkelsen
// Copyright (c) 2015-2019 eBay Software Foundation
// https://github.com/eventflow/EventFlow
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

[assembly: InternalsVisibleTo("EventFlow.ServiceProvider.Tests")]
using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo("EventFlow.ServiceProvider.Tests")]
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Title>EventFlow.Elasticsearch</Title>
<Authors>Rasmus Mikkelsen</Authors>
<Company>Rasmus Mikkelsen</Company>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2018</Copyright>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2019</Copyright>
<Description>Elasticsearch support for EventFlow</Description>
<PackageTags>CQRS ES event sourcing Elasticsearch</PackageTags>
<RepositoryType>git</RepositoryType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Title>EventFlow.EntityFramework</Title>
<Authors>Frank Ebersoll</Authors>
<Company>Rasmus Mikkelsen</Company>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2018</Copyright>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2019</Copyright>
<Description>Entity Framework Core support for EventFlow</Description>
<PackageTags>CQRS ES event sourcing EF Entity Framework Core</PackageTags>
<RepositoryType>git</RepositoryType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Title>EventFlow.EventStores.EventStore</Title>
<Authors>Rasmus Mikkelsen</Authors>
<Company>Rasmus Mikkelsen</Company>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2018</Copyright>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2019</Copyright>
<Description>Event Store event store for EventFlow. Download it from https://geteventstore.com/</Description>
<PackageTags>CQRS ES event sourcing EventStore</PackageTags>
<RepositoryType>git</RepositoryType>
Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow.Hangfire/EventFlow.Hangfire.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Title>EventFlow.Hangfire</Title>
<Authors>Rasmus Mikkelsen</Authors>
<Company>Rasmus Mikkelsen</Company>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2018</Copyright>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2019</Copyright>
<Description>Hangfire job scheduling support for EventFlow</Description>
<PackageTags>CQRS ES event sourcing Hangfire</PackageTags>
<RepositoryType>git</RepositoryType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
using System;
using System.Threading.Tasks;
// The MIT License (MIT)
//
// Copyright (c) 2015-2019 Rasmus Mikkelsen
// Copyright (c) 2015-2019 eBay Software Foundation
// https://github.com/eventflow/EventFlow
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

using EventFlow.Configuration;
using EventFlow.TestHelpers;
using EventFlow.TestHelpers.Suites;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
// The MIT License (MIT)
//
// Copyright (c) 2015-2019 Rasmus Mikkelsen
// Copyright (c) 2015-2019 eBay Software Foundation
// https://github.com/eventflow/EventFlow
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

using System.Linq;
using EventFlow.MongoDB.Tests.IntegrationTests.ReadStores.ReadModels;
using EventFlow.Queries;
using EventFlow.TestHelpers.Aggregates;

namespace EventFlow.MongoDB.Tests.IntegrationTests.ReadStores.Queries
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
// The MIT License (MIT)
//
// Copyright (c) 2015-2019 Rasmus Mikkelsen
// Copyright (c) 2015-2019 eBay Software Foundation
// https://github.com/eventflow/EventFlow
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using EventFlow.MongoDB.ReadStores;
using EventFlow.MongoDB.Tests.IntegrationTests.ReadStores.Queries;
using EventFlow.MongoDB.Tests.IntegrationTests.ReadStores.ReadModels;
using EventFlow.Queries;
using EventFlow.TestHelpers.Aggregates;

namespace EventFlow.MongoDB.Tests.IntegrationTests.ReadStores.QueryHandlers
{
Expand All @@ -24,4 +46,4 @@ public Task<IQueryable<MongoDbThingyReadModel>> ExecuteQueryAsync(MongoDbThingyG
return Task.FromResult(_readStore.AsQueryable());
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// The MIT License (MIT)
//
// Copyright (c) 2015-2018 Rida Messaoudene
// Copyright (c) 2015-2019 Rasmus Mikkelsen
// Copyright (c) 2015-2019 eBay Software Foundation
// https://github.com/eventflow/EventFlow
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand Down
5 changes: 3 additions & 2 deletions Source/EventFlow.MongoDB/EventFlow.MongoDB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Title>EventFlow.MongoDB</Title>
<Authors>Jan Feyen, Warren Pieterse</Authors>
<Owners>Jan Feyen, Warren Pieterse</Owners>
<Copyright>Copyright (c) Jan Feyen/Warren Pieterse 2015 - 2017</Copyright>
<Owners>Rasmus Mikkelsen</Owners>
<Company>Rasmus Mikkelsen</Company>
<Copyright>Copyright (c) Rasmus Mikkelsen 2015 - 2019</Copyright>
<Description>MongoDB ReadStore and Snapshot Persistence for EventFlow</Description>
<PackageTags>CQRS ES event sourcing MongoDB</PackageTags>
<RepositoryType>git</RepositoryType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// The MIT License (MIT)
//
// Copyright (c) 2015-2019 Rasmus Mikkelsen
// Copyright (c) 2015-2019 eBay Software Foundation
// https://github.com/eventflow/EventFlow
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

namespace EventFlow.MongoDB.EventStore
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
namespace EventFlow.MongoDB.EventStore
// The MIT License (MIT)
//
// Copyright (c) 2015-2019 Rasmus Mikkelsen
// Copyright (c) 2015-2019 eBay Software Foundation
// https://github.com/eventflow/EventFlow
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

namespace EventFlow.MongoDB.EventStore
{
public interface IMongoDbEventSequenceStore
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@

// The MIT License (MIT)
//
// Copyright (c) 2015-2019 Rasmus Mikkelsen
// Copyright (c) 2015-2019 eBay Software Foundation
// https://github.com/eventflow/EventFlow
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

using EventFlow.MongoDB.ValueObjects;
using MongoDB.Driver;

Expand Down
Loading

0 comments on commit ecc0bc5

Please sign in to comment.