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 | d0a3bf1f115a619ffcd8804d5b006555433af13b | 4076e043b895233fb3c0060980eaab6bb74358a9 | perf_hooks: allow omitted parameters in 'performance.measure'
Make `startMark` and `endMark` parameters optional.
PR-URL: https://github.com/nodejs/node/pull/32651
Fixes: https://github.com/nodejs/node/issues/32647
Refs: https://www.w3.org/TR/user-timing-2/#measure-method
Reviewed-By: Anna Henningsen <anna@addaleax.n... | [
{
"path": "doc/api/perf_hooks.md",
"patch": "@@ -17,9 +17,12 @@ const obs = new PerformanceObserver((items) => {\n performance.clearMarks();\n });\n obs.observe({ entryTypes: ['measure'] });\n+performance.measure('Start to Now');\n \n performance.mark('A');\n doSomeLongRunningProcess(() => {\n+ performan... | 2020-04-04T08:41:34 |
facebook/react | 703a29c0b293e0cd44c39dfe2cdec878623bf92c | 17de85689ed691eb970c3cba8c8562a92c994657 | Remove unused grunt jsx config options
Since 5466d0a06382892106da7e237f3330b43a60cc95, the `__DEV__` isn't used any more. I can't find anything that uses the `debug` flag either. | [
{
"path": "grunt/config/jsx/jsx.js",
"patch": "@@ -9,11 +9,9 @@ var rootIDs = [\n \n var getDebugConfig = function() {\n return {\n- \"debug\": true,\n \"commonerConfig\": grunt.config.data.pkg.commonerConfig,\n \"constants\": {\n- \"__VERSION__\": grunt.config.data.pkg.version,\n- \"... | 2014-01-17T09:48:59 |
golang/go | 8bf9e014736064de436c411a95467b583f430dea | 48da729e8468b630ee003ac51cbaac595d53bec8 | cmd/compile: split Muluhilo op on ARM64
On ARM64 we use two separate instructions to compute the hi and lo
results of a 64x64->128 multiplication. Lower to two separate ops
so if only one result is needed we can deadcode the other.
Fixes #54607.
Change-Id: Ib023e77eb2b2b0bcf467b45471cb8a294bce6f90
Reviewed-on: https... | [
{
"path": "src/cmd/compile/internal/arm64/ssa.go",
"patch": "@@ -565,21 +565,6 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tp.Reg = v.Args[0].Reg()\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = v.Reg()\n-\tcase ssa.OpARM64LoweredMuluhilo:\n-\t\tr0 := v.Args[0].Reg()\n-\t\tr1 := v.Args[1].Reg... | 2022-08-22T21:00:17 |
electron/electron | 272a0824e87236b7c63e4a11722f780814e4daf8 | af7702d0f2f3d76c3e350203b6f31db27931e8e1 | Fix darwin platform name | [
{
"path": "spec/fixtures/api/crash-restart.html",
"patch": "@@ -19,7 +19,7 @@\n })\n \n setImmediate(() => {\n- if (process.platform === 'darwin2') {\n+ if (process.platform === 'darwin') {\n crashReporter.setExtraParameter('extra2', 'extra2')\n crashReporter.setExtraParameter('extra3', null)\n ... | 2017-02-13T19:15:40 |
vercel/next.js | 0bb6b56c8213e1fdec0ce1e2f19b9ecb855433b3 | fa100e29b12d536977fe825619788fbed87b193a | docs: fix 02-dynamic-routes.mdx (#57029)
params from `{}` to `{ slug: [] }`.
Fixes #57027 | [
{
"path": "docs/03-pages/01-building-your-application/01-routing/02-dynamic-routes.mdx",
"patch": "@@ -58,7 +58,7 @@ The difference between **catch-all** and **optional catch-all** segments is that\n \n | Route | Example URL | `params` |\n | -----------------------... | 2023-10-27T01:09:05 |
facebook/react | 76a7e2de752446194ae12db26ebdbbca407484a6 | 17de85689ed691eb970c3cba8c8562a92c994657 | Fix copying files to build/npm-react recursively
The intention of the `npm-react/**/*` rule was to copy recursively but it would have flattened any nested directory structure. I changed the `build/modules` rule to copy recursively as well, which is necessary for `ReactTestUtils` to be able to require `test/mock-module... | [
{
"path": "grunt/tasks/npm-react.js",
"patch": "@@ -14,9 +14,13 @@ function buildRelease() {\n // mkdir -p build/react-core/lib\n grunt.file.mkdir(lib);\n \n- // Copy everything over\n- // console.log(grunt.file.expandMapping(src + '**/*', dest, {flatten: true}));\n- grunt.file.expandMapping(src + '*... | 2014-01-17T09:15:15 |
nodejs/node | 203776fb7185092fa0e2e3a854c7c4595304eb83 | ea4b0bcb3cf13a5b94b358e1d60ec91dc9297f8f | build: fix LINT_MD_NEWER assignment
Indentation with a tab breaks the functionality, resulting in linting
all .md files when any one is changed. For consistency with the rest of
the Makefile and to restore functionality, remove indentation.
Refs: https://github.com/nodejs/node/pull/32614#issuecomment-610670779
PR-UR... | [
{
"path": "Makefile",
"patch": "@@ -1233,9 +1233,9 @@ lint-md-build:\n \t$(warning \"Deprecated no-op target 'lint-md-build'\")\n \n ifeq (\"$(wildcard tools/.mdlintstamp)\",\"\")\n-\tLINT_MD_NEWER =\n+LINT_MD_NEWER =\n else\n-\tLINT_MD_NEWER = -newer tools/.mdlintstamp\n+LINT_MD_NEWER = -newer tools/.mdlin... | 2020-04-07T23:34:53 |
rust-lang/rust | 0239e464876c8785e8601712220f17d9c58bcba6 | 347cd4e6cb8a189c12a89e89a3951a5b1043308c | Fix some bad formatting in `-Zmacro-stats` output.
I also double-checked that everything looks good on some real-world
crates. | [
{
"path": "compiler/rustc_interface/src/passes.rs",
"patch": "@@ -371,7 +371,7 @@ fn print_macro_stats(ecx: &ExtCtxt<'_>) {\n // The name won't abut or overlap with the uses value, but it does\n // overlap with the empty part of the uses column. Shrink the width\n // of t... | 2025-08-08T04:10:54 |
golang/go | a74e5f584e96cc89a8f6a1bb1a8cd9fc6ed6e72d | a726c9f6620a3fa34d1549706c1151754d385182 | cmd/compile: issue VarDef only for pointer-ful types
Use OpVarDef only when the variable being defined has pointers in it.
VarDef markers are only used for liveness analysis, and that only
runs on pointer-ful variables.
Fixes #53810
Change-Id: I09b0ef7ed31e72528916fe79325f80bbe69ff9b4
Reviewed-on: https://go-review.... | [
{
"path": "src/cmd/compile/internal/ssa/check.go",
"patch": "@@ -5,6 +5,7 @@\n package ssa\n \n import (\n+\t\"cmd/compile/internal/ir\"\n \t\"cmd/internal/obj/s390x\"\n \t\"math\"\n \t\"math/bits\"\n@@ -312,6 +313,10 @@ func checkFunc(f *Func) {\n \t\t\t\tif !v.Args[1].Type.IsInteger() {\n \t\t\t\t\tf.Fata... | 2022-07-24T20:24:21 |
electron/electron | f3756ccf2962c243fbe67f20c4a642fc2bf7f41f | 3b7207da9fb47a638561920ed30fd73288398def | Run crash reporter specs on all platforms | [
{
"path": "spec/api-crash-reporter-spec.js",
"patch": "@@ -35,7 +35,7 @@ describe('crashReporter module', function () {\n }\n \n it('should send minidump when renderer crashes', function (done) {\n- if (process.platform !== 'darwin') return done()\n+ if (process.env.APPVEYOR === 'True') return don... | 2017-02-13T18:07:10 |
vercel/next.js | 8d45aa9bfbf3ef156a5f215ee50def8315d67703 | f538232fda6dd09c2db00b679bc134a9aba8e90e | update @types/react version in examples (#57259)
### What?
When I ran `npx create-next-app --example with-turbopack` and installed
dependencies using `yarn`, I found an typescript error(`'SomeComponent'
cannot be used as a JSX component.`).
<img
src="https://github.com/vercel/next.js/assets/51700274/f6c7e478-c0... | [
{
"path": "examples/app-dir-mdx/package.json",
"patch": "@@ -9,7 +9,7 @@\n \"@next/mdx\": \"latest\",\n \"@types/mdx\": \"2.0.3\",\n \"@types/node\": \"18.11.18\",\n- \"@types/react\": \"18.0.27\",\n+ \"@types/react\": \"18.2.8\",\n \"@types/react-dom\": \"18.0.10\",\n \"next\": \"... | 2023-10-27T00:52:08 |
facebook/react | 0906d282ec63e9e99be4edcf0f715cd344f2f9ac | 8ca62bd022b535386da08b8d2ba59b951d3cfc2a | throw when using component/component class as mixin
throw invariant error to help people new to mixins, so that they don't get misled into trying to mixin components into another component | [
{
"path": "src/core/ReactCompositeComponent.js",
"patch": "@@ -430,6 +430,17 @@ function validateLifeCycleOnReplaceState(instance) {\n * specification keys when building `ReactCompositeComponent` classses.\n */\n function mixSpecIntoComponent(ConvenienceConstructor, spec) {\n+ invariant(\n+ !isValidCl... | 2014-01-15T05:11:25 |
rust-lang/rust | 347cd4e6cb8a189c12a89e89a3951a5b1043308c | 2fd855fbfc8239285aa2d596f76a8cc75e17ce02 | Augment the test.
Some cases that are currently handled incorrectly. | [
{
"path": "tests/ui/stats/macro-stats.rs",
"patch": "@@ -49,10 +49,32 @@ fn opt(x: Option<u32>) {\n }\n }\n \n-macro_rules! long_name_that_fits_on_a_single_line {\n- () => {}\n-}\n-long_name_that_fits_on_a_single_line!();\n+macro_rules! long_name_that_fits_on_one_line { () => {} }\n+long_name_that_fi... | 2025-08-08T04:04:17 |
nodejs/node | dccdc51788bd5337f9fd80441ef52932383a2441 | 41b1e87356ec73810d57c37c7058d186f8d574bd | deps: fix zlib compilation for CPUs without SIMD features
Fix the compile flags so that zlib can run on CPUs that do
not have SSSE3/SSE4.2/etc. Do not compile zlib with flags that
indicate that those features are available, and instead enable
them selectively for functions that use them.
There are probably better way... | [
{
"path": "deps/zlib/adler32_simd.c",
"patch": "@@ -50,9 +50,13 @@\n #define NMAX 5552\n \n #if defined(ADLER32_SIMD_SSSE3)\n+#ifndef __GNUC__\n+#define __attribute__()\n+#endif\n \n #include <tmmintrin.h>\n \n+__attribute__((target(\"ssse3\")))\n uint32_t ZLIB_INTERNAL adler32_simd_( /* SSSE3 */\n uin... | 2020-04-03T02:13:23 |
golang/go | a10da772a68d692c2c8805b11aba9b6cb9920b15 | b4c124af1e2953e010200fe50651f5ffc967a346 | runtime: don't race cmd.Wait and cmd.StdoutPipe read
os/exec.Cmd.Wait closes the read end of os/exec.Cmd.StdoutPipe, meaning
that io.ReadAll can return fs.ErrClosed if the child exits too early,
allowing Wait to complete. The StdoutPipe docs already note this sharp
edge.
Move cmd.Wait until after we finish waiting on... | [
{
"path": "src/runtime/semasleep_test.go",
"patch": "@@ -37,14 +37,16 @@ func TestSpuriousWakeupsNeverHangSemasleep(t *testing.T) {\n \tif err := cmd.Start(); err != nil {\n \t\tt.Fatalf(\"Failed to start command: %v\", err)\n \t}\n+\n+\twaiting := false\n \tdoneCh := make(chan error, 1)\n-\tgo func() {\n-\... | 2022-08-01T20:25:15 |
electron/electron | 9a434af03e34d2aa325f93af6a0e702235dabaa4 | ba975d552a8adbf1699d38fc28e8659218fb6faf | Clear crash keys in InitBreakpad | [
{
"path": "atom/common/crash_reporter/crash_reporter_linux.cc",
"patch": "@@ -64,13 +64,15 @@ void CrashReporterLinux::InitBreakpad(const std::string& product_name,\n bool skip_system_crash_handler) {\n EnableCrashDumping(crashes_dir);\n \n- crash_keys_.SetKeyValue(\... | 2017-02-07T00:31:20 |
facebook/react | fd02f2c1cdc026fa9abd192bd6b972eb2a22c57e | 3d47177596e9782de36a5cd7065e01c69897b2bb | Fix lines longer than 80 chars | [
{
"path": "src/event/EventPluginRegistry.js",
"patch": "@@ -63,7 +63,11 @@ function recomputePluginOrdering() {\n var publishedEvents = PluginModule.eventTypes;\n for (var eventName in publishedEvents) {\n invariant(\n- publishEventForPlugin(publishedEvents[eventName], PluginModule, eve... | 2014-01-15T12:47:16 |
vercel/next.js | f538232fda6dd09c2db00b679bc134a9aba8e90e | 307bdcd04cc10c7fa0d06cbdb956bc18d605ab6d | docs(fix): example text unescaped entities (#57255)
Fix bug in example code. Loading with `'` can not be built with the default ESLint rules:
```ssh
./src/app/reviews/loading.tsx
4:15 Error: `'` can be escaped with `'`, `‘`, `'`, `’`. react/no-unescaped-entities
4:26 Error: `'` can be escape... | [
{
"path": "docs/02-app/02-api-reference/02-file-conventions/loading.mdx",
"patch": "@@ -10,14 +10,14 @@ By default, this file is a [Server Component](/docs/app/building-your-applicatio\n ```tsx filename=\"app/feed/loading.tsx\" switcher\n export default function Loading() {\n // Or a custom loading skelet... | 2023-10-27T00:20:13 |
rust-lang/rust | d47b5e4ab63df3774727e6dec542dade6ef22d9a | 2fd855fbfc8239285aa2d596f76a8cc75e17ce02 | Fix wrong cache line size of riscv64 | [
{
"path": "library/std/src/sync/mpmc/utils.rs",
"patch": "@@ -23,22 +23,20 @@ use crate::ops::{Deref, DerefMut};\n any(target_arch = \"x86_64\", target_arch = \"aarch64\", target_arch = \"powerpc64\",),\n repr(align(128))\n )]\n-// arm, mips, mips64, and riscv64 have 32-byte cache line size.\n+// ar... | 2025-08-08T03:19:04 |
nodejs/node | 41b1e87356ec73810d57c37c7058d186f8d574bd | 7251e8c2689f2f5dc2ca86d5077f22a3d12210bb | test: replace console.log/error with debuglog
Use utility debug logs instead of console logs
in test-cluster-setup-master-multiple.js
Refs: https://github.com/nodejs/node/issues/32678
PR-URL: https://github.com/nodejs/node/pull/32695
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Zeyu Yang <himself65@ou... | [
{
"path": "test/parallel/test-cluster-setup-master-multiple.js",
"patch": "@@ -23,6 +23,7 @@\n require('../common');\n const assert = require('assert');\n const cluster = require('cluster');\n+const debug = require('util').debuglog('test');\n \n assert(cluster.isMaster);\n \n@@ -36,7 +37,7 @@ const configs ... | 2020-04-06T21:03:12 |
golang/go | b4c124af1e2953e010200fe50651f5ffc967a346 | db3e915af2f5053c96ad1f33502a752768965676 | image/gif: avoid decoding past the first frame in decode()
The existing decode() method offers the ability to keep just one
frame of the GIF image, however it will read and decompress all
subsequent frames regardless.
Fixes #41142
Change-Id: I0c3c11f9c11cd487b6c365e9a8b98e617d555db0
GitHub-Last-Rev: 03ebc8ee7bb19ee8... | [
{
"path": "src/image/gif/reader.go",
"patch": "@@ -250,6 +250,10 @@ func (d *decoder) decode(r io.Reader, configOnly, keepAllFrames bool) error {\n \t\t\t\treturn err\n \t\t\t}\n \n+\t\t\tif !keepAllFrames && len(d.image) == 1 {\n+\t\t\t\treturn nil\n+\t\t\t}\n+\n \t\tcase sTrailer:\n \t\t\tif len(d.image) ... | 2021-06-18T02:14:28 |
facebook/react | 977b60c1ed941869d121e9f44a4019d649ed73c5 | 17de85689ed691eb970c3cba8c8562a92c994657 | Fix "Uncontrolled Components" documentation | [
{
"path": "docs/docs/06-forms.md",
"patch": "@@ -87,7 +87,7 @@ If you want to initialize the component with a non-empty value, you can supply a\n \n This example will function much like the **Controlled Components** example above.\n \n-Likewise, `<input>` supports `defaultChecked` and `<option>` supports `d... | 2014-01-15T05:13:27 |
electron/electron | 3e18d8baf564943664951fd385bb23296a302e95 | e4c54fd0d8e6a60d8c12a7488815cab6fddd9b28 | Remove _ prefix on binding methods | [
{
"path": "atom/common/api/atom_api_crash_reporter.cc",
"patch": "@@ -38,11 +38,11 @@ void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,\n auto report = base::Unretained(CrashReporter::GetInstance());\n dict.SetMethod(\"start\",\n base::Bind(&CrashReporter::Star... | 2017-02-02T21:00:00 |
vercel/next.js | 307bdcd04cc10c7fa0d06cbdb956bc18d605ab6d | aaf668a535b3815aece637e5f8e148edad02979c | (Examples) Add `with-google-maps-embed` example (#57365)
Adds `with-google-maps-embed` example in `examples/` directory to show
how to use the `<GoogleMapsEmbed />` component from
_@next/third-parties_.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smooth... | [
{
"path": "examples/with-google-maps-embed/.env.local.example",
"patch": "@@ -0,0 +1 @@\n+NEXT_PUBLIC_GOOGLE_API_KEY=\n\\ No newline at end of file",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "examples/with-google-maps-embed/.gitignore",
"patch": "@@ -0,0 +1,... | 2023-10-27T00:13:12 |
nodejs/node | aeb7084fe6446350ec032e9819746126811bf44f | b82d72c199e70a0c9fbeb6c06715ef8120b3de2f | n-api: detect deadlocks in thread-safe function
We introduce status `napi_would_deadlock` to be used as a return status
by `napi_call_threadsafe_function` if the call is made with
`napi_tsfn_blocking` on the main thread and the queue is full.
PR-URL: https://github.com/nodejs/node/pull/32689
Fixes: https://github.com... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -457,6 +457,7 @@ typedef enum {\n napi_date_expected,\n napi_arraybuffer_expected,\n napi_detachable_arraybuffer_expected,\n+ napi_would_deadlock,\n } napi_status;\n ```\n \n@@ -5095,6 +5096,12 @@ preventing data from being successfully added to the queue. I... | 2020-04-06T17:16:15 |
facebook/react | 091534c3765a2cf038f1df7f8f96ae01985694ef | 17de85689ed691eb970c3cba8c8562a92c994657 | Wrap _performComponentUpdate call in try/finally
Fixes #208. If you attempt a state update with a bad state then the render will fail (and the DOM won't change) but if you switch back to a valid state later then it'll rerender properly. | [
{
"path": "src/core/ReactCompositeComponent.js",
"patch": "@@ -949,30 +949,34 @@ var ReactCompositeComponentMixin = {\n var nextState = this._pendingState || this.state;\n this._pendingState = null;\n \n- if (this._pendingForceUpdate ||\n- !this.shouldComponentUpdate ||\n- this.shou... | 2014-01-15T04:30:07 |
golang/go | db3e915af2f5053c96ad1f33502a752768965676 | bdecfcb5fcc8705df7d2130310cf6b395f24e4c8 | internal/xcoff: better handling of malformed symbol tables
Check for malformed data when reading the number of aux
symbols associated with a symbol table entry.
Fixes #54584.
Change-Id: Ic2a8d4d6a1d481d585a065b8182de86294c3d3d1
Reviewed-on: https://go-review.googlesource.com/c/go/+/425049
TryBot-Result: Gopher Robot... | [
{
"path": "src/internal/xcoff/file.go",
"patch": "@@ -283,6 +283,9 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t\t\t\treturn nil, err\n \t\t\t}\n \t\t\tnumaux = int(se.Nnumaux)\n+\t\t\tif numaux < 0 {\n+\t\t\t\treturn nil, fmt.Errorf(\"malformed symbol table, invalid number of aux symbols\")\n+\t\t\t... | 2022-08-22T11:59:49 |
vercel/next.js | aaf668a535b3815aece637e5f8e148edad02979c | 6a63c4ffebe37c4f07e519179d5fc3779c05b01a | (Examples) Add `with-youtube-embed` example (#57367)
Adds `with-youtube-embed` example in `examples/` directory to show how
to use the `<YouTubeEmbed />` component from _@next/third-parties_.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possib... | [
{
"path": "examples/with-youtube-embed/.gitignore",
"patch": "@@ -0,0 +1,36 @@\n+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n+\n+# dependencies\n+/node_modules\n+/.pnp\n+.pnp.js\n+.yarn/install-state.gz\n+\n+# testing\n+/coverage\n+\n+# next.js\n+/.next/\n+/out/\n+... | 2023-10-27T00:12:23 |
nodejs/node | b82d72c199e70a0c9fbeb6c06715ef8120b3de2f | 934ef43a62406314b989309793109f35b81561b3 | report: fix stderr matching for fatal error
PR-URL: https://github.com/nodejs/node/pull/32699
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matheus Marchini <mat@mmarc... | [
{
"path": "test/report/test-report-fatal-error.js",
"patch": "@@ -113,8 +113,8 @@ const ARGS = [\n assert.strictEqual(reports.length, 0);\n \n const lines = child.stderr.split('\\n');\n- // Skip over unavoidable free-form output from V8.\n- const report = lines[1];\n+ // Skip over unavoidable free-fo... | 2020-04-07T05:28:04 |
facebook/react | d96c6914c7ed4efdabea8edc11d0c8ba64acb42b | c885abbf21fb04ae286f45b0fa5cc433310f8d8c | Make findComponentRoot faster with more nodeCache
This is an alternative, less-invasive, fix for #891.
Test Plan:
On http://jsbin.com/OqOJidIQ/2/edit, got timings like
[75, 56, 30, 36, 27, 27, 28, 32, 27, 27, 28, 31]
instead of the old
[75, 729, 46, 32, 28, 34, 26, 27, 27, 30, 26, 26].
I also added a counter to g... | [
{
"path": "src/core/ReactInstanceHandles.js",
"patch": "@@ -168,7 +168,8 @@ function getFirstCommonAncestorID(oneID, twoID) {\n \n /**\n * Traverses the parent path between two IDs (either up or down). The IDs must\n- * not be the same, and there must exist a parent path between them.\n+ * not be the same,... | 2014-01-15T01:44:10 |
golang/go | bdecfcb5fcc8705df7d2130310cf6b395f24e4c8 | fc34fdb4154ac40711209e9234639285e071daa9 | go/token: make mutex locking in unpack cheaper
I was profiling the cpu usage of go/printer's only benchmark,
and found that token.File.Unpack was one of the top offenders.
It was mainly the deferred unlock that took a big chunk of time,
and to my surprise, reoving the use of defer helped significantly:
name ol... | [
{
"path": "src/go/token/position.go",
"patch": "@@ -286,7 +286,6 @@ func searchLineInfos(a []lineInfo, x int) int {\n // possibly adjusted by //line comments; otherwise those comments are ignored.\n func (f *File) unpack(offset int, adjusted bool) (filename string, line, column int) {\n \tf.mutex.Lock()\n-\... | 2022-08-19T09:24:08 |
electron/electron | 1f0bc7fe865f53e05c4885fb1e8152846521cf52 | d3c967401de0c70f4a21fb14d3ee42a51bdcff74 | Upgrade brigthray for context crash fix | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit adb27d1c703eed84d115906e2e8813dc05185033\n+Subproject commit eccdb0f1cb0fe8feaeeaf1b1a1a1cc2c3f3c7126",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2017-02-10T17:40:46 |
vercel/next.js | e93a35bb2616f3ef36c1c1cc18fca74b2665404e | 27bfd2d2300f0946749ac4724e91526b0371dbe8 | update next/third-parties to use Next 14 or 13 as a peer dependency, instead of just 13 (#57515)
Just tried to update to 14 but `next/third-parties` looks like it's still expecting us to be on Next 13
```
Error: npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolv... | [
{
"path": "packages/third-parties/package.json",
"patch": "@@ -27,7 +27,7 @@\n \"prettier\": \"2.5.1\"\n },\n \"peerDependencies\": {\n- \"next\": \"^13.0.0\",\n+ \"next\": \"^13.0.0 || ^14.0.0\",\n \"react\": \"^18.2.0\"\n }\n }",
"additions": 1,
"deletions": 1,
"language": ... | 2023-10-26T22:05:01 |
facebook/react | f62ec225e09944d9e2c04cf1bfe97ded1f41c90d | 9420e86480ddbf93515864ca66ea5782f3ad9d98 | Fix typo in docs. | [
{
"path": "docs/docs/07-working-with-the-browser.md",
"patch": "@@ -113,7 +113,7 @@ In addition to that philosophy, we've also taken the stance that we, as authors\n \n ### Polyfills Needed to Support Older Browsers\n \n-These six functions can be polyfilled using a combintion of `es5-shim.js` and `es5-sham... | 2014-01-15T01:09:39 |
nodejs/node | 2681cba62e5e08338036c968c93ae467dda3e800 | 6ec0285478391635887cf7f018f1e55e8013e6a4 | doc: clarify behavior of napi_get_typedarray_info
Signed-off-by: Michael Dawson <michael_dawson@ca.ibm.com>
Fixes: https://github.com/nodejs/node/issues/32089
PR-URL: https://github.com/nodejs/node/pull/32603
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -2447,7 +2447,8 @@ napi_status napi_get_arraybuffer_info(napi_env env,\n \n * `[in] env`: The environment that the API is invoked under.\n * `[in] arraybuffer`: `napi_value` representing the `ArrayBuffer` being queried.\n-* `[out] data`: The underlying data buffer ... | 2020-04-01T21:23:32 |
golang/go | fc34fdb4154ac40711209e9234639285e071daa9 | 6bdca82030779e3b9032324e68a3feacb85bc9bc | internal/saferio: avoid returning io.EOF from ReadData if data was read
ReadData follows the error semantics of io.ReadFull for small sizes,
it should do so as well for large sizes.
Change-Id: I6a11b00d903ac5332e1dda074473790dcf21f32a
Reviewed-on: https://go-review.googlesource.com/c/go/+/424919
TryBot-Result: Gopher... | [
{
"path": "src/internal/saferio/io.go",
"patch": "@@ -21,6 +21,10 @@ const chunk = 10 << 20 // 10M\n // ReadData reads n bytes from the input stream, but avoids allocating\n // all n bytes if n is large. This avoids crashing the program by\n // allocating all n bytes in cases where n is incorrect.\n+//\n+//... | 2022-08-19T07:15:53 |
vercel/next.js | b9dd6c4ff6b025453504c6a5669094260c23ca1b | b546d8b22c0f0749022cd84c22e67ec3628eb027 | Fix: Call cookies function from route to flag as dynamic (#57494)
### What?
Move calling the `cookies` function up to the route
### Why?
This flags the route as `dynamic`, meaning we don't need to explicitly declare `export const dynamic = 'force-dynamic'`
### How?
Passing the returned `cookieStore` into Supabase... | [
{
"path": "examples/with-supabase/app/auth/callback/route.ts",
"patch": "@@ -1,7 +1,6 @@\n import { createClient } from '@/utils/supabase/server'\n import { NextResponse } from 'next/server'\n-\n-export const dynamic = 'force-dynamic'\n+import { cookies } from 'next/headers'\n \n export async function GET(r... | 2023-10-26T16:18:17 |
golang/go | 761db3e7f07ec358323589eab72b153339036086 | 9a9aad449fddb1d3f66e6200d2c6c63a0eed63a4 | debug/buildinfo: add regression tests for different buildmodes
Updates #48187
Change-Id: I2364f248520e77c2e3a4832b9769b52e7aa62f73
Reviewed-on: https://go-review.googlesource.com/c/go/+/357569
Reviewed-by: Bryan Mills <bcmills@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <go... | [
{
"path": "src/debug/buildinfo/buildinfo_test.go",
"patch": "@@ -8,6 +8,7 @@ import (\n \t\"bytes\"\n \t\"debug/buildinfo\"\n \t\"flag\"\n+\t\"fmt\"\n \t\"internal/testenv\"\n \t\"os\"\n \t\"os/exec\"\n@@ -53,7 +54,17 @@ func TestReadFile(t *testing.T) {\n \t\tplatforms = append(platforms, runtimePlatform)\... | 2021-10-21T14:57:53 |
vercel/next.js | 0bcba460b77aad33a22280d4544c65aa7f68e848 | 92b4d6737ce16a729bd970c4bfa7b2703ee88a36 | fix publish script | [
{
"path": "scripts/start-release.js",
"patch": "@@ -76,6 +76,8 @@ async function waitForPrompt(cp, rawAssertion, timeout = 3000) {\n })\n }\n \n+const SEMVER_TYPES = ['patch', 'minor', 'major']\n+\n async function main() {\n const args = process.argv\n const releaseType = args[args.indexOf('--release-... | 2023-10-26T15:58:37 |
nodejs/node | c849f2d4f8ff19c830b6a97bd6978bf41f878e8b | 8aa7ef7840ef5f7161f3195e51a3fa6783290160 | doc: remove optional parameter from markdown anchor link
Fix up a few instances so that lines don't xceed 80 characters.
PR-URL: https://github.com/nodejs/node/pull/32671
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> | [
{
"path": "doc/api/net.md",
"patch": "@@ -589,7 +589,7 @@ Possible signatures:\n * [`socket.connect(options[, connectListener])`][`socket.connect(options)`]\n * [`socket.connect(path[, connectListener])`][`socket.connect(path)`]\n for [IPC][] connections.\n-* [`socket.connect(port[, host][, connectListene... | 2020-04-05T17:04:54 |
facebook/react | eb2ac7f2f2588dcae64e0ab6c4a70adf9d427748 | ad70848e80238d12c26af41a0bc6d1c9b6fea2da | Add dataType to all $.ajax calls for consistency
Fixes https://groups.google.com/forum/#!topic/reactjs/WWA3ZqU6y4w. | [
{
"path": "docs/docs/tutorial.md",
"patch": "@@ -410,12 +410,13 @@ var CommentBox = React.createClass({\n \n Here, `componentWillMount` is a method called automatically by React before a component is rendered. The key to dynamic updates is the call to `this.setState()`. We replace the old array of comments ... | 2014-01-14T03:54:09 |
vercel/next.js | fd0a96ffe79b79e6a25d8ab316a679ecbaba8abe | cbfa126e4b25b435e344a9513d62264f161f3fc0 | Another lint fix for front (#57511) | [
{
"path": "docs/02-app/01-building-your-application/06-optimizing/10-third-party-libraries.mdx",
"patch": "@@ -278,11 +278,11 @@ export default function Page() {\n \n #### Options\n \n-| Name | Type | Description ... | 2023-10-26T14:57:06 |
electron/electron | 17fe5efa13960b17903eb1a1e92d5af6296cab5d | 7c33f3ee65dd668d4b9defead3caf445caab9e9e | Fix linting | [
{
"path": "lib/browser/api/dialog.js",
"patch": "@@ -11,7 +11,7 @@ const fileDialogProperties = {\n createDirectory: 1 << 3,\n showHiddenFiles: 1 << 4,\n promptToCreate: 1 << 5,\n- noResolveAliases: 1 << 6,\n+ noResolveAliases: 1 << 6\n }\n \n const messageBoxTypes = ['none', 'info', 'warning', 'err... | 2017-02-12T04:27:19 |
facebook/react | 124096a9fedadbd488bf8de3e767b1c9f9bd0b2f | ad6a982cd0b6236aa242744ada44b8c882136d1f | Fix #845, Trivial year change
This was accidentally pulled into gh-pages. | [
{
"path": "docs/_layouts/default.html",
"patch": "@@ -76,7 +76,7 @@\n \n <footer class=\"wrap\">\n <div class=\"left\">A Facebook & Instagram collaboration.</div>\n- <div class=\"right\">© 2013 Facebook Inc.</div>\n+ <div class=\"right\">© 2014 Facebook Inc.</div>\n </f... | 2014-01-13T16:56:20 |
vercel/next.js | cbfa126e4b25b435e344a9513d62264f161f3fc0 | 340a9f7b3e55ac90b365828f95166a603cd7ac62 | Fixes lint error on front (#57509) | [
{
"path": "docs/02-app/01-building-your-application/06-optimizing/10-third-party-libraries.mdx",
"patch": "@@ -278,11 +278,11 @@ export default function Page() {\n \n #### Options\n \n-| Name | Type | Description ... | 2023-10-26T14:33:53 |
golang/go | 8d57f4dcef5d69a0a3f807afaa9625018569010b | 28afa5b1761ba6bb51a4c831e9ee0b9812de8bc5 | cmd/pprof: fix addr calculation for Windows
This makes it possible to use `disasm` with ASLR windows binaries.
For #46639
Change-Id: I08aff38dc0b33fdfb07e0206766db066e33207d1
Reviewed-on: https://go-review.googlesource.com/c/go/+/416976
Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
Reviewed-by: Michael Pratt ... | [
{
"path": "src/cmd/internal/objfile/pe.go",
"patch": "@@ -31,13 +31,7 @@ func (f *peFile) symbols() ([]Sym, error) {\n \t// We infer the size of a symbol by looking at where the next symbol begins.\n \tvar addrs []uint64\n \n-\tvar imageBase uint64\n-\tswitch oh := f.pe.OptionalHeader.(type) {\n-\tcase *pe.... | 2022-07-11T13:12:41 |
facebook/react | ad6a982cd0b6236aa242744ada44b8c882136d1f | 3d47177596e9782de36a5cd7065e01c69897b2bb | Fix #874: Edit thinking-in-react
Accidentally pulled #874 into gh-pages. | [
{
"path": "docs/_posts/2013-11-05-thinking-in-react.md",
"patch": "@@ -59,7 +59,7 @@ Now that we've identified the components in our mock, let's arrange them into a\n \n <iframe width=\"100%\" height=\"300\" src=\"http://jsfiddle.net/6wQMG/embedded/\" allowfullscreen=\"allowfullscreen\" frameborder=\"0\"></... | 2014-01-13T16:51:29 |
vercel/next.js | cfbffb2ff4c180a7f8f7f9792fab59fcd740a617 | fc1b6c4742a27a4728031c0945f03456d9ea5d37 | Revert "Apply react-server transform and valication to middleware (#5… (#57504)
…7448)"
This reverts commit 17bd232cf21c1e0105ec06f8513ff6e3e7f8d7d1.
<!-- 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 check... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -455,12 +455,20 @@ export default async function getBaseWebpackConfig(\n : []\n \n const swcLoaderForMiddlewareLayer = useSWCLoader\n- ? swcServerLayerLoader\n+ ? getSwcLoader({\n+ serverComponents: false,\n+ isRea... | 2023-10-26T12:29:49 |
facebook/react | 3d47177596e9782de36a5cd7065e01c69897b2bb | ddcab8be9947ea52105bf3b23fff9ebb7f527115 | fix propTypes.any.weak test
accidentally copied over `.string.weak` and didn't change it | [
{
"path": "src/core/__tests__/ReactPropTypes-test.js",
"patch": "@@ -368,7 +368,7 @@ describe('Union Types', function() {\n });\n \n it('should have a weak version that returns true/false', function() {\n- expect(typeCheck(Props.string.weak, null)()).toEqual(true);\n+ expect(typeCheck(Prop... | 2014-01-13T04:40:17 |
nodejs/node | 8aa7ef7840ef5f7161f3195e51a3fa6783290160 | 6faa162f5561a005c2ea45f594bf7cfcbe10e1b6 | src: initialize inspector before RunBootstrapping()
This is necessary for `--inspect-brk-node` to work, and for the
inspector to be aware of scripts created before bootstrapping.
Fixes: https://github.com/nodejs/node/issues/32648
Refs: https://github.com/nodejs/node/pull/30467#discussion_r396879908
PR-URL: https://g... | [
{
"path": "src/api/environment.cc",
"patch": "@@ -330,6 +330,19 @@ void FreeIsolateData(IsolateData* isolate_data) {\n delete isolate_data;\n }\n \n+InspectorParentHandle::~InspectorParentHandle() {}\n+\n+// Hide the internal handle class from the public API.\n+#if HAVE_INSPECTOR\n+struct InspectorParentH... | 2020-04-05T21:13:31 |
golang/go | 28afa5b1761ba6bb51a4c831e9ee0b9812de8bc5 | d05ce23756573c6dc2c5026d936f2ef6ac140ee2 | runtime/pprof: add memory mapping info for Windows
Fixes #43296
Change-Id: Ib277c2e82c95f71a7a9b7fe1b22215ead7a54a88
Reviewed-on: https://go-review.googlesource.com/c/go/+/416975
Run-TryBot: Alex Brainman <alex.brainman@gmail.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Alex Brainman <alex.brainma... | [
{
"path": "src/internal/syscall/windows/memory_windows.go",
"patch": "@@ -5,12 +5,20 @@\n package windows\n \n type MemoryBasicInformation struct {\n-\tBaseAddress uintptr\n-\tAllocationBase uintptr\n+\t// A pointer to the base address of the region of pages.\n+\tBaseAddress uintptr\n+\t// A pointe... | 2022-07-11T08:58:39 |
electron/electron | 9b8e4eb6cbcbd8aba71f40969989a9b85af8acf6 | 593b7cc92a334475bc5e6e99d07abfa1617ac777 | Fix typo
Fix typo | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -47,7 +47,7 @@ win.once('ready-to-show', () => {\n })\n ```\n \n-This is event is usually emitted after the `did-finish-load` event, but for\n+This event is usually emitted after the `did-finish-load` event, but for\n pages with many remote resources, it ... | 2017-02-13T08:14:49 |
vercel/next.js | 3e7f96e16a07e592461b597491c2adb2e081f6ae | c7d02f48b2ce88c7be7bcd4300ae6912d1efaf13 | revert "Apply react-server condition for pages api (#57459)" (#57500)
This reverts commit 6b18f397cb40199b688111236d47af83f9b3b408.
<!-- 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.
... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -454,12 +454,13 @@ export default async function getBaseWebpackConfig(\n ].filter(Boolean)\n : []\n \n- const swcLoaderForMiddlewareLayer =\n- // When using Babel, we will have to use SWC to do the optimization\n- // for mi... | 2023-10-26T11:37:13 |
facebook/react | f71dbab31a9c915dc0b7533ac1c8abab3e627dfc | 73d9d286ee84770c10fd84022fde92bd2efc8eaa | Fix Undefined `ownerDocument` Fatal in IE8
This fixes a JS fatal in IE8 when `topLevelTarget.ownerDocument` is sometimes undefined. | [
{
"path": "src/eventPlugins/EnterLeaveEventPlugin.js",
"patch": "@@ -82,12 +82,17 @@ var EnterLeaveEventPlugin = {\n }\n \n var win;\n- if (topLevelTarget != null && topLevelTarget.window === topLevelTarget) {\n- // topLevelTarget probably is a window object\n+ if (topLevelTarget.window =... | 2014-01-11T04:13:18 |
nodejs/node | 6ed912dd0319475d2c4ebd9991af52420de17fe8 | fd2b35c576ead289772e2e85d4a07ecf61b800c1 | test: fix check error name on error instance
PR-URL: https://github.com/nodejs/node/pull/32508
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-worker-syntax-error-file.js",
"patch": "@@ -11,7 +11,7 @@ if (!process.env.HAS_STARTED_WORKER) {\n w.on('message', common.mustNotCall());\n w.on('error', common.mustCall((err) => {\n assert.strictEqual(err.constructor, SyntaxError);\n- assert(/SyntaxError/.test(err))... | 2020-03-26T16:54:52 |
golang/go | d05ce23756573c6dc2c5026d936f2ef6ac140ee2 | f3563bc55c7029473aeaf228171ecd06f1317532 | misc/cgo/testcarchive: permit SIGQUIT for TestSignalForwardingExternal
Occasionally the signal will be sent to a Go thread, which will cause
the program to exit with SIGQUIT rather than SIGSEGV.
Add TestSignalForwardingGo to test the case where the signal is
expected to be delivered to a Go thread.
This is a roll fo... | [
{
"path": "misc/cgo/testcarchive/carchive_test.go",
"patch": "@@ -19,6 +19,7 @@ import (\n \t\"runtime\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync\"\n \t\"syscall\"\n \t\"testing\"\n \t\"time\"\n@@ -526,38 +527,13 @@ func TestEarlySignalHandler(t *testing.T) {\n \n func TestSignalForwarding(t *testing.T) {... | 2022-08-19T21:43:47 |
facebook/react | 73d9d286ee84770c10fd84022fde92bd2efc8eaa | 49d6d2169d981eb56b7cd8574eda59511e661f3b | Fix EnterLeaveEventPlugin Test in jsdom
This is a follow-up to #803.
In jsdom (used for internal testing), `<iframe>` does not properly create a default document. This makes the `EnterLeaveEventPlugin` tests work for jsdom, too.
Open source does not need this because it uses PhantomJS. | [
{
"path": "src/eventPlugins/__tests__/EnterLeaveEventPlugin-test.js",
"patch": "@@ -17,6 +17,8 @@\n * @emails react-core\n */\n \n+/*jslint evil: true */\n+\n \"use strict\";\n \n var EnterLeaveEventPlugin;\n@@ -42,7 +44,13 @@ describe('EnterLeaveEventPlugin', function() {\n var iframe = document.crea... | 2014-01-11T04:07:57 |
vercel/next.js | 936b953eda64af7eeacedc847e953d2d2191bbaf | d3966310903ec22e4a2f401ad179e487b271567a | update turbopack (#57487)
* https://github.com/vercel/turbo/pull/6290 <!-- Tobias Koppers - fix
hmr client to be actually reliable -->
Closes WEB-1887
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> | [
{
"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-231026.2#26320ebc1f648a9ba872db33191abe364337d1cd\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-10-26T08:39:33 |
nodejs/node | a50745e60817392d3a220d0e346d6b74fb911548 | 98b6b2d840b6bb9c47bdbe641ea2117571789fa8 | src: munmap(2) upon class instance destructor
Replace `OnScopeLeave` with a class whose instance destructor performs
the munmap(2).
Signed-off-by: Gabriel Schulhof <gabriel.schulhof@intel.com>
Fixes: https://github.com/nodejs/node/issues/32532
PR-URL: https://github.com/nodejs/node/pull/32570
Co-Authored-By: Anna Hen... | [
{
"path": "src/large_pages/node_large_page.cc",
"patch": "@@ -20,22 +20,56 @@\n //\n // SPDX-License-Identifier: MIT\n \n+// The functions in this file map the .text section of Node.js into 2MB pages.\n+// They perform the following steps:\n+//\n+// 1: Find the Node.js binary's `.text` section in memory. Th... | 2020-03-30T08:23:31 |
golang/go | f3563bc55c7029473aeaf228171ecd06f1317532 | 375a80c9ef521404f1d972ad82719f90bc3a019f | debug/pe: fetch section size directly in (*Section).Data
Change-Id: Idc1f8b3fb6b4b2fdcc6dade048cc14c53715319f
Reviewed-on: https://go-review.googlesource.com/c/go/+/424197
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-... | [
{
"path": "src/debug/pe/section.go",
"patch": "@@ -98,7 +98,7 @@ type Section struct {\n \n // Data reads and returns the contents of the PE section s.\n func (s *Section) Data() ([]byte, error) {\n-\treturn saferio.ReadDataAt(s.sr, uint64(s.sr.Size()), 0)\n+\treturn saferio.ReadDataAt(s.sr, uint64(s.Size),... | 2022-08-17T03:45:59 |
electron/electron | 51d5706b48454d08766fa74b009090b7e2f5322e | 5e78330c6d15bbb277408479ddfd5481f9031d3e | Update libchromiumcontent: fix usage of private API in MAS build | [
{
"path": "script/lib/config.py",
"patch": "@@ -9,7 +9,7 @@\n BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \\\n 'https://s3.amazonaws.com/github-janky-artifacts/libchromiumcontent'\n LIBCHROMIUMCONTENT_COMMIT = os.getenv('LIBCHROMIUMCONTENT_COMMIT') or \\\n- 'ea20b8dfe0a7fad61bb4917404950ddcd... | 2017-02-13T07:45:43 |
vercel/next.js | b231444d2b7cc29878d48504647a63e7ba6011f1 | 7ad7ebdfb80868a1252c8f838533e0d4b66e48de | fix hmr client to be actually reliable (vercel/turbo#6290)
### Description
<!--
✍️ Write a short summary of your work.
If necessary, include relevant screenshots.
-->
### Testing Instructions
<!--
Give a quick description of steps to test your changes.
-->
Closes WEB-1886 | [
{
"path": "crates/turbopack-ecmascript-runtime/js/src/dev/client/hmr-client.ts",
"patch": "@@ -30,14 +30,12 @@ export function connect({\n default:\n if (Array.isArray(msg.data)) {\n for (let i = 0; i < msg.data.length; i++) {\n- handleSocketMessage(\n- msg.da... | 2023-10-26T08:22:41 |
golang/go | 375a80c9ef521404f1d972ad82719f90bc3a019f | 1c4a80377580a05b9c3f1cccb66baefc01383352 | go/internal/gcimporter: use saferio to read indexed data
Avoid allocating large amounts of memory for corrupt input.
No test case because the problem can only happen for invalid data.
Let the fuzzer find cases like this.
Fixes #53787
Change-Id: I1b75a4c000b8d1112110309ec44b0ba9b4638d71
Reviewed-on: https://go-revie... | [
{
"path": "src/go/internal/gcimporter/iimport.go",
"patch": "@@ -15,7 +15,9 @@ import (\n \t\"go/constant\"\n \t\"go/token\"\n \t\"go/types\"\n+\t\"internal/saferio\"\n \t\"io\"\n+\t\"math\"\n \t\"math/big\"\n \t\"sort\"\n \t\"strings\"\n@@ -103,12 +105,16 @@ func iImportData(fset *token.FileSet, imports ma... | 2022-07-12T01:50:03 |
nodejs/node | 98b6b2d840b6bb9c47bdbe641ea2117571789fa8 | f675e3a365143cd695c6208524775838dec58bac | stream: complete pipeline with stdio
stdio (stderr & stdout) should for compatibility
reasons not be closed/end():ed. However, this
causes pipeline with a stdio destination to
never finish. This commit fixes this issue at
a performance cost.
Refs: https://github.com/nodejs/node/issues/7606
Fixes: https://github.com/... | [
{
"path": "lib/internal/streams/pipeline.js",
"patch": "@@ -267,6 +267,13 @@ function pipeline(...streams) {\n } else if (isStream(stream)) {\n if (isReadable(ret)) {\n ret.pipe(stream);\n+\n+ // Compat. Before node v10.12.0 stdio used to throw an error so\n+ // pipe() did/do... | 2020-03-19T21:38:30 |
facebook/react | f5a48f1ff4a06ed5d281b51a9ed422414f007cb2 | e3e24500aeebd0c3da0822f50f299b79d9229565 | Fix cases where owner warning is shown
In b0431a5 I added the check in the wrong place which could cause the warning to be shown because of key changes rather than owner changes like the warning suggests. | [
{
"path": "src/core/shouldUpdateReactComponent.js",
"patch": "@@ -31,11 +31,11 @@\n function shouldUpdateReactComponent(prevComponent, nextComponent) {\n // TODO: Remove warning after a release.\n if (prevComponent && nextComponent &&\n- prevComponent.constructor === nextComponent.constructor) {\n-... | 2014-01-03T20:31:44 |
electron/electron | 45a1ffef8f36b4e49d78713aef8393cd775a1f1f | 43b09b7360d221ad67c10ab99a592dff7cc7ff45 | :memo: Thai: fix small line breaking, word warpping in glossary.md | [
{
"path": "docs-translations/th-TH/glossary.md",
"patch": "@@ -4,14 +4,17 @@\n \n ### ASAR\n \n-[ASAR (Atom Shell Archive Format)][asar] เป็น extension ของไฟล์ที่มีลักษณะความคล้ายครีง `tar` ที่รวมหลายไฟล์ลงไปในไฟล์เดียว Electron สามารถอ่านไฟล์ได้เลยโดยที่ไม่ต้อง unpack ไฟล์\n+[ASAR (Atom Shell Archive Forma... | 2017-01-19T19:38:12 |
vercel/next.js | 9d8dbfa33798ed97b7e6f66c5a83a63c502f4b49 | 581b1be0641d9ab05070d3a9521f69711ee2c292 | fix client-only alias in SSRed client components (#57484)
### What?
client-only is allows in SSR, server-only should error
Closes WEB-1883 | [
{
"path": "packages/next-swc/crates/next-core/src/next_import_map.rs",
"patch": "@@ -573,7 +573,6 @@ async fn insert_next_server_special_aliases(\n // TODO: should include `ServerContextType::PagesApi` routes, but that type doesn't exist.\n ServerContextType::AppRSC { .. }\n | Server... | 2023-10-26T07:13:59 |
golang/go | 1c4a80377580a05b9c3f1cccb66baefc01383352 | 5f0170f9a529c7113ac12f1270e00e5bdc444803 | debug/plan9obj: use saferio to read section data
Avoid allocating large amounts of memory for corrupt input.
No test case because the problem can only happen for invalid data.
Let the fuzzer find cases like this.
Fixes #52521
Change-Id: I6a046f2e28e1255cf773ce135c5bb2b967ef43e9
Reviewed-on: https://go-review.google... | [
{
"path": "src/debug/plan9obj/file.go",
"patch": "@@ -9,6 +9,7 @@ import (\n \t\"encoding/binary\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"internal/saferio\"\n \t\"io\"\n \t\"os\"\n )\n@@ -55,12 +56,7 @@ type Section struct {\n \n // Data reads and returns the contents of the Plan 9 a.out section.\n func (s *Secti... | 2022-06-25T22:28:15 |
nodejs/node | 95c08853ee1f47a44d45ed6c37fbb98fd800eb48 | 561dda273fc6590d998b2af0cf0c63654c679d48 | src: consistently declare BindingData class
Its defined as a class, so forward declare as a class, fixing type
mismatch warning.
PR-URL: https://github.com/nodejs/node/pull/32677
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Richard Lau <riclau@uk.ibm.com> | [
{
"path": "src/node_stat_watcher.h",
"patch": "@@ -31,7 +31,7 @@\n \n namespace node {\n namespace fs {\n-struct BindingData;\n+class BindingData;\n }\n \n class Environment;",
"additions": 1,
"deletions": 1,
"language": "C/C++ Header"
}
] | 2020-04-06T04:27:54 |
rust-lang/rust | c945393f671a5d981d0e782aacb6bc29d2ff7a0f | 32a216ecab289cccc00aa823f3bfffcee74687ae | fix inf loop | [
{
"path": "clippy_lints/src/loops/infinite_loop.rs",
"patch": "@@ -1,10 +1,11 @@\n use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::{fn_def_id, is_from_proc_macro, is_lint_allowed};\n use hir::intravisit::{Visitor, walk_expr};\n-use hir::{Expr, ExprKind, FnRetTy, FnSig, Node, TyKind};\... | 2025-06-28T02:22:20 |
electron/electron | e85d2f00dd9ba2b57a480f926583c1fe1ea6b6bd | 035d9df29bc5aefc4b5174c09b44949e0da06c8b | Fix linting errors around spacing and semicolons | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -164,12 +164,12 @@ instance, failing to do so may result in unexpected behavior. For example:\n \n ```javascript\n myBrowserWindow.webContents.on('new-window', (event, url) => {\n- event.preventDefault()\n- const win = new BrowserWindow({ show: false })... | 2017-02-10T16:49:13 |
golang/go | 5f0170f9a529c7113ac12f1270e00e5bdc444803 | 2e06019dcd82c1c525c805af687063875d4b223b | bytes, strings: s/after/before/ in CutSuffix
This follows on CL 407176 which added this function (in both
packages). This CL makes it consistent with the Cut function,
which uses “before” and “after” in return variable names.
Change-Id: Id4345d2fe0f50bf301a880803e87bf356986b518
Reviewed-on: https://go-review.googleso... | [
{
"path": "src/bytes/bytes.go",
"patch": "@@ -1329,7 +1329,7 @@ func CutPrefix(s, prefix []byte) (after []byte, found bool) {\n // If suffix is the empty byte slice, CutSuffix returns s, true.\n //\n // CutSuffix returns slices of the original slice s, not copies.\n-func CutSuffix(s, suffix []byte) (after [... | 2022-08-18T09:02:38 |
vercel/next.js | 2c21635cf6b003400ade42883cadb273f8c7599b | 3e341678cbfed6eb81e883cfa0c209ed712be06a | if there are errors during postpone, or postpone was caught, fail static generation (#57477)
Rather than sending a warning, we should fail the build if a postpone
call is caught. We should also fail the build if there are any errors
during static generation similar to the non-ppr case.
---------
Co-authored-by... | [
{
"path": "packages/next/src/export/routes/app-page.ts",
"patch": "@@ -13,7 +13,6 @@ import {\n NEXT_URL,\n NEXT_ROUTER_PREFETCH,\n } from '../../client/components/app-router-headers'\n-import { isDynamicUsageError } from '../helpers/is-dynamic-usage-error'\n import { NEXT_CACHE_TAGS_HEADER } from '../.... | 2023-10-26T06:43:33 |
rust-lang/rust | 80bcd1a61f4132f47978978c648dc964f679749c | a5e4e7ab52a031153ae7cef169ea7fa50cc6ae1c | Consolidate total_cmp tests
This standardizes how max and min subnormals are generated. Since the
new method doesn't use powf, it also enables some of the tests for f128
that were previously disabled due to issues with powf (although it looks
like those issues were already fixed anyway). f16 signalling nan tests
previ... | [
{
"path": "library/coretests/tests/floats/f128.rs",
"patch": "@@ -132,150 +132,6 @@ fn test_float_bits_conv() {\n assert_eq!(f128::from_bits(masked_nan2).to_bits(), masked_nan2);\n }\n \n-#[test]\n-fn test_total_cmp() {\n- use core::cmp::Ordering;\n-\n- fn quiet_bit_mask() -> u128 {\n- 1 <<... | 2025-08-04T19:06:47 |
nodejs/node | c7a235f0a75164b80289a6dc8f23263e0fbbbaab | d3af1fe9fe5a7f015a4d8b21e0f29b1788bc993f | net: fix crash if POLLHUP is received
If the `onread` socket option is used and a `POLLHUP` event is received,
libuv returns `UV_EOF` along with a `NULL` buffer in the read callback,
causing the crash. Deal with this case.
Fixes: https://github.com/nodejs/node/issues/31823
PR-URL: https://github.com/nodejs/node/pull... | [
{
"path": "src/stream_base.cc",
"patch": "@@ -517,13 +517,21 @@ uv_buf_t CustomBufferJSListener::OnStreamAlloc(size_t suggested_size) {\n \n void CustomBufferJSListener::OnStreamRead(ssize_t nread, const uv_buf_t& buf) {\n CHECK_NOT_NULL(stream_);\n- CHECK_EQ(buf.base, buffer_.base);\n \n StreamBase* s... | 2020-03-31T18:56:01 |
electron/electron | 035d9df29bc5aefc4b5174c09b44949e0da06c8b | 197ad915b72f3c88eb0818d433c64b3e20a4b4bd | Fix example code | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -163,11 +163,11 @@ new `BrowserWindow`. If you call `event.preventDefault()` and manually create a\n instance, failing to do so may result in unexpected behavior. For example:\n \n ```javascript\n-myBrowserWindow.webContents.on('new-window', event => {\n+my... | 2017-02-10T11:02:03 |
facebook/react | 3c40fb2e010a6b7ec8eaa510ad87d4838eea7609 | 5b43a2e6d734d7a84b2335c87282eddd7cf3776a | better error message for mergeHelpers and setState | [
{
"path": "src/core/ReactCompositeComponent.js",
"patch": "@@ -772,6 +772,14 @@ var ReactCompositeComponentMixin = {\n typeof partialState === 'object' || partialState == null,\n 'setState(...): takes an object of state variables to update.'\n );\n+ if (__DEV__){\n+ if (partialState ... | 2014-01-06T05:54:24 |
golang/go | 2e06019dcd82c1c525c805af687063875d4b223b | 2cc6983a2103d64cd33a0fb67dc7ea2adcac3ba8 | runtime/pprof: check Getrusage return value in addMaxRSS
Depending on the implementation of the getrusage syscall/function, the
value of rusage.Maxrss may be undefined in case of an error. Thus, only
report MaxRSS in case of no error.
Change-Id: I7572ccc53c49eb460e53bded3eb41736eed8d2ed
Reviewed-on: https://go-review... | [
{
"path": "src/runtime/pprof/pprof_rusage.go",
"patch": "@@ -28,6 +28,8 @@ func addMaxRSS(w io.Writer) {\n \t}\n \n \tvar rusage syscall.Rusage\n-\tsyscall.Getrusage(syscall.RUSAGE_SELF, &rusage)\n-\tfmt.Fprintf(w, \"# MaxRSS = %d\\n\", uintptr(rusage.Maxrss)*rssToBytes)\n+\terr := syscall.Getrusage(syscall... | 2022-08-18T17:15:51 |
vercel/next.js | 3e341678cbfed6eb81e883cfa0c209ed712be06a | df0fb70c8cb208219689d7e1fba5b9587d55fec7 | Fix missing SWC transforms for optimized barrel files (#57474)
With Barrel Optimization, we are trying to "shortcut" the import to be
directly pointing to the final target, as barrel files shouldn't have
any side effects. However, there could be `"use client"` and `"use
server"` directives which we can't ignore. He... | [
{
"path": "packages/next/src/build/webpack/loaders/next-barrel-loader.ts",
"patch": "@@ -88,6 +88,7 @@ import type webpack from 'webpack'\n \n import path from 'path'\n import { transform } from '../../swc'\n+import { WEBPACK_LAYERS } from '../../../lib/constants'\n \n // This is a in-memory cache for the m... | 2023-10-26T06:38:35 |
nodejs/node | d3af1fe9fe5a7f015a4d8b21e0f29b1788bc993f | 056e68749cc60156f51811d5026ec98e68ebb257 | src: fix warnings on SPrintF
PR-URL: https://github.com/nodejs/node/pull/32558
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/debug_utils-inl.h",
"patch": "@@ -30,16 +30,17 @@ struct ToStringHelper {\n template <unsigned BASE_BITS,\n typename T,\n typename std::enable_if<std::is_integral<T>::value, int>::type = 0>\n- static std::string BaseConvert(T value) {\n+ static std::string BaseConv... | 2020-03-30T03:25:39 |
facebook/react | e2f094614f8e8dd5111f19690ad32cea00d407f2 | 5aae5a7b1df83e60fc722b463d178c9077b5a44c | Fix potential memory leak when unmounting
Fixes #781. | [
{
"path": "src/core/ReactCompositeComponent.js",
"patch": "@@ -736,10 +736,11 @@ var ReactCompositeComponentMixin = {\n \n this._defaultProps = null;\n \n- ReactComponent.Mixin.unmountComponent.call(this);\n this._renderedComponent.unmountComponent();\n this._renderedComponent = null;\n \n+ ... | 2014-01-02T23:36:58 |
golang/go | dbc3b44f85e638c2247af02548d8b386996f4d37 | 84232b0b89a60d5f66156ddf5cbe9ab64dac4375 | go/types: match types2 errors for incorrect method receiver count
Use "method has no receiver" and "method has multiple receivers"
in error messages for invalid receiver counts, matching the
corresponding types2 errors.
For #54511.
Change-Id: I96fc99440d6206c74e9416069db052234baa8248
Reviewed-on: https://go-review.g... | [
{
"path": "src/go/types/resolver.go",
"patch": "@@ -394,7 +394,7 @@ func (check *Checker) collectObjects() {\n \t\t\t\tif d.decl.Recv.NumFields() == 0 {\n \t\t\t\t\t// regular function\n \t\t\t\t\tif d.decl.Recv != nil {\n-\t\t\t\t\t\tcheck.error(d.decl.Recv, _BadRecv, \"method is missing receiver\")\n+\t\t... | 2022-08-19T03:16:15 |
vercel/next.js | 618d67447286cbd635fb8d7bd21e49368e174f5e | abb34da8bd1bb68df656a512c74646c72126d625 | Filter out CSS files from middleware files and client reference chunks (#57482)
There could be CSS files emitted in these chunks so both manifests need
to filter them out. This fixes `app dir - css css support chunks should
bundle css resources into chunks`. | [
{
"path": "packages/next-swc/crates/next-api/src/app.rs",
"patch": "@@ -865,6 +865,7 @@ impl AppEndpoint {\n async move {\n Ok(node_root_value\n .get_path_to(&*file.ident().path().await?)\n+ ... | 2023-10-26T06:31:41 |
nodejs/node | 5b899d69f1fe5bbdf8ecd4a75a94d23469d05b1e | 0ddfd0fc129b0122437055e0aa87bdfa81744e80 | test: add Worker initialization failure test case
Cover the scenario fixed through
https://github.com/nodejs/node/pull/31621
Unfortunately there is no easy way to test this, in a
cross-platform manner. So the approach is:
- open a child process with ulimit restriction on file descriptors
- in the child process, star... | [
{
"path": "test/parallel/test-worker-init-failure.js",
"patch": "@@ -0,0 +1,67 @@\n+'use strict';\n+const common = require('../common');\n+const assert = require('assert');\n+const child_process = require('child_process');\n+\n+// Test that workers fail with meaningful error message\n+// when their initiali... | 2020-02-24T07:28:26 |
golang/go | 84232b0b89a60d5f66156ddf5cbe9ab64dac4375 | 6bedf4a2b45068c486c69a04410f2c2469152f2d | go/types: match types2 errors for missing index expressions
Use "middle" and "final" rather than "2nd" and "3rd" in error messages
for invalid slice expressions. This is the original compiler error
message and many tests check for this specific message.
For #54511.
Change-Id: I86eb739aa7218b7f393fab1ab402732cb9e9a1f... | [
{
"path": "src/go/parser/parser.go",
"patch": "@@ -1511,14 +1511,14 @@ func (p *parser) parseIndexOrSliceOrInstance(x ast.Expr) ast.Expr {\n \t\tslice3 := false\n \t\tif ncolons == 2 {\n \t\t\tslice3 = true\n-\t\t\t// Check presence of 2nd and 3rd index here rather than during type-checking\n+\t\t\t// Check... | 2022-08-19T00:25:58 |
vercel/next.js | 74311274db790933b017a0acbb9a5517bb054eb4 | 7bee486f7c5c0de64af910f7f23e6f7a4f65c9f9 | Revert "fix turbopack invalidations (#57362)" (#57480)
### Why?
breaks hmr and causes some duplicate react instances (it was also
supposed to fix some of those, seems neither version is correct)
Closes WEB-1882 | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts",
"patch": "@@ -366,17 +366,31 @@ async function startWatcher(opts: SetupOpts) {\n const serverPathState = new Map<string, string>()\n \n async function processResult(\n+ id: string,\n result: TurbopackResult<Writte... | 2023-10-26T06:14:11 |
nodejs/node | 0ddfd0fc129b0122437055e0aa87bdfa81744e80 | 8c0a17ae2847b007c2563f9fd38c601c12402e59 | test: fix tool path in test-doctool-versions.js
Path to the versions tool tested by test-doctool-versions.js would
be incorrect if the test temporary directory was redirected (e.g.
via NODE_TEST_DIR) outside of `test/`.
Signed-off-by: Richard Lau <riclau@uk.ibm.com>
PR-URL: https://github.com/nodejs/node/pull/32645
... | [
{
"path": "test/doctool/test-doctool-versions.js",
"patch": "@@ -9,7 +9,7 @@ const tmpdir = require('../common/tmpdir');\n const util = require('util');\n \n const debuglog = util.debuglog('test');\n-const versionsTool = path.join('../../tools/doc/versions.js');\n+const versionsTool = path.resolve(__dirname... | 2020-04-03T18:05:29 |
golang/go | 6bedf4a2b45068c486c69a04410f2c2469152f2d | 9a1d3b0ad20ba5d73ba3a88c86563ae7b4cf03ca | go/types: match types2 error for invalid map key
Use "invalid" rather than "incomparable" in error message for map key
types that are not comparable. This is the original compiler error
message and many tests check for this specific message. The type
checker does provide an additional explanation if the reason for
the... | [
{
"path": "src/go/types/testdata/check/cycles0.go",
"patch": "@@ -66,7 +66,7 @@ type (\n \tI6 interface{ I5 }\n \n \t// maps\n-\tM0 map[M0 /* ERROR incomparable map key */ ]M0\n+\tM0 map[M0 /* ERROR invalid map key */ ]M0\n \n \t// channels\n \tC0 chan C0\n@@ -115,7 +115,7 @@ func _() {\n \t\ti0 /* ERROR cy... | 2022-08-18T23:59:10 |
vercel/next.js | a19b1ef796a9fc1c29bd6607950e13e6984b6606 | c80fb27446d72df92ca83a57d81f5b81d64144d8 | fix(turbopack): make layout in group not cause a 404 (#57471)
### What?
Given the structure:
`/page.js`
`/(group)/layout.js`
Going to `/` would 404
Closes WEB-1878 | [
{
"path": "packages/next-swc/crates/next-core/src/app_structure.rs",
"patch": "@@ -677,10 +677,14 @@ async fn directory_tree_to_loader_tree(\n tree.segment = \"children\".to_string();\n }\n \n+ let mut has_page = false;\n+\n if let Some(page) = (app_path == for_app_path)\n .then_s... | 2023-10-26T05:16:28 |
facebook/react | b4f4f10478c4b552b6cf98d9c6f2709316b9e4fa | 23ab30ff873fba816129cafa0c40112dd2ee990d | Fix URL in displayName description | [
{
"path": "docs/docs/ref-03-component-specs.md",
"patch": "@@ -73,7 +73,7 @@ The `mixins` array allows you to use mixins to share behavior among multiple com\n string displayName\n ```\n \n-The `displayName` string is used in debugging messages. JSX sets this value automatically, see [JSX in Depth](react/do... | 2014-01-08T13:55:27 |
golang/go | 9a1d3b0ad20ba5d73ba3a88c86563ae7b4cf03ca | bc69ad3a77129cd4cf4d3bdaa592dfc95ff8c769 | go/parser: match const/var decl parsing of syntax package
Use same approach to parsing const and var declarations
as the syntax package. Specifically, don't complain if
the first const specification in a const declaration
doesn't have a type and initialization expression. This
removes some duplicate errors when combin... | [
{
"path": "src/go/parser/parser.go",
"patch": "@@ -2553,27 +2553,31 @@ func (p *parser) parseValueSpec(doc *ast.CommentGroup, _ token.Pos, keyword toke\n \t\tdefer un(trace(p, keyword.String()+\"Spec\"))\n \t}\n \n-\tpos := p.pos\n \tidents := p.parseIdentList()\n-\ttyp := p.tryIdentOrType()\n+\tvar typ ast... | 2022-08-18T23:42:28 |
nodejs/node | 2fc038a4476b18ff2eb47748a556706c6cad068b | 0e0e338347b2434518aa76b13671204e33e48c4d | doc: make openssl commit messages be valid
The current commit message is wrapped at 80 columns, but commit message
descriptions should wrap at 72, so the maintainer has to fix the
message up instead of just copying it in. They might not notice that
requirement, in which case it has to be fixed during landing because
`... | [
{
"path": "doc/guides/maintaining-openssl.md",
"patch": "@@ -93,8 +93,8 @@ The commit message can be (with the openssl version set to the relevant value):\n ```text\n deps: update archs files for OpenSSL-1.1.0\n \n- After an OpenSSL source update, all the config files need to be regenerated and\n- committe... | 2020-04-01T21:21:21 |
facebook/react | a2ecee5353d39be57ca49c6132eb0ca45d5be254 | 4f57515f918d519bbd7894d88ea606de4ec07884 | Use proper window object for iframe in enter/leave
Fixes #788. | [
{
"path": "src/eventPlugins/EnterLeaveEventPlugin.js",
"patch": "@@ -81,14 +81,23 @@ var EnterLeaveEventPlugin = {\n return null;\n }\n \n+ var win;\n+ if (topLevelTarget != null && topLevelTarget.window === topLevelTarget) {\n+ // topLevelTarget probably is a window object\n+ win ... | 2014-01-04T05:43:27 |
vercel/next.js | c80fb27446d72df92ca83a57d81f5b81d64144d8 | 18d797e3fdb35a5da65da350677f9f8d92476df1 | fix turbopack invalidations (#57362)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts",
"patch": "@@ -366,31 +366,17 @@ async function startWatcher(opts: SetupOpts) {\n const serverPathState = new Map<string, string>()\n \n async function processResult(\n- id: string,\n result: TurbopackResult<Writte... | 2023-10-26T05:04:04 |
electron/electron | c8c11e68c6c519789ba686783c3d653d5f790a51 | 9163b601a4c319df977ff0c5d22e59cd2418aa37 | Add support for checkbox with dialog.showMessageBox
This adds the `checkboxLabel` and `checkboxChecked` options to display a
checkbox in the message box. Fixes #6048. | [
{
"path": "atom/browser/api/atom_api_dialog.cc",
"patch": "@@ -47,6 +47,8 @@ void ShowMessageBox(int type,\n const std::string& title,\n const std::string& message,\n const std::string& detail,\n+ const std::string& checkbox_labe... | 2017-02-06T15:35:36 |
rust-lang/rust | 1c41c3d62b610ddbc7153c3e2cf6c8d6b5e9f0ba | 61cb1e97fcf954c37d0a457a8084ed9ad8b3cb82 | Add minimal `armv7a-vex-v5` support
> A tier 3 target must have a designated developer or developers (the "target maintainers") on record to be CCed when issues arise regarding the target. (The mechanism to track and CC such developers may evolve over time.)
Lewis McClelland (lewisfm), Tropix126, Gavin Niederman (Gav... | [
{
"path": "compiler/rustc_target/src/spec/abi_map.rs",
"patch": "@@ -60,7 +60,15 @@ impl AbiMap {\n \"x86_64\" => Arch::X86_64,\n _ => Arch::Other,\n };\n- let os = if target.is_like_windows { OsKind::Windows } else { OsKind::Other };\n+\n+ let os = if target.is... | 2025-08-07T07:24:34 |
golang/go | bf4e35b658e61c29112c456f47615c16345c3518 | a73808e1e06dfca15a51743ced1fab038b5a2392 | runtime: fix a typo in comment of netpollblock()
Change-Id: Ia00acf248f3498d75e2451548f82d3c57cfed06f
Reviewed-on: https://go-review.googlesource.com/c/go/+/424995
Run-TryBot: Michael Pratt <mpratt@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Reviewed-by: I... | [
{
"path": "src/runtime/netpoll.go",
"patch": "@@ -492,7 +492,7 @@ func netpollgoready(gp *g, traceskip int) {\n \tgoready(gp, traceskip+1)\n }\n \n-// returns true if IO is ready, or false if timedout or closed\n+// returns true if IO is ready, or false if timed out or closed\n // waitio - wait only for com... | 2022-08-19T17:36:14 |
facebook/react | 4f57515f918d519bbd7894d88ea606de4ec07884 | 59bd45d594ab3773b23d110b69d1f089cc2c7bbb | Fix some odd spacing inconsistencies in ReactRenderDocument-test. | [
{
"path": "src/core/__tests__/ReactRenderDocument-test.js",
"patch": "@@ -28,6 +28,13 @@ var getTestDocument;\n \n var testDocument;\n \n+var UNMOUNT_INVARIANT_MESSAGE =\n+ 'Invariant Violation: ReactFullPageComponenthtml tried to unmount. ' +\n+ 'Because of cross-browser quirks it is impossible to unmoun... | 2014-01-07T05:12:32 |
nodejs/node | 34a4ab72787fd20e67ae85d65428e9a0b8b7e431 | cee396ea586c02fd22c438f65d5f0e0ab7f12d67 | doc: clarify docs fs.watch exception may be emitted
Fixes: https://github.com/nodejs/node/issues/29894
PR-URL: https://github.com/nodejs/node/pull/32513
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> | [
{
"path": "doc/api/fs.md",
"patch": "@@ -3884,10 +3884,10 @@ to be notified of filesystem changes.\n * On Aix systems, this feature depends on [`AHAFS`][], which must be enabled.\n \n If the underlying functionality is not available for some reason, then\n-`fs.watch` will not be able to function. For exampl... | 2020-03-27T06:17:54 |
electron/electron | 347dc835b584917db72eb46d189f7a7a6cad0aff | a4a71a1dc985dd8a48b3bcfb871bf65140885353 | Fix code formatting | [
{
"path": "atom/browser/ui/file_dialog_mac.mm",
"patch": "@@ -139,9 +139,8 @@ bool ShowOpenDialog(atom::NativeWindow* parent_window,\n DCHECK(paths);\n NSOpenPanel* dialog = [NSOpenPanel openPanel];\n \n- SetupDialog(dialog, title, button_label, default_path, filters, message,\n- // NSOpenPane... | 2017-02-09T13:47:26 |
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.