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
nodejs/node
2cd98924252fc1b59f72f4ad280001bfcc98a8c7
64161f2a8616771a37994e24444bbb7d74df8f62
Revert "stream: fix async iterator destroyed error propagation" This reverts commit d15b8ea3bdcb72b8e2dd3aee0cc717daa512d2f6. PR-URL: https://github.com/nodejs/node/pull/31508 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.c...
[ { "path": "lib/internal/streams/async_iterator.js", "patch": "@@ -106,20 +106,18 @@ const ReadableStreamAsyncIteratorPrototype = ObjectSetPrototypeOf({\n }\n \n if (this[kStream].destroyed) {\n+ // We need to defer via nextTick because if .destroy(err) is\n+ // called, the error will be em...
2020-01-25T11:00:21
facebook/react
705ce56694823fcfdc5075e6a0e5f1350725c1fd
cff4d53a9edcf6fae7b417fe124cda961fc524bf
Correctly remove attributes when deleting props The most obvious manifestation of this bug is visible here: http://jsfiddle.net/spicyj/zzGas/. In short, when props are removed from a component, the underlying HTML element doesn't have the attribute removed. This change should fix it, but unfortunately it (presumably)...
[ { "path": "src/core/ReactComponent.js", "patch": "@@ -35,6 +35,13 @@ var merge = require('merge');\n */\n var OWNER = '{owner}';\n \n+/**\n+ * Internal properties that shouldn't be considered when modifying node\n+ * attributes.\n+ */\n+var internalPropNames = {children: true};\n+internalPropNames[OWNER] =...
2013-06-11T23:44:51
vercel/next.js
5f4238d9fa40ab840341a8b75a75310a959b3ced
c923257c1b95f23b80f2c03cf24d1d06d74ee7c1
docs: `useFormState` (#55564) This PR shows how to use a new React hook `useFormState` in the context of the [Forms and Mutations](https://nextjs.org/docs/app/building-your-application/data-fetching/forms-and-mutations) docs. It also updates the forms example (`next-forms`) to show the recommended patterns for loa...
[ { "path": "docs/02-app/01-building-your-application/01-routing/03-linking-and-navigating.mdx", "patch": "@@ -64,31 +64,64 @@ export default function PostList({ posts }) {\n \n You can use [`usePathname()`](/docs/app/api-reference/functions/use-pathname) to determine if a link is active. For example, to add ...
2023-09-22T21:10:25
golang/go
66685fb7dd72531aed6f1b3f4de43799bb26c052
4b236b45d0bb659a447dcfc02ebd431587b52e2b
doc/go1.19: use correct link to sync/atomic docs For #51400 Fixes #53453 Change-Id: Ie11182a16299cf26d03970d6aa9bfe03caa56ea4 Reviewed-on: https://go-review.googlesource.com/c/go/+/413235 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Ian Lance Taylor <iant@google.com> Reviewed-by: Dmitri Shuralyov <dmits...
[ { "path": "doc/go1.19.html", "patch": "@@ -35,7 +35,7 @@ <h2 id=\"mem\">Memory Model</h2>\n the memory model used by C, C++, Java, JavaScript, Rust, and Swift.\n Go only provides sequentially consistent atomics, not any of the more relaxed forms found in other languages.\n Along with the memory model ...
2022-06-20T05:57:10
rust-lang/rust
66445e7975a5f11324e61e2ebbfdbdfa2015be02
466198cfaf2ea988a98aee08df10ed1198a3874a
fix pauses
[ { "path": "src/doc/rustc-dev-guide/src/tests/ui.md", "patch": "@@ -320,8 +320,8 @@ be preferred over //@ error-pattern, //@ error-pattern is imprecise and non-exha\n \n ### `error-pattern`\n \n-The `error-pattern` [directive](directives.md) can be used for runtime messages, which don't\n-have a specific spa...
2025-07-28T06:57:48
facebook/react
c2ce1d00cded131eefd0ab90f626e4cdb1187ff2
b3e0dc47a87220fd3e7a69d14b5a3556e2a834f3
Fix Event Normalization in IE<9 IE<9 relied on the `target` property being overriden. This adds back a hack that only applies in IE<9. I'll be able to revert this hack once I check in synthetic events.
[ { "path": "src/core/ReactEventTopLevelCallback.js", "patch": "@@ -68,6 +68,11 @@ var ReactEventTopLevelCallback = {\n if (!_topLevelListenersEnabled) {\n return;\n }\n+ // TODO: Remove when synthetic events are ready, this is for IE<9.\n+ if (nativeEvent.srcElement &&\n+ ...
2013-06-10T23:16:30
nodejs/node
0f8941962d2d2abde1d4249788be00b45ac996e1
2170259940fc5d1e9d3a6cd425f8e761dbb99432
benchmark: use let and const instead of var Use let and const in domain, es, events, fixtures, fs, http, http2 and misc. PR-URL: https://github.com/nodejs/node/pull/31518 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "benchmark/domain/domain-fn-args.js", "patch": "@@ -15,7 +15,7 @@ function main({ n, args }) {\n bench.start();\n \n bdomain.enter();\n- for (var i = 0; i < n; i++) {\n+ for (let i = 0; i < n; i++) {\n if (myArguments.length >= 2) {\n const args = Array.prototype.slice.call(myArgum...
2020-01-24T17:12:49
vercel/next.js
380986c535c7e14f9ffb870d92c8fa13d3e62288
965fcfa04ca17f97494fc8fd517b35d4fcd0febb
fix typo in API Reference - Image Component (#55776) removed unnecessary parentheses Co-authored-by: Steven <229881+styfle@users.noreply.github.com>
[ { "path": "docs/02-app/02-api-reference/01-components/image.mdx", "patch": "@@ -40,24 +40,24 @@ export default function Page() {\n Here's a summary of the props available for the Image Component:\n \n <div style={{ overflowX: 'auto', width: '100%' }}>\n-| Prop | Example ...
2023-09-22T19:31:20
electron/electron
6228ce3f35ed70ee675afa460f1b57edd53db810
a506df4d25701f2b9c1bacb1c8a1b4d6c0c16870
Fix the IPC docs so the docs-linter finds the methods
[ { "path": "docs/api/ipc-main.md", "patch": "@@ -46,7 +46,7 @@ ipcRenderer.on('asynchronous-reply', (event, arg) => {\n ipcRenderer.send('asynchronous-message', 'ping')\n ```\n \n-## Listening for Messages\n+## Methods\n \n The `ipcMain` module has the following method to listen for events:\n ", "additio...
2016-11-03T03:04:03
golang/go
4b236b45d0bb659a447dcfc02ebd431587b52e2b
530511bacccdea0bb8a0fec644887c2613535c50
runtime: convert flaky semaphore linearity test into benchmark Also, add a benchmark for another case that was originally tested. Also also, remove all the dead code this now creates. Fixes #53428. Change-Id: Idbba88d3d31d38a8854fd5ed99001e394da27300 Reviewed-on: https://go-review.googlesource.com/c/go/+/412878 Try...
[ { "path": "src/go/build/deps_test.go", "patch": "@@ -543,10 +543,7 @@ var depsRules = `\n \tinternal/fuzz, internal/testlog, runtime/pprof, regexp\n \t< testing/internal/testdeps;\n \n-\tMATH, errors, testing\n-\t< internal/testmath;\n-\n-\tOS, flag, testing, internal/cfg, internal/testmath\n+\tOS, flag, te...
2022-06-17T19:56:27
facebook/react
93f979ae18c9decabd378c33a45cda21c92765ec
ca3f87164634b40678f67d24076ee8f39dddeaa2
Use `isAncestorIDOf` in `ReactInstanceHandles` This is both a functional fix and performance fix for `ReactInstanceHandles`. - `getFirstReactDOM` uses `indexOf` but should be checking ancestry (via `isMarker()`). - Added `isAncestorIDOf`, checking ancestry can be way faster than getting a common ancestor: http://js...
[ { "path": "src/core/ReactInstanceHandles.js", "patch": "@@ -58,7 +58,7 @@ function getReactRootIDString(index) {\n * @return {boolean} True if the character is a separator or end of the ID.\n * @private\n */\n-function isMarker(id, index) {\n+function isBoundary(id, index) {\n return id.charAt(index) =...
2013-06-10T23:16:23
nodejs/node
32f63fcf0ed3b89aa8db672d73f387ee28468ba2
2462a2c5d7b5ae7e28a0fdefdf4fd5e8eb0ff5ed
src: fix debug crash handling null strings When internal debug is enabled, output null strings as "(null)" rather than crashing, matching glibc's behavior. PR-URL: https://github.com/nodejs/node/pull/31523 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Richa...
[ { "path": "src/debug_utils-inl.h", "patch": "@@ -21,7 +21,9 @@ struct ToStringHelper {\n enable_if<std::is_arithmetic<T>::value, bool>::type,\n typename dummy = bool>\n static std::string Convert(const T& value) { return std::to_string(value); }\n- static std::string Convert(c...
2020-01-26T15:53:26
vercel/next.js
816033a679d1519e77795f43a525d5b38fbf70f9
2cc30fc87aa3eec9c27cb528c2065ff4be99c4a6
Update rust toolchain to nightly-2023-09-21 (#55774) This: - Updates to the latest api change for `StdError` in `error_generic_member_access` rust-lang/rust#99301 - Updates `pathfinder_simd` for compatiblity Closes WEB-1636
[ { "path": ".cargo/config.toml", "patch": "@@ -38,5 +38,5 @@ rustflags = [\n # Clippy's needless mut lint is buggy: https://github.com/rust-lang/rust-clippy/issues/11299\n \"-Aclippy::needless_pass_by_ref_mut\",\n # Clippy's partial_eq lint is buggy: https://github.com/rust-lang/rust-clippy/issues/1117...
2023-09-22T19:12:25
electron/electron
49cb675057e6044ef8c107f39e10d6861959ef0b
e8b119e63699b4f2bd116f2f9cea299adb60ea0b
Fixing a trivial js lint issue.
[ { "path": "docs/api/net.md", "patch": "@@ -152,7 +152,7 @@ error on the response object:\n \n ```javascript\n request.on('response', (response) => {\n- console.log(`STATUS: ${response.statusCode}`);\n+ console.log(`STATUS: ${response.statusCode}`)\n response.on('error', (error) => {\n console.log(`E...
2016-11-02T10:16:37
facebook/react
1be6c592a64ac8c996763b875a80b17c0193b309
37cde3d864406f2af65dc03eae45a216ea969600
Fix typechecks for isRenderedByReact()
[ { "path": "src/core/ReactInstanceHandles.js", "patch": "@@ -154,11 +154,15 @@ var ReactInstanceHandles = {\n /**\n * True if the supplied `node` is rendered by React.\n *\n- * @param {DOMEventTarget} node DOM Element to check.\n+ * @param {*} node DOM Element to check.\n * @return {boolean} T...
2013-06-10T23:16:06
nodejs/node
2462a2c5d7b5ae7e28a0fdefdf4fd5e8eb0ff5ed
b851d7b98644bc81adcd905dbebda102eeedd888
src: fix ignore GCC -Wcast-function-type for older compilers Fixes: https://github.com/nodejs/node/issues/31517 PR-URL: https://github.com/nodejs/node/pull/31524 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-...
[ { "path": "src/base_object-inl.h", "patch": "@@ -28,12 +28,12 @@\n #include \"env-inl.h\"\n #include \"util.h\"\n \n-#if defined(__GNUC__) && !defined(__clang__)\n+#if (__GNUC__ >= 8) && !defined(__clang__)\n #pragma GCC diagnostic push\n #pragma GCC diagnostic ignored \"-Wcast-function-type\"\n #endif\n #i...
2020-01-26T15:59:51
vercel/next.js
33bef6f6fdb5039e75cee8d86617a9769c7ac37e
bfec3ede97613014c33965d23460c3095e4a48e8
Update rust toolchain to nightly-2023-09-21 (vercel/turbo#6002) This: - Updates to the latest api change for `StdError` in `error_generic_member_access` rust-lang/rust#99301 - Updates `pathfinder_simd` for compatiblity - Updates other crates for compatibility with Next.js Closes WEB-1635
[ { "path": "crates/turbo-tasks-macros/src/lib.rs", "patch": "@@ -1,3 +1,4 @@\n+#![allow(internal_features)]\n #![feature(proc_macro_diagnostic)]\n #![feature(allow_internal_unstable)]\n #![feature(box_patterns)]", "additions": 1, "deletions": 0, "language": "Rust" }, { "path": "crates/tur...
2023-09-22T17:57:14
facebook/react
2afd7186ae5a8978e9f5fec56031bddca6545c2d
7e7579e1bafcbee07751562abc7ae64386978cff
Run inner componentDidMount method first Fixes #76.
[ { "path": "src/core/ReactCompositeComponent.js", "patch": "@@ -451,17 +451,19 @@ var ReactCompositeComponentMixin = {\n }\n }\n \n- if (this.componentDidMount) {\n- transaction.getReactOnDOMReady().enqueue(this, this.componentDidMount);\n- }\n-\n this._renderedComponent = this._rend...
2013-06-10T00:21:22
nodejs/node
b851d7b98644bc81adcd905dbebda102eeedd888
70c32a6d190e2b5d7b9ff9d5b6a459d14e8b7d59
stream: fix finished writable/readable state writable/readable does not indicate whether as stream is a Writable/Readable. This implements a better check for whether a object is a Writable/Readable. PR-URL: https://github.com/nodejs/node/pull/31527 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo C...
[ { "path": "lib/internal/streams/end-of-stream.js", "patch": "@@ -13,6 +13,18 @@ function isRequest(stream) {\n return stream.setHeader && typeof stream.abort === 'function';\n }\n \n+function isReadable(stream) {\n+ return typeof stream.readable === 'boolean' ||\n+ typeof stream.readableEnded === 'boo...
2020-01-26T22:07:17
vercel/next.js
b5c399698dd8adaf078c692eaf465822c9280ab7
dca5e22384d0f5c4fc73391973df88e6da928f66
Remove next-typescript check in webpack config (#55819) This package has been legacy for multiple years and has been marked deprecated, this check is no longer useful. <!-- 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 ...
[ { "path": "package.json", "patch": "@@ -110,7 +110,6 @@\n \"@typescript-eslint/parser\": \"6.1.0\",\n \"@vercel/fetch\": \"6.1.1\",\n \"@vercel/og\": \"0.5.15\",\n- \"@zeit/next-typescript\": \"1.1.2-canary.0\",\n \"abort-controller\": \"3.0.0\",\n \"alex\": \"9.1.0\",\n \"amphtml...
2023-09-22T17:43:16
golang/go
530511bacccdea0bb8a0fec644887c2613535c50
c2d373d5d1802d7479f3c81dcf01d41bef3646dd
cmd/go/internal/modindex: avoid walking modules when not needed Due to a missed condition in CL 412394, we were walking all modules (instead of just the ones contained in GOROOT) at each invocation of a devel version of cmd/go. Moreover, while we were running cmd/go tests, we were re-walking GOROOT at each 'go' invoc...
[ { "path": "src/cmd/go/go_test.go", "patch": "@@ -18,6 +18,7 @@ import (\n \t\"io\"\n \t\"io/fs\"\n \t\"log\"\n+\t\"math/rand\"\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n@@ -128,6 +129,19 @@ func TestMain(m *testing.M) {\n \t}\n \tos.Setenv(\"CMDGO_TEST_RUN_MAIN\", \"true\")\n \n+\tif strings.HasPref...
2022-06-16T22:02:11
facebook/react
7e7579e1bafcbee07751562abc7ae64386978cff
582359aeea9b7c437cfc12b8e4f3366aaacf11a1
Assign the same keys if it's a single nested array or not If you specify a single array, we didn't prefix the keys with 0. If you later add children, the first array won't have the same key.
[ { "path": "src/core/ReactComponent.js", "patch": "@@ -87,7 +87,7 @@ function tryToReuseArray(children) {\n for (var i = 0; i < children.length; i++) {\n var child = children[i];\n if (isEmptyChild(child)) return false;\n- assignKey('', child, i);\n+ assignKey('0', child, i);\n }\n return...
2013-06-08T05:04:53
nodejs/node
a5d4a397d63871dee3bfd5f174b64e41bc878be0
f2842904c2b6ea2e770f9b3d38115c958fa55c22
test: make test-http2-buffersize more correct Previously, this code could have closed the server before the connection was actually received by the server, as the `'close'` event on the client side can be emitted before the connection is established. The following commit exacerbates this problem, so fix the test firs...
[ { "path": "test/parallel/test-http2-buffersize.js", "patch": "@@ -15,29 +15,32 @@ const Countdown = require('../common/countdown');\n const BUFFER_SIZE = 30;\n const server = createServer();\n \n+ let client;\n+ const countdown = new Countdown(SOCKETS, () => {\n+ client.close();\n+ server.close(...
2020-01-25T01:07:12
vercel/next.js
6177f9f9c3f22581a769d28e9027ae4c0772e1a0
7fa1618ef73e4f5e9fbc6d35ec539fdbf6b017b7
Move DefineEnv to separate file (#55811) Narrowing down the webpack config a bit. <!-- 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...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -76,6 +76,7 @@ import { MemoryWithGcCachePlugin } from './webpack/plugins/memory-with-gc-cache-\n import { getBabelConfigFile } from './get-babel-config-file'\n import { defaultOverrides } from '../server/require-hook'\n import { needsExper...
2023-09-22T17:07:52
golang/go
c2d373d5d1802d7479f3c81dcf01d41bef3646dd
19ed442807499080cf9c31ac883d4195db5415c9
cmd/compile: allow 128-bit values to be spilled We sometimes use 16-byte load+store to move values around in memory. In rare circumstances, the loaded value must be spilled because the store can't happen yet. In that case, we need to be able to spill the 16-byte value. Fixes #53454 Change-Id: I09fd08e11a63c6ba3ef78...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -78,6 +78,8 @@ func storeByType(t *types.Type) obj.As {\n \t\t\treturn x86.AMOVL\n \t\tcase 8:\n \t\t\treturn x86.AMOVQ\n+\t\tcase 16:\n+\t\t\treturn x86.AMOVUPS\n \t\t}\n \t}\n \tpanic(fmt.Sprintf(\"bad store type %v\", t))", "additions": ...
2022-06-21T00:06:09
facebook/react
582359aeea9b7c437cfc12b8e4f3366aaacf11a1
6c3c643c8e63f3cd2319e4e1e53a6b8627724062
Remove React.createComponentRenderer Remove ReactMount.createComponentRenderer because it does not function correctly. var f = React.createComponentRenderer(<div />); var container1 = document.createElement('div'); var container2 = document.createElement('div'); f(container1); f(container2); // error becau...
[ { "path": "src/core/React.js", "patch": "@@ -34,7 +34,6 @@ var React = {\n },\n autoBind: ReactCompositeComponent.autoBind,\n createClass: ReactCompositeComponent.createClass,\n- createComponentRenderer: ReactMount.createComponentRenderer,\n constructAndRenderComponent: ReactMount.constructAndRende...
2013-06-08T05:04:49
electron/electron
691ad97abe5eba51ca1a65163e3598bcb6d33570
721924b7498248a269aa2755209f3362dccbb122
Update the korean docs up to '379c347' commit. Swap two debugging tutorials with each other.
[ { "path": "docs-translations/ko-KR/api/app.md", "patch": "@@ -185,14 +185,7 @@ Returns:\n * `webContents` [WebContents](web-contents.md)\n * `url` URL\n * `error` String - 에러 코드\n-* `certificate` Object\n- * `data` String - PEM 인코딩된 데이터\n- * `issuerName` String - 인증서 발급자의 공통 이름\n- * `subjectName` String ...
2016-11-01T02:56:55
nodejs/node
f2842904c2b6ea2e770f9b3d38115c958fa55c22
8e245cd4e31628def8e886302619b3f033f2f636
fs: bail on permission error in recursive directory creation When creating directories recursively, the logic should bail immediately on UV_EACCES and bubble the error to the user. PR-URL: https://github.com/nodejs/node/pull/31505 Fixes: https://github.com/nodejs/node/issues/31481 Reviewed-By: Anna Henningsen <anna@a...
[ { "path": "src/node_file.cc", "patch": "@@ -1226,11 +1226,17 @@ int MKDirpSync(uv_loop_t* loop,\n int err = uv_fs_mkdir(loop, req, next_path.c_str(), mode, nullptr);\n while (true) {\n switch (err) {\n+ // Note: uv_fs_req_cleanup in terminal paths will be called by\n+ // ~FSReqWr...
2020-01-25T06:12:39
vercel/next.js
bfec3ede97613014c33965d23460c3095e4a48e8
e3c5828ba6bbfdc5292d456aa4a7b3fcd117d0a3
fix(turbopack-ecmascript): make free var replacements (compile time defines) work for member expressions and allow JSON values (vercel/turbo#6000)
[ { "path": "crates/turbopack-core/src/compile_time_info.rs", "patch": "@@ -72,11 +72,14 @@ macro_rules! free_var_references {\n };\n }\n \n+// TODO: replace with just a `serde_json::Value`\n+// https://linear.app/vercel/issue/WEB-1641/compiletimedefinevalue-should-just-use-serde-jsonvalue\n #[turbo_tasks...
2023-09-22T15:55:15
facebook/react
6c3c643c8e63f3cd2319e4e1e53a6b8627724062
3eaed5a122a050a6a2852b9f5348685373a9a6f7
Fix typo in OrderedMap Unique was spelled wrong. This fixes it.
[ { "path": "src/utils/OrderedMap.js", "patch": "@@ -33,7 +33,7 @@ var NO_EXIST = 'NO_EXIST';\n if (__DEV__) {\n ARRAY_MUST_CB =\n 'If providing an array to an OrderedMap constructor, you must provide ' +\n- 'a callback that may determine the uniqueue key for each entry. ' +\n+ 'a callback that ma...
2013-06-08T05:04:45
golang/go
3fcbfb07a82c5332e6b50cddba333af6e6e3e488
527ace0ffa81d59698d3a78ac3545de7295ea76b
doc/go1.19: fix HTML validation issues Avoid duplicating tag ID runtime and remove a superflous </dd> tag. Found by https://validator.w3.org Change-Id: I9c84b8257acbb6d3d6817192bb8d355207944b9a Reviewed-on: https://go-review.googlesource.com/c/go/+/413254 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: ...
[ { "path": "doc/go1.19.html", "patch": "@@ -741,7 +741,7 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n </dd>\n </dl><!-- regexp -->\n \n-<dl id=\"runtime\"><dt><a href=\"/pkg/runtime/\">runtime</a></dt>\n+<dl id=\"pkg-runtime\"><dt><a href=\"/pkg/runtime/\">runtime</a></dt>\n <d...
2022-06-20T09:42:07
nodejs/node
0214b90308404b18efd60ce07cb89014073ee161
59cba9a5c20c4a9fee34a3f6601025666aa6f9f6
process: fix two overflow cases in SourceMap VLQ decoding These both have to do with extremely large numbers, so it's unlikely to cause a problem in practice. Still, correctness. First, encoding `-2147483648` in VLQ returns the value `"B"`. When decoding, we get the value `1` after reading the base64. We then check i...
[ { "path": "lib/internal/source_map/source_map.js", "patch": "@@ -303,8 +303,19 @@ function decodeVLQ(stringCharIterator) {\n \n // Fix the sign.\n const negative = result & 1;\n- result >>= 1;\n- return negative ? -result : result;\n+ // Use unsigned right shift, so that the 32nd bit is properly shif...
2020-01-24T07:49:41
facebook/react
4bb966a7f08953083316ebacdefcd622c5bde99d
0e9e64c550eb867d720c8a8ec05c5cecea913f93
Bugfixes to key assignment Type coersion bug and ID breaking assumption. Names need to be wrapped in something unique since otherwise two unique siblings can end up having IDs that are subsets of eachother.
[ { "path": "src/core/ReactComponent.js", "patch": "@@ -296,7 +296,7 @@ var ReactComponent = {\n if (child.length === 0) continue;\n \n if (targetArray === null) targetArray = [];\n- appendNestedChildren(i - 1, child, targetArray);\n+ appendNestedChildren('' + (i - 1), ch...
2013-06-08T05:04:18
vercel/next.js
f20728ac3d2e520b306d7fd971830ac3ea5a282e
57cd1d028499a28663de34ab85401be04462e464
fix Image when used with `--experimental-https` (#55775) The IPC request to `imageOptimizer` assumed the server was listening on http, so this updates it to pull the protocol from `getRequestMeta` instead. This also adds the option to pass in a path to the CA Root so that the dev server can add it to `NODE_EXTRA_CA_CE...
[ { "path": "packages/next/src/cli/next-dev-args.ts", "patch": "@@ -9,6 +9,7 @@ export const validArgs: arg.Spec = {\n '--experimental-https': Boolean,\n '--experimental-https-key': String,\n '--experimental-https-cert': String,\n+ '--experimental-https-ca': String,\n '--experimental-test-proxy': Boo...
2023-09-22T14:26:20
golang/go
527ace0ffa81d59698d3a78ac3545de7295ea76b
ec58e3f3271de385cf976a805e611d3da09c3a0e
cmd/compile: skip substituting closures in unsafe builtins arguments For unsafe.{Alignof,Offsetof,Sizeof}, subster will transform them them to OLITERAL nodes, and discard their arguments. However, any closure in their children nodes were already processed and added to declaration queue. Thus, we lack of information fo...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -721,11 +721,12 @@ func (g *genInst) getInstantiation(nameNode *ir.Name, shapes []*types.Type, isMe\n // Struct containing info needed for doing the substitution as we create the\n // instantiation of a generic function with specified type ...
2022-06-16T16:04:25
electron/electron
379c3470c8e6a9acfe47b923c80cfb7579a35b30
b8f09ecf4f113e672e1b556e888adb489d89fc18
fix formatting of new net API doc
[ { "path": "docs/api/net.md", "patch": "@@ -1,15 +1,16 @@\n # net\n \n-> Issue HTTP/HTTPS requests.\n+> Issue HTTP/HTTPS requests using Chromium's native networking library\n \n The `net` module is a client-side API for issuing HTTP(S) requests. It is\n similar to the [HTTP](https://nodejs.org/api/http.html...
2016-10-31T22:48:06
nodejs/node
a2f9ccd3d2bffc6f72f02acf7fc4813c670a64ed
07915db233dcb03ea9586086cc4f599b96fa9000
deps: uvwasi: cherry-pick 7b5b6f9 Original commit message: allow windows to detect tty types uv_fs_fstat() fails on TTYs on Windows. This commit updates uvwasi__get_filetype_by_fd() to detect this case and map the fd to the WASI character device type. Refs: https://github.com/nodejs/node/issues/3...
[ { "path": "deps/uvwasi/src/uv_mapping.c", "patch": "@@ -249,8 +249,15 @@ uvwasi_errno_t uvwasi__get_filetype_by_fd(uv_file fd, uvwasi_filetype_t* type) {\n \n r = uv_fs_fstat(NULL, &req, fd, NULL);\n if (r != 0) {\n- *type = UVWASI_FILETYPE_UNKNOWN;\n uv_fs_req_cleanup(&req);\n+\n+ /* Windows ...
2020-01-24T00:55:36
facebook/react
ba6fea1bf5eaab71c0abec7d55824419bcd4f3f4
36d8ce8fabdd770cf455b07ee8e7c6880fadc57f
Simplify Event Core Summary: This makes a few changes to React Core, most notably `ReactEventEmitter` and `ReactEventTopLevelCallback`. - Changed `ReactEventEmitter` to use `EventListener` (instead of `NormalizedEventListener`). - Deleted `NormalizedEventListener` (which was previously broken). - Created `getEvent...
[ { "path": "src/core/ReactEventEmitter.js", "patch": "@@ -14,33 +14,44 @@\n * limitations under the License.\n *\n * @providesModule ReactEventEmitter\n+ * @typechecks\n */\n \n \"use strict\";\n \n var BrowserEnv = require('BrowserEnv');\n var EventConstants = require('EventConstants');\n+var EventListe...
2013-06-06T21:40:30
vercel/next.js
4484ef11062f74cbe5765dfa93d87140f4e0867a
39e688e802269b269600192f032a6186dca4aff5
test(turbopack): explicitly clean up instance for turbopack (#55772) ### What? Minor improvement to test fixture to clean up the instance if explicitly specified to continue test. This is required to run turbopack related tests. Closes WEB-1634
[ { "path": "test/lib/e2e-utils.ts", "patch": "@@ -198,6 +198,8 @@ export async function createNext(\n } catch (_) {}\n \n if (process.env.NEXT_TEST_CONTINUE_ON_ERROR) {\n+ // Other test should continue to create new instance if NEXT_TEST_CONTINUE_ON_ERROR explicitly specified.\n+ nextInstan...
2023-09-21T23:50:13
golang/go
103cc661f1906837d02133e9c65d0475ac49799c
d42a48828f3cff4e57cefaf72bc88cef7d355fd6
cmd/go/internal/modfetch: prevent duplicate hashes in go.sum To write go.sum, each module and then each hash is looped through. The hashes are kept in a slice and there is no check to ensure that hashes were not added or already exist in the file. Therefore, unique the hashes of each module before writing to prevent d...
[ { "path": "src/cmd/go/internal/modfetch/fetch.go", "patch": "@@ -833,6 +833,7 @@ Outer:\n \t\tfor _, m := range mods {\n \t\t\tlist := goSum.m[m]\n \t\t\tsort.Strings(list)\n+\t\t\tstr.Uniq(&list)\n \t\t\tfor _, h := range list {\n \t\t\t\tst := goSum.status[modSum{m, h}]\n \t\t\t\tif (!st.dirty || (st.used...
2022-06-17T18:22:12
facebook/react
9965b6b9dda2716e3618e4cb1acbf83ce29e3c2f
a06de4bc4f5735aba767740d243b270e272ac6fa
Fix Listener Cleanup on Unmount We need to make sure that deleteAllListeners() is invoked before we call the superclass's unmountComponent() method or else we will lose this._rootNodeID. I also added an invariant and unit test to make sure we do not break this in the future.
[ { "path": "src/core/ReactNativeComponent.js", "patch": "@@ -317,9 +317,9 @@ ReactNativeComponent.Mixin = {\n * @internal\n */\n unmountComponent: function() {\n+ ReactEvent.deleteAllListeners(this._rootNodeID);\n ReactComponent.Mixin.unmountComponent.call(this);\n this.unmountMultiChild()...
2013-06-04T19:52:33
nodejs/node
05d350a3605299b2394f346cecc2d02b644698c5
3188afebf472976460f54559e205b6e18af0343f
deps: upgrade to libuv 1.34.2 Notable changes: - SetApplicationDaemon() is no longer called on macOS. - uv_interface_addresses() is implemented on IBMi. - The return value of uv__open_cloexec() is now handled properly. - A race condition in fsevents has been fixed. Fixes: https://github.com/nodejs/node/issues/3132...
[ { "path": "deps/uv/ChangeLog", "patch": "@@ -1,3 +1,26 @@\n+2020.01.24, Version 1.34.2 (Stable), f868c9ab0c307525a16fff99fd21e32a6ebc3837\n+\n+Changes since version 1.34.1:\n+\n+* misc: adjust stalebot deadlines (Jameson Nash)\n+\n+* test: fix env-vars flakiness (cjihrig)\n+\n+* test: avoid truncating outpu...
2020-01-23T14:31:45
vercel/next.js
39e688e802269b269600192f032a6186dca4aff5
83bea332edc14a90aad45b96c5f4dc36a9c6cc82
Fix output log extra new line (#55770) For progress spinner, only log new line when `process.stdout.isTTY` ## After ![image](https://github.com/vercel/next.js/assets/4800338/cb850b22-0985-4129-ba5e-961f3c914701) ## Before ![image](https://github.com/vercel/next.js/assets/4800338/5c69d964-74dd-432f-901d-ad86a430742...
[ { "path": "packages/next/src/build/spinner.ts", "patch": "@@ -13,9 +13,9 @@ export default function createSpinner(\n ) {\n let spinner: undefined | ora.Ora\n \n- const prefixText = ` ${Log.prefixes.info} ${text}`\n+ const prefixText = ` ${Log.prefixes.info} ${text} `\n // Add \\r at beginning to reset...
2023-09-21T23:35:59
golang/go
9e2f2897546c51863bf860c30622fbe9e3359391
dd2d00f9d57ba6aafb084d83ffc7fb35f97b8c84
cmd/go/internal/work: log clearer detail for subprocess errors in (*Builder).toolID For #52647. Change-Id: Ic12123769d339c2df677500ed59f15a4ee5037d3 Reviewed-on: https://go-review.googlesource.com/c/go/+/412954 Run-TryBot: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Br...
[ { "path": "src/cmd/go/internal/work/buildid.go", "patch": "@@ -164,13 +164,16 @@ func (b *Builder) toolID(name string) string {\n \tcmd.Stdout = &stdout\n \tcmd.Stderr = &stderr\n \tif err := cmd.Run(); err != nil {\n-\t\tbase.Fatalf(\"%s: %v\\n%s%s\", desc, err, stdout.Bytes(), stderr.Bytes())\n+\t\tif std...
2022-06-17T16:34:30
nodejs/node
278d37d90d8cd208ee9cd402c3f256b192460f09
725682cc509527cfaff0c25450d17ed92c470024
test: fix test-heapdump-worker This test was broken by de2c68c7dd17a217a818ea881e433034006fdb4b. Refs: https://github.com/nodejs/node/pull/31386 PR-URL: https://github.com/nodejs/node/pull/31494 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: David Carlier <devn...
[ { "path": "test/pummel/test-heapdump-worker.js", "patch": "@@ -9,7 +9,6 @@ const worker = new Worker('setInterval(() => {}, 100);', { eval: true });\n validateSnapshotNodes('Node / Worker', [\n {\n children: [\n- { node_name: 'Node / AsyncRequest', edge_name: 'on_thread_finished_' },\n { no...
2020-01-24T14:36:20
golang/go
dd2d00f9d57ba6aafb084d83ffc7fb35f97b8c84
6c25ba624fd032a20dcfa94f9f9f0ae32c57c54b
net: fix flaky *TimeoutMustNotReturn tests The tester goroutine doesn't always gets a chance to run before the timeout expires. Wait for the goroutine to start and set deadlines before staring the timer. Fixes #36796 Change-Id: Iffed6259de31340c3f66e34da473826a1d09fcde Reviewed-on: https://go-review.googlesource.com...
[ { "path": "src/net/timeout_test.go", "patch": "@@ -243,8 +243,7 @@ func TestAcceptTimeoutMustNotReturn(t *testing.T) {\n \tln := newLocalListener(t, \"tcp\")\n \tdefer ln.Close()\n \n-\tmax := time.NewTimer(100 * time.Millisecond)\n-\tdefer max.Stop()\n+\tmaxch := make(chan *time.Timer)\n \tch := make(chan ...
2022-06-17T17:10:09
vercel/next.js
e0b8d3292d0437b582e3ec04c9929efe730122e5
ff7e4f49f34063f16dbc8db635ed045d062bd737
fix thenable types & update another incorrect cache record (#55758) This is a continuation from https://github.com/vercel/next.js/pull/55690 but also properly types these functions so we can catch these easier
[ { "path": "packages/next/src/client/components/layout-router.tsx", "patch": "@@ -27,6 +27,7 @@ import { RedirectBoundary } from './redirect-boundary'\n import { NotFoundBoundary } from './not-found-boundary'\n import { getSegmentValue } from './router-reducer/reducers/get-segment-value'\n import { createRou...
2023-09-21T21:32:10
electron/electron
651a2d4399c7d3c894f6683d8bf8f2fe05a5f0eb
7c48dd54e1461e1d1255dcc8f99c9f14f81ff51d
ZH_TW docs update (#7797) * Update cookie.md * Update cookie.md * Update task.md * ZH_TW docs /structures/cookie add * Fix a word && add new docs * Update task.md * Update cookie.md * new update
[ { "path": "docs-translations/zh-TW/api/structures/certificate.md", "patch": "@@ -0,0 +1,9 @@\n+# Certificate 物件 (憑證)\n+\n+* `data` 字串 - PEM 加密資料。\n+* `issuerName` 字串 - 憑證發行者的名字。\n+* `subjectName` 字串 - 憑證使用者的名字。\n+* `serialNumber` 字串 - 憑證序號。\n+* `validStart` 數字 - 憑證開始日期,值為 UNIX 時間。\n+* `validExpiry` 數字 - 憑證結...
2016-10-31T16:21:56
nodejs/node
725682cc509527cfaff0c25450d17ed92c470024
67e067eb0658281b647ff68a5a9e64ea2cfdb706
util: fix inspection of typed arrays with unusual length This makes sure `util.inspect()` does not throw in case the typed array's length property was set to something invalid. Instead, always use the original information. PR-URL: https://github.com/nodejs/node/pull/31458 Reviewed-By: Michaël Zasso <targos@protonmail...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -829,7 +829,7 @@ function formatRaw(ctx, value, recurseTimes, typedArray) {\n return `${braces[0]}]`;\n // Special handle the value. The original value is required below. The\n // bound function is required to reconstruct missing inf...
2020-01-21T12:56:14
facebook/react
a64faf7bf7edeab22490c617d1c579e6103a5da0
4a79a718a35c4384819ef004a4ae5c06c5e97b4d
Fix broken link in Why React post
[ { "path": "docs/_posts/2013-06-05-why-react.md", "patch": "@@ -31,7 +31,7 @@ see as an advantage over templates for a few reasons:\n **no manual string concatenation** and therefore less surface area for XSS\n vulnerabilities.\n \n-We've also created [JSX](facebook.github.io/react/docs/syntax.html), an ...
2013-06-05T17:02:11
vercel/next.js
ff7e4f49f34063f16dbc8db635ed045d062bd737
ea01649a478a0b9ab224b8e66bc3e86297010e96
Revert "fix: Invoke cancel, only if the stream is not closed (#55684)" (#55764) This is causing test failures [x-ref](https://github.com/vercel/next.js/actions/runs/6266707570/job/17018892465#step:29:704) [x-ref](https://github.com/vercel/next.js/actions/runs/6266641982/job/17018064501#step:29:670)
[ { "path": "packages/next/src/server/pipe-readable.ts", "patch": "@@ -58,7 +58,7 @@ export async function pipeReadable(\n // will also ensure the read promise rejects and frees our resources.\n if (!readerDone) {\n readerDone = true\n- if (!reader.closed) reader.cancel().catch(() => {})\n+...
2023-09-21T21:17:18
rust-lang/rust
9c683d3487d8966dad182bc7ad2524bf0bb6d797
c061e73d9ff3fa07dcb005a40453e124302bdeb8
Implement `floor` and `ceil` in assembly on `i586` Fixes: https://github.com/rust-lang/compiler-builtins/issues/837 The assembly is based on - https://github.com/NetBSD/src/blob/20433927938987dd64c8f6aa46904b7aca3fa39e/lib/libm/arch/i387/s_floor.S - https://github.com/NetBSD/src/blob/20433927938987dd64c8f6aa46904b7a...
[ { "path": "library/compiler-builtins/libm-test/src/precision.rs", "patch": "@@ -271,18 +271,6 @@ impl MaybeOverride<(f32,)> for SpecialCase {\n \n impl MaybeOverride<(f64,)> for SpecialCase {\n fn check_float<F: Float>(input: (f64,), actual: F, expected: F, ctx: &CheckCtx) -> CheckAction {\n- if ...
2025-07-27T21:27:40
golang/go
7bad61554ec6da4ba4cbad443074360408890603
f38a580a51cd2fc072aabc9dd45b9e0a85064c81
runtime: write much more direct test for semaphore waiter scalability This test originally existed as two tests in test/locklinear.go, but this checked against actual locks and was flaky. The test was checking a property of a deep part of the runtime but from a much higher level, and it's easy for nondeterminism due t...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -1163,10 +1163,38 @@ var Semacquire = semacquire\n var Semrelease1 = semrelease1\n \n func SemNwait(addr *uint32) uint32 {\n-\troot := semroot(addr)\n+\troot := semtable.rootFor(addr)\n \treturn atomic.Load(&root.nwait)\n }\n \n+const SemTableSize = semTa...
2022-06-16T20:33:35
electron/electron
7c48dd54e1461e1d1255dcc8f99c9f14f81ff51d
5968346c1e5d1e58adb778d11ddde8a9025c23e2
ZH_TW docs api/structures/cookie add (#7793) * Update cookie.md * Update cookie.md * Update task.md * ZH_TW docs /structures/cookie add * Fix a word && add new docs * Update task.md * Update cookie.md
[ { "path": "docs-translations/zh-TW/api/structures/cookie.md", "patch": "@@ -0,0 +1,11 @@\n+# Cookie 物件\n+\n+* `name` 字串 - cookie 的名字。\n+* `value` 字串 - cookie 的值。\n+* `domain` 字串 - cookie 的域名。\n+* `hostOnly` 字串 - cookie 是否為 Host-Only.。\n+* `path` 字串 - cookie 的路徑。\n+* `secure` 布林 - cookie 的網域是否安全 (https)。\n+*...
2016-10-31T16:21:43
facebook/react
4a79a718a35c4384819ef004a4ae5c06c5e97b4d
e293f998a163db78cfea0f3b3f121d91807920d0
Rename and fix typo
[ { "path": "docs/_posts/2013-06-05-why-react.md", "patch": "@@ -53,9 +53,8 @@ efficiently as possible, we diff the return value from the previous call to\n `render` with the new one, and generate a minimal set of changes to be applied\n to the DOM.\n \n-> &nbsp;\n > The data returned from `render` is neither...
2013-06-05T15:46:51
nodejs/node
67e067eb0658281b647ff68a5a9e64ea2cfdb706
4fefd181c759f3e8a7297bb3f9203d2c7841b14a
fs: watch signals for recursive incompatibility This pull request makes fs.watch throw exception, whenever it is used in an incompatible platform. For this change following changes were made to api: 1.a new error type has been introduced. 2.fs.watch has been changed accordingly. Users who use recursive on non-windo...
[ { "path": "doc/api/errors.md", "patch": "@@ -2412,6 +2412,12 @@ The `--entry-type=...` flag is not compatible with the Node.js REPL.\n Used when an [ES Module][] loader hook specifies `format: 'dynamic'` but does\n not provide a `dynamicInstantiate` hook.\n \n+<a id=\"ERR_FEATURE_UNAVAILABLE_ON_PLATFORM\"><...
2019-10-12T09:23:07
rust-lang/rust
81bdfd39106bf2c6cd8caac4709a8465268016ff
d846d615aaed6bf923fff012507b8b2f95c52d8c
fix: Consider all produced artifacts for proc-macro dylib search
[ { "path": "src/tools/rust-analyzer/crates/base-db/src/input.rs", "patch": "@@ -31,7 +31,7 @@ pub enum ProcMacroLoadingError {\n Disabled,\n FailedToBuild,\n ExpectedProcMacroArtifact,\n- MissingDylibPath(Box<[String]>),\n+ MissingDylibPath,\n NotYetBuilt,\n NoProcMacros,\n Proc...
2025-07-27T21:21:42
vercel/next.js
ea01649a478a0b9ab224b8e66bc3e86297010e96
4e877c01ba3166922d37189e317f5afbe33c8795
fix: Invoke cancel, only if the stream is not closed (#55684)
[ { "path": "packages/next/src/server/pipe-readable.ts", "patch": "@@ -58,7 +58,7 @@ export async function pipeReadable(\n // will also ensure the read promise rejects and frees our resources.\n if (!readerDone) {\n readerDone = true\n- reader.cancel().catch(() => {})\n+ if (!reader.cl...
2023-09-21T20:14:44
facebook/react
6012e94e502471a429d3fac1f88a1aa2507c5f20
b441dcd6f04e5ed8f4fc83a1f3408bd9f512adda
Make unmountAndReleaseReactRootNode not throw When there isn't any React node in the DOM, unmountAndReleaseReactRootNode threw an exception because component was undefined. Instead, return whether we were able to unmount the component.
[ { "path": "src/core/ReactMount.js", "patch": "@@ -196,10 +196,14 @@ var ReactMount = {\n unmountAndReleaseReactRootNode: function(container) {\n var reactRootID = getReactRootID(container);\n var component = instanceByReactRootID[reactRootID];\n- // TODO: Consider throwing if no `component` was...
2013-06-04T21:36:16
nodejs/node
4fefd181c759f3e8a7297bb3f9203d2c7841b14a
8d14a8cbcee313591138d233e9944664ea6186bc
doc: further fix async iterator example Further fixes an issue with the async iterator example where an incorrect assumption was made in regards that drain or error is always invoked after !write(). Fixes: https://github.com/nodejs/node/issues/31365 PR-URL: https://github.com/nodejs/node/pull/31367 Reviewed-By: Matt...
[ { "path": "doc/api/stream.md", "patch": "@@ -2682,12 +2682,22 @@ const finished = util.promisify(stream.finished);\n \n const writable = fs.createWriteStream('./file');\n \n+function drain(writable) {\n+ if (writable.destroyed) {\n+ return Promise.reject(new Error('premature close'));\n+ }\n+ return P...
2020-01-15T09:29:06
vercel/next.js
4e877c01ba3166922d37189e317f5afbe33c8795
67294fcb9d5a9819ceaa5cd7c769ff340d5717eb
test(fixture): prevent start failure teardowns whole process (#55760) ### What? In some test failures we've been observing test result is not written at all like ``` Failed to load test output [Error: ENOENT: no such file or directory, open 'test/e2e/app-dir/edge-runtime-node-compatibility/edge-runtime-node-...
[ { "path": "test/lib/e2e-utils.ts", "patch": "@@ -196,7 +196,12 @@ export async function createNext(\n try {\n nextInstance.destroy()\n } catch (_) {}\n- process.exit(1)\n+\n+ if (process.env.NEXT_TEST_CONTINUE_ON_ERROR) {\n+ throw err\n+ } else {\n+ process.exit(1)\n+ }\n...
2023-09-21T19:46:15
electron/electron
53ff706cd2b78e9c61af5be4b5f2c0f39f9c55a9
3f8e173452fd6f5384de230dee5df346c9b30c22
Upgrade brigthray for notification crash fix
[ { "path": "vendor/brightray", "patch": "@@ -1 +1 @@\n-Subproject commit 148277c5972b60fbfa839d80d227119bd3f65604\n+Subproject commit bb35b4ada1ab9285251087656a9fdef488796509", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2016-10-31T16:02:18
rust-lang/rust
296586fb026539916a39b79af9a2c3440ce93976
86ef32029427cfc4161a3fd7a51992302f7c5552
miri: for ABI mismatch errors, say which argument is the problem
[ { "path": "compiler/rustc_const_eval/messages.ftl", "patch": "@@ -128,15 +128,15 @@ const_eval_frame_note_inner = inside {$where_ ->\n \n const_eval_frame_note_last = the failure occurred here\n \n+const_eval_incompatible_arg_types =\n+ calling a function whose parameter #{$arg_idx} has type {$callee_ty}...
2025-07-27T14:24:48
nodejs/node
d6f1e395ca74c34c3729d5089f9dbe5e41eab3da
748eae93c6c27087113c22f43c9690ee573162d1
http: make --insecure-http-parser configurable per-stream or per-server From the issue: > Some servers deviate from HTTP spec enougth that Node.js can't > communicate with them, but "work" when `--insecure-http-parser` > is enabled globally. It would be useful to be able to use this > mode, as a client, only when con...
[ { "path": "doc/api/http.md", "patch": "@@ -2031,6 +2031,9 @@ Found'`.\n <!-- YAML\n added: v0.1.13\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/31448\n+ description: The `insecureHTTPParser` option is supported now.\n - version: v13.3.0\n pr-url: https://git...
2020-01-21T21:35:27
vercel/next.js
a680571d0400caa068dcd0ae1e69bbb6ffd41f02
a17c235dc95679d8ff7ade2bf46b17886608174a
Remove the left padding in `next info` output (#55704) ## Why? Although the left padding makes the output looks good in the terminal, it causes this weird alignment in almost all bug reports: ```yaml Operating System: Platform: win32 Arch: x64 Version: Windows 10 Pro Binaries: Node: 18....
[ { "path": "docs/02-app/02-api-reference/08-next-cli.mdx", "patch": "@@ -158,19 +158,19 @@ will give you information like this example:\n \n ```bash filename=\"Terminal\"\n \n- Operating System:\n- Platform: linux\n- Arch: x64\n- Version: #22-Ubuntu SMP Fri Nov 5 13:21:36 UTC 2021\n- Bin...
2023-09-21T18:26:43
facebook/react
55a83397810b5a6c061788f3cf6e2cb08853374f
a6707f158b5e7b878157b3fb0062d9159889e493
Improve blog setup * All posts under blog/ * Index @ blog/index.html * Only show excerpt on index with "continue reading" link * Date, name formatting improvements (better for humans) It could probably still use some style tweaks but I feel better about it. Moving forward, we'll use the "excerpt" feature of Jekyll w...
[ { "path": "docs/_config.yml", "patch": "@@ -12,3 +12,4 @@ exclude:\n - README.md\n - Rakefile\n baseurl: /react\n+permalink: /blog/:year/:month/:day/:title.html", "additions": 1, "deletions": 0, "language": "YAML" }, { "path": "docs/_css/react.scss", "patch": "@@ -505,6 +505,12 @@ p ...
2013-06-03T20:04:52
electron/electron
651b0c0f825ae4b67fc83c3ae19c283ae1f2711c
92f8c105d93f8bf24f0862d64331df69af5abb22
fixed a couple of typos
[ { "path": "docs/api/net.md", "patch": "@@ -136,7 +136,7 @@ Emitted when an authenticating proxy is asking for user credentials.\n \n The `callback` function is expected to be called back with user credentials:\n \n-* `usrename` String\n+* `username` String\n * `password` String\n \n ```JavaScript", "add...
2016-10-31T15:59:26
golang/go
635b1244aa7671bcd665613680f527452cac7555
ef808ae1d446700aeeb19d5aa041ca14db44c951
cmd/go: pass GOEXPERIMENT through to subtests This fixes: export GOEXPERIMENT=unified go install cmd go install std cmd go install std cmd go test -short cmd/go -run=TestScript/test_relative_import_dash_i That script test checks that runtime is non-stale, but whether it's stale depends on the setting of GOEXPER...
[ { "path": "src/cmd/go/script_test.go", "patch": "@@ -170,6 +170,7 @@ func (ts *testScript) setup() {\n \t\t\"GOCACHE=\" + testGOCACHE,\n \t\t\"GODEBUG=\" + os.Getenv(\"GODEBUG\"),\n \t\t\"GOEXE=\" + cfg.ExeSuffix,\n+\t\t\"GOEXPERIMENT=\" + os.Getenv(\"GOEXPERIMENT\"),\n \t\t\"GOOS=\" + runtime.GOOS,\n \t\t\...
2022-06-16T19:43:57
nodejs/node
d32a71542e883c0273ef6fed612f63ac57d20eff
32e7e813e93ec3d0625d315658288769e448dd99
doc: fix code display in header glitch Fixes: https://github.com/nodejs/node/issues/31451 PR-URL: https://github.com/nodejs/node/pull/31460 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell...
[ { "path": "doc/api_assets/style.css", "patch": "@@ -40,7 +40,6 @@ h6, h6 code {\n line-height: inherit;\n position: relative;\n margin: 1.5rem 0 1rem;\n- padding: inherit;\n text-rendering: optimizeLegibility;\n }\n ", "additions": 0, "deletions": 1, "language": "CSS" } ]
2020-01-22T11:43:21
vercel/next.js
a17c235dc95679d8ff7ade2bf46b17886608174a
76c9b2c4693a55b75520bf4a383719ba82f90ca7
Fix/upgrade examples data fetch (#55695) Co-authored-by: Snyk bot <19733683+snyk-bot@users.noreply.github.com>
[ { "path": "examples/data-fetch/package.json", "patch": "@@ -6,7 +6,7 @@\n \"start\": \"next start\"\n },\n \"dependencies\": {\n- \"next\": \"12.2.5\",\n+ \"next\": \"12.3.4\",\n \"react\": \"^18.2.0\",\n \"react-dom\": \"^18.2.0\"\n },", "additions": 1, "deletions": 1, "...
2023-09-21T16:15:41
facebook/react
42f8d155f8f240c457c969ac683d8b25876708ee
009c0b92002fa1aeae985c1a5c8707119a945647
Silence tests unsupported in PhantomJS. These tests can still be run in the browser using `grunt test --debug`.
[ { "path": "src/utils/__tests__/ImmutableObject-test.js", "patch": "@@ -100,20 +100,23 @@ describe('ImmutableObject', function() {\n });\n \n testDev('should prevent shallow field addition when strict', function() {\n+ if (window.callPhantom) return;\n expect(function() {\n var io = new Immu...
2013-05-28T22:26:19
electron/electron
078c924760d6524360d0d206fbec033e9fea57b0
611614c649ede3d13e01df9cef6b6e6d621ce7b9
Upgrade brightray for notification crash fix
[ { "path": "vendor/brightray", "patch": "@@ -1 +1 @@\n-Subproject commit a55f26ec2f53ccd961381234c941564b4fd4403f\n+Subproject commit 148277c5972b60fbfa839d80d227119bd3f65604", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2016-10-28T18:54:06
rust-lang/rust
c5480a9096e6c0c859902f2fc7529e4119ad7124
38c61c9ae84a878ea47fb6323403aeacfd27af31
fix: Fix incorrect build script version check
[ { "path": "src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs", "patch": "@@ -499,7 +499,7 @@ impl WorkspaceBuildScripts {\n // available in current toolchain's cargo, use it to build compile time deps only.\n const COMP_TIME_DEPS_MIN_TOOLCHAIN_VERSION: se...
2025-07-27T19:22:50
golang/go
ef808ae1d446700aeeb19d5aa041ca14db44c951
32510eea742162bc8048e8eaa68c2c5b1d8712d2
expvar: don't crash if map value set to nil Fixes #52719 Change-Id: Ib032193d00664090c47ae92e7d59674ec2d0165a Reviewed-on: https://go-review.googlesource.com/c/go/+/408677 Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Russ Cox <rsc@golang.org> Run-TryBot:...
[ { "path": "src/expvar/expvar.go", "patch": "@@ -118,7 +118,12 @@ func (v *Map) String() string {\n \t\tif !first {\n \t\t\tfmt.Fprintf(&b, \", \")\n \t\t}\n-\t\tfmt.Fprintf(&b, \"%q: %v\", kv.Key, kv.Value)\n+\t\tfmt.Fprintf(&b, \"%q: \", kv.Key)\n+\t\tif kv.Value != nil {\n+\t\t\tfmt.Fprintf(&b, \"%v\", kv...
2022-05-28T14:51:56
nodejs/node
32e7e813e93ec3d0625d315658288769e448dd99
9cc747bfcea131797fbf0fcc805f1d7fa244b7da
src: use custom fprintf alike to write errors to stderr This allows printing errors that contain nul characters, for example. Fixes: https://github.com/nodejs/node/issues/28761 Fixes: https://github.com/nodejs/node/issues/31218 PR-URL: https://github.com/nodejs/node/pull/31446 Reviewed-By: James M Snell <jasnell@gma...
[ { "path": "src/debug_utils-inl.h", "patch": "@@ -83,6 +83,11 @@ std::string COLD_NOINLINE SPrintF( // NOLINT(runtime/string)\n return SPrintFImpl(format, std::forward<Args>(args)...);\n }\n \n+template <typename... Args>\n+void COLD_NOINLINE FPrintF(FILE* file, const char* format, Args&&... args) {\n+ F...
2020-01-21T19:30:35
facebook/react
c740373b311a2aa43a512f1bf53e1de72635c02a
03f92bb15573e380cdf7261e3f952b8792e4cd17
Fix some silly uses of Function.prototype.bind in jasmine-support.js.
[ { "path": "vendor/jasmine/jasmine-support.js", "patch": "@@ -37,7 +37,7 @@ var _xit = jasmine.Env.prototype.xit;\n jasmine.Env.prototype.it = function(desc, func) {\n // If spec is provided, only run matching specs\n if (!spec || desc.match(new RegExp(spec, 'i'))) {\n- return _it.bind(this, desc, fun...
2013-05-28T17:04:45
vercel/next.js
69a887863107beca3211bc614aa0eb57c0a81c89
bca6ff77f953f2f5c1c1a185fa026d607c81bd42
Feedback: Remove line saying server actions is dynamic-only (#55746) - Removes a line from next docs that is no longer accurate: > Currently, if a route uses a Server Action, it is required to render dynamically. According With the release of Next.js 13.5, Server Actions now work with fully static routes (inclu...
[ { "path": "docs/02-app/01-building-your-application/02-data-fetching/03-forms-and-mutations.mdx", "patch": "@@ -43,7 +43,6 @@ module.exports = {\n > - Forms calling Server Actions from Server Components can function without JavaScript.\n > - Forms calling Server Actions from Client Components will queue sub...
2023-09-21T15:43:42
electron/electron
dda3fcef91381d31459cd7cdf157eb5c42b201b2
92f8c105d93f8bf24f0862d64331df69af5abb22
Add failing spec for notification permission crash
[ { "path": "spec/fixtures/pages/permissions/notification.html", "patch": "@@ -0,0 +1,10 @@\n+<script>\n+var n1 = new Notification('Electron Notification.requestPermission test 1')\n+var n2 = new Notification('Electron Notification.requestPermission test 2')\n+Notification.requestPermission().then((result) =>...
2016-10-28T17:34:11
golang/go
1d9d99b7ce279f2af928f79cbc5906d99f29bb67
bcce8ef4982cf29715895277ad84aaf16991e06b
cmd/link: consider alignment in carrier symbol size calculation Currently, when we calculate the size of a carrier symbol, we use the previous symbol's end address as the start. But the symbol actually starts after applying the alignment. Do this in the size calculation. Should fix AIX build. Updates #53372. Change...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1854,6 +1854,9 @@ func (state *dodataState) allocateDataSections(ctxt *Link) {\n \t}\n \tfor _, symn := range sym.ReadOnly {\n \t\tsymnStartValue := state.datsize\n+\t\tif len(state.data[symn]) != 0 {\n+\t\t\tsymnStartValue = aligndatsize(state, sy...
2022-06-16T15:35:40
facebook/react
a32276e400785fdeafdfb2685cd8154aa4a7cc38
83b8ad7a312b425f75ba2cc2a5773d6dc2a053f8
Fix bug in todomvc
[ { "path": "examples/todomvc/js/app.js", "patch": "@@ -33,10 +33,10 @@ function cx(obj) {\n \n var TodoItem = React.createClass({\n handleSubmit: React.autoBind(function() {\n- var val = this.refs.editField.getDOMNode().value.trim();\n+ var val = this.state.editText;\n if (val) {\n this.pro...
2013-06-03T07:44:20
nodejs/node
9cc747bfcea131797fbf0fcc805f1d7fa244b7da
f6c6236d956be763ffe8eb1420e19eaab2962e8d
src: add C++-style sprintf utility Add an utility that handles C++-style strings and objects well. PR-URL: https://github.com/nodejs/node/pull/31446 Fixes: https://github.com/nodejs/node/issues/28761 Fixes: https://github.com/nodejs/node/issues/31218 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gus Cap...
[ { "path": "node.gyp", "patch": "@@ -608,6 +608,7 @@\n 'src/connect_wrap.h',\n 'src/connection_wrap.h',\n 'src/debug_utils.h',\n+ 'src/debug_utils-inl.h',\n 'src/env.h',\n 'src/env-inl.h',\n 'src/handle_wrap.h',", "additions": 1, "deletions": 0, ...
2020-01-21T17:30:20
vercel/next.js
bca6ff77f953f2f5c1c1a185fa026d607c81bd42
fabab8cf05da106410d97d818adf2f6b4742d614
fix(cna): separate `dependencies`/`devDependencies` (#55730) ### What? As [discussed](https://vercel.slack.com/archives/C04DUD7EB1B/p1692183798097169), we should follow the ecosystem standard separation of dependencies and dev dependencies. ### Why? This is a common issue/misunderstanding that we always have to exp...
[ { "path": "packages/create-next-app/create-app.ts", "patch": "@@ -215,7 +215,7 @@ export async function createApp({\n console.log('Installing packages. This might take a couple of minutes.')\n console.log()\n \n- await install(root, null, { packageManager, isOnline })\n+ await install(...
2023-09-21T15:30:37
golang/go
bcce8ef4982cf29715895277ad84aaf16991e06b
ecc268aa26b81cb53f2f6f62ea9d074a610771fe
spec: adjust incorrect sentence in section on rune literals Add an additional example. Fixes #53217. Change-Id: I899376b9c1fa8dc5d475d8d3d6c8788ab79b0847 Reviewed-on: https://go-review.googlesource.com/c/go/+/412238 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> Auto-S...
[ { "path": "doc/go_spec.html", "patch": "@@ -502,8 +502,9 @@ <h3 id=\"Rune_literals\">Rune literals</h3>\n </pre>\n \n <p>\n-All other sequences starting with a backslash are illegal inside rune literals.\n+An unrecognized character following a backslash in a rune literal is illegal.\n </p>\n+\n <pre class=\...
2022-06-15T05:08:31
nodejs/node
f6c6236d956be763ffe8eb1420e19eaab2962e8d
8c313ceedfcc337f05022ffaabf2e42ef26d0cdf
crypto: improve errors in DiffieHellmanGroup 1. The DiffieHellmanGroup class is only instantiated from within Node.js, which always passes exactly one argument. 2. Use the existing ERR_CRYPTO_UNKNOWN_DH_GROUP error code for the existing "Unknown group" error. The message has not been changed to prevent breaki...
[ { "path": "src/node_crypto.cc", "patch": "@@ -5679,18 +5679,15 @@ void DiffieHellman::DiffieHellmanGroup(\n Environment* env = Environment::GetCurrent(args);\n DiffieHellman* diffieHellman = new DiffieHellman(env, args.This());\n \n- if (args.Length() != 1) {\n- return THROW_ERR_MISSING_ARGS(env, \"...
2020-01-21T19:14:15
vercel/next.js
fabab8cf05da106410d97d818adf2f6b4742d614
5daf2ee572aa106cf143f421cf7bd2e0c742eb36
improve CI log (#55736) ### What? * expands the first test failure * uses an ❌ emoji for visibility * adds (killed) to killed processes to not confuse them with errors ![image](https://github.com/vercel/next.js/assets/1365881/4735124b-ad76-4664-93ea-b893d41e8abd) Closes WEB-1623
[ { "path": "run-tests.js", "patch": "@@ -325,6 +325,8 @@ ${ENDGROUP}`)\n '.bin',\n `jest${process.platform === 'win32' ? '.CMD' : ''}`\n )\n+ let firstError = true\n+ let killed = false\n \n const runTest = (test = '', isFinalRun, isRetry) =>\n new Promise((resolve, reject) => {\n@@ -411,13...
2023-09-21T15:07:00
electron/electron
4ee308fcc277d3443c3b65edb4a648d595411ce1
dfefa00a50213fc6d453293547cf58ecb3f0a0b8
Quick fix up of net docs
[ { "path": "docs/api/net.md", "patch": "@@ -74,7 +74,7 @@ interface and it is therefore an [EventEmitter](https://nodejs.org/api/events.ht\n \n ### `new ClientRequest(options)`\n \n-* `options` Object or String - If `options` is a String, it is interpreted as\n+* `options` (Object | String) - If `options` is...
2016-10-31T01:43:57
facebook/react
a78f752143cc8f54647df4ee0ea4e5e0c31ebd58
a70d567ec6f6e93acef7b40c536d7af526f8d6a3
Fix live_editor.js usage of class=
[ { "path": "docs/_js/live_editor.js", "patch": "@@ -81,7 +81,7 @@ var ReactPlayground = React.createClass({\n />;\n } else if (this.state.mode === this.MODES.JS) {\n content =\n- <div class={{playgroundJS: true, playgroundStage: true}}>\n+ <div class=\"playgroundJS playgroundS...
2013-06-01T03:50:21
golang/go
b6c16068897c370661f03af91e8ba46860408e61
91baf5ceccc363c21925aee8611c2c279806238b
internal/goarch, internal/goos: update generators for syslist.go Update the generator programs for the changes to syslist.go in CL 390274 and the changes to the generated files in CL 344955. Tested by running the programs and verifying that the files did not change. Fixes #53299 Change-Id: I2b2c5769f7e9283aa05c8032...
[ { "path": "src/go/build/syslist.go", "patch": "@@ -4,6 +4,10 @@\n \n package build\n \n+// Note that this file is read by internal/goarch/gengoarch.go and by\n+// internal/goos/gengoos.go. If you change this file, look at those\n+// files as well.\n+\n // knownOS is the list of past, present, and future kno...
2022-06-08T23:33:45
nodejs/node
085a5c7638d7783afd706889dbc2b57976d5061f
ab6ab9c271ac7c77e03c81f21428739ba4e7f2f6
benchmark: fix getStringWidth() benchmark 8fb5fe28a45cc884567cd39e3b2f6b4272917af broke the benchmark for getStringWidth(). This fixes it up by updating the argument to `require()` to retrieve `getStringWidth()` from the new internal module location. PR-URL: https://github.com/nodejs/node/pull/31476 Reviewed-By: Anna...
[ { "path": "benchmark/misc/getstringwidth.js", "patch": "@@ -12,7 +12,7 @@ const bench = common.createBenchmark(main, {\n function main({ n, type }) {\n // Default value for testing purposes.\n type = type || 'ascii';\n- const { getStringWidth } = require('internal/readline/utils');\n+ const { getStrin...
2020-01-23T14:30:01
facebook/react
0c6bbf275bb14a0b37426a5caf3dfd31753d36f3
b20a7c2bebedea471b6589f060ca48a170ee3dba
Ship CJS modules instead of browserified build It turns out that if you try to browserify a file requiring react-tools, it doesn't work. This is because browserify just visits the require statements in the file and looks for files in that path. ./ReactCompositeComponent doesn't exist and that's the point that fails. S...
[ { "path": "main.js", "patch": "@@ -1,6 +1,6 @@\n 'use strict';\n \n-var React = require('./build/react');\n+var React = require('./build/modules/React');\n var visitors = require('./vendor/fbtransform/visitors').transformVisitors;\n var transform = require('./vendor/fbtransform/lib/transform').transform;\n ...
2013-05-31T17:57:40
golang/go
91baf5ceccc363c21925aee8611c2c279806238b
0e3d0c9581d1d31a94f5c70a528ff0bdba5c523d
reflect: fix reference comment to runtime/map.go Change-Id: Icb552dc7106afbf6bd4bd3660d632f174153f834 Reviewed-on: https://go-review.googlesource.com/c/go/+/408914 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit:...
[ { "path": "src/reflect/type.go", "patch": "@@ -2232,7 +2232,7 @@ func hashMightPanic(t *rtype) bool {\n \t}\n }\n \n-// Make sure these routines stay in sync with ../../runtime/map.go!\n+// Make sure these routines stay in sync with ../runtime/map.go!\n // These types exist only for GC, so we only fill out ...
2022-05-26T20:49:07
vercel/next.js
5daf2ee572aa106cf143f421cf7bd2e0c742eb36
ade8d7cdc4b1b3d85bdf93728116a87c234adf95
fix(ts): allow auto-import of `next/navigation` (#55743) Fix auto-import of `next/navigation` when a method is referenced in VSCode Closes NEXT-1649 Fixes #55741
[ { "path": "packages/next/index.d.ts", "patch": "@@ -10,6 +10,7 @@\n /// <reference path=\"./head.d.ts\" />\n /// <reference path=\"./image.d.ts\" />\n /// <reference path=\"./link.d.ts\" />\n+/// <reference path=\"./navigation.d.ts\" />\n /// <reference path=\"./router.d.ts\" />\n /// <reference path=\"./sc...
2023-09-21T14:25:13
nodejs/node
ab6ab9c271ac7c77e03c81f21428739ba4e7f2f6
96058f33a9c72796930a77c97018fda2cbb5ed03
tls: simplify errors using ThrowCryptoError PR-URL: https://github.com/nodejs/node/pull/31436 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Rich Trott <rtrott@gma...
[ { "path": "src/node_crypto.cc", "patch": "@@ -733,19 +733,14 @@ void SecureContext::SetKey(const FunctionCallbackInfo<Value>& args) {\n \n if (!key) {\n unsigned long err = ERR_get_error(); // NOLINT(runtime/int)\n- if (!err) {\n- return env->ThrowError(\"PEM_read_bio_PrivateKey\");\n- }\n...
2020-01-21T13:52:29
rust-lang/rust
9339d8cac3e6ea8c10ad11c581f8cfed5014d89e
887b500e2319c11f25284b0709f321209b687877
Fix typo non_std_lazy_statics.rs Changes `MaybeIncorret` to `MaybeIncorrect`. And since this is part of a doc comment, it might as well be a link. changelog: none
[ { "path": "clippy_lints/src/non_std_lazy_statics.rs", "patch": "@@ -49,7 +49,7 @@ declare_clippy_lint! {\n /// Some functions could be replaced as well if we have replaced `Lazy` to `LazyLock`,\n /// therefore after suggesting replace the type, we need to make sure the function calls can be\n /// replaced, ...
2025-07-27T12:55:33
electron/electron
a0772dbbe9957474e4a9397d256f624deb9f2706
f603e472269b3084d1122d1ab32b496c205bd942
fix link to Mac debug instructions
[ { "path": "docs/README.md", "patch": "@@ -96,7 +96,7 @@ an issue:\n * [Build Instructions (macOS)](development/build-instructions-osx.md)\n * [Build Instructions (Windows)](development/build-instructions-windows.md)\n * [Build Instructions (Linux)](development/build-instructions-linux.md)\n-* [Debug Instruc...
2016-10-28T21:32:48
golang/go
74bf90c779b3d4a4babd3e3de38e3d3e5d9dd7de
0cd0c12f576a3be39f44d20145eba334adce0bba
go/types, types2: add test case for issue for coverage The specific error doesn't occur anymore. Add a test to prevent regressions. For #50729. Change-Id: Ibf6ef6009b3d226b4f345b5a5657939915f19633 Reviewed-on: https://go-review.googlesource.com/c/go/+/412235 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by...
[ { "path": "src/cmd/compile/internal/types2/testdata/fixedbugs/issue50729.go", "patch": "@@ -0,0 +1,19 @@\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package p\n+\n+// version 1\n+var...
2022-06-15T02:01:04
nodejs/node
30173c608749d973db6eae9930b7a10bcd80b2d3
c150f9da7e52701d48aa12c2c1930b490c097a7b
deps: uvwasi: cherry-pick eea4508 Original commit message: prevent race conditions with uvwasi_fd_close() uvwasi_fd_close() performed the following operations: - lock the file descriptor mutex - close the file - release the file descriptor mutex - call the file table's remove() function ...
[ { "path": "deps/uvwasi/include/fd_table.h", "patch": "@@ -56,9 +56,9 @@ uvwasi_errno_t uvwasi_fd_table_get_nolock(struct uvwasi_fd_table_t* table,\n struct uvwasi_fd_wrap_t** wrap,\n uvwasi_rights_t rights_base,\n ...
2020-01-22T04:08:38
facebook/react
de2832c0c0ec1b54f06334ae25a0bf8fc947dc9e
d40704ab851069274f9e68ec4d8a7f8ca48a0ad8
Only re-write docs _config on version bumps Doesn't fix, but mostly addresses the concerns in #24. Some churn at version bumps is far better than what we have right now.
[ { "path": "docs/Rakefile", "patch": "@@ -23,8 +23,10 @@ desc \"update version to match ../package.json\"\n task :update_version do\n react_version = JSON.parse(File.read('../package.json'))['version']\n site_config = YAML.load_file('_config.yml')\n- site_config['react_version'] = react_version\n- File...
2013-05-30T21:42:51
golang/go
937fa5000a7bb07ed62d35a1aea9ea0819659084
c2c76c6f198480f3c9aece4aa5d9b8de044d8457
net/netip: add missing ) in ParsePrefix errors The existing error messages didn't add right parenthesis ')' properly leading to improper formation of error messages. Fixes #53283 Change-Id: Iadf9b8059403efa07e39716a81fab68cd10b7f87 Reviewed-on: https://go-review.googlesource.com/c/go/+/411015 Auto-Submit: Tobias Kla...
[ { "path": "src/net/netip/netip.go", "patch": "@@ -1310,14 +1310,14 @@ func ParsePrefix(s string) (Prefix, error) {\n \tbitsStr := s[i+1:]\n \tbits, err := strconv.Atoi(bitsStr)\n \tif err != nil {\n-\t\treturn Prefix{}, errors.New(\"netip.ParsePrefix(\" + strconv.Quote(s) + \": bad bits after slash: \" + st...
2022-06-08T09:38:33
facebook/react
071201e84b240859073dcfb941a2f6250e3f30a2
15d8200b135c79e363a36d0c7624321155a80e29
fixes
[ { "path": "docs/_includes/nav_docs.html", "patch": "@@ -17,8 +17,8 @@ <h3>Reference</h3>\n <li><a href=\"/react/docs/component-lifecycle.html\"{% if page.id == 'docs-component-lifecycle' %} class=\"active\"{% endif %}>Component Lifecycle</a></li>\n <li><a href=\"/react/docs/event-handling.html\"...
2013-05-30T21:22:05