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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
winsiderss/systeminformer | 2,724 | issue_to_patch | phnt: Fix incorrect NtOpenFile description in ntioapi.h | Corrected the description of NtOpenFile in ntioapi.h. Previously, it mistakenly used the description of NtDeleteFile.
Reference:
https://learn.microsoft.com/en-us/windows/win32/api/winternl/nf-winternl-ntopenfile
Issue noticed here:
https://ntdoc.m417z.com/ntopenfile | e924b53e1634ee6b0496a262d4343af052102c29 | 82fdd2312d3c5a5a5fd6e9d36a7e77caf2f4b1f7 | diff --git a/phnt/include/ntioapi.h b/phnt/include/ntioapi.h
index 41067f3cf271..ecdb4248f08f 100644
--- a/phnt/include/ntioapi.h
+++ b/phnt/include/ntioapi.h
@@ -1852,7 +1852,7 @@ NtCreateMailslotFile(
);
/**
- * The NtOpenFile routine deletes the specified file.
+ * The NtOpenFile routine opens an existing fi... | [
"phnt/include/ntioapi.h"
] | [] | true | ||
winsiderss/systeminformer | 2,711 | issue_to_patch | phnt: Delete/fix invalid Microsoft docs links | c5cf868585f97b7ab147159875288dd7bbcf8b81 | a12813e09ea435e0b44cb2c6e7c06ad0cfe5c484 | diff --git a/phnt/include/ntmmapi.h b/phnt/include/ntmmapi.h
index 55a4620bdd65..2a39aed697ed 100644
--- a/phnt/include/ntmmapi.h
+++ b/phnt/include/ntmmapi.h
@@ -1349,7 +1349,6 @@ NtQuerySection(
* \param File1MappedAsAnImage A pointer to the base address of the first file mapped as an image.
* \param File2MappedA... | [
"phnt/include/ntmmapi.h",
"phnt/include/ntseapi.h"
] | [] | true | |||
winsiderss/systeminformer | 2,616 | issue_to_patch | add win11 25h2 | add win11 25h2 | e54016ee9a895f84755b348f6b0402c4bfe180cb | 62af1cac71c46742bd7c05fd37e6e47edf2e92f4 | diff --git a/SystemInformer/ksisup.c b/SystemInformer/ksisup.c
index 1a7e631e571e..4554d26720de 100644
--- a/SystemInformer/ksisup.c
+++ b/SystemInformer/ksisup.c
@@ -124,11 +124,13 @@ PCWSTR KsiGetWindowsVersionString(
return L"Windows 11 23H2";
case WINDOWS_11_24H2:
return L"Windows 11 24H2";
+... | [
"SystemInformer/ksisup.c",
"phlib/global.c",
"phlib/include/phconfig.h"
] | [
{
"comment": "should **WINDOWS_MAX** be changed to 25H2? ",
"path": "phlib/include/phconfig.h",
"hunk": "@@ -48,6 +48,7 @@ EXTERN_C ULONG WindowsVersion;\n #define WINDOWS_11_22H2 115 // September, 2022 // Build 22621\n #define WINDOWS_11_23H2 116 // October, 2023 // Build 22631\n #define WINDOWS_11... | true | ||
winsiderss/systeminformer | 2,616 | comment_to_fix | add win11 25h2 | should **WINDOWS_MAX** be changed to 25H2? | e54016ee9a895f84755b348f6b0402c4bfe180cb | 62af1cac71c46742bd7c05fd37e6e47edf2e92f4 | diff --git a/phlib/include/phconfig.h b/phlib/include/phconfig.h
index 5a8dfb763685..5571da5d5f0f 100644
--- a/phlib/include/phconfig.h
+++ b/phlib/include/phconfig.h
@@ -48,7 +48,8 @@ EXTERN_C ULONG WindowsVersion;
#define WINDOWS_11_22H2 115 // September, 2022 // Build 22621
#define WINDOWS_11_23H2 116 // October,... | [
"phlib/include/phconfig.h"
] | [
{
"comment": "should **WINDOWS_MAX** be changed to 25H2? ",
"path": "phlib/include/phconfig.h",
"hunk": "@@ -48,6 +48,7 @@ EXTERN_C ULONG WindowsVersion;\n #define WINDOWS_11_22H2 115 // September, 2022 // Build 22621\n #define WINDOWS_11_23H2 116 // October, 2023 // Build 22631\n #define WINDOWS_11... | true | ||
winsiderss/systeminformer | 2,616 | comment_to_fix | add win11 25h2 | The PR is a bit premature, 25H2 is still is preview. So "October, 2025" is just speculation here. We'll want to go back and update this once it actually drops. But I'm fine with taking this change early. | e54016ee9a895f84755b348f6b0402c4bfe180cb | 62af1cac71c46742bd7c05fd37e6e47edf2e92f4 | diff --git a/phlib/include/phconfig.h b/phlib/include/phconfig.h
index 5a8dfb763685..5571da5d5f0f 100644
--- a/phlib/include/phconfig.h
+++ b/phlib/include/phconfig.h
@@ -48,7 +48,8 @@ EXTERN_C ULONG WindowsVersion;
#define WINDOWS_11_22H2 115 // September, 2022 // Build 22621
#define WINDOWS_11_23H2 116 // October,... | [
"phlib/include/phconfig.h"
] | [
{
"comment": "The PR is a bit premature, 25H2 is still is preview. So \"October, 2025\" is just speculation here. We'll want to go back and update this once it actually drops. But I'm fine with taking this change early.",
"path": "phlib/include/phconfig.h",
"hunk": "@@ -48,7 +48,8 @@ EXTERN_C ULONG Wind... | true | ||
winsiderss/systeminformer | 2,697 | issue_to_patch | phnt: Fix typedef typos | 419239f33cf2ce22303e1e573f72c2486b709e75 | 508faafce692ee8785432226a2709338ed50b79a | diff --git a/phnt/include/ntpfapi.h b/phnt/include/ntpfapi.h
index 8d4e12431c7d..bef46bcf09e3 100644
--- a/phnt/include/ntpfapi.h
+++ b/phnt/include/ntpfapi.h
@@ -383,7 +383,7 @@ typedef struct _PF_TRIM_WHILE_AGING_CONTROL_1
BOOLEAN PrivatePageTrimAge;
BOOLEAN SharedPageTrimAge;
USHORT Spare;
-} PF_TRIM_... | [
"phnt/include/ntpfapi.h",
"phnt/include/ntpsapi.h"
] | [] | true | |||
winsiderss/systeminformer | 2,696 | issue_to_patch | phnt: Small improvements | - `LdrStandardizeSystemPath` still exported in the latest Win11
- SAL improvements: `_In_` -> `_In_reads_(Count)`
- Comment fix and white spaces cleanup
BTW, the parameter `ResourceId` of `LdrEnumResources` should be `ResourcePath` like others or not? | 10fa3ca7cd13d2d4ce218734e511300ae926aa72 | 50ec00f809b8c6783aa213cf2dcdb95284e8276e | diff --git a/phnt/include/ntldr.h b/phnt/include/ntldr.h
index 7fd9336f05e4..f1177305bb04 100644
--- a/phnt/include/ntldr.h
+++ b/phnt/include/ntldr.h
@@ -398,7 +398,7 @@ LdrGetDllPath(
// rev
/**
- * The LdrSetDllDirectory routine retrieves the application-specific portion of the search path used to locate DLLs fo... | [
"phnt/include/ntldr.h"
] | [] | true | ||
winsiderss/systeminformer | 2,694 | issue_to_patch | phnt: Small fixes | - Correct function comments
- In `LdrEnumerateLoadedModules`, the `Context` passed to callback should be optional | e230633eb45511ed96151437ad95fd2c90cd353d | a01601c391bce386f7f613ef0395fb37bab92be3 | diff --git a/phnt/include/ntexapi.h b/phnt/include/ntexapi.h
index a07a1687b297..5c7f56a9d8f2 100644
--- a/phnt/include/ntexapi.h
+++ b/phnt/include/ntexapi.h
@@ -1576,7 +1576,7 @@ NtCreateWnfStateName(
);
/**
- * The NtCreateWnfStateName routine deletes an existing WNF state name.
+ * The NtDeleteWnfStateName ... | [
"phnt/include/ntexapi.h",
"phnt/include/ntldr.h",
"phnt/include/ntpoapi.h",
"phnt/include/ntrtl.h"
] | [] | true | ||
winsiderss/systeminformer | 2,689 | issue_to_patch | Debug assert when select the menu option "Current Power Scheme"
### Brief description of your issue
The application crashes when select the menu option "Current Power Scheme" because securityDescriptor is NULL. The assert call must be made after the securityDescriptor assignment
### Steps to reproduce (optional)
_... | Fix debug assert when select the menu option "Current Power Scheme" | Fixes (#2688) | 54a8bbdef9222c2a0b58576f12778bef42b36ad5 | efef3667dd2b4ff18f74645b7e6b00a76b80ba51 | diff --git a/phlib/util.c b/phlib/util.c
index 9ffd474822d7..07eb9989baff 100644
--- a/phlib/util.c
+++ b/phlib/util.c
@@ -5542,12 +5542,12 @@ PSECURITY_DESCRIPTOR PhGetSecurityDescriptorFromString(
securityDescriptorLength
)
{
- assert(securityDescriptorLength == RtlLengthSecurityDescript... | [
"phlib/util.c"
] | [] | true | |
winsiderss/systeminformer | 2,691 | issue_to_patch | Better POGO parsing | ae79db31bb67a08c8e8bf20a17fec6a4089fad3c | e972876c9f751f6a64c31fe552bacf9a41b98520 | diff --git a/phlib/mapimg.c b/phlib/mapimg.c
index c6fc82e7ef90..91bd9f1898ce 100644
--- a/phlib/mapimg.c
+++ b/phlib/mapimg.c
@@ -3994,7 +3994,7 @@ BOOLEAN PhGetMappedImagePogoEntryByName(
return FALSE;
}
- if (debugEntry->Signature != IMAGE_DEBUG_POGO_SIGNATURE_LTCG && debugEntry->Signature != IMAG... | [
"phlib/mapimg.c",
"phnt/include/ntimage.h",
"tools/peview/pepogoprp.c"
] | [] | true | |||
winsiderss/systeminformer | 2,673 | issue_to_patch | phnt: Improve `RtlGetLastWin32Error` SAL annotation | Add `_Check_return_` and `_Post_equals_last_error_`, just like `GetLastError`:
https://github.com/KNSoft/WinSDK-Diff/blob/66089edfd04e8f1943a19bd2bd79ad673f990242/Include/um/errhandlingapi.h#L80-L87 | 41993e81a317d4e224288066ec0f9cb342aec116 | 4935cddb11ee062cf772ec3502cf63b8bd7089fc | diff --git a/phnt/include/ntrtl.h b/phnt/include/ntrtl.h
index 6ba439d05ec7..27b2741c40ae 100644
--- a/phnt/include/ntrtl.h
+++ b/phnt/include/ntrtl.h
@@ -7142,6 +7142,8 @@ RtlGetLastNtStatus(
VOID
);
+_Check_return_
+_Post_equals_last_error_
NTSYSAPI
LONG
NTAPI
| [
"phnt/include/ntrtl.h"
] | [] | true | ||
winsiderss/systeminformer | 2,666 | issue_to_patch | phnt: Small fixes | - Cleanup whitespaces
- Fix `NtUserQueryInformationThread` SAL annotation
- Fix `NtChangeThreadState` parameter
<img width="764" height="540" alt="image" src="https://github.com/user-attachments/assets/1bb64536-9958-4a87-b19a-5ccf70f452e4" />
The latest Windows SDK shows this syscall has 24 bytes arguments for ... | f1249f7d93390effa652d816c58e2f2d3febde5c | 634e15311500f4e5625c802b3b22bc3137c547b2 | diff --git a/phnt/include/ntpsapi.h b/phnt/include/ntpsapi.h
index c786324850c8..4f92a04f3aed 100644
--- a/phnt/include/ntpsapi.h
+++ b/phnt/include/ntpsapi.h
@@ -2305,7 +2305,7 @@ NtChangeThreadState(
_In_ THREAD_STATE_CHANGE_TYPE StateChangeType,
_In_opt_ PVOID ExtendedInformation,
_In_opt_ SIZE_T Exte... | [
"phnt/include/ntpsapi.h",
"phnt/include/ntrtl.h",
"phnt/include/ntuser.h"
] | [] | true | ||
winsiderss/systeminformer | 2,679 | issue_to_patch | phnt: Fix NtGetNextThread flags parameter comment | Context: https://github.com/m417z/ntdoc/pull/24.
cc @diversenok | 0b96cfd122440e81dffcd943ffbc8fa1329404f0 | 02d04c5802155b08b4210882e9cf2e5b1de3db2d | diff --git a/phnt/include/ntpsapi.h b/phnt/include/ntpsapi.h
index 7727d5b7d327..3253ae40bb3a 100644
--- a/phnt/include/ntpsapi.h
+++ b/phnt/include/ntpsapi.h
@@ -2174,8 +2174,7 @@ NtGetNextProcess(
* @param ThreadHandle An optional handle to a thread. If this parameter is NULL, the function retrieves the first threa... | [
"phnt/include/ntpsapi.h"
] | [] | true | ||
winsiderss/systeminformer | 2,675 | issue_to_patch | fix: wrong condition in dvrt import control | See https://github.com/winsiderss/systeminformer/issues/2674 for details | 8fc56316a34b515596416ca17f9a8e07750f725c | ff0820b7d1c5c7eca3b27064e57a5c0d94cf23ba | diff --git a/phlib/mapimg.c b/phlib/mapimg.c
index 1ea306234513..4ddbb567bfa6 100644
--- a/phlib/mapimg.c
+++ b/phlib/mapimg.c
@@ -4541,8 +4541,7 @@ VOID PhpFillDynamicRelocations(
{
PH_IMAGE_DYNAMIC_RELOC_ENTRY entry;
- if (relocations[i].PageRelativeOffset == 0 ||
- ... | [
"phlib/mapimg.c"
] | [] | true | ||
winsiderss/systeminformer | 2,659 | issue_to_patch | Update CMakeLists.txt | 5eb20a27ebcd5084c001aacdecc975130bc91d9c | 1e2f5f9f1f5f06626f32d66a24790c0c328cfd8b | diff --git a/tools/thirdparty/CMakeLists.txt b/tools/thirdparty/CMakeLists.txt
index 790103a65657..9d622bc9df5f 100644
--- a/tools/thirdparty/CMakeLists.txt
+++ b/tools/thirdparty/CMakeLists.txt
@@ -73,7 +73,10 @@ source_group("Mini-XML\\Headers" FILES ${HEADERS_MINI_XML})
set(SOURCES_PCRE
"pcre/pcre2_auto_posses... | [
"tools/thirdparty/CMakeLists.txt"
] | [] | true | |||
winsw/winsw | 1,192 | issue_to_patch | Bump microsoft/setup-msbuild from 2 to 3 | Bumps [microsoft/setup-msbuild](https://github.com/microsoft/setup-msbuild) from 2 to 3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/microsoft/setup-msbuild/releases">microsoft/setup-msbuild's releases</a>.</em></p>
<blockquote>
<h2>v3 Update to move to Node24</h2>
<h2>Wha... | 7823f3aea98464eb615dfc770ab607b5694a7729 | 2528cac3dd9a4ddb0e73d8fa1253f0c38b510c8d | diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml
index b56f009f..29be8634 100644
--- a/.github/workflows/dotnet-desktop.yml
+++ b/.github/workflows/dotnet-desktop.yml
@@ -35,7 +35,7 @@ jobs:
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name... | [
".github/workflows/dotnet-desktop.yml"
] | [] | true | ||
winsw/winsw | 1,316 | issue_to_patch | MkDocs metadata: add docs root properties | Fixes #1315 | 4804da991d7d4bd89c19baef13fc9582259d0dc2 | cf07bf3c6de76d0ee3cab83098106f12b0799d8a | diff --git a/mkdocs.yml b/mkdocs.yml
index db31289f..23157893 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -1,3 +1,6 @@
+edit_uri: /blob/master/
+docs_dir: .
+
# Document structure for winsw.github.io
nav:
- Overview: README.md
| [
"mkdocs.yml"
] | [] | true | ||
winsw/winsw | 1,315 | issue_to_patch | Initialize the documentation structure for the v3 baseline | For the import in https://github.com/winsw/winsw.github.io | 1e2d8db0de491e0f34658ba077fb4ae88c5e000e | 55327396f6a9a07ba97a419e22fee2cea4d0094b | diff --git a/MANIFEST.md b/MANIFEST.md
index 65194d9e..09c1bf98 100644
--- a/MANIFEST.md
+++ b/MANIFEST.md
@@ -1,6 +1,6 @@
-# Project manifest
+# Project manifesto
-Here is a cite from [Kohsuke Kawaguchi](https://github.com/kohsuke/), who is the original author of this project:
+Here is a quote from [Kohsuke Kawaguch... | [
"MANIFEST.md",
"mkdocs.yml"
] | [] | true | ||
winsw/winsw | 1,001 | issue_to_patch | Upgrade to .NET 7 | f5b44b958fe0d1f1179465550b5f129f3252b7c3 | be631085bff858b53c997120eeeebd591f749f5f | diff --git a/eng/build.yml b/eng/build.yml
index a7417d37..0727edf5 100644
--- a/eng/build.yml
+++ b/eng/build.yml
@@ -25,11 +25,6 @@ strategy:
Release:
BuildConfiguration: Release
steps:
-- task: UseDotNet@2
- displayName: Install .NET SDK
- inputs:
- packageType: sdk
- version: 6.x
- task: DotNe... | [
"eng/build.yml",
"src/WinSW.Core/AssemblyInfo.cs",
"src/WinSW.Core/WinSW.Core.csproj",
"src/WinSW.Core/WrapperService.cs",
"src/WinSW.Plugins/WinSW.Plugins.csproj",
"src/WinSW.Tasks/Trim.cs",
"src/WinSW.Tasks/WinSW.Tasks.csproj",
"src/WinSW.Tests/CommandLineTests.cs",
"src/WinSW.Tests/WinSW.Tests.cs... | [] | true | |||
winsw/winsw | 1,195 | issue_to_patch | Add keepFiles support for time-based log rolling | Added <keepFiles> option to "roll-by-time" log mode, allowing configuration of how many rolled log files to retain. Updated documentation, XmlServiceConfig parsing, and TimeBasedRollingLogAppender to support and enforce file retention. Old log files are now purged automatically when the limit is exceeded. | 7823f3aea98464eb615dfc770ab607b5694a7729 | a0bd2f639c9421fb701dcc3120cee835258068a5 | diff --git a/docs/logging-and-error-reporting.md b/docs/logging-and-error-reporting.md
index 4e9e42aa..8202d5ee 100644
--- a/docs/logging-and-error-reporting.md
+++ b/docs/logging-and-error-reporting.md
@@ -48,10 +48,12 @@ Works like the append mode, but in addition, if the log file gets bigger than a
Works like the r... | [
"docs/logging-and-error-reporting.md",
"src/WinSW.Core/Configuration/XmlServiceConfig.cs",
"src/WinSW.Core/LogAppenders.cs",
"src/WinSW.Tests/LogAppenderTests.cs"
] | [] | true | ||
winsw/winsw | 1,160 | issue_to_patch | Misleading XML encoding declaration in ConfigXmlBuilder test utility
**Summary**
While reviewing the project I noticed a small issue in the test utility.
In "src/WinSW.Tests/Util/ConfigXmlBuilder.cs" the XML declaration is generated as:
<?xml version="1.0" encoding="utf-8"?>
However, the XML is constructed as an i... | Fix misleading XML encoding declaration in the ConfigXmlBuilder test class | Fixes #1158
In "src/WinSW.Tests/Util/ConfigXmlBuilder.cs" the XML declaration was generated as:
"<?xml version="1.0" encoding="utf-8"?>"
Since the XML is constructed as an in-memory .NET string, specifying the encoding
can be misleading (the string is internally UTF-16).
This change removes the encoding at... | 60d04ff69c68194482a0410404bf661b1fe64a2b | c46c662bda72f1690a9c409d60bb0b74fd66b705 | diff --git a/.github/workflows/changelog-management.yml b/.github/workflows/changelog-management.yml
index caf58b6c..b708853b 100644
--- a/.github/workflows/changelog-management.yml
+++ b/.github/workflows/changelog-management.yml
@@ -6,6 +6,6 @@ jobs:
update_draft_release:
runs-on: ubuntu-latest
steps:
- ... | [
".github/workflows/changelog-management.yml",
"src/WinSW.Tests/Util/ConfigXmlBuilder.cs"
] | [] | true | |
winsw/winsw | 1,165 | issue_to_patch | Bump release-drafter/release-drafter from 6.2.0 to 6.4.0 | Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 6.2.0 to 6.4.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/release-drafter/release-drafter/releases">release-drafter/release-drafter's releases</a>.</em></p>
<blockquote>
<h2>... | 60d04ff69c68194482a0410404bf661b1fe64a2b | 1c87c30908e591b1c6ed77bd8c1b5862ca6d54dc | diff --git a/.github/workflows/changelog-management.yml b/.github/workflows/changelog-management.yml
index caf58b6c..b708853b 100644
--- a/.github/workflows/changelog-management.yml
+++ b/.github/workflows/changelog-management.yml
@@ -6,6 +6,6 @@ jobs:
update_draft_release:
runs-on: ubuntu-latest
steps:
- ... | [
".github/workflows/changelog-management.yml"
] | [] | true | ||
winsw/winsw | 1,152 | issue_to_patch | SharedDirectoryMapper: make YAML parsing more tolerant | ## Motivation
When configuring `SharedDirectoryMapper` via YAML, it’s easy to run into runtime/config errors due to:
- key casing differences (`uncpath` vs `uncPath`) because YAML settings are deserialized into `Dictionary<object, object>` and accessed case-sensitively
- drive labels missing the trailing `:` (e.g. `la... | e201ac39762aefde8a4dd9dbd81e71988b266476 | 7d5ddbfc0bd15348d1cb2b44d918acf54a10dfc3 | diff --git a/src/WinSW.Plugins/SharedDirectoryMapperConfig.cs b/src/WinSW.Plugins/SharedDirectoryMapperConfig.cs
index e388903c..34f09cbe 100644
--- a/src/WinSW.Plugins/SharedDirectoryMapperConfig.cs
+++ b/src/WinSW.Plugins/SharedDirectoryMapperConfig.cs
@@ -40,16 +40,82 @@ public static SharedDirectoryMapperConfig Fro... | [
"src/WinSW.Plugins/SharedDirectoryMapperConfig.cs",
"src/WinSW.Tests/Extensions/SharedDirectoryMapperConfigTest.cs"
] | [] | true | ||
winsw/winsw | 1,039 | issue_to_patch | Fix yaml `logPath` case | 6cf303c1d3fbe1069d95af230b8efa117d29cdf2 | bbf09132e783c5b5922dee055db3fc1972508539 | diff --git a/doc/yamlConfigFile.md b/doc/yamlConfigFile.md
index 01b3bd9e..5bd55581 100644
--- a/doc/yamlConfigFile.md
+++ b/doc/yamlConfigFile.md
@@ -96,14 +96,14 @@ depend:
### log
-Optionally set a different logging directory with `logpath` and startup `mode`: append (default), reset (clear log), ignore, roll (... | [
"doc/yamlConfigFile.md",
"examples/sample-allOption.yml",
"src/WinSW.Tests/ServiceDescriptorYamlTest.cs"
] | [] | true | |||
winsw/winsw | 1,149 | issue_to_patch | Docs: fix SharedDirectoryMapper YAML sample | ### Motivation
The YAML example in `doc/extensions/sharedDirectoryMapper.md` currently uses:
- `label: N` / `label: M` (missing the trailing `:`)
- `uncpath` (lowercase)
But the implementation expects:
- drive labels like `N:` / `M:`
- the YAML key `uncPath` (capital `P`)
This mismatch can lead to confusing runtime f... | 05be3652dccb21146ac56a77520f1f64087f8207 | fd73c878a6a7ce635bf75426aca221c24d249c7b | diff --git a/doc/extensions/sharedDirectoryMapper.md b/doc/extensions/sharedDirectoryMapper.md
index e973a823..ec81f38f 100644
--- a/doc/extensions/sharedDirectoryMapper.md
+++ b/doc/extensions/sharedDirectoryMapper.md
@@ -51,11 +51,11 @@ extensions:
settings:
mapping:
- enabled: false
... | [
"doc/extensions/sharedDirectoryMapper.md"
] | [] | true | ||
winsw/winsw | 1,148 | issue_to_patch | CI: enable Azure Pipelines for v2 | ### Motivation
PRs targeting `v2` currently don’t get the same Azure Pipelines coverage as `v3` because `eng/build.yml` still filters on `master`, so the pipeline is skipped/neutral for `v2` PRs.
This came up while reviewing the `v2` backport PR (#1144) where the CI signal was notably weaker than on `v3`.
Once the pi... | 05be3652dccb21146ac56a77520f1f64087f8207 | 6c34a8941cdbc5b1481c0967efb6cc83a2f10c5e | diff --git a/eng/build.yml b/eng/build.yml
index 68d4eb9d..918df396 100644
--- a/eng/build.yml
+++ b/eng/build.yml
@@ -3,10 +3,10 @@
name: $(Major).$(Minor).$(Patch).$(Revision)
trigger:
-- master
+- v2
pr:
-- master
+- v2
variables:
- group: Version
@@ -38,6 +38,8 @@ steps:
displayName: Build
- script: ... | [
"eng/build.yml",
"src/WinSW.Core/WinSW.Core.csproj",
"src/WinSW.Plugins/SharedDirectoryMapperConfig.cs",
"src/WinSW.Tests/Extensions/SharedDirectoryMapperTests.cs",
"src/WinSW/WinSW.csproj"
] | [] | true | ||
winsw/winsw | 1,144 | issue_to_patch | WrapperService: open SCM with Connect in SignalStopped (v2 backport) | Refs #1136
### Context
Issue #1136 reports `Access is denied` when WinSW tries to report a clean child-process exit (`ExitCode == 0`) via `WrapperService.SignalStopped()` while running under a restricted service account.
`SignalStopped()` currently calls `ServiceManager.Open()` (defaults to `ServiceManagerAccess.All`... | 4640393a125c3dc1deb0eb430e6b7f662a7cae29 | b3a4ae4d1655678cfbecaaf5b1530ad278c6f368 | diff --git a/src/WinSW/WrapperService.cs b/src/WinSW/WrapperService.cs
index 8c82d4a1..59e515bd 100644
--- a/src/WinSW/WrapperService.cs
+++ b/src/WinSW/WrapperService.cs
@@ -391,7 +391,7 @@ private void SignalPending()
private void SignalStopped()
{
- using var scm = ServiceManager.Open(... | [
"src/WinSW/WrapperService.cs"
] | [] | true | ||
winsw/winsw | 1,141 | issue_to_patch | WrapperService: open SCM with Connect in SignalStopped | Refs #1136
### Context
Issue #1136 reports an `Access is denied` error when WinSW tries to report a clean child-process exit (`ExitCode == 0`) via `WrapperService.SignalStopped()` while running under a restricted service account.
`SignalStopped()` currently calls `ServiceManager.Open()` (defaults to `ServiceManagerAc... | b4eea52868957fcc8fb056155e85bd1b3f0409b9 | cbdc144b3bc1ab56e3058ccfcf56b9be59f3f8c3 | diff --git a/src/WinSW.Core/WrapperService.cs b/src/WinSW.Core/WrapperService.cs
index 33bf83a7..83f7dbd3 100644
--- a/src/WinSW.Core/WrapperService.cs
+++ b/src/WinSW.Core/WrapperService.cs
@@ -489,7 +489,7 @@ private void SignalPending()
private void SignalStopped()
{
- using var scm = ... | [
"src/WinSW.Core/WrapperService.cs"
] | [] | true | ||
winsw/winsw | 1,143 | issue_to_patch | docs: clarify branch/release status in README | Refs #1102
### Context
Some users interpret the lack of recent releases as “deprecated”, while active development happens on the `v3` branch and WinSW 2.x documentation lives on `master`.
### Change
- Add a short **Project status** section to `README.md` describing:
- `v3` as the development/default branch
- stab... | b4eea52868957fcc8fb056155e85bd1b3f0409b9 | c197e1cfb79fb21f661b8da34932bb746301901e | diff --git a/README.md b/README.md
index eb02a1b5..028eb2e7 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,11 @@
WinSW wraps and manages any application as a Windows service.
-**We are actively developing WinSW 3. Please refer to the [v2](https://github.com/winsw/winsw/tree/master) branch for previous version... | [
"README.md"
] | [] | true | ||
winsw/winsw | 1,138 | issue_to_patch | Bump release-drafter/release-drafter from 6.1.0 to 6.2.0 | Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 6.1.0 to 6.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/release-drafter/release-drafter/releases">release-drafter/release-drafter's releases</a>.</em></p>
<blockquote>
<h2>... | 3d819a53fe8379a3884733589e6a1c2628ff8b2b | 6b9caba69f06e1fa95d3f04c7d46ed98540cf42d | diff --git a/.github/workflows/changelog-management.yml b/.github/workflows/changelog-management.yml
index d9b64a91..caf58b6c 100644
--- a/.github/workflows/changelog-management.yml
+++ b/.github/workflows/changelog-management.yml
@@ -6,6 +6,6 @@ jobs:
update_draft_release:
runs-on: ubuntu-latest
steps:
- ... | [
".github/workflows/changelog-management.yml"
] | [] | true | ||
winsw/winsw | 1,135 | issue_to_patch | Add a Troubleshooting Section to Docs
I will create a PR with this soon, but using this so i can mention it in other tickets and have something i can use for reference.
### The system cannot find the file specified.
This can be caused by multiple reasons:
* Using the executable name and the executable is not in the ... | docs: add troubleshooting guide | Fixes #1113.
Adds a new `docs/troubleshooting.md` page with common startup/permission issues and links it from `README.md`. | 3d819a53fe8379a3884733589e6a1c2628ff8b2b | 1f75bde01ab3db5c6883990201e237175ab8e159 | diff --git a/README.md b/README.md
index eb02a1b5..9daa00b5 100644
--- a/README.md
+++ b/README.md
@@ -117,6 +117,7 @@ Most commands require Administrator privileges to execute. WinSW will prompt for
* Use cases:
* [Self-restarting services](docs/self-restarting-service.md)
* [Deferred file operations](docs/defe... | [
"README.md",
"docs/troubleshooting.md"
] | [] | true | |
winsw/winsw | 1,140 | issue_to_patch | docs: update contributing prerequisites | This updates `CONTRIBUTING.md` prerequisites to match the current target frameworks (e.g. `net7.0-windows`).
- Require .NET SDK 7.0+ (instead of .NET 5)
- Require Visual Studio 2022+ (instead of VS 2019)
- Update a Microsoft Docs link to `learn.microsoft.com`
Docs-only change. | b4eea52868957fcc8fb056155e85bd1b3f0409b9 | 9b7c82d87ed4074f833bac3e31f7f56ad3133b11 | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 68beca1d..cd3b2da8 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -2,9 +2,9 @@
## Prerequisites
-[.NET 5 SDK or later](https://dotnet.microsoft.com/download/dotnet/5.0) and your favorite code editor.
+[.NET SDK (7.0 or later)](https://dotnet.microsoft.com... | [
"CONTRIBUTING.md"
] | [] | true | ||
winsw/winsw | 1,142 | issue_to_patch | README.md list similar projects | b4eea52868957fcc8fb056155e85bd1b3f0409b9 | bada926d1fc92b2a1295986faaa6b2a193907039 | diff --git a/README.md b/README.md
index eb02a1b5..d5d6963d 100644
--- a/README.md
+++ b/README.md
@@ -126,3 +126,12 @@ See the [contributing guidelines](CONTRIBUTING.md) for more information.
## License
WinSW is licensed under the [MIT](LICENSE.txt) license.
+
+## Similar projects
+
+* [srvany.exe](https://learn.m... | [
"README.md"
] | [
{
"comment": "```suggestion\n## Similar projects\n```\n",
"path": "README.md",
"hunk": "@@ -126,3 +126,12 @@ See the [contributing guidelines](CONTRIBUTING.md) for more information.\n ## License\n \n WinSW is licensed under the [MIT](LICENSE.txt) license.\n+\n+## similar projects",
"resolving_sha": ... | true | |||
winsw/winsw | 1,142 | comment_to_fix | README.md list similar projects | ```suggestion
## Similar projects
```
| b4eea52868957fcc8fb056155e85bd1b3f0409b9 | bada926d1fc92b2a1295986faaa6b2a193907039 | diff --git a/README.md b/README.md
index eb02a1b5..d5d6963d 100644
--- a/README.md
+++ b/README.md
@@ -126,3 +126,12 @@ See the [contributing guidelines](CONTRIBUTING.md) for more information.
## License
WinSW is licensed under the [MIT](LICENSE.txt) license.
+
+## Similar projects
+
+* [srvany.exe](https://learn.m... | [
"README.md"
] | [
{
"comment": "```suggestion\n## Similar projects\n```\n",
"path": "README.md",
"hunk": "@@ -126,3 +126,12 @@ See the [contributing guidelines](CONTRIBUTING.md) for more information.\n ## License\n \n WinSW is licensed under the [MIT](LICENSE.txt) license.\n+\n+## similar projects",
"resolving_sha": ... | true | ||
winsw/winsw | 1,139 | issue_to_patch | Bump actions/checkout from 6.0.1 to 6.0.2 | Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
<blockquote>
<h2>v6.0.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Add orchestrati... | 3d819a53fe8379a3884733589e6a1c2628ff8b2b | 8636ca7c4cc0d5ab5f7e741cab386ad29aa321e4 | diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml
index 2b9a5397..b56f009f 100644
--- a/.github/workflows/dotnet-desktop.yml
+++ b/.github/workflows/dotnet-desktop.yml
@@ -23,7 +23,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v6.0.1
+ use... | [
".github/workflows/dotnet-desktop.yml",
".github/workflows/milestone-management.yml"
] | [] | true | ||
winsw/winsw | 1,128 | issue_to_patch | Bump @octokit/request and @actions/github in /.github/actions/milestone-management | Bumps [@octokit/request](https://github.com/octokit/request.js) to 8.4.1 and updates ancestor dependency [@actions/github](https://github.com/actions/toolkit/tree/HEAD/packages/github). These dependencies need to be updated together.
Updates `@octokit/request` from 5.6.3 to 8.4.1
<details>
<summary>Release notes</summ... | 6bb7b074126c83f8aa479d74ebbae5109f4cdfc2 | 88f32d20aaf54bac1033476341eed2c537711ba0 | diff --git a/.github/actions/milestone-management/package-lock.json b/.github/actions/milestone-management/package-lock.json
index a86157ec..1ebadffe 100644
--- a/.github/actions/milestone-management/package-lock.json
+++ b/.github/actions/milestone-management/package-lock.json
@@ -10,7 +10,7 @@
"license": "ISC"... | [
".github/actions/milestone-management/package-lock.json",
".github/actions/milestone-management/package.json"
] | [] | true | ||
winsw/winsw | 1,131 | issue_to_patch | Shared Directory Mapper extension link broken
at
https://github.com/winsw/winsw/blob/v3/docs/extensions/extensions.md
the link to Shared Directory Mapper is broken | Fix Shared Directory Mapper link | Fixes #849.
`docs/extensions/extensions.md` linked to `shared-directory-mapper.md` (non-existent). This updates the link to the existing `sharedDirectoryMapping` section in `docs/xml-config-file.md`. | e2693ea9c70380fb3b92af9d2d8a28c37e9109f1 | d32818480eb6d07da590c168aa79df9e8e1ee623 | diff --git a/docs/extensions/extensions.md b/docs/extensions/extensions.md
index 96d6e028..6bbd8c0a 100644
--- a/docs/extensions/extensions.md
+++ b/docs/extensions/extensions.md
@@ -5,7 +5,7 @@ These extensions allow to alter the behavior of the Windows service in order to
## Available extensions
-* [Shared Direc... | [
"docs/extensions/extensions.md"
] | [] | true | |
winsw/winsw | 1,017 | issue_to_patch | Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0 | Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.4.1 to 17.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/microsoft/vstest/releases">Microsoft.NET.Test.Sdk's releases</a>.</em></p>
<blockquote>
<h2>v17.5.0</h2>
<p>See the release notes <a href=... | e4cf507bae5981363a9cdc0f7301c1aa892af401 | 93d97d699a94fbce9c99fcfba0f795a5819360a8 | diff --git a/src/WinSW.Tests/WinSW.Tests.csproj b/src/WinSW.Tests/WinSW.Tests.csproj
index 95f40f15..4a4b2928 100644
--- a/src/WinSW.Tests/WinSW.Tests.csproj
+++ b/src/WinSW.Tests/WinSW.Tests.csproj
@@ -12,7 +12,7 @@
</PackageReference>
<PackageReference Include="Microsoft.Diagnostics.Runtime" Version="2.0.22... | [
"src/WinSW.Tests/WinSW.Tests.csproj"
] | [] | true | ||
winsw/winsw | 744 | issue_to_patch | For 2.9.0 - [JENKINS-63198] - Harden exception handling in RunawayProcessKiller | Follow-up on the report in https://issues.jenkins.io/browse/JENKINS-63198 . Not applicable to v3 | 2edcee7f49b52660f61a5eb2d094ef5eb83e89eb | 1df29079af528a7b62721d242c2cea53e68f07e5 | diff --git a/src/WinSW.Core/Native/Handle.cs b/src/WinSW.Core/Native/Handle.cs
index 1a8ce603..cb145587 100644
--- a/src/WinSW.Core/Native/Handle.cs
+++ b/src/WinSW.Core/Native/Handle.cs
@@ -5,7 +5,7 @@
namespace WinSW.Native
{
[StructLayout(LayoutKind.Sequential)]
- internal readonly ref struct Handle
+ i... | [
"src/WinSW.Core/Native/Handle.cs",
"src/WinSW.Core/Native/ProcessApis.cs",
"src/WinSW.Core/Util/ProcessHelper.cs",
"src/WinSW.Plugins/NativeMethods.cs",
"src/WinSW.Plugins/RunawayProcessKillerExtension.cs"
] | [
{
"comment": "> The process was not started by this object.\r\n\r\nThe description of this exception is confusing, however, it should not be thrown on local machine.",
"path": "src/Plugins/RunawayProcessKiller/RunawayProcessKillerExtension.cs",
"hunk": "@@ -241,10 +241,27 @@ public override void OnWrapp... | true | ||
winsw/winsw | 1,124 | issue_to_patch | Bump release-drafter/release-drafter from 5.22.0 to 6.1.0 | Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5.22.0 to 6.1.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/release-drafter/release-drafter/releases">release-drafter/release-drafter's releases</a>.</em></p>
<blockquote>
<h2... | 3d463fb741ed56da0565a40f4cf25e1d4af4e54e | ae2f52976b012a50caf0525e421921cd10f27b03 | diff --git a/.github/workflows/changelog-management.yml b/.github/workflows/changelog-management.yml
index 1668766e..d9b64a91 100644
--- a/.github/workflows/changelog-management.yml
+++ b/.github/workflows/changelog-management.yml
@@ -6,6 +6,6 @@ jobs:
update_draft_release:
runs-on: ubuntu-latest
steps:
- ... | [
".github/workflows/changelog-management.yml"
] | [] | true | ||
winsw/winsw | 1,126 | issue_to_patch | Bump actions/checkout from 3.5.2 to 6.0.1 | Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.2 to 6.0.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
<blockquote>
<h2>v6.0.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Update all refe... | 3d463fb741ed56da0565a40f4cf25e1d4af4e54e | d912164eec66c0460a10ff0c84a20c8c036240ef | diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml
index e3fac2bc..2cac2b84 100644
--- a/.github/workflows/dotnet-desktop.yml
+++ b/.github/workflows/dotnet-desktop.yml
@@ -23,7 +23,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v4
+ uses: a... | [
".github/workflows/dotnet-desktop.yml",
".github/workflows/milestone-management.yml"
] | [] | true | ||
winsw/winsw | 1,123 | issue_to_patch | fix: allow net7 build to run on newer .NET runtimes | Azure windows-latest hosted agents no longer include a .NET 7 runtime by default (only 8.x/9.x/10.x), which breaks running the net7.0-windows testhost and starting the net7 WinSW apphost as a service (required Microsoft.NETCore.App 7.0.0).
This PR restores CI by:
- setting <RollForward>Major</RollForward> for the net7... | b63f0d83fc9fa4821099048fde02545a794c4e1c | fbc38c8189f97a97990a0c149126188f65fa8ca7 | diff --git a/eng/build.yml b/eng/build.yml
index 0727edf5..ff0aa3aa 100644
--- a/eng/build.yml
+++ b/eng/build.yml
@@ -42,6 +42,8 @@ steps:
command: test
projects: src\WinSW.Tests\WinSW.Tests.csproj
arguments: -c $(BuildConfiguration) --collect "XPlat Code Coverage" --no-build
+ env:
+ DOTNET_ROLL_FO... | [
"eng/build.yml",
"src/WinSW.Core/SharedDirectoryMapper.cs",
"src/WinSW.Tests/CommandLineTests.cs",
"src/WinSW.Tests/SharedDirectoryMapperTests.cs",
"src/WinSW.Tests/Util/CommandLineTestHelper.cs",
"src/WinSW/WinSW.csproj"
] | [] | true | ||
winsw/winsw | 1,125 | issue_to_patch | Bump actions/setup-dotnet from 4 to 5 | Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/setup-dotnet/releases">actions/setup-dotnet's releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h2>What's Changed</h2>
<h3>Breaking Cha... | 3d463fb741ed56da0565a40f4cf25e1d4af4e54e | 1d73b450bfce762bc97e2ff5d285289767a07b13 | diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml
index e3fac2bc..4b79d219 100644
--- a/.github/workflows/dotnet-desktop.yml
+++ b/.github/workflows/dotnet-desktop.yml
@@ -29,7 +29,7 @@ jobs:
# Install the .NET Core workload
- name: Install .NET Core
- uses: actio... | [
".github/workflows/dotnet-desktop.yml"
] | [] | true | ||
winsw/winsw | 1,122 | issue_to_patch | Document `hidewindow` configuration | Addresses #657 by documenting the `<hidewindow>` configuration entry.
Changes:
- Add a new `hidewindow` section to `docs/xml-config-file.md` describing its behavior (`CreateNoWindow=true`) and default.
- Add a commented example to `samples/complete.xml`.
Note: I didn't find YAML config docs/schema on the `v3` branch;... | b63f0d83fc9fa4821099048fde02545a794c4e1c | 8255f41baa510d35bfb3e43136c76f337baa9c90 | diff --git a/docs/xml-config-file.md b/docs/xml-config-file.md
index dcf9c569..ca746f88 100644
--- a/docs/xml-config-file.md
+++ b/docs/xml-config-file.md
@@ -219,6 +219,17 @@ This optional element can be specified multiple times if necessary to specify en
<env name="HOME" value="c:\abc" />
```
+### hidewindow
+
+*... | [
"docs/xml-config-file.md",
"samples/complete.xml"
] | [] | true | ||
winsw/winsw | 1,036 | issue_to_patch | Bump actions/checkout from 3.3.0 to 3.5.2 | Bumps [actions/checkout](https://github.com/actions/checkout) from 3.3.0 to 3.5.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
<blockquote>
<h2>v3.5.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix: Use correc... | e4cf507bae5981363a9cdc0f7301c1aa892af401 | 486e603181df648a19bd98969cae24cfb3663adb | diff --git a/.github/workflows/milestone-management.yml b/.github/workflows/milestone-management.yml
index 4adad768..d77f16c4 100644
--- a/.github/workflows/milestone-management.yml
+++ b/.github/workflows/milestone-management.yml
@@ -14,7 +14,7 @@ jobs:
new_milestone:
runs-on: ubuntu-latest
steps:
- ... | [
".github/workflows/milestone-management.yml"
] | [] | true | ||
winsw/winsw | 1,115 | issue_to_patch | Exit Code 1 Returned for Active (running) Status in WinSW v3.0.0-alpha.11
# Exit Code 1 Returned for `Active (running)` Status in WinSW v3.0.0-alpha.11
## Summary
When querying the status of a running Windows service managed by WinSW `v3.0.0-alpha.11`, the command `WinSW-x64.exe status <service>.xml` returns an exit ... | Fix status command exit code for running services (fixes #1110) | Previously, the `status` command returned exit code 1 for a service in the `Running` state. This caused scripts and monitoring tools to treat a healthy service as an error.
Updated the status logic to return exit code 0 for both `Stopped` and `Running` states, and 1 for all other states.
Fixes #1110. | e4cf507bae5981363a9cdc0f7301c1aa892af401 | c964016798342e07d5b0fbfebf94649d52ccdfb7 | diff --git a/src/WinSW/Program.cs b/src/WinSW/Program.cs
index ecc203f1..bb55449d 100644
--- a/src/WinSW/Program.cs
+++ b/src/WinSW/Program.cs
@@ -786,6 +786,7 @@ static void Status(string? pathToConfig, InvocationContext context)
context.ExitCode = svc.Status switch
{
... | [
"src/WinSW/Program.cs"
] | [] | true | |
winsw/winsw | 1,112 | issue_to_patch | Add Github Actions build to V3 branch | Adds simple CI check for Pull Requests | e4cf507bae5981363a9cdc0f7301c1aa892af401 | 16e161a900dee2c818b6d446e24ce7c6aa0b30dd | diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml
new file mode 100644
index 00000000..e3fac2bc
--- /dev/null
+++ b/.github/workflows/dotnet-desktop.yml
@@ -0,0 +1,43 @@
+name: .NET Core Desktop
+
+on:
+ push:
+ branches: [ "v3" ]
+ pull_request:
+ branches: [ "v3" ]
+
+jo... | [
".github/workflows/dotnet-desktop.yml",
"src/WinSW/WinSW.csproj"
] | [
{
"comment": "That changes configuration for other frameworks. Why?",
"path": "src/WinSW/WinSW.csproj",
"hunk": "@@ -15,15 +15,15 @@\n </PropertyGroup>\n \n <PropertyGroup>\n- <PublishTrimmed>true</PublishTrimmed>\n- <TrimMode>partial</TrimMode>\n <DebuggerSupport>false</DebuggerSupport>\n... | true | ||
winsw/winsw | 940 | issue_to_patch | Include ARM64 build as part of the releases | Simply add below command:
```
dotnet publish src\WinSW\WinSW.csproj -c $(BuildConfiguration) -f net6.0-windows -r win-arm64 -p:Version=$(BuildVersion)
``` | 5833a4c8e5753349b1f2aabfa12a2f161db46dce | 04a586fd529bcca9a2085aae9b059ea0a6b596d1 | diff --git a/eng/build.yml b/eng/build.yml
index 272ae422..363d66c4 100644
--- a/eng/build.yml
+++ b/eng/build.yml
@@ -40,6 +40,7 @@ steps:
- script: |
dotnet publish src\WinSW\WinSW.csproj -c $(BuildConfiguration) -f net6.0-windows -r win-x64 -p:Version=$(BuildVersion)
dotnet publish src\WinSW\WinSW.csproj ... | [
"eng/build.yml"
] | [] | true | ||
winsw/winsw | 1,006 | issue_to_patch | Revise docs for 3.0.0-alpha.11 | e0d4fcbe290de94ec55f690480516736005e7bcd | 3a167235288b26d2e0ad27c665bf616421452c49 | diff --git a/README.md b/README.md
index 74bcfd5f..eb02a1b5 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ See the [project manifest](MANIFEST.md).
## Supported platforms
WinSW 3 can run on Windows platforms with .NET Framework 4.6.1 or later versions installed.
-For systems without .NET Framework, the pr... | [
"README.md"
] | [] | true | |||
winsw/winsw | 1,004 | issue_to_patch | Upgrade to .NET 7 | Fixes #925 | 5498f3a7f1fecd822d980abc0e19c3b0c1d0f044 | fb9c7f396a33bcabe160a2065ddec57fd1a38385 | diff --git a/Directory.Build.targets b/Directory.Build.targets
index 93b21a99..612dce6a 100644
--- a/Directory.Build.targets
+++ b/Directory.Build.targets
@@ -1,6 +1,6 @@
<Project>
- <PropertyGroup Condition="'$(TargetFramework)' == 'net461' or '$(TargetFramework)' == 'net6.0-windows'">
+ <PropertyGroup Condition... | [
"Directory.Build.targets",
"eng/build.yml",
"src/WinSW.Core/AssemblyInfo.cs",
"src/WinSW.Core/ILLink.Descriptors.xml",
"src/WinSW.Core/WinSW.Core.csproj",
"src/WinSW.Plugins/WinSW.Plugins.csproj",
"src/WinSW.Tests/WinSW.Tests.csproj",
"src/WinSW/Properties/AssemblyInfo.cs",
"src/WinSW/WinSW.csproj"
... | [] | true | ||
winsw/winsw | 964 | issue_to_patch | fix: wrong yaml schema for `logPath` | https://github.com/winsw/winsw/blob/9bfc034807a23e8de522efbad0a416b683557d4c/src/WinSW.Core/Configuration/YamlServiceConfig.cs#L376
Needs to be camlcase. | 9bfc034807a23e8de522efbad0a416b683557d4c | 517188491324d98488beda940ba8711d2c6dce61 | diff --git a/doc/yamlConfigurationSchema.json b/doc/yamlConfigurationSchema.json
index 53e5090f..df9116bb 100644
--- a/doc/yamlConfigurationSchema.json
+++ b/doc/yamlConfigurationSchema.json
@@ -108,8 +108,8 @@
"$id": "#/properties/log/period",
"type": "number"
},
- "logpath": {
- ... | [
"doc/yamlConfigurationSchema.json"
] | [] | true | ||
winsw/winsw | 875 | issue_to_patch | Update xml-config-file.md | fix typo | d31c2a6a0aebc25cea07dfe6a89c7a1aa1f86559 | c871a15973b451f85942ac66314cbcab801719ea | diff --git a/docs/xml-config-file.md b/docs/xml-config-file.md
index 1514ad1c..59d5630c 100644
--- a/docs/xml-config-file.md
+++ b/docs/xml-config-file.md
@@ -195,7 +195,7 @@ Specify `NUL` in `stdoutPath` or `stderrPath` to dispose of the corresponding st
Gives the service more time to stop when the system is being ... | [
"docs/xml-config-file.md"
] | [] | true | ||
winsw/winsw | 780 | issue_to_patch | Update serviceaccount field in sample complete.xml | The field `<serviceaccount>` seems like having a different structure, which not contains `domain` and `user`, but only a `username`. | 3ea4001333e10ffc3cb9cab647087809a7a0e21b | f9b04f8408c11f3f83562e9c2487a33170ece1e0 | diff --git a/samples/complete.xml b/samples/complete.xml
index 8230317e..e72ff378 100644
--- a/samples/complete.xml
+++ b/samples/complete.xml
@@ -65,8 +65,7 @@ Their modification will not take affect without the service re-installation.
-->
<!--
<serviceaccount>
- <domain>YOURDOMAIN</domain>
- <user>use... | [
"samples/complete.xml"
] | [] | true | ||
winsw/winsw | 874 | issue_to_patch | config: yaml, fix BASE environment variable typo | 9bfc034807a23e8de522efbad0a416b683557d4c | 1310f597b3c8184c0f4812fae6d91e2329d30c2f | diff --git a/doc/yamlConfigFile.md b/doc/yamlConfigFile.md
index 33bd88bd..01b3bd9e 100644
--- a/doc/yamlConfigFile.md
+++ b/doc/yamlConfigFile.md
@@ -103,7 +103,7 @@ User can specify all log configurations as a single YAML dictionary
```yaml
log:
mode: roll-by-size
- logpath: '%BASE/log%'
+ logpath: '%BAS... | [
"doc/yamlConfigFile.md"
] | [] | true | |||
winsw/winsw | 981 | issue_to_patch | Bump System.Reflection.Metadata from 5.0.0 to 7.0.0 | Bumps [System.Reflection.Metadata](https://github.com/dotnet/runtime) from 5.0.0 to 7.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/dotnet/runtime/releases">System.Reflection.Metadata's releases</a>.</em></p>
<blockquote>
<h2>.NET 7.0 RC 2</h2>
<p><a href="https://githu... | a6ba41681d84d84d95eb7a377c369d709e32225b | b1215746c0aca85a2b0f226341893f08eacf82ac | diff --git a/src/WinSW.Tests/WinSW.Tests.csproj b/src/WinSW.Tests/WinSW.Tests.csproj
index 6288ec49..b93daa97 100644
--- a/src/WinSW.Tests/WinSW.Tests.csproj
+++ b/src/WinSW.Tests/WinSW.Tests.csproj
@@ -21,7 +21,7 @@
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net7.0-windows'">
- <PackageRefe... | [
"src/WinSW.Tests/WinSW.Tests.csproj"
] | [] | true | ||
winsw/winsw | 1,002 | issue_to_patch | Update Node.js packages | cf6ddcd29960ba100e2545667fdb5ec4cf97606a | f34b8d8d32a91ab58052340b83babfc5fd75c116 | diff --git a/.github/actions/milestone-management/node_modules/.package-lock.json b/.github/actions/milestone-management/node_modules/.package-lock.json
index ea0723f8..ad4618f6 100644
--- a/.github/actions/milestone-management/node_modules/.package-lock.json
+++ b/.github/actions/milestone-management/node_modules/.pac... | [
".github/actions/milestone-management/node_modules/.package-lock.json",
".github/actions/milestone-management/node_modules/@actions/core/README.md",
".github/actions/milestone-management/node_modules/@actions/core/lib/command.d.ts",
".github/actions/milestone-management/node_modules/@actions/core/lib/command.... | [] | true | |||
winsw/winsw | 1,003 | issue_to_patch | Fix tests | 73b2539440434313bc5006b5424dc5f9ed79d703 | c9cb0eaa9f9a2e391a7bdd8dd45506431c74e1c7 | diff --git a/src/WinSW.Tests/CommandLineTests.cs b/src/WinSW.Tests/CommandLineTests.cs
index 3c711b26..d8eb8838 100644
--- a/src/WinSW.Tests/CommandLineTests.cs
+++ b/src/WinSW.Tests/CommandLineTests.cs
@@ -27,7 +27,7 @@ public void Install_Start_Stop_Uninstall_Console_App()
Assert.Equal(ServiceControl... | [
"src/WinSW.Tests/CommandLineTests.cs",
"src/WinSW.Tests/NativeMethods.txt",
"src/WinSW.Tests/Util/InterProcessCodeCoverageSession.cs",
"src/WinSW.Tests/WinSW.Tests.csproj"
] | [] | true | |||
winsw/winsw | 993 | issue_to_patch | Bump release-drafter/release-drafter from 5.20.1 to 5.22.0 | Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5.20.1 to 5.22.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/release-drafter/release-drafter/releases">release-drafter/release-drafter's releases</a>.</em></p>
<blockquote>
<h... | 4964bd806a7c2288fba00d3c109f07a3d13e8d79 | eb8448c645c9e4e35af8371005ba4b5dfea8f20c | diff --git a/.github/workflows/changelog-management.yml b/.github/workflows/changelog-management.yml
index 50e2d9c7..1668766e 100644
--- a/.github/workflows/changelog-management.yml
+++ b/.github/workflows/changelog-management.yml
@@ -6,6 +6,6 @@ jobs:
update_draft_release:
runs-on: ubuntu-latest
steps:
- ... | [
".github/workflows/changelog-management.yml"
] | [] | true | ||
winsw/winsw | 999 | issue_to_patch | Fix build pipelines | 9bfc034807a23e8de522efbad0a416b683557d4c | 3e0b6e8a28191b6ca727a6eab6028763495e9252 | diff --git a/eng/build.yml b/eng/build.yml
index 084fcb67..a4b6b899 100644
--- a/eng/build.yml
+++ b/eng/build.yml
@@ -31,7 +31,6 @@ steps:
inputs:
packageType: sdk
version: 6.x
- includePreviewVersions: true
- task: DotNetCoreCLI@2
displayName: Build
inputs:
@@ -44,6 +43,10 @@ steps:
displayN... | [
"eng/build.yml"
] | [] | true | |||
winsw/winsw | 998 | issue_to_patch | Fix build pipelines | 7b2923f88b3507723a6475b7bef213a744f8c5d0 | c8629ab5badf8a2388bb097ab909ee9aa521b3b2 | diff --git a/eng/build.yml b/eng/build.yml
index 363d66c4..a7417d37 100644
--- a/eng/build.yml
+++ b/eng/build.yml
@@ -30,7 +30,6 @@ steps:
inputs:
packageType: sdk
version: 6.x
- includePreviewVersions: true
- task: DotNetCoreCLI@2
displayName: Build
inputs:
@@ -48,6 +47,10 @@ steps:
comman... | [
"eng/build.yml"
] | [] | true | |||
winsw/winsw | 943 | issue_to_patch | Update xml-config-file.md - Add missing `/` to service account block. | Add missing / to service account block. | 5833a4c8e5753349b1f2aabfa12a2f161db46dce | cbe63ba193be9e2ac5672364cded9fc3c30fc953 | diff --git a/docs/xml-config-file.md b/docs/xml-config-file.md
index 1514ad1c..996721b0 100644
--- a/docs/xml-config-file.md
+++ b/docs/xml-config-file.md
@@ -412,7 +412,7 @@ Optional. Prompts for a user name and a password.
```xml
<serviceaccount>
<prompt>dialog|console</prompt>
-<serviceaccount>
+</serviceaccoun... | [
"docs/xml-config-file.md"
] | [] | true | ||
winsw/winsw | 930 | issue_to_patch | Fix incorrect quotation marks | Seems like someone's editor replaced some quotation marks.
This caused issues when I tried to use the sample as a template. :) | 53c31dd2bb49890346bc9200c4bbfab23ffd75bf | 6db7fc14d4224719aae831cba5de858ec112a8ef | diff --git a/samples/complete.xml b/samples/complete.xml
index 0fea8027..0b7d8caa 100644
--- a/samples/complete.xml
+++ b/samples/complete.xml
@@ -260,8 +260,8 @@ SECTION: Environment setup
An example for unsecure Basic authentication because the connection is not encrypted:
<download from="http://example.com/s... | [
"samples/complete.xml"
] | [] | true | ||
winsw/winsw | 929 | issue_to_patch | Fix typo in the configuration sample | Since I don't know what Rust would mean here, I assume that what's meant was Just. :) | 53c31dd2bb49890346bc9200c4bbfab23ffd75bf | 8fcf17e8dfd438795ba3c4d69551ffc39bb17277 | diff --git a/samples/complete.xml b/samples/complete.xml
index 0fea8027..334ec838 100644
--- a/samples/complete.xml
+++ b/samples/complete.xml
@@ -216,7 +216,7 @@ SECTION:Logging
OPTION: log
Defines logging mode for logs produced by the executable.
Supported modes:
- * append - Rust update the exist... | [
"samples/complete.xml"
] | [] | true | ||
winsw/winsw | 881 | issue_to_patch | Fix closing tag in the configuration sample | Just a small fly-by docs fix | d31c2a6a0aebc25cea07dfe6a89c7a1aa1f86559 | 053f58c48cccf8279e7d7db2de35ea45dd391755 | diff --git a/docs/xml-config-file.md b/docs/xml-config-file.md
index 1514ad1c..996721b0 100644
--- a/docs/xml-config-file.md
+++ b/docs/xml-config-file.md
@@ -412,7 +412,7 @@ Optional. Prompts for a user name and a password.
```xml
<serviceaccount>
<prompt>dialog|console</prompt>
-<serviceaccount>
+</serviceaccoun... | [
"docs/xml-config-file.md"
] | [] | true | ||
winsw/winsw | 996 | issue_to_patch | Bump actions/checkout from 2.3.4 to 3.3.0 | Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 3.3.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
<blockquote>
<h2>v3.3.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Implement branc... | 4964bd806a7c2288fba00d3c109f07a3d13e8d79 | 2431df645ff35147c3c8cfdd95cb5f98313558aa | diff --git a/.github/workflows/milestone-management.yml b/.github/workflows/milestone-management.yml
index 9e8d722e..4adad768 100644
--- a/.github/workflows/milestone-management.yml
+++ b/.github/workflows/milestone-management.yml
@@ -14,7 +14,7 @@ jobs:
new_milestone:
runs-on: ubuntu-latest
steps:
- ... | [
".github/workflows/milestone-management.yml"
] | [] | true | ||
winsw/winsw | 807 | issue_to_patch | Upgrade to .NET 6 | e380e6c64e961c77e679f16bb315aa9f88fe289a | be27dee87164186a5a4e32b8cf28ec553dc055ea | diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
index e1db4cb7..a7fcb3ce 100644
--- a/.config/dotnet-tools.json
+++ b/.config/dotnet-tools.json
@@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"codecov.tool": {
- "version": "1.12.1",
+ "version": "1.13.0",
"commands": [
... | [
".config/dotnet-tools.json",
"Directory.Build.props",
"Directory.Build.targets",
"eng/build.yml",
"src/WinSW.Core/Download.cs",
"src/WinSW.Core/WinSW.Core.csproj",
"src/WinSW.Plugins/WinSW.Plugins.csproj",
"src/WinSW.Tests/WinSW.Tests.csproj",
"src/WinSW/WinSW.csproj"
] | [] | true | |||
winterbe/java8-tutorial | 28 | issue_to_patch | update License to 2017 | Happy New Year! | 85dae289bdc6903b651f35fe1010d387d78ff90f | b2cbf4f9b7752861eebf295b2f30dd8ba43ab639 | diff --git a/LICENSE b/LICENSE
index 58e794c6..d82fe930 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2016 Benjamin Winterberg
+Copyright (c) 2017 Benjamin Winterberg
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associ... | [
"LICENSE"
] | [] | true | ||
winterbe/java8-tutorial | 23 | issue_to_patch | Use class instead of bean. | A class should only be called 'bean', if:
- all properties are private (use getters/setters)
- it implements the Serializable interface
- it has a public default constructor
See: http://stackoverflow.com/questions/3295496/what-is-a-javabean-exactly
| 6dd0e09f79cb53fdfa11851ec2afbf0c1664c20c | 642ce1c298acbd637aa3375084eb7a105881daeb | diff --git a/README.md b/README.md
index ad01eb89..656cbd77 100644
--- a/README.md
+++ b/README.md
@@ -167,7 +167,7 @@ String converted = converter.convert("Java");
System.out.println(converted); // "J"
```
-Let's see how the `::` keyword works for constructors. First we define an example bean with different con... | [
"README.md"
] | [] | true | ||
winterbe/java8-tutorial | 21 | issue_to_patch | Fix whitespace in Default Interface Methods | 3d878f673337ee05bd3cd3b98d3389b47783997e | ab7e2d2cc09fcb357701fe5d5ee4067ae2c542c6 | diff --git a/README.md b/README.md
index 99ac9a48..7ee572f3 100644
--- a/README.md
+++ b/README.md
@@ -267,7 +267,7 @@ Remember the formula example from the first section? Interface `Formula` defines
Default methods **cannot** be accessed from within lambda expressions. The following code does not compile:
```java
... | [
"README.md"
] | [] | true | |||
winterbe/java8-tutorial | 16 | issue_to_patch | BiConsumer Example | e204c0492d167f633b5b7e4dd46ee7316e07088a | 97e248905f238c32bef3779f425274fbd1b969a0 | diff --git a/src/com/winterbe/java8/samples/lambda/Lambda5.java b/src/com/winterbe/java8/samples/lambda/Lambda5.java
new file mode 100644
index 00000000..68a311f4
--- /dev/null
+++ b/src/com/winterbe/java8/samples/lambda/Lambda5.java
@@ -0,0 +1,32 @@
+package com.winterbe.java8.samples.lambda;
+
+import java.util.HashM... | [
"src/com/winterbe/java8/samples/lambda/Lambda5.java"
] | [] | true | |||
winterbe/java8-tutorial | 12 | issue_to_patch | just a tiny grammar thing | eca818f92634e0a079ee9c310c49d650572b4035 | 995fc00ec5e09f909d508c92a7302461cb13c290 | diff --git a/README.md b/README.md
index 360a48ba..badb54a8 100644
--- a/README.md
+++ b/README.md
@@ -107,7 +107,7 @@ As you can see the code is much shorter and easier to read. But it gets even sho
Collections.sort(names, (String a, String b) -> b.compareTo(a));
```
-For one line method bodies you can skip both t... | [
"README.md"
] | [] | true | |||
winterbe/java8-tutorial | 10 | issue_to_patch | Readme Typo Fix | 1d8eb3f2ef423fdf4216121e2836e467d058901f | 870e1b11ca5b05ddf7bee67d828f92fc5627dab1 | diff --git a/README.md b/README.md
index c3dfce1d..475008c0 100644
--- a/README.md
+++ b/README.md
@@ -661,7 +661,7 @@ System.out.println(leetTime); // 13:37
### LocalDate
-LocalDate represents a distinct date, e.g. 2014-03-11. It's immutable and works exactly analog to LocalTime. The sample demonstrates how to ... | [
"README.md"
] | [] | true | |||
winterbe/java8-tutorial | 9 | issue_to_patch | Fixed spelling | 8ae6f10bd74e3903196907a8c2a95ace85f2bab6 | 928b82471ed20a6696140d1493d16170baf5f922 | diff --git a/README.md b/README.md
index a657328f..c3dfce1d 100644
--- a/README.md
+++ b/README.md
@@ -137,7 +137,7 @@ Integer converted = converter.convert("123");
System.out.println(converted); // 123
```
-Keep in mind that the code is also valid if the `@FunctionalInterface` annotation would be ommited.
+Keep... | [
"README.md"
] | [] | true | |||
winterbe/java8-tutorial | 8 | issue_to_patch | Fix typos and improve simple grammatical stuff | e0b308acf1e1977328d8871f7978f2879845ce4d | 17ad55b5fb7eda2e03b2eae77e15dd1f95414261 | diff --git a/README.md b/README.md
index a7755cb4..a657328f 100644
--- a/README.md
+++ b/README.md
@@ -73,7 +73,7 @@ formula.calculate(100); // 100.0
formula.sqrt(16); // 4.0
```
-The formula is implemented as an anonymous object. The code is quite verbose: 6 lines of code for such a simple calucation... | [
"README.md"
] | [] | true | |||
winterbe/java8-tutorial | 6 | issue_to_patch | Fix typo in README.md | c7d3ecf16ae1187a50b530f32594d08e85041148 | 150f70f2d03372fb66138cfca0e2b92855ff8d93 | diff --git a/README.md b/README.md
index 4600b64e..79095927 100644
--- a/README.md
+++ b/README.md
@@ -563,7 +563,7 @@ map.computeIfAbsent(3, num -> "bam");
map.get(3); // val33
```
-Next, we learn how to remove entries for a a given key, only if it's currently mapped to a given value:
+Next, we learn h... | [
"README.md"
] | [] | true | |||
winterbe/java8-tutorial | 4 | issue_to_patch | Added package custom | 9804c2e3b6bb2afd038dcc07e9c6820737b3aaab | 4796f987691f9a4da5ddd68d548b69b9b6d4c95c | diff --git a/.gitignore b/.gitignore
index 77642f01..f911407f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
.DS_Store
.idea
*.iml
-out
\ No newline at end of file
+out
+/bin/
| [
".gitignore"
] | [] | true | |||
woltapp/blurhash | 252 | issue_to_patch | Privacy please | This PR adds compliance links.

| 0a1f97898d9eb8952bc528cd7a8ec73d9fecf5d0 | 2de102d198edd2a78808f9c67112745cdc1dc93f | diff --git a/Website/package-lock.json b/Website/package-lock.json
index f350dca4..e40ae11c 100644
--- a/Website/package-lock.json
+++ b/Website/package-lock.json
@@ -34,7 +34,7 @@
},
"../TypeScript": {
"name": "blurhash",
- "version": "2.0.4",
+ "version": "2.0.5",
"license": "MIT",
... | [
"Website/package-lock.json",
"Website/src/index.ejs",
"Website/src/index.scss",
"Website/src/styles/variables.scss"
] | [] | true | ||
woltapp/blurhash | 228 | issue_to_patch | (TypeScript) Improve decode speed by avoiding re-calculating same cosine value | Cos function calucation takes time. This value is the same for every loop. We should use the same value. | e98a3e2e99e89ef2f201f8faa1a11189a10fbb19 | c747c919eb142115f9db01ef6a12e1a342711905 | diff --git a/TypeScript/src/decode.ts b/TypeScript/src/decode.ts
index 543b992c..640e28bd 100644
--- a/TypeScript/src/decode.ts
+++ b/TypeScript/src/decode.ts
@@ -98,11 +98,10 @@ const decode = (
let b = 0;
for (let j = 0; j < numY; j++) {
+ const basisY = Math.cos((Math.PI * y * j) / height);
... | [
"TypeScript/src/decode.ts"
] | [] | true | ||
woltapp/blurhash | 250 | issue_to_patch | Added Dart impl. in C | Hello Wolt Team.
We have ported the C implementation over to dart through dart:ffi, because the pure dart implementation was very slow and it was causing UI freeze.
Our package [published over on pub.dev](https://pub.dev/packages/blurhash_ffi), fixes that issue with the same api for the developers that previously... | 84a1ddcc20f623a84108b37f8b60dd3c344a09c1 | 9c2f4da13f2c18bbf6b82a1d767f413f022a8d28 | diff --git a/Readme.md b/Readme.md
index eca1c90..36be21c 100644
--- a/Readme.md
+++ b/Readme.md
@@ -54,7 +54,8 @@ These cover our use cases, but could probably use polishing, extending and impro
* [Ruby](https://github.com/Gargron/blurhash) - Encoder implementation in Ruby.
* [Crystal](https://github.com/Sija/blurha... | [
"Readme.md"
] | [
{
"comment": "Hey! We prefer to only list repos that we maintain as submodules. A mention in the readme will do for blurhash_ffi 🙂 ",
"path": ".gitmodules",
"hunk": "@@ -1,3 +1,6 @@\n [submodule \"Python\"]\n \tpath = Python\n \turl = https://github.com/creditornot/blurhash-python.git\n+[submodule \"Da... | true | ||
woltapp/blurhash | 246 | issue_to_patch | Add OCaml encoder in README | 067f9c7b8e2c1434f8d3ce24620804b36c9441d4 | 2bd8406302ef796dd8d53e86b42b55deaf9566f4 | diff --git a/Readme.md b/Readme.md
index c1a7350f..b9611abf 100644
--- a/Readme.md
+++ b/Readme.md
@@ -69,6 +69,7 @@ These cover our use cases, but could probably use polishing, extending and impro
* [Jetpack Compose](https://github.com/wajahat-iqbal/BlurHashPainter) - Decoder Jetpack Compose implementation
* [C++](h... | [
"Readme.md"
] | [] | true | |||
woltapp/blurhash | 203 | issue_to_patch | Add Titanium SDK | Adding the decoder for Titanium SDK to the README | 24b63137e0b2bafffc00743d384f26e961dcc509 | d9acddb3fb93366cda151156a45b3423ffab1648 | diff --git a/Readme.md b/Readme.md
index 9b87598e..eca1c90b 100644
--- a/Readme.md
+++ b/Readme.md
@@ -66,6 +66,7 @@ These cover our use cases, but could probably use polishing, extending and impro
* [Xojo](https://github.com/piradoiv/xojo-blurhash/) - Encoder and decoder implementation in pure Xojo.
* [React Native]... | [
"Readme.md"
] | [] | true | ||
woltapp/blurhash | 219 | issue_to_patch | Readme: add BQN implementation | bfb70431480bcd07b51fcdd5c1f5b341c49e680f | 7c2001da519ba0b5723eb804cbb1206901d31f5c | diff --git a/Readme.md b/Readme.md
index 447c9539..9b87598e 100644
--- a/Readme.md
+++ b/Readme.md
@@ -66,6 +66,7 @@ These cover our use cases, but could probably use polishing, extending and impro
* [Xojo](https://github.com/piradoiv/xojo-blurhash/) - Encoder and decoder implementation in pure Xojo.
* [React Native]... | [
"Readme.md"
] | [] | true | |||
woltapp/blurhash | 249 | issue_to_patch | docs: add Jellyfin as a use case to README | 067f9c7b8e2c1434f8d3ce24620804b36c9441d4 | 211bbe4bac560abf732b98564d9ddff3dc196517 | diff --git a/Readme.md b/Readme.md
index c1a7350f..4c632be0 100644
--- a/Readme.md
+++ b/Readme.md
@@ -94,6 +94,7 @@ Who uses BlurHash? Here are some projects we know about:
* [Wolt](http://wolt.com/) - We are of course using it ourselves. BlurHashes are used in the mobile clients on iOS and Android, as well as on the... | [
"Readme.md"
] | [] | true | |||
woltapp/blurhash | 243 | issue_to_patch | Create SECURITY.md | To let the repository confirm security@wolt.com as its security contact. | 7d87d3ee351475ba990cb8f361bbc56d2909093e | c9d779301d3458e925b36e6a115622288d3a1f28 | diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 00000000..b2532a88
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,5 @@
+# Security Policy
+
+## Reporting a Vulnerability
+
+Please report security issues to `security@wolt.com`
\ No newline at end of file
| [
"SECURITY.md"
] | [] | true | ||
woltapp/blurhash | 197 | issue_to_patch | Add Kotlin Multiplatform library | f1edb10ba0e0b78c95698488c7665fcb75d69aa2 | 5dd7809ae068638a43b6c355955b64259e99fe3f | diff --git a/Readme.md b/Readme.md
index 3f19532c..c1a7350f 100644
--- a/Readme.md
+++ b/Readme.md
@@ -68,6 +68,7 @@ These cover our use cases, but could probably use polishing, extending and impro
* [Zig](https://github.com/mhoward540/blurhash-zig) - Encoder implementation in Zig.
* [Jetpack Compose](https://github.... | [
"Readme.md"
] | [] | true | |||
woltapp/blurhash | 233 | issue_to_patch | Add Nheko-Reborn/blurhash | fa2ba6b8b92041330a92c24ffba97bfdb134c829 | 3c87b27401191c8aa238b8487cc774e227d3326d | diff --git a/Readme.md b/Readme.md
index aeceaa37..3f19532c 100644
--- a/Readme.md
+++ b/Readme.md
@@ -67,7 +67,7 @@ These cover our use cases, but could probably use polishing, extending and impro
* [React Native](https://github.com/mrousavy/react-native-blurhash) - UI Component for React Native. (Decoder in Swift an... | [
"Readme.md"
] | [] | true | |||
woltapp/blurhash | 234 | issue_to_patch | Add `exports.browser.require` | This will allow tools like Jest – when used in conjunction with `jest-environment-jsdom` – to grab the CommonJS variant of the package when looking for the browser entry point.
This will make whitelisting blurhash in Jest's [`transformIgnorePatterns`](https://jestjs.io/docs/configuration#transformignorepatterns-arra... | fa2ba6b8b92041330a92c24ffba97bfdb134c829 | a4a918c0f5d4cb5608e171fab5be676977046d25 | diff --git a/TypeScript/package.json b/TypeScript/package.json
index b421d2d8..85ff3f6a 100644
--- a/TypeScript/package.json
+++ b/TypeScript/package.json
@@ -8,7 +8,10 @@
"exports": {
"./package.json": "./package.json",
".": {
- "browser": "./dist/esm/index.js",
+ "browser": {
+ "import":... | [
"TypeScript/package.json"
] | [] | true | ||
woltapp/blurhash | 230 | issue_to_patch | Jetpack compose implementation | An optimized implementation to be used in jetpack composed with any component as a painter. | e98a3e2e99e89ef2f201f8faa1a11189a10fbb19 | 7264810bd56b7f17023bbb6ba0d923e4c323bdc8 | diff --git a/Readme.md b/Readme.md
index 15088a69..aeceaa37 100644
--- a/Readme.md
+++ b/Readme.md
@@ -66,6 +66,7 @@ These cover our use cases, but could probably use polishing, extending and impro
* [Xojo](https://github.com/piradoiv/xojo-blurhash/) - Encoder and decoder implementation in pure Xojo.
* [React Native]... | [
"Readme.md"
] | [] | true | ||
woltapp/blurhash | 224 | issue_to_patch | Bump minimatch from 3.0.4 to 3.1.2 in /TypeScript | Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.2.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/isaacs/minimatch/commit/699c459443a6bd98f5b28197978f76e7f71467ac"><code>699c459</code></a> 3.1.2</li>
<li><a href="https://github.com/isaacs/minimatch/commit/2f2b5ff1bb1b... | 1a3ca75ecd74ed33b9181a8b250b738f9145341f | 74795ddfb9cd11c9d689b70e7a9d50e6b1661560 | diff --git a/TypeScript/yarn.lock b/TypeScript/yarn.lock
index 6a2f022a..96b74d8c 100644
--- a/TypeScript/yarn.lock
+++ b/TypeScript/yarn.lock
@@ -468,9 +468,9 @@ array-union@^2.1.0:
integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
balanced-match@^1.0.0:
- ... | [
"TypeScript/yarn.lock"
] | [] | true | ||
woltapp/blurhash | 223 | issue_to_patch | Bump loader-utils from 2.0.3 to 2.0.4 in /Website | Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.3 to 2.0.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/webpack/loader-utils/releases">loader-utils's releases</a>.</em></p>
<blockquote>
<h2>v2.0.4</h2>
<h3><a href="https://github.com/webpack/loader-u... | 3a05e64f80c5efb32ff4f7c5efbc582c77df2158 | 25fabefa3b70a037033b7fd8464cf58c13e2f576 | diff --git a/Website/package-lock.json b/Website/package-lock.json
index c2f5cc61..f350dca4 100644
--- a/Website/package-lock.json
+++ b/Website/package-lock.json
@@ -5133,9 +5133,9 @@
}
},
"node_modules/loader-utils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/loader-u... | [
"Website/package-lock.json"
] | [] | true | ||
woltapp/blurhash | 221 | issue_to_patch | Bump loader-utils from 2.0.2 to 2.0.3 in /Website | Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/webpack/loader-utils/releases">loader-utils's releases</a>.</em></p>
<blockquote>
<h2>v2.0.3</h2>
<h3><a href="https://github.com/webpack/loader-u... | cec431cc9da518d79e6a05bafa4fc725b01b728c | 4acbfa8bad0740d64cef64a9ce6e3d0d8f0f997c | diff --git a/Website/package-lock.json b/Website/package-lock.json
index 46ef9c5e..c2f5cc61 100644
--- a/Website/package-lock.json
+++ b/Website/package-lock.json
@@ -34,7 +34,7 @@
},
"../TypeScript": {
"name": "blurhash",
- "version": "2.0.0",
+ "version": "2.0.4",
"license": "MIT",
... | [
"Website/package-lock.json"
] | [] | true | ||
woltapp/blurhash | 216 | issue_to_patch | Add require to export fields | 4dc3378847f4b8c80a9fdf0143e1a9726260abd6 | 7179af61735ab0ae52a6f97ece55d23805d16c8f | diff --git a/TypeScript/package.json b/TypeScript/package.json
index 8c9820bd..b421d2d8 100644
--- a/TypeScript/package.json
+++ b/TypeScript/package.json
@@ -1,6 +1,6 @@
{
"name": "blurhash",
- "version": "2.0.3",
+ "version": "2.0.4",
"description": "Encoder and decoder for the Wolt BlurHash algorithm.",
... | [
"TypeScript/package.json"
] | [] | true | |||
woltapp/blurhash | 210 | issue_to_patch | fix: move default condition to last one | Got `Module not found: Error: Default condition should be last one` with
`blurhash@2.0.2`
ref: https://nodejs.org/api/packages.html#conditional-exports
> "default" - the generic fallback that always matches. Can be a CommonJS or ES module file. This condition should always come last. | 483859d3ba026731d89573db69b8a9728eb0c8df | be232419e6238995f11a77b61602b24e8e04a519 | diff --git a/TypeScript/package.json b/TypeScript/package.json
index e6196b7f..4436a009 100644
--- a/TypeScript/package.json
+++ b/TypeScript/package.json
@@ -9,11 +9,11 @@
"./package.json": "./package.json",
".": {
"browser": "./dist/esm/index.js",
- "default": "./dist/index.js",
"import":... | [
"TypeScript/package.json"
] | [] | true | ||
woltapp/blurhash | 211 | issue_to_patch | npm 2.0.3 | 56fe5da3d33439922f7961b90b4898d4dec47a4a | 82f0a35ddf290c572137d01c13efd3aa87764f2f | diff --git a/TypeScript/package.json b/TypeScript/package.json
index 4436a009..8c9820bd 100644
--- a/TypeScript/package.json
+++ b/TypeScript/package.json
@@ -1,6 +1,6 @@
{
"name": "blurhash",
- "version": "2.0.2",
+ "version": "2.0.3",
"description": "Encoder and decoder for the Wolt BlurHash algorithm.",
... | [
"TypeScript/package.json"
] | [] | true | |||
woltapp/blurhash | 209 | issue_to_patch | Fix exports field entry | 336c91d7f38cfb9791858d063394cdb09c81e819 | f208c1e0c306c6600ea663c983a589de544879c3 | diff --git a/TypeScript/package.json b/TypeScript/package.json
index 72797af9..e6196b7f 100644
--- a/TypeScript/package.json
+++ b/TypeScript/package.json
@@ -1,16 +1,18 @@
{
"name": "blurhash",
- "version": "2.0.1",
+ "version": "2.0.2",
"description": "Encoder and decoder for the Wolt BlurHash algorithm.",
... | [
"TypeScript/package.json"
] | [] | true | |||
woltapp/blurhash | 208 | issue_to_patch | npm 2.0.1 | b93ee19c662c26499c236441114a890fa729afa7 | 5c823f0c0db2cde13604edb816f992cc7bc895b0 | diff --git a/TypeScript/package.json b/TypeScript/package.json
index 87b232ac..72797af9 100644
--- a/TypeScript/package.json
+++ b/TypeScript/package.json
@@ -1,6 +1,6 @@
{
"name": "blurhash",
- "version": "2.0.0",
+ "version": "2.0.1",
"description": "Encoder and decoder for the Wolt BlurHash algorithm.",
... | [
"TypeScript/package.json"
] | [] | true | |||
woltapp/blurhash | 207 | issue_to_patch | Change exports fields strategy | c273c0a805d22942bc7d884c5789fca7099affc4 | c3c34b3748a6598c6e93677c4e17bf59ead3bac3 | diff --git a/TypeScript/package.json b/TypeScript/package.json
index 83e86b29..87b232ac 100644
--- a/TypeScript/package.json
+++ b/TypeScript/package.json
@@ -3,12 +3,14 @@
"version": "2.0.0",
"description": "Encoder and decoder for the Wolt BlurHash algorithm.",
"main": "dist/index.js",
- "module": "dist/esm... | [
"TypeScript/package.json",
"TypeScript/tsup.config.ts"
] | [] | true | |||
woltapp/blurhash | 199 | issue_to_patch | Bump scss-tokenizer and node-sass in /Website | Bumps [scss-tokenizer](https://github.com/sasstools/scss-tokenizer) and [node-sass](https://github.com/sass/node-sass). These dependencies needed to be updated together.
Updates `scss-tokenizer` from 0.3.0 to 0.4.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/sasstools/scss... | 85b6b9c12f50c31bf2d8ee65b7b45ece69b2e184 | c7d4b4ffe14dc205e0078333016afda8d1eeb4ef | diff --git a/Website/package-lock.json b/Website/package-lock.json
index 04a8961e..4080c751 100644
--- a/Website/package-lock.json
+++ b/Website/package-lock.json
@@ -23,7 +23,7 @@
"file-loader": "^6.2.0",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.6.1",
- "node-sass... | [
"Website/package-lock.json",
"Website/package.json"
] | [] | true | ||
woltapp/blurhash | 201 | issue_to_patch | Release 2.0 | b774d190d130263e95de050ef62ddef43ebb78e3 | b8ec1f7e440f62d03d884b2a5a0eca084a57e058 | diff --git a/TypeScript/CHANGELOG.md b/TypeScript/CHANGELOG.md
index 766df7e3..f793ae02 100644
--- a/TypeScript/CHANGELOG.md
+++ b/TypeScript/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## 2.0.0 (September 12, 2022)
+
+- Modern bundling
+- Fix DC encoding
+- Drop IE11 support
+
## 1.1.5 (February 15, 2022)
- adde... | [
"TypeScript/CHANGELOG.md",
"TypeScript/tsup.config.ts"
] | [] | true | |||
woltapp/blurhash | 200 | issue_to_patch | Revert "Fix npm version" | Reverts woltapp/blurhash#198 | 85b6b9c12f50c31bf2d8ee65b7b45ece69b2e184 | 36fa721d252d669b6786dd0c9dc139f037d13b63 | diff --git a/TypeScript/package.json b/TypeScript/package.json
index 11903450..83e86b29 100644
--- a/TypeScript/package.json
+++ b/TypeScript/package.json
@@ -1,6 +1,6 @@
{
"name": "blurhash",
- "version": "1.2.0",
+ "version": "2.0.0",
"description": "Encoder and decoder for the Wolt BlurHash algorithm.",
... | [
"TypeScript/package.json",
"Website/package-lock.json"
] | [] | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.