aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations
AgeCommit message (Collapse)Author
2022-06-29Merge pull request #7984 from crobibero/dotnet-6.0.6Joshua M. Boniface
Upgrade to dotnet 6.0.6, update remaining dependencies (cherry picked from commit 56e7b323de3e993ba79ed86ef7e9a10f79693156) Signed-off-by: Joshua Boniface <joshua@boniface.me>
2022-05-20Merge pull request #7774 from crobibero/api-authinfoCody Robibero
(cherry picked from commit 825e6460c9df04d8023634d71a0c82c93ca6ee2b) Signed-off-by: Joshua Boniface <joshua@boniface.me>
2022-05-20Merge pull request #7766 from crobibero/dotnet-6.0.5Joshua M. Boniface
(cherry picked from commit 71bf56704535d0afa7d4955f03d287d40c9a98a3) Signed-off-by: Joshua Boniface <joshua@boniface.me>
2022-05-09Bump StyleCop.Analyzers from 1.2.0-beta.406 to 1.2.0-beta.435 (#7726)dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-17Merge pull request #7590 from crobibero/dotnet-6.0.4Joshua M. Boniface
(cherry picked from commit 5778541d2fa9a6a2732b715e8c60421e44e035da) Signed-off-by: Joshua Boniface <joshua@boniface.me>
2022-03-21Bump StyleCop.Analyzers from 1.2.0-beta.376 to 1.2.0-beta.406dependabot[bot]
Bumps [StyleCop.Analyzers](https://github.com/DotNetAnalyzers/StyleCopAnalyzers) from 1.2.0-beta.376 to 1.2.0-beta.406. - [Release notes](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/releases) - [Commits](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/compare/1.2.0-beta.376...1.2.0-beta.406) --- updated-dependencies: - dependency-name: StyleCop.Analyzers dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2022-03-11Merge pull request #7346 from Bond-009/guidClaus Vium
Optimize Guid comparisons
2022-03-08Update to dotnet 6.0.3Cody Robibero
2022-02-21Optimize Guid comparisonsBond_009
* Use Guid.Equals(Guid) instead of the == override * Ban the usage of Guid.Equals(Object) to prevent accidental boxing * Compare to default(Guid) instead of Guid.Empty
2022-02-08Update to dotnet 6.0.2Cody Robibero
Signed-off-by: Cody Robibero <cody@robibe.ro>
2022-02-07Bump System.Linq.Async from 5.1.0 to 6.0.1dependabot[bot]
Bumps [System.Linq.Async](https://github.com/dotnet/reactive) from 5.1.0 to 6.0.1. - [Release notes](https://github.com/dotnet/reactive/releases) - [Commits](https://github.com/dotnet/reactive/compare/ixnet-v5.1.0...ixnet-v6.0.1) --- updated-dependencies: - dependency-name: System.Linq.Async dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
2022-01-22Ban the usage of Task.ResultBond_009
If the calling function can't be made async easily you can still use .GetAwaiter().GetResult(), which is way easier to find in the future
2022-01-20Properly populate QueryResultCody Robibero
2021-12-30Merge pull request #7049 from crobibero/warn40219Bond-009
2021-12-27Fix device orderingCody Robibero
2021-12-27Remove more warningsCody Robibero
2021-12-24Update StyleCopBond_009
2021-12-20Use our own Contains extensioncvium
2021-12-14Update to dotnet 6.0.1Cody Robibero
2021-12-13Bump System.Linq.Async from 5.0.0 to 5.1.0dependabot[bot]
Bumps [System.Linq.Async](https://github.com/dotnet/reactive) from 5.0.0 to 5.1.0. - [Release notes](https://github.com/dotnet/reactive/releases) - [Commits](https://github.com/dotnet/reactive/compare/ixnet-v5.0.0...ixnet-v5.1.0) --- updated-dependencies: - dependency-name: System.Linq.Async dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2021-11-13Merge pull request #6818 from Bond-009/passwordCody Robibero
2021-11-12Fix Ombi auth through JellyfinNicholas Sica
2021-11-11Fix Ombi auth through JellyfinNicholas Sica
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-11-11Fixes Ombi auth through JellyfinNickSica
2021-11-10Replace PBKDF2-SHA1 with PBKDF2-SHA512Bond_009
This also migrates already created passwords on login Source for the number of iterations: https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html#pbkdf2
2021-11-09Fix some warningsBond_009
609 left
2021-11-08Update to full dotnet 6Cody Robibero
2021-10-26Enable nullable for more filesBond_009
2021-10-12Update to dotnet6.rc2Cody Robibero
2021-10-09Merge pull request #6676 from Bond-009/rngClaus Vium
Use static crypto rng
2021-10-08Merge pull request #6663 from crobibero/dotnet-6-rc1Claus Vium
Reference dotnet6-rc1 packages
2021-10-08Use static crypto rngBond_009
2021-10-07Return the path to the pinfile in forgot passwordcvium
2021-10-04Reference dotnet6-rc1 packagesCody Robibero
2021-10-03Fix warning: The nullable warning suppression expression is redundant (#2149)KonH
2021-09-24Target net6.0Bond_009
2021-09-19Upgrade to dotnet 5.0.10Cody Robibero
2021-09-07Fix typo in comment and remove useless onesFernando Fernández
2021-09-06Move model configuration to its own classesFernando Fernández
2021-09-06Log EFCore migrationsFernando Fernández
2021-09-06Merge pull request #6177 from Bond-009/asyncClaus Vium
Use async FileStreams where it makes sense
2021-09-03remove leading and trailing whitespace from the keycvium
2021-09-03fix the buildcvium
2021-09-03Merge branch 'master' into bug/authorization-header-issuecvium
2021-09-03Merge remote-tracking branch 'upstream/master' into authenticationdb-efcoreCody Robibero
2021-09-02Use async FileStreams where it makes senseBond_009
2021-08-31Update Jellyfin.Server.Implementations/Devices/DeviceManager.csPatrick Barron
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-08-15Update to dotnet 5.0.9Cody Robibero
2021-08-13Fix devices migrationPatrick Barron
2021-08-13Merge branch 'master' into authenticationdb-efcorePatrick Barron
# Conflicts: # Jellyfin.Server.Implementations/Security/AuthorizationContext.cs # MediaBrowser.Controller/Library/IUserManager.cs # MediaBrowser.Controller/Security/IAuthenticationRepository.cs # MediaBrowser.Controller/Session/ISessionManager.cs