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 | 195cb9172106cb8200e0744d5db7266697f309b7 | 8e9b98360a8242847315937baa37417395779038 | Make crashesDirectory optional | [
{
"path": "docs/api/crash-reporter.md",
"patch": "@@ -46,7 +46,7 @@ The `crashReporter` module has the following methods:\n * `extra` Object (optional) - An object you can define that will be sent along with the\n report. Only string properties are sent correctly. Nested objects are not\n supporte... | 2017-09-08T03:21:35 |
vercel/next.js | 78c9793a53a449b33a3da4c45cbf6cd92f75e395 | b2b654dba76f61b0c18ad495d01fc3465b91b5ce | fix useSelectedLayoutSegment's support for parallel routes (#60912)
fixes NEXT-2173
Fixes #59968
### TODOs
- [x] recreate [repro](https://github.com/williamli/nextjs-NEXT-2173)
- [x] patch `useSelectedLayoutSegment` to support parallel routes (see
"What")
- [x] check `useSelectedLayoutSegments` to see if it... | [
{
"path": "packages/next/src/client/components/navigation.ts",
"patch": "@@ -12,7 +12,7 @@ import {\n } from '../../shared/lib/hooks-client-context.shared-runtime'\n import { clientHookInServerComponentError } from './client-hook-in-server-component-error'\n import { getSegmentValue } from './router-reducer... | 2024-01-23T23:53:45 |
nodejs/node | 186230527b2703652a7b1ff6faeb19bc20a5ed37 | f3b484652731f7782fd077b5e1e7d6804caed2f8 | quic: fix error message on invalid connection ID
If Buffer.from() throws, it does not return a value, so the error
message is always going to report `undefined`. Use the value passed to
Buffer.from() instead.
PR-URL: https://github.com/nodejs/node/pull/35026
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed... | [
{
"path": "lib/internal/quic/util.js",
"patch": "@@ -405,11 +405,11 @@ function validateQuicClientSessionOptions(options = {}) {\n if (typeof dcid_value === 'string') {\n // If it's a string, it must be a hex encoded string\n try {\n- dcid = Buffer.from(dcid_value, 'hex');\n+ B... | 2020-09-03T04:44:15 |
electron/electron | 511e82de6723bf1e89365bbc38d15bf454069691 | 5bb7b4bb429d7062b0c03af61540f299c02d49bd | Fix missing extension when saving a file without filters
Previously, when triggering the save dialog through e.g. `<a download>`
links (e.g. http://jsfiddle.net/koldev/cW7W5/), the extension was only
saved if Finder was set to show all extensions by default. We now always
display the extension to make sure that it is ... | [
{
"path": "atom/browser/ui/file_dialog_mac.mm",
"patch": "@@ -40,7 +40,6 @@ void SetAllowedFileTypes(NSSavePanel* dialog, const Filters& filters) {\n if ([file_type_set count])\n file_types = [file_type_set allObjects];\n \n- [dialog setExtensionHidden:NO];\n [dialog setAllowedFileTypes:file_types]... | 2017-09-07T23:43:37 |
vercel/next.js | 6c611fe9a89cbf9c6690e9ee28207941281001d3 | 71335a9912b245158dc35024c9f046f54d67928c | fix(image): warn when animated image is missing `unoptimized` prop (#61045)
This PR adds a warning when attempting to optimize an animated image.
```jsx
<Image src="/image.gif" />
```
The warning looks like the following:
```
The requested resource "/image.gif" is an animated image so it will not be optimi... | [
{
"path": "packages/next/src/server/image-optimizer.ts",
"patch": "@@ -599,11 +599,17 @@ export async function imageOptimizer(\n '\"url\" parameter is valid but image type is not allowed'\n )\n }\n- const vector = VECTOR_TYPES.includes(upstreamType)\n- const animate =\n- ANIMATA... | 2024-01-23T22:31:33 |
facebook/react | 4485f6a43904d87ba7fe0f0d0bb8fe7c81cbe755 | 098f316aff44f9e53fdae28873f9f03edea25430 | Fix jsx_orphaned_brackets_transformer using jstransformer with an older esprima version | [
{
"path": "npm-jsx_orphaned_brackets_transformer/package.json",
"patch": "@@ -4,9 +4,8 @@\n \"version\": \"1.0.0\",\n \"main\": \"run.js\",\n \"dependencies\": {\n- \"esprima-fb\": \"10001.1.0-dev-harmony-fb\",\n \"graceful-fs\": \"~2.0.0\",\n- \"jstransform\": \"~2.0.1\",\n+ \"jstransfor... | 2015-03-11T22:40:09 |
vercel/next.js | 71335a9912b245158dc35024c9f046f54d67928c | 78adcd4cddd93e0277973e19c8c40fea1440413d | fix parallel route top-level catch-all normalization logic to support nested explicit (non-catchall) slot routes (#60776)
Fix NEXT-2165
### What?
Addresses the limitation of #60240, where a dummy `default` file is
required in parallel route child slot to prevent errors in dev server
rendering (`TypeError: Cann... | [
{
"path": "packages/next/src/build/normalize-catchall-routes.test.ts",
"patch": "@@ -128,6 +128,61 @@ describe('normalizeCatchallRoutes', () => {\n expect(appPaths).toMatchObject(initialAppPaths)\n })\n \n+ it('should not add the catch-all route to segments that have a more specific [dynamicRoute]', ... | 2024-01-23T22:11:13 |
golang/go | a650e399dfc2435eb18efc430a70cba9d87cec73 | ea4631cc0cf301c824bd665a7980c13289ab5c9d | testing: fix error message when a parallel Cleanup calls runtime.Goexit
Fixes #48502
Change-Id: I6054b043ebd2237e19897fdf1234b311d19facc7
Reviewed-on: https://go-review.googlesource.com/c/go/+/352350
Reviewed-by: Joedian Reid <joedian@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Changkun Ou ... | [
{
"path": "src/testing/panic_test.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"regexp\"\n+\t\"runtime\"\n \t\"strings\"\n \t\"testing\"\n )\n@@ -208,3 +209,42 @@ func TestPanicHelper(t *testing.T) {\n \t\t})\n \t}\n }\n+\n+func TestMorePanic(t *testing.T) {\n+\ttestenv.MustHave... | 2021-09-27T10:06:43 |
facebook/react | f8672c727018264d064b580afb5065f941d5fd7f | d9e06462a336c8c6df501ab33de42add307444f7 | Fix grammar in warning message | [
{
"path": "src/classic/element/ReactElementValidator.js",
"patch": "@@ -250,7 +250,7 @@ function checkPropTypes(componentName, propTypes, props, location) {\n warning(\n !error || error instanceof Error,\n '%s: type specification of %s `%s` is invalid; the type checker ' +\n- 'f... | 2015-03-11T22:47:04 |
electron/electron | 54bd60d657c0f09aa9e4cb910dfb14bfffc17609 | 5bb7b4bb429d7062b0c03af61540f299c02d49bd | add crashesDirectory to crash reporter options | [
{
"path": "docs/api/crash-reporter.md",
"patch": "@@ -46,6 +46,7 @@ The `crashReporter` module has the following methods:\n * `extra` Object (optional) - An object you can define that will be sent along with the\n report. Only string properties are sent correctly. Nested objects are not\n supporte... | 2017-09-07T04:07:28 |
vercel/next.js | 78adcd4cddd93e0277973e19c8c40fea1440413d | 48d3aaa649a8d0cf47ac2dda574a69253ee7b10f | fix: github reproduction link validation (#61026)
### What?
In this PR #60988, I think (please correct me if I'm wrong) it was meant
to block GitHub reproduction links like `https://github.com/username` &
`https://github.com`. However, the last regex `github.com` will block
all the github.com links
### Why?
So... | [
{
"path": ".github/workflows/issue_validator.yml",
"patch": "@@ -30,7 +30,7 @@ jobs:\n }\n reproduction-comment: '.github/invalid-link.md'\n reproduction-hosts: 'github.com,codesandbox.io'\n- reproduction-blocklist: 'github.com/vercel/next.js.*,github.com/\\\\w*/?$,g... | 2024-01-23T21:48:15 |
nodejs/node | 3b925219c341062a9fc648049e217fea79f0ea3d | 07423b5472c27d86b4b8047d150d75756ad01f3c | querystring: manage percent character at unescape
Related: https://github.com/nodejs/node/issues/33892
Fixes: https://github.com/nodejs/node/issues/35012
PR-URL: https://github.com/nodejs/node/pull/35013
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Rich ... | [
{
"path": "lib/querystring.js",
"patch": "@@ -94,13 +94,13 @@ function unescapeBuffer(s, decodeSpaces) {\n hexHigh = unhexTable[currentChar];\n if (!(hexHigh >= 0)) {\n out[outIndex++] = 37; // '%'\n+ continue;\n } else {\n nextChar = s.charCodeAt(++index);\n ... | 2020-09-01T18:23:13 |
facebook/react | d973e32336913b8dd5cbc1fb5d7caaed31ea2cf8 | a5bdc92990fe418fb52df0e3a53b26bcfdbcf909 | [PropTypes] Add warnings if PropTypes return functions
Summary:
Right now, if a component specifies a propType as, for example,
`myProp: React.PropTypes.shape`, without an actual shape
parameter, any prop type will be accepted, because
`React.PropTypes.shape` returns a function (the actual validator),
not an Error, cu... | [
{
"path": "src/classic/element/ReactElementValidator.js",
"patch": "@@ -247,6 +247,18 @@ function checkPropTypes(componentName, propTypes, props, location) {\n } catch (ex) {\n error = ex;\n }\n+ warning(\n+ !error || error instanceof Error,\n+ '%s: the type of %s `%s`... | 2015-03-10T22:21:52 |
golang/go | ea4631cc0cf301c824bd665a7980c13289ab5c9d | 40bdcbb483548c0b660503c3ba80f9676b98fd5f | internal/godebug: define more efficient API
We have been expanding our use of GODEBUG for compatibility,
and the current implementation forces a tradeoff between
freshness and efficiency. It parses the environment variable
in full each time it is called, which is expensive. But if clients
cache the result, they won't ... | [
{
"path": "src/cmd/go/go_test.go",
"patch": "@@ -2348,9 +2348,11 @@ func TestUpxCompression(t *testing.T) {\n \t}\n }\n \n+var gocacheverify = godebug.New(\"gocacheverify\")\n+\n func TestCacheListStale(t *testing.T) {\n \ttooSlow(t)\n-\tif godebug.Get(\"gocacheverify\") == \"1\" {\n+\tif gocacheverify.Valu... | 2022-11-11T17:36:31 |
vercel/next.js | 48d3aaa649a8d0cf47ac2dda574a69253ee7b10f | 59e042a9a79e68e638055377a24a2ebd40345f1c | Disable Yarn PnP tests for Turbopack (#61040)
## What?
We won't have support for Yarn PnP in the first version of Next.js with
Turbopack as it requires every resolve to go through Node.js.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possib... | [
{
"path": "test/e2e/yarn-pnp/test/with-eslint.test.ts",
"patch": "@@ -1,5 +1,4 @@\n import { runTests } from './utils'\n-\n-describe('yarn PnP', () => {\n+;(process.env.TURBOPACK ? describe.skip : describe)('yarn PnP', () => {\n runTests('with-eslint', '/', ['<html', 'Home', 'fake-script'])\n })",
"ad... | 2024-01-23T20:25:20 |
nodejs/node | ef4e3b5f69450fc18eea6bdfbf8b2b9d4286e55c | d0ee7d66bcd4c59baa2d87043688c08074586bb4 | doc: error code fix in resolver spec
PR-URL: https://github.com/nodejs/node/pull/34998
Reviewed-By: Jan Krems <jan.krems@gmail.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org> | [
{
"path": "doc/api/esm.md",
"patch": "@@ -1038,7 +1038,7 @@ _conditions_)\n > 1. Otherwise, throw an _Invalid Package Target_ error.\n > 1. If _target_ split on _\"/\"_ or _\"\\\\\"_ contains any _\".\"_, _\"..\"_ or\n > _\"node_modules\"_ segments after the first segment, throw an\n-> ... | 2020-08-31T18:40:55 |
facebook/react | c4a2e4d414da8a4a0d2fc3c1f9a80175b0c4098d | 3d8b47bbcc9ff9aed1a8c4ca7e24d46eb6e85cde | Fix module option parsing of jsx command | [
{
"path": "bin/jsx",
"patch": "@@ -44,7 +44,7 @@ require('commoner').version(\n sourceMap: this.options.sourceMapInline,\n stripTypes: this.options.stripTypes,\n es6module: this.options.es6module,\n- nonStrictEs6Module: this.options.nonStrictEs6Module,\n+ nonStrictEs6module: this.options.n... | 2015-03-11T21:26:51 |
golang/go | 40bdcbb483548c0b660503c3ba80f9676b98fd5f | c55d184151d2a1d313b96d8e835341cd1f0ec0c5 | archive/zip: don't read directories containing file data
Fixes #54801
Change-Id: I3d03516792975ddb09835b2621c57e12e7cbad35
GitHub-Last-Rev: 4faa7e14dcc48c05d707f1e137d915da24133e14
GitHub-Pull-Request: golang/go#56714
Reviewed-on: https://go-review.googlesource.com/c/go/+/449955
Run-TryBot: Ian Lance Taylor <iant@gol... | [
{
"path": "src/archive/zip/reader.go",
"patch": "@@ -197,6 +197,13 @@ func (f *File) Open() (io.ReadCloser, error) {\n \tif err != nil {\n \t\treturn nil, err\n \t}\n+\tif strings.HasSuffix(f.Name, \"/\") {\n+\t\tif f.CompressedSize64 != 0 || f.hasDataDescriptor() {\n+\t\t\treturn &dirReader{ErrFormat}, nil... | 2022-11-11T23:23:19 |
electron/electron | 6b010614e24d497b3976d5118c314d05b9e54afc | 14eea985664b6e6d11852060502ec02791732d89 | Implement moveToApplicationsFolder (#10142)
* Implement moveToApplicationsFolder
* Fix tabs / spaces
* Fix linting
* Use Browser::Quit, instead of exit
* Update documentation as per feedback
* Fix spec | [
{
"path": "atom/browser/api/atom_api_app.cc",
"patch": "@@ -54,6 +54,10 @@\n #include \"base/strings/utf_string_conversions.h\"\n #endif\n \n+#if defined(OS_MACOSX)\n+#include \"atom/browser/ui/cocoa/atom_bundle_mover.h\"\n+#endif\n+\n using atom::Browser;\n \n namespace mate {\n@@ -1072,6 +1076,16 @@ void ... | 2017-08-31T14:37:12 |
nodejs/node | 69b8a394237aeffc4af951ce099e98ef6a2e4dd2 | 449f73e05fdb17b76a11f6e122cadf80fdbdf9ba | doc: revise commit-queue.md
Make minor fixes to the text.
PR-URL: https://github.com/nodejs/node/pull/35006
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Mary Marchini <oss@mmarchini.me>
Reviewed-By: Denys Otrishko <shishugi@gmail.com>
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By... | [
{
"path": "doc/guides/commit-queue.md",
"patch": "@@ -5,19 +5,19 @@\n *tl;dr: You can land Pull Requests by adding the `commit-queue` label to it.*\n \n Commit Queue is an experimental feature for the project which simplifies the\n-landing process by automating it via GitHub Actions. With it, Collaborators ... | 2020-09-01T02:44:51 |
vercel/next.js | 59e042a9a79e68e638055377a24a2ebd40345f1c | f82445b01c885c2dce65c99043666f4a3efdbd9d | Implement client_root for edge in Turbopack (#61024)
## What?
Implements https://github.com/vercel/turbo/pull/7081. Ensures image
imports in the edge runtime have the correct asset url. Previously it
would be `/assets/file.hash.png` but it should be
`/_next/static/media/file.hash.png`.
Updates the image tests... | [
{
"path": "Cargo.lock",
"patch": "@@ -321,7 +321,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-240123.1#bdc40cb36ca98801885cab7cfd0192dfcc639b86\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2024-01-23T17:41:02 |
golang/go | 2041bde2b619c8e2cecaa72d986fc1f0d054c615 | 122a22e0e9eba7fe712030d429fc4bcf6f447f5e | spec: clarify struct field and array element comparison order
Fixes #8606.
Change-Id: I64b13b2ed61ecae4641264deb47c9f7653a80356
Reviewed-on: https://go-review.googlesource.com/c/go/+/449536
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Robert Griesemer... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of September 21, 2022\",\n+\t\"Subtitle\": \"Version of November 10, 2022\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -5083,12 +5083,16 @@ <h3 id=\"Compa... | 2022-11-10T21:50:33 |
nodejs/node | 79ea22a531c8446710b43df5f6eeb0497719f302 | b23a932bfd22cc58829dd86fb9ac8e5da7caec98 | tools,doc: fix global table of content active element
Assign active class to the correct HTML element when one nav-id is a
subset of another one (E.G.: `nav-module` and `nav-modules`).
Fixes: https://github.com/nodejs/node/issues/34975
PR-URL: https://github.com/nodejs/node/pull/34976
Reviewed-By: Derek Lewis <Derek... | [
{
"path": "tools/doc/html.js",
"patch": "@@ -74,7 +74,7 @@ function toHTML({ input, content, filename, nodeVersion, versions }) {\n .replace(/__VERSION__/g, nodeVersion)\n .replace('__TOC__', content.toc)\n .replace('__GTOC__', gtocHTML.replace(... | 2020-08-29T18:50:29 |
vercel/next.js | 2d5b7b34d65820dbfb9c5797866ddb569068d76c | 3d3dc69594efc527146d220e58bc706fd9648f0f | Add client_root for edge (vercel/turbo#7081)
### Description
Ensures edge compilation outputs the right asset urls. Currently in
Next.js with Turbopack enabled they show `/assets/file.hash.png` but it
should be relative to the `asset_prefix` and client path.
<!--
✍️ Write a short summary of your work.
If... | [
{
"path": "crates/turbopack-cli/src/dev/mod.rs",
"patch": "@@ -252,6 +252,7 @@ async fn source(\n let build_chunking_context = DevChunkingContext::builder(\n project_path,\n build_output_root,\n+ build_output_root,\n build_output_root.join(\"chunks\".to_string()),\n ... | 2024-01-23T13:41:36 |
golang/go | 122a22e0e9eba7fe712030d429fc4bcf6f447f5e | 7e4191e686c192b9c85065fd3b8775190d3e9c5f | internal/syscall/unix: use runtime.gostring for Gostring
Under the race detector, checkptr flags uses of unsafe.Slice that
result in slices that straddle multiple Go allocations.
Avoid that scenario by calling existing runtime code.
This fixes a failure on the darwin-.*-race builders introduced in
CL 446178.
Change-... | [
{
"path": "src/internal/syscall/unix/net_darwin.go",
"patch": "@@ -95,17 +95,11 @@ func GaiStrerror(ecode int) string {\n \treturn GoString((*byte)(unsafe.Pointer(r1)))\n }\n \n+// Implemented in the runtime package.\n+func gostring(*byte) string\n+\n func GoString(p *byte) string {\n-\tif p == nil {\n-\t\t... | 2022-11-11T20:42:51 |
nodejs/node | 4f7440cd88dd6e6fb08945f85fc72eec9156f5fa | e2ffa454d3ba6a5787c92c01eeff8020baa853d5 | test: remove incorrect debug() in test-policy-integrity
The instructions to use `test:policy-integrity:NUMBER` do not work, I'm
afraid. This removes them.
PR-URL: https://github.com/nodejs/node/pull/34961
Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By... | [
{
"path": "test/pummel/test-policy-integrity.js",
"patch": "@@ -380,9 +380,7 @@ for (const permutation of permutations({\n );\n }\n debug(`spawning ${tests.size} policy integrity permutations`);\n-debug(\n- 'use NODE_DEBUG=test:policy-integrity:NUMBER to log a specific permutation'\n-);\n+\n for (const c... | 2020-08-28T21:55:11 |
rust-lang/rust | 691206470b0a48fa89a8742bba21bf1034a44b54 | d327d651e2583eb601978179f2ca9808f5e243bb | rustc_codegen_ssa: Fix comment | [
{
"path": "compiler/rustc_codegen_ssa/src/back/metadata.rs",
"patch": "@@ -329,7 +329,7 @@ pub(super) fn elf_e_flags(architecture: Architecture, sess: &Session) -> u32 {\n // Source: https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/079772828bd10933d34121117a222b4cc0ee2200/riscv-elf.adoc... | 2025-08-25T08:48:39 |
vercel/next.js | a7a403f4982c4ce8dc3988bf96de4238362a704f | fc7a28a0dd946437cbd5144a57f5296e2659899f | update turbopack (#61015)
* https://github.com/vercel/turbo/pull/7067 <!-- Tobias Koppers - fix a
hanging issue with strongly consistent reads -->
* https://github.com/vercel/turbo/pull/7068 <!-- Tobias Koppers - add
lazy_remove_children feature flag -->
* https://github.com/vercel/turbo/pull/7073 <!-- OJ Kwon -
... | [
{
"path": "Cargo.lock",
"patch": "@@ -321,7 +321,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-240122.1#50ebf6858e28cd8d1447292e08f4c84bc21f0225\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2024-01-23T13:35:17 |
golang/go | 7e4191e686c192b9c85065fd3b8775190d3e9c5f | c3aac6c010f9293319ae5dbe0592bc7706b6a161 | os/exec: fix TestWaitInterrupt/WaitDelay error message
As the comments say. Here we expect err to be nil instead of ctx.Err()
Change-Id: I4cd02d62ac0a13c9577a567de36742f13d140d36
GitHub-Last-Rev: 6bedfbc9d2511140d088dc9ee5f40015725f68db
GitHub-Pull-Request: golang/go#56698
Reviewed-on: https://go-review.googlesource.... | [
{
"path": "src/os/exec/exec_test.go",
"patch": "@@ -1357,7 +1357,7 @@ func TestWaitInterrupt(t *testing.T) {\n \t\t// context expired, a successful exit is valid (even if late) and does\n \t\t// not merit a non-nil error.\n \t\tif err != nil {\n-\t\t\tt.Errorf(\"Wait: %v; want %v\", err, ctx.Err())\n+\t\t\t... | 2022-11-11T03:55:08 |
electron/electron | db0aeaa26e519dc339f360c3caa7d2e515d5a8ba | cc666c727ff60cf7da5ae4c4130a184f3353276b | Fix another crash caused by assertion of asyncContext | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit 5cc0df3db8bee63a6c735e456add25ad94cab42b\n+Subproject commit dc8fe9d390b1deb32ae2601357a90679cbcc757e",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2017-08-30T06:29:38 |
facebook/react | 7e73efefd8be425183c3546338365a9a198d7472 | fe1a2e48f9a9b6bb547a3ce6df135f6ddb8646a0 | Fix links | [
{
"path": "docs/docs/02-displaying-data.ko-KR.md",
"patch": "@@ -1,9 +1,9 @@\n ---\n id: displaying-data-ko-KR\n title: 데이터를 표시하기\n-permalink: displaying-data.ko-KR.html\n-prev: why-react.ko-KR.html\n-next: jsx-in-depth.ko-KR.html\n+permalink: displaying-data-ko-KR.html\n+prev: why-react-ko-KR.html\n+next: ... | 2015-02-22T16:31:46 |
rust-lang/rust | 9fd57df6397b0e2b0cd4db32884ed5e5443c7906 | a1dbb443527bd126452875eb5d5860c1d001d761 | add tests, some with incorrect lifetime extension behavior | [
{
"path": "tests/ui/borrowck/format-args-temporary-scopes.e2024.stderr",
"patch": "@@ -0,0 +1,15 @@\n+error[E0716]: temporary value dropped while borrowed\n+ --> $DIR/format-args-temporary-scopes.rs:13:25\n+ |\n+LL | println!(\"{:?}\", { &temp() });\n+ | ---^^^^^---\n+ | ... | 2025-08-13T06:55:29 |
nodejs/node | e2ffa454d3ba6a5787c92c01eeff8020baa853d5 | d5fa6a8f1b71aba24f5f207a943fb0a3142a774a | stream: fix Readable stream state properties
Looks like they have been accidentally moved in
https://github.com/nodejs/node/pull/31144.
PR-URL: https://github.com/nodejs/node/pull/34886
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Matteo Collina <matteo.col... | [
{
"path": "lib/_stream_readable.js",
"patch": "@@ -1216,13 +1216,17 @@ ObjectDefineProperties(Readable.prototype, {\n }\n },\n \n- // Legacy getter for `pipesCount`\n+});\n+\n+ObjectDefineProperties(ReadableState.prototype, {\n+ // Legacy getter for `pipesCount`.\n pipesCount: {\n get() {\n ... | 2020-08-23T09:15:38 |
golang/go | c3aac6c010f9293319ae5dbe0592bc7706b6a161 | 5a3243e6b60ec7b006d8b65fd564133018cad777 | net: handle correctly the _gateway and _outbound hostnames for nss myhostname
Fixes #56387
Change-Id: If412134344600caefec425699398522399986d4d
GitHub-Last-Rev: f33540ef8f90e9a8c09f3947aba8c01155516d39
GitHub-Pull-Request: golang/go#56388
Reviewed-on: https://go-review.googlesource.com/c/go/+/445075
TryBot-Result: Go... | [
{
"path": "src/net/conf.go",
"patch": "@@ -241,7 +241,7 @@ func (c *conf) hostLookupOrder(r *Resolver, hostname string) (ret hostLookupOrde\n \tvar first string\n \tfor _, src := range srcs {\n \t\tif src.source == \"myhostname\" {\n-\t\t\tif isLocalhost(hostname) || isGateway(hostname) {\n+\t\t\tif isLocal... | 2022-11-11T07:34:15 |
vercel/next.js | cf0f090fca6183e5c3d525a339d34b9543519126 | 2e977f1614a92a33b07d94e27fe59576e6215651 | disable static generation on interception routes (#61004)
### What & Why?
Interception routes depend on contextual information that are provided
via request headers. Specifically it needs to know about the
`Next-Router-State-Tree` when generating the interception route RSC
data, which isn't available at build time... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -160,6 +160,7 @@ import { hasCustomExportOutput } from '../export/utils'\n import { interopDefault } from '../lib/interop-default'\n import { formatDynamicImportPath } from '../lib/format-dynamic-import-path'\n import { isDefaultRoute } from '../lib... | 2024-01-23T00:33:39 |
electron/electron | 7cd64f1bd16f694a43bc700bca552c0ac45f3704 | cc666c727ff60cf7da5ae4c4130a184f3353276b | Fixed crash on process exit on Windows | [
{
"path": "atom/app/atom_main.cc",
"patch": "@@ -118,6 +118,25 @@ int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t* cmd, int) {\n }\n }\n \n+#ifndef DEBUG\n+ // Chromium has its own TLS subsystem which supports automatic destruction\n+ // of thread-local data, and also depends on memory ... | 2017-08-28T01:11:20 |
facebook/react | 66860292676b2a674e263ce4c7acfb0cee90f25e | f0afc7809a602cbc27af3b0676e31c89f1cdf671 | Fix some words, Translate title
- Up to 9f18ccd | [
{
"path": "docs/docs/03-interactivity-and-dynamic-uis.ko-KR.md",
"patch": "@@ -1,6 +1,6 @@\n ---\n-id: interactivity-and-dynamic-uis\n-title: Interactivity and Dynamic UIs\n+id: interactivity-and-dynamic-uis-ko-KR\n+title: 상호 작용 및 동적 UI\n permalink: interactivity-and-dynamic-uis.ko-KR.html\n prev: jsx-gotch... | 2015-01-30T13:46:57 |
nodejs/node | d5fa6a8f1b71aba24f5f207a943fb0a3142a774a | 4a20472cc8dade5e89fd286ff8a72da994ab991f | doc: fix broken link to response.writableFinished in deprecations doc
PR-URL: https://github.com/nodejs/node/pull/34983
Reviewed-By: Harshitha K P <harshitha014@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -2860,7 +2860,7 @@ The [`crypto.Certificate()` constructor][] is deprecated. Use\n [`response.end()`]: http.html#http_response_end_data_encoding_callback\n [`response.finished`]: http.html#http_response_finished\n [`response.writableFinished`]: #http_respons... | 2020-08-30T05:32:12 |
golang/go | 5a3243e6b60ec7b006d8b65fd564133018cad777 | 46bed9d04c5f1e0da557d79b9a35bf9331fcd33f | all: fix problematic comments
Change-Id: Ib6ea1bd04d9b06542ed2b0f453c718115417c62c
Reviewed-on: https://go-review.googlesource.com/c/go/+/449755
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Ian Lance Taylor <iant@... | [
{
"path": "src/cmd/compile/internal/ssa/op.go",
"patch": "@@ -525,7 +525,7 @@ func boundsABI(b int64) int {\n \t}\n }\n \n-// arm64BitFileld is the GO type of ARM64BitField auxInt.\n+// arm64BitField is the GO type of ARM64BitField auxInt.\n // if x is an ARM64BitField, then width=x&0xff, lsb=(x>>8)&0xff, a... | 2022-11-11T02:05:39 |
vercel/next.js | 2e977f1614a92a33b07d94e27fe59576e6215651 | bb2aaf74e86049e89e0c10b7fca099c3a33443f5 | docs: fix rustup download link (#61007)
## Changes
- Fix URL to `rustup` (Previous URL
https://doc.rust-lang.org/cargo/getting-started/installation is now a
`404`)
Closes NEXT-2191 | [
{
"path": "contributing/core/developing.md",
"patch": "@@ -6,7 +6,7 @@\n \n To develop locally:\n \n-1. Install [Rust and Cargo](https://doc.rust-lang.org/cargo/getting-started/installation)\n+1. Install Rust and Cargo via [rustup](https://rustup.rs).\n 1. Install the [GitHub CLI](https://github.com/cli/cli... | 2024-01-23T00:33:15 |
facebook/react | 6cd004f20ae6e2eb6168f853214c6880934ae4c9 | 91b45641b8bfbdecace941125a7a415aad1ebbce | Fixed shallowEqual implementation to handle the case when inputs are not objects.
If either argument is not an object and unequal, then shallowEqual should return false.
If only one argument is an object, then shallowEqual should return false.
Fixes #3369 | [
{
"path": "src/utils/__tests__/shallowEqual-test.js",
"patch": "@@ -41,6 +41,24 @@ describe('shallowEqual', function() {\n ).toBe(true);\n });\n \n+ it('returns false if arguments are not objects and not equal', function() {\n+ expect(\n+ shallowEqual(\n+ 1,\n+ 2\n+ )\n+ ... | 2015-03-11T01:03:51 |
electron/electron | 5978775ce17a9daff0749733ac9523f1677d489d | cc666c727ff60cf7da5ae4c4130a184f3353276b | fix mac ime crack | [
{
"path": "atom/browser/mac/atom_application_delegate.mm",
"patch": "@@ -7,9 +7,36 @@\n #import \"atom/browser/mac/atom_application.h\"\n #include \"atom/browser/browser.h\"\n #include \"atom/browser/mac/dict_util.h\"\n+#include \"base/allocator/allocator_shim.h\"\n+#include \"base/allocator/features.h\"\n+... | 2017-08-30T04:03:05 |
nodejs/node | 4a20472cc8dade5e89fd286ff8a72da994ab991f | 772a21c186664f04fc43934af710229e77505a72 | doc: fix broken link to response.finished in deprecations doc
PR-URL: https://github.com/nodejs/node/pull/34982
Reviewed-By: Harshitha K P <harshitha014@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -2858,7 +2858,7 @@ The [`crypto.Certificate()` constructor][] is deprecated. Use\n [`response.socket`]: http.html#http_response_socket\n [`response.connection`]: http.html#http_response_connection\n [`response.end()`]: http.html#http_response_end_data_encodi... | 2020-08-30T05:29:40 |
vercel/next.js | 3d3dc69594efc527146d220e58bc706fd9648f0f | 01dc86a2dcd0f612e1b119fdd95c7f715c44e6c4 | fix(ecmascript): collect recoverable error after parse (vercel/turbo#7073)
### Description
Turbopack in next.js does not report parse errors for the input like
```
function xyz() {
...
```
which expects to report
```
Expected '}', got '<eof>'
```
Comparing upstream swc, the only difference is turbo... | [
{
"path": "crates/turbopack-ecmascript/src/parse.rs",
"patch": "@@ -304,6 +304,7 @@ async fn parse_content(\n );\n \n let mut parser = Parser::new_from(lexer);\n+ let program_result = parser.parse_program();\n \n let mut has_errors = false;\n ... | 2024-01-22T23:51:52 |
golang/go | 97765249082b6835c77517a4e63bb38cfd6db97b | bed2b7cf41471e1521af5a83ae28bd643eb3e038 | net: disable TestLookupDotsWithRemoteSource and TestLookupGoogleSRV
These tests fail consistently due to a DNS change causing widespread
trybot outages.
Fixes #56707.
Change-Id: Iebdf91254a922a48880021198f0f12f6bc16b6e7
Reviewed-on: https://go-review.googlesource.com/c/go/+/449640
Reviewed-by: Carlos Amedee <carlos@... | [
{
"path": "src/net/lookup_test.go",
"patch": "@@ -71,6 +71,10 @@ var lookupGoogleSRVTests = []struct {\n var backoffDuration = [...]time.Duration{time.Second, 5 * time.Second, 30 * time.Second}\n \n func TestLookupGoogleSRV(t *testing.T) {\n+\t// TODO(mknyszek): Figure out next steps for this test. This is ... | 2022-11-11T17:26:45 |
rust-lang/rust | a8e9ca195e8345fc574420418d2fd3aed258f703 | 93edf9f9b0bf284d8f8cbe52af5d0569d0cf5850 | Use attribute name in message for "outer attr used as inner attr" errors | [
{
"path": "compiler/rustc_attr_parsing/messages.ftl",
"patch": "@@ -86,6 +86,12 @@ attr_parsing_invalid_repr_hint_no_value =\n attr_parsing_invalid_since =\n 'since' must be a Rust version number, such as \"1.31.0\"\n \n+attr_parsing_invalid_style = {$is_used_as_inner ->\n+ [false] crate-level at... | 2025-08-23T17:45:00 |
electron/electron | a936430fd5b4954bae0146e969505979ae5a3321 | b54804d449b002521f049e50e9f34a412be3e8f6 | fix lint errors | [
{
"path": "script/bump-version.py",
"patch": "@@ -13,11 +13,36 @@\n \n def main():\n \n- parser = argparse.ArgumentParser(description='Bump version numbers. Must specify at least one option.')\n- parser.add_argument('--version', default=None, dest='new_version', help='new version number')\n- parser.add_a... | 2017-08-29T23:55:34 |
facebook/react | 53f92bf8587b64e0803b66b8bf7f337add2e75a3 | 645a6caaf5606af9d8479000426e9cb94aeada3b | Fix comma splice and line length | [
{
"path": "src/browser/ui/React.js",
"patch": "@@ -120,8 +120,8 @@ if (__DEV__) {\n \n warning(\n !ieCompatibilityMode,\n- 'Internet Explorer is running in compatibility mode, please add the following ' +\n- 'tag to your HTML to prevent this from happening: ' +\n+ 'Internet Explorer... | 2015-03-10T22:36:27 |
nodejs/node | 772a21c186664f04fc43934af710229e77505a72 | 59cad32b519438bb6f296bb6f8c3391eb4060ecc | doc: fix broken link to writableEnded in deprecations doc
PR-URL: https://github.com/nodejs/node/pull/34984
Reviewed-By: Harshitha K P <harshitha014@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -2860,7 +2860,7 @@ The [`crypto.Certificate()` constructor][] is deprecated. Use\n [`response.end()`]: http.html#http_response_end_data_encoding_callback\n [`response.finished`]: #http_response_finished\n [`response.writableFinished`]: #http_response_writabl... | 2020-08-30T05:34:30 |
vercel/next.js | 4a1c14c7234d88cb184a131d4797af4367847a04 | 6d63641a517ee611453244091b7861bdda534d62 | fix a hanging issue with strongly consistent reads (vercel/turbo#7067)
### Description
This fixes a bug where inactive tasks get stuck in "in progress" which
causes the updateInfo stream to be incorrect (not ending).
It can happen when
* a task reads something strongly consistent
* the task (subgraph) is not ... | [
{
"path": "crates/turbo-tasks-memory/src/task.rs",
"patch": "@@ -35,7 +35,7 @@ use turbo_tasks::{\n };\n \n use crate::{\n- aggregation_tree::{aggregation_info, ensure_thresholds},\n+ aggregation_tree::{aggregation_info, ensure_thresholds, AggregationInfoGuard},\n cell::Cell,\n gc::{to_exp_u8,... | 2024-01-22T16:30:17 |
golang/go | bed2b7cf41471e1521af5a83ae28bd643eb3e038 | fcd14bdcbdfbb5b0c79cfecff95291837836a76d | runtime: delay incrementing freeindex in malloc
When the GC is scanning some memory (possibly conservatively),
finding a pointer, while concurrently another goroutine is
allocating an object at the same address as the found pointer, the
GC may see the pointer before the object and/or the heap bits are
initialized. Thi... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -813,24 +813,22 @@ retry:\n // base address for all 0-byte allocations\n var zerobase uintptr\n \n-// nextFreeFast returns the next free object if one is quickly available.\n-// Otherwise it returns 0.\n-func nextFreeFast(s *mspan) gclinkptr {\n+// nextFreeFas... | 2022-11-09T15:44:36 |
electron/electron | b54804d449b002521f049e50e9f34a412be3e8f6 | 74c970c25f5a202e5f88838d0930a090aafbb10f | change `process.versions.electron` to reflect suffixes in version name. | [
{
"path": "npm/install.js",
"patch": "@@ -1,7 +1,6 @@\n #!/usr/bin/env node\n \n-// maintainer note - x.y.z-ab version in package.json -> x.y.z\n-var version = require('./package').version.replace(/-.*/, '')\n+var version = require('./package').version\n \n var fs = require('fs')\n var os = require('os')",
... | 2017-08-29T23:37:49 |
nodejs/node | 59cad32b519438bb6f296bb6f8c3391eb4060ecc | 492c34fa4b594c2b0cb225094bd8779c996c2a3c | doc: fix typos in buffer doc
* pluralize "strings" in hex encoding description.
* fix typo in ascii encoding description
* remove double "array"
PR-URL: https://github.com/nodejs/node/pull/34981
Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Benjamin Gruenbau... | [
{
"path": "doc/api/buffer.md",
"patch": "@@ -107,14 +107,14 @@ string into a `Buffer` as decoding.\n tabs, and new lines contained within the base64-encoded string are ignored.\n \n * `'hex'`: Encode each byte as two hexadecimal characters. Data truncation\n- may occur when decoding string that do exclus... | 2020-08-30T01:46:23 |
golang/go | fcd14bdcbdfbb5b0c79cfecff95291837836a76d | fffda6b3adfb4d05290c58939a78a99643398ff1 | cmd/go/internal/vcweb: fix a data race in the overview handler
I forgot to lock the scriptResult in the overview handler, and
apparently a cmd/go test is incidentally fetching the overview page at
some point during test execution, triggering the race.
This race was caught almost immediately by the new
linux-amd64-lon... | [
{
"path": "src/cmd/go/internal/vcweb/vcstest/vcstest_test.go",
"patch": "@@ -20,6 +20,7 @@ import (\n \t\"path/filepath\"\n \t\"strings\"\n \t\"testing\"\n+\t\"time\"\n )\n \n var (\n@@ -87,6 +88,24 @@ func TestScripts(t *testing.T) {\n \t}\n \tsrv := httptest.NewServer(s)\n \n+\t// To check for data races ... | 2022-11-10T22:00:18 |
vercel/next.js | bd605245aae4c8545bdd38a597b89ad78ca3d978 | f5dab7ce7daae431ffc32d1bcbad792a0338c328 | Skip @next/font tests in Turbopack as next/font is supported (#60982)
## What?
Skip the `@next/font` legacy tests in Turbopack. `next/font` is
supported with Turbopack enabled.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we reques... | [
{
"path": "test/e2e/app-dir/next-font/next-font.test.ts",
"patch": "@@ -24,428 +24,438 @@ const getAttrs = (elems: Cheerio) =>\n .sort((a, b) => (a.href < b.href ? -1 : 1))\n \n describe('app dir - next/font', () => {\n- describe.each([['app'], ['app-old']])('%s', (fixture: string) => {\n- createNex... | 2024-01-22T16:24:39 |
nodejs/node | 75d943ed4a51cee92d92f9bdd1e0c563bea583ae | 6199678d67d2fff59d4d650aa3ebb8057b279aa3 | build: use autorebase option for git node land
This will allow to land commits with multiple commits and also properly
handle proper `fixup` commits.
Refs: https://github.com/nodejs/node-core-utils/pull/473
PR-URL: https://github.com/nodejs/node/pull/34969
Reviewed-By: Mary Marchini <oss@mmarchini.me>
Reviewed-By: L... | [
{
"path": "doc/guides/commit-queue.md",
"patch": "@@ -43,7 +43,10 @@ The Commit Queue feature is still in early stages, and as such it might not\n work for more complex Pull Requests. These are the currently known limitations\n of the commit queue:\n \n-1. The Pull Request must have only one commit\n+1. All... | 2020-08-29T09:38:56 |
rust-lang/rust | 137feef30804ae1657de6120ade81c2f70e5d00a | 55286e796f2e3f549a2c8baa7a64d56bc225ccae | fix: `async_yields_async` wrongly unmangled macros | [
{
"path": "clippy_lints/src/async_yields_async.rs",
"patch": "@@ -1,8 +1,12 @@\n use clippy_utils::diagnostics::span_lint_hir_and_then;\n-use clippy_utils::source::snippet;\n+use clippy_utils::is_expr_async_block;\n+use clippy_utils::source::walk_span_to_context;\n+use clippy_utils::sugg::Sugg;\n use clippy... | 2025-08-25T00:01:37 |
electron/electron | 0550a4a9b86d99b5ad60b0967cf7914697712f43 | 7f4b74f8c61926352683f426b3d8ea7f36635efa | Fix crash when emitting render-view-deleted event | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -305,6 +305,10 @@ WebContents::WebContents(v8::Isolate* isolate, const mate::Dictionary& options)\n request_id_(0),\n background_throttling_(true),\n enable_devtools_(true) {\n+ // WebContents may need to emit events when... | 2017-08-29T08:46:46 |
facebook/react | df18770a0c96819697ee9eea1cfe1725fa6e6f04 | ab7084f71d904d08543cfae2219630d331a2a0af | with the exception for -> with the exception of | [
{
"path": "docs/_posts/2015-01-27-react-v0.13.0-beta-1.md",
"patch": "@@ -33,7 +33,7 @@ class HelloMessage extends React.Component {\n React.render(<HelloMessage name=\"Sebastian\" />, mountNode);\n ```\n \n-The API is mostly what you would expect, with the exception for `getInitialState`. We figured that t... | 2015-03-10T21:44:44 |
golang/go | fffda6b3adfb4d05290c58939a78a99643398ff1 | 73f987c88b348772ca2efa8d5b3d0ac61cbdb563 | cmd/link: exit if runtime.a is missing
Many stages in the linker assume some runtime symbols exist.
Error out if the runtime package cannot be found.
Fixes #56685.
Change-Id: I39b2663f6d7419688e30e6d8650e5eb8fc43a2b1
Reviewed-on: https://go-review.googlesource.com/c/go/+/449638
Reviewed-by: Than McIntosh <thanm@goog... | [
{
"path": "src/cmd/link/internal/ld/lib.go",
"patch": "@@ -466,6 +466,9 @@ func loadinternal(ctxt *Link, name string) *sym.Library {\n \t\t}\n \t}\n \n+\tif name == \"runtime\" {\n+\t\tExitf(\"error: unable to find runtime.a\")\n+\t}\n \tctxt.Logf(\"warning: unable to find %s.a\\n\", name)\n \treturn nil\n ... | 2022-11-10T22:17:54 |
vercel/next.js | f5dab7ce7daae431ffc32d1bcbad792a0338c328 | 989741f287d1d911a8c17ecae90f8b482f475de3 | chore: update turbopack (#60980)
### Turbopack Updates
* https://github.com/vercel/turbo/pull/6923 <!-- Tobias Koppers - Bottom
up tracing and some tracing improvements -->
* https://github.com/vercel/turbo/pull/7028 <!-- Leah - fix: add missing
layer ident modifier to asset with inner assets -->
Closes PACK-... | [
{
"path": "Cargo.lock",
"patch": "@@ -321,7 +321,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-240117.3#438bdd0b198163a37ff6050cf8ae2c7ca8b07753\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2024-01-22T16:03:22 |
nodejs/node | a1faa8d8521886c6a444ed2c6ba8cd735448bb8c | 5c020762bb5b2b33a11b816c7fba12cce0df2e65 | test: fix typo in test/parallel/test-icu-punycode.js
coverter => converter
PR-URL: https://github.com/nodejs/node/pull/34934
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
... | [
{
"path": "test/parallel/test-icu-punycode.js",
"patch": "@@ -11,9 +11,9 @@ const assert = require('assert');\n \n // Test hasConverter method\n assert(icu.hasConverter('utf-8'),\n- 'hasConverter should report coverter exists for utf-8');\n+ 'hasConverter should report converter exists for utf-8... | 2020-08-26T13:48:34 |
electron/electron | 7f4b74f8c61926352683f426b3d8ea7f36635efa | f0f17fffd8f3898ca91967316978fd092195873b | spec: Compare id instead of the object
Otherwise it is impossible to see what's wrong. | [
{
"path": "spec/api-browser-window-spec.js",
"patch": "@@ -1210,10 +1210,10 @@ describe('BrowserWindow module', function () {\n sandbox: true\n }\n })\n- const initialWebContents = webContents.getAllWebContents()\n+ const initialWebContents = webContents.getAllWeb... | 2017-08-29T06:45:16 |
golang/go | 73f987c88b348772ca2efa8d5b3d0ac61cbdb563 | 185766de0ff2810ee018501addb1f58be2226856 | test: add regression test for issue 53439
Fixes #53439
Change-Id: I425af0f78153511034e4a4648f32ef8c9378a325
Reviewed-on: https://go-review.googlesource.com/c/go/+/449756
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
TryBot-Result: Gopher Robot <gobot@golang.o... | [
{
"path": "test/fixedbugs/issue53439.go",
"patch": "@@ -0,0 +1,20 @@\n+// compile\n+//go:build goexperiment.unified\n+\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+impo... | 2022-11-11T06:02:44 |
rust-lang/rust | 8dbdb1760b23112f87aedad37e4dad97559bc750 | 41a79f1862aa6b81bac674598e275e80e9f09eb9 | On binding not present in all patterns, suggest potential typo
```
error[E0408]: variable `Ban` is not bound in all patterns
--> f12.rs:9:9
|
9 | (Foo,Bar)|(Ban,Foo) => {}
| ^^^^^^^^^ --- variable not in all patterns
| |
| pattern doesn't bind `Ban`
|
help: you might have me... | [
{
"path": "compiler/rustc_resolve/messages.ftl",
"patch": "@@ -470,6 +470,8 @@ resolve_variable_bound_with_different_mode =\n .label = bound in different ways\n .first_binding_span = first binding\n \n+resolve_variable_is_a_typo = you might have meant to use the similarly named previously used bindi... | 2025-08-24T19:22:51 |
nodejs/node | 33eda8046e59b672dbdc57183446bfa922f96ce5 | c2996ce69c3362d56dcd1e2469e04ee7516dfd3b | doc: add a note about possible missing lines to readline.asyncIterator
Fixes: https://github.com/nodejs/node/issues/33463
PR-URL: https://github.com/nodejs/node/pull/34675
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Reviewed-By: James M Snell <jasnell... | [
{
"path": "doc/api/readline.md",
"patch": "@@ -356,6 +356,10 @@ async function processLineByLine() {\n }\n ```\n \n+`readline.createInterface()` will start to consume the input stream once\n+invoked. Having asynchronous operations between interface creation and\n+asynchronous iteration may result in missed ... | 2020-08-08T07:01:36 |
electron/electron | 4febbec10219eb519a040c9812b95ec4b4bc2b90 | b2f3625eaa422e6c9e62333871b7ef21cb94ef30 | Fix crash when switching menus in menubar | [
{
"path": "atom/browser/ui/views/menu_delegate.cc",
"patch": "@@ -97,6 +97,9 @@ void MenuDelegate::WillHideMenu(views::MenuItemView* menu) {\n \n void MenuDelegate::OnMenuClosed(views::MenuItemView* menu,\n views::MenuRunner::RunResult result) {\n+ // Only switch to new menu... | 2017-08-28T09:59:06 |
golang/go | 4d37f968252b85ea3b26513b39ed606a5a50bc32 | 1b03568ae18715ad081cc57197b61388c8e6caa4 | net/http: fix triv.go
CL 428137 replaced 'buf := make(bytes.Buffer)' with 'var buf strings.Builder'.
That change also requires passing &buf to io.Copy instead of buf.
Change-Id: I72b3faa46693e7d1441298f49dc6b95859c3bff3
Reviewed-on: https://go-review.googlesource.com/c/go/+/449635
TryBot-Result: Gopher Robot <gobot@g... | [
{
"path": "src/net/http/triv.go",
"patch": "@@ -50,7 +50,7 @@ func (ctr *Counter) ServeHTTP(w http.ResponseWriter, req *http.Request) {\n \t\tctr.n++\n \tcase \"POST\":\n \t\tvar buf strings.Builder\n-\t\tio.Copy(buf, req.Body)\n+\t\tio.Copy(&buf, req.Body)\n \t\tbody := buf.String()\n \t\tif n, err := strc... | 2022-11-10T20:26:27 |
rust-lang/rust | d6a18e18676f355e9f5350a9204f81c4dd2bc0f3 | 14b0ba6a0543cdbbd19b5a0aaa3ae03500fb72d2 | change non-defining use error message | [
{
"path": "compiler/rustc_borrowck/src/region_infer/opaque_types/mod.rs",
"patch": "@@ -42,7 +42,6 @@ use region_ctxt::RegionCtxt;\n /// if there are no `RegionErrors`. If there are region errors, it's likely\n /// that errors here are caused by them and don't need to be handled separately.\n pub(crate) enu... | 2025-08-25T09:48:55 |
vercel/next.js | c971533057e588389e44e327d25858497e53ad0f | 92265ccbe95a03be928180d691593c0f679ba8f1 | Fix image-optimizer tests for Turbopack (#60972)
## What?
There were a bunch of Sharp related tests failing when running the test
suite with Turbopack. The reason for this was that we automatically
detect the root of the project based on the closest lockfile (i.e.
package-lock.json). In this particular test a ne... | [
{
"path": "test/integration/image-optimizer/test/util.ts",
"patch": "@@ -1320,6 +1320,12 @@ export const setupTests = (ctx) => {\n }\n \n beforeAll(async () => {\n+ const json = JSON.stringify({\n+ experimental: {\n+ outputFileTracingRoot: join(__dirname, '../../../..'... | 2024-01-22T14:52:00 |
electron/electron | b2f3625eaa422e6c9e62333871b7ef21cb94ef30 | 593ae7bf0e8854d240082c0e7c5fc962599ae7b0 | Fix deprecated node::MakeCallback call | [
{
"path": "atom/common/api/event_emitter_caller.cc",
"patch": "@@ -21,7 +21,7 @@ v8::Local<v8::Value> CallMethodWithArgs(v8::Isolate* isolate,\n // Use node::MakeCallback to call the callback, and it will also run pending\n // tasks in Node.js.\n return node::MakeCallback(isolate, obj, method, args->s... | 2017-08-28T07:17:33 |
nodejs/node | f461a66822a807d7f6c5eb7300fd69638beee1f8 | 0848f56cb39432090cdb99af9b8541fbc1a2849c | doc: make minor fixes to maintaining-openssl.md
PR-URL: https://github.com/nodejs/node/pull/34926
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com> | [
{
"path": "doc/guides/maintaining-openssl.md",
"patch": "@@ -37,7 +37,7 @@ them.\n % mv openssl-1.1.0h openssl\n % git add --all openssl\n % git commit openssl\n-````\n+```\n \n The commit message can be written as (with the openssl version set\n to the relevant value):\n@@ -61,8 +61,8 @@ separately after u... | 2020-08-25T20:50:43 |
vercel/next.js | 92265ccbe95a03be928180d691593c0f679ba8f1 | c754d9fb6ecddc7cf46a61548dc8c49539c398d1 | Fix next phase for next build (#60969)
In both dev server and production build we both use `getStartServerInfo`
to log the basic info but for prod build we should always respect to use
"build" phase
Fixes #57927
Closes NEXT-2179 | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -803,7 +803,7 @@ export default async function build(\n )\n \n // Always log next version first then start rest jobs\n- const { envInfo, expFeatureInfo } = await getStartServerInfo(dir)\n+ const { envInfo, expFeatureInfo } = aw... | 2024-01-22T14:37:04 |
golang/go | 1b03568ae18715ad081cc57197b61388c8e6caa4 | 5497300d9c9327005fa9ab14c6897d6c883139c5 | cmd/compile: adjust PGO inlining default parameters
Adjust PGO inlining default parameters to 99% CDF threshold and
2000 budget. Benchmark results (mostly from Sweet) show that this
set of parameters performs reasonably well, with a few percent
speedup at the cost of a few percent binary size increase.
Also rename th... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -16,41 +16,41 @@ var Debug DebugFlags\n // The -d option takes a comma-separated list of settings.\n // Each setting is name=value; for ints, name is short for name=1.\n type DebugFlags struct {\n-\tAppend int `help:\... | 2022-11-10T16:33:00 |
electron/electron | 593ae7bf0e8854d240082c0e7c5fc962599ae7b0 | 5510d8cfb196737cdd83c431e035ecf51ceec223 | Fix crash caused by freeing capturer task | [
{
"path": "chromium_src/chrome/browser/media/native_desktop_media_list.cc",
"patch": "@@ -216,6 +216,10 @@ void NativeDesktopMediaList::Worker::Refresh(\n BrowserThread::PostTask(\n BrowserThread::UI, FROM_HERE,\n base::Bind(&NativeDesktopMediaList::OnRefreshFinished, media_list_));\n+\n+ // ... | 2017-08-28T07:11:39 |
nodejs/node | 0848f56cb39432090cdb99af9b8541fbc1a2849c | 3089f96ed01653aa4d5e4bba5a5db473ffe788a0 | n-api: re-implement async env cleanup hooks
* Avoid passing core `void*` and function pointers into add-on.
* Document `napi_async_cleanup_hook_handle` type.
* Render receipt of the handle mandatory from the point where the
hook gets called. Removal of the handle remains mandatory.
Fixes: https://github.com/nodejs/... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -623,6 +623,15 @@ typedef struct {\n } napi_type_tag;\n ```\n \n+#### napi_async_cleanup_hook_handle\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+An opaque value returned by [`napi_add_async_cleanup_hook`][]. It must be passed\n+to [`napi_remove_async_cleanup_hook`][]... | 2020-08-17T17:13:00 |
facebook/react | 29506cec545689abf632d95648f93c8220ae8cb0 | 62ee384d7b82fb8b9312e122d921ee7e966d6c0b | Fix Perf displayName with ES6 classes | [
{
"path": "src/test/ReactDefaultPerf.js",
"patch": "@@ -242,17 +242,12 @@ var ReactDefaultPerf = {\n addValue(entry.inclusive, rootNodeID, totalTime);\n }\n \n- var displayName = null;\n- if (this._instance.constructor.displayName) {\n- displayName = this._instance.c... | 2015-03-08T16:16:30 |
rust-lang/rust | b08ebc5b204af82c1687f27047370209653c7983 | 7f6f741ebaa6a396fee50b107a0dbfadc08d6a6c | TB: fix SIFA comment | [
{
"path": "src/tools/miri/src/borrow_tracker/tree_borrows/mod.rs",
"patch": "@@ -298,18 +298,18 @@ trait EvalContextPrivExt<'tcx>: crate::MiriInterpCxExt<'tcx> {\n \n // When adding a new node, the SIFA of its parents needs to be updated, potentially across\n // the entire memory range. For ... | 2025-08-25T10:47:29 |
vercel/next.js | c754d9fb6ecddc7cf46a61548dc8c49539c398d1 | 0f044d0ea87228a53769d53c973539949798f1f9 | update edge and nodejs runtime doc (#60801)
<!-- 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 Contributors
... | [
{
"path": "docs/02-app/01-building-your-application/03-rendering/04-edge-and-nodejs-runtimes.mdx",
"patch": "@@ -35,7 +35,7 @@ In Next.js, the lightweight Edge Runtime is a subset of available Node.js APIs.\n \n The Edge Runtime is ideal if you need to deliver dynamic, personalized content at low latency wi... | 2024-01-22T13:24:16 |
golang/go | 79950a41625d1a041781e6344f5ca57308c7df08 | fcecf3e1fa318d4c3e8f2142d17bb2e481e94f9d | net: auto-reload the /etc/nsswitch.conf on unix systems
This change is made to align with the current (recently changed) glibc behaviour, it will allow the hostLookupOrder method to change its decisions on runtime (based on /etc/nsswitch.conf changes).
Fixes #56515
Change-Id: I241d67f053b6d2111eebcd67744adee02829166... | [
{
"path": "src/net/conf.go",
"patch": "@@ -29,7 +29,6 @@ type conf struct {\n \tgoos string // the runtime.GOOS, to ease testing\n \tdnsDebugLevel int\n \n-\tnss *nssConf\n \tresolv *dnsConfig\n }\n \n@@ -112,10 +111,6 @@ func initConfVal() {\n \t\treturn\n \t}\n \n-\tif runtime.GOOS != \"openbs... | 2022-11-10T18:52:22 |
electron/electron | 9337e294826be26d457c4ab2dde326d6fb606798 | 56233054ae93aa6ca9ae9bbff4e34d439fdf656b | Fix the crash caused by asyncContext | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit e03bf45b40cc77b26945d08e7c3ddebd9b85504a\n+Subproject commit 5cc0df3db8bee63a6c735e456add25ad94cab42b",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2017-08-25T11:41:46 |
facebook/react | 2184162e38803be7a442e2d331bdfa952a4aa2aa | b95ad296da3648179e96ec95be2784ac5e626626 | Add documentation about JSX and displayName.
The section that described how JSX transform handles displayName was lost in commit 9b1ee4de4636fcc9af1cf93099e062a3f6eb96f5
Fixes #3338 | [
{
"path": "docs/docs/02.1-jsx-in-depth.md",
"patch": "@@ -73,6 +73,15 @@ var app = React.createElement(\n );\n ```\n \n+JSX will infer the class's [displayName](/react/docs/component-specs.html#displayName) from the variable assignment when the displayName is undefined:\n+\n+```javascript\n+// Input (JSX):\... | 2015-03-07T18:01:58 |
nodejs/node | 3089f96ed01653aa4d5e4bba5a5db473ffe788a0 | 79402c0eaaaca8daa2fe3bbbd99f66b8d956bb92 | 2020-08-27, Version 14.9.0 (Current)
Notable changes:
- build: set --v8-enable-object-print by default (Mary Marchini)
[#34705](https://github.com/nodejs/node/pull/34705)
- deps:
- upgrade to libuv 1.39.0 (cjihrig)
[#34915](https://github.com/nodejs/node/pull/34915)
- upgrade npm to 6.14.8 (Ruy Adorno)
... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -30,7 +30,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V14.md#14.8.0\">14.8.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V14.md#14.9.0\">14.9.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V14.md#14.8.0\"... | 2020-08-20T13:06:02 |
golang/go | 14018c8becc385f79f62f9cdf24cab93fe3e0cdc | d96eb826cb7cd4fe36745e3b1a79e0a2571acc4a | runtime: retry thread creation on EAGAIN
This copies the logic we use in runtime/cgo, when calling pthread_create,
into runtime proper, when calling newosproc.
We only do this in newosproc, not newosproc0, because in newosproc0 we
need a nosplit function literal, and we need to pass arguments to it through
newosproc,... | [
{
"path": "src/runtime/os3_solaris.go",
"patch": "@@ -172,11 +172,13 @@ func newosproc(mp *m) {\n \t// Disable signals during create, so that the new thread starts\n \t// with signals disabled. It will enable them in minit.\n \tsigprocmask(_SIG_SETMASK, &sigset_all, &oset)\n-\tret = pthread_create(&tid, &at... | 2022-11-01T23:04:50 |
vercel/next.js | 0f044d0ea87228a53769d53c973539949798f1f9 | 4125069840ca98981f0e7796f55265af04f3e903 | Use more precompiled deps in react-dev-overlay (#60959)
## What?
Follow-up to #60932, adds all other precompiled dependencies.
<!-- 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.
C... | [
{
"path": "packages/next/taskfile.js",
"patch": "@@ -249,6 +249,7 @@ export async function ncc_node_fetch(task, opts) {\n }\n \n externals['anser'] = 'next/dist/compiled/anser'\n+externals['next/dist/compiled/anser'] = 'next/dist/compiled/anser'\n export async function ncc_node_anser(task, opts) {\n await... | 2024-01-22T12:53:42 |
electron/electron | 56233054ae93aa6ca9ae9bbff4e34d439fdf656b | 6e6b097968c3dbfa30312bc6ee808f0a6b62b3c0 | Fix CI for Linux | [
{
"path": "Dockerfile",
"patch": "@@ -1,4 +1,10 @@\n-FROM libchromiumcontent-linux:latest\n+FROM electronbuilds/libchromiumcontent:0.0.4\n+\n+USER root\n+\n+# Set up HOME directory\n+ENV HOME=/home\n+RUN chmod a+rwx /home\n \n # Install node.js\n RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -",
... | 2017-08-24T13:42:32 |
nodejs/node | 79402c0eaaaca8daa2fe3bbbd99f66b8d956bb92 | 09e23b842b83ab0f2b093ea8d47821fabb47ede2 | doc: fix CHANGELOG.md parsing issue
PR-URL: https://github.com/nodejs/node/pull/34923
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "CHANGELOG.md",
"patch": "@@ -320,7 +320,7 @@ release.\n \n ## 2015-09-08, Version 4.0.0 (Stable), @rvagg\n \n-<a href=\"doc/changelogs/CHANGELOG_V4.md#4.0.0>Moved to doc/changelogs/CHANGELOG_V6.md#6.0.0</a>.\n+<a href=\"doc/changelogs/CHANGELOG_V4.md#4.0.0\">Moved to doc/changelogs/CHANGELOG_V6.m... | 2020-08-25T14:09:47 |
electron/electron | a7bae32527ce54b278574f7202a5baab2ca514f0 | c6918966c25144e85956b8614bd5f005ae4e642a | Re-enabled debug mode | [
{
"path": "atom/app/atom_main.cc",
"patch": "@@ -34,7 +34,7 @@\n \n namespace {\n \n-const char* kRunAsNode = \"ELECTRON_RUN_AS_NODE\";\n+const auto kRunAsNode = \"ELECTRON_RUN_AS_NODE\";\n \n bool IsEnvSet(const char* name) {\n #if defined(OS_WIN)\n@@ -56,6 +56,29 @@ int APIENTRY wWinMain(HINSTANCE instanc... | 2017-08-16T07:49:22 |
facebook/react | 419038f84602d75394f9983a899fd2ddf5ab06c5 | c7c2e05c334ceb737154198150ff5d71068f7b14 | Fix documentation typo in ReactComponent | [
{
"path": "src/modern/class/ReactComponent.js",
"patch": "@@ -77,7 +77,7 @@ ReactComponent.prototype.setState = function(partialState, callback) {\n * You may want to call this when you know that some deeper aspect of the\n * component's state has changed but `setState` was not called.\n *\n- * This will... | 2015-03-06T09:33:56 |
vercel/next.js | 4125069840ca98981f0e7796f55265af04f3e903 | 4d2ef951dc7ffec177501fb29ee80a225eb04e87 | Use precompiled source-map in overlay middleware (#60932)
## What?
Since #60889 is failing tests I'm narrowing the changes into some
separate PRs that can be landed independently.
This PR adds source-map@0.8.0-beta.0` to the precompiled dependencies.
<!-- Thanks for opening a PR! Your contribution is much ap... | [
{
"path": "packages/next/package.json",
"patch": "@@ -288,6 +288,7 @@\n \"setimmediate\": \"1.0.5\",\n \"shell-quote\": \"1.7.3\",\n \"source-map\": \"0.6.1\",\n+ \"source-map08\": \"npm:source-map@0.8.0-beta.0\",\n \"stacktrace-parser\": \"0.1.10\",\n \"stream-browserify\": \"3.0.0\"... | 2024-01-22T09:04:34 |
golang/go | d96eb826cb7cd4fe36745e3b1a79e0a2571acc4a | f57ebed35132d02e5cf016f324853217fb545e91 | cmd/compile: teach prove about signed domain relations of constant integer Phi's
Implement extracting signed domain relations for OpPhi's composed entirely of integer constants.
darwin/arm benches (M1 Pro):
EqIfaceConcrete-10 0.83ns ± 0% 0.78ns ± 0% -6.52% p=0.000 n=8+9 )
ConvT2EByteSized/bool-10 ... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -859,10 +859,55 @@ func prove(f *Func) {\n \t\t\tcase OpOr64, OpOr32, OpOr16, OpOr8:\n \t\t\t\tft.update(b, v, v.Args[1], unsigned, gt|eq)\n \t\t\t\tft.update(b, v, v.Args[0], unsigned, gt|eq)\n+\t\t\tcase OpPhi:\n+\t\t\t\t// Determine the min ... | 2022-09-19T11:08:08 |
nodejs/node | 87c43dee5302126fa370f5407a963cc8ab8ae013 | 0f9650bcddc79edb2d6ed447bc0416236239c0a0 | src,doc: fix wording to refer to context, not environment
PR-URL: https://github.com/nodejs/node/pull/34880
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "src/README.md",
"patch": "@@ -239,7 +239,7 @@ Node.js, and a sufficiently committed person could restructure Node.js to\n provide built-in modules inside of `vm.Context`s.\n \n Often, the `Context` is passed around for [exception handling][].\n-Typical ways of accessing the current `Environment` ... | 2020-08-22T21:12:34 |
facebook/react | 6b7e4dc8e89e8e67794e8b52de1314cb82e7267d | fa8961118a89d660ffb50ad5b0f635c1b55ae134 | Add warning when using non-component element types
This should make debugging easier for people who missed callsites when fixing up their JSX/non-JSX usage. | [
{
"path": "src/core/ReactCompositeComponent.js",
"patch": "@@ -133,6 +133,20 @@ var ReactCompositeComponentMixin = {\n \n // Initialize the public class\n var inst = new Component(publicProps, publicContext);\n+\n+ if (__DEV__) {\n+ // This will throw later in _renderValidatedComponent, but ... | 2015-03-05T23:21:44 |
golang/go | f57ebed35132d02e5cf016f324853217fb545e91 | e87e7997677b66b4afd2d4f23d35f561127dac02 | cmd/go: allow -mod=vendor to be set outside of a module
It will behave as if teh command-line-arguments module was vendored,
with zero dependencies, much as -mod=readonly works.
Fixes #56536
Change-Id: Ia02dda2f90d006b5917c3ae002ccb714987f27a3
Reviewed-on: https://go-review.googlesource.com/c/go/+/448019
Reviewed-by... | [
{
"path": "src/cmd/go/internal/modload/import.go",
"patch": "@@ -316,18 +316,22 @@ func importFromModules(ctx context.Context, path string, rs *Requirements, mg *M\n \tif cfg.BuildMod == \"vendor\" {\n \t\tmainModule := MainModules.mustGetSingleMainModule()\n \t\tmodRoot := MainModules.ModRoot(mainModule)\n... | 2022-11-04T21:27:38 |
vercel/next.js | 4d2ef951dc7ffec177501fb29ee80a225eb04e87 | e5e33d4d219cb3037c87df65553cc8de5c092077 | Error overlay refactors (#60886)
## What?
Some small refactors to the click handler in the error overlay.
Also removes `export` for a function that is only used in the module.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we reque... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/internal/components/Dialog/Dialog.tsx",
"patch": "@@ -6,7 +6,7 @@ export type DialogProps = {\n type: 'error' | 'warning'\n 'aria-labelledby': string\n 'aria-describedby': string\n- onClose?: (e: MouseEvent | TouchEvent) => void\n+ onC... | 2024-01-22T09:01:16 |
nodejs/node | 0f9650bcddc79edb2d6ed447bc0416236239c0a0 | 9ded2942a40da0badc9e91b3658fc6a97abcb3a4 | src,doc: fix grammar due to missing 'is'
PR-URL: https://github.com/nodejs/node/pull/34897
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Anna ... | [
{
"path": "src/README.md",
"patch": "@@ -402,7 +402,7 @@ that state is through the use of `Environment::AddBindingData`, which gives\n binding functions access to an object for storing such state.\n That object is always a [`BaseObject`][].\n \n-Its class needs to have a static `binding_data_name` field tha... | 2020-08-24T02:16:18 |
facebook/react | 65c4aeaa3a8fb80be4f6f9f3d978601aad678b9f | a999ac1ac30bd7ec9db152027fc480ea34652b5d | use warning module instead of console.debug | [
{
"path": "src/browser/ui/React.js",
"patch": "@@ -34,6 +34,7 @@ var ReactServerRendering = require('ReactServerRendering');\n var assign = require('Object.assign');\n var findDOMNode = require('findDOMNode');\n var onlyChild = require('onlyChild');\n+var warning = require('warning');\n \n ReactDefaultInjec... | 2015-03-05T18:53:12 |
golang/go | 79d9b395adf90f186617ee37800a18af0a7095ef | fbf763fd1d6be3c162ea5ff3c8843171ef937c3a | runtime: consolidate some low-level error reporting
Use a single writeErrStr function. Avoid using global variables.
Use a single version of some error messages rather than duplicating
the messages in OS-specific files.
Change-Id: If259fbe78faf797f0a21337d14472160ca03efa0
Reviewed-on: https://go-review.googlesource.c... | [
{
"path": "src/runtime/os_aix.go",
"patch": "@@ -111,17 +111,17 @@ func newosproc0(stacksize uintptr, fn *funcDescriptor) {\n \t)\n \n \tif pthread_attr_init(&attr) != 0 {\n-\t\twrite(2, unsafe.Pointer(&failthreadcreate[0]), int32(len(failthreadcreate)))\n+\t\twriteErrStr(failthreadcreate)\n \t\texit(1)\n \... | 2022-11-01T19:33:59 |
vercel/next.js | 9cce76ac64d0dca2af890bea7a78e1f6b412def1 | 6f39461f8a1db3f75a812c76d45a601e15bd65c5 | docs: updated the getStaticProps function name (#60949)
Fix: function name getStaticPaths is written in getStaticProps function,
issue exist in get-static-props.mdx under pages/api-reference/functions
folder. This issue was pushed as part of -
Pull Request: 55205
Commit Id: 80fba152f2add326a1520ffd2b530d00c75983f6... | [
{
"path": "docs/03-pages/02-api-reference/02-functions/get-static-props.mdx",
"patch": "@@ -29,7 +29,7 @@ export default function Page({\n ```\n \n ```jsx filename=\"pages/index.js\" switcher\n-export async function getStaticPaths() {\n+export async function getStaticProps() {\n const res = await fetch('h... | 2024-01-21T21:11:20 |
nodejs/node | cc39bdf72442aa7800d20c9a832b3aa0a069acdf | 4332f738326d9a067d859ef86e78fadeb95f1b2c | module: drop `-u` alias for `--conditions`
Old versions of mocha break after https://github.com/nodejs/node/pull/34637.
This was a bug in mocha, but since this is a widely used module
we can expect ecosystem breakage until modules are updated to
the latest version of mocha. Drop the conflicting `-u` alias --
we can p... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -76,7 +76,7 @@ $ node --completion-bash > node_bash_completion\n $ source node_bash_completion\n ```\n \n-### `-u`, `--conditions=condition`\n+### `--conditions=condition`\n <!-- YAML\n added: REPLACEME\n -->\n@@ -1247,7 +1247,7 @@ node --require \"./a.js\" --require... | 2020-08-26T13:56:55 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.