Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Nov 6, 2024
1 parent 67cee7a commit 3c3d400
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
1 change: 1 addition & 0 deletions osu.ElasticIndexer.sln.DotSettings
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,7 @@ See the LICENCE file in the repository root for full licence text.
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpRenamePlacementToArrangementMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpUseContinuousIndentInsideBracesMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002EMemberReordering_002EMigrations_002ECSharpFileLayoutPatternRemoveIsAttributeUpgrade/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAddAccessorOwnerDeclarationBracesMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAlwaysTreatStructAsNotReorderableMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002ECSharpPlaceAttributeOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
Expand Down
2 changes: 1 addition & 1 deletion osu.ElasticIndexer/Commands/Index/ListIndicesCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class ListIndicesCommand

public virtual int OnExecute(CancellationToken token)
{
string[] activeSchemas = Redis.GetActiveSchemas();
string?[] activeSchemas = Redis.GetActiveSchemas();
string currentSchema = Redis.GetCurrentSchema();

Console.WriteLine("# Redis tracking");
Expand Down
8 changes: 6 additions & 2 deletions osu.ElasticIndexer/Commands/Index/NukeAllIndicesCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@ public override int OnExecute(CancellationToken token)
Redis.ClearCurrentSchema();

System.Console.WriteLine("Removing all active schemas..");
foreach (string schema in Redis.GetActiveSchemas())
Redis.RemoveActiveSchema(schema);

foreach (string? schema in Redis.GetActiveSchemas())
{
if (schema != null)
Redis.RemoveActiveSchema(schema);
}

System.Console.WriteLine("Removing all indices..");

Expand Down
16 changes: 8 additions & 8 deletions osu.ElasticIndexer/osu.ElasticIndexer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.24" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Dapper.Contrib" Version="2.0.78" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.0" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.1" />
<PackageReference Include="NEST" Version="7.17.5" />
<PackageReference Include="ppy.osu.Game" Version="2023.1207.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Catch" Version="2023.1207.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Mania" Version="2023.1207.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Osu" Version="2023.1207.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Taiko" Version="2023.1207.0" />
<PackageReference Include="ppy.osu.Server.OsuQueueProcessor" Version="2023.1207.0" />
<PackageReference Include="ppy.osu.Game" Version="2024.1104.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Catch" Version="2024.1104.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Mania" Version="2024.1104.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Osu" Version="2024.1104.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Taiko" Version="2024.1104.0" />
<PackageReference Include="ppy.osu.Server.OsuQueueProcessor" Version="2024.1101.2" />
</ItemGroup>
<ItemGroup>
<None Include="schemas/**/*">
Expand Down

0 comments on commit 3c3d400

Please sign in to comment.