repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
facebook/react | 408258268edb5acdfdbf77bc6e0b0dc6396c0e6f | 8b677b1e6ea6cd0f7a5c3b32164c127f1fceb360 | fix<compiler>: only call readTestFilter if the filter option is enabled (#29720)
Following the instructions in the compiler/docs/DEVELOPMENT_GUIDE.md, we are stuck on the command `yarn snap --watch` because it calls readTestFilter even though the filter option is not enabled. | [
{
"path": "compiler/packages/snap/src/runner-watch.ts",
"patch": "@@ -153,8 +153,8 @@ function subscribeFilterFile(\n } else if (\n events.findIndex((event) => event.path.includes(FILTER_FILENAME)) !== -1\n ) {\n- state.filter = await readTestFilter();\n if (state.mode.filter) {\n+ ... | 2024-06-03T23:09:58 |
nodejs/node | a08129cb0d8ff1df3ce45c3910cae1fc72aaf080 | a5cc976254df818dc7dfbe23de00b386dbc1ed2f | src: improve error handling in permission.cc
PR-URL: https://github.com/nodejs/node/pull/56904
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com> | [
{
"path": "src/permission/permission.cc",
"patch": "@@ -17,9 +17,9 @@ namespace node {\n \n using v8::Context;\n using v8::FunctionCallbackInfo;\n+using v8::IntegrityLevel;\n using v8::Local;\n using v8::MaybeLocal;\n-using v8::NewStringType;\n using v8::Object;\n using v8::String;\n using v8::Value;\n@@ -3... | 2025-02-03T15:50:39 |
vercel/next.js | b00043645367450df1bdc9bc4bb94e19916e52e1 | 79706a33e85986fef33a60c1701373f60008746b | Docs/project structure polish (#84386)
PR title - docs: polish Project Structure page (grammar, consistency,
clarity)
PR description -
1) Fixes an Oxford comma in the routing files description for
consistency.
2) Normalizes heading capitalization to sentence case.
3) Corrects “Files conventions” → “File conventions”.... | [
{
"path": "docs/01-app/01-getting-started/02-project-structure.mdx",
"patch": "@@ -52,7 +52,7 @@ Top-level files are used to configure your application, manage dependencies, run\n \n ### Routing Files\n \n-Add `page` to expose a route, `layout` for shared UI such as header, nav, or footer, `loading` for ske... | 2025-10-01T19:28:20 |
electron/electron | e217b063a5c7306a719fe630941c67829263655c | ae88e64c889945b3a521e69032c39781dd6b15fb | build: fix nan/node tests on GHA (#42548) | [
{
"path": ".github/workflows/pipeline-segment-node-nan-test.yml",
"patch": "@@ -53,7 +53,7 @@ jobs:\n uses: ./src/electron/.github/actions/install-build-tools\n - name: Init Build Tools\n run: |\n- e init --root=$(pwd) --out=Default ${{ inputs.gn-build-type }} --import ${{ inputs.gn-b... | 2024-06-18T08:49:39 |
golang/go | 9de69f6913dc253ee8ce67043f543bedde28fdb4 | 4afd4828129d547719e8e71352c36e5117ddb50e | errors: mention Is/As in Join docs
Fixes #74461
Change-Id: Ic1b1b2b43d59dd67f31c2388ca88650ee847ba93
Reviewed-on: https://go-review.googlesource.com/c/go/+/696737
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Carlos... | [
{
"path": "src/errors/join.go",
"patch": "@@ -16,6 +16,7 @@ import (\n // between each string.\n //\n // A non-nil error returned by Join implements the Unwrap() []error method.\n+// The errors may be inspected with [Is] and [As].\n func Join(errs ...error) error {\n \tn := 0\n \tfor _, err := range errs {"... | 2025-08-17T13:03:37 |
facebook/react | 8c3697a849b7e9ceeb47642ba61c270b7e6dd176 | 4dcdf21325028d7ae9bb3c2172dbbe9647a744ac | Fix xplat sync to ignore @generated header (#29738)
Use some clever git diffing to ignore lines that only change the
`@generated` header. We can't do this for the version string because the
version string can be embedded in lines with other changes, but this
header is always on one line. | [
{
"path": ".github/workflows/commit_artifacts.yml",
"patch": "@@ -329,7 +329,9 @@ jobs:\n git status\n echo \"====================\"\n echo \"Checking for changes\"\n- if git status --porcelain | grep -qv '/REVISION'; then\n+ # Check if there are changes in th... | 2024-06-03T20:39:38 |
nodejs/node | a5cc976254df818dc7dfbe23de00b386dbc1ed2f | cebf4c8a9f23e5c15e005a96a4c968f2a074d305 | src: improve error handling in node_sqlite
PR-URL: https://github.com/nodejs/node/pull/56891
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -126,13 +126,15 @@ inline void THROW_ERR_SQLITE_ERROR(Isolate* isolate, int errcode) {\n const char* errstr = sqlite3_errstr(errcode);\n \n Environment* env = Environment::GetCurrent(isolate);\n- auto error = CreateSQLiteError(isolate, errstr).ToLocalChecked... | 2025-02-03T04:43:44 |
vercel/next.js | 8e93b202e0ef7d3215f1a6b9a7b253bc611ebed0 | 962c2c37c2da4666358afb09322cc39ae39aee8f | Development: Skip route matching when there is an existing match (#84227)
## What?
Adds a fast path when there is an existing match already from matching
earlier in the request lifecycle. This works for the majority of cases
except for Parallel Routes as it will end up finding the wrong bundle
path. That is fundament... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -2558,11 +2558,30 @@ export default abstract class Server<\n i18n: this.i18nProvider?.fromRequest(req, pathname),\n }\n \n+ const existingMatch = getRequestMeta(ctx.req, 'match')\n+\n+ let fastPath = true\n+ // when a speci... | 2025-10-01T18:02:28 |
electron/electron | a0a13ad623d2f0beae8b2574a22cf012100e6b6b | b35adaee2d521af5e34a6fea7897ac53c3752799 | build: fix macOS tests on GHA (#42524)
* build: use --frozen-lockfile
* build: don't include src/electron in src artifacts
* Use mac intel runner for mac-x64 tests
* test: debug mac tests not exiting
* skip navigator.serial tests on GHA
* TCC magic
* Fix release notes tests needing ELECTRON_GITHUB_TO... | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -16,7 +16,7 @@ runs:\n shell: bash\n run: |\n cd src/electron\n- node script/yarn install\n+ node script/yarn install --frozen-lockfile\n - name: Get Depot Tools\n shell: bash\n run: |",
"additions": 1,
"... | 2024-06-17T23:33:44 |
golang/go | 4afd4828129d547719e8e71352c36e5117ddb50e | 509d5f647ffc413bd874c2e2bf6d1b33f9bc0ac2 | cmd/go/internal/doc: pass URL fragments separately with -http
Plumb URL fragments separately when invoking pkgsite so the `#` doesn't
get %-encoded into the path.
Fixes: #75088
Change-Id: I33814fc6a192dff3e4f3d0b9d81205056dddd438
Reviewed-on: https://go-review.googlesource.com/c/go/+/697435
Reviewed-by: Sean Liao <se... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -212,16 +212,16 @@ func do(writer io.Writer, flagSet *flag.FlagSet, args []string) (err error) {\n \t\t\tmod, err := runCmd(append(os.Environ(), \"GOWORK=off\"), \"go\", \"list\", \"-m\")\n \t\t\tif err == nil && mod != \"\" && mod != \"command-line-a... | 2025-08-19T17:37:18 |
facebook/react | 4dcdf21325028d7ae9bb3c2172dbbe9647a744ac | bf3a29d097a5d457e85a58a183fb9e12714fbece | [Fiber] Prefix owner stacks with the current stack at the console call (#29697)
This information is available in the regular stack but since that's
hidden behind an expando and our appended stack to logs is not hidden,
it hides the most important frames like the name of the current
component.
This is closer to w... | [
{
"path": "packages/react-reconciler/src/ReactCurrentFiber.js",
"patch": "@@ -44,7 +44,7 @@ export function getCurrentParentStackInDev(): string {\n return '';\n }\n \n-function getCurrentFiberStackInDev(): string {\n+function getCurrentFiberStackInDev(stack: Error): string {\n if (__DEV__) {\n if (... | 2024-06-03T16:26:38 |
nodejs/node | cebf4c8a9f23e5c15e005a96a4c968f2a074d305 | 316014d1727360bff37c670087322ce16cf4b301 | sqlite: fix use-after-free in StatementSync due to premature GC
PR-URL: https://github.com/nodejs/node/pull/56840
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -535,7 +535,8 @@ void DatabaseSync::Prepare(const FunctionCallbackInfo<Value>& args) {\n sqlite3_stmt* s = nullptr;\n int r = sqlite3_prepare_v2(db->connection_, *sql, -1, &s, 0);\n CHECK_ERROR_OR_THROW(env->isolate(), db, r, SQLITE_OK, void());\n- BaseObj... | 2025-02-05T14:33:59 |
golang/go | 509d5f647ffc413bd874c2e2bf6d1b33f9bc0ac2 | 853fc1273912b020e428c77d35e525c9225fd51e | internal/poll: don't call Seek for overlapped Windows handles
Overlapped handles don't have the file pointer updated when performing
I/O operations, so there is no need to call FD.Seek to reset the file
pointer.
Also, some overlapped file handles don't support seeking. See #74951.
Fixes #74951.
Change-Id: I0edd53be... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -622,12 +622,22 @@ func (fd *FD) Pread(b []byte, off int64) (int, error) {\n \n \tfd.l.Lock()\n \tdefer fd.l.Unlock()\n-\tcuroffset, err := syscall.Seek(fd.Sysfd, 0, io.SeekCurrent)\n-\tif err != nil {\n-\t\treturn 0, err\n+\tif fd.isBlocking {\n+\t\... | 2025-08-19T11:00:02 |
electron/electron | b35adaee2d521af5e34a6fea7897ac53c3752799 | 1a4d58a9fba2f721a1e6dff3d76ca0d4cfa66286 | build: fix clang format location helper (#42527) | [
{
"path": "script/lib/util.py",
"patch": "@@ -4,6 +4,7 @@\n import errno\n import json\n import os\n+import platform\n import shutil\n import subprocess\n import sys\n@@ -184,13 +185,16 @@ def get_electron_exec():\n \n def get_buildtools_executable(name):\n buildtools = os.path.realpath(os.path.join(ELECT... | 2024-06-17T17:47:59 |
rust-lang/rust | 882ae150e93f7c1aef17018a64540fa8b5bec943 | 25396cf54981afd1fa5a7406658b45033106a0d3 | Work around a false `err.emit();` type error in rust-analyzer | [
{
"path": "compiler/rustc_interface/src/util.rs",
"patch": "@@ -300,7 +300,7 @@ internal compiler error: query cycle handler thread panicked, aborting process\";\n diag.help(\n \"try lowering `-Z threads` or checking the operating system's resource limits\",\n ... | 2026-02-27T01:39:20 |
vercel/next.js | 962c2c37c2da4666358afb09322cc39ae39aee8f | f230aa3b611ca0ba169792c7859eba9965b2c0da | fix: next rspack binding NextExternalsPlugin (#84303)
1. Added functionality to change the package name in the rspack release
CI.
2. Fixed a bug in the get_resolve method of the NextExternalsPlugin.
3. Prepared the @next/rspack-core for the 1.0.0 version release. | [
{
"path": ".github/workflows/release-next-rspack.yml",
"patch": "@@ -8,6 +8,11 @@ on:\n required: false\n default: false\n type: boolean\n+ npm-name:\n+ description: 'NPM package name to publish'\n+ required: false\n+ default: '@next/rspack-core'\n+ t... | 2025-10-01T17:31:16 |
facebook/react | 9598c41a20162c8a9d57ccf6a356aa183b00b61a | 67b05be0d216c4efebc4bb5acb12c861a18bd87c | useActionState: On error, cancel remaining actions (#29695)
Based on
- #29694
---
If an action in the useActionState queue errors, we shouldn't run any
subsequent actions. The contract of useActionState is that the actions
run in sequence, and that one action can assume that all previous
actions have comp... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js",
"patch": "@@ -1237,14 +1237,12 @@ describe('ReactDOMForm', () => {\n \n // @gate enableAsyncActions\n test('useActionState: error handling (sync action)', async () => {\n- let resetErrorBoundary;\n class ErrorBoundary extends Reac... | 2024-06-03T15:25:43 |
rust-lang/rust | 9092262255e1c79b473e91fb43e45eaaa005ec8d | b3869b94cd1ed4bfa2eb28f301535d5e9599c713 | fix: mem::conjure_zst panic message to use any::type_name instead of stringify! | [
{
"path": "library/core/src/mem/mod.rs",
"patch": "@@ -1488,12 +1488,13 @@ pub macro offset_of($Container:ty, $($fields:expr)+ $(,)?) {\n ///\n /// [inhabited]: https://doc.rust-lang.org/reference/glossary.html#inhabited\n #[unstable(feature = \"mem_conjure_zst\", issue = \"95383\")]\n+#[rustc_const_unstabl... | 2026-02-25T03:28:52 |
nodejs/node | 8ac3055501da3fa82773a478ad33a59329a75ca6 | 95c04e23ab40d85da196ba77ab705bd42c919e1f | src: improve error handling in node_os by removing ToLocalChecked
PR-URL: https://github.com/nodejs/node/pull/56888
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "src/node_os.cc",
"patch": "@@ -50,6 +50,7 @@ using v8::Isolate;\n using v8::Local;\n using v8::LocalVector;\n using v8::MaybeLocal;\n+using v8::Name;\n using v8::NewStringType;\n using v8::Null;\n using v8::Number;\n@@ -71,8 +72,10 @@ static void GetHostname(const FunctionCallbackInfo<Value>& arg... | 2025-02-05T04:20:01 |
golang/go | 853fc1273912b020e428c77d35e525c9225fd51e | bd885401d5a4b45fee8ae37069be0cc3beef9e3e | internal/poll: set the correct file offset in FD.Seek for Windows overlapped handles
Windows doesn't keep the file pointer for overlapped file handles.
To work around this, we keep track of the current offset ourselves
and use it on every Read/Write operation.
When the user calls File.Seek with whence == io.SeekCurre... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -1107,6 +1107,12 @@ func (fd *FD) Seek(offset int64, whence int) (int64, error) {\n \tfd.l.Lock()\n \tdefer fd.l.Unlock()\n \n+\tif !fd.isBlocking && whence == io.SeekCurrent {\n+\t\t// Windows doesn't keep the file pointer for overlapped file handle... | 2025-08-19T10:10:54 |
electron/electron | a371c2cd542a6ee7ea24cdaf3da5468ba3f9b5ea | 6bf83b389bd752ae6e357cada84ed89e7beac0ba | build: fix GHA arm tests (#42514) | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -159,7 +159,7 @@ jobs:\n build-runs-on: aks-linux-large\n test-runs-on: aks-linux-arm-medium\n build-container: '{\"image\":\"ghcr.io/electron/build:${{ inputs.build-image-sha }}\",\"options\":\"--user root\",\"volumes\":[\"/mnt/cross-i... | 2024-06-16T17:59:51 |
facebook/react | def67b9b329c8aa204e611cd510c5a64680aee58 | 47d0c30246134ad9ce04abdcf0977cf2d49d00ce | Fix stylesheet typo in 29693 (#29732)
stylehsheet -> stylesheet | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2442,7 +2442,7 @@ export function getResource(\n + ${describeLinkForResourceErrorDEV(pendingProps)}`;\n }\n throw new Error(\n- 'Expected <link> not to update to be updated to a stylehsh... | 2024-06-03T14:51:21 |
nodejs/node | 95c04e23ab40d85da196ba77ab705bd42c919e1f | 6aa42f9cf045e31d5b9ac6c404ed722710ad7a8c | src: improve error handling in node_url
Eliminate uses of USE and ToLocalChecked to properly
propagate errors
PR-URL: https://github.com/nodejs/node/pull/56886
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-B... | [
{
"path": "src/node_url.cc",
"patch": "@@ -26,17 +26,17 @@ using v8::FunctionCallbackInfo;\n using v8::HandleScope;\n using v8::Isolate;\n using v8::Local;\n-using v8::NewStringType;\n using v8::Object;\n using v8::ObjectTemplate;\n+using v8::SnapshotCreator;\n using v8::String;\n using v8::Value;\n \n void... | 2025-02-05T03:47:55 |
electron/electron | 6bf83b389bd752ae6e357cada84ed89e7beac0ba | 2c985366c8bb22fd15e6ad4a596c3a1060f6af08 | build: add GN check step (#42508)
* build: add GN check step
* Remove extra loggin
* Fix BUILD_TOOLS_SHA
* Fix concurrency group naming | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -97,7 +97,7 @@ jobs:\n - /mnt/cross-instance-cache:/mnt/cross-instance-cache\n - /var/run/sas:/var/run/sas\n env:\n- GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=True --custom-var=host_os=mac'\n+ GCLIENT_EXTRA_ARGS: '--cus... | 2024-06-14T20:29:11 |
golang/go | 119546ea4fdded79057913a943bd3b6a8dcf8d4a | ffa882059cfbfc7cd5f16c83d24775c08d63668f | cmd/go: document install outputs to $GOOS_$GOARCH when cross compiling
Fixes #74979
Change-Id: I2a93e3a78c953418cf62d93db107b9c8d25e8ed2
Reviewed-on: https://go-review.googlesource.com/c/go/+/696755
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Carlos Amedee <c... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -758,6 +758,8 @@\n // variable, which defaults to $GOPATH/bin or $HOME/go/bin if the GOPATH\n // environment variable is not set. Executables in $GOROOT\n // are installed in $GOROOT/bin or $GOTOOLDIR instead of $GOBIN.\n+// Cross compiled binaries are install... | 2025-08-17T11:46:13 |
facebook/react | 47d0c30246134ad9ce04abdcf0977cf2d49d00ce | b421783110fb20f139adf4c4f9a8911dc63f9c68 | [Fiber][Float] Error when a host fiber changes "flavor" (#29693)
Host Components can exist as four semantic types
1. regular Components (Vanilla obv)
2. singleton Components
2. hoistable components
3. resources
Each of these component types have their own rules related to mounting
and reconciliation however ... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2358,6 +2358,7 @@ export function getResource(\n type: string,\n currentProps: any,\n pendingProps: any,\n+ currentResource: null | Resource,\n ): null | Resource {\n const resourceRoot = getCurrentResourceRoot... | 2024-06-03T14:47:45 |
rust-lang/rust | 2d411a0faad447b5bfc968b954fd3e9c10596325 | e8e3544a71f23606c85e8586e37bd98389bc1ebe | fixup span in obligation cause | [
{
"path": "compiler/rustc_trait_selection/src/solve.rs",
"patch": "@@ -57,7 +57,7 @@ fn try_eagerly_normalize_alias<'a, 'tcx>(\n let obligation = Obligation::new(\n tcx,\n // we ignore the error anyway\n- ObligationCause::dummy(),\n+ ObligationCause::dummy_with_span(span),\... | 2026-02-05T10:35:47 |
golang/go | ffa882059cfbfc7cd5f16c83d24775c08d63668f | 1f2e8e03e48597367e674138e26432345c685b1c | unique: deflake TestCanonMap/LoadOrStore/ConcurrentUnsharedKeys
I do not know yet what's causing this flake, but I've debugged it enough
to be confident that it's not a serious issue; it seems to be a test
flake. There is some path through which the tree nodes or keys might
still be transiently reachable, but I don't ... | [
{
"path": "src/unique/canonmap_test.go",
"patch": "@@ -108,6 +108,25 @@ func testCanonMap(t *testing.T, newMap func() *canonMap[string]) {\n \t\t\t\twg.Wait()\n \t\t\t}\n \n+\t\t\t// Run an extra GC cycle to de-flake. Sometimes the cleanups\n+\t\t\t// fail to run in time, despite drainCleanupQueue.\n+\t\t\t... | 2025-08-19T19:29:55 |
electron/electron | 2c985366c8bb22fd15e6ad4a596c3a1060f6af08 | 429d50bb1850ad34b86f02f7641fb889c1320bae | build: fix dubious ownership error in version bumper spec (#42509) | [
{
"path": ".github/workflows/pipeline-segment-electron-test.yml",
"patch": "@@ -112,6 +112,7 @@ jobs:\n chown :builduser .. && chmod g+w ..\n chown -R :builduser . && chmod -R g+w .\n chmod 4755 ../out/Default/chrome-sandbox\n+ runuser -u builduser -- git config --glob... | 2024-06-14T18:47:58 |
nodejs/node | c889b85498d1c45b278ce225d0c3ce3426ac0a88 | c4fb331390b5e9b2c6e328cc9e32a23b0e15d997 | deps: V8: cherry-pick 9ab40592f697
Original commit message:
[riscv] Flush icache in both local and remote harts
Fix the I-Cache flush flag according to the implementation of flush_icache_mm in Linux kernel.
Change-Id: I6e6b1f56c377c2c0a629e170737bfac6c357ce8d
Reviewed-on: https://chromium-review.goo... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n... | 2025-02-04T16:11:38 |
facebook/react | ba099e442b602b9414693dab9cfa67e19051037c | d77dd31a329df55a051800fc76668af8da8332b4 | [Flight] Add findSourceMapURL option to get a URL to load Server source maps from (#29708)
This lets you click a stack frame on the client and see the Server
source code inline.
<img width="871" alt="Screenshot 2024-06-01 at 11 44 24 PM"
src="https://github.com/facebook/react/assets/63648/581281ce-0dce-40c0-a084-... | [
{
"path": "fixtures/flight/config/webpack.config.js",
"patch": "@@ -199,7 +199,7 @@ module.exports = function (webpackEnv) {\n ? shouldUseSourceMap\n ? 'source-map'\n : false\n- : isEnvDevelopment && 'cheap-module-source-map',\n+ : isEnvDevelopment && 'source-map',\n // T... | 2024-06-03T02:58:24 |
vercel/next.js | 2c69ddeadfd3ceba178e0cae085445c10fb24d55 | bc2fa389b11263ecb6beccfd97a8b4fe2e3dad0f | Update otel test assertions and pages span_name (#84393)
This updates our otel tests to remove extra span assertions from `next
start` with edge runtime that can cause confusion and fixes a couple
span_names for pages handlers.
x-ref:
https://github.com/vercel/next.js/pull/75416#discussion_r2393016147 | [
{
"path": "packages/next/src/server/route-modules/pages/pages-handler.ts",
"patch": "@@ -400,7 +400,7 @@ export const getHandler = ({\n })\n span.updateName(name)\n } else {\n- span.updateName(`${method} ${req.url}`)\n+ ... | 2025-10-01T01:06:11 |
electron/electron | c2c3673e8aa923baa2a390d293fbd4ee985eba51 | c1094013ebcbf65df840914e26d56d099dc0d51e | build: fix linux tests (#42496)
* build: use runuser for electron spec runner
* chown
* run tests in priv
* fixed
* build: setup testing on arm for GHA
* no build-tools for test
* start xvfb for the right user
* no more gn-build-type
* debug env
* ue xvfb-run
* use 8 core for node tests
... | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -114,6 +114,7 @@ jobs:\n build-runs-on: aks-linux-large\n test-runs-on: aks-linux-medium\n build-container: '{\"image\":\"ghcr.io/electron/build:${{ inputs.build-image-sha }}\",\"options\":\"--user root\",\"volumes\":[\"/mnt/cross-insta... | 2024-06-14T15:57:28 |
golang/go | 1f2e8e03e48597367e674138e26432345c685b1c | 5024d0d884f8ca4fe74a861b5b20f6a3955762f2 | os: fix path in MkdirTemp error message
Fixes #75012
Change-Id: I9dd3ba8987bde9db93769a1b05d13b162ba5332d
Reviewed-on: https://go-review.googlesource.com/c/go/+/696715
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Sean Liao <sean@liao.dev>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts... | [
{
"path": "src/os/tempfile.go",
"patch": "@@ -105,7 +105,7 @@ func MkdirTemp(dir, pattern string) (string, error) {\n \t\t\tif try++; try < 10000 {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\treturn \"\", &PathError{Op: \"mkdirtemp\", Path: dir + string(PathSeparator) + prefix + \"*\" + suffix, Err: ErrExist}\n+\t... | 2025-08-16T18:36:14 |
nodejs/node | c4fb331390b5e9b2c6e328cc9e32a23b0e15d997 | dd92abc40587c3c236c40b262dd1918660900cb9 | sqlite: handle conflicting SQLite and JS errors
This commit adds support for the situation where SQLite is
trying to report an error while JavaScript already has an
exception pending.
Fixes: https://github.com/nodejs/node/issues/56772
PR-URL: https://github.com/nodejs/node/pull/56787
Reviewed-By: James M Snell <jasne... | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -101,9 +101,16 @@ inline MaybeLocal<Object> CreateSQLiteError(Isolate* isolate, sqlite3* db) {\n return e;\n }\n \n-inline void THROW_ERR_SQLITE_ERROR(Isolate* isolate, sqlite3* db) {\n+class DatabaseSync;\n+\n+inline void THROW_ERR_SQLITE_ERROR(Isolate* isolat... | 2025-02-04T13:58:33 |
facebook/react | 113c8e7f72bcf5d3bc285546da1508b45da3cf53 | adbec0c25aff07f04b0678679554505ba2813168 | [compiler:eslint] Don't crash if hermes parser fails to parse
Eslint rules should never throw, so if we fail to parse with Babel or
Hermes, we should just ignore the error. This should fix issues such as
trying to run the eslint rule on non tsx|ts|jsx|js files, Hermes parser
not supporting certain JS syntax, etc.
I d... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/src/rules/ReactCompilerRule.ts",
"patch": "@@ -124,12 +124,14 @@ const rule: Rule.RuleModule = {\n });\n } catch {}\n } else {\n- babelAST = HermesParser.parse(sourceCode, {\n- babel: true,\n- enableExperimentalCo... | 2024-05-31T00:18:26 |
rust-lang/rust | 2fa37e7b3498a9cb46004fae5fd9d6d40835ad28 | bbdc754c53a66e5239001cd0cd376247f0b69f71 | aarch64: fix UB in non-power-of-two reads and writes | [
{
"path": "library/stdarch/crates/core_arch/src/macros.rs",
"patch": "@@ -237,12 +237,12 @@ macro_rules! deinterleaving_load {\n ($elem:ty, $lanes:literal, 2, $ptr:expr) => {{\n use $crate::core_arch::macros::deinterleave_mask;\n use $crate::core_arch::simd::Simd;\n- use $crate::{... | 2026-02-26T12:00:21 |
vercel/next.js | 315c8ebaad92ca51931e6b892b3a26eb677feaa7 | efa1ad49e829312e86ae94288e89cb054795c126 | Turbopack: skip invalidating a task on cell/output change when the dependency is outdated (#84376)
### What?
Fixes some cases of double invalidation of tasks.
The concrete example here was tailwind executing twice on HMR changes.
The problem was that tailwind has a glob dependency and a file dependency on files.
Tha... | [
{
"path": "test/e2e/app-dir/no-double-tailwind-execution/app/globals.css",
"patch": "@@ -0,0 +1 @@\n+@import 'tailwindcss';",
"additions": 1,
"deletions": 0,
"language": "CSS"
},
{
"path": "test/e2e/app-dir/no-double-tailwind-execution/app/layout.tsx",
"patch": "@@ -0,0 +1,10 @@\n+im... | 2025-09-30T17:54:08 |
golang/go | 5024d0d884f8ca4fe74a861b5b20f6a3955762f2 | b80ffb64d815596eb8882eaefa3e2d2920380634 | cmd/compile: tweak example command in README
While running ./src/all.bash, I got the following error:
all.bash must be run from $GOROOT/src
Change-Id: Iad271654ff8647501a324c282f01baf39605e3df
GitHub-Last-Rev: 2e289babf1bc81c1a44c9a72a29659d8bf9d827b
GitHub-Pull-Request: golang/go#75050
Reviewed-on: https://go-revie... | [
{
"path": "src/cmd/compile/README.md",
"patch": "@@ -281,11 +281,11 @@ dependencies, so is not suitable for distributed build systems.)\n ```\n $ go install golang.org/x/tools/cmd/toolstash@latest\n $ git clone https://go.googlesource.com/go\n- $ cd go\n+ $ export PATH=$PWD/go/bin:$PATH\n+ $ cd go/... | 2025-08-19T15:47:29 |
electron/electron | ad8e89de011ada816b6a81d4cd519097445fb0d9 | b7aad14e8d1c147866f158165c46b6b247527e99 | build: fix v8 toolchain for macOS x64 (#42492)
build: do better | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -30,7 +30,7 @@ runs:\n shell: bash\n if: ${{ inputs.target-arch == 'x64' && inputs.target-platform == 'macos' }}\n run: |\n- GN_APPENDED_ARGS=\"$GN_EXTRA_ARGS v8_snapshot_toolchain='//build/toolchain/mac:clang_x64'\... | 2024-06-13T22:14:57 |
nodejs/node | eb11adfc026993b2e67064116198a50e6de91f23 | a091f4890e239c9a726137a045eef4db32b7e3db | src,test: expand test coverage for urlpattern and fix error
PR-URL: https://github.com/nodejs/node/pull/56878
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> | [
{
"path": "src/node_url_pattern.cc",
"patch": "@@ -104,13 +104,14 @@ URLPatternRegexProvider::regex_search(std::string_view input,\n return std::nullopt;\n }\n \n+ // V8 checks that the regexp exec result is one of the correct types.\n+ DCHECK_IMPLIES(!entry->IsUndefined(), entry->IsString()... | 2025-02-04T04:52:39 |
rust-lang/rust | f0336511fa7bc27e05fbab5c851b8cf592844132 | f02672cb8bffef88934d31d9044257a4d11e5d1f | remove debug requirement from hooks | [
{
"path": "compiler/rustc_middle/src/hooks/mod.rs",
"patch": "@@ -35,8 +35,10 @@ macro_rules! declare_hooks {\n \n impl Default for Providers {\n fn default() -> Self {\n+ #[allow(unused)]\n Providers {\n- $($name: |_, $($arg,)*| default_... | 2026-01-27T15:09:52 |
facebook/react | adbec0c25aff07f04b0678679554505ba2813168 | ec6fe57a5027d60a959493a2e44b6872b8de0ab8 | Fix: `useTransition` after `use` gets stuck in pending state (#29670)
When a component suspends with `use`, we switch to the "re-render"
dispatcher during the subsequent render attempt, so that we can reuse
the work from the initial attempt. However, once we run out of hooks
from the previous attempt, we should swi... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -1083,20 +1083,49 @@ function useThenable<T>(thenable: Thenable<T>): T {\n thenableState = createThenableState();\n }\n const result = trackUsedThenable(thenableState, thenable, index);\n- if (\n- currentlyRenderingFiber.... | 2024-05-31T21:52:47 |
vercel/next.js | 9a76ce433b9915bd6030f2001cf43ec3aeee3074 | 4802b9839efdbb10008c11a398169ba6c4997749 | Revert "Revert "Add a --webpack flag and default --turbopack to true (#84216)"" (#84351)
Reverts vercel/next.js#84348 which itself reverted #84216.
In the 2nd attempt to make --turbopack a default behavior.
* adjust the Generate Pull Request States action to specify `--webpack`
* set the `IS_WEBPACK_TEST` flag in t... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -502,6 +502,7 @@ jobs:\n \n export NEXT_TEST_MODE=start\n export NEXT_TEST_WASM=true\n+ export IS_WEBPACK_TEST=1\n node run-tests.js \\\n test/production/pages-dir/production/test/index.test.ts \\\n ... | 2025-09-30T15:23:10 |
golang/go | c61db5ebd52a75af80da5afd2c2de3c6ddf080d2 | 07ee3bfc631cd6593c10b8715fc58b05d844f4ba | syscall: forkAndExecInChild1: don't reuse pid variable
A named return variable pid is reused in a few places, and while
the code is not wrong, it is somewhat confusing.
This variable used to be called r1 before CL 456516 (which did the right
thing, but slightly added to the confusion).
Now, the code calling SYS_WRIT... | [
{
"path": "src/syscall/exec_linux.go",
"patch": "@@ -365,11 +365,11 @@ func forkAndExecInChild1(argv0 *byte, argv, envv []*byte, chroot, dir *byte, att\n \t\tif _, _, err1 = RawSyscall(SYS_CLOSE, uintptr(mapPipe[1]), 0, 0); err1 != 0 {\n \t\t\tgoto childerror\n \t\t}\n-\t\tpid, _, err1 = RawSyscall(SYS_READ... | 2025-07-17T03:32:10 |
electron/electron | 4701795dc0f59f03970a3f2622058faf0020f3c1 | cfdc623c4d47fa5e8a12968ee100199cfb33442a | build: fix datetime module for Linux Publish (#42489) | [
{
"path": "script/release/uploaders/upload.py",
"patch": "@@ -48,7 +48,7 @@ def main():\n if args.verbose:\n enable_verbose_mode()\n if args.upload_to_storage:\n- utcnow = datetime.datetime.now(datetime.UTC)\n+ utcnow = datetime.datetime.utcnow()\n args.upload_timestamp = utcnow.strftime('... | 2024-06-13T21:36:45 |
nodejs/node | a091f4890e239c9a726137a045eef4db32b7e3db | 694787826863eaf613f8f624e1a4bb5a8cf87aeb | src: prevent URLPattern property accessors from crashing on invalid this
PR-URL: https://github.com/nodejs/node/pull/56877
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/node_url_pattern.cc",
"patch": "@@ -26,6 +26,7 @@ using v8::Object;\n using v8::PropertyAttribute;\n using v8::ReadOnly;\n using v8::RegExp;\n+using v8::Signature;\n using v8::String;\n using v8::Value;\n \n@@ -682,58 +683,71 @@ static void Initialize(Local<Object> target,\n auto prototype_... | 2025-02-04T03:34:31 |
facebook/react | ec6fe57a5027d60a959493a2e44b6872b8de0ab8 | 522d22f29904f2164210b3ae218b9b69b61e9a4c | [compiler] rfc: Include location information in identifiers and reactive scopes for debugging
Summary: Using the change detection code to debug codebases that violate the rules of react is a lot easier when we have a source location corresponding to the value that has changed inappropriately. I didn't see an easy way ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -124,7 +124,7 @@ export function lower(\n ) {\n const place: Place = {\n kind: \"Identifier\",\n- identifier: builder.makeTemporary(),\n+ identifier: builder.makeTemporary(param.node.l... | 2024-05-31T21:06:04 |
vercel/next.js | 4802b9839efdbb10008c11a398169ba6c4997749 | b6834b1bfefb158256db08dafeb73b386072b32f | Turbopack: Add docs for debugIds option (#84375)
## What?
Adds documentation for #84319. | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/turbopack.mdx",
"patch": "@@ -44,12 +44,13 @@ module.exports = nextConfig\n \n The following options are available for the `turbopack` configuration:\n \n-| Option | Description ... | 2025-09-30T15:22:26 |
golang/go | 07ee3bfc631cd6593c10b8715fc58b05d844f4ba | 5a56d8848b4ffb79c5ccc11ec6fa01823a91aaf8 | cmd/go: use modern pprof flags in documentation
This change updates our mentions of pprof flags so that we now refer to
the modern flag names instead of the legacy ones.
Fixes #74336.
Change-Id: Ie8fbc7407178219b84ce5171fa5e94621129267e
Reviewed-on: https://go-review.googlesource.com/c/go/+/689095
Reviewed-by: Micha... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -3231,8 +3231,8 @@\n //\n // Several of the flags control profiling and write an execution profile\n // suitable for \"go tool pprof\"; run \"go tool pprof -h\" for more\n-// information. The --alloc_space, --alloc_objects, and --show_bytes\n-// options of ppr... | 2025-07-21T03:25:57 |
facebook/react | 522d22f29904f2164210b3ae218b9b69b61e9a4c | c69211a9dfa683038b1a758aba2ca09c7862a6d3 | [compiler] Recompute values every time
Summary: This PR expands the analysis from the previous in the stack in order to also capture when a value can incorrectly change within a single render, rather than just changing between two renders. In the case where dependencies have changed and so a new value is being compute... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -461,6 +461,11 @@ function codegenReactiveScope(\n ): void {\n const cacheStoreStatements: Array<t.Statement> = [];\n const cacheLoadStatements: Array<t.Statement> = [];\n+ const cacheL... | 2024-05-31T21:06:02 |
electron/electron | 15c404a3c812a94cd0b7202eec35f0a35a5ea230 | 0affad3be668fab7e236a1407aefebb8c9b63de3 | docs: fix the Apple HIG link for Dock context menu (#42450)
Fix the Apple human interface guidelines link for Dock context menu
The link seems to have changed. This is the up to date link. | [
{
"path": "docs/api/dock.md",
"patch": "@@ -80,4 +80,4 @@ Returns `Menu | null` - The application's [dock menu][dock-menu].\n \n Sets the `image` associated with this dock icon.\n \n-[dock-menu]: https://developer.apple.com/macos/human-interface-guidelines/menus/dock-menus/\n+[dock-menu]: https://developer.... | 2024-06-13T20:24:05 |
nodejs/node | 35d199f27b12151e2768d8360b24516d463fab8a | 2972fe961bb7690f7935e85012d0a94287e61c7e | src: make multiple improvements to node_url_pattern
* remove USE from node_url_pattern to handle error correctly
* simplify if block in node_url_pattern
* improve error handling in node_url_pattern
* fix error propagation on URLPattern init
* use ToV8Value where more convenient in node_url_pattern
* simplify URLPatter... | [
{
"path": "src/node_url_pattern.cc",
"patch": "@@ -165,6 +165,10 @@ void URLPattern::New(const FunctionCallbackInfo<Value>& args) {\n input = input_buffer.ToString();\n } else if (args[0]->IsObject()) {\n init = URLPatternInit::FromJsObject(env, args[0].As<Object>());\n+ // If init does not hav... | 2025-02-01T20:10:03 |
golang/go | 5a56d8848b4ffb79c5ccc11ec6fa01823a91aaf8 | c3927a47f092fc7248d973f4d8a64ab410804986 | cmd/compile: ensure we use allowed registers for input-clobbering instructions
For instructions which clobber their input register, we make a second
copy of the input value so it is still available in a register for
future instructions.
That second copy might not respect the register input restrictions
for the instru... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -1725,10 +1725,9 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t\t// spilling the value with the most distant next use.\n \t\t\t\t\tcontinue\n \t\t\t\t}\n-\t\t\t\t// Copy input to a new clobberable register.\n+\t\t\t\t// Copy input... | 2025-08-18T17:17:27 |
facebook/react | 5c420e3824859b33321b4bc9ce3119806fac56c2 | 8b01a2e0bf17adc6bb7b81d1d0063c7efe9ea8b1 | [compiler] Debug tool to emit change detection code rather than memoization
Summary: The essential assumption of the compiler is that if the inputs to a computation have not changed, then the output should not change either--computation that the compiler optimizes is idempotent.
This is, of course, known to be false ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -149,7 +149,8 @@ function* runWithEnvironment(\n \n if (\n !env.config.enablePreserveExistingManualUseMemo &&\n- !env.config.disableMemoizationForDebugging\n+ !env.config.disableMemoizationForDebug... | 2024-05-31T21:05:58 |
nodejs/node | 793c7936c394aba54875f84b135684e38a30ff94 | cadc4ed06703e25e4f05e9108b941b0a61dcbf89 | test: fix race condition in test-child-process-bad-stdio
test-child-process-bad-stdio.js contains a race condition between
a timeout in the test process and a timeout in the spawned child
process. This commit addresses the race condition by having the
child process wait indefinitely to be killed.
PR-URL: https://gith... | [
{
"path": "test/parallel/test-child-process-bad-stdio.js",
"patch": "@@ -3,7 +3,7 @@\n const common = require('../common');\n \n if (process.argv[2] === 'child') {\n- setTimeout(() => {}, common.platformTimeout(100));\n+ setTimeout(() => {}, common.platformTimeout(1000));\n return;\n }\n ",
"additio... | 2025-02-03T03:12:19 |
electron/electron | 30885e5f9f7564f05f9d01c69c73b9b7c28a36bb | 75d0e725be490bf0a8643c6fe23ed7b542db4911 | build: add Linux GHA test step (#42460)
* build: add Linux GHA test step
* Switch to medium AKS runners
* Add missing BUILD_TYPE to restore-artifact
* Fix untar to current dir
* Remove known hosts logic
* Add missing Node.js headers step
* Fix for active SSH sessions
* Fix storing artifacts
* B... | [
{
"path": ".github/workflows/linux-pipeline.yml",
"patch": "@@ -66,7 +66,7 @@ jobs:\n strategy:\n fail-fast: false\n matrix:\n- build-arch: [ arm64 ] # x64, arm \n+ build-arch: [ x64 ] # arm64, arm \n env: \n TARGET_ARCH: ${{ matrix.build-arch }}\n runs-on: aks-li... | 2024-06-13T19:14:33 |
vercel/next.js | 624a01400906c55015fa20d2f730f4b108a2b675 | fe357ef2abce84862eb15cf30efa50f7bcbffbc2 | [turbopack] Add support for debug_ids (#84319)
## What?
Add a new feature to turbopack for generating debug_ids based on the
[TC39 Debug ID
proposal](https://github.com/tc39/ecma426/blob/main/proposals/debug-id.md)
If a user sets `turbopack.debugIds = true` then we will
* register the debug id with the global `_debu... | [
{
"path": "Cargo.lock",
"patch": "@@ -9564,8 +9564,10 @@ dependencies = [\n \"turbo-tasks-hash\",\n \"turbo-tasks-testing\",\n \"turbo-unix-path\",\n+ \"twox-hash 2.1.0\",\n \"url\",\n \"urlencoding\",\n+ \"uuid\",\n ]\n \n [[package]]\n@@ -10223,9 +10225,9 @@ checksum = \"711b9620af191e0cdc7468a8d14e7... | 2025-09-30T12:07:38 |
facebook/react | 8b01a2e0bf17adc6bb7b81d1d0063c7efe9ea8b1 | 28fe581bac10ca91b0d12d95beb034cfe790f3d0 | [compiler] Option to always take the non-memo branch
Summary: This adds a debugging mode to the compiler that simply adds a `|| true` to the guard on all memoization blocks, which results in the generated code never using memoized values and always recomputing them. This is designed as a validation tool for the compil... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -147,7 +147,10 @@ function* runWithEnvironment(\n validateContextVariableLValues(hir);\n validateUseMemo(hir);\n \n- if (!env.config.enablePreserveExistingManualUseMemo) {\n+ if (\n+ !env.config.enabl... | 2024-05-31T21:04:54 |
golang/go | c3927a47f092fc7248d973f4d8a64ab410804986 | 77f911e31c243a8302c086d64dbef340b0c999b8 | runtime: fix comments in tracetype.go
They seem to have been copy and pasted from tracestack.go without being
updated.
Change-Id: I6a6a69645a778fe8e6e8a2f4a80429f20e90162e
Reviewed-on: https://go-review.googlesource.com/c/go/+/674215
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount... | [
{
"path": "src/runtime/tracetype.go",
"patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-// Trace stack table and acquisition.\n+// Trace type table.\n \n package runtime\n \n@@ -13,7 +13,7 @@ import (\n \t\"unsafe\"\n )... | 2025-05-19T18:46:47 |
electron/electron | 75d0e725be490bf0a8643c6fe23ed7b542db4911 | 42266546ebbaf5f5c8d29029097418c0956e641c | build: fix conditional for sas token (#42481) | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -39,12 +39,12 @@ runs:\n node src/electron/script/generate-deps-hash.js && cat src/electron/.depshash-target\n echo \"DEPSHASH=v1-src-cache-$(shasum src/electron/.depshash | cut -f1 -d' ')\" >> $GITHUB_ENV\n - name: Generate SAS Key... | 2024-06-13T14:43:06 |
nodejs/node | 0a4672e2086d7feb576cc6f238887b6e12f153cb | b78df6c40248d42e46e3c2ad2de3f2a0e9098111 | tools: remove test-asan/ubsan workflows
They have been disabled for months without anyone looking into fixing
the builds.
PR-URL: https://github.com/nodejs/node/pull/56823
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Re... | [
{
"path": ".github/workflows/test-asan.yml",
"patch": "@@ -1,66 +0,0 @@\n-name: Test ASan\n-\n-on:\n- pull_request:\n- types: [opened, synchronize, reopened, ready_for_review]\n- paths-ignore:\n- - .mailmap\n- - '**.md'\n- - AUTHORS\n- - doc/**\n- - .github/**\n- - '!.gi... | 2025-02-01T07:53:52 |
vercel/next.js | fe357ef2abce84862eb15cf30efa50f7bcbffbc2 | 9c6eb1457ef4e108be79edb70d05d0e0f0351451 | Turbopack: remove canary version check for turbopackPersistentCachingForDev (#84277)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that yo... | [
{
"path": "packages/next/src/server/config.test.ts",
"patch": "@@ -133,20 +133,6 @@ describe('loadConfig', () => {\n )\n })\n \n- it('errors when using persistentCachingForDev if not in canary', async () => {\n- await expect(\n- loadConfig(PHASE_PRODUCTION_BUILD, __dirname, {\n- ... | 2025-09-30T10:27:14 |
facebook/react | 28fe581bac10ca91b0d12d95beb034cfe790f3d0 | 8bc81ca90fb0afb3fe4a28d8931733a3e6fef994 | [compiler] Option for preserving calls to useMemo/useCallback
Summary: This adds a compiler option to not drop existing manual memoization and leaving useMemo/useCallback in the generated source. Why do we need this, given that we also have options to validate or ensure that existing memoization is preserved? It's bec... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -147,8 +147,10 @@ function* runWithEnvironment(\n validateContextVariableLValues(hir);\n validateUseMemo(hir);\n \n- dropManualMemoization(hir);\n- yield log({ kind: \"hir\", name: \"DropManualMemoizatio... | 2024-05-31T21:02:12 |
golang/go | 77f911e31c243a8302c086d64dbef340b0c999b8 | 786be1d2bff0192288dfc2832e5012ad6b0816be | internal/trace: emit final sync event for generation in Go 1.26+
CL 693398 returned the error from reading a generation immediately, but
this is wrong -- a Sync event must be emitted to indicate the end of the
trace before reporting the error. This caused TestCrashWhileTracing
to fail because that test has a high like... | [
{
"path": "src/internal/trace/reader.go",
"patch": "@@ -31,6 +31,7 @@ type Reader struct {\n \tcpuSamples []cpuSample\n \torder ordering\n \tsyncs int\n+\treadGenErr error\n \tdone bool\n \n \t// Spill state.\n@@ -153,9 +154,18 @@ func (r *Reader) ReadEvent() (e Event, err error) {\n \t\tif ... | 2025-08-15T23:30:08 |
electron/electron | 2afe657873e39d5fa56fcde5b4558dd4412e21ff | 1d2f2eb113c691622c233438de6ecdcae30e1a93 | build: cleanup to macos pipeline (#42445)
* build: cleanup to macos pipeline
* Fix generated artifact key finding
* Fix cache restore key
* Switch ref to main
* Use artifacts for build artifact persisting
* Fix TARGET_ARCH env var in test
* Remove npm install | [
{
"path": ".github/workflows/macos-pipeline.yml",
"patch": "@@ -44,7 +44,8 @@ env:\n # Disable pre-compiled headers to reduce out size - only useful for rebuilds\n GN_BUILDFLAG_ARGS: 'enable_precompiled_headers = false'\n GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=True --custom-var=host_os=mac'\n-... | 2024-06-12T19:58:47 |
nodejs/node | 1a2eb15bc610926789a8a3a002ec722c39768c20 | 96718268fec7e7f1c6156ff9a57899a5cd1487cc | test_runner: remove promises returned by t.test()
This commit updates the TestContext.prototype.test() API to no
longer return a Promise.
Fixes: https://github.com/nodejs/node/issues/51292
PR-URL: https://github.com/nodejs/node/pull/56664
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Pietro Marc... | [
{
"path": "doc/api/test.md",
"patch": "@@ -105,11 +105,11 @@ top level test with two subtests.\n \n ```js\n test('top level test', async (t) => {\n- await t.test('subtest 1', (t) => {\n+ t.test('subtest 1', (t) => {\n assert.strictEqual(1, 1);\n });\n \n- await t.test('subtest 2', (t) => {\n+ t.te... | 2025-01-20T01:06:50 |
vercel/next.js | 031b8fb86270bf1bd3a892d9216bfec43f2c48cf | d300ee9930d2e2d28f5c4dce1dc7e4fe5a62d78e | Turbopack: only replace edge dynamic calls in dev (#84354)
This replacement should only happen in dev, it's really only to be able to have nicer error messages.
This previously failed the deployment tests.
Related: https://github.com/vercel/next.js/issues/40625
Closes PACK-5591 | [
{
"path": "crates/next-core/src/next_server/transforms.rs",
"patch": "@@ -174,14 +174,18 @@ pub async fn get_next_server_transforms_rules(\n }\n \n if let NextRuntime::Edge = next_runtime {\n- rules.push(get_middleware_dynamic_assert_rule(mdx_rs));\n+ let mode = *mode.await?;\n+\n+ ... | 2025-09-29T23:47:25 |
facebook/react | 6d3110b4d95a8594b0cbe437c9d71d3e2f2ba2d4 | 63d673c67656390d776bfa082c6ab49f0c636582 | Don't allow blank issues (#29691)
We're getting a ton of issues filed using the blank template, for
example these airline support tickets:
https://github.com/facebook/react/issues/29678
I think someone somewhere is linking to our issues with pre-filled
content. This fixes it by forcing a template to be used. | [
{
"path": ".github/ISSUE_TEMPLATE/config.yml",
"patch": "@@ -1,3 +1,4 @@\n+blank_issues_enabled: false\n contact_links:\n - name: 📃 Documentation Issue\n url: https://github.com/reactjs/react.dev/issues/new/choose",
"additions": 1,
"deletions": 0,
"language": "YAML"
}
] | 2024-05-31T16:05:32 |
golang/go | 4a7fde922ff12dce9d4e00f1b1e658fa907e488d | cb814bd5bc3f0575e8d0e26370c05456770cb3da | internal/trace: add end-of-generation signal to trace
This change takes the EvEndOfGeneration event and promotes it to a real
event that appears in the trace.
This allows the trace parser to unambiguously identify truncated traces
vs. broken traces. It also makes a lot of the logic around parsing
simpler, because the... | [
{
"path": "src/internal/trace/batch.go",
"patch": "@@ -44,6 +44,10 @@ func (b *batch) isSyncBatch(ver version.Version) bool {\n \t\t\t(tracev2.EventType(b.data[0]) == tracev2.EvSync && ver >= version.Go125))\n }\n \n+func (b *batch) isEndOfGeneration() bool {\n+\treturn b.exp == tracev2.NoExperiment && len(... | 2025-08-05T21:37:07 |
electron/electron | 7a6a2a51e046ce8cd118c85a0e988100fa238a9d | 6caf9f06f3fe3a93d63ab3b4a02f3feb6c1810ff | docs: fix info admonitions in security.md (#42451) | [
{
"path": "docs/tutorial/security.md",
"patch": "@@ -246,7 +246,7 @@ and prevent the use of Node primitives `contextIsolation` **must** also be used.\n :::info\n For more information on what `contextIsolation` is and how to enable it please\n see our dedicated [Context Isolation](context-isolation.md) docum... | 2024-06-12T16:38:21 |
nodejs/node | 96718268fec7e7f1c6156ff9a57899a5cd1487cc | aa3523ec22c95dfb11ef93c8333ced41cd431f89 | test_runner: remove promises returned by test()
This commit updates the test() and suite() APIs to no longer
return a Promise.
Fixes: https://github.com/nodejs/node/issues/51292
PR-URL: https://github.com/nodejs/node/pull/56664
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Pietro Marchini <pietr... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1407,6 +1407,11 @@ run({ files: [path.resolve('./tests/test.js')] })\n added:\n - v22.0.0\n - v20.13.0\n+changes:\n+ - version:\n+ - REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/56664\n+ description: This function no longer returns a `Prom... | 2025-01-20T00:42:22 |
facebook/react | 8fd963a1e5ec89459cac27fb1d9ad193a0604110 | aa3d6c0840357eb469df9bd1c20b201197ce3bdc | Fix Missing `key` Validation in `React.Children` (#29675)
## Summary
In https://github.com/facebook/react/pull/29088, the validation logic
for `React.Children` inspected whether `mappedChild` — the return value
of the map callback — has a valid `key`. However, this deviates from
existing behavior which only warn... | [
{
"path": "packages/react/src/ReactChildren.js",
"patch": "@@ -229,11 +229,21 @@ function mapIntoArray(\n childKey,\n );\n if (__DEV__) {\n- if (nameSoFar !== '' && mappedChild.key == null) {\n- // We need to validate that this child should have had a key befo... | 2024-05-31T01:02:47 |
vercel/next.js | 3f75ff69cb1cc2a0314795b0fce8cd0a8dd4a837 | c1967707aba2bba32a04d806474e69b077e0592a | Use Array.from to avoid @ts-ignore when copying i18n.locales (#82148)
### What?
Replaces:
```ts
// @ts-ignore locales are readonly
const locales: string[] = i18n.locales;
```
with:
```ts
const locales = Array.from(i18n.locales);
```
### Why?
Avoids suppressing TypeScript errors via @ts-ignore.
Array.from safely creat... | [
{
"path": "examples/i18n-routing/middleware.ts",
"patch": "@@ -11,8 +11,7 @@ function getLocale(request: NextRequest): string | undefined {\n const negotiatorHeaders: Record<string, string> = {};\n request.headers.forEach((value, key) => (negotiatorHeaders[key] = value));\n \n- // @ts-ignore locales ar... | 2025-09-29T22:13:41 |
golang/go | cb814bd5bc3f0575e8d0e26370c05456770cb3da | 78a3968c2c9f2d6e8eb6dc263b4a2517c72d71be | net: skip TestIPv4WriteMsgUDPAddrPort on plan9
This test uses method (*UDPConn).WriteMsgUDPAddrPort, which is
not supported on Plan 9. The test needs to be skipped, like
for example TestAllocs which is already skipped for the
same reason.
Fixes #75017
Change-Id: Iaa0e6ecdba0938736d8f675fcac43c46db34cb5d
Reviewed-on:... | [
{
"path": "src/net/udpsock_test.go",
"patch": "@@ -710,6 +710,11 @@ func TestIPv6WriteMsgUDPAddrPortTargetAddrIPVersion(t *testing.T) {\n // WriteMsgUDPAddrPort accepts IPv4 and IPv4-mapped IPv6 destination addresses,\n // and rejects IPv6 destination addresses on a \"udp4\" connection.\n func TestIPv4Write... | 2025-08-14T15:25:56 |
rust-lang/rust | 55225173f206c0b49f008066afd2cf4625bdacf1 | dcb8800b2d15ebecea4baf56a14f0b9f4c3bf9a7 | Fix `infinite_loop` wrong suggestion inside conditional branches | [
{
"path": "clippy_lints/src/loops/infinite_loop.rs",
"patch": "@@ -1,5 +1,5 @@\n use clippy_utils::diagnostics::span_lint_and_then;\n-use clippy_utils::{fn_def_id, is_from_proc_macro, is_lint_allowed};\n+use clippy_utils::{RequiresSemi, fn_def_id, is_from_proc_macro, is_lint_allowed, is_never_expr};\n use h... | 2026-02-23T03:54:00 |
electron/electron | 6caf9f06f3fe3a93d63ab3b4a02f3feb6c1810ff | 4aa9070e6c291c9148cd170befc82e8fb953bd2a | fix: don't observe WebUSB for in-memory partitions (#42443) | [
{
"path": "shell/browser/hid/electron_hid_delegate.cc",
"patch": "@@ -46,8 +46,8 @@ class ElectronHidDelegate::ContextObservation\n ContextObservation(ElectronHidDelegate* parent,\n content::BrowserContext* browser_context)\n : parent_(parent), browser_context_(browser_context) ... | 2024-06-12T15:59:04 |
nodejs/node | aa3523ec22c95dfb11ef93c8333ced41cd431f89 | ba4587c9fc5fae8334f3368be89405ca5735f3bb | test_runner: automatically wait for subtests to finish
This commit updates the test runner to automatically wait for
subtests to finish. This makes the experience more consistent
with suites and removes the need to await anything.
PR-URL: https://github.com/nodejs/node/pull/56664
Fixes: https://github.com/nodejs/node... | [
{
"path": "lib/internal/test_runner/harness.js",
"patch": "@@ -27,6 +27,8 @@ const {\n shouldColorizeTestFiles,\n } = require('internal/test_runner/utils');\n const { queueMicrotask } = require('internal/process/task_queues');\n+const { TIMEOUT_MAX } = require('internal/timers');\n+const { clearInterval, ... | 2025-01-19T22:46:37 |
facebook/react | 9710853baf9649fed556dc0e9d39765649675b7b | 9d4fba078812de0363fe9514b943650fa479e8af | [Flight] Try/Catch Eval (#29671)
Follow up to https://github.com/facebook/react/pull/29632.
It's possible for `eval` to throw such as if we're in a CSP environment.
This is non-essential debug information. We can still proceed to create
a fake stack entry. It'll still have the right name. It just won't have
the ... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -1648,7 +1648,7 @@ const taskCache: null | WeakMap<\n ConsoleTask,\n > = supportsCreateTask ? new WeakMap() : null;\n \n-type FakeFunction<T> = (FakeFunction<T>) => T;\n+type FakeFunction<T> = (() => T) => T;\n const fakeFunctionCach... | 2024-05-30T19:00:55 |
vercel/next.js | c35549a5c46df854e63e73891d9d971123fd33cb | fbb50f49fd1bfeff7f34a54faa69ce2ab2aeccc3 | docs: remove repeated to (#84325)
### What?
Removed an extra "to"
### Why?
Semantics error/not required
Co-authored-by: Joseph <joseph.chamochumbi@vercel.com> | [
{
"path": "docs/01-app/02-guides/json-ld.mdx",
"patch": "@@ -4,7 +4,7 @@ nav_title: JSON-LD\n description: Learn how to add JSON-LD to your Next.js application to describe your content to search engines and AI.\n ---\n \n-[JSON-LD](https://json-ld.org/) is a format for structured data that can be used by se... | 2025-09-29T19:00:19 |
rust-lang/rust | a5789d0a028b451f4bf85769f2acca86fb7e95e4 | 859951e3c7c9d0322c39bad49221937455bdffcd | Fix ICE in `try_to_raw_bytes` when array elements have mismatched scalar
sizes | [
{
"path": "compiler/rustc_middle/src/ty/consts/valtree.rs",
"patch": "@@ -136,19 +136,24 @@ impl<'tcx> Value<'tcx> {\n ty::Ref(_, inner_ty, _) => match inner_ty.kind() {\n // `&str` can be interpreted as raw bytes\n ty::Str => {}\n- // `&[u8]` can b... | 2026-02-18T10:33:49 |
golang/go | 78a3968c2c9f2d6e8eb6dc263b4a2517c72d71be | ab8121a407280bf39bdd401699476feb39ccd0f7 | runtime/metrics: add metric for current Go-owned thread count
Fixes #15490.
Change-Id: I6ce9edc46398030ff639e22d4ca4adebccdfe1b7
Reviewed-on: https://go-review.googlesource.com/c/go/+/690399
Auto-Submit: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservic... | [
{
"path": "src/runtime/metrics.go",
"patch": "@@ -532,6 +532,13 @@ func initMetrics() {\n \t\t\t\tsched.stwTotalTimeOther.write(out)\n \t\t\t},\n \t\t},\n+\t\t\"/sched/threads/total:threads\": {\n+\t\t\tdeps: makeStatDepSet(schedStatsDep),\n+\t\t\tcompute: func(in *statAggregate, out *metricValue) {\n+\t\t\... | 2025-07-24T21:38:37 |
electron/electron | 4aa9070e6c291c9148cd170befc82e8fb953bd2a | ea219dd7022ae88091ae7373b13af9ac7b772697 | fix: missing `fetch`-dependent interfaces in Node.js (#42419)
fix: missing fetch-dependent interfaces in Node.js | [
{
"path": "lib/node/init.ts",
"patch": "@@ -3,8 +3,11 @@ import { wrapFsWithAsar } from './asar-fs-wrapper';\n wrapFsWithAsar(require('fs'));\n \n // See ElectronRendererClient::DidCreateScriptContext.\n-if ((globalThis as any).blinkFetch) {\n- globalThis.fetch = (globalThis as any).blinkFetch;\n+if ((glob... | 2024-06-11T21:59:53 |
nodejs/node | 52d39441d07c8c0c99e84644f69406aa8578d7b1 | 99ffe3555a2156f68d014853d7f1ce9d128f2004 | deps: V8: cherry-pick f915fa4c9f41
Original commit message:
[osr] Ensure trying to osr does not skip loop interrupts
Fixed: 374013413
Change-Id: I52d7b4e165e0abd0bd517a81d2e8ef3f1f802bfb
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5946288
Commit-Queue: Darius Mercadier <dmerca... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ... | 2024-10-21T11:29:28 |
vercel/next.js | 1dda5b668bc57fdad6c4cf840c2083e6c66ad9db | bc14f1928b58ff0bf4816016cb9ed70f3ca6f5e6 | [Breaking] Remove deprecated sync access to Dynamic APIs (#84179)
This PR removes the deprecated sync access to Dynamic APIs.
- Removed UnsafeUnwrapped* types.
- Replaced `as unknown as UnsafeUnwrapped ` type casts to `as any` for
dev warning.
- Removed tests that expected sync access to not error.
- Removed `Untrack... | [
{
"path": "errors/sync-dynamic-apis.mdx",
"patch": "@@ -26,9 +26,6 @@ function Page({ params }) {\n This also includes enumerating (e.g. `{...params}`, or `Object.keys(params)`) or iterating over the return\n value of these APIs (e.g. `[...headers()]` or `for (const cookie of cookies())`, or explicitly with... | 2025-09-27T20:44:45 |
golang/go | bca3e98b8aa4f754ea3604b62ef42f64dec88800 | 052fcde9fdd1655f823e810a284c651b3481a433 | cmd/go: test barrier actions
Add a barrier action between test run action and it's dependencies.
Run will depend on this barrier action, and the barrier action will depend on:
1. The run action's dependencies
2. The previous barrier action
This will force internal/work to schedule test run actions in-order, preventin... | [
{
"path": "src/cmd/go/internal/test/test.go",
"patch": "@@ -1044,11 +1044,36 @@ func runTest(ctx context.Context, cmd *base.Command, args []string) {\n \t\tprints = append(prints, printTest)\n \t}\n \n-\t// Order runs for coordinating start JSON prints.\n+\t// Order runs for coordinating start JSON prints v... | 2025-08-13T20:06:31 |
facebook/react | 9d4fba078812de0363fe9514b943650fa479e8af | fb61a1b515c5ea0e31b0dac19184454a79c4baf1 | [Flight] Eval Fake Server Component Functions to Recreate Native Stacks (#29632)
We have three kinds of stacks that we send in the RSC protocol:
- The stack trace where a replayed `console.log` was called on the
server.
- The JSX callsite that created a Server Component which then later
called another component.... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -67,8 +67,11 @@ import {\n REACT_ELEMENT_TYPE,\n REACT_POSTPONE_TYPE,\n ASYNC_ITERATOR,\n+ REACT_FRAGMENT_TYPE,\n } from 'shared/ReactSymbols';\n \n+import getComponentNameFromType from 'shared/getComponentNameFromType';\n+\n ex... | 2024-05-30T16:00:46 |
electron/electron | f35a75508685fa7ffaa3ad54d5b3547ebbefe6dc | f2481ed44f269478f34452493f736eb000efbe67 | fix: bad js-flags shouldn't crash the app (#42414)
* fix: bad js-flags shouldn't crash the app
* Update shell/browser/javascript_environment.cc
Co-authored-by: Robo <hop2deep@gmail.com>
---------
Co-authored-by: Robo <hop2deep@gmail.com> | [
{
"path": "shell/browser/javascript_environment.cc",
"patch": "@@ -124,13 +124,10 @@ JavascriptEnvironment::~JavascriptEnvironment() {\n v8::Isolate* JavascriptEnvironment::Initialize(uv_loop_t* event_loop,\n bool setup_wasm_streaming) {\n auto* cmd = base::C... | 2024-06-11T13:32:16 |
nodejs/node | 99ffe3555a2156f68d014853d7f1ce9d128f2004 | 5d8011d91c6a473ffab6545e5bff0a244e77724a | deps: V8: cherry-pick 0d5d6e71bbb0
Original commit message:
Remove `--js-promise-withresolvers` runtime flag
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
Bug: 42204122
Change-Id: I017a0d1ae0f8225513206ffb7806a4250be75d4c
Reviewed-on: https://chromium-review.googlesource.com/c/v... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-09-20T17:17:30 |
vercel/next.js | bc14f1928b58ff0bf4816016cb9ed70f3ca6f5e6 | 3f6ffba81563cbe6eaa1fdd9fb0ae6e4b7e3fc4c | fix: Update URL resolution logic to handle search parameters on root path /?foo=bar (#78262)
## What?
This PR fixes and implements test for an URL resolution issue that
stripped the searchparam when `metadataBase` was defined and a search
param was set on the root path. This created a behavior where :
```
export con... | [
{
"path": "packages/next/src/lib/metadata/resolvers/resolve-url.test.ts",
"patch": "@@ -62,6 +62,12 @@ describe('resolveAbsoluteUrlWithPathname', () => {\n 'https://example.com/foo'\n )\n })\n+\n+ it('should resolve absolute internal url with query', () => {\n+ expect(resolver('htt... | 2025-09-27T18:06:28 |
facebook/react | fb61a1b515c5ea0e31b0dac19184454a79c4baf1 | 5bd403122645ef0f0924ac5466f56e670a8f5b8d | fix[ReactDebugHooks/find-primitive-index]: remove some assumptions (#29652)
Partially reverts https://github.com/facebook/react/pull/28593.
While rolling out RDT 5.2.0, I've observed some issues on React Native
side: hooks inspection for some complex hook trees, like in
AnimatedView, were broken. After some debug... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -868,7 +868,12 @@ function findCommonAncestorIndex(rootStack: any, hookStack: any) {\n }\n \n function isReactWrapper(functionName: any, wrapperName: string) {\n- return parseHookName(functionName) === wrapperName;\n+ const hookNa... | 2024-05-30T15:11:56 |
golang/go | a8564bd412d4495a6048f981d30d4d7abb1e45a7 | 924fe98902cdebf20825ab5d1e4edfc0fed2966f | runtime: make all synctest bubble violations fatal panics
Unblocking a bubbled goroutine from outside the bubble is an error
and panics. Currently, some of those panics are regular panics
and some are fatal. We use fatal panics in cases where its difficult
to panic without leaving something in an inconsistent state.
... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -383,57 +383,59 @@ func TestChannelMovedOutOfBubble(t *testing.T) {\n \tfor _, test := range []struct {\n \t\tdesc string\n \t\tf func(chan struct{})\n-\t\twantPanic string\n+\t\twantFatal string\n \t}{{\n \t\tdesc: \"receive\",\n... | 2025-08-14T17:27:54 |
electron/electron | c4abaec56ac91a53341bc486dcd05f733348326e | 92de23bb3c2dd882497a91354e8073ea210ffb48 | build: fix upload script defaults (#42430) | [
{
"path": "script/lib/util.py",
"patch": "@@ -158,7 +158,7 @@ def azput(prefix, key_prefix, files):\n print(output)\n \n def get_out_dir():\n- out_dir = 'Debug'\n+ out_dir = 'Default'\n override = os.environ.get('ELECTRON_OUT_DIR')\n if override is not None:\n out_dir = override",
"additions... | 2024-06-10T21:58:29 |
nodejs/node | d85d2f835042a9fc890e4ed4beac123f628a2835 | e8f55f7b7a9f5184f31b2b86fc8ea923e38229cd | deps: define V8_PRESERVE_MOST as no-op on Windows
It's causing linker errors with node.lib in node-gyp and potentially
breaks other 3rd party tools
PR-URL: https://github.com/nodejs/node/pull/56238
Refs: https://github.com/nodejs/node/pull/55784
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M ... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-12-16T10:11:22 |
facebook/react | 72644ef2f2ec7a274f79f6b32320d62757521329 | 51dd09631ac0c7824fec55f38462846b6fe41d06 | Fix `key` Warning for Flattened Positional Children (#29662)
## Summary
https://github.com/facebook/react/pull/29088 introduced a regression
triggering this warning when rendering flattened positional children:
> Each child in a list should have a unique "key" prop.
The specific scenario that triggers this i... | [
{
"path": "packages/react/src/__tests__/ReactChildren-test.js",
"patch": "@@ -868,6 +868,45 @@ describe('ReactChildren', () => {\n ]);\n });\n \n+ it('should warn for flattened children lists', async () => {\n+ function ComponentRenderingFlattenedChildren({children}) {\n+ return <div>{React.C... | 2024-05-30T14:25:48 |
golang/go | 9783f86bc8953c3d93853b2382a4de011c5e26a7 | a4ad41708d8303a561ed072596222aae990f8dbd | [dev.simd] cmd/compile: accounts rematerialize ops's output reginfo
This CL implements the check for rematerializeable value's output
regspec at its remateralization site. It has some potential problems,
please see the TODO in regalloc.go.
Fixes #70451.
Change-Id: Ib624b967031776851136554719e939e9bf116b7c
Reviewed-o... | [
{
"path": "src/cmd/compile/internal/ssa/func.go",
"patch": "@@ -102,6 +102,7 @@ func (c *Config) NewFunc(fe Frontend, cache *Cache) *Func {\n \t\tNamedValues: make(map[LocalSlot][]*Value),\n \t\tCanonicalLocalSlots: make(map[LocalSlot]*LocalSlot),\n \t\tCanonicalLocalSplits: make(map[LocalSlotSpli... | 2025-08-12T16:53:44 |
vercel/next.js | 97056e0d804ae832b3d8a92f314f0279375ed4a4 | f31d18d8b37b714c179ea940d05de1247c3c025b | Add a --webpack flag and default --turbopack to true (#84216)
Make Turbopack the default bundler for Next 🚀
## What
Add a `--webpack` flag so users can select webpack
Change behavior so if neither `--turbopack` or `--webpack` is set we default to Turbopack.
If we have defaulted the build to turbopack and we obser... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -502,6 +502,7 @@ jobs:\n \n export NEXT_TEST_MODE=start\n export NEXT_TEST_WASM=true\n+ export IS_WEBPACK_TEST=1\n node run-tests.js \\\n test/production/pages-dir/production/test/index.test.ts \\\n ... | 2025-09-26T23:24:17 |
electron/electron | 92de23bb3c2dd882497a91354e8073ea210ffb48 | ff4494c18fff3fbe01a52373f97172636308cf7d | build: initial Linux pipeline checkout (#42429)
* build: create config for GHA build linux
* build: restructure linux pipeline files
* build (do not merge): don't run CircleCI or Appveyor
* build: run on push
* build: add checkout step
* build: fix .yml syntax
* Remove Azure CLI install
* Revert "... | [
{
"path": ".github/workflows/linux-build.yml",
"patch": "@@ -0,0 +1,17 @@\n+name: Build Linux\n+\n+on:\n+ workflow_dispatch:\n+ # push:\n+ # pull_request:\n+\n+jobs:\n+ build:\n+ uses: electron/electron/.github/workflows/linux-pipeline.yml@main\n+ with:\n+ is-release: false\n+ gn-config:... | 2024-06-10T19:39:34 |
nodejs/node | e8f55f7b7a9f5184f31b2b86fc8ea923e38229cd | b3c1b63a5d1aa41a7791e09214b504217213f637 | deps: always define V8_NODISCARD as no-op
It's causing compiler errors with some classes on Xcode 11
and the attribute should have no runtime effect.
PR-URL: https://github.com/nodejs/node/pull/54077
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Joyee Cheun... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-08-08T04:53:41 |
facebook/react | 867edc6576956f577718540c504a10bcfe2aad77 | 320da675705e8700bc1377a5fa22b4cdf1e52704 | compiler: ValidateNoRefInRender detects writes of refs
Improves ValidateNoRefAccessInRender, detecting modifications of refs during render.
Fixes #29161
ghstack-source-id: 99078b3cea5b2d9019dbf77ede9c2e4cd9fbfd27
Pull Request resolved: https://github.com/facebook/react/pull/29170 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts",
"patch": "@@ -10,6 +10,7 @@ import {\n HIRFunction,\n IdentifierId,\n Place,\n+ SourceLocation,\n isRefValueType,\n isUseRefType,\n } from \"../HIR\";\n@@ -117,7 +118,12 @@ function validateNoR... | 2024-05-29T14:56:27 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.