repo
stringlengths
5
53
pr_number
int32
1
321k
task_type
stringclasses
2 values
issue_text
stringlengths
0
81.2k
pr_title
stringlengths
1
319
pr_body
stringlengths
0
105k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
gold_diff
stringlengths
0
202M
changed_files
listlengths
0
100
review_threads
listlengths
0
100
test_patch
stringlengths
0
23.4M
merged
bool
1 class
PowerShell/PowerShell
27,385
comment_to_fix
Fix *nix permissions and use `certificate_logical_to_actual`
In this step `$pkgPath` is computed via `Select-Object -ExpandProperty FullName`, which will return an array when both regular and `-LTS` packages are produced. In that case the `if ($pkgPath -like '*.tar.gz')` branch will run, but `tar -tzvf $pkgPath` will be invoked with multiple archive paths and likely fail (or pro...
b9bd8cbc59762f4e4d4dc81a08e6b7417efd2937
47e0c13eb84bea932bde01d123d59f6f063ed2d7
diff --git a/.pipelines/templates/linux-package-build.yml b/.pipelines/templates/linux-package-build.yml index bb7ed723f42..a832268712c 100644 --- a/.pipelines/templates/linux-package-build.yml +++ b/.pipelines/templates/linux-package-build.yml @@ -1,9 +1,8 @@ parameters: unsignedDrop: 'drop_linux_build_linux_x64' ...
[ ".pipelines/templates/linux-package-build.yml" ]
[ { "comment": "In this step `$pkgPath` is computed via `Select-Object -ExpandProperty FullName`, which will return an array when both regular and `-LTS` packages are produced. In that case the `if ($pkgPath -like '*.tar.gz')` branch will run, but `tar -tzvf $pkgPath` will be invoked with multiple archive paths a...
true
PowerShell/PowerShell
27,385
comment_to_fix
Fix *nix permissions and use `certificate_logical_to_actual`
same as above.
b9bd8cbc59762f4e4d4dc81a08e6b7417efd2937
47e0c13eb84bea932bde01d123d59f6f063ed2d7
diff --git a/tools/packaging/packaging.psm1 b/tools/packaging/packaging.psm1 index a551a483c8d..4c0c5421ead 100644 --- a/tools/packaging/packaging.psm1 +++ b/tools/packaging/packaging.psm1 @@ -776,6 +776,18 @@ function New-TarballPackage { $Staging = "$PSScriptRoot/staging" New-StagingFolder -StagingPath $Sta...
[ "tools/packaging/packaging.psm1" ]
[ { "comment": "same as above.", "path": "tools/packaging/packaging.psm1", "hunk": "@@ -1194,7 +1206,11 @@ function New-UnixPackage {\n find $Staging -type f | xargs chmod 644\n chmod 644 $ManGzipInfo.GzipFile\n # refers to executable, does not vary by chann...
true
PowerShell/PowerShell
27,385
comment_to_fix
Fix *nix permissions and use `certificate_logical_to_actual`
same as above
b9bd8cbc59762f4e4d4dc81a08e6b7417efd2937
47e0c13eb84bea932bde01d123d59f6f063ed2d7
diff --git a/tools/packaging/packaging.psm1 b/tools/packaging/packaging.psm1 index a551a483c8d..4c0c5421ead 100644 --- a/tools/packaging/packaging.psm1 +++ b/tools/packaging/packaging.psm1 @@ -776,6 +776,18 @@ function New-TarballPackage { $Staging = "$PSScriptRoot/staging" New-StagingFolder -StagingPath $Sta...
[ "tools/packaging/packaging.psm1" ]
[ { "comment": "same as above", "path": "tools/packaging/packaging.psm1", "hunk": "@@ -1194,7 +1206,11 @@ function New-UnixPackage {\n find $Staging -type f | xargs chmod 644\n chmod 644 $ManGzipInfo.GzipFile\n # refers to executable, does not vary by channe...
true
PowerShell/PowerShell
27,385
comment_to_fix
Fix *nix permissions and use `certificate_logical_to_actual`
same as above
b9bd8cbc59762f4e4d4dc81a08e6b7417efd2937
47e0c13eb84bea932bde01d123d59f6f063ed2d7
diff --git a/tools/packaging/packaging.psm1 b/tools/packaging/packaging.psm1 index a551a483c8d..4c0c5421ead 100644 --- a/tools/packaging/packaging.psm1 +++ b/tools/packaging/packaging.psm1 @@ -776,6 +776,18 @@ function New-TarballPackage { $Staging = "$PSScriptRoot/staging" New-StagingFolder -StagingPath $Sta...
[ "tools/packaging/packaging.psm1" ]
[ { "comment": "same as above", "path": "tools/packaging/packaging.psm1", "hunk": "@@ -1874,6 +1890,12 @@ $(if ($extendedDescription) { $extendedDescription + \"`n\" })\n Start-NativeExecution { chmod 755 $pwshPath }\n }\n \n+ # Included .NET executable for producing crash dumps...
true
PowerShell/PowerShell
27,347
issue_to_patch
macOS package sometimes is blocked on macOS ## Issue When running the package you get a message like this ![image](https://user-images.githubusercontent.com/10873629/67424362-d6d3af80-f58a-11e9-9c59-1d837529bf8c.png) `"powershell-7.0.0-preview.5-osx-x64.pkg" can't be opened because Apple cannot check it for malicio...
Add macOS binary code signing and package notarization
# PR Summary Apple notarized installer! Resolves #10874, #27262, #23974, #24088, #19363, #10141, #16467, #12139, #18353, #15203, #4547, #2546, #1881, #19053 etc. ## PR Context We still need to apply the template signing so that Guardian tasks pass and so that script files are signed. After doing what's essenti...
11dc00159a1c1529aad26a48adcdfcde3a74ec99
12a9df72ce83091500d34084232d80f18365e8ab
diff --git a/.pipelines/templates/mac-package-build.yml b/.pipelines/templates/mac-package-build.yml index 6585773c743..154cb6c0257 100644 --- a/.pipelines/templates/mac-package-build.yml +++ b/.pipelines/templates/mac-package-build.yml @@ -76,6 +76,14 @@ jobs: # Diagnostics is not critical it passes every time it...
[ ".pipelines/templates/mac-package-build.yml", ".pipelines/templates/mac.yml", "assets/macos-entitlements.plist", "tools/packaging/packaging.psd1" ]
[ { "comment": "In this loop, `$signedPkg` elements are `FileInfo` objects. Passing `$_` directly to `Expand-Archive -Path` relies on implicit object-to-string conversion and can end up using only the file name rather than the full path depending on how it’s converted. Use the full path explicitly (e.g., `$_ .Ful...
true
PowerShell/PowerShell
27,347
comment_to_fix
Add macOS binary code signing and package notarization
In this loop, `$signedPkg` elements are `FileInfo` objects. Passing `$_` directly to `Expand-Archive -Path` relies on implicit object-to-string conversion and can end up using only the file name rather than the full path depending on how it’s converted. Use the full path explicitly (e.g., `$_ .FullName`) (and consider ...
11dc00159a1c1529aad26a48adcdfcde3a74ec99
12a9df72ce83091500d34084232d80f18365e8ab
diff --git a/.pipelines/templates/mac-package-build.yml b/.pipelines/templates/mac-package-build.yml index 6585773c743..154cb6c0257 100644 --- a/.pipelines/templates/mac-package-build.yml +++ b/.pipelines/templates/mac-package-build.yml @@ -76,6 +76,14 @@ jobs: # Diagnostics is not critical it passes every time it...
[ ".pipelines/templates/mac-package-build.yml" ]
[ { "comment": "In this loop, `$signedPkg` elements are `FileInfo` objects. Passing `$_` directly to `Expand-Archive -Path` relies on implicit object-to-string conversion and can end up using only the file name rather than the full path depending on how it’s converted. Use the full path explicitly (e.g., `$_ .Ful...
true
PowerShell/PowerShell
27,347
comment_to_fix
Add macOS binary code signing and package notarization
`throw "Package not found in: $signedPkg"` will produce an unhelpful message when `$signedPkg` is a collection (often rendering as `System.Object[]` or just file names). Consider including the directory searched (e.g., `$expandDir`) and the full zip path(s) you expanded (e.g., `$signedPkg.FullName -join ', '`) to make ...
11dc00159a1c1529aad26a48adcdfcde3a74ec99
12a9df72ce83091500d34084232d80f18365e8ab
diff --git a/.pipelines/templates/mac-package-build.yml b/.pipelines/templates/mac-package-build.yml index 6585773c743..154cb6c0257 100644 --- a/.pipelines/templates/mac-package-build.yml +++ b/.pipelines/templates/mac-package-build.yml @@ -76,6 +76,14 @@ jobs: # Diagnostics is not critical it passes every time it...
[ ".pipelines/templates/mac-package-build.yml" ]
[ { "comment": "`throw \"Package not found in: $signedPkg\"` will produce an unhelpful message when `$signedPkg` is a collection (often rendering as `System.Object[]` or just file names). Consider including the directory searched (e.g., `$expandDir`) and the full zip path(s) you expanded (e.g., `$signedPkg.FullNa...
true
PowerShell/PowerShell
27,347
comment_to_fix
Add macOS binary code signing and package notarization
Similar to the zip expansion, `$pkgFile` items are `FileInfo` objects. Passing `$_` directly to `Move-Item -Path` relies on implicit conversion; using `-LiteralPath $_.FullName` avoids path-resolution issues if the current directory isn’t `$expandDir` and makes the intent explicit. ```suggestion Move-Item -Lite...
11dc00159a1c1529aad26a48adcdfcde3a74ec99
12a9df72ce83091500d34084232d80f18365e8ab
diff --git a/.pipelines/templates/mac-package-build.yml b/.pipelines/templates/mac-package-build.yml index 6585773c743..154cb6c0257 100644 --- a/.pipelines/templates/mac-package-build.yml +++ b/.pipelines/templates/mac-package-build.yml @@ -76,6 +76,14 @@ jobs: # Diagnostics is not critical it passes every time it...
[ ".pipelines/templates/mac-package-build.yml" ]
[ { "comment": "Similar to the zip expansion, `$pkgFile` items are `FileInfo` objects. Passing `$_` directly to `Move-Item -Path` relies on implicit conversion; using `-LiteralPath $_.FullName` avoids path-resolution issues if the current directory isn’t `$expandDir` and makes the intent explicit.\n```suggestion\...
true
PowerShell/PowerShell
27,347
comment_to_fix
Add macOS binary code signing and package notarization
The entitlements file enables `com.apple.security.cs.allow-dyld-environment-variables`, which weakens the hardened runtime by allowing DYLD_* injection. Unless there's a demonstrated runtime requirement for PowerShell, consider removing this entitlement (or documenting why it’s required) and keeping the entitlements to...
11dc00159a1c1529aad26a48adcdfcde3a74ec99
12a9df72ce83091500d34084232d80f18365e8ab
diff --git a/assets/macos-entitlements.plist b/assets/macos-entitlements.plist new file mode 100644 index 00000000000..9d534f4f4bf --- /dev/null +++ b/assets/macos-entitlements.plist @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs...
[ "assets/macos-entitlements.plist" ]
[ { "comment": "The entitlements file enables `com.apple.security.cs.allow-dyld-environment-variables`, which weakens the hardened runtime by allowing DYLD_* injection. Unless there's a demonstrated runtime requirement for PowerShell, consider removing this entitlement (or documenting why it’s required) and keepi...
true
PowerShell/PowerShell
27,347
comment_to_fix
Add macOS binary code signing and package notarization
The Apple signing operation re-signs Mach-O binaries but only passes `--options=runtime`. `codesign` does not guarantee preserving existing entitlements on re-sign unless they’re explicitly re-applied or preserved, so the entitlements added earlier to `pwsh` may be dropped. Please ensure the ESRP/OneBranch signing step...
11dc00159a1c1529aad26a48adcdfcde3a74ec99
12a9df72ce83091500d34084232d80f18365e8ab
diff --git a/.pipelines/templates/mac.yml b/.pipelines/templates/mac.yml index 1699207c657..b22149d5e46 100644 --- a/.pipelines/templates/mac.yml +++ b/.pipelines/templates/mac.yml @@ -69,6 +69,14 @@ jobs: $psOptPath = "$(OB_OUTPUTDIRECTORY)/psoptions.json" Save-PSOptions -PSOptionsPath $psOptPath + ...
[ ".pipelines/templates/mac.yml" ]
[ { "comment": "The Apple signing operation re-signs Mach-O binaries but only passes `--options=runtime`. `codesign` does not guarantee preserving existing entitlements on re-sign unless they’re explicitly re-applied or preserved, so the entitlements added earlier to `pwsh` may be dropped. Please ensure the ESRP/...
true
PowerShell/PowerShell
27,347
comment_to_fix
Add macOS binary code signing and package notarization
This verification step checks that binaries are signed, but it doesn’t validate the hardened runtime / entitlements that the build relies on for notarization (especially for `pwsh`). Consider extending validation to assert `pwsh` is signed with runtime hardening enabled and contains the expected entitlements, so the pi...
11dc00159a1c1529aad26a48adcdfcde3a74ec99
12a9df72ce83091500d34084232d80f18365e8ab
diff --git a/.pipelines/templates/mac-package-build.yml b/.pipelines/templates/mac-package-build.yml index 6585773c743..154cb6c0257 100644 --- a/.pipelines/templates/mac-package-build.yml +++ b/.pipelines/templates/mac-package-build.yml @@ -76,6 +76,14 @@ jobs: # Diagnostics is not critical it passes every time it...
[ ".pipelines/templates/mac-package-build.yml" ]
[ { "comment": "This verification step checks that binaries are signed, but it doesn’t validate the hardened runtime / entitlements that the build relies on for notarization (especially for `pwsh`). Consider extending validation to assert `pwsh` is signed with runtime hardening enabled and contains the expected e...
true
PowerShell/PowerShell
27,472
issue_to_patch
[release/v7.5.7] Update PowerShell telemetry to respect the diagnostics and feedback setting on Windows
Backport of #27328 to release/v7.5.7 <!-- DO NOT MODIFY THIS COMMENT. IT IS AUTO-GENERATED. $$$originalprnumber:27328$$$ --> Triggered by @adityapatwardhan on behalf of @daxian-dbw Original CL Label: CL-General /cc @PowerShell/powershell-maintainers ## Impact **REQUIRED**: Choose either Tooling Impact...
d648dd17dac2fa5d9df9e9de6c31257e0f717594
f62eb155b840a39b2fe497e943b86db8ce0e11c4
diff --git a/src/PowerShell.Core.Instrumentation/PowerShell.Core.Instrumentation.man b/src/PowerShell.Core.Instrumentation/PowerShell.Core.Instrumentation.man index fb221cfe964..bb4e15351e5 100644 --- a/src/PowerShell.Core.Instrumentation/PowerShell.Core.Instrumentation.man +++ b/src/PowerShell.Core.Instrumentation/Pow...
[ "src/PowerShell.Core.Instrumentation/PowerShell.Core.Instrumentation.man", "src/System.Management.Automation/CoreCLR/CorePsPlatform.cs", "src/System.Management.Automation/engine/remoting/common/PSETWTracer.cs", "src/System.Management.Automation/utils/Telemetry.cs", "src/System.Management.Automation/utils/Wi...
[ { "comment": "```suggestion\n CanSendTelemetry = !GetEnvironmentVariableAsBool(name: _telemetryOptoutEnvVar, defaultValue: false)\n```", "path": "src/System.Management.Automation/utils/Telemetry.cs", "hunk": "@@ -178,537 +177,483 @@ public static class ApplicationInsightsTelemetry\n /...
diff --git a/test/powershell/engine/Basic/Telemetry.Tests.ps1 b/test/powershell/engine/Basic/Telemetry.Tests.ps1 index 2378b9e5a66..0da08316a56 100644 --- a/test/powershell/engine/Basic/Telemetry.Tests.ps1 +++ b/test/powershell/engine/Basic/Telemetry.Tests.ps1 @@ -5,8 +5,53 @@ # these tests aren't going to check that ...
true
PowerShell/PowerShell
27,472
comment_to_fix
[release/v7.5.7] Update PowerShell telemetry to respect the diagnostics and feedback setting on Windows
```suggestion CanSendTelemetry = !GetEnvironmentVariableAsBool(name: _telemetryOptoutEnvVar, defaultValue: false) ```
d648dd17dac2fa5d9df9e9de6c31257e0f717594
f62eb155b840a39b2fe497e943b86db8ce0e11c4
diff --git a/src/System.Management.Automation/utils/Telemetry.cs b/src/System.Management.Automation/utils/Telemetry.cs index 0fb3b9d94a2..7134e80df76 100644 --- a/src/System.Management.Automation/utils/Telemetry.cs +++ b/src/System.Management.Automation/utils/Telemetry.cs @@ -182,8 +182,17 @@ static ApplicationInsights...
[ "src/System.Management.Automation/utils/Telemetry.cs" ]
[ { "comment": "```suggestion\n CanSendTelemetry = !GetEnvironmentVariableAsBool(name: _telemetryOptoutEnvVar, defaultValue: false)\n```", "path": "src/System.Management.Automation/utils/Telemetry.cs", "hunk": "@@ -178,537 +177,483 @@ public static class ApplicationInsightsTelemetry\n /...
true
PowerShell/PowerShell
27,472
comment_to_fix
[release/v7.5.7] Update PowerShell telemetry to respect the diagnostics and feedback setting on Windows
`Utils.GetEnvironmentVariableAsBool` is referenced here, but there is no such method in `System.Management.Automation.Utils` in this branch (repo-wide search only finds this callsite). This will fail compilation. Either restore the previous private helper in `Telemetry.cs` or add/backport the helper method to `Utils` a...
d648dd17dac2fa5d9df9e9de6c31257e0f717594
f62eb155b840a39b2fe497e943b86db8ce0e11c4
diff --git a/src/System.Management.Automation/utils/Telemetry.cs b/src/System.Management.Automation/utils/Telemetry.cs index 0fb3b9d94a2..7134e80df76 100644 --- a/src/System.Management.Automation/utils/Telemetry.cs +++ b/src/System.Management.Automation/utils/Telemetry.cs @@ -182,8 +182,17 @@ static ApplicationInsights...
[ "src/System.Management.Automation/utils/Telemetry.cs" ]
[ { "comment": "`Utils.GetEnvironmentVariableAsBool` is referenced here, but there is no such method in `System.Management.Automation.Utils` in this branch (repo-wide search only finds this callsite). This will fail compilation. Either restore the previous private helper in `Telemetry.cs` or add/backport the help...
true
PowerShell/PowerShell
27,472
comment_to_fix
[release/v7.5.7] Update PowerShell telemetry to respect the diagnostics and feedback setting on Windows
This doesn't look right. Has the backport for https://github.com/PowerShell/PowerShell/pull/26269 been merged? Once it's merged, the conflict in this file should be trivial to fix.
d648dd17dac2fa5d9df9e9de6c31257e0f717594
f62eb155b840a39b2fe497e943b86db8ce0e11c4
diff --git a/src/System.Management.Automation/utils/Telemetry.cs b/src/System.Management.Automation/utils/Telemetry.cs index 0fb3b9d94a2..7134e80df76 100644 --- a/src/System.Management.Automation/utils/Telemetry.cs +++ b/src/System.Management.Automation/utils/Telemetry.cs @@ -182,8 +182,17 @@ static ApplicationInsights...
[ "src/System.Management.Automation/utils/Telemetry.cs" ]
[ { "comment": "This doesn't look right. Has the backport for https://github.com/PowerShell/PowerShell/pull/26269 been merged? Once it's merged, the conflict in this file should be trivial to fix.", "path": "src/System.Management.Automation/utils/Telemetry.cs", "hunk": "@@ -178,537 +177,483 @@ public stat...
true
PowerShell/PowerShell
27,472
comment_to_fix
[release/v7.5.7] Update PowerShell telemetry to respect the diagnostics and feedback setting on Windows
```suggestion CanSendTelemetry = !GetEnvironmentVariableAsBool(name: _telemetryOptoutEnvVar, defaultValue: false) ```
d648dd17dac2fa5d9df9e9de6c31257e0f717594
f62eb155b840a39b2fe497e943b86db8ce0e11c4
diff --git a/src/System.Management.Automation/utils/Telemetry.cs b/src/System.Management.Automation/utils/Telemetry.cs index 0fb3b9d94a2..7134e80df76 100644 --- a/src/System.Management.Automation/utils/Telemetry.cs +++ b/src/System.Management.Automation/utils/Telemetry.cs @@ -182,8 +182,17 @@ static ApplicationInsights...
[ "src/System.Management.Automation/utils/Telemetry.cs" ]
[ { "comment": "```suggestion\n CanSendTelemetry = !GetEnvironmentVariableAsBool(name: _telemetryOptoutEnvVar, defaultValue: false)\n```", "path": "src/System.Management.Automation/utils/Telemetry.cs", "hunk": "@@ -178,14 +178,26 @@ public static class ApplicationInsightsTelemetry\n ///...
true
PowerShell/PowerShell
27,479
issue_to_patch
[release/v7.5.7] Fix checks for local user config file paths
Backport of #26269 to release/v7.5.7 <!-- DO NOT MODIFY THIS COMMENT. IT IS AUTO-GENERATED. $$$originalprnumber:26269$$$ --> Triggered by @adityapatwardhan on behalf of @SeeminglyScience Original CL Label: CL-Engine /cc @PowerShell/powershell-maintainers Manual merge as co-pilot merge was incorrect. ...
3122d06b5e8cd6f1a1df22c74d0cd31045381219
6677fe7aafbae2774ef34f5fd6206a9318508734
diff --git a/src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHost.cs b/src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHost.cs index 8fc815f59e6..f454ab51e1d 100644 --- a/src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHost.cs +++ b/src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHost.cs @@ -153,13 ...
[ "src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHost.cs", "src/Microsoft.PowerShell.ConsoleHost/host/msh/UpdatesNotification.cs", "src/System.Management.Automation/CoreCLR/CorePsPlatform.cs", "src/System.Management.Automation/engine/CommandDiscovery.cs", "src/System.Management.Automation/engine/Module...
[ { "comment": "```suggestion\n CanSendTelemetry = !GetEnvironmentVariableAsBool(name: _telemetryOptoutEnvVar, defaultValue: false)\n```", "path": "src/System.Management.Automation/utils/Telemetry.cs", "hunk": "@@ -177,469 +179,474 @@ public static class ApplicationInsightsTelemetry\n s...
true
PowerShell/PowerShell
27,479
comment_to_fix
[release/v7.5.7] Fix checks for local user config file paths
```suggestion CanSendTelemetry = !GetEnvironmentVariableAsBool(name: _telemetryOptoutEnvVar, defaultValue: false) ```
3122d06b5e8cd6f1a1df22c74d0cd31045381219
6677fe7aafbae2774ef34f5fd6206a9318508734
diff --git a/src/System.Management.Automation/utils/Telemetry.cs b/src/System.Management.Automation/utils/Telemetry.cs index cffedb7c579..0fb3b9d94a2 100644 --- a/src/System.Management.Automation/utils/Telemetry.cs +++ b/src/System.Management.Automation/utils/Telemetry.cs @@ -164,6 +164,8 @@ public static class Applica...
[ "src/System.Management.Automation/utils/Telemetry.cs" ]
[ { "comment": "```suggestion\n CanSendTelemetry = !GetEnvironmentVariableAsBool(name: _telemetryOptoutEnvVar, defaultValue: false)\n```", "path": "src/System.Management.Automation/utils/Telemetry.cs", "hunk": "@@ -177,469 +179,474 @@ public static class ApplicationInsightsTelemetry\n s...
true
PowerShell/PowerShell
27,476
issue_to_patch
Revert "[release/v7.5.7] Fix checks for local user config file paths"
Reverts PowerShell/PowerShell#27459
948ffc0c48684ce84868d80cd3b9c9eee2125a5d
71f91a1ddb28b60a545ec3e9ce7f277da4e1b53f
diff --git a/src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHost.cs b/src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHost.cs index f454ab51e1d..8fc815f59e6 100644 --- a/src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHost.cs +++ b/src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHost.cs @@ -153,16 ...
[ "src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHost.cs", "src/Microsoft.PowerShell.ConsoleHost/host/msh/UpdatesNotification.cs", "src/System.Management.Automation/CoreCLR/CorePsPlatform.cs", "src/System.Management.Automation/engine/CommandDiscovery.cs", "src/System.Management.Automation/engine/Module...
[ { "comment": "The empty-path guard for `basePath` is now only applied to the all-users profile path. If `Platform.ConfigDirectory` is empty (it can be `string.Empty` on UNIX when directory creation fails; see `SelectProductNameForDirectory` returning empty on `UnauthorizedAccessException`), this will produce a ...
true
PowerShell/PowerShell
27,468
issue_to_patch
[release/v7.5.7] Fix *nix permissions and use `certificate_logical_to_actual`
Backport of #27385 to release/v7.5.7 <!-- DO NOT MODIFY THIS COMMENT. IT IS AUTO-GENERATED. $$$originalprnumber:27412$$$ --> Triggered by @adityapatwardhan on behalf of @andyleejordan Original CL Label: CL-BuildPackaging /cc @PowerShell/powershell-maintainers ## Impact **REQUIRED**: Choose either ...
b4905a1debf900dbfdac3ce4f6ed7722963b0f8b
a3983ea97426faf4378067ac9018c3d9838ce37b
diff --git a/.pipelines/templates/linux-package-build.yml b/.pipelines/templates/linux-package-build.yml index f0017c63d2e..6cc536e7779 100644 --- a/.pipelines/templates/linux-package-build.yml +++ b/.pipelines/templates/linux-package-build.yml @@ -1,9 +1,8 @@ parameters: unsignedDrop: 'drop_linux_build_linux_x64' ...
[ ".pipelines/templates/linux-package-build.yml", ".pipelines/templates/mac-package-build.yml", ".pipelines/templates/mac.yml", ".pipelines/templates/nupkg.yml", ".pipelines/templates/shouldSign.yml", ".pipelines/templates/stages/PowerShell-Packages-Stages.yml", ".pipelines/templates/windows-hosted-build....
[ { "comment": "When LTS is enabled, this filter can return both the regular and LTS tarballs, so `$pkgPath` is an array. Passing that array to `tar -tzvf` treats the extra paths as archive members (or otherwise only validates one archive), causing the Linux package job to fail or leave one tarball unvalidated. I...
true
PowerShell/PowerShell
27,475
issue_to_patch
[release/v7.4.16] Update branch for release
lts - Automated by PowerShell Bot > **Note for reviewers:** This PR uses transitive dependency pinning (`transitive=true`, `versionLock=minor`). If this is the first time this workflow has run on this branch, a large number of transitive dependencies may appear pinned. This is expected behavior.
790a3ab7532c45f823cf344a0729f4c041adf4c7
a4629f60bfdce7f723e0cdae5cc1bb6970fc694d
diff --git a/CHANGELOG/v7.4/dependencychanges.json b/CHANGELOG/v7.4/dependencychanges.json index 4d9bb6c41d0..87e26784baa 100644 --- a/CHANGELOG/v7.4/dependencychanges.json +++ b/CHANGELOG/v7.4/dependencychanges.json @@ -11,5 +11,18 @@ "AdvisoryUrls": [], "Justification": "Updated .NET SDK. Building with the ...
[ "CHANGELOG/v7.4/dependencychanges.json", "DotnetRuntimeMetadata.json", "global.json", "src/Microsoft.PowerShell.Commands.Utility/Microsoft.PowerShell.Commands.Utility.csproj", "src/Microsoft.PowerShell.SDK/Microsoft.PowerShell.SDK.csproj", "test/perf/dotnet-tools/BenchmarkDotNet.Extensions/BenchmarkDotNet...
[]
diff --git a/test/perf/dotnet-tools/BenchmarkDotNet.Extensions/BenchmarkDotNet.Extensions.csproj b/test/perf/dotnet-tools/BenchmarkDotNet.Extensions/BenchmarkDotNet.Extensions.csproj index d689ae96058..09f9db7fb31 100644 --- a/test/perf/dotnet-tools/BenchmarkDotNet.Extensions/BenchmarkDotNet.Extensions.csproj +++ b/tes...
true
PowerShell/PowerShell
27,474
issue_to_patch
Add the windowsTargetName for .NET 9
<!-- Anything that looks like this is a comment and can't be seen after the Pull Request is created. --> # PR Summary This pull request makes a small update to the `tools/findMissingNotices.targets.json` configuration file. The change adds an additional Windows target name for .NET 9.0. * Added `net9.0-windows...
b4905a1debf900dbfdac3ce4f6ed7722963b0f8b
12e4026e3989460b218ec6ca9a65dfb62e17ed1d
diff --git a/tools/findMissingNotices.targets.json b/tools/findMissingNotices.targets.json index fdef552c603..4da557d1982 100644 --- a/tools/findMissingNotices.targets.json +++ b/tools/findMissingNotices.targets.json @@ -1,5 +1,6 @@ { "dotnetTargetName": "net9.0", "windowsTargetNames": [ + "net9.0-windows8.0"...
[ "tools/findMissingNotices.targets.json" ]
[]
true
PowerShell/PowerShell
27,473
issue_to_patch
Add the windowsTargetName for .NET 8
<!-- Anything that looks like this is a comment and can't be seen after the Pull Request is created. --> # PR Summary This pull request adds support for the `net8.0-windows8.0` target to the `tools/findMissingNotices.targets.json` configuration file. This ensures that the tool can now handle projects targeting th...
17da8c9269a4a1d0774d1e0cfa1727096befadc4
cb3a878839c95b873809521dacb881949cf81559
diff --git a/tools/findMissingNotices.targets.json b/tools/findMissingNotices.targets.json index b2defa40c7b..00f10e41a3b 100644 --- a/tools/findMissingNotices.targets.json +++ b/tools/findMissingNotices.targets.json @@ -1,5 +1,6 @@ { "dotnetTargetName": "net8.0", "windowsTargetNames": [ + "net8.0-windows8.0"...
[ "tools/findMissingNotices.targets.json" ]
[]
true
QuantConnect/Lean
9,529
issue_to_patch
Improve flat equity curve analysis solutions
affb275758ddd2e6c48a2ced96d05676052d5800
bbdec0efab7718e8ac4ecba523ef68b81f5baa25
diff --git a/Engine/Results/Analysis/Analyses/FlatEquityCurveAnalysis.cs b/Engine/Results/Analysis/Analyses/FlatEquityCurveAnalysis.cs index f62ae972f02a..53624d4ada1b 100644 --- a/Engine/Results/Analysis/Analyses/FlatEquityCurveAnalysis.cs +++ b/Engine/Results/Analysis/Analyses/FlatEquityCurveAnalysis.cs @@ -80,14 +80...
[ "Engine/Results/Analysis/Analyses/FlatEquityCurveAnalysis.cs" ]
[]
true
QuantConnect/Lean
9,528
issue_to_patch
Revert "Market-hours aware intraday consolidation"
Reverts QuantConnect/Lean#9516
90261c89ee592bd2aeb45f612b2a1b8fe1c33ad6
5ff21cade25f49473cb7824c8984145d2f0396f3
diff --git a/Algorithm.CSharp/MarketHourAwareIntradayConsolidationRegressionAlgorithm.cs b/Algorithm.CSharp/MarketHourAwareIntradayConsolidationRegressionAlgorithm.cs deleted file mode 100644 index b76bdbe5be6e..000000000000 --- a/Algorithm.CSharp/MarketHourAwareIntradayConsolidationRegressionAlgorithm.cs +++ /dev/null...
[ "Algorithm.CSharp/MarketHourAwareIntradayConsolidationRegressionAlgorithm.cs", "Algorithm.Python/MarketHourAwareIntradayConsolidationRegressionAlgorithm.py", "Common/AlgorithmImports.py", "Common/Data/Consolidators/MarketHourAwareConsolidator.cs", "Common/Util/LeanData.cs", "Tests/Common/Data/MarketHourAw...
[]
diff --git a/Tests/Common/Data/MarketHourAwareConsolidatorTests.cs b/Tests/Common/Data/MarketHourAwareConsolidatorTests.cs index d6153996dee2..3ad59c56396b 100644 --- a/Tests/Common/Data/MarketHourAwareConsolidatorTests.cs +++ b/Tests/Common/Data/MarketHourAwareConsolidatorTests.cs @@ -21,7 +21,6 @@ using QuantConnect...
true
QuantConnect/Lean
9,523
issue_to_patch
Few minor fixes for OrderFillsDuringExtendedMarketHoursAnalysis
9b89c166ff4c6cd5f55d1a9d26118c83c5543c0c
6e553b8707d74ad53932c89c8cad7d51dd39395e
diff --git a/Engine/Results/Analysis/Analyses/OrderFillsDuringExtendedMarketHoursAnalysis.cs b/Engine/Results/Analysis/Analyses/OrderFillsDuringExtendedMarketHoursAnalysis.cs index 44ff63206c30..e835704cf3b5 100644 --- a/Engine/Results/Analysis/Analyses/OrderFillsDuringExtendedMarketHoursAnalysis.cs +++ b/Engine/Result...
[ "Engine/Results/Analysis/Analyses/OrderFillsDuringExtendedMarketHoursAnalysis.cs", "Engine/TransactionHandlers/BrokerageTransactionHandler.cs" ]
[]
true
QuantConnect/Lean
9,516
issue_to_patch
Market Hours Aware Consolidators #### Expected Behavior Consolidators are market-hours aware. In other words, they only account for market hours. For example, US Equity opens at 9:30, so if we are using 7-min bars, the first bar will be at 9:37 AM. If we use extended hours, the first bar will be 4:07 AM. #### Actual ...
Market-hours aware intraday consolidation
<!--- Provide a general summary of your changes in the Title above --> #### Description Adds a TimeSpan period constructor to MarketHourAwareConsolidator that anchors each intraday bar to the market open without extending past the close. #### Related Issue Closes #9480 #### Motivation and Context N/A ###...
02d0dfac4574ec4074776cd0e93e82cecaf727f1
d97624a994f60213f7f2db71cb30e227919be55b
diff --git a/Algorithm.CSharp/MarketHourAwareIntradayConsolidationRegressionAlgorithm.cs b/Algorithm.CSharp/MarketHourAwareIntradayConsolidationRegressionAlgorithm.cs new file mode 100644 index 000000000000..b76bdbe5be6e --- /dev/null +++ b/Algorithm.CSharp/MarketHourAwareIntradayConsolidationRegressionAlgorithm.cs @@ ...
[ "Algorithm.CSharp/MarketHourAwareIntradayConsolidationRegressionAlgorithm.cs", "Algorithm.Python/MarketHourAwareIntradayConsolidationRegressionAlgorithm.py", "Common/AlgorithmImports.py", "Common/Data/Consolidators/MarketHourAwareConsolidator.cs", "Common/Util/LeanData.cs", "Tests/Common/Data/MarketHourAw...
[]
diff --git a/Tests/Common/Data/MarketHourAwareConsolidatorTests.cs b/Tests/Common/Data/MarketHourAwareConsolidatorTests.cs index 3ad59c56396b..d6153996dee2 100644 --- a/Tests/Common/Data/MarketHourAwareConsolidatorTests.cs +++ b/Tests/Common/Data/MarketHourAwareConsolidatorTests.cs @@ -21,6 +21,7 @@ using QuantConnect...
true
QuantConnect/Lean
9,517
issue_to_patch
Minor MarketHourAwareConsolidator tweak
02656df2aec1fa657f909be7e43a67f8692f9988
9b9aa1c2e510155980e02869c674a779e3e6cf91
diff --git a/Common/Data/Consolidators/MarketHourAwareConsolidator.cs b/Common/Data/Consolidators/MarketHourAwareConsolidator.cs index 27676b2aeb4a..b674cfd9d1f8 100644 --- a/Common/Data/Consolidators/MarketHourAwareConsolidator.cs +++ b/Common/Data/Consolidators/MarketHourAwareConsolidator.cs @@ -85,38 +85,40 @@ publi...
[ "Common/Data/Consolidators/MarketHourAwareConsolidator.cs" ]
[]
true
QuantConnect/Lean
9,494
issue_to_patch
feature: add bloomberg fix brokerage model
#### Description Add a `BloombergFixBrokerageModel` for the Bloomberg FixNet HUB FIX brokerage. The model lists the security types and order types Bloomberg's FixNet HUB accepts, and forces a margin account. #### Related PR(s) N/A #### Related Issue N/A #### Motivation and Context The Bloomberg FIX brokera...
261366a7e26ae942df858ab20df4fef8fa07de67
999815d4f6642f06d4f69f33eae622de01d863dc
diff --git a/Common/Brokerages/BloombergFixBrokerageModel.cs b/Common/Brokerages/BloombergFixBrokerageModel.cs new file mode 100644 index 000000000000..6891b4702ae5 --- /dev/null +++ b/Common/Brokerages/BloombergFixBrokerageModel.cs @@ -0,0 +1,98 @@ +/* + * QUANTCONNECT.COM - Democratizing Finance, Empowering Individua...
[ "Common/Brokerages/BloombergFixBrokerageModel.cs" ]
[]
true
QuantConnect/Lean
9,511
issue_to_patch
Add support for report log type
<!--- Provide a general summary of your changes in the Title above --> #### Description <!--- Describe your changes in detail --> Add support for report log type #### Related Issue <!--- This project only accepts pull requests related to open issues --> <!--- If suggesting a new feature or change, please di...
b27d79a0812ef733acefd26f405bf9c4e953adf2
f4bd27b31119224d4b1de1ebacf0da63020abc9d
diff --git a/Engine/Engine.cs b/Engine/Engine.cs index 6de6c7237dbf..691d8db248c9 100644 --- a/Engine/Engine.cs +++ b/Engine/Engine.cs @@ -91,6 +91,9 @@ public void Run(AlgorithmNodePacket job, AlgorithmManager manager, string assemb try { + // Initialize Logger + ...
[ "Engine/Engine.cs", "Logging/CompositeLogHandler.cs", "Logging/ConsoleErrorLogHandler.cs", "Logging/ConsoleLogHandler.cs", "Logging/FileLogHandler.cs", "Logging/FunctionalLogHandler.cs", "Logging/ILogHandler.cs", "Logging/Log.cs", "Logging/LogType.cs", "Logging/QueueLogHandler.cs", "Research/Qua...
[]
diff --git a/Tests/AlgorithmRunner.cs b/Tests/AlgorithmRunner.cs index ec0199e3e8ab..c891e23d4592 100644 --- a/Tests/AlgorithmRunner.cs +++ b/Tests/AlgorithmRunner.cs @@ -133,7 +133,7 @@ public static AlgorithmRunnerResults RunLocalBacktest( if (returnLogs) { var s...
true
QuantConnect/Lean
9,515
issue_to_patch
Minor quotebar constructor tweak
9b6203ceca86303c038c7c3b63f4b828410a8868
488abcaf89194ad6c81a5230c2bf8ef60e0d8aa3
diff --git a/Common/Data/Market/QuoteBar.cs b/Common/Data/Market/QuoteBar.cs index 0bc57fd9f075..64f23e232d8d 100644 --- a/Common/Data/Market/QuoteBar.cs +++ b/Common/Data/Market/QuoteBar.cs @@ -210,14 +210,26 @@ public override DateTime EndTime /// Default initializer to setup an empty quotebar. /// ...
[ "Common/Data/Market/QuoteBar.cs" ]
[]
true
QuantConnect/Lean
9,514
issue_to_patch
task: remove extraneous defaults from Isolator/MonitorTask
- ExecuteWithTimeLimit -- the only user of private MonitorTask -- already defines the defaults for memoryCap & sleepInterval #### Types of changes <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [x] Refa...
b27d79a0812ef733acefd26f405bf9c4e953adf2
44754be0c122dee055f3ddf7c3385de63136b022
diff --git a/Common/Isolator.cs b/Common/Isolator.cs index db2795538b0c..626c50bead24 100644 --- a/Common/Isolator.cs +++ b/Common/Isolator.cs @@ -82,11 +82,11 @@ public bool ExecuteWithTimeLimit(TimeSpan timeSpan, Func<IsolatorLimitResult> wi private bool MonitorTask(Task task, TimeSpan timeSpan,...
[ "Common/Isolator.cs", "Configuration/CommandLineOption.cs", "Configuration/LeanArgumentParser.cs", "Configuration/ToolboxArgumentParser.cs", "Engine/TransactionHandlers/BrokerageTransactionHandler.cs", "Indicators/RelativeMovingAverage.cs" ]
[]
true
QuantConnect/Lean
9,509
issue_to_patch
`PandasColumn.__eq__` breaks DataFrame operations (e.g. `groupby(level=[...])`) #### Expected Behavior <!--- Required. Describe the behavior you expect to see for your case. --> The following code block runs without error ``` qb = QuantBook() qb.set_start_date(2026, 1, 1) qb.settings.daily_precise_end_time = False de...
Fix PandasColumn equality with non-string values
<!--- Provide a general summary of your changes in the Title above --> #### Description PandasColumn labels wrongly returned True when compared to None, ints or floats instead of False. Now they only compare equal to matching strings. #### Related Issue Closes #9507 #### Motivation and Context N/A #### ...
24afc50dbee0334d7cf3f71f5bd4c07c80a18896
a747939803dbd162231da306cfe9f2ead352f015
diff --git a/Common/PandasMapper.py b/Common/PandasMapper.py index c18bd1812a83..cde0311c42df 100644 --- a/Common/PandasMapper.py +++ b/Common/PandasMapper.py @@ -37,7 +37,10 @@ def __new__(cls, key): def __eq__(self, other): # We need this since Lean created data frames might contain Symbol objects in ...
[ "Common/PandasMapper.py", "Tests/Python/PandasIndexingTests.cs", "Tests/Python/PandasTests/PandasIndexingTests.py" ]
[]
diff --git a/Tests/Python/PandasIndexingTests.cs b/Tests/Python/PandasIndexingTests.cs index c57999fbc8b2..0644ff1ec372 100644 --- a/Tests/Python/PandasIndexingTests.cs +++ b/Tests/Python/PandasIndexingTests.cs @@ -85,5 +85,17 @@ public void ExpectedException() Assert.IsTrue(exception.Contains("No key ...
true
QuantConnect/Lean
9,362
issue_to_patch
feature: add webull brokerage core integration
#### Description Adds Webull brokerage core integration to Lean: `WebullBrokerageModel`, `WebullFeeModel`, `WebullOrderProperties`, and supporting tests. #### Related PR(s) - https://github.com/QuantConnect/Lean.Brokerages.WeBull/pull/1 - https://github.com/QuantConnect/lean-cli/pull/645 #### Related Issue N/...
261366a7e26ae942df858ab20df4fef8fa07de67
c3a1d738e24d9dd69181e9067f60bdb0dac36df0
diff --git a/Common/Brokerages/BrokerageName.cs b/Common/Brokerages/BrokerageName.cs index 7f6edaab7a5e..9a1b7a994c71 100644 --- a/Common/Brokerages/BrokerageName.cs +++ b/Common/Brokerages/BrokerageName.cs @@ -197,6 +197,11 @@ public enum BrokerageName /// <summary> /// Transaction and submit/executi...
[ "Common/Brokerages/BrokerageName.cs", "Common/Brokerages/IBrokerageModel.cs", "Common/Brokerages/WebullBrokerageModel.cs", "Common/Messages/Messages.Brokerages.cs", "Common/Orders/Fees/WebullFeeModel.cs", "Common/Orders/WebullOrderProperties.cs", "Launcher/config.json", "Tests/Brokerages/TestHelpers.c...
[]
diff --git a/Tests/Brokerages/TestHelpers.cs b/Tests/Brokerages/TestHelpers.cs index 58396da12747..eeb4a31aa1fa 100644 --- a/Tests/Brokerages/TestHelpers.cs +++ b/Tests/Brokerages/TestHelpers.cs @@ -58,9 +58,12 @@ private static SubscriptionDataConfig CreateConfig(string symbol, string market, brea...
true
QuantConnect/Lean
9,502
issue_to_patch
Add EMSX locate properties to TerminalLinkOrderProperties
#### Description Adds two new properties to `TerminalLinkOrderProperties` so algorithms can attach Reg SHO locate information to short equity sales routed through Bloomberg EMSX: - `LocateBroker` (`string`) — counterparty broker code the shares are borrowed from (e.g. `"BMTB"`), emitted as `EMSX_LOCATE_BROKER` - `Loca...
e1488ca1332e531cdcf6be111490d4923ab6f15d
09174069937e147ec3b67c4dc54a9468c2a463ea
diff --git a/Common/Orders/TerminalLinkOrderProperties.cs b/Common/Orders/TerminalLinkOrderProperties.cs index 44b9a43105b6..333133dc0fa0 100644 --- a/Common/Orders/TerminalLinkOrderProperties.cs +++ b/Common/Orders/TerminalLinkOrderProperties.cs @@ -74,6 +74,20 @@ public class TerminalLinkOrderProperties : OrderProper...
[ "Common/Orders/TerminalLinkOrderProperties.cs", "Tests/Common/Orders/TerminalLinkOrderPropertiesTests.cs" ]
[]
diff --git a/Tests/Common/Orders/TerminalLinkOrderPropertiesTests.cs b/Tests/Common/Orders/TerminalLinkOrderPropertiesTests.cs index 034e5b846559..df86a02882d1 100644 --- a/Tests/Common/Orders/TerminalLinkOrderPropertiesTests.cs +++ b/Tests/Common/Orders/TerminalLinkOrderPropertiesTests.cs @@ -65,5 +65,40 @@ def getOrd...
true
QuantConnect/Lean
9,504
issue_to_patch
GreeksIndicators Yeilds Implied Volatility with Zero Value for 0DTE SPXW in Live Mode #### Expected Behavior Non-zero IV and Greeks for 0DTE SPXW in live mode. #### Actual Behavior Zero IV and Greeks for 0DTE SPXW in live mode QuantLib models have non-zero values and 1DTE with GreeksIndicators too #### Potential S...
Fix PM-settled index options settlement time on 3rd Friday
<!--- Provide a general summary of your changes in the Title above --> #### Description `GetSettlementDateTime` was applying AM settlement to PM-settled tickers (SPXW, RUTW, etc.) on the 3rd Friday because `IsStandard()` only checked the date, not the ticker. This made `timeTillExpiry` negative, zeroing out IV and ...
b68e9c8b6080ad8f534f8f973ed0d74075346b69
b59eb799dc4cd0c6692187c9596eacfa7b3efddd
diff --git a/Common/Securities/IndexOption/IndexOptionSymbol.cs b/Common/Securities/IndexOption/IndexOptionSymbol.cs index 49420285910c..2ddf0e41b87d 100644 --- a/Common/Securities/IndexOption/IndexOptionSymbol.cs +++ b/Common/Securities/IndexOption/IndexOptionSymbol.cs @@ -73,17 +73,25 @@ public static bool IsStandard...
[ "Common/Securities/IndexOption/IndexOptionSymbol.cs", "Common/Securities/Option/OptionSymbol.cs", "Tests/Common/Securities/Options/OptionSymbolTests.cs", "Tests/Indicators/DeltaTests.cs" ]
[]
diff --git a/Tests/Common/Securities/Options/OptionSymbolTests.cs b/Tests/Common/Securities/Options/OptionSymbolTests.cs index f87317d42b2d..d5d15e1ed575 100644 --- a/Tests/Common/Securities/Options/OptionSymbolTests.cs +++ b/Tests/Common/Securities/Options/OptionSymbolTests.cs @@ -16,6 +16,7 @@ using System; using S...
true
QuantConnect/Lean
9,495
issue_to_patch
Add optimization analysis
<!--- Provide a general summary of your changes in the Title above --> #### Description <!--- Describe your changes in detail --> #### Related Issue <!--- This project only accepts pull requests related to open issues --> <!--- If suggesting a new feature or change, please discuss it in an issue first --> <!-...
261366a7e26ae942df858ab20df4fef8fa07de67
ca11aea211dcd679a11a8fab56064da8d5ce1cfa
diff --git a/Common/Api/Optimization.cs b/Common/Api/Optimization.cs index d408f5d5e77c..cdfe5b50adc9 100644 --- a/Common/Api/Optimization.cs +++ b/Common/Api/Optimization.cs @@ -16,6 +16,7 @@ using System; using System.Collections.Generic; using Newtonsoft.Json; +using QuantConnect.Optimizer; using QuantConnect.Op...
[ "Common/Api/Optimization.cs", "Common/Optimizer/Analysis/OptimizationAnalysisRunParameters.cs", "Common/Optimizer/BacktestSummary.cs", "Common/Optimizer/Cluster.cs", "Common/Optimizer/FailedBacktestSummary.cs", "Common/Optimizer/LinearSegment.cs", "Common/Optimizer/Mode.cs", "Common/Optimizer/Optimiza...
[]
diff --git a/Tests/Optimizer/Analysis/LeanOptimizerAnalysisTests.cs b/Tests/Optimizer/Analysis/LeanOptimizerAnalysisTests.cs new file mode 100644 index 000000000000..9b0a0a209b4b --- /dev/null +++ b/Tests/Optimizer/Analysis/LeanOptimizerAnalysisTests.cs @@ -0,0 +1,150 @@ +/* + * QUANTCONNECT.COM - Democratizing Finance...
true
QuantConnect/Lean
9,501
issue_to_patch
universe_history not working for CoinGeckoUniverse #### Expected Behavior <!--- Required. Describe the behavior you expect to see for your case. --> The following code snippet produces a non-empty `universe_history` #### Actual Behavior <!--- Required. Describe the actual behavior for your case. --> The DataFrame we ...
Fix UniverseHistory empty results when selection returns different security type
<!--- Provide a general summary of your changes in the Title above --> #### Description Fixes UniverseHistory returning no data when the user's selection function returns symbols of a different SecurityType than the universe data, by falling back to base/quote currency matching. #### Related Issue Closes #9351 ...
261366a7e26ae942df858ab20df4fef8fa07de67
e1830fe01e55877743b43730085471cb735e6295
diff --git a/Research/QuantBook.cs b/Research/QuantBook.cs index d7577cad7e7e..feaff26c4c29 100644 --- a/Research/QuantBook.cs +++ b/Research/QuantBook.cs @@ -940,6 +940,7 @@ private IEnumerable<BaseDataCollection> RunUniverseSelection(Universe universe, var history = History(universe, start, endDate); ...
[ "Research/QuantBook.cs", "Tests/Research/QuantBookSelectionTests.cs" ]
[]
diff --git a/Tests/Research/QuantBookSelectionTests.cs b/Tests/Research/QuantBookSelectionTests.cs index f8f82407fdeb..d3fc2865db4a 100644 --- a/Tests/Research/QuantBookSelectionTests.cs +++ b/Tests/Research/QuantBookSelectionTests.cs @@ -15,13 +15,17 @@ using System; using System.Linq; +using System.Reflection; u...
true
QuantConnect/Lean
9,400
issue_to_patch
Adds Support to Mini VIX (VXM) Futures #### Expected Behavior Support VIX Mini Futures. #### Actual Behavior Not supported. #### Potential Solution See contract specifications on: https://cdn.cboe.com/resources/futures/VXM_Contract_Specifications.pdf #### Checklist - [x] I have completely filled out this...
Add VIX Mini Futures (VXM) Support
## Summary - Add Futures.Indices.VIXMini = "VXM" constant to support VIX Mini Futures - Implement expiry function: 30 days before third Friday of following month - Add symbol properties: multiplier 100, tick size 0.01 (USD) - Add 15 test data pairs (2023-2025) to FuturesExpiryFunctionsTestData.xml - Add test case with ...
a2537513bd1def21422fb81b2b8dcb1d9f723610
33eee65e27521c65979146ad7676462463f33829
diff --git a/Common/Securities/Future/Futures.cs b/Common/Securities/Future/Futures.cs index 9227eb4ff3da..2c228068d1a4 100644 --- a/Common/Securities/Future/Futures.cs +++ b/Common/Securities/Future/Futures.cs @@ -1388,6 +1388,12 @@ public static class Indices /// <returns>The symbol</returns> ...
[ "Common/Securities/Future/Futures.cs", "Common/Securities/Future/FuturesExpiryFunctions.cs", "Data/future/cfe/margins/VXM.csv", "Data/market-hours/market-hours-database.json", "Data/symbol-properties/symbol-properties-database.csv", "Tests/Common/Securities/Futures/FuturesExpiryFunctionsTests.cs", "Test...
[ { "comment": "Minor but this is blindly shifting a day backwards, doesn't validate it's a tradable date, just if it's a holiday, which seems error prone?", "path": "Common/Securities/Future/FuturesExpiryFunctions.cs", "hunk": "@@ -543,6 +543,26 @@ public static Func<DateTime, DateTime> FuturesExpiryFunc...
diff --git a/Tests/Common/Securities/Futures/FuturesExpiryFunctionsTests.cs b/Tests/Common/Securities/Futures/FuturesExpiryFunctionsTests.cs index e1522d91b895..4bf4d3959d91 100644 --- a/Tests/Common/Securities/Futures/FuturesExpiryFunctionsTests.cs +++ b/Tests/Common/Securities/Futures/FuturesExpiryFunctionsTests.cs @...
true
QuantConnect/Lean
9,493
issue_to_patch
Feeder Cattle (GF) futures tick size is 100x too large in symbol-properties-database ### Expected Behavior The CME Feeder Cattle (`GF`) futures contract should have a minimum price fluctuation of **$0.00025 per pound** (= $12.50 per tick on a 50,000 lb contract), matching the official [CME contract specs](https://www...
Fix Feeder Cattle (GF) tick size in symbol-properties-database
#### Description Corrects the `minimum_price_variation` for CME Feeder Cattle (`GF`) futures in `Data/symbol-properties/symbol-properties-database.csv` from `0.025` to `0.00025`: ```diff -cme,GF,future,Feeder Cattle Futures,USD,50000.0,0.025,1.0,,1,100 +cme,GF,future,Feeder Cattle Futures,USD,50000.0,0.00025,1.0,,1,1...
a2537513bd1def21422fb81b2b8dcb1d9f723610
9ade8fbb121a36c107fe26da714939e945793519
diff --git a/Data/symbol-properties/symbol-properties-database.csv b/Data/symbol-properties/symbol-properties-database.csv index 88695433c21a..cb0c86b3ece7 100644 --- a/Data/symbol-properties/symbol-properties-database.csv +++ b/Data/symbol-properties/symbol-properties-database.csv @@ -272,7 +272,7 @@ cme,FT5,future,E-...
[ "Data/symbol-properties/symbol-properties-database.csv" ]
[]
true
QuantConnect/Lean
9,490
issue_to_patch
ScheduledUniverse.GetTriggerTimes ignores endTimeUtc's time part #### Expected Behavior The `ScheduledUniverse.GetTriggerTimes` method should return only the datetimes between its arguments `startTimeUtc` and `endTimeUtc`. It should be explicitly noted in the documentation whether the result will include the bounds if...
Fix ScheduledUniverse emitting triggers past end time
<!--- Provide a general summary of your changes in the Title above --> #### Description ScheduledUniverse was yielding trigger times beyond endTimeUtc, causing backtests to run past the intended end date #### Related Issue Closes #9349 #### Motivation and Context N/A #### Requires Documentation Change N...
65aecb4fb03abb0de2411833195f82279a021377
5fe84e116da5c677a4217540ed40cccc89c6a336
diff --git a/Algorithm.CSharp/BaseFrameworkRegressionAlgorithm.cs b/Algorithm.CSharp/BaseFrameworkRegressionAlgorithm.cs index ccff70d0a247..e9d15eefa827 100644 --- a/Algorithm.CSharp/BaseFrameworkRegressionAlgorithm.cs +++ b/Algorithm.CSharp/BaseFrameworkRegressionAlgorithm.cs @@ -80,7 +80,7 @@ public override void On...
[ "Algorithm.CSharp/BaseFrameworkRegressionAlgorithm.cs", "Algorithm.CSharp/EmaCrossAlphaModelFrameworkRegressionAlgorithm.cs", "Algorithm.CSharp/HistoricalReturnsAlphaModelFrameworkRegressionAlgorithm.cs", "Algorithm.CSharp/MacdAlphaModelFrameworkRegressionAlgorithm.cs", "Algorithm.CSharp/OnWarmupFinishedSch...
[]
diff --git a/Tests/Common/Data/UniverseSelection/ScheduledUniverseTests.cs b/Tests/Common/Data/UniverseSelection/ScheduledUniverseTests.cs index 12d98119ccc7..727d82d16373 100644 --- a/Tests/Common/Data/UniverseSelection/ScheduledUniverseTests.cs +++ b/Tests/Common/Data/UniverseSelection/ScheduledUniverseTests.cs @@ -4...
true
QuantConnect/Lean
9,489
issue_to_patch
Improve Universe Parameter Type for Python #### Expected Behavior The universe selection parameter is a list and we can access the list semantics ```python def _fundamental_filter(self, fundamentals: List[Fundamental]) -> List[Symbol]: f = fundamentals[0] count = len(fundamentals) ``` #### Actual Behavior Th...
Support list operations on universe selection
<!--- Provide a general summary of your changes in the Title above --> #### Description <!--- Describe your changes in detail --> Support indexing memoizing enumerable. Pass MemoizingEnumerable to universe selectors. #### Related Issue <!--- This project only accepts pull requests related to open issues -->...
d2daf42d34a0c97225794e9b1afaef820434db69
b1a9920494e3a44a47844ad583e09724780309ad
diff --git a/Common/Data/UniverseSelection/CoarseFundamentalUniverse.cs b/Common/Data/UniverseSelection/CoarseFundamentalUniverse.cs index ed67a03a2834..42b032d32c22 100644 --- a/Common/Data/UniverseSelection/CoarseFundamentalUniverse.cs +++ b/Common/Data/UniverseSelection/CoarseFundamentalUniverse.cs @@ -17,6 +17,7 @@...
[ "Common/Data/UniverseSelection/CoarseFundamentalUniverse.cs", "Common/Data/UniverseSelection/FineFundamentalUniverse.cs", "Common/Data/UniverseSelection/FuncUniverse.cs", "Common/Data/UniverseSelection/FundamentalUniverseFactory.cs", "Common/Data/UniverseSelection/FuturesChainUniverse.cs", "Common/Data/Un...
[]
diff --git a/Tests/Common/Securities/FutureFilterTests.cs b/Tests/Common/Securities/FutureFilterTests.cs index 5ea286e62867..e95868e9d116 100644 --- a/Tests/Common/Securities/FutureFilterTests.cs +++ b/Tests/Common/Securities/FutureFilterTests.cs @@ -53,7 +53,7 @@ public void FiltersExpiryRange() }; ...
true
QuantConnect/Lean
9,488
issue_to_patch
feature: map exchange string to primary exchange on level one ticks
#### Description Adds `saleCondition` and `exchange` parameters to `LevelOneMarketData.UpdateQuote` and normalizes the exchange string through `GetPrimaryExchange` on both `UpdateQuote` and `UpdateLastTrade`. Resulting ticks now carry the canonical primary exchange name (e.g. `"T"` → `"NASDAQ"`, `"Z"` → `"BATS"`) inste...
9046162f77258d485053d77ad46f4d7913c9aee5
1f4b0b68cb04a95525de9871b7920f4fe44cc4f3
diff --git a/Brokerages/LevelOneOrderBook/LevelOneMarketData.cs b/Brokerages/LevelOneOrderBook/LevelOneMarketData.cs index 0225bdd2040a..8cb097268d80 100644 --- a/Brokerages/LevelOneOrderBook/LevelOneMarketData.cs +++ b/Brokerages/LevelOneOrderBook/LevelOneMarketData.cs @@ -111,7 +111,9 @@ public LevelOneMarketData(Sym...
[ "Brokerages/LevelOneOrderBook/LevelOneMarketData.cs", "Tests/Brokerages/LevelOneOrderBook/LevelOneMarketDataTests.cs" ]
[]
diff --git a/Tests/Brokerages/LevelOneOrderBook/LevelOneMarketDataTests.cs b/Tests/Brokerages/LevelOneOrderBook/LevelOneMarketDataTests.cs index 30fa8f216da8..acfe04474aa1 100644 --- a/Tests/Brokerages/LevelOneOrderBook/LevelOneMarketDataTests.cs +++ b/Tests/Brokerages/LevelOneOrderBook/LevelOneMarketDataTests.cs @@ -1...
true
QuantConnect/Lean
9,445
issue_to_patch
Inconsistent timing for `on_warmup_finished` #### Expected Behavior <!--- Required. Describe the behavior you expect to see for your case. --> `on_warmup_finished` fires at the same time of day for every Equity algorithm #### Actual Behavior <!--- Required. Describe the actual behavior for your case. --> In the backt...
Fix OnWarmupFinished algorithm time alignment
<!--- Provide a general summary of your changes in the Title above --> #### Description `OnWarmupFinished` was firing at the scheduled universe trigger time (e.g. 8 AM) instead of `StartDate` (midnight) when no midnight slice existed, now aligned to StartDate before the callback fires. #### Related Issue Closes...
3f5eefd87916082e2377fb03c4fff7cfcaa024fb
45eed8d0325297ef0852dcbea5a88fced0b3f9cd
diff --git a/Algorithm.CSharp/OnWarmupFinishedScheduledUniverseRegressionAlgorithm.cs b/Algorithm.CSharp/OnWarmupFinishedScheduledUniverseRegressionAlgorithm.cs new file mode 100644 index 000000000000..02b28c45faa9 --- /dev/null +++ b/Algorithm.CSharp/OnWarmupFinishedScheduledUniverseRegressionAlgorithm.cs @@ -0,0 +1,1...
[ "Algorithm.CSharp/OnWarmupFinishedScheduledUniverseRegressionAlgorithm.cs", "Engine/DataFeeds/LiveSynchronizer.cs", "Engine/DataFeeds/Synchronizer.cs" ]
[]
true
QuantConnect/Lean
9,478
issue_to_patch
Manually Warming Up the Forex Session #### Expected Behavior <!--- Required. Describe the behavior you expect to see for your case. --> The following algorithm populates the Forex Session with all of the daily bars in the history request. ``` class DancingApricotBarracuda(QCAlgorithm): def initialize(self): ...
Fix SessionConsolidator skipping bars when updated manually
<!--- Provide a general summary of your changes in the Title above --> #### Description Fixed a bug in SessionConsolidator where feeding daily bars manually via `Update()` was only producing half the expected consolidations. Root cause was that after each consolidation the working bar time was being overridden, los...
4717e320c3300b9e3c7ba5b6af92730f68bd3971
f28b5e14b0d7faccb00e9de1709e9ad6f0dbc4c4
diff --git a/Common/Data/Consolidators/SessionConsolidator.cs b/Common/Data/Consolidators/SessionConsolidator.cs index 564f444dadd9..efd416db6529 100644 --- a/Common/Data/Consolidators/SessionConsolidator.cs +++ b/Common/Data/Consolidators/SessionConsolidator.cs @@ -65,6 +65,15 @@ public SessionConsolidator(SecurityExc...
[ "Common/Data/Consolidators/SessionConsolidator.cs", "Tests/Indicators/SessionTests.cs" ]
[]
diff --git a/Tests/Indicators/SessionTests.cs b/Tests/Indicators/SessionTests.cs index 3a12e3674286..825b8fab8de5 100644 --- a/Tests/Indicators/SessionTests.cs +++ b/Tests/Indicators/SessionTests.cs @@ -171,6 +171,49 @@ private static IEnumerable<TestCaseData> NextSessionTradingDayCases() yield return new ...
true
QuantConnect/Lean
9,487
issue_to_patch
Inconsistent ordering or universe selection function calls #### Expected Behavior <!--- Required. Describe the behavior you expect to see for your case. --> When we add multiple universes to an algorithm, the selection functions fire in the same order that we added the universes to the algorithm. #### Actual Behavior...
Make universe selection order deterministic
<!--- Provide a general summary of your changes in the Title above --> #### Description Added a static counter prepended to the universe symbol ticker so lexicographic sort matches creation order, making universe selection order deterministic #### Related Issue Closes #9435 #### Motivation and Context N/A ...
197808082081f1ed21aaa37d4854ca0bf3ca35f6
af7d3a3e06c56365169e282a2ad5caa2a2956bd5
diff --git a/Algorithm.CSharp/MultipleUniverseSelectionOrderRegressionAlgorithm.cs b/Algorithm.CSharp/MultipleUniverseSelectionOrderRegressionAlgorithm.cs new file mode 100644 index 000000000000..85cce43ab576 --- /dev/null +++ b/Algorithm.CSharp/MultipleUniverseSelectionOrderRegressionAlgorithm.cs @@ -0,0 +1,121 @@ +/*...
[ "Algorithm.CSharp/MultipleUniverseSelectionOrderRegressionAlgorithm.cs", "Algorithm/QCAlgorithm.Universe.cs", "Common/Data/Fundamental/FundamentalUniverse.cs", "Common/Data/UniverseSelection/BaseDataCollection.cs", "Common/Data/UniverseSelection/ETFConstituentsUniverseFactory.cs", "Tests/Algorithm/Algorit...
[]
diff --git a/Tests/Algorithm/AlgorithmAddUniverseTests.cs b/Tests/Algorithm/AlgorithmAddUniverseTests.cs index fcd21fcaf2ea..9d7c93e0fe23 100644 --- a/Tests/Algorithm/AlgorithmAddUniverseTests.cs +++ b/Tests/Algorithm/AlgorithmAddUniverseTests.cs @@ -19,6 +19,7 @@ using NUnit.Framework; using Python.Runtime; using Q...
true
QuantConnect/Lean
9,482
issue_to_patch
Enable CBOE Indexes in Interactive Brokers Live Trading #### Expected Behavior Be able to add CBOE Indexes that are not currently supported by QuantConnect to a live algorithm using IB data feed. #### Actual Behavior It's not possible to add indexes that QC doesn't support like VIX3M. ```csharp AddIndex("VIX3M"...
Add CBOE Index entries to MHDB and SPDB
<!--- Provide a general summary of your changes in the Title above --> #### Description Adds CBOE index entries to the MHDB and SPDB, enabling subscriptions to CBOE indexes, e.g. `AddIndex("VIX3M", Market.CBOE)` #### Related Issue Closes #5752 #### Motivation and Context N/A #### Requires Documentation ...
197808082081f1ed21aaa37d4854ca0bf3ca35f6
6990dc3b930f55cbbb214f385570cc395f4cbed2
diff --git a/Data/market-hours/market-hours-database.json b/Data/market-hours/market-hours-database.json index 507913acf45a..2698775da08b 100644 --- a/Data/market-hours/market-hours-database.json +++ b/Data/market-hours/market-hours-database.json @@ -98160,6 +98160,398 @@ "12/24/2026": "12:00:00" } ...
[ "Data/market-hours/market-hours-database.json", "Data/symbol-properties/symbol-properties-database.csv", "Tests/Common/Securities/MarketHoursDatabaseTests.cs", "Tests/Common/Securities/SymbolPropertiesDatabaseTests.cs" ]
[]
diff --git a/Tests/Common/Securities/MarketHoursDatabaseTests.cs b/Tests/Common/Securities/MarketHoursDatabaseTests.cs index 33776cdeb9cd..3d38072068b7 100644 --- a/Tests/Common/Securities/MarketHoursDatabaseTests.cs +++ b/Tests/Common/Securities/MarketHoursDatabaseTests.cs @@ -460,6 +460,27 @@ public void CustomEntrie...
true
QuantConnect/Lean
9,481
issue_to_patch
Replace SharpZiplib for new archive lib in UnzipToFolder
- Replace SharpZiplib for new archive lib in UnzipToFolder
3d87e39c95280c2b8501ec1c7364534090671de5
b6153b3f1a15244ac7a057efa9554c1046fab033
diff --git a/Compression/Compression.cs b/Compression/Compression.cs index 720d76356383..bd7b4163c49a 100644 --- a/Compression/Compression.cs +++ b/Compression/Compression.cs @@ -845,7 +845,7 @@ public static Stream UnzipStream(Stream zipstream, out ZipFile zipFile, string e /// <returns>List of unzipped file ...
[ "Compression/Compression.cs" ]
[]
true
QuantConnect/Lean
9,479
issue_to_patch
Minor backtest analysis fixes
- Fix OrderFillsDuringExtendedMarketHoursAnalysis which was always using algorithm end time to evaluate fill - Fix exception when no equities were sampled
4717e320c3300b9e3c7ba5b6af92730f68bd3971
ecb94e756403cf3124b82a22e933861317da6398
diff --git a/Engine/Results/Analysis/Analyses/OrderFillsDuringExtendedMarketHoursAnalysis.cs b/Engine/Results/Analysis/Analyses/OrderFillsDuringExtendedMarketHoursAnalysis.cs index c7f5e8de7fc6..44ff63206c30 100644 --- a/Engine/Results/Analysis/Analyses/OrderFillsDuringExtendedMarketHoursAnalysis.cs +++ b/Engine/Result...
[ "Engine/Results/Analysis/Analyses/OrderFillsDuringExtendedMarketHoursAnalysis.cs", "Engine/Results/Analysis/Analyses/OrderResponseErrorsAnalyses/ExceedsShortableQuantityOrderResponseErrorAnalysis.cs", "Engine/Results/Analysis/Analyses/StaleOrderFillsAnalysis.cs", "Engine/Results/Analysis/ResultsAnalyzer.cs" ]
[]
true
QuantConnect/Lean
9,473
issue_to_patch
Throw clear error when add_data first argument is not a custom data class
#### Description Calls like `self.add_data("VIX", Resolution.DAILY)` (passing a string where a custom data class is expected) used to fall into `Extensions.CreateType`, which silently built a dynamic assembly named after the string and returned a fake `Type` whose `PythonActivator.Factory` tried to `Invoke()` the str l...
3806e8138874fac12bc2551ec6444b70f1b88a40
40531cabd7b571f024ce74baf628fa5cb7fa6274
diff --git a/Algorithm/QCAlgorithm.Python.cs b/Algorithm/QCAlgorithm.Python.cs index a2af01ea34fc..e433603c9074 100644 --- a/Algorithm/QCAlgorithm.Python.cs +++ b/Algorithm/QCAlgorithm.Python.cs @@ -109,7 +109,7 @@ public Security AddData(PyObject type, Symbol underlying, Resolution? resolution [DocumentationA...
[ "Algorithm/QCAlgorithm.Python.cs", "Common/Messages/Messages.Algorithm.cs", "Tests/Algorithm/AlgorithmAddDataTests.cs" ]
[]
diff --git a/Tests/Algorithm/AlgorithmAddDataTests.cs b/Tests/Algorithm/AlgorithmAddDataTests.cs index 374c654efd26..d4834147b4aa 100644 --- a/Tests/Algorithm/AlgorithmAddDataTests.cs +++ b/Tests/Algorithm/AlgorithmAddDataTests.cs @@ -19,6 +19,7 @@ using Newtonsoft.Json; using NodaTime; using NUnit.Framework; +using...
true
QuantConnect/Lean
9,470
issue_to_patch
Default to ALL market opens in market data subscriptions #### Expected Behavior <!--- Required. Describe the behavior you expect to see for your case. --> Agents write valid time rules #### Actual Behavior <!--- Required. Describe the actual behavior for your case. --> The agent wrote ``` self.schedule.on( ...
Default to all market hours when no symbol is provided to time rules
#### Description Adds no-symbol overloads of `AfterMarketOpen`, `BeforeMarketOpen`, `AfterMarketClose` and `BeforeMarketClose` on `TimeRules`. Per-date, the helpers pick the earliest market open / latest market close across the algorithm's subscribed exchanges, ignoring always-open ones (e.g. Crypto). When no eligible ...
db8dd817cd6611d2551ef6d58edc3f996836eafb
029485fa0e6253b2db5df488afb58bb06240f927
diff --git a/Common/Scheduling/BaseScheduleRules.cs b/Common/Scheduling/BaseScheduleRules.cs index ffe4e3999df2..1a85399825a4 100644 --- a/Common/Scheduling/BaseScheduleRules.cs +++ b/Common/Scheduling/BaseScheduleRules.cs @@ -17,6 +17,7 @@ using NodaTime; using QuantConnect.Interfaces; using QuantConnect.Securities...
[ "Common/Scheduling/BaseScheduleRules.cs", "Common/Scheduling/TimeRules.cs", "Tests/Common/Scheduling/TimeRulesTests.cs" ]
[]
diff --git a/Tests/Common/Scheduling/TimeRulesTests.cs b/Tests/Common/Scheduling/TimeRulesTests.cs index a36c8ef69aec..101fe8046e95 100644 --- a/Tests/Common/Scheduling/TimeRulesTests.cs +++ b/Tests/Common/Scheduling/TimeRulesTests.cs @@ -17,6 +17,7 @@ using System; using System.Collections.Generic; using System.Lin...
true
QuantConnect/Lean
9,468
issue_to_patch
Add Count property to MemoizingEnumerable
<!--- Provide a general summary of your changes in the Title above --> #### Description <!--- Describe your changes in detail --> Add Count property to MemoizingEnumerable. This will also add support for `len()` operator in Python (ref https://github.com/QuantConnect/pythonnet/pull/114) #### Related Issue <!...
421d3c3448f227ece6f2179b3cba118638a7c791
3225066c0df67fdb3c312f54064a3cdfb52720ff
diff --git a/Algorithm.CSharp/QuantConnect.Algorithm.CSharp.csproj b/Algorithm.CSharp/QuantConnect.Algorithm.CSharp.csproj index b7bd8631cf82..433791d166cf 100644 --- a/Algorithm.CSharp/QuantConnect.Algorithm.CSharp.csproj +++ b/Algorithm.CSharp/QuantConnect.Algorithm.CSharp.csproj @@ -32,7 +32,7 @@ <DebugType>por...
[ "Algorithm.CSharp/QuantConnect.Algorithm.CSharp.csproj", "Algorithm.Framework/QuantConnect.Algorithm.Framework.csproj", "Algorithm/QuantConnect.Algorithm.csproj", "AlgorithmFactory/QuantConnect.AlgorithmFactory.csproj", "Common/QuantConnect.csproj", "Common/Util/MemoizingEnumerable.cs", "Engine/QuantCon...
[]
diff --git a/Tests/Common/Util/MemoizingEnumerableTests.cs b/Tests/Common/Util/MemoizingEnumerableTests.cs index a08b0910445d..4ba3946b9e34 100644 --- a/Tests/Common/Util/MemoizingEnumerableTests.cs +++ b/Tests/Common/Util/MemoizingEnumerableTests.cs @@ -1,4 +1,4 @@ -/* +/* * QUANTCONNECT.COM - Democratizing Finance...
true
QuantConnect/Lean
9,472
issue_to_patch
Remove Symbol/str mypy suppression from syntax check script
<!--- Provide a general summary of your changes in the Title above --> #### Description The `has incompatible type "Symbol"; expected "str"` mypy error was being suppressed as a workaround. The root cause has been fixed in the stubs generator, so the suppression is no longer needed. #### Related Issue See Relat...
3356c73d12ba5463ad28d8fdb830d64e060b8f89
3cd359ad93eb19d0e36a895ba9409ac70ea9ef01
diff --git a/run_syntax_check.py b/run_syntax_check.py index 5322f53126c4..645e72214bc2 100644 --- a/run_syntax_check.py +++ b/run_syntax_check.py @@ -72,7 +72,6 @@ def should_ignore(line: str, prev_line_ignored: bool) -> bool: 'Too many arguments for "update" of "IndicatorBase"', 'Signature of "updat...
[ "run_syntax_check.py" ]
[]
true
QuantConnect/Lean
9,471
issue_to_patch
Set initial universe selected value
- Set initial universe selected value. Avoid required null checks for consumers
11f502d55190b9270d83841d26591f02cbae5896
74c77dba2b58c8b1717fc5c171340d5617eccb05
diff --git a/Common/Data/UniverseSelection/Universe.cs b/Common/Data/UniverseSelection/Universe.cs index 1615174aa806..e148637818d4 100644 --- a/Common/Data/UniverseSelection/Universe.cs +++ b/Common/Data/UniverseSelection/Universe.cs @@ -59,7 +59,7 @@ public virtual ConcurrentDictionary<Symbol, Member> Securities ...
[ "Common/Data/UniverseSelection/Universe.cs" ]
[]
true
QuantConnect/Lean
9,466
issue_to_patch
fix: update binance-fwebsocket-url to /private/ws
#### Description Update USDT futures user-data websocket URL from `wss://fstream.binance.com/ws` to `wss://fstream.binance.com/private/ws`. #### Related Issue N/A #### Motivation and Context Binance split the futures websocket endpoints into per-stream-type paths (`/public/ws`, `/market/ws`, `/private/ws`). The legac...
421d3c3448f227ece6f2179b3cba118638a7c791
8a526b3186334d55629559a60f9afa93fb82816f
diff --git a/Launcher/config.json b/Launcher/config.json index cbac82fed394..659c302bbd7e 100644 --- a/Launcher/config.json +++ b/Launcher/config.json @@ -149,7 +149,7 @@ "binance-orders-websocket-url": "wss://ws-api.binance.com:9443/ws-api/v3", // USDT futures "binance-fapi-url": "https://fapi.binance.com", -...
[ "Launcher/config.json" ]
[]
true
QuantConnect/Lean
9,345
issue_to_patch
snake_case Error Messages for Python <!--- This template provides sections for bugs and features. Please delete any irrelevant sections before submitting --> #### Expected Behavior <!--- Required. Describe the behavior you expect to see for your case. --> This algorithm throws an error message with the method nam...
Fix snake_case error messages for Python algorithms
<!--- Provide a general summary of your changes in the Title above --> #### Description This PR adds a `FormatCode()` helper that converts identifiers to snake_case when the algorithm language is Python. The language is set once per process via `Messages.SetAlgorithmLanguage()`, called in AlgorithmPythonWrapper co...
329d91ba0eceef4e17bd38436ae51eeb8ae1ac96
50bca8295643f322b8973322b18a2393cc767feb
diff --git a/Algorithm/QCAlgorithm.History.cs b/Algorithm/QCAlgorithm.History.cs index 41caa59528cc..077b4cbda32f 100644 --- a/Algorithm/QCAlgorithm.History.cs +++ b/Algorithm/QCAlgorithm.History.cs @@ -1474,7 +1474,7 @@ private void SetWarmup(int? barCount, TimeSpan? timeSpan, Resolution? resolution { ...
[ "Algorithm/QCAlgorithm.History.cs", "Algorithm/QCAlgorithm.cs", "AlgorithmFactory/Python/Wrappers/AlgorithmPythonWrapper.cs", "Common/Messages/Messages.Algorithm.Framework.Portfolio.cs", "Common/Messages/Messages.Algorithm.cs", "Common/Messages/Messages.Brokerages.cs", "Common/Messages/Messages.Orders.c...
[ { "comment": "Some of these will be self referenced; `self.settings` so we should have a different method or bool arg.\ne.g. FormatCode vs FormatCodeRoot for base QCAlgorithm properties. \nor a whitelist of root properties in FormatCode to add `self.` to. ", "path": "Common/Messages/Messages.Securities.cs",...
diff --git a/Tests/Common/Orders/OrderTicketTests.cs b/Tests/Common/Orders/OrderTicketTests.cs index 86a07f11486a..e15963cad5f0 100644 --- a/Tests/Common/Orders/OrderTicketTests.cs +++ b/Tests/Common/Orders/OrderTicketTests.cs @@ -26,10 +26,16 @@ public class OrderTicketTests { private DateTime _requestTi...
true
QuantConnect/Lean
9,345
comment_to_fix
Fix snake_case error messages for Python algorithms
Some of these will be self referenced; `self.settings` so we should have a different method or bool arg. e.g. FormatCode vs FormatCodeRoot for base QCAlgorithm properties. or a whitelist of root properties in FormatCode to add `self.` to.
329d91ba0eceef4e17bd38436ae51eeb8ae1ac96
50bca8295643f322b8973322b18a2393cc767feb
diff --git a/Common/Messages/Messages.Securities.cs b/Common/Messages/Messages.Securities.cs index f2301b68c1b3..2e844357aad6 100644 --- a/Common/Messages/Messages.Securities.cs +++ b/Common/Messages/Messages.Securities.cs @@ -110,7 +110,7 @@ public static string TargetOrderMarginNotAboveMinimum(decimal absDifferenceOf...
[ "Common/Messages/Messages.Securities.cs" ]
[ { "comment": "Some of these will be self referenced; `self.settings` so we should have a different method or bool arg.\ne.g. FormatCode vs FormatCodeRoot for base QCAlgorithm properties. \nor a whitelist of root properties in FormatCode to add `self.` to. ", "path": "Common/Messages/Messages.Securities.cs",...
true
QuantConnect/Lean
9,469
issue_to_patch
Update mypy syntax check
421d3c3448f227ece6f2179b3cba118638a7c791
e94ff7627989ad478ea7a65b78385888221f428d
diff --git a/.github/workflows/syntax-tests.yml b/.github/workflows/syntax-tests.yml index 088e45776bcb..5043adca1b7b 100644 --- a/.github/workflows/syntax-tests.yml +++ b/.github/workflows/syntax-tests.yml @@ -38,5 +38,5 @@ jobs: - name: Run Syntax Test run: | - runInContainer bash -c "pip i...
[ ".github/workflows/syntax-tests.yml", "run_syntax_check.py" ]
[]
true
QuantConnect/Lean
9,449
issue_to_patch
Indicator Window Inconsistencies #### Expected Behavior <!--- Required. Describe the behavior you expect to see for your case. --> When we warm up an indicator and it's `window`, the `window` is full and the values in the `window` are valid. #### Actual Behavior <!--- Required. Describe the actual behavior for your ...
Fix RollingWindow element order corruption on resize
<!--- Provide a general summary of your changes in the Title above --> #### Description When resizing a full RollingWindow, the internal write position was not accounted for, causing index calculations to return elements in the wrong order. Fix reorders the internal list to match the new layout before resizing. ...
870f96dcaf493bd20987c40ed165b31929da1a40
b429041eac9fbd289bb43d05cc3c3878e1af2abd
diff --git a/Algorithm.CSharp/MarketImpactSlippageModelRegressionAlgorithm.cs b/Algorithm.CSharp/MarketImpactSlippageModelRegressionAlgorithm.cs index e9f5be40cf08..ddfd492cae40 100644 --- a/Algorithm.CSharp/MarketImpactSlippageModelRegressionAlgorithm.cs +++ b/Algorithm.CSharp/MarketImpactSlippageModelRegressionAlgori...
[ "Algorithm.CSharp/MarketImpactSlippageModelRegressionAlgorithm.cs", "Common/Indicators/RollingWindow.cs", "Common/Orders/Slippage/MarketImpactSlippageModel.cs", "Tests/Indicators/RollingWindowTests.cs" ]
[]
diff --git a/Tests/Indicators/RollingWindowTests.cs b/Tests/Indicators/RollingWindowTests.cs index eb96da025361..adc9fd39a978 100644 --- a/Tests/Indicators/RollingWindowTests.cs +++ b/Tests/Indicators/RollingWindowTests.cs @@ -602,5 +602,55 @@ def rolling_window_with_custom_data_type(): Assert.AreEqual...
true
QuantConnect/Lean
9,452
issue_to_patch
Minor python syntax check improvement
<!--- Provide a general summary of your changes in the Title above --> #### Description <!--- Describe your changes in detail --> Minor python syntax check improvement #### Related Issue <!--- This project only accepts pull requests related to open issues --> <!--- If suggesting a new feature or change, ple...
3f5eefd87916082e2377fb03c4fff7cfcaa024fb
d5d9cccc66ad2b4e29f964d5aeed86a119163cab
diff --git a/run_syntax_check.py b/run_syntax_check.py index 59c2de50767c..a900fffd8740 100644 --- a/run_syntax_check.py +++ b/run_syntax_check.py @@ -57,8 +57,7 @@ def adjust_file_contents(target_file: str): def should_ignore(line: str, prev_line_ignored: bool) -> bool: result = any(to_ignore in line for to_ig...
[ "run_syntax_check.py" ]
[]
true
QuantConnect/Lean
9,457
issue_to_patch
Allow SetAccountCurrency after SetCash without throwing
#### Description Changes `SecurityPortfolioManager.SetAccountCurrency` so it no longer throws when called after `SetCash`. The base account currency is switched in place: - **Different currency**: the previous `Cash` entry stays in the `CashBook` with its existing balance, the new account currency starts at zero (or `...
9d464c0900af11dd4f7ae89433a79e8f5709ed10
7743a58eb0f14b901925e8aa038214ceaef4adde
diff --git a/Common/Messages/Messages.Securities.cs b/Common/Messages/Messages.Securities.cs index 79542d7dd204..f2301b68c1b3 100644 --- a/Common/Messages/Messages.Securities.cs +++ b/Common/Messages/Messages.Securities.cs @@ -890,11 +890,23 @@ public static class SecurityPortfolioManager "Cannot chang...
[ "Common/Messages/Messages.Securities.cs", "Common/Securities/SecurityPortfolioManager.cs", "Tests/Common/Securities/SecurityPortfolioManagerTests.cs" ]
[]
diff --git a/Tests/Common/Securities/SecurityPortfolioManagerTests.cs b/Tests/Common/Securities/SecurityPortfolioManagerTests.cs index 1240b79b5348..508eae8c5856 100644 --- a/Tests/Common/Securities/SecurityPortfolioManagerTests.cs +++ b/Tests/Common/Securities/SecurityPortfolioManagerTests.cs @@ -2576,20 +2576,86 @@ p...
true
QuantConnect/Lean
9,464
issue_to_patch
Update StandardDeviation docs
<!--- Provide a general summary of your changes in the Title above --> #### Description <!--- Describe your changes in detail --> Update StandardDeviation docs to mention how to calculate the volatility of an asset #### Related Issue <!--- This project only accepts pull requests related to open issues --> <!-...
8647de0dc6f55e99f0575b41dadd509838e7cbe2
5f83bbd4032c61a832ba03f181187c0c4f136daa
diff --git a/Algorithm/QCAlgorithm.Indicators.cs b/Algorithm/QCAlgorithm.Indicators.cs index 9fa1240dfdb3..261ee702c2c4 100644 --- a/Algorithm/QCAlgorithm.Indicators.cs +++ b/Algorithm/QCAlgorithm.Indicators.cs @@ -2244,7 +2244,11 @@ public SmoothedOnBalanceVolume SOBV(Symbol symbol, int period, MovingAverageType ...
[ "Algorithm/QCAlgorithm.Indicators.cs", "Indicators/StandardDeviation.cs" ]
[]
true
QuantConnect/Lean
9,454
issue_to_patch
Adds QuarterStart and QuanterEnd Date Rules #### Expected Behavior Supports DateRules.QuarterStart and DateRules.QuarterEnd methods #### Actual Behavior Not supported. We need to call MonthStart and MonthEnd and check if the Time.Month is the quarter months: 1, 4, 7, 10. #### Potential Solution Add these methods #...
Add DateRules.QuarterStart and DateRules.QuarterEnd
## Summary - Adds `DateRules.QuarterStart` and `DateRules.QuarterEnd` (no-symbol, string symbol, and `Symbol` overloads), mirroring the existing `MonthStart`/`MonthEnd` and `YearStart`/`YearEnd` API. - Introduces `QuarterIterator` helper using `BaseIterator` so behaviour (offsets, boundaries, extended market hours, h...
3f5eefd87916082e2377fb03c4fff7cfcaa024fb
0171d5a964ff28bf173c718c2ac6555c255efe94
diff --git a/Common/Scheduling/DateRules.cs b/Common/Scheduling/DateRules.cs index b3a3c7aff6e4..799b972c05fc 100644 --- a/Common/Scheduling/DateRules.cs +++ b/Common/Scheduling/DateRules.cs @@ -230,6 +230,96 @@ public IDateRule YearEnd(Symbol symbol, int daysOffset = 0, bool extendedMarketH return new Fun...
[ "Common/Scheduling/DateRules.cs", "Tests/Common/Scheduling/DateRulesTests.cs" ]
[]
diff --git a/Tests/Common/Scheduling/DateRulesTests.cs b/Tests/Common/Scheduling/DateRulesTests.cs index 46798f99078a..3041f178e92d 100644 --- a/Tests/Common/Scheduling/DateRulesTests.cs +++ b/Tests/Common/Scheduling/DateRulesTests.cs @@ -314,6 +314,151 @@ public void EndOfMonthWithSymbolWithOffset(Symbols.SymbolsKey s...
true
QuantConnect/Lean
9,429
issue_to_patch
Implement WaveTrend Oscillator Indicator <!--- This template provides sections for bugs and features. Please delete any irrelevant sections before submitting --> Reference: https://www.quantconnect.com/forum/discussion/13844/adding-wavetrend-oscillator-to-indicator-library/p1 #### Expected Behavior Support of Wav...
Add WaveTrend Oscillator indicator
#### Description Implements `WaveTrendOscillator` (extends `BarIndicator`) per the linked issue. Adds the indicator class, the `WTO` helper in `QCAlgorithm.Indicators.cs`, unit tests inheriting `CommonIndicatorTests<IBaseDataBar>`, and the reference CSV under `Tests/TestData/`. The main line (WT1) is an EMA of a norma...
3f5eefd87916082e2377fb03c4fff7cfcaa024fb
690014716ac4781be46797aa72cc2afae3d45dcc
diff --git a/Algorithm/QCAlgorithm.Indicators.cs b/Algorithm/QCAlgorithm.Indicators.cs index e51f0c0961b0..9fa1240dfdb3 100644 --- a/Algorithm/QCAlgorithm.Indicators.cs +++ b/Algorithm/QCAlgorithm.Indicators.cs @@ -2808,6 +2808,28 @@ public WilderAccumulativeSwingIndex ASI(Symbol symbol, decimal limitMove, Resolu ...
[ "Algorithm/QCAlgorithm.Indicators.cs", "Indicators/WaveTrendOscillator.cs", "Tests/Indicators/WaveTrendOscillatorTests.cs", "Tests/QuantConnect.Tests.csproj", "Tests/TestData/spy_wto.csv" ]
[]
diff --git a/Tests/Indicators/WaveTrendOscillatorTests.cs b/Tests/Indicators/WaveTrendOscillatorTests.cs new file mode 100644 index 000000000000..976e97902c9e --- /dev/null +++ b/Tests/Indicators/WaveTrendOscillatorTests.cs @@ -0,0 +1,136 @@ +/* + * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. + * ...
true
QuantConnect/Lean
9,458
issue_to_patch
Respect caller-provided User-Agent in Api.DownloadBytes
#### Description `Api.DownloadBytes` always set a default `User-Agent` header (`"QCAlgorithm.Download(): User Agent Header"`) before applying caller-supplied headers. Because `HttpRequestHeaders` deduplicates case-insensitively but `TryAddWithoutValidation` does not replace an existing header, a caller that passed thei...
3f5eefd87916082e2377fb03c4fff7cfcaa024fb
86c08ef21d3dbc032859bbfb116c92216895457c
diff --git a/Api/Api.cs b/Api/Api.cs index f606ca24e830..30d5f0773208 100644 --- a/Api/Api.cs +++ b/Api/Api.cs @@ -1043,9 +1043,6 @@ public virtual byte[] DownloadBytes(string address, IEnumerable<KeyValuePair<str { client.Value.DefaultRequestHeaders.Clear(); - // Add a us...
[ "Api/Api.cs" ]
[]
true
QuantConnect/Lean
9,460
issue_to_patch
Minor initialization weak
3f5eefd87916082e2377fb03c4fff7cfcaa024fb
5bf52c86bd37ae89b79e693b3bf677b82825c61e
diff --git a/Common/Python/PythonInitializer.cs b/Common/Python/PythonInitializer.cs index 0d3ee89a9305..8810fff1d3c6 100644 --- a/Common/Python/PythonInitializer.cs +++ b/Common/Python/PythonInitializer.cs @@ -83,6 +83,7 @@ public static void Shutdown() try { var ...
[ "Common/Python/PythonInitializer.cs", "Engine/LeanEngineAlgorithmHandlers.cs", "Launcher/Program.cs" ]
[]
true
QuantConnect/Lean
9,444
issue_to_patch
The `IResultHandler.RuntimeError` doesn't stop the algorithm #### Expected Behavior Calling `RuntimeError()` on `IResultHandler` should terminate the algorithm. ``` var resultHandler = Composer.Instance.GetPart<IResultHandler>(); resultHandler.RuntimeError(); ``` #### Actual Behavior Nothing happens in the algorithm....
Fix IResultHandler.RuntimeError not stopping the algorithm
<!--- Provide a general summary of your changes in the Title above --> #### Description SetAlgorithmState now sets `Algorithm.RunTimeError` and status so the `AlgorithmManager` detects the error and stops execution when `IResultHandler.RuntimeError()` is called from a brokerage or data source #### Related Issue ...
7986ed0aade3ae5de06121682409f05984e32ff7
66af8f02d6dcf3e16e53c70c146ca6690e4dc2ee
diff --git a/Engine/Results/BaseResultsHandler.cs b/Engine/Results/BaseResultsHandler.cs index b7163cf4923a..407f55bf1826 100644 --- a/Engine/Results/BaseResultsHandler.cs +++ b/Engine/Results/BaseResultsHandler.cs @@ -16,6 +16,7 @@ using Newtonsoft.Json; using Newtonsoft.Json.Serialization; +using QuantConnect; u...
[ "Engine/Results/BaseResultsHandler.cs", "Tests/Engine/AlgorithmManagerTests.cs", "Tests/Engine/Results/BaseResultsHandlerTests.cs" ]
[]
diff --git a/Tests/Engine/AlgorithmManagerTests.cs b/Tests/Engine/AlgorithmManagerTests.cs index 97faeecc3579..edcf2568707f 100644 --- a/Tests/Engine/AlgorithmManagerTests.cs +++ b/Tests/Engine/AlgorithmManagerTests.cs @@ -39,6 +39,7 @@ using QuantConnect.Scheduling; using QuantConnect.Securities; using QuantConnect...
true
QuantConnect/Lean
9,431
issue_to_patch
PortfolioStatistics WinRate Definition #### Expected Behavior WinRate is defined as "The ratio of the number of winning days to the total number of days" or use the definition of winning aording to a close trade. #### Actual Behavior WinRate is defined as "The ratio of the number of winning trades to the total nu...
Fix PortfolioStatistics WinRate/LossRate documentation
<!--- Provide a general summary of your changes in the Title above --> #### Description Fixes the XML documentation for WinRate, LossRate, AverageWinRate, and AverageLossRate to clarify that they are calculated based on the profit loss sign. #### Related Issue Closes #8268 #### Motivation and Context N/A ...
fca5321e3183c292b2816f63d64df1a50cb55a36
de736f8faf32dac7bc80248a76d65881ae88336e
diff --git a/Common/Api/Backtest.cs b/Common/Api/Backtest.cs index 377fcf7073d1..fe4088f00109 100644 --- a/Common/Api/Backtest.cs +++ b/Common/Api/Backtest.cs @@ -239,7 +239,7 @@ public class BacktestSummary : BasicBacktest public decimal? Drawdown { get; set; } /// <summary> - /// The ratio ...
[ "Common/Api/Backtest.cs", "Common/Statistics/PerformanceMetrics.cs", "Common/Statistics/PortfolioStatistics.cs", "Common/Statistics/TradeStatistics.cs" ]
[]
true
QuantConnect/Lean
9,448
issue_to_patch
fix: add AJY/ANE/ECD future-option expiry definitions
#### Description Adds three CME currency cross-rate FOPs — `AJY` (AUD/JPY), `ANE` (AUD/NZD), `ECD` (EUR/CAD) — to `_futuresOptionExpiryFunctions`, mapping each to `SecondFridayBeforeThirdWednesdayOfContractMonth` per their CME contract specs. Without an entry, `FuturesOptionExpiry` fell back to the underlying future's ...
daf0939e6cad53757ae73c490c70ebebed24420d
659dfcce3337fb640beb1c19dd0f8b904188454f
diff --git a/Common/Securities/FutureOption/FuturesOptionsExpiryFunctions.cs b/Common/Securities/FutureOption/FuturesOptionsExpiryFunctions.cs index 6bea3c823039..efef3654a0ce 100644 --- a/Common/Securities/FutureOption/FuturesOptionsExpiryFunctions.cs +++ b/Common/Securities/FutureOption/FuturesOptionsExpiryFunctions....
[ "Common/Securities/FutureOption/FuturesOptionsExpiryFunctions.cs", "Tests/Common/Securities/FutureOption/FuturesOptionsExpiryFunctionsTests.cs" ]
[]
diff --git a/Tests/Common/Securities/FutureOption/FuturesOptionsExpiryFunctionsTests.cs b/Tests/Common/Securities/FutureOption/FuturesOptionsExpiryFunctionsTests.cs index 4ba76662e9b2..caf21298480b 100644 --- a/Tests/Common/Securities/FutureOption/FuturesOptionsExpiryFunctionsTests.cs +++ b/Tests/Common/Securities/Futu...
true
QuantConnect/Lean
9,330
issue_to_patch
feat: add CreateOAuthTokenHandler factory to Brokerage base class
#### Description - Add `AuthenticationFailed` event to `TokenHandler` base class, raised when all retry attempts are exhausted after a failed token fetch - Add `protected CreateOAuthTokenHandler<TRequest, TResponse>()` factory method to `Brokerage` base class that creates an `OAuthTokenHandler` and automatically subs...
0c4a121371be684c7e9e8d0e92816a2f34a185b9
338a51d27482516166d525f35d7a73e0aa27c154
diff --git a/Brokerages/Authentication/LeanOAuthTokenHandler.cs b/Brokerages/Authentication/LeanOAuthTokenHandler.cs new file mode 100644 index 000000000000..843fc8ff1df0 --- /dev/null +++ b/Brokerages/Authentication/LeanOAuthTokenHandler.cs @@ -0,0 +1,171 @@ +/* + * QUANTCONNECT.COM - Democratizing Finance, Empowering...
[ "Brokerages/Authentication/LeanOAuthTokenHandler.cs", "Brokerages/Authentication/LeanTokenCredentials.cs", "Brokerages/Authentication/LeanTokenHandler.cs", "Brokerages/Authentication/OAuthTokenRequest.cs", "Brokerages/Authentication/TokenCredentials.cs", "Brokerages/Brokerage.cs", "Tests/Brokerages/Auth...
[]
diff --git a/Tests/Brokerages/Authentication/AccessTokenMetaDataResponseTests.cs b/Tests/Brokerages/Authentication/AccessTokenMetaDataResponseTests.cs new file mode 100644 index 000000000000..4a9213b6d543 --- /dev/null +++ b/Tests/Brokerages/Authentication/AccessTokenMetaDataResponseTests.cs @@ -0,0 +1,44 @@ +/* + * QU...
true
QuantConnect/Lean
9,337
issue_to_patch
refactor: remove deprecated OAuth authentication base classes
#### Description Remove deprecated OAuth authentication base classes superseded by the concrete implementations introduced in #9330. Cleans up `Brokerages/Authentication/` by deleting: - `OAuthTokenHandler.cs` — generic `OAuthTokenHandler<TRequest, TResponse>`, replaced by `LeanOAuthTokenHandler` - `TokenHandler....
9ccdbec8ee998783b1a4807805710e46d4c0aa47
5a9d97496bea97a9769c5951c815f253081866f3
diff --git a/Brokerages/Authentication/AccessTokenMetaDataRequest.cs b/Brokerages/Authentication/AccessTokenMetaDataRequest.cs deleted file mode 100644 index d9b9f0ad6279..000000000000 --- a/Brokerages/Authentication/AccessTokenMetaDataRequest.cs +++ /dev/null @@ -1,63 +0,0 @@ -/* - * QUANTCONNECT.COM - Democratizing F...
[ "Brokerages/Authentication/AccessTokenMetaDataRequest.cs", "Brokerages/Authentication/AccessTokenMetaDataResponse.cs", "Brokerages/Authentication/LeanOAuthTokenHandler.cs", "Brokerages/Authentication/LeanTokenHandler.cs", "Brokerages/Authentication/OAuthTokenHandler.cs", "Brokerages/Authentication/TokenCr...
[]
true
QuantConnect/Lean
9,446
issue_to_patch
fix: add EAD future-option expiry definition
#### Description Adds an `EAD` (Euro/Australian Dollar Cross Rate) entry to `FuturesOptionsExpiryFunctions` so the FOP expires per CME spec - the second Friday prior to the third Wednesday of the contract month - instead of falling back to the underlying future's quarterly (HMUZ) expiry. CME contract spec: https:...
7986ed0aade3ae5de06121682409f05984e32ff7
acb37bf08cb7420928ed259c2a3cab05ac63b195
diff --git a/Common/Securities/FutureOption/FuturesOptionsExpiryFunctions.cs b/Common/Securities/FutureOption/FuturesOptionsExpiryFunctions.cs index a6695fdb0a7a..6bea3c823039 100644 --- a/Common/Securities/FutureOption/FuturesOptionsExpiryFunctions.cs +++ b/Common/Securities/FutureOption/FuturesOptionsExpiryFunctions....
[ "Common/Securities/FutureOption/FuturesOptionsExpiryFunctions.cs" ]
[]
true
QuantConnect/Lean
9,434
issue_to_patch
Use REST API in stubs repo discovery and run it inside the container
## Summary Continuation of #9433. `find_datasource_repos.py` was using the `gh` CLI, whose `gh repo list` hits GitHub's GraphQL endpoint and needs `read:org` scope on top of `repo` — `QC_GIT_TOKEN` doesn't have that, so the step returned `HTTP 401: Bad credentials`. Rewritten to call the REST API directly via `urll...
f1a500d8f2c411a31f3b704539c55d8d895a069c
75c81133777a4db5c5bc8a501d4d385019f0149a
diff --git a/.github/workflows/gh-actions.yml b/.github/workflows/gh-actions.yml index 422837da4c24..504050c7b036 100644 --- a/.github/workflows/gh-actions.yml +++ b/.github/workflows/gh-actions.yml @@ -63,8 +63,7 @@ jobs: if [[ "${{ github.ref }}" = refs/tags/* && "$TAG_COMMIT" = "$MASTER_COMMIT" ]]; then ...
[ ".github/workflows/gh-actions.yml", "find_datasource_repos.py" ]
[]
true
QuantConnect/Lean
9,433
issue_to_patch
Run stubs repo discovery only on tag-of-master builds
## Summary Continuation of #9432. The standalone "Compute additional stubs repos" step was running on every push/PR, but `gh repo list` needs credentials that `GITHUB_TOKEN` doesn't have for the QuantConnect org — resulting in `HTTP 401: Bad credentials` on non-tag builds. `QC_GIT_TOKEN` only works for the authorit...
42459116bee72c2fc3c16fc1becd73dccec251e5
f614f9301789d25e2b2b0eaa22c89b168287072d
diff --git a/.github/workflows/gh-actions.yml b/.github/workflows/gh-actions.yml index d1430e429061..422837da4c24 100644 --- a/.github/workflows/gh-actions.yml +++ b/.github/workflows/gh-actions.yml @@ -29,14 +29,6 @@ jobs: echo -e 'runInContainer() { docker exec test-container "$@"; }\n' > "$HOME/ci_functio...
[ ".github/workflows/gh-actions.yml" ]
[]
true
RSS-Bridge/rss-bridge
4,999
issue_to_patch
handleYoutube fails if video name contains word with 11 or more chars **Describe the bug** handleYoutube fails if video name contains a word with 11 or more chars **To Reproduce** e.g. this iframe contains "Internationaler" which matches the handleYoutube regex: ``` <iframe title="Masters of The Universe - Internatio...
handleyoutube: fix youtube.com urls not matching
fixes #4968 youtube.com is not matching with the current filter, only youtube-nocookie.com. this patch fixes that. old: <img width="697" height="295" alt="Screenshot 2026-06-05 125424" src="https://github.com/user-attachments/assets/246dd4ca-bef2-4f03-9ca1-9a8c0e6add58" /> new: <img width="694" height="3...
2337d40f31e19a6b3239e3232fd6cfe062992dd2
e0d03ec5d435a34476ab54e658200a9a8b31412f
diff --git a/lib/html.php b/lib/html.php index 508cfa261bb..c8c1fae975a 100644 --- a/lib/html.php +++ b/lib/html.php @@ -555,7 +555,7 @@ function handleYoutube(string $string) $useNocookie = Configuration::getConfig('youtube', 'nocookie'); // sourced from https://gist.github.com/afeld/1254889?permalink_comm...
[ "lib/html.php" ]
[]
true
RSS-Bridge/rss-bridge
4,998
issue_to_patch
Rumble bridge returns no content **Describe the bug** Sometime between 14 and 16 hours ago from the time this issue was submitted, the Rumble bridge returns no content for any user or channel. **To Reproduce** Steps to reproduce the behavior: 1. Select the Rumble Bridge 2. Add a channel or user 3. Generate the feed 4...
fix(rumble)
fix #4997
1557ec80ee41074a6c583b7cdca8528d18a08f79
a824f733dc9998f8c4fca6894e60d5ccf510b31d
diff --git a/bridges/RumbleBridge.php b/bridges/RumbleBridge.php index c94a8dcd67b..7335638c2ae 100644 --- a/bridges/RumbleBridge.php +++ b/bridges/RumbleBridge.php @@ -59,27 +59,48 @@ public function collectData() } $dom = getSimpleHTMLDOM($url); - foreach ($dom->find('ol.thumbnail__grid div...
[ "bridges/RumbleBridge.php", "lib/BridgeAbstract.php" ]
[]
true
RSS-Bridge/rss-bridge
4,994
issue_to_patch
Add GitHubWorkflowBridge.php
A bridge for GitHub workflows that shows the latest workflow runs (can be for a specific workflow or all workflows) for a specific repo along with their status
b3113aee1c7ee46f47884ccfeacc28a7bb81fa2b
9bf7362db4e2d25ccba6235f89eace1a85023bf7
diff --git a/bridges/GitHubWorkflowBridge.php b/bridges/GitHubWorkflowBridge.php new file mode 100644 index 00000000000..67dd7af4e8d --- /dev/null +++ b/bridges/GitHubWorkflowBridge.php @@ -0,0 +1,186 @@ +<?php + +declare(strict_types=1); + +class GithubWorkflowBridge extends BridgeAbstract +{ + const NAME = 'GitHub...
[ "bridges/GitHubWorkflowBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,995
issue_to_patch
Add COPRBridge.php
A bridge for [fedora copr](https://copr.fedorainfracloud.org/) that shows the latest builds for a specific project along with their status
b3113aee1c7ee46f47884ccfeacc28a7bb81fa2b
8f0070dbde254b6c3fdfdff60b49ac9fe08e13b2
diff --git a/bridges/COPRBridge.php b/bridges/COPRBridge.php new file mode 100644 index 00000000000..e670a7d98ab --- /dev/null +++ b/bridges/COPRBridge.php @@ -0,0 +1,123 @@ +<?php + +declare(strict_types=1); + +class COPRBridge extends BridgeAbstract +{ + const NAME = 'COPR'; + const URI = 'https://copr.fedorain...
[ "bridges/COPRBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,992
issue_to_patch
fix: even more less log noise
e2cdc2cbaa5142ee8f53a2e971bc34467fa51a46
ffda1f42a2f7fa11f66c96652f8d66dd54c93ef0
diff --git a/lib/BridgeAbstract.php b/lib/BridgeAbstract.php index e70851aba64..eafed03dc40 100644 --- a/lib/BridgeAbstract.php +++ b/lib/BridgeAbstract.php @@ -170,7 +170,7 @@ public function setInput(array $input) } if (is_null($this->queriedContext)) { - throw new \Exception('Required ...
[ "lib/BridgeAbstract.php" ]
[]
true
RSS-Bridge/rss-bridge
4,874
issue_to_patch
[SpottschauBridge] Rewrite of the Spottschau Bridge
This is basically a rewrite of the Spottschau bridge: - A new strip is published once per week, so a cache timout of 1 h is overkill. Using 24 h now. - The `<h2>` element is empty since at least 2022, so title is empty since then. Same with the `<img alt>` attribute. - An empty title means no timestamp. I was gett...
aadb882fe759db7f6240dcf75c79130e2a8157bc
4a106ec0e1275d05f7fb118b96f7f83857dbd006
diff --git a/bridges/SpottschauBridge.php b/bridges/SpottschauBridge.php index a2720274c7f..89d82b8c6b3 100644 --- a/bridges/SpottschauBridge.php +++ b/bridges/SpottschauBridge.php @@ -4,39 +4,29 @@ class SpottschauBridge extends BridgeAbstract { const NAME = 'Härringers Spottschau Bridge'; const URI = 'http...
[ "bridges/SpottschauBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,991
issue_to_patch
[HeiseBridge] Add update box text with timestamp
Test page: https://www.heise.de/news/Deutsche-Bahn-Keine-Auskunft-unter-Linux-11300742.html
80a06e292a0a450f4971e59c61b26b46a289eac2
5995bfea04cad6f3e850067794183940600d09c9
diff --git a/bridges/HeiseBridge.php b/bridges/HeiseBridge.php index 4026922098b..922d6c14544 100644 --- a/bridges/HeiseBridge.php +++ b/bridges/HeiseBridge.php @@ -259,7 +259,7 @@ private function addArticleToItem($item, $article) if ($content) { $contentElements = $content->find( ...
[ "bridges/HeiseBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,967
issue_to_patch
[HeiseBridge] Support Mastodon embeds
The html content is a somewhat stripped version of the embed code mastodon recommends. I also tried a lot with iframes, but then the width and height are always fixed to stupid values. Test pages: https://www.heise.de/news/Kritik-an-historischer-Internetsperre-Irans-Praesidialamt-verteidigt-Blockade-11272937.h...
e4d3af76e420840a53f5067d7e8d42771433e2f0
e698a7c919c493fcc894e270fbf77a705d559722
diff --git a/bridges/HeiseBridge.php b/bridges/HeiseBridge.php index 98c1a3d696d..c117aab402a 100644 --- a/bridges/HeiseBridge.php +++ b/bridges/HeiseBridge.php @@ -225,6 +225,24 @@ private function addArticleToItem($item, $article) $article = str_get_html($article->outertext); } + // fix...
[ "bridges/HeiseBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,990
issue_to_patch
fix: reduce log noise
626da6a9a002335f33035e1621e4b8d512daf10a
5cb280966d4d6445d46300cc85d49b36fba7b97c
diff --git a/lib/BridgeAbstract.php b/lib/BridgeAbstract.php index 8858200f280..e70851aba64 100644 --- a/lib/BridgeAbstract.php +++ b/lib/BridgeAbstract.php @@ -149,7 +149,7 @@ public function setInput(array $input) if (!$parameters) { if ($input) { - throw new \Exception('Invalid...
[ "lib/BridgeAbstract.php", "lib/utils.php" ]
[]
true
RSS-Bridge/rss-bridge
4,989
issue_to_patch
Update 06_Public_Hosts.md
Remove tools.bheil.net from public hosts. The server will be shut down soon.
49712979d2f6eda24e6c895d23dbec16397cce04
fe6b2b5550b200bd6f4182e064448eebc89cba30
diff --git a/docs/01_General/06_Public_Hosts.md b/docs/01_General/06_Public_Hosts.md index 821c8b7d455..c1666b234ce 100644 --- a/docs/01_General/06_Public_Hosts.md +++ b/docs/01_General/06_Public_Hosts.md @@ -14,7 +14,6 @@ | ![](https://iplookup.flagfox.net/images/h16/FR.png) | https://rssbridge.boldair.dev | ![](http...
[ "docs/01_General/06_Public_Hosts.md" ]
[]
true
RSS-Bridge/rss-bridge
4,988
issue_to_patch
Fix nordbayern
This will: - fix nordbayern empty article issue - Enforce data types in the Nordbayern Bridge.
44fc59dda78e03977be006492fbfc39cab287925
b0127eca3acaefc570b212ce14e5c3784299fcf0
diff --git a/bridges/NordbayernBridge.php b/bridges/NordbayernBridge.php index 2c86931b0c8..67184f3f00e 100644 --- a/bridges/NordbayernBridge.php +++ b/bridges/NordbayernBridge.php @@ -1,5 +1,7 @@ <?php +declare(strict_types=1); + class NordbayernBridge extends BridgeAbstract { const MAINTAINER = 'schabi.org'...
[ "bridges/NordbayernBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,961
issue_to_patch
add tagesschau bridge
This will add a bridge for the German television news [Tagesschau](https://www.tagesschau.de/). They also post their articles in text from, which is what this bridge will make available.
394a99151ed6518a20458021bb16b665fedcf621
7456afb56026c31e8b13e08dff00214ee676b347
diff --git a/bridges/TagesschauBridge.php b/bridges/TagesschauBridge.php new file mode 100644 index 00000000000..ef114aec52f --- /dev/null +++ b/bridges/TagesschauBridge.php @@ -0,0 +1,191 @@ +<?php + +declare(strict_types=1); + +class TagesschauBridge extends FeedExpander +{ + const MAINTAINER = 'Schabi'; + cons...
[ "bridges/TagesschauBridge.php" ]
[ { "comment": "New code files MUST have `declare(strict_types=1);` at the top of file", "path": "bridges/TagesschauBridge.php", "hunk": "@@ -0,0 +1,189 @@\n+<?php\n+", "resolving_sha": "7456afb56026c31e8b13e08dff00214ee676b347", "resolving_diff": "diff --git a/bridges/TagesschauBridge.php b/bridg...
true
RSS-Bridge/rss-bridge
4,961
comment_to_fix
add tagesschau bridge
New code files MUST have `declare(strict_types=1);` at the top of file
394a99151ed6518a20458021bb16b665fedcf621
7456afb56026c31e8b13e08dff00214ee676b347
diff --git a/bridges/TagesschauBridge.php b/bridges/TagesschauBridge.php new file mode 100644 index 00000000000..ef114aec52f --- /dev/null +++ b/bridges/TagesschauBridge.php @@ -0,0 +1,191 @@ +<?php + +declare(strict_types=1); + +class TagesschauBridge extends FeedExpander +{ + const MAINTAINER = 'Schabi'; + cons...
[ "bridges/TagesschauBridge.php" ]
[ { "comment": "New code files MUST have `declare(strict_types=1);` at the top of file", "path": "bridges/TagesschauBridge.php", "hunk": "@@ -0,0 +1,189 @@\n+<?php\n+", "resolving_sha": "7456afb56026c31e8b13e08dff00214ee676b347", "resolving_diff": "diff --git a/bridges/TagesschauBridge.php b/bridg...
true
RSS-Bridge/rss-bridge
4,986
issue_to_patch
[DobinDom] Fix lint style warning
0a228fb245922a8dc89a69ebbe7ebeb717fb4673
f01d540f53c660931f7cb3f5855ccdf34637d5fc
diff --git a/bridges/DobinDomBridge.php b/bridges/DobinDomBridge.php index 3fc4db6f990..d0e95f38b6c 100644 --- a/bridges/DobinDomBridge.php +++ b/bridges/DobinDomBridge.php @@ -34,9 +34,7 @@ public function collectData() $embedUrl = $video['embed_url']; if ($posterUrl) { - ...
[ "bridges/DobinDomBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,982
issue_to_patch
[YoutubeBridge] handle new lockupViewModel layout
Feeds with `duration_min` or `duration_max` set return zero entries: YouTube changed the channel /videos listing to wrap each item in `lockupViewModel` instead of `videoRenderer`, and the bridge no longer recognises the shape. Items fall through with no readable duration, all parse to zero seconds, and the duration fil...
d8a5269169015654bb459fc468a172499003612e
9cf963f80195416ceab732b5d4df3e60c1ccb068
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index e2d91497bdf..de62d85ede6 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -165,6 +165,7 @@ * [pitchoule](https://github.com/pitchoule) * [pmaziere](https://github.com/pmaziere) * [Pofilo](https://github.com/Pofilo) +* [polybjorn](https://github.com/polybjorn)...
[ "CONTRIBUTORS.md", "bridges/YoutubeBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,969
issue_to_patch
404 on Associated Press bridge calls **Describe the bug** It seems as though as of about 24 hours ago (2025-01-08), the RSS bridge feed for all of the Associated Press topics stopped working. I presume due to a change upstream as I noticed it was occurring on multiple bridge instances. **To Reproduce** Go to any ...
[AssociatedPressNews] fix: re-write old broken API to GraphQL API
fix #4400
ae9e34219a1f208eb8af2081e6beef28eb1b0ef7
dc47a5665be66721e29f2e1acb3e3394735431bd
diff --git a/bridges/AssociatedPressNewsBridge.php b/bridges/AssociatedPressNewsBridge.php index 777d5e54cdd..d21e04494bf 100644 --- a/bridges/AssociatedPressNewsBridge.php +++ b/bridges/AssociatedPressNewsBridge.php @@ -4,271 +4,278 @@ class AssociatedPressNewsBridge extends BridgeAbstract { const NAME = 'Associ...
[ "bridges/AssociatedPressNewsBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,955
issue_to_patch
[DobinDom] Add new bridge for DobinDom
Hi. It is a Russian learning resource with psychology lessons. It requires account and subscription for access to lectures. Though maybe considered too niche for public RSS-Bridge.
b8f3e32432835ba94b812c7f18c87c25479225f7
d82a2288fc35a627c026ed7d598fd1147e6c7074
diff --git a/bridges/DobinDomBridge.php b/bridges/DobinDomBridge.php new file mode 100644 index 00000000000..3fc4db6f990 --- /dev/null +++ b/bridges/DobinDomBridge.php @@ -0,0 +1,100 @@ +<?php + +class DobinDomBridge extends BridgeAbstract +{ + const NAME = 'DobinDom (ДобинДом)'; + const URI = 'https://dobindom.r...
[ "bridges/DobinDomBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,954
issue_to_patch
[TheBell] Add new bridge for TheBell
f10e8cd30e4ee8af31bae78843aa9a6fb9ea00b3
2ddf2553ff89424c1528188aba941a205c9c6b67
diff --git a/bridges/TheBellBridge.php b/bridges/TheBellBridge.php new file mode 100644 index 00000000000..c9eb9d4f327 --- /dev/null +++ b/bridges/TheBellBridge.php @@ -0,0 +1,153 @@ +<?php + +declare(strict_types=1); + +class TheBellBridge extends BridgeAbstract +{ + const NAME = 'The Bell'; + const URI = 'https...
[ "bridges/TheBellBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,983
issue_to_patch
Bridge request for Technology and Culture Journal by the Society for the History of Technology (SHOT) # Bridge request <!-- This is a bridge request. Start by adding a descriptive title (i.e. `Bridge request for GitHub`). Use the "Preview" button to see a preview of your request. Make sure your request is complete be...
[ProjectMuseBridge] add
close #4976
d8a5269169015654bb459fc468a172499003612e
48995251d41f680787fe164f84d29ea3e7a9a9b8
diff --git a/bridges/ProjectMuseBridge.php b/bridges/ProjectMuseBridge.php new file mode 100644 index 00000000000..7bb031a7af0 --- /dev/null +++ b/bridges/ProjectMuseBridge.php @@ -0,0 +1,90 @@ +<?php + +declare(strict_types=1); + +class ProjectMuseBridge extends BridgeAbstract +{ + const NAME = 'Project Mu...
[ "bridges/ProjectMuseBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,950
issue_to_patch
Add Invidious Bridge
An Invidious bridge that functions by scraping the HTML rather than being a wrapper for an existing RSS feed. I found the existing YouTube and Invidious RSS feeds to be inconsistent and unreliable, and since the existing YouTube bridges rely on the YouTube RSS endpoint I decided to make an HTML scraper. This bridge is ...
065ca1493d06fe48b410f84014a9563541095d3c
921fd7ab83646792863d10eee6458485c579660f
diff --git a/bridges/InvidiousHTMLBridge.php b/bridges/InvidiousHTMLBridge.php new file mode 100644 index 00000000000..d89ab256f95 --- /dev/null +++ b/bridges/InvidiousHTMLBridge.php @@ -0,0 +1,172 @@ +<?php + +declare(strict_types=1); + +class InvidiousHTMLBridge extends BridgeAbstract +{ + const NAME = 'Invidious ...
[ "bridges/InvidiousHTMLBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,944
issue_to_patch
[CaschyBridge] add handleYoutube
d1f9982d0de9ee9a00aa4ab4f928c27afd9127f3
b99de96784a19a2157b1ddea33e67d7b45c088cc
diff --git a/bridges/CaschyBridge.php b/bridges/CaschyBridge.php index 03b1ecf9b95..a04c855be12 100644 --- a/bridges/CaschyBridge.php +++ b/bridges/CaschyBridge.php @@ -59,6 +59,16 @@ private function addArticleToItem($item, $article) ) { $element->remove(); } + + foreach ($article...
[ "bridges/CaschyBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,224
issue_to_patch
[NvidiaDriverBridge] fix typo
320afc3f324ded84f56169dce70bc7721201ea0a
862598c7f15006f649661b8710d8be891f990bac
diff --git a/bridges/NvidiaDriverBridge.php b/bridges/NvidiaDriverBridge.php index 6664fc771d2..3c47869745c 100644 --- a/bridges/NvidiaDriverBridge.php +++ b/bridges/NvidiaDriverBridge.php @@ -66,13 +66,13 @@ public function collectData() $this->operatingSystem = 'Windows'; break; ...
[ "bridges/NvidiaDriverBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,261
issue_to_patch
[DailythanthiBridge] fix url
358bebbb890fce7a9636acfe9f21412dd1790fdb
b9f8f6d204407cb86611827b1a93ed423a8e1af7
diff --git a/bridges/DailythanthiBridge.php b/bridges/DailythanthiBridge.php index 114f42d824a..4e891e1c464 100644 --- a/bridges/DailythanthiBridge.php +++ b/bridges/DailythanthiBridge.php @@ -3,7 +3,7 @@ class DailythanthiBridge extends BridgeAbstract { const NAME = 'Dailythanthi'; - const URI = 'https://www...
[ "bridges/DailythanthiBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,549
issue_to_patch
[LinuxBlogBridge] fix typo
5bd767b862bec2e1a26304be6fa8f6dd8c25ec7f
9d680f5e4a63cf8ccf3de9c87b87287e196c8e28
diff --git a/bridges/LinuxBlogBridge.php b/bridges/LinuxBlogBridge.php index 129ef31b4a1..e00cba52715 100644 --- a/bridges/LinuxBlogBridge.php +++ b/bridges/LinuxBlogBridge.php @@ -2,7 +2,7 @@ class LinuxBlogBridge extends BridgeAbstract { - const NAME = 'LinuxBlog.in'; + const NAME = 'LinuxBlog.io'; con...
[ "bridges/LinuxBlogBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,726
issue_to_patch
[SkyArteBridge] add `LIBXML_NONET` and fix lint
e8446cb5137c0d9ddd7204ec08bdc0475b3cc164
c9c36bd2022135a5f47f804fb18570f80398fbec
diff --git a/bridges/SkyArteBridge.php b/bridges/SkyArteBridge.php index fb038ddfc84..3db64a343f1 100644 --- a/bridges/SkyArteBridge.php +++ b/bridges/SkyArteBridge.php @@ -7,18 +7,19 @@ class SkyArteBridge extends BridgeAbstract const NAME = 'Sky Arte | Mostre ed eventi'; const URI = 'http...
[ "bridges/SkyArteBridge.php" ]
[]
true
RSS-Bridge/rss-bridge
4,727
issue_to_patch
[CybernewsBridge] add `LIBXML_NONET` and fix lint
e8446cb5137c0d9ddd7204ec08bdc0475b3cc164
63dd8a29015c686d9289309ce4d40673131e6df8
diff --git a/bridges/CybernewsBridge.php b/bridges/CybernewsBridge.php index 64146f6f913..1a01a8912d2 100644 --- a/bridges/CybernewsBridge.php +++ b/bridges/CybernewsBridge.php @@ -13,40 +13,39 @@ class CybernewsBridge extends BridgeAbstract public function collectData() { - $sitemapXml = getContents...
[ "bridges/CybernewsBridge.php" ]
[]
true