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

Release 1.19.2 #2991

Merged
merged 22 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8d018ed
Update gitstream.cm minutes to review trigger rule
jjw24 Sep 5, 2024
a6817b4
fix cm regex case-insensitive
jjw24 Sep 8, 2024
6020a06
Bump Microsoft.NET.Test.Sdk from 17.11.0 to 17.11.1
dependabot[bot] Sep 9, 2024
8b3c844
Merge pull request #2960 from Flow-Launcher/min_review_trigger_rule
jjw24 Sep 10, 2024
f1a27f8
Merge pull request #2968 from Flow-Launcher/dependabot/nuget/Microsof…
jjw24 Sep 10, 2024
461746a
Bump BitFaster.Caching from 2.5.1 to 2.5.2
dependabot[bot] Sep 16, 2024
1064eaf
Bump CommunityToolkit.Mvvm from 8.3.0 to 8.3.1
dependabot[bot] Sep 16, 2024
e97d063
Merge pull request #2977 from Flow-Launcher/dependabot/nuget/Communit…
taooceros Sep 17, 2024
6f661ef
Merge pull request #2976 from Flow-Launcher/dependabot/nuget/BitFaste…
jjw24 Sep 20, 2024
9031b2f
reset position twice according to https://github.com/microsoft/PowerT…
taooceros Sep 21, 2024
1a85fca
use local function to make things slightly less ugly
taooceros Sep 21, 2024
e6fc35f
Bump MemoryPack from 1.21.1 to 1.21.3
dependabot[bot] Sep 23, 2024
9c0b819
Bump CommunityToolkit.Mvvm from 8.3.1 to 8.3.2 (#2989)
dependabot[bot] Sep 23, 2024
3fff92e
Merge pull request #2988 from Flow-Launcher/dependabot/nuget/MemoryPa…
jjw24 Sep 24, 2024
70195e0
add comment
jjw24 Sep 24, 2024
9d668a8
add comment
jjw24 Sep 24, 2024
d4f8b03
add comment
jjw24 Sep 24, 2024
4bf4282
add comment
jjw24 Sep 24, 2024
ffb7b32
Merge pull request #2983 from Flow-Launcher/fix-screen-position-multi…
jjw24 Sep 24, 2024
0987329
bump version
jjw24 Sep 24, 2024
6cebb95
New Crowdin updates (#2959)
jjw24 Sep 24, 2024
67cf6b6
Merge pull request #2990 from Flow-Launcher/bump_release
jjw24 Sep 24, 2024
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
3 changes: 3 additions & 0 deletions .cm/gitstream.cm
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ triggers:
branch:
- l10n_dev
- dev
- r/(?i)(Dependabot|Renovate)/
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@coderabbitai Provide a complete list of all merged PRs for milestone 1.19.2, search for bug label then do another search for enhancement label, ensuring that all results are captured by handling pagination properly. Categorise the result into features and bug fixes, and put features first. Format the result as numbered list, and show PR number with the title.

In a separate sentence, give me the assignees usernames excluding jjw24 and sorted in case insensitive alphabetical order.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jjw24,

Here is the complete list of all merged PRs for milestone 1.19.2, categorized into features and bug fixes:

Features:

(No features found)

Bug Fixes:

  1. PR Bump CommunityToolkit.Mvvm from 8.3.1 to 8.3.2 #2989: Bump CommunityToolkit.Mvvm from 8.3.1 to 8.3.2
  2. PR Bump MemoryPack from 1.21.1 to 1.21.3 #2988: Bump MemoryPack from 1.21.1 to 1.21.3
  3. PR Fix Multiple Display different DPI causing weird staring position #2983: Fix Multiple Display different DPI causing weird staring position
  4. PR Bump CommunityToolkit.Mvvm from 8.3.0 to 8.3.1 #2977: Bump CommunityToolkit.Mvvm from 8.3.0 to 8.3.1
  5. PR Bump BitFaster.Caching from 2.5.1 to 2.5.2 #2976: Bump BitFaster.Caching from 2.5.1 to 2.5.2
  6. PR Bump Microsoft.NET.Test.Sdk from 17.11.0 to 17.11.1 #2968: Bump Microsoft.NET.Test.Sdk from 17.11.0 to 17.11.1
  7. PR Update gitstream.cm minutes to review trigger rule #2960: Update gitstream.cm minutes to review trigger rule
  8. PR New Crowdin updates #2959: New Crowdin updates

Assignees (excluding jjw24), sorted in case-insensitive alphabetical order:

  • taooceros
Analysis chain
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Generate features list
gh pr list --state merged \
  --milestone "1.19.2" \
  --label "enhancement" \
  --json number,title,assignees \
  --limit 100 > features.json

# Generate bug fixes list
gh pr list --state merged \
  --milestone "1.19.2" \
  --label "bug" \
  --json number,title,assignees \
  --limit 100 > bugfixes.json

# Output features
echo "Features:"
jq -r 'to_entries[] | "\(.key + 1). PR #\(.value.number): \(.value.title)"' features.json

# Output bug fixes
echo ""
echo "Bug Fixes:"
jq -r 'to_entries[] | "\(.key + 1). PR #\(.value.number): \(.value.title)"' bugfixes.json

# Get assignees excluding 'jjw24', sorted case-insensitively
jq -r '.[] | select(.assignees != null) | .assignees[].login' features.json bugfixes.json | grep -vi '^jjw24$' | sort -fu > assignees.txt

# Display assignees
echo ""
echo "Assignees (excluding jjw24):"
cat assignees.txt

Length of output: 2472


Script:

#!/bin/bash
# Generate features list
gh pr list --state merged \
  --search 'milestone:"1.19.2" label:enhancement' \
  --json number,title,assignees \
  --limit 100 > features.json

# Generate bug fixes list
gh pr list --state merged \
  --search 'milestone:"1.19.2" label:bug' \
  --json number,title,assignees \
  --limit 100 > bugfixes.json

# Output features
echo "Features:"
jq -r 'to_entries[] | "\(.key + 1). PR #\(.value.number): \(.value.title)"' features.json

# Output bug fixes
echo ""
echo "Bug Fixes:"
jq -r 'to_entries[] | "\(.key + 1). PR #\(.value.number): \(.value.title)"' bugfixes.json

# Get assignees excluding 'jjw24', sorted case-insensitively
jq -r '.[] | select(.assignees != null) | .assignees[].login' features.json bugfixes.json | grep -vi '^jjw24$' | sort -fu > assignees.txt

# Display assignees
echo ""
echo "Assignees (excluding jjw24):"
cat assignees.txt

Length of output: 1180



automations:
# Add a label that indicates how many minutes it will take to review the PR.
estimated_time_to_review:
on:
- commit
if:
- true
run:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@

<ItemGroup>
<PackageReference Include="Ben.Demystifier" Version="0.4.1" />
<PackageReference Include="BitFaster.Caching" Version="2.5.1" />
<PackageReference Include="BitFaster.Caching" Version="2.5.2" />
<PackageReference Include="Fody" Version="6.5.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="MemoryPack" Version="1.21.1" />
<PackageReference Include="MemoryPack" Version="1.21.3" />
<PackageReference Include="Microsoft.VisualStudio.Threading" Version="17.10.48" />
<PackageReference Include="NLog" Version="4.7.10" />
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" />
Expand Down
2 changes: 1 addition & 1 deletion Flow.Launcher.Test/Flow.Launcher.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Flow.Launcher/Flow.Launcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
<PackageReference Include="Fody" Version="6.5.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion Flow.Launcher/Languages/es.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Startup -->
<system:String x:Key="runtimePluginInstalledChooseRuntimePrompt">
Flow ha detectado que tiene instalados {0} complementos, que necesitan {1} para funcionar. ¿Desea descargar {1}?
Flow ha detectado que tiene instalado(s) {0} complemento(s), que necesita(n) {1} para funcionar. ¿Desea descargar {1}?
{2}{2}
Haga clic en no si ya está instalado, y seleccione la carpeta que contiene el ejecutable {1}
</system:String>
Expand Down
242 changes: 121 additions & 121 deletions Flow.Launcher/Languages/pl.xaml

Large diffs are not rendered by default.

Loading
Loading