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
electron/electron
d9997c303f6173e74444473cd1972eb4aa2b4113
f6949dd1972f89e6b9efe2d7c87a17afa05d6b7e
fix: capturePage not resolving with hidden windows (#27883)
[ { "path": "docs/api/browser-window.md", "patch": "@@ -1370,7 +1370,7 @@ Returns `Boolean` - Whether the window's document has been edited.\n \n Returns `Promise<NativeImage>` - Resolves with a [NativeImage](native-image.md)\n \n-Captures a snapshot of the page within `rect`. Omitting `rect` will capture the...
2021-03-09T13:51:44
facebook/react
bd0a963445715f2963d4a9e3a0485e56cbe60653
a0d2d1e1e1830e35bf12174f3cc273231aa03063
Throw when `act` is used in production (#21686) Upgrades the deprecation warning to a runtime error. I did it this way instead of removing the export so the type is the same in both builds. It will get dead code eliminated regardless.
[ { "path": "fixtures/legacy-jsx-runtimes/setupTests.js", "patch": "@@ -33,16 +33,6 @@ function shouldIgnoreConsoleError(format, args) {\n // They are noisy too so we'll try to ignore them.\n return true;\n }\n- if (\n- format.indexOf(\n- 'act(...) is not supported in production...
2021-06-16T20:29:51
nodejs/node
5cb5422b6ff29018c915a497da0ce1a509e1d52c
ca096563e02acf79e572ea9eb7ba81722b1cb399
test: fix parsing test flags This removes replacing `_` with `-` in the flags defined. Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/48012 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/common/index.js", "patch": "@@ -82,7 +82,6 @@ function parseTestFlags(filename = process.argv[1]) {\n }\n return source\n .substring(flagStart, flagEnd)\n- .replace(/_/g, '-')\n .split(/\\s+/)\n .filter(Boolean);\n }\n@@ -98,9 +97,8 @@ if (process.argv.length === 2 &&\n ...
2023-05-17T06:24:07
vercel/next.js
8ee2d3f7e30de1795cd52b4308d9e4584d2154ca
e9428bba596a49811dbb2712614486c561dc1c26
fix: ensure lint worker errors aren't silenced (#75766) Errors thrown by the lint worker would only surface the error if `JEST_WORKER_ID` is present. This check was not reliably truthy in all cases (eg, when run with the vercel CLI, `JEST_WORKER_ID` wasn't present) which meant the build would fail with no helpful e...
[ { "path": "packages/next/src/lib/verify-typescript-setup.ts", "patch": "@@ -164,7 +164,7 @@ export async function verifyTypeScriptSetup({\n */\n \n // we are in a worker, print the error message and exit the process\n- if (process.env.JEST_WORKER_ID) {\n+ if (process.env.IS_NEXT_WORKER) {\n ...
2025-02-06T21:59:26
golang/go
c5430dc1d8d96cfd0c85a6d760262676d798a6a9
8659ad972f0f1fb389397cb35f810d9ccb36539f
regexp: allow patterns with no alternates to be one-pass Check whether a regex has any 'alt' instructions before rejecting it as one-pass. Previously `^abc` would run the backtrack matcher. I tried to make the comment match what the code does now. Updates #21463 ``` name old time/op ne...
[ { "path": "src/regexp/onepass.go", "patch": "@@ -465,12 +465,20 @@ func compileOnePass(prog *syntax.Prog) (p *onePassProg) {\n \t\tsyntax.EmptyOp(prog.Inst[prog.Start].Arg)&syntax.EmptyBeginText != syntax.EmptyBeginText {\n \t\treturn nil\n \t}\n-\t// every instruction leading to InstMatch must be EmptyEndT...
2024-05-27T16:55:02
electron/electron
46cfb347d7ebdbdf63d78a646edc58a5c4b1e8e6
f4e1a343b9e401f8bd5ac21f91e906cce2c6a74c
docs: `setWindowOpenHandler` should show object return (#28015) * Should use object return * Fix lint Co-authored-by: Cheng Zhao <github@zcbenz.com>
[ { "path": "docs/api/window-open.md", "patch": "@@ -83,9 +83,9 @@ const mainWindow = new BrowserWindow()\n \n mainWindow.webContents.setWindowOpenHandler(({ url }) => {\n if (url.startsWith('https://github.com/')) {\n- return true\n+ return { action: 'allow' }\n }\n- return false\n+ return { acti...
2021-03-08T00:56:07
nodejs/node
d2c4518ce65e48c1f32f435c1f06519723873f0c
c2ca4290f6ca0d68bbb5ad1fc68779267fda4745
doc: fix typo in binding functions According to usage(node::util::RegisterExternalReferences) of below line, namespace has to be `util`(not `utils`). PR-URL: https://github.com/nodejs/node/pull/48003 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Harshit...
[ { "path": "src/README.md", "patch": "@@ -432,7 +432,7 @@ with the utilities in `node_external_reference.h`, like this:\n \n ```cpp\n namespace node {\n-namespace utils {\n+namespace util {\n void RegisterExternalReferences(ExternalReferenceRegistry* registry) {\n registry->Register(GetHiddenValue);\n re...
2023-05-16T14:26:17
vercel/next.js
e9428bba596a49811dbb2712614486c561dc1c26
a41d94a171a11248436442349dcbae6990fbf2ff
fix: middleware not applied to _next/image (#75729) ## What? This addresses [#68217](https://github.com/vercel/next.js/issues/68217) where middleware, incorrectly, does not run for _next/image requests. We can confirm this is not correct behavior through the explanation of middleware matchers in [docs](https://...
[ { "path": "packages/next/src/server/next-server.ts", "patch": "@@ -888,6 +888,10 @@ export default class NextNodeServer extends BaseServer<\n if (!parsedUrl.pathname || !parsedUrl.pathname.startsWith('/_next/image')) {\n return false\n }\n+ // Ignore if its a middleware request\n+ if (ge...
2025-02-06T20:39:42
golang/go
b73875ff6cae1b9c790e9c8d4e99ecb7185f8cd9
88833c90457e02edf4641cf914512ab920380431
test: re-enabled fixedbugs/notinheap.go test By using cgo.Incomplete to represent not-in-heap type. While at it, also removing the type conversions tests, since they could not be present without //go:notinheap pragma. Fixes #54846 Change-Id: I5ee2a4b6498d4100c9770ed7bd62f52623e42526 Reviewed-on: https://go-review.g...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -1859,7 +1859,6 @@ var types2Failures = setOf(\n \t\"fixedbugs/issue20233.go\", // types2 reports two instead of one error (preference: 1.17 compiler)\n \t\"fixedbugs/issue20245.go\", // types2 reports two instead of one error (preference: 1...
2024-07-10T17:14:33
electron/electron
54cc68dd7a818a89dcea522282a819f7b49753fc
59432fe30ac4173ff0a9f13248b5f80468545f24
chore: fix lint
[ { "path": "shell/browser/electron_browser_client.cc", "patch": "@@ -30,6 +30,7 @@\n #include \"chrome/common/chrome_version.h\"\n #include \"components/net_log/chrome_net_log.h\"\n #include \"components/network_hints/common/network_hints.mojom.h\"\n+#include \"content/browser/site_instance_impl.h\"\n #inclu...
2021-03-06T00:54:18
nodejs/node
32691bdf7daf8dc0db0d178d0c75188ca3d259e6
f36461dc6a0a334cbe8e427788377826232f3e4f
doc: clarify CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED The error is not necessarily due to a client certificate engine. For example, the `privateKeyEngine` option might just as well cause this error and is independent of the client certificate. Also mention that this is likely due to a compile-time option of OpenSSL itself ...
[ { "path": "doc/api/errors.md", "patch": "@@ -861,8 +861,9 @@ size is reached when the context is created.\n \n ### `ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED`\n \n-A client certificate engine was requested that is not supported by the version\n-of OpenSSL being used.\n+An OpenSSL engine was requested (for exam...
2023-05-16T09:32:17
golang/go
864aa8644879983d903e59995e6a31c95c50e8ff
3f9360345cc1e3286abbb7bf5fbce50481a0bbbd
cmd/compile: run checkbce after fuseLate pass So the bounds check which are eliminated during late fuse pass could be detected correctly. Fixes #67329 Change-Id: Id7992fbb8c26e0d43e7db66a0a3a2c0d9ed937a8 Reviewed-on: https://go-review.googlesource.com/c/go/+/598635 Reviewed-by: Keith Randall <khr@golang.org> Reviewe...
[ { "path": "src/cmd/compile/internal/ssa/checkbce.go", "patch": "@@ -16,6 +16,9 @@ func checkbce(f *Func) {\n \t}\n \n \tfor _, b := range f.Blocks {\n+\t\tif b.Kind == BlockInvalid {\n+\t\t\tcontinue\n+\t\t}\n \t\tfor _, v := range b.Values {\n \t\t\tif v.Op == OpIsInBounds || v.Op == OpIsSliceInBounds {\n ...
2024-07-16T16:56:56
vercel/next.js
13bcbf0d7aa09ebd18cb1767eb4fda1ad861d20c
171a693962a91bf34ac52005965d78a77d572896
docs: follow up fix (#75760) This was wrong https://github.com/vercel/next.js/pull/75693
[ { "path": "docs/01-app/04-api-reference/04-functions/cacheTag.mdx", "patch": "@@ -94,7 +94,7 @@ export default async function submit() {\n - **Multiple Tags**: You can assign multiple tags to a single cache entry by passing an array to `cacheTag`.\n \n ```tsx\n-cacheTag(['tag-one', 'tag-two'])\n+cacheTag('t...
2025-02-06T19:53:56
facebook/react
03c5314b44dbf280f3008ce7f587e5055e76c6e2
7ec4c55971aad644616ca0b040f42410659fe802
[SSR2 Fixture] Update APIs (#21688)
[ { "path": "fixtures/ssr2/package.json", "patch": "@@ -15,8 +15,8 @@\n \"concurrently\": \"^5.3.0\",\n \"express\": \"^4.17.1\",\n \"nodemon\": \"^2.0.6\",\n- \"react\": \"0.0.0-cc4d24ab0\",\n- \"react-dom\": \"0.0.0-cc4d24ab0\",\n+ \"react\": \"18.0.0-alpha-7ec4c5597\",\n+ \"react-do...
2021-06-15T22:20:51
electron/electron
54bc71da3453b96c699efc9694ab8e385a2714f3
afb7d9f5508fc5c2d659f22c91f587d984e8fa84
chore: Add a condition to crashReporter deprecate log (#27953) * Add a condition to crashReporter deprecate log When developer set submitURL to '' crash reports will be saved at `...\AppData\Roaming\...\Crashpad\reports`, will not be uploaded to the server. So at this time `deprecate.log('Sending uncompressed c...
[ { "path": "lib/browser/api/crash-reporter.ts", "patch": "@@ -18,7 +18,7 @@ class CrashReporter {\n \n if (submitURL == null) throw new Error('submitURL is a required option to crashReporter.start');\n \n- if (!compress) {\n+ if (!compress && uploadToServer) {\n deprecate.log('Sending uncompr...
2021-03-05T01:13:17
nodejs/node
5b4c7bd78f4c6d76e5b2e8351f27a6c780540f9e
7116bc08d7ab94f488452a37985dd584a97e97d2
crypto: fix setEngine() when OPENSSL_NO_ENGINE set When OpenSSL is configured with OPENSSL_NO_ENGINE, setEngine() currently throws an internal error because the C++ binding does not export the relevant function, which causes _setEngine() to be undefined within JS. Instead, match the behavior of tls/secure-context.js ...
[ { "path": "lib/internal/crypto/util.js", "patch": "@@ -44,6 +44,7 @@ const normalizeHashName = require('internal/crypto/hashnames');\n const {\n hideStackFrames,\n codes: {\n+ ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED,\n ERR_CRYPTO_ENGINE_UNKNOWN,\n ERR_INVALID_ARG_TYPE,\n ERR_INVALID_ARG_VA...
2023-05-15T15:39:11
vercel/next.js
a69be6ca442df6ddc6767455f8ca88d5b0d44fe8
1dad3a675929fe6cb71be5d51f46289e80836a37
docs: Update README for experimental testmode (#75722) - Fix the `npm` command - Make it clear where to place test files - Was reported here: https://github.com/vercel/next.js/issues/71773 - Relevant Next.js code: https://github.com/vercel/next.js/blob/ae5026a0fa8cd67f434cf63cc1db7d7ee696c047/packages/next/src/e...
[ { "path": "packages/next/src/experimental/testmode/playwright/README.md", "patch": "@@ -35,7 +35,7 @@ import { defineConfig } from 'next/experimental/testmode/playwright'\n \n export default defineConfig({\n webServer: {\n- command: 'npm dev',\n+ command: 'npm run dev',\n url: 'http://localhost:...
2025-02-06T19:34:22
golang/go
0d5fc4e1f01f320d9ce8fd14393241ac09cde791
c18ff292959f18965ab6fa47d5dc7aeea1b2374f
cmd/go: fix TestNewReleaseRebuildsStalePackagesInGOPATH for runtime move CL 600436 moved runtime/internal/sys to internal/runtime/sys and updated TestNewReleaseRebuildsStalePackagesInGOPATH in part accordingly. This is the other part that's needed for it to pass. For #65355. Change-Id: I26cff96c15caf185a4ee2c8fb31ec...
[ { "path": "src/cmd/go/go_test.go", "patch": "@@ -957,17 +957,17 @@ func TestNewReleaseRebuildsStalePackagesInGOPATH(t *testing.T) {\n \t// now they all matter, so keep using sys.go.\n \trestore = addVar(sys, 1)\n \tdefer restore()\n-\ttg.wantStale(\"p1\", \"stale dependency: runtime/internal\", \"./testgo l...
2024-07-23T22:03:24
facebook/react
7ec4c55971aad644616ca0b040f42410659fe802
9212d994ba939f20a04220a61e9776b488381596
createRoot(..., {hydrate:true}) -> hydrateRoot(...) (#21687) This adds a new top level API for hydrating a root. It takes the initial children as part of its constructor. These are unlike other render calls in that they have to represent what the server sent and they can't be batched with other updates. I also c...
[ { "path": "packages/react-dom/index.classic.fb.js", "patch": "@@ -23,6 +23,7 @@ export {\n createPortal,\n createRoot,\n createRoot as unstable_createRoot, // TODO Remove once callsites use createRoot\n+ hydrateRoot,\n findDOMNode,\n flushSync,\n hydrate,", "additions": 1, "deletions": ...
2021-06-15T20:37:53
electron/electron
afb7d9f5508fc5c2d659f22c91f587d984e8fa84
d92bab0e29694ac9554b87fa29b1073b0dfe1d1f
fix: navigator.setAppBadge/clearAppBadge from a service worker (#27950)
[ { "path": "shell/browser/badging/badge_manager.cc", "patch": "@@ -47,6 +47,27 @@ void BadgeManager::BindFrameReceiver(\n std::move(context));\n }\n \n+void BadgeManager::BindServiceWorkerReceiver(\n+ content::RenderProcessHost* service_worker_process_host,\n+ const GURL...
2021-03-05T01:12:03
rust-lang/rust
1c7d3f0ff627e4e7a4587eb4b4de3eed158f6982
50db29bbd7a2704831ef0eff1f5502647dbb4ec9
resolve: Preserve binding scopes in ambiguity errors It allows to get rid of `AmbiguityErrorMisc` and `Flags`.
[ { "path": "Cargo.lock", "patch": "@@ -4574,7 +4574,6 @@ dependencies = [\n name = \"rustc_resolve\"\n version = \"0.0.0\"\n dependencies = [\n- \"bitflags\",\n \"indexmap\",\n \"itertools\",\n \"pulldown-cmark\",", "additions": 0, "deletions": 1, "language": "Unknown" }, { "path": "co...
2025-12-27T16:46:42
vercel/next.js
8dd358002baf4244c0b2e38b5bda496daf60dacb
aabe1883d33331d7949df4ece50c39dfe50ad419
[dev-overlay] fix: proceed to get runtime error when fails to fetch original stack frames (#75743) ### Why? When fetch fails to get the original stack frames, the process to get the Runtime Errors fails. The fetch will likely fail on Storybook stories. | Before | After | |--------|--------| | ![CleanShot 2025...
[ { "path": "packages/next/src/client/components/react-dev-overlay/internal/helpers/stack-frame.ts", "patch": "@@ -76,10 +76,27 @@ export async function getOriginalStackFrames(\n isEdgeServer: type === 'edge-server',\n isAppDirectory: isAppDir,\n }\n+\n const res = await fetch('/__nextjs_original-...
2025-02-06T17:18:23
facebook/react
dbe3363ccd125f89c25fea234031410408f0df09
101ea9f55cb4d5c671102bc49a45535af73c02b0
[Fizz] Implement Legacy renderToString and renderToNodeStream on top of Fizz (#21276) * Wire up DOM legacy build * Hack to filter extra comments for testing purposes * Use string concat in renderToString I think this might be faster. We could probably use a combination of this technique in the stream too to ...
[ { "path": "packages/react-client/src/forks/ReactFlightClientHostConfig.dom-legacy.js", "patch": "@@ -0,0 +1,12 @@\n+/**\n+ * Copyright (c) Facebook, Inc. and its affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree....
2021-06-14T19:54:30
nodejs/node
7116bc08d7ab94f488452a37985dd584a97e97d2
8cbc307c44865703ae6976de94ad3470d5f71518
test_runner: use v8.serialize instead of TAP PR-URL: https://github.com/nodejs/node/pull/47867 Fixes: https://github.com/nodejs/node/issues/44656 Fixes: https://github.com/nodejs/node/issues/47955 Fixes: https://github.com/nodejs/node/issues/47481 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig...
[ { "path": "doc/api/cli.md", "patch": "@@ -2321,7 +2321,8 @@ on unsupported platforms will not be fixed.\n ### `NODE_TEST_CONTEXT=value`\n \n If `value` equals `'child'`, test reporter options will be overridden and test\n-output will be sent to stdout in the TAP format.\n+output will be sent to stdout in th...
2023-05-15T14:27:45
golang/go
dbfa3cacc7a4178ff3b81c79f7678ac9d61c54ab
df009eead9c2d213bc9c6057f07d2c319f71b50b
cmd/compile: fix typing of atomic logical operations For atomic AND and OR operations on memory, we currently have two views of the op. One just does the operation on the memory and returns just a memory. The other does the operation on the memory and returns the old value (before having the logical operation done to ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules", "patch": "@@ -580,10 +580,10 @@\n (AtomicCompareAndSwap(32|64)Variant ...) => (LoweredAtomicCas(32|64)Variant ...)\n \n // Return old contents.\n-(AtomicAnd(64|32|8) ...) => (LoweredAtomicAnd(64|32|8) ...)\n-(AtomicOr(64|3...
2024-06-25T21:01:09
facebook/react
aecb3b6d114e8fafddf6982133737198e8ea7cb3
1a3f1afbd3cf815d4e55628cd7d84ef20171bab8
Deprecate ReactDOM.render and ReactDOM.hydrate (#21652) * Use existing test warning filter for server tests We have a warning filter for our internal tests to ignore warnings that are too noisy or that we haven't removed from our test suite yet: shouldIgnoreConsoleError. Many of our server rendering tests don'...
[ { "path": "fixtures/dom/src/__tests__/wrong-act-test.js", "patch": "@@ -101,9 +101,15 @@ it('warns when using the wrong act version - test + dom: render', () => {\n TestRenderer.act(() => {\n ReactDOM.render(<App />, document.createElement('div'));\n });\n- }).toWarnDev([\"It looks like you'r...
2021-06-09T20:46:55
nodejs/node
6bbf2a57fcf33266c5859497f8cc32e1389a358a
8b3777d0c82c01229e724d84586fdc472fd4deda
vm: fix crash when setting __proto__ on context's globalThis PR-URL: https://github.com/nodejs/node/pull/47939 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_contextify.cc", "patch": "@@ -530,7 +530,8 @@ void ContextifyContext::PropertySetterCallback(\n if (is_declared_on_sandbox &&\n ctx->sandbox()\n ->GetOwnPropertyDescriptor(context, property)\n- .ToLocal(&desc)) {\n+ .ToLocal(&desc) &&\n+ !desc->Is...
2023-05-15T09:24:15
electron/electron
ca75bca6677ff08549424cb97654e160f4cfa195
0b042d3b1ce327b821e6c24e330c654ce49a725d
chore: bump chromium to 90.0.4415.0 (master) (#27694) * chore: bump chromium in DEPS to 520c02b46668fc608927e0fcd79b6a90885a48bf * chore: bump chromium in DEPS to 90.0.4414.0 * resolve chromium conflicts * resolve v8 conflicts * fix node gn files * 2673502: Remove RenderViewCreated use from ExtensionHos...
[ { "path": ".circleci/config.yml", "patch": "@@ -1018,7 +1018,7 @@ step-minimize-workspace-size-from-checkout: &step-minimize-workspace-size-from-c\n name: Remove some unused data to avoid storing it in the workspace/cache\n command: |\n rm -rf src/android_webview\n- rm -rf src/ios\n+ ...
2021-03-04T17:27:05
vercel/next.js
aabe1883d33331d7949df4ece50c39dfe50ad419
4d21afa82a386f6f457f25bda885b474030fa99c
[DevOverlay] fix style regression (#75756) Lifts the style fix from #75718 into a separate PR. Fixes the feedback bar clipping the content: ![410278234-8a7d9d9e-b483-4019-bc8a-524e755b3dd7](https://github.com/user-attachments/assets/3dd90148-6835-4954-9341-ae10c3c14679) Co-authored-by: Jude Gao <jude.gao@verc...
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/dialog/styles.ts", "patch": "@@ -51,6 +51,7 @@ const styles = css`\n height: 100%;\n display: flex;\n flex-direction: column;\n+ position: relative;\n }\n \n /* Account for the footer height...
2025-02-06T16:51:26
facebook/react
1a3f1afbd3cf815d4e55628cd7d84ef20171bab8
e6be2d531d82be6a601abbd392e4615f90e1f87a
[React Native] Fabric get current event priority (#21553) * Call into Fabric to get current event priority Fix flow errors * Prettier * Better handle null and undefined cases * Remove optional chaining and use ?? operator * prettier-all * Use conditional ternary operator * prettier
[ { "path": "packages/react-native-renderer/src/ReactFabricHostConfig.js", "patch": "@@ -25,7 +25,10 @@ import invariant from 'shared/invariant';\n \n import {dispatchEvent} from './ReactFabricEventEmitter';\n \n-import {DefaultEventPriority} from 'react-reconciler/src/ReactEventPriorities';\n+import {\n+ De...
2021-06-08T16:26:21
nodejs/node
8b3777d0c82c01229e724d84586fdc472fd4deda
3ef17b635653d0f862a093a50d611b18577348c2
test_runner: add shorthands to `test` PR-URL: https://github.com/nodejs/node/pull/47909 Fixes: https://github.com/nodejs/node/issues/47897 Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "doc/api/test.md", "patch": "@@ -789,6 +789,9 @@ added:\n - v18.0.0\n - v16.17.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/47909\n+ description: Added the `skip`, `todo`, and `only` shorthands.\n - version:\n - v18.8.0\n - v16.18.0\n@@ -...
2023-05-15T05:23:22
electron/electron
0b042d3b1ce327b821e6c24e330c654ce49a725d
9b93750e5e5bfe52e9439c5b8318e240a47de2b2
test: fix contextIsolation value for later added test (#27998)
[ { "path": "spec-main/fixtures/apps/quit/main.js", "patch": "@@ -1,7 +1,13 @@\n const { app, BrowserWindow } = require('electron');\n \n app.once('ready', () => {\n- const w = new BrowserWindow({ show: false, webPreferences: { nodeIntegration: true } });\n+ const w = new BrowserWindow({\n+ show: false,\...
2021-03-04T16:22:32
rust-lang/rust
ea8f037c760f1eb0099521230c87318d028d8e49
5bcd472b8688437b4967bcba077c4089572a17ea
Fix compilation of cg_gcc with master feature disabled
[ { "path": "src/intrinsic/mod.rs", "patch": "@@ -23,16 +23,12 @@ use rustc_codegen_ssa::traits::{\n IntrinsicCallBuilderMethods, LayoutTypeCodegenMethods,\n };\n use rustc_middle::bug;\n-#[cfg(feature = \"master\")]\n-use rustc_middle::ty::layout::FnAbiOf;\n-use rustc_middle::ty::layout::LayoutOf;\n+use ...
2025-12-27T08:49:59
facebook/react
e6be2d531d82be6a601abbd392e4615f90e1f87a
6bbe7c3446c6ab986be39a678a75f6e2c27a5b52
Fix tag validation
[ { "path": "scripts/release/publish-commands/validate-tags.js", "patch": "@@ -19,7 +19,7 @@ const run = async ({cwd, packages, tags}) => {\n );\n const {version} = await readJson(packageJSONPath);\n const isExperimentalVersion = version.indexOf('experimental') !== -1;\n- if (version.indexOf('-') === 0...
2021-06-08T15:53:43
vercel/next.js
ad56554066f3163fabf26c5645b3f9eae7da54ba
84e75d11399efe08bdb9f7a1c5ccae8b451ede82
fix: work around setTimeout memory leak, improve wrappers (#75727) Potential fix for a leak reported in #74855 on older node versions (see [comment](https://github.com/vercel/next.js/issues/74855#issuecomment-2638334820)). ### Background When running middleware (or other edge functions) in `next start`, we wra...
[ { "path": "packages/next/src/server/web/sandbox/resource-managers.ts", "patch": "@@ -1,10 +1,10 @@\n-abstract class ResourceManager<T, K> {\n+abstract class ResourceManager<T, Args> {\n private resources: T[] = []\n \n- abstract create(resourceArgs: K): T\n+ abstract create(resourceArgs: Args): T\n ab...
2025-02-06T15:52:43
golang/go
df009eead9c2d213bc9c6057f07d2c319f71b50b
b0f7be3cfa1ee5fbfe46590475861677cc9514fa
cmd/cgo: error on multiple incompatible function declarations When there are multiple declarations of a function, ensure that those declarations at least agree on the size/alignment of arguments and return values. It's hard to be stricter given existing code and situations where arguments differ only by typedefs. For...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -4,3 +4,9 @@\n \n ### Cgo {#cgo}\n \n+Cgo currently refuses to compile calls to a C function which has multiple\n+incompatible declarations. For instance, if `f` is declared as both `void f(int)`\n+and `void f(double)`, cgo will report an error instead of possib...
2024-05-30T02:37:43
nodejs/node
3ef17b635653d0f862a093a50d611b18577348c2
b270984d2a87b77555e3edf78413862e4dc6ec64
src: stop copying code cache, part 2 This removes more copies of the code cache data. First: for the builtin snapshot, we were copying the code cache to create a `std::vector<uint8_t>`. This was slowing down static intialization. Change it to use a good old `uint8_t*` and `size_t` rather than a vector. For the case o...
[ { "path": "src/node_builtins.cc", "patch": "@@ -154,17 +154,6 @@ BuiltinLoader::BuiltinCategories BuiltinLoader::GetBuiltinCategories() const {\n return builtin_categories;\n }\n \n-const ScriptCompiler::CachedData* BuiltinLoader::GetCodeCache(\n- const char* id) const {\n- RwLock::ScopedReadLock lock...
2023-05-15T04:37:24
rust-lang/rust
aeac6cb2d65499eb4eb541b66dbf292ffe93d770
cb23b54eb144c5d6258e437cc690c82e78468bc8
Fix compilation of cg_gcc with master feature disabled
[ { "path": "compiler/rustc_codegen_gcc/src/intrinsic/mod.rs", "patch": "@@ -23,16 +23,12 @@ use rustc_codegen_ssa::traits::{\n IntrinsicCallBuilderMethods, LayoutTypeCodegenMethods,\n };\n use rustc_middle::bug;\n-#[cfg(feature = \"master\")]\n-use rustc_middle::ty::layout::FnAbiOf;\n-use rustc_middle::t...
2025-12-27T08:49:59
electron/electron
360d1b2bfdfb45ceecd1555165851a1301ba711e
86e220b14df22c5f6f4384cc887b8c0fee405bc1
fix: offset browserview drag regions on macOS (#27952)
[ { "path": "shell/browser/native_browser_view_mac.mm", "patch": "@@ -297,7 +297,6 @@ - (void)drawDebugRect:(NSRect)aRect {\n NSView* web_view = web_contents->GetNativeView().GetNativeNSView();\n NSView* inspectable_view = iwc_view->GetNativeView().GetNativeNSView();\n NSView* window_content_view = insp...
2021-03-03T18:37:03
facebook/react
5aa0c5671fdddc46092d46420fff84a82df558ac
0eea5772486318c5b2922c8b36680cf4744615d6
Fix Issue with Undefined Lazy Imports By Refactoring Lazy Initialization Order (#21642) * Add a DEV warning for common case * Don't set Pending flag before we know it's a promise * Move default exports extraction to render phase This is really where most unwrapping happen. The resolved promise is the module ...
[ { "path": "packages/react-reconciler/src/__tests__/ReactLazy-test.internal.js", "patch": "@@ -178,13 +178,13 @@ describe('ReactLazy', () => {\n \n await Promise.resolve();\n \n+ expect(Scheduler).toFlushAndThrow('Element type is invalid');\n if (__DEV__) {\n- expect(console.error).toHaveBeen...
2021-06-07T21:47:18
vercel/next.js
2da625932c992cc2f34f9b061bdc436a4b3b82e7
f37a45455ecce5ba31f9df7ae27b1a078bf96b7a
[Turbopack] use new backend in next-build-test (#75724) ### What? * use new backend in next-build-test * apply effects in next-build-test * fix Dockerfile
[ { "path": ".devcontainer/Dockerfile", "patch": "@@ -28,5 +28,4 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \\\n # RUN su node -c \"npm install -g <your-package-list-here>\"\n \n # Enable pnpm\n-RUN npm i -g corepack@latest\n RUN corepack enable pnpm\n\\ No newline at end of file", "ad...
2025-02-06T14:13:05
golang/go
b0f7be3cfa1ee5fbfe46590475861677cc9514fa
f66db499769002f1f804f52234b7c3e5917bbad6
cmd/compile: don't treat an InlMark as a read during deadstore An InlMark "read" can't make an otherwise dead store live. Without this CL, we sometimes zero an object twice in succession because we think there is a reader in between. Kind of challenging to make a test for this. The second zeroing has the same instruc...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -59,6 +59,10 @@ func dse(f *Func) {\n \t\t\t\t\t\tcontinue\n \t\t\t\t\t}\n \t\t\t\t}\n+\t\t\t\tif v.Op == OpInlMark {\n+\t\t\t\t\t// Not really a use of the memory. See #67957.\n+\t\t\t\t\tcontinue\n+\t\t\t\t}\n \t\t\t\tfor _, a := range v....
2024-06-13T03:24:44
nodejs/node
d27301df44813480898837c0c7d666fdd3763de2
9f3aacbc27ac3f377d225ecd51aecb0f3de12566
tools: debug log for nghttp3 PR-URL: https://github.com/nodejs/node/pull/47992 Refs: https://github.com/nodejs/node/pull/47576 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: James M Snell <jasnell@g...
[ { "path": "tools/dep_updaters/update-nghttp3.sh", "patch": "@@ -20,6 +20,8 @@ NGHTTP3_VERSION_H=\"$DEPS_DIR/ngtcp2/nghttp3/lib/includes/nghttp3/version.h\"\n \n CURRENT_VERSION=$(grep \"#define NGHTTP3_VERSION\" \"$NGHTTP3_VERSION_H\" | sed -n \"s/^.*VERSION \\\"\\(.*\\)\\\"/\\1/p\")\n \n+echo \"Comparing $...
2023-05-14T15:20:40
facebook/react
0eea5772486318c5b2922c8b36680cf4744615d6
0706162ba7dff8aeb4bf824473f423946c0168c9
Fix typo in comment (accumlated → accumulated) (#21637) Co-authored-by: HuJiajie <hujj@firstgrid.cn>
[ { "path": "packages/react-reconciler/src/ReactFiberBeginWork.new.js", "patch": "@@ -557,7 +557,7 @@ function updateSimpleMemoComponent(\n // The pending lanes were cleared at the beginning of beginWork. We're\n // about to bail out, but there might be other lanes that weren't\n // in...
2021-06-07T12:52:49
electron/electron
bf7e445883cdfe5799ab006b55361c5b7fa745bf
ede86119371970dd7ff303f1f475f571ebaa41d7
fix: warning when worldSafeExecuteJavaScript is disabled (#27928)
[ { "path": "lib/renderer/api/web-frame.ts", "patch": "@@ -48,8 +48,10 @@ class WebFrame extends EventEmitter {\n }\n }\n \n-const { hasSwitch } = process._linkedBinding('electron_common_command_line');\n-const worldSafeJS = hasSwitch('world-safe-execute-javascript') && hasSwitch('context-isolation');\n+con...
2021-03-02T17:45:27
vercel/next.js
f37a45455ecce5ba31f9df7ae27b1a078bf96b7a
7cb21cbef503aee3027ce66476963760aa606ffd
fix: enable new overlay properly when env var is set (#75747)
[ { "path": "packages/next/src/build/webpack/plugins/define-env-plugin.ts", "patch": "@@ -288,11 +288,7 @@ export function getDefineEnv({\n }\n : undefined),\n 'process.env.__NEXT_EXPERIMENTAL_NEW_DEV_OVERLAY':\n- // When `__NEXT_EXPERIMENTAL_NEW_DEV_OVERLAY` is set on CI,\n- // we...
2025-02-06T14:05:56
rust-lang/rust
fc1cb48d3b7e2fbf02bf9f98040b2af908cf30dc
a9da655c9b8c28105a5c8e61c35b114fb3c666ed
Fix tests that relied on the default variance to be invariant And now it changed to bivariant.
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/traits.rs", "patch": "@@ -851,7 +851,7 @@ struct S;\n trait Trait<T> {}\n impl Trait<&str> for S {}\n \n-struct O<T>;\n+struct O<T>(T);\n impl<U, T: Trait<U>> O<T> {\n fn foo(&self) -> U { loop {} }\n }\n@@ -1492,7 +1492,7 @@ fn dyn_trait_in_imp...
2025-12-27T18:06:24
golang/go
fe87b586c036ae7ad25e22896cb90f95421545fe
78c0ea5df7e864575c8fcae8528572c5284c0435
runtime: remove VZEROUPPER in asyncPreempt on darwin/amd64 Updates #37174 Updates #49233 Fixes #41152 Change-Id: I35b148c8bc132f02dd6a5a6bb48b711fb5c5df9e Reviewed-on: https://go-review.googlesource.com/c/go/+/560955 Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> LUCI-...
[ { "path": "src/runtime/mkpreempt.go", "patch": "@@ -264,19 +264,6 @@ func genAMD64() {\n \n \tl.save()\n \n-\t// Apparently, the signal handling code path in darwin kernel leaves\n-\t// the upper bits of Y registers in a dirty state, which causes\n-\t// many SSE operations (128-bit and narrower) become much...
2024-02-03T03:47:28
nodejs/node
9f3aacbc27ac3f377d225ecd51aecb0f3de12566
abb1c45af774ae3caaa449ddcbfe44143a98e9c7
url: add value argument to has and delete methods The change aims to add value argument to two methods of URLSearchParams class i.e the has method and the delete method. For has method, if value argument is provided, then use it to check for presence. For delete method, if value argument provided, use it to delete. F...
[ { "path": "benchmark/common.js", "patch": "@@ -360,8 +360,9 @@ function getUrlData(withBase) {\n for (const item of data) {\n if (item.failure || !item.input) continue;\n if (withBase) {\n- result.push([item.input, item.base]);\n- } else if (item.base !== 'about:blank') {\n+ // item.b...
2023-05-14T14:35:19
facebook/react
0706162ba7dff8aeb4bf824473f423946c0168c9
9d17b562ba427adb1bced98f4231406ec573c422
Fix typo in comment (environement → environment) (#21635)
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js", "patch": "@@ -427,7 +427,7 @@ export function requestUpdateLane(fiber: Fiber): Lane {\n return updateLane;\n }\n \n- // This update originated outside React. Ask the host environement for an\n+ // This update originated outside Rea...
2021-06-07T12:52:42
electron/electron
ede86119371970dd7ff303f1f475f571ebaa41d7
ed8e57e424d69cfa34c3ec113fd9ef69457410d3
fix: check web_contents() for destroyed WebContents (#27815)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1077,7 +1077,7 @@ content::WebContents* WebContents::OpenURLFromTab(\n return nullptr;\n }\n \n- if (!weak_this)\n+ if (!weak_this || !web_contents())\n return nullptr;\n \n content::NavigationController::LoadURLParams l...
2021-03-02T17:38:56
rust-lang/rust
a9da655c9b8c28105a5c8e61c35b114fb3c666ed
31b0cb9484e261384cfeeae34bc6f9908c3f552e
Bring back fixpoint iteration for variance
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/variance.rs", "patch": "@@ -36,9 +36,8 @@ pub(crate) fn variances_of(db: &dyn HirDatabase, def: GenericDefId) -> Variances\n \n #[salsa::tracked(\n returns(ref),\n- // cycle_fn = crate::variance::variances_of_cycle_fn,\n- // cycle_initial = crat...
2025-12-27T17:57:42
golang/go
78c0ea5df7e864575c8fcae8528572c5284c0435
5f073d361f96e38bd31cf9274769bd4d0f5e0a5a
cmd/link: raise pe export cap to 65535 fixes #68405 Change-Id: I043e16f43daa336005695f82a53f9a52cd770656 GitHub-Last-Rev: 69f1ae8b648083154c64f0679b7bd97a118607e9 GitHub-Pull-Request: golang/go#68409 Reviewed-on: https://go-review.googlesource.com/c/go/+/597956 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-...
[ { "path": "src/cmd/link/internal/ld/pe.go", "patch": "@@ -16,6 +16,7 @@ import (\n \t\"encoding/binary\"\n \t\"fmt\"\n \t\"internal/buildcfg\"\n+\t\"math\"\n \t\"sort\"\n \t\"strconv\"\n \t\"strings\"\n@@ -307,7 +308,7 @@ var (\n \tpe64 int\n \tdr *Dll\n \n-\tdexport = make([]loader.Sym, 0, ...
2024-07-16T17:43:18
facebook/react
9d17b562ba427adb1bced98f4231406ec573c422
b610fec00cef1fb0a33ea353ed81fd138b961785
Fix typo in comment (satsify → satisfy) (#21629)
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js", "patch": "@@ -1803,7 +1803,7 @@ function commitRootImpl(root, renderPriorityLevel) {\n \n // Check if there are any effects in the whole tree.\n // TODO: This is left over from the effect list implementation, where we had\n- // to che...
2021-06-05T18:02:15
nodejs/node
cdd20cfd71b2cf60d6016fd0e80efd2d06d7ba53
226573b6a1de1a7f0873c3adef22fa55ca77c256
esm: do not use `'beforeExit'` on the main thread PR-URL: https://github.com/nodejs/node/pull/47964 Fixes: https://github.com/nodejs/node/issues/47929 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/modules/esm/hooks.js", "patch": "@@ -521,14 +521,6 @@ class HooksProxy {\n }\n }\n \n- #beforeExitHandler = () => {\n- debug('beforeExit main thread', this.#lock, this.#numberOfPendingAsyncResponses);\n- if (this.#numberOfPendingAsyncResponses !== 0) {\n- // The wor...
2023-05-14T05:32:08
electron/electron
186301e12636c9a7373179810cd84ba1c6f973a6
2d0ad0b96aaee079f30912296c5ef460fd0a1180
feat: enable context isolation by default (#26890) * feat: enable context isolation by default * chore: set default in ctx iso getter * spec: make all specs work with the new contextIsolation default * spec: fix affinity specs * spec: update tests for new ctx iso default * spec: update tests for new ctx...
[ { "path": "shell/browser/web_contents_preferences.cc", "patch": "@@ -127,16 +127,7 @@ WebContentsPreferences::WebContentsPreferences(\n SetDefaultBoolIfUndefined(options::kWebviewTag, false);\n SetDefaultBoolIfUndefined(options::kSandbox, false);\n SetDefaultBoolIfUndefined(options::kNativeWindowOpen,...
2021-03-01T21:52:29
rust-lang/rust
17f6652641c86b2e199dc4639ed9585291fabf61
62e17e920cd577440c1a91ebf665d6b9b5e0a453
Fix for uninhabited llvm intrinsic return type
[ { "path": "compiler/rustc_codegen_ssa/src/mir/block.rs", "patch": "@@ -1040,8 +1040,10 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {\n && let Some(name) = bx.tcx().codegen_fn_attrs(instance.def_id()).symbol_name\n && name.as_str().starts_with(\"llvm.\")\n...
2025-11-17T18:29:05
facebook/react
b610fec00cef1fb0a33ea353ed81fd138b961785
23c80959ad79898877e76a61dffbe8c02ec3853e
fix comments: expiration time -> lanes (#21551)
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js", "patch": "@@ -389,7 +389,7 @@ export function requestUpdateLane(fiber: Fiber): Lane {\n workInProgressRootRenderLanes !== NoLanes\n ) {\n // This is a render phase update. These are not officially supported. The\n- // old beha...
2021-06-05T14:19:40
golang/go
5f073d361f96e38bd31cf9274769bd4d0f5e0a5a
b8f83e22703ee23d49d95154449ce7066402d5c9
cmd/trace: merge testdata debugging tools into the trace tool Currently internal/trace/testdata contains three debugging tools which were written early in the trace rewrite for debugging. Two of these are completely redundant with go tool trace -d=1 and go tool trace -d=2. The only remaining one landed in the last cyc...
[ { "path": "src/cmd/trace/main.go", "patch": "@@ -7,9 +7,11 @@ package main\n import (\n \t\"cmd/internal/browser\"\n \t\"cmd/internal/telemetry/counter\"\n+\t\"cmp\"\n \t\"flag\"\n \t\"fmt\"\n \t\"internal/trace\"\n+\t\"internal/trace/event\"\n \t\"internal/trace/raw\"\n \t\"internal/trace/traceviewer\"\n \...
2024-06-21T15:32:29
nodejs/node
8115c2f46cba96c0b4e1dc6294f75d5753a6fd84
5ec0f39a7a565b5a82fe90ba9f095731a7b8b005
doc: update measure memory rejection information If in case context is unable to allocate a promise then `ERR_CONTEXT_NOT_INITIALIZED` error will be thrown (as promise rejection) in the vm measureMemory call. PR-URL: https://github.com/nodejs/node/pull/41639 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Revi...
[ { "path": "doc/api/vm.md", "patch": "@@ -1143,8 +1143,9 @@ current V8 isolate, or the main context.\n exits before the next GC). With eager execution, the GC will be started\n right away to measure the memory.\n **Default:** `'default'`\n-* Returns: {Promise} If the memory is successfully measur...
2023-05-13T18:28:25
rust-lang/rust
107c3f469c08aa2247100384305116e3e6b99c42
8d405ccb907760268bf2d30134983938750ec979
fix rustfmt on `const impl Ty {}`
[ { "path": "src/items.rs", "patch": "@@ -971,7 +971,7 @@ fn format_impl_ref_and_type(\n result.push_str(format_defaultness(of_trait.defaultness));\n result.push_str(format_safety(of_trait.safety));\n } else {\n- result.push_str(format_constness_right(*constness));\n+ result....
2025-12-24T19:42:14
electron/electron
2d0ad0b96aaee079f30912296c5ef460fd0a1180
e5a9a1ebd7cd4847389e0cf2b23a4c89819462f2
fix: make TouchBarPopover and TouchBarGroup work (#27901) * fix: use correct `orderedItem` touchbar property * fix: correct parent in touchbar group and popover * fix: preserve property hook order
[ { "path": "lib/browser/api/touch-bar.ts", "patch": "@@ -7,8 +7,8 @@ const hiddenProperties = Symbol('hidden touch bar props');\n const extendConstructHook = (target: any, hook: Function) => {\n const existingHook = target._hook;\n target._hook = function () {\n- hook.call(this);\n if (existingHoo...
2021-03-01T21:34:00
facebook/react
23c80959ad79898877e76a61dffbe8c02ec3853e
2568fecc383955fbaf8e0501702c25a12e1a0320
Fix CSS
[ { "path": "fixtures/ssr2/public/main.css", "patch": "@@ -2,6 +2,10 @@ body {\n font-family: system-ui, sans-serif;\n }\n \n+* {\n+ box-sizing: border-box;\n+}\n+\n nav {\n padding: 20px;\n }", "additions": 4, "deletions": 0, "language": "CSS" } ]
2021-06-04T22:12:01
vercel/next.js
a997f43c38ce6d36729d8827d1ffe0e6b93529cf
931f9b3c58a0feff0f96f79cd70da68c21dc4701
Turbopack: add test for local tasks in traits (#75708) <!-- 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 you're making: ## For Contribut...
[ { "path": "turbopack/crates/turbo-tasks-testing/tests/local_tasks.rs", "patch": "@@ -15,9 +15,21 @@ async fn test_local_task_id() -> Result<()> {\n assert!(local_vc.is_local());\n assert_eq!(*local_vc.await.unwrap(), *current_task_for_testing());\n \n+ let local_trait_vc = Foo {}.cell...
2025-02-06T12:58:43
golang/go
b8f83e22703ee23d49d95154449ce7066402d5c9
c4a595cf294558579ab6342f1628ad37a7a4221c
os: check relative paths in UserConfigDir and UserCacheDir Return errors by UserConfigDir and UserCacheDir when XDG environment variables contain relative paths. Fixes #68470 Change-Id: Ib36b56d73b066e002023be55ecfe74d5c0eedb15 GitHub-Last-Rev: c03f371a042c475a6f3f2259b06b140ade511404 GitHub-Pull-Request: golang/go#...
[ { "path": "src/os/file.go", "patch": "@@ -472,8 +472,8 @@ func TempDir() string {\n // On Windows, it returns %LocalAppData%.\n // On Plan 9, it returns $home/lib/cache.\n //\n-// If the location cannot be determined (for example, $HOME is not defined),\n-// then it will return an error.\n+// If the locatio...
2024-07-17T11:44:35
rust-lang/rust
cf8d0c82dc2e3de67d29a09389dbf035c5723c57
4f14395c37db4c1be874e6b0ace6721674223c22
fix rustfmt on `const impl Ty {}`
[ { "path": "src/tools/rustfmt/src/items.rs", "patch": "@@ -971,7 +971,7 @@ fn format_impl_ref_and_type(\n result.push_str(format_defaultness(of_trait.defaultness));\n result.push_str(format_safety(of_trait.safety));\n } else {\n- result.push_str(format_constness_right(*constness));...
2025-12-24T19:42:14
facebook/react
2568fecc383955fbaf8e0501702c25a12e1a0320
fccfc248939dcaadb55cfdb0d8f5118251c8ad80
Tweak fixture
[ { "path": "fixtures/ssr2/server/delays.js", "patch": "@@ -15,4 +15,4 @@ exports.API_DELAY = 2000;\n exports.ABORT_DELAY = 10000;\n \n // How long serving the JS bundles is delayed.\n-exports.JS_BUNDLE_DELAY = 5000;\n+exports.JS_BUNDLE_DELAY = 4000;", "additions": 1, "deletions": 1, "language": "...
2021-06-04T22:10:02
nodejs/node
21a2e901e7c16be8e1f97c374a181a40bd6bef38
e74b84e458e40b8d95b495bad5ede7766820725f
doc: fix broken link to TC39 import attributes proposal The import assertion proposal has been renamed and the old URL does not redirect to the new one. So let's update our URL to point to the import attributes proposal, which is what import assertions have been renamed to. PR-URL: https://github.com/nodejs/node/pull...
[ { "path": "doc/api/vm.md", "patch": "@@ -1588,7 +1588,7 @@ are not controllable through the timeout either.\n [`Error`]: errors.md#class-error\n [`URL`]: url.md#class-url\n [`eval()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval\n-[`optionsExpression`]: https://tc39...
2023-05-13T11:36:31
vercel/next.js
931f9b3c58a0feff0f96f79cd70da68c21dc4701
1fc0262c6cf8074400e98084bf70ef4878d20385
[dev-overlay] fix: color contrast for terminal (#75736) ### Why? The color contrast of the terminal violated the WCAG standard. Example: | Yellow | Blue | |--------|--------| | ![CleanShot 2025-02-06 at 20 01 40](https://github.com/user-attachments/assets/f4e6407a-adea-471f-8a8f-4c2c3623845c) | ![CleanShot ...
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/styles/colors.tsx", "patch": "@@ -6,6 +6,28 @@ export function Colors() {\n <style>\n {css`\n :host {\n+ ${\n+ // CAUTION: THIS IS A WORKAROUND!\n+ // For now, we use @bab...
2025-02-06T12:24:05
golang/go
601ea46a5308876e4460a1662718a9cd2c6ac2e3
20e18c95504b047c5ba82d252318de625fabfa70
runtime: add ERMS-based memmove support for modern CPU platforms The current memmove implementation uses REP MOVSB to copy data larger than 2KB when the useAVXmemmove global variable is false and the CPU supports the ERMS feature. This feature is currently only enabled on CPUs in the Sandy Bridge (Client) , Sandy Bri...
[ { "path": "src/internal/cpu/cpu.go", "patch": "@@ -37,6 +37,7 @@ var X86 struct {\n \tHasBMI1 bool\n \tHasBMI2 bool\n \tHasERMS bool\n+\tHasFSRM bool\n \tHasFMA bool\n \tHasOSXSAVE bool\n \tHasPCLMULQDQ bool", "additions": 1, "deletions": 0, "language": "Go" }, { ...
2024-07-02T04:02:12
facebook/react
fccfc248939dcaadb55cfdb0d8f5118251c8ad80
cc4d24ab0b1b70c6d30e1131e496c59ff9f85d5f
[Fizz] Add another fixture (#21627)
[ { "path": "fixtures/ssr2/package.json", "patch": "@@ -0,0 +1,53 @@\n+{\n+ \"name\": \"react-ssr\",\n+ \"version\": \"0.1.0\",\n+ \"private\": true,\n+ \"engines\": {\n+ \"node\": \">=14.9.0\"\n+ },\n+ \"license\": \"MIT\",\n+ \"dependencies\": {\n+ \"@babel/core\": \"7.14.3\",\n+ \"@babel/re...
2021-06-04T22:04:06
nodejs/node
2dd6d76c898c930d0f7d9386bde4b6dec37b7a49
7984af69a090dd6d1f60ffe7e194d5e69bce0c20
doc: fix broken link PR-URL: https://github.com/nodejs/node/pull/47953 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -2590,7 +2590,7 @@ done\n [`--require`]: #-r---require-module\n [`Atomics.wait()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/wait\n [`Buffer`]: buffer.md#class-buffer\n-[`CRYPTO_secure_malloc_init`]: https://www.openssl...
2023-05-12T17:06:45
vercel/next.js
1fc0262c6cf8074400e98084bf70ef4878d20385
d2711d22fb719131d63cbce05a6306917f3626ea
add script for quickly updating error codes (#75690)
[ { "path": "package.json", "patch": "@@ -67,6 +67,7 @@\n \"build-turbopack-cli\": \"cargo build -p turbopack-cli --release\",\n \"sweep\": \"node scripts/sweep.cjs\",\n \"check-error-codes\": \"node packages/next/check-error-codes.js\",\n+ \"update-error-codes\": \"cd packages/next && pnpm tas...
2025-02-06T11:04:43
golang/go
20e18c95504b047c5ba82d252318de625fabfa70
afe0e600548c97338474a83c9665be45cccfb045
unicode/utf8: AppendRune and EncodeRune performance improvement - Prefer the evaluation of the valid higher byte-width runes branches over the one for invalid ones - Avoid the evaluation of the bytes of the RuneError constant, and instead hard code its byte values - EncodeRune only: inline for fast handling of ASCII ...
[ { "path": "src/unicode/utf8/utf8.go", "patch": "@@ -61,6 +61,12 @@ const (\n \ts7 = 0x44 // accept 4, size 4\n )\n \n+const (\n+\truneErrorByte0 = t3 | (RuneError >> 12)\n+\truneErrorByte1 = tx | (RuneError>>6)&maskx\n+\truneErrorByte2 = tx | RuneError&maskx\n+)\n+\n // first is information about the first ...
2024-06-26T01:15:16
facebook/react
46926993fc435e9ba7dd03f791ded05e32897b0d
e0d9b289998c66d2e4fb75582b9e107054e4e0a4
Fix typo in bridge.js (#21621)
[ { "path": "packages/react-devtools-shared/src/bridge.js", "patch": "@@ -238,7 +238,7 @@ type FrontendEvents = {|\n // but the new frontend still dispatches them (in case older backends are listening to them instead).\n //\n // Note that this approach does no support the combination of a newer backend ...
2021-06-04T15:42:09
vercel/next.js
d2711d22fb719131d63cbce05a6306917f3626ea
5fa487a154537f0b7f65306efacd0dd844f58e65
Invalidator: don’t call invalidate at all if there’s nothing to invalidate (#75706) No behavior changes in this PR, just a small adjustment since while debugging it was surprising that `invalidate` was called even though it was a no-op with an empty array. Previously, `invalidate` would unconditionally get called aft...
[ { "path": "packages/next/src/server/dev/on-demand-entry-handler.ts", "patch": "@@ -306,7 +306,10 @@ class Invalidator {\n this.rebuildAgain.delete(key)\n }\n }\n- this.invalidate(rebuild)\n+\n+ if (rebuild.length > 0) {\n+ this.invalidate(rebuild)\n+ }\n }\n \n public wil...
2025-02-05T23:56:36
nodejs/node
7984af69a090dd6d1f60ffe7e194d5e69bce0c20
78123275c2561260368eeebaa84b805830d189f1
worker: support more cases when (de)serializing errors - error.cause is potentially an error, so is now handled recursively - best effort to serialize thrown symbols - handle thrown object with custom inspect PR-URL: https://github.com/nodejs/node/pull/47925 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com...
[ { "path": "lib/internal/error_serdes.js", "patch": "@@ -13,19 +13,31 @@ const {\n ObjectGetOwnPropertyNames,\n ObjectGetPrototypeOf,\n ObjectKeys,\n+ ObjectPrototypeHasOwnProperty,\n ObjectPrototypeToString,\n RangeError,\n ReferenceError,\n SafeSet,\n+ StringFromCharCode,\n+ StringPrototyp...
2023-05-12T11:46:32
electron/electron
e5a9a1ebd7cd4847389e0cf2b23a4c89819462f2
c30484ce13f785d11d204dfb2c9bdd8631534541
fix: ensure owner window valid (#27786)
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -1118,7 +1118,7 @@ void BaseWindow::ResetBrowserViews() {\n // reset if the owner window is *this* window.\n if (browser_view->web_contents()) {\n auto* owner_window = browser_view->web_contents()->owner_window();\n-...
2021-03-01T21:26:23
golang/go
afe0e600548c97338474a83c9665be45cccfb045
e061fb89e8c44d564f284d127c7790ac98ce8b4e
cmd/compile: give function position on function-too-big error Update #67916 Change-Id: Iec3603c136b30ff6f760783c175eeb7e6ce139ec Reviewed-on: https://go-review.googlesource.com/c/go/+/591675 Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/cmd/compile/internal/bitvec/bv.go", "patch": "@@ -8,6 +8,7 @@ import (\n \t\"math/bits\"\n \n \t\"cmd/compile/internal/base\"\n+\t\"cmd/internal/src\"\n )\n \n const (\n@@ -33,11 +34,11 @@ type Bulk struct {\n \tnword int32\n }\n \n-func NewBulk(nbit int32, count int32) Bulk {\n+func NewBulk(...
2024-06-10T16:52:33
facebook/react
e0d9b289998c66d2e4fb75582b9e107054e4e0a4
1b7b3592f4713b3a53709554aefd1d20e9a0a6a5
[Fizz] Minor Fixes for Warning Parity (#21618)
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerLifecycles-test.js", "patch": "@@ -115,7 +115,9 @@ describe('ReactDOMServerLifecycles', () => {\n }\n }\n \n- ReactDOMServer.renderToString(<Component />);\n+ expect(() => ReactDOMServer.renderToString(<Component />)).toErrorDev(\n+ ...
2021-06-03T23:54:31
nodejs/node
6191dcf343360f2bc7dcf59ad83320296d7af023
745083abb4a73ba1f5a3441db706bdfdeaed2243
doc: remove broken link Closes: https://github.com/nodejs/node/issues/47940 PR-URL: https://github.com/nodejs/node/pull/47942 Fixes: https://github.com/nodejs/node/issues/47940 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/buffer.md", "patch": "@@ -189,8 +189,8 @@ The following legacy character encodings are also supported:\n better choice when encoding or decoding ASCII-only text. It is only provided\n for legacy compatibility.\n \n-* `'binary'`: Alias for `'latin1'`. See [binary strings][] for more ba...
2023-05-11T23:09:17
electron/electron
11d94bb9ab4fb2c4faebd4b0f0764d2a472e9451
a9b25dda853b87a1d7bd170cce2dd8eb7df63c39
build: update docker images to node 14 (#27915) * build: update docker images to node 14 * chore: update again to fix dbus
[ { "path": ".circleci/config.yml", "patch": "@@ -69,7 +69,7 @@ parameters:\n # Build machines configs.\n docker-image: &docker-image\n docker:\n- - image: electron.azurecr.io/build:4cec2c5ab66765caa724e37bae2bffb9b29722a5\n+ - image: electron.azurecr.io/build:6555a80939fb4c3ddf9343b3f140e573f40de225\...
2021-03-01T11:45:20
vercel/next.js
ae5026a0fa8cd67f434cf63cc1db7d7ee696c047
1eb708adcc510124b898997ec116113387e8fd59
Unused `searchParams` in `"use cache"` page should not cause dynamic (#75662) When `dynamicIO` is not enabled, and only the standalone `useCache` experimental flag is enabled, we can not encode `searchParams` as hanging promises. To still avoid unused search params from making a page dynamic (due to the `searchParams`...
[ { "path": "packages/next/errors.json", "patch": "@@ -631,5 +631,6 @@\n \"630\": \"Invariant (SlowModuleDetectionPlugin): Module is recorded after the report is generated. This is a Next.js internal bug.\",\n \"631\": \"Invariant (SlowModuleDetectionPlugin): Circular dependency detected in module graph. ...
2025-02-05T21:17:19
golang/go
e061fb89e8c44d564f284d127c7790ac98ce8b4e
00cb41e14da0e6ead5b9916e77753b58cbf1be69
text/template: fix doc spacing Change-Id: I4550ce3135b3cd675010a3701618e9350f282453 GitHub-Last-Rev: d2e52f14968621e9913dd66ef6b26348012c83b3 GitHub-Pull-Request: golang/go#68519 Reviewed-on: https://go-review.googlesource.com/c/go/+/599535 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <g...
[ { "path": "src/text/template/doc.go", "patch": "@@ -162,54 +162,78 @@ An argument is a simple value, denoted by one of the following.\n \t the host machine's ints are 32 or 64 bits.\n \t- The keyword nil, representing an untyped Go nil.\n \t- The character '.' (period):\n+\n \t\t.\n+\n \t The result is th...
2024-07-19T23:29:01
facebook/react
1b7b3592f4713b3a53709554aefd1d20e9a0a6a5
39f00748922cf40e06cd08d0c81f8b28fc8503fa
[Fizz] Implement Component Stacks in DEV for warnings (#21610) * Implement component stacks This uses a reverse linked list in DEV-only to keep track of where we're currently executing. * Fix bug that wasn't picking up the right stack at suspended boundaries This makes it more explicit which stack we pass in...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -1058,6 +1058,118 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ function normalizeCodeLocInfo(str) {\n+ return (\n+ str &&\n+ str.replace(/\\n +(?:at|in) ([\\S]+)[^\\n]*/g, function(m, name...
2021-06-03T20:02:41
nodejs/node
2d24b29cf46b8f20ae4bbab8d0ec954736a6af27
4eec3626f2c2898ec00734e4b0ab70de8c24704c
net: fix family autoselection timeout handling PR-URL: https://github.com/nodejs/node/pull/47860 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/net.js", "patch": "@@ -134,7 +134,6 @@ let autoSelectFamilyAttemptTimeoutDefault = 250;\n \n const { clearTimeout, setTimeout } = require('timers');\n const { kTimeout } = require('internal/timers');\n-const kTimeoutTriggered = Symbol('kTimeoutTriggered');\n \n const DEFAULT_IPV4_ADDR = '0.0....
2023-05-11T16:14:03
electron/electron
a9b25dda853b87a1d7bd170cce2dd8eb7df63c39
d57fd6cef0132b0260b908e48e4264a326a2ec00
fix: race-condition in electron.net (#27898)
[ { "path": "lib/browser/api/net.ts", "patch": "@@ -119,10 +119,13 @@ class IncomingMessage extends Readable {\n this._shouldPush = this.push(chunk);\n }\n if (this._shouldPush && this._resume) {\n- this._resume();\n // Reset the callback, so that a new one is used for each\n- //...
2021-02-26T21:18:46
vercel/next.js
eb789ecf71bf66a184432d623e9b1157b907c8ba
9b7e34f468f3210889f807f9414aa35a9fd94a11
[Turbopack] disable dependency tracking for next build (#75704) ### What? fix a previous PR that disables dependency tracking when not needed.
[ { "path": "crates/napi/src/next_api/utils.rs", "patch": "@@ -170,6 +170,7 @@ pub fn create_turbo_tasks(\n turbo_tasks_backend::TurboTasksBackend::new(\n turbo_tasks_backend::BackendOptions {\n storage_mode: None,\n+ dependency_tracking,\n ...
2025-02-05T19:29:50
facebook/react
8b4201535c6068147d61d0ed3f02d21d6dcd6927
2418f24b609029c3f3415b5954005d5aa4851f0b
Devtools: add feature to trigger an error boundary (#21583) Co-authored-by: Brian Vaughn <bvaughn@fb.com>
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -2380,4 +2380,95 @@ describe('InspectedElement', () => {\n `);\n });\n });\n+\n+ describe('error boundary', () => {\n+ it('can toggle error', async () => {\n+ class ErrorBoundary extends Reac...
2021-06-03T15:21:44
golang/go
00cb41e14da0e6ead5b9916e77753b58cbf1be69
53270be21c5e14a2d15ada2622f20503d97cb89e
flag: handle nil os.Args when setting CommandLine at package level Fixes #68340 Change-Id: I65037be6961e9ec720537713cb3f23ab9f5f8459 GitHub-Last-Rev: fadcb299c383abdde000daec58b12019a75012c6 GitHub-Pull-Request: golang/go#68341 Reviewed-on: https://go-review.googlesource.com/c/go/+/597075 Reviewed-by: Ian Lance Taylo...
[ { "path": "src/flag/flag.go", "patch": "@@ -1196,9 +1196,16 @@ func Parsed() bool {\n // CommandLine is the default set of command-line flags, parsed from [os.Args].\n // The top-level functions such as [BoolVar], [Arg], and so on are wrappers for the\n // methods of CommandLine.\n-var CommandLine = NewFlag...
2024-07-19T09:19:18
rust-lang/rust
f29c5168b205bfa51316ab79d04c143f1937edef
08509492139968a96a005ba811a995e2f1d6a2ac
Add test for never type fallback in try blocks with Into<!> Closes #125364 This test verifies that the never type fallback behavior in try blocks with `Into<!>` bounds works correctly across different editions: - Edition 2021: Fallback to `()` causes type error - Edition 2024: Fallback to `!` compiles successfully
[ { "path": "tests/ui/never_type/try-block-never-type-fallback.e2021.stderr", "patch": "@@ -0,0 +1,20 @@\n+error[E0277]: the trait bound `!: From<()>` is not satisfied\n+ --> $DIR/try-block-never-type-fallback.rs:20:9\n+ |\n+LL | bar(try { x? });\n+ | --- ^^^^^^^^^^ the trait `From<()>` is not im...
2025-12-27T14:35:40
electron/electron
d57fd6cef0132b0260b908e48e4264a326a2ec00
bd940b2904dd67e12366039abb738fe3ca86f309
fix: navigator.bluetooth.requestDevice (#27902) * fix: navigator.bluetooth.requestDevice * cleanup lint and add test * update bluetooth test to handle no bluetooth adapter available * update bluetooth test to handle bluetooth permission denied
[ { "path": "filenames.gni", "patch": "@@ -334,6 +334,8 @@ filenames = {\n \"shell/browser/badging/badge_manager.h\",\n \"shell/browser/badging/badge_manager_factory.cc\",\n \"shell/browser/badging/badge_manager_factory.h\",\n+ \"shell/browser/bluetooth/electron_bluetooth_delegate.cc\",\n+ \...
2021-02-26T19:10:27
nodejs/node
24615bd409d148c9ef2d03d6706d0807d5df4557
ea8fd2dfe0a234c6ea1ad245cc05dfe833f94adc
test_runner: fix ordering of test hooks For tests with subtests the before hook was being run after the beforeEach hook, which is the opposite to test suites and expectations. Also, a function was being used to close over the after hooks, but at the point it was being run the after hooks were not yet set up. Fixes #...
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -537,12 +537,12 @@ class Test extends AsyncResource {\n });\n \n try {\n- if (this.parent?.hooks.beforeEach.length > 0) {\n- await this.parent.runHook('beforeEach', { args, ctx });\n- }\n if (this.parent?.hooks.before....
2023-05-11T10:10:56
facebook/react
2418f24b609029c3f3415b5954005d5aa4851f0b
154a8cf32869cb9fabbb0ef2b68c77a5c17954e9
Fix <select> check of defaultValue/value type (#21611)
[ { "path": "packages/react-dom/src/server/ReactDOMServerFormatConfig.js", "patch": "@@ -568,19 +568,22 @@ let didWarnSelectedSetOnOption = false;\n \n function checkSelectProp(props, propName) {\n if (__DEV__) {\n- const array = isArray(props[propName]);\n- if (props.multiple && !array) {\n- con...
2021-06-03T13:13:00
vercel/next.js
c5b823e7b5163f80bec9115ba5e86bdeb1cce887
94aea60d4c3c992fcdb58cc86e788d0d7d222cf6
Fix lint for cacheTag doc (#75703) Seems this was failing in https://github.com/vercel/next.js/pull/75693
[ { "path": "docs/01-app/04-api-reference/04-functions/cacheTag.mdx", "patch": "@@ -94,7 +94,7 @@ export default async function submit() {\n - **Multiple Tags**: You can assign multiple tags to a single cache entry by passing an array to `cacheTag`.\n \n ```tsx\n-cacheTag(['tag-one', 'tag-two']);\n+cacheTag([...
2025-02-05T17:29:11
golang/go
53270be21c5e14a2d15ada2622f20503d97cb89e
a6f3add91a51365ec0ea73f88a5019d8e69cca2a
strconv: document that Unquote("''") returns an empty string Fixes #64280 Change-Id: I1ad84d85b666a2ef52dc6ecdecd508b4e7fe24a6 GitHub-Last-Rev: 6242027261f02c578a09f70fcb39a8cac259855c GitHub-Pull-Request: golang/go#68524 Reviewed-on: https://go-review.googlesource.com/c/go/+/599575 Auto-Submit: Ian Lance Taylor <ian...
[ { "path": "src/strconv/quote.go", "patch": "@@ -378,7 +378,7 @@ func QuotedPrefix(s string) (string, error) {\n // or backquoted Go string literal, returning the string value\n // that s quotes. (If s is single-quoted, it would be a Go\n // character literal; Unquote returns the corresponding\n-// one-char...
2024-07-22T16:11:45
facebook/react
154a8cf32869cb9fabbb0ef2b68c77a5c17954e9
6736a38b9abdd19a015929c0279783c92b30d372
Fix reference to wrong variable Follow-up to #21608
[ { "path": "scripts/rollup/build-all-release-channels.js", "patch": "@@ -198,14 +198,14 @@ function updatePackageVersions(\n \n if (packageInfo.dependencies) {\n for (const dep of Object.keys(packageInfo.dependencies)) {\n- if (modulesDir.includes(dep)) {\n+ if (versionsMap.ha...
2021-06-03T04:23:08
electron/electron
e406ba9558cc6a44da5fbc329ba1afee4d1679ad
4d5e0cf2c46d1adbb4c1662ccb9ffbd4086170f2
fix: values return from the ctx bridge with dynamic property support should themselves support dynamic properties (#27899)
[ { "path": "shell/renderer/api/electron_api_context_bridge.cc", "patch": "@@ -485,13 +485,15 @@ v8::MaybeLocal<v8::Object> CreateProxyForAPI(\n v8::Local<v8::Value> setter_proxy;\n if (!getter.IsEmpty()) {\n if (!PassValueToOtherContext(source_context, destination_contex...
2021-02-25T21:09:00
nodejs/node
8b5cd3248dbf00de3e23644739e5c89c1a6a9ff4
4360389d67d8984cd9b2bba9749b63f1d1ed871a
dns: call `ada::idna::to_ascii` directly from c++ PR-URL: https://github.com/nodejs/node/pull/47920 Fixes: https://github.com/nodejs/performance/issues/77 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/dns.js", "patch": "@@ -28,7 +28,6 @@ const {\n } = primordials;\n \n const cares = internalBinding('cares_wrap');\n-const { toASCII } = require('internal/idna');\n const { isIP } = require('internal/net');\n const { customPromisifyArgs } = require('internal/util');\n const errors = require('i...
2023-05-10T16:04:35
vercel/next.js
674d32bed3a4ed361ed7f8f2a649b37056cacbf7
a29bfa2bfbce8c2ed7675afd794883ee1b872c25
docs: fix example for multiple tags in cacheTag usage (#75693)
[ { "path": "docs/01-app/04-api-reference/04-functions/cacheTag.mdx", "patch": "@@ -94,7 +94,7 @@ export default async function submit() {\n - **Multiple Tags**: You can assign multiple tags to a single cache entry by passing an array to `cacheTag`.\n \n ```tsx\n-cacheTag('tag-one', 'tag-two')\n+cacheTag(['ta...
2025-02-05T16:45:32