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
golang/go
a14ac8635f673218c91e13c103cb2f3e29ff4b74
e7a3d87ddae6aa720e104213bd2cf98e3e743c9a
testing: update description of Setenv Add the description of Setenv that it cannot use if the test have parallel ancestors. Fixes #55128 Change-Id: Ia5a1deaa1a3116d1ebb439600a7d316c7d155412 Reviewed-on: https://go-review.googlesource.com/c/go/+/434115 Auto-Submit: Bryan Mills <bcmills@google.com> Run-TryBot: Bryan M...
[ { "path": "src/testing/testing.go", "patch": "@@ -1187,7 +1187,8 @@ func removeAll(path string) error {\n // restore the environment variable to its original value\n // after the test.\n //\n-// This cannot be used in parallel tests.\n+// Because Setenv affects the whole process, it cannot be used\n+// in p...
2022-09-23T13:53:31
nodejs/node
09330fc1557010fce528ce3299adc69b61ee5d97
9743624c0b872a50a14df862381c460ac7b3fd92
quic: fix clang-tidy performance-faster-string-find issue PR-URL: https://github.com/nodejs/node/pull/33975 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gus Capla...
[ { "path": "src/quic/node_quic_crypto.cc", "patch": "@@ -384,7 +384,7 @@ bool CheckCertNames(\n return false;\n }\n \n- if (name_parts[0].find(\"*\") == std::string::npos ||\n+ if (name_parts[0].find('*') == std::string::npos ||\n name_parts[0].find(\"xn--\") != std::string::npos) {\n ret...
2020-06-19T14:39:47
rust-lang/rust
9fab380839c2ab1cede5a04e078267f1740a9939
8b1889cc22439e02cf03cd8cff9764a307b21193
Fix typo in doc for library/std/src/fs.rs#set_permissions "privalage" -> "privilege"
[ { "path": "library/std/src/fs.rs", "patch": "@@ -3119,7 +3119,7 @@ pub fn read_dir<P: AsRef<Path>>(path: P) -> io::Result<ReadDir> {\n /// On UNIX-like systems, this function will update the permission bits\n /// of the file pointed to by the symlink.\n ///\n-/// Note that this behavior can lead to privalag...
2025-08-15T22:30:18
facebook/react
83e5e9bedf4468f418b717a6a090d2b50500b5b2
93712246c83d0d8731ded31793e9a87afee71a5c
Fix small issue in ReactContext comment Noticed this the other day and meant to fix it.
[ { "path": "src/core/ReactContext.js", "patch": "@@ -40,7 +40,7 @@ var ReactContext = {\n * A typical use case might look like\n *\n * render: function() {\n- * var children = ReactContext.withContext({foo: 'foo'} () => (\n+ * var children = ReactContext.withContext({foo: 'foo'}, () => (\...
2014-07-20T02:09:35
golang/go
32a52e039953889a3aaa6a3e7f0ad0f7dfcbeac3
2b45aebe145d24686df152d77f82713592c47b91
cmd/go: using strings.CutPrefix replace strings.HasPrefix and strings.TrimPrefix Change-Id: I143d05c24a3e897d0f3ee78dd16954c32ceae091 Reviewed-on: https://go-review.googlesource.com/c/go/+/435137 Run-TryBot: xie cui <523516579@qq.com> Run-TryBot: Bryan Mills <bcmills@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur...
[ { "path": "src/cmd/go/internal/envcmd/env.go", "patch": "@@ -453,8 +453,8 @@ func printEnvAsJSON(env []cfg.EnvVar) {\n \n func getOrigEnv(key string) string {\n \tfor _, v := range cfg.OrigEnv {\n-\t\tif strings.HasPrefix(v, key+\"=\") {\n-\t\t\treturn strings.TrimPrefix(v, key+\"=\")\n+\t\tif v, found := s...
2022-09-27T11:03:54
nodejs/node
9743624c0b872a50a14df862381c460ac7b3fd92
b8ea47162d84ade96698cb45a0de5c0dd9959251
quic: fix typo in comments PR-URL: https://github.com/nodejs/node/pull/33975 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Tr...
[ { "path": "src/quic/node_quic_util.h", "patch": "@@ -114,7 +114,7 @@ class StatsBase {\n // A StatsBase instance may have one of three histogram\n // instances. One that records rate of data flow, one\n // that records size of data chunk, and one that records\n- // rate of data ackwowledgement. These...
2020-06-19T14:17:34
vercel/next.js
9663d78bf9f962a10c901e9ce288aa493c3d3148
2dbd4e7529f795d5d262edf42322b326d037ad6d
Rename CacheNode.subTreeData -> .rsc (#59491) I want to give this field a name that's bit less generic and distinguishes it from `lazyData` (because that one has a different type and is a special case we want to eventually remove). I'm also about to add an optional `prefetchRsc` field that represents a prefetch...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -149,7 +149,7 @@ function HistoryUpdater({\n \n export const createEmptyCacheNode = () => ({\n lazyData: null,\n- subTreeData: null,\n+ rsc: null,\n parallelRoutes: new Map(),\n })\n \n@@ -546,7 +546,7 @@ function Router({\n ...
2023-12-12T02:41:03
facebook/react
6f0db657773656867cb2b9eabc85a4e12abebe9c
9929f6de1e2de1744ba7db226001730c09ae577b
getModifierState incorrectly exposed as SyntheticMouseEvent.getEventModifierState
[ { "path": "src/browser/syntheticEvents/SyntheticMouseEvent.js", "patch": "@@ -37,7 +37,7 @@ var MouseEventInterface = {\n shiftKey: null,\n altKey: null,\n metaKey: null,\n- getEventModifierState: getEventModifierState,\n+ getModifierState: getEventModifierState,\n button: function(event) {\n ...
2014-07-19T08:44:11
golang/go
2b45aebe145d24686df152d77f82713592c47b91
59bc93535b3c5a3792df6837d8b28029e2952b84
net/http: using strings.CutPrefix replace strings.HasPrefix and strings.TrimPrefix Change-Id: I0b7b6e4e9d2539e4fcb5c08430ba5a74733fad3c Reviewed-on: https://go-review.googlesource.com/c/go/+/435136 Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robo...
[ { "path": "src/net/http/cgi/child.go", "patch": "@@ -82,10 +82,12 @@ func RequestFromMap(params map[string]string) (*http.Request, error) {\n \n \t// Copy \"HTTP_FOO_BAR\" variables to \"Foo-Bar\" Headers\n \tfor k, v := range params {\n-\t\tif !strings.HasPrefix(k, \"HTTP_\") || k == \"HTTP_HOST\" {\n+\t\t...
2022-09-27T08:06:13
nodejs/node
b8ea47162d84ade96698cb45a0de5c0dd9959251
54374d4343f47677aea2a288e9bf8b5fd1cda90a
doc: warn that tls.connect() doesn't set SNI Add a note warning users that when using tls.connect(), the `servername` option must be set explicitely to enable SNI, otherwise the connection could fail. PR-URL: https://github.com/nodejs/node/pull/33855 Fixes: https://github.com/nodejs/node/issues/28167 Co-authored-by: ...
[ { "path": "doc/api/tls.md", "patch": "@@ -1399,6 +1399,12 @@ The `callback` function, if specified, will be added as a listener for the\n \n `tls.connect()` returns a [`tls.TLSSocket`][] object.\n \n+Unlike the `https` API, `tls.connect()` does not enable the\n+SNI (Server Name Indication) extension by defa...
2020-06-12T11:25:04
facebook/react
23c53322083d85b19a1a3aa4f731c32482634f54
2347abf75c2acb40b4b6ba10750f0461a5b837ad
Fix ReactTestUtils.mockComponent so that mockTagName is not ignored. The `mockTagName` parameter was always optional, and so probably was not used very often. If you tried to use it, it would be shadowed by the `var mockTagName` declaration in the `render` method, so only `module.mockTagName` or `"div"` were ever poss...
[ { "path": "src/test/ReactTestUtils.js", "patch": "@@ -238,9 +238,10 @@ var ReactTestUtils = {\n * @return {object} the ReactTestUtils object (for chaining)\n */\n mockComponent: function(module, mockTagName) {\n+ mockTagName = mockTagName || module.mockTagName || \"div\";\n+\n var Convenience...
2014-07-18T17:03:34
electron/electron
5cfa69730925748d40b01a86b89eab70a6351ef6
e49ad155a2b403a70696e7d92fc8e866451e353f
Fix postData type definition in docs
[ { "path": "docs/api/browser-window.md", "patch": "@@ -1028,7 +1028,7 @@ Same as `webContents.capturePage([rect, ]callback)`.\n * `httpReferrer` String (optional) - A HTTP Referrer url.\n * `userAgent` String (optional) - A user agent originating the request.\n * `extraHeaders` String (optional) - Extr...
2017-05-14T10:41:36
vercel/next.js
2dbd4e7529f795d5d262edf42322b326d037ad6d
d96a7e56a6ebf9bdf0341ab7bb341034ae5cd1f4
test(fixture): try to include sources in the snapshot (#59499)
[ { "path": "test/lib/browsers/playwright.ts", "patch": "@@ -55,6 +55,7 @@ export class Playwright extends BrowserInterface {\n await context.tracing.start({\n screenshots: true,\n snapshots: true,\n+ sources: true,\n })\n this.activeTrace = encodeURIComponent(url)\n "...
2023-12-12T02:10:34
golang/go
59bc93535b3c5a3792df6837d8b28029e2952b84
e3ac2152f28f74c085d305d764a54d14d46eaaa9
cmd/compile: keep typecheck results in syntax tree Saves on both space and cost of map operations. Saves about 3% in compile time. name old time/op new time/op delta Template 251ms ± 2% 244ms ± 1% -2.78% (p=0.000 n=8+8) Unicode ...
[ { "path": "src/cmd/compile/internal/noder/helpers.go", "patch": "@@ -9,6 +9,7 @@ import (\n \n \t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/ir\"\n+\t\"cmd/compile/internal/syntax\"\n \t\"cmd/compile/internal/typecheck\"\n \t\"cmd/compile/internal/types\"\n \t\"cmd/compile/internal/types2\"\n@@...
2022-09-02T21:11:09
nodejs/node
07b2ada00decf1dacd49e76370d9e4a4d929de92
f05c963f3347e9a0702a342cc1572cf3c3ee77f3
doc: fix lexical sorting of bottom-references in dns doc The links are sorted in lexical order except for the two RFC links which are reversed. Fix that. PR-URL: https://github.com/nodejs/node/pull/33987 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/dns.md", "patch": "@@ -1201,6 +1201,6 @@ uses. For instance, _they do not use the configuration from `/etc/hosts`_.\n [DNS error codes]: #dns_error_codes\n [Domain Name System (DNS)]: https://en.wikipedia.org/wiki/Domain_Name_System\n [Implementation considerations section]: #dns_implemen...
2020-06-20T04:15:40
electron/electron
af2c5d1845cc226594934b4efda47e9a43130d04
9f682ee36bdcb3a6f6b15b8f6b6196638c6da243
fixes not expected scale factor change
[ { "path": "atom/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -858,6 +858,8 @@ std::unique_ptr<cc::SoftwareOutputDevice>\n DCHECK(!copy_frame_generator_);\n DCHECK(!software_output_device_);\n \n+ ResizeRootLayer();\n+\n software_output_device_ = new OffScreenOutputDevice(\n transpa...
2017-05-12T22:59:25
facebook/react
e8efa2a1e915da7aab90f6ad2ffcb226b7016293
9929f6de1e2de1744ba7db226001730c09ae577b
Fix browser-tranforms
[ { "path": "vendor/browser-transforms.js", "patch": "@@ -23,8 +23,6 @@ var docblock = require('jstransform/src/docblock');\n var transform = require('jstransform').transform;\n var visitors = require('./fbtransform/visitors');\n \n-var runScripts;\n-var loadScripts;\n var headEl;\n var dummyAnchor;\n var inl...
2014-07-19T02:02:31
nodejs/node
7a5d3a2fc1915166b1da2c161f020358a8c36bfd
64d22c320c67255b42c8185a333a92a499c95820
http: add maxTotalSockets to agent class Add maxTotalSockets to determine how many sockets an agent can open. Unlike maxSockets, The maxTotalSockets does not count by per origin. PR-URL: https://github.com/nodejs/node/pull/33617 Fixes: https://github.com/nodejs/node/issues/31942 Reviewed-By: Robert Nagy <ronagy@iclou...
[ { "path": "doc/api/http.md", "patch": "@@ -300,6 +300,16 @@ added: v0.3.6\n By default set to `Infinity`. Determines how many concurrent sockets the agent\n can have open per origin. Origin is the returned value of [`agent.getName()`][].\n \n+### `agent.maxTotalSockets`\n+<!-- YAML\n+added: REPLACEME\n+-->\...
2020-05-28T15:15:55
golang/go
45c2421dc643f9e0274cb8630459d65942838f2d
1371efcd69365d1cda87a2d9e450df0339720178
archive/zip: use strings.TrimPrefix Change-Id: I2854b5e7b48c4c189df84cb7281b7b7de780eebd Reviewed-on: https://go-review.googlesource.com/c/go/+/435938 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Tay...
[ { "path": "src/archive/zip/reader.go", "patch": "@@ -715,12 +715,13 @@ func (f *fileListEntry) Info() (fs.FileInfo, error) { return f, nil }\n func toValidName(name string) string {\n \tname = strings.ReplaceAll(name, `\\`, `/`)\n \tp := path.Clean(name)\n-\tif strings.HasPrefix(p, \"/\") {\n-\t\tp = p[len(...
2022-09-28T13:13:41
vercel/next.js
95168bf1361242788f5fa80350910631e3f1ac32
bd5157c78cc7b9dc465a880adec372063d72782e
Fix third party typings (#59503)
[ { "path": "packages/third-parties/google.d.ts", "patch": "@@ -1 +1 @@\n-export * from './dist/types/index'\n+export * from './dist/google/index'", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "packages/third-parties/package.json", "patch": "@@ -12,7 +12,8 @@\n ...
2023-12-12T00:07:17
facebook/react
54d91c293d39ea82a84f7c9ed4e492ff6c72a811
6d1ede34df619f3dbb1ec139450733095d8abbcf
Don't initialize reconcile transaction on server ...when calling setState from within a componentWillMount. Fixes #1866. Test Plan: jest
[ { "path": "src/browser/server/__tests__/ReactServerRendering-test.js", "patch": "@@ -31,25 +31,28 @@ require('mock-modules')\n \n var mocks = require('mocks');\n \n+var ExecutionEnvironment;\n var React;\n+var ReactMarkupChecksum;\n var ReactMount;\n+var ReactReconcileTransaction;\n var ReactTestUtils;\n va...
2014-07-18T17:58:37
golang/go
27d4cdd1a6280e906c4f6bd89b5882a51ad64099
545adcfe89458c5df714c27992064733b07491f9
debug/elf: fix typo in R_PPC64_TPREL34 and R_PPC64_DTPREL34 The suffix should be 34 not 28. I misread the name because the reloc listed before these two in the ABI is named "R_PC64_PCREL28". Updates #54345 Change-Id: Ie8238f55e441c787d70ead58e0a177c650f8b89e Reviewed-on: https://go-review.googlesource.com/c/go/+/435...
[ { "path": "api/next/54345.txt", "patch": "@@ -18,8 +18,8 @@ pkg debug/elf, const R_PPC64_D34_HI30 = 130 #54345\n pkg debug/elf, const R_PPC64_D34_HI30 R_PPC64 #54345\n pkg debug/elf, const R_PPC64_D34_LO = 129 #54345\n pkg debug/elf, const R_PPC64_D34_LO R_PPC64 #54345\n-pkg debug/elf, const R_PPC64_DTPREL2...
2022-09-27T18:21:52
nodejs/node
64d22c320c67255b42c8185a333a92a499c95820
51a2df4439ea23b5121fcb8e674eb7a3b144cdfa
timers: fix multipleResolves in promisified timeouts/immediates After successful timer finish the abort event callback would still reject (already resolved promise) upon calling abortController.abort(). Signed-off-by: Denys Otrishko <shishugi@gmail.com> PR-URL: https://github.com/nodejs/node/pull/33949 Reviewed-By: ...
[ { "path": "lib/timers.js", "patch": "@@ -190,8 +190,10 @@ setTimeout[customPromisify] = function(after, value, options = {}) {\n insert(timeout, timeout._idleTimeout);\n if (signal) {\n signal.addEventListener('abort', () => {\n- clearTimeout(timeout);\n- reject(lazyDOMException(...
2020-06-18T19:58:42
vercel/next.js
bd5157c78cc7b9dc465a880adec372063d72782e
ba6b8fdee4d7f5b2848391398e0a9750cab67859
fix integration test workflow (#59508) This was incorrectly setting the upper bound on the `--group` argument to our test runners (ie, `11/122`), which was causing a lot of tests to be missed. Closes NEXT-1851
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -263,7 +263,7 @@ jobs:\n uses: ./.github/workflows/build_reusable.yml\n with:\n nodeVersion: 18.17.0\n- afterBuild: node run-tests.js --timings -g ${{ matrix.group }}2 -c ${TEST_CONCURRENCY} --type integration\n+ afterBui...
2023-12-11T23:33:23
electron/electron
70539385d1678d5c1f3b11fdd0258e75dd4772c6
22397d2c359bbe680dd840725b242a706636c7f8
Fixed capitalization and punctuation in README Fixed capitalization and punctuation in /ru-RU/README.md
[ { "path": "docs-translations/ru-RU/README.md", "patch": "@@ -1,10 +1,10 @@\n-Пожалуйста, убедитесь, что Вы используете документацию, которая соответствует вашей версии Electron.\n-Номер версии должен быть частью адреса страницы. Если это не так, Вы\n-возможно, используете документацию ветки разработки, кото...
2017-05-12T21:07:40
facebook/react
6d1ede34df619f3dbb1ec139450733095d8abbcf
9698b54dfe22d7ec7201ba2b9095ae382f7119bd
fix typo Closes #1859.
[ { "path": "docs/_posts/2014-07-13-react-v0.11-rc1.md", "patch": "@@ -29,7 +29,7 @@ Starting in React 0.11, `getDefaultProps()` is called only once when `React.crea\n \n ## Rendering to `null`\n \n-Since React's release, people have been using work arounds to \"render nothing\". Usually this means returning ...
2014-07-17T21:23:07
golang/go
545adcfe89458c5df714c27992064733b07491f9
dd42a84fb36ade570a7bfaf6fec5df44bbf71500
go/types, types2: use "generic" rather than "parameterized" in error messages Fix a couple of places where we still use "parameterized". Change-Id: I2c70356d4e363ee709c5ef19ec8786956d5e9001 Reviewed-on: https://go-review.googlesource.com/c/go/+/436815 Reviewed-by: Robert Griesemer <gri@google.com> Run-TryBot: Robert ...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -753,7 +753,7 @@ func (check *Checker) funcDecl(obj *Func, decl *declInfo) {\n \tobj.color_ = saved\n \n \tif len(fdecl.TParamList) > 0 && fdecl.Body == nil {\n-\t\tcheck.softErrorf(fdecl, _BadDecl, \"parameterized function is missing functio...
2022-09-29T18:18:09
nodejs/node
30cc54275d570a804ced31843d1ff237dd701f85
fdf10adef8443c19899c306804cbe585113ff453
http: don't emit error after close Refs: https://github.com/nodejs/node/issues/33591 PR-URL: https://github.com/nodejs/node/pull/33654 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/_http_client.js", "patch": "@@ -49,7 +49,7 @@ const Agent = require('_http_agent');\n const { Buffer } = require('buffer');\n const { defaultTriggerAsyncIdScope } = require('internal/async_hooks');\n const { URL, urlToOptions, searchParamsSymbol } = require('internal/url');\n-const { kOutHead...
2020-05-30T08:40:30
vercel/next.js
c7a29bd13ee963e1daca9d3db9c9b1201a5f449a
618c7285a2213c4e609d85042658ac77e2debb3e
Fix webpack chunks handling in traces (#59498) This ensures we don't include all chunks in `nft` traces un-necessarily as our webpack plugin already tracks which are needed per-entry. x-ref: [slack thread](https://vercel.slack.com/archives/C0591D8EN4C/p1702318184832319?thread_ts=1701815919.923639&cid=C0591D8EN4C)...
[ { "path": "packages/next/src/build/collect-build-traces.ts", "patch": "@@ -305,6 +305,10 @@ export async function collectBuildTraces({\n \n const routesIgnores = [\n ...sharedIgnores,\n+ // server chunks are provided via next-trace-entrypoints-plugin plugin\n+ // as otherwise all...
2023-12-11T19:35:35
electron/electron
4fdb884feb7c52731d7195ce5edc7752e8e4e9e4
3c88447be676b8b2de599d6750ba8071c28a6fdb
Fix windows path in service worker spec
[ { "path": "spec/chromium-spec.js", "patch": "@@ -173,7 +173,11 @@ describe('chromium feature', function () {\n it('should register for intercepted file scheme', function (done) {\n const customSession = session.fromPartition('intercept-file')\n customSession.protocol.interceptBufferProtocol(...
2017-05-11T22:18:40
facebook/react
384e8fe195c1a49d21d5c95ccc5db1287cecf2e1
d39b8078a34063f6ba553a61ef6bfdadc55ab2a9
Fix appearance of video thumbnail
[ { "path": "docs/docs/videos.md", "patch": "@@ -30,8 +30,7 @@ A [tagtree.tv](http://tagtree.tv/) video conveying the principles of [Thinking i\n ### Going big with React ###\n \n \"On paper, all those JS frameworks look promising: clean implementations, quick code design, flawless execution. But what happens...
2014-07-17T22:19:58
golang/go
4a0a2b33dfa3c99250efa222439f2c27d6780e4a
36f046d934c66fb6eb47d568e04665708c096ad7
errors, fmt: add support for wrapping multiple errors An error which implements an "Unwrap() []error" method wraps all the non-nil errors in the returned []error. We replace the concept of the "error chain" inspected by errors.Is and errors.As with the "error tree". Is and As perform a pre-order, depth-first traversa...
[ { "path": "api/next/53435.txt", "patch": "@@ -0,0 +1 @@\n+pkg errors, func Join(...error) error #53435", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "src/errors/errors.go", "patch": "@@ -6,26 +6,29 @@\n //\n // The New function creates errors whose only cont...
2022-09-22T17:43:26
nodejs/node
fdcd4893ff91f359433fb7526d4e3133260de777
e199fc553454c9c10841bf960dc0051608668a47
http2: always call callback on Http2ServerResponse#end Fixes: https://github.com/nodejs/node/issues/28001 PR-URL: https://github.com/nodejs/node/pull/33911 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/http2/compat.js", "patch": "@@ -709,11 +709,6 @@ class Http2ServerResponse extends Stream {\n const stream = this[kStream];\n const state = this[kState];\n \n- if ((state.closed || state.ending) &&\n- state.headRequest === stream.headRequest) {\n- return this;\...
2020-06-16T17:52:15
vercel/next.js
6e6533c97cc8994357e2d6404f14e4f33ff82ee1
4a6d3675f29fd9c7780c074bf7798e85648db069
Update 10-route-handlers.mdx (#59443) According to https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#dynamic, the default for dynamic is "auto". <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request th...
[ { "path": "docs/02-app/01-building-your-application/01-routing/10-route-handlers.mdx", "patch": "@@ -25,12 +25,12 @@ Route Handlers allow you to create custom request handlers for a given route usi\n Route Handlers are defined in a [`route.js|ts` file](/docs/app/api-reference/file-conventions/route) inside ...
2023-12-09T18:52:37
electron/electron
718cd8d711d568b360dbaa7cf480821090abd372
4824c24fbc7f4b16b7b8ea5b371c534ed3250c03
Remove unsupported debugger in node processes
[ { "path": "atom/app/node_main.cc", "patch": "@@ -6,7 +6,6 @@\n \n #include \"atom/app/uv_task_runner.h\"\n #include \"atom/browser/javascript_environment.h\"\n-#include \"atom/browser/node_debugger.h\"\n #include \"atom/common/api/atom_bindings.h\"\n #include \"atom/common/crash_reporter/crash_reporter.h\"\...
2017-05-11T22:02:27
rust-lang/rust
8511e40e7294e1efcc64b81d43969b6bf0f14c2d
c018ae5389c49cc4bcb8343d80dd8e7323325410
rustdoc-search: search backend with partitioned suffix tree
[ { "path": "Cargo.lock", "patch": "@@ -4812,6 +4812,7 @@ dependencies = [\n \"serde_json\",\n \"sha2\",\n \"smallvec\",\n+ \"stringdex\",\n \"tempfile\",\n \"threadpool\",\n \"tracing\",\n@@ -5225,6 +5226,15 @@ dependencies = [\n \"quote\",\n ]\n \n+[[package]]\n+name = \"stringdex\"\n+version = \"0.0...
2024-11-22T19:58:20
golang/go
2ff5fbfbd4539d321043e6b84691ecb131402030
9861e8b2fd83dec24a6ced44998dca52abd6ccff
cmd/compile: limit goroutine count to parallelism When the compiler crashes, it is not uncommon to see many hundreds of goroutines all blocked waiting their turn to be one of the nWorkers goroutines that is allowed to run. All these goroutine stacks are not a terribly efficient use of memory, and they also make the cr...
[ { "path": "src/cmd/compile/internal/gc/compile.go", "patch": "@@ -126,20 +126,38 @@ func compileFunctions() {\n \t}\n \n \tif nWorkers := base.Flag.LowerC; nWorkers > 1 {\n-\t\t// For concurrent builds, we create a goroutine per task, but\n-\t\t// require them to hold a unique worker ID while performing wor...
2022-09-20T01:48:10
nodejs/node
e199fc553454c9c10841bf960dc0051608668a47
178e52a7ead2ef9ffb6eb5e17be167f17beb45a8
module: fix error message about importing names from cjs When importing specific names from a CJS module, and renaming them using `as`, the example fix in the error message erroneously contains the keyword `as` in the destructuring variable declaration. Example of this issue: import { parse as acornParse } from ...
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -8,6 +8,7 @@ const {\n SafePromise,\n StringPrototypeIncludes,\n StringPrototypeMatch,\n+ StringPrototypeReplace,\n StringPrototypeSplit,\n } = primordials;\n \n@@ -109,13 +110,14 @@ class ModuleJob {\n if (format === 'commonj...
2020-06-14T21:01:18
vercel/next.js
b141f3b278f08e7979181a76aaab5f6624eddd76
d5291fad497bfefc246543d907bcadc9038b1c20
Fix cases for the `optimize_server_react` transform (#59390) Closes #59310, see attached test cases. Closes NEXT-1830
[ { "path": "packages/next-swc/crates/core/src/optimize_server_react.rs", "patch": "@@ -129,76 +129,67 @@ impl Fold for OptimizeServerReact {\n }\n }\n \n- expr\n+ expr.fold_children_with(self)\n }\n \n // const [state, setState] = useState(x);\n // const [state, ...
2023-12-08T11:44:25
electron/electron
9f682ee36bdcb3a6f6b15b8f6b6196638c6da243
1b1c663b3285874f88bc653215a0a6d4c5064be0
fix osr window initial sizing
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -1644,6 +1644,18 @@ void WebContents::Invalidate() {\n }\n }\n \n+gfx::Size WebContents::GetSizeForNewRenderView(\n+ content::WebContents* wc) const {\n+ if (IsOffScreen() && wc == web_contents()) {\n+ auto relay = NativeWindowRela...
2017-05-11T21:48:14
facebook/react
abb95eed5ca9e677b1c77fabbf8c31487cbc0f07
5ea3ff64b6af22525621615b2e6438374792b999
Fix comma splice
[ { "path": "docs/docs/ref-03-component-specs.md", "patch": "@@ -96,7 +96,7 @@ Methods defined within this block are _static_, meaning that you can run them be\n string displayName\n ```\n \n-The `displayName` string is used in debugging messages. JSX sets this value automatically, see [JSX in Depth](/react/d...
2014-07-16T05:34:33
golang/go
9861e8b2fd83dec24a6ced44998dca52abd6ccff
e22af33b48447338abf6f788b3eb5b87577f95db
cmd/{cover,go}: avoid use of os.PathListSeparator in cmd/cover flag Rework the mechanism for passing a list of output files from cmd/go to cmd/cover when running new-style package-scope coverage instrumentation (-pkgcfg mode). The old scheme passed a single string with all output files joined together with os.PathList...
[ { "path": "src/cmd/cover/cfg_test.go", "patch": "@@ -39,18 +39,29 @@ func writePkgConfig(t *testing.T, outdir, tag, ppath, pname string, gran string)\n \treturn incfg\n }\n \n+func writeOutFileList(t *testing.T, infiles []string, outdir, tag string) ([]string, string) {\n+\toutfilelist := filepath.Join(outd...
2022-09-29T13:19:38
nodejs/node
178e52a7ead2ef9ffb6eb5e17be167f17beb45a8
8f000ea09f6ee20b50cb83e6f7b2cb25671ef6f2
lib: remove manual exception handling in queueMicrotask PR-URL: https://github.com/nodejs/node/pull/33859 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/process/task_queues.js", "patch": "@@ -15,10 +15,6 @@ const {\n enqueueMicrotask\n } = internalBinding('task_queue');\n \n-const {\n- triggerUncaughtException\n-} = internalBinding('errors');\n-\n const {\n setHasRejectionToWarn,\n hasRejectionToWarn,\n@@ -151,10 +147,6 @@ fun...
2020-06-12T21:12:17
rust-lang/rust
b38dd2acb598adb14bd1f08f39090909be13498b
1f12c623bd6aaaaed113c7496837823024e609a2
Use a more specific error message when talking about the server logs
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs", "patch": "@@ -152,7 +152,9 @@ impl GlobalState {\n if self.fetch_build_data_error().is_err() {\n status.health |= lsp_ext::Health::Warning;\n message.push_str(\"Failed to run build scripts of some package...
2025-08-15T17:15:21
electron/electron
4824c24fbc7f4b16b7b8ea5b371c534ed3250c03
190c9c916e7802a873f6469a74b1963014d1ea83
Remove non-functional node debugger usage
[ { "path": "atom/browser/atom_browser_main_parts.cc", "patch": "@@ -12,7 +12,6 @@\n #include \"atom/browser/bridge_task_runner.h\"\n #include \"atom/browser/browser.h\"\n #include \"atom/browser/javascript_environment.h\"\n-#include \"atom/browser/node_debugger.h\"\n #include \"atom/common/api/atom_bindings....
2017-05-11T17:59:51
facebook/react
12750ad749a4d9ad4adaf06fc6b384eccf5751dc
e85e5e995266a2129b718a1f2355e1334b2f61c6
[Docs] Perf tools Fixes #1814. @petehunt @joshduck The images look blurry (taken on retina then shrank down to 50%...)
[ { "path": "docs/_data/nav_docs.yml", "patch": "@@ -57,6 +57,8 @@\n title: Immutability Helpers\n - id: pure-render-mixin\n title: PureRenderMixin\n+ - id: perf\n+ title: Performance Tools\n - title: Reference\n items:\n - id: top-level-api", "additions": 2, "deletions": 0...
2014-07-12T19:12:03
vercel/next.js
d5291fad497bfefc246543d907bcadc9038b1c20
ef24520b44c479435d6f8245188a7d5154e9557f
Update `swc_core` to `v0.86.98` and turbopack (#59393) ### What? Update SWC crates. ### Why? To fix OOM bug of `inputSourceMap`. Patch: https://github.com/swc-project/swc/pull/8402 ### How? Closes PACK-2123 # Turbopack updates * https://github.com/vercel/turbo/pull/6733 <!-- Thomas Knickman...
[ { "path": "Cargo.lock", "patch": "@@ -322,7 +322,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-231207.2#d168d850a3eda771477886171f2014a0c167aab6\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-12-08T10:34:02
golang/go
e22af33b48447338abf6f788b3eb5b87577f95db
ecd112c0d1c90a12d3c87172cf969cdd1f6cbeca
go/types, types2: more concise error messages for cycle errors If a cycle has length 1, don't enumerate the single cycle entry; instead just mention "refers to itself". For instance, for an invalid recursive type T we now report: invalid recursive type: T refers to itself instead of: invalid recursive type T T ...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -308,7 +308,7 @@ func (check *Checker) cycleError(cycle []Object) {\n \t// name returns the (possibly qualified) object name.\n \t// This is needed because with generic types, cycles\n \t// may refer to imported types. See issue #50788.\n-\t/...
2022-09-28T23:44:53
rust-lang/rust
c3c2c23e0d96c76f11a307cf3c4cf14a86fd158b
3672a55b7cfd0a12e7097197b6242872473ffaa7
Extend `QueryStability` to handle `IntoIterator` implementations Fix adjacent code Fix duplicate warning; merge test into `tests/ui-fulldeps/internal-lints` Use `rustc_middle::ty::FnSig::inputs` Address two review comments - https://github.com/rust-lang/rust/pull/139345#discussion_r2109006991 - https://github.com/...
[ { "path": "compiler/rustc_codegen_ssa/src/target_features.rs", "patch": "@@ -180,6 +180,7 @@ fn parse_rust_feature_flag<'a>(\n while let Some(new_feature) = new_features.pop() {\n if features.insert(new_feature) {\n if let Some(implied_features) = inverse_impl...
2025-04-04T00:59:05
nodejs/node
8f000ea09f6ee20b50cb83e6f7b2cb25671ef6f2
a86a295fd7162a7fdf406a21b3c3c679819c60b5
deps: V8: cherry-pick 767e65f945e7 Original commit message: [API] Fix microtask message reporting RunSingleMicrotask calls Runtime::ReportMessage, but the implementation of ReportMessage would unconditionally discard these exceptions. This CL removes all of the intermediate logic and directly calls ...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.19',\n+ 'v8_embedder_string': '-node.20',\n \n ##### V8 defaults for Node.js #####\n...
2020-06-12T19:45:40
facebook/react
8ebadf15919331297a2652b4c3a924c212cc411c
92d2dcc25fa049d125a2c0dc82a98e1ce98e1a89
[Docs] Update addons.update Fixes #1815. Add the new `$apply` command, plus a few examples. @petehunt
[ { "path": "docs/docs/09.6-update.md", "patch": "@@ -14,22 +14,23 @@ Dealing with immutable data in JavaScript is more difficult than in languages de\n \n If you mutate data like this:\n \n-```javascript\n+```js\n myData.x.y.z = 7;\n+// or...\n myData.a.b.push(9);\n ```\n \n-you have no way of determining wh...
2014-07-12T02:25:37
vercel/next.js
26b8caaa29d0a672a0e5a978320ed79f795e658c
f7b9843b921cb1af830de8d75a8b81e3bed9f729
Turbopack: switch to a single client components entrypoint (#59352) ### What? switch turbopack to use a single client components entrypoint for all client components on a page for development. This aligns it with the webpack behavior. ### Why? compiling a separate entrypoint for every client component is pr...
[ { "path": "Cargo.lock", "patch": "@@ -322,7 +322,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-231206.4#f99cd2550f9f4c2b89e173532cc72797d613b82f\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-12-08T07:24:08
golang/go
a57639a2b2cc0d0cd5e8cec3b042156cf5bab178
ea2a2c0c2233a3aad73c4ba53cec315fb28d7a48
cmd/cgo: use strings.TrimSuffix Change-Id: I97b5592c678c350fd77069d7c40a98864733707a Reviewed-on: https://go-review.googlesource.com/c/go/+/435946 Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Cherry Mui <cherryyz@google.com> Reviewed-by: Dmitri Shuralyov <d...
[ { "path": "src/cmd/cgo/out.go", "patch": "@@ -627,9 +627,7 @@ func (p *Package) writeDefsFunc(fgo2 io.Writer, n *Name, callsMalloc *bool) {\n // writeOutput creates stubs for a specific source file to be compiled by gc\n func (p *Package) writeOutput(f *File, srcfile string) {\n \tbase := srcfile\n-\tif str...
2022-09-28T13:35:52
rust-lang/rust
8baab4cdf77979aed3ed7a5617df651c3e933405
c018ae5389c49cc4bcb8343d80dd8e7323325410
Detect missing `derive` on unresolved attribute even when not imported ``` error: cannot find attribute `sede` in this scope --> $DIR/missing-derive-3.rs:20:7 | LL | #[sede(untagged)] | ^^^^ | help: the derive macros `Deserialize` and `Serialize` accept the similarly named `serde` attribute | L...
[ { "path": "compiler/rustc_metadata/src/creader.rs", "patch": "@@ -32,6 +32,7 @@ use rustc_session::cstore::{CrateDepKind, CrateSource, ExternCrate, ExternCrateS\n use rustc_session::lint::{self, BuiltinLintDiag};\n use rustc_session::output::validate_crate_name;\n use rustc_session::search_paths::PathKind;\...
2025-06-11T17:05:01
nodejs/node
a86a295fd7162a7fdf406a21b3c3c679819c60b5
646e5a471766e27e8317bb54d1fd1d2c72cffb69
lib: remove NodeError from the prototype of errors with code Signed-off-by: Michaël Zasso <targos@protonmail.com> PR-URL: https://github.com/nodejs/node/pull/33857 Refs: https://github.com/nodejs/node/pull/33770 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Z...
[ { "path": "lib/internal/errors.js", "patch": "@@ -248,31 +248,35 @@ function makeSystemErrorWithCode(key) {\n }\n \n function makeNodeErrorWithCode(Base, key) {\n- return class NodeError extends Base {\n- constructor(...args) {\n- if (excludedStackFn === undefined) {\n- super();\n- } el...
2020-06-12T14:04:18
electron/electron
f57c1881dab30cf453a7deab05fae0e0b7ffe2a0
0c3f80c33447433b512263b33eac9321368fc73c
Fix return type of makeSingleInstance
[ { "path": "docs/api/app.md", "patch": "@@ -667,6 +667,8 @@ app.setJumpList([\n * `argv` String[] - An array of the second instance's command line arguments\n * `workingDirectory` String - The second instance's working directory\n \n+Returns `Boolean`.\n+\n This method makes your application a Single Ins...
2017-05-11T12:09:37
vercel/next.js
c49415f268523ecee2f4d819bfa587641e78bf4a
d747073a7ae9c62563ebb8ee05ff8f5a5238ebaa
fix(turbopack-ecmascript-runtime): don't use `path.relative` for absolute paths (vercel/turbo#6731) ### Description This was causing an issue with `import.meta.url` used in `@vercel/og` trying to get the font file from `project/app/node_modules` instead of `project/node_modules` Closes PACK-2118
[ { "path": "crates/turbopack-ecmascript-runtime/js/src/shared-node/node-externals-utils.ts", "patch": "@@ -24,9 +24,7 @@ const ABSOLUTE_ROOT = path.resolve(__filename, relativePathToDistRoot);\n */\n function resolveAbsolutePath(modulePath?: string): string {\n if (modulePath) {\n- // Module path can c...
2023-12-07T21:25:37
golang/go
09daf313b255b84e1a8e5323a4b40c1099b7ceb0
090ec611dffeb896f767e6e4f20624a796c0e826
cmd/asm: use strings.TrimSuffix Change-Id: If08ce3f8534f5fb7ce97ec124bfeff937e65f63b Reviewed-on: https://go-review.googlesource.com/c/go/+/435943 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Run-TryBot: Cherry Mui <cherryy...
[ { "path": "src/cmd/asm/internal/flags/flags.go", "patch": "@@ -84,9 +84,7 @@ func Parse() {\n \t\t\tflag.Usage()\n \t\t}\n \t\tinput := filepath.Base(flag.Arg(0))\n-\t\tif strings.HasSuffix(input, \".s\") {\n-\t\t\tinput = input[:len(input)-2]\n-\t\t}\n+\t\tinput = strings.TrimSuffix(input, \".s\")\n \t\t*O...
2022-09-28T13:28:18
nodejs/node
2c4864762d2b97a55ef15fe44b7691d67de51766
52de4cb107a6fc1a06f7c98f4fd36c7f7fd539d5
util: gracefully handle unknown colors This makes sure colors that are unknown won't cause an error. This is especially important in case a library wants to use colors defined by Node.js core, if available and fall back to the default otherwise. Signed-off-by: Ruben Bridgewater <ruben@bridgewater.de> PR-URL: https:/...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -508,7 +508,8 @@ function stylizeWithColor(str, styleType) {\n const style = inspect.styles[styleType];\n if (style !== undefined) {\n const color = inspect.colors[style];\n- return `\\u001b[${color[0]}m${str}\\u001b[${color[1]}m`;\n+ if (...
2020-06-08T18:30:20
electron/electron
bf58373a407c49df6f036a1e00d945ee525ba798
a76a4ddff2a7ed48f5bcd5e9379c14cd77b3e377
fix NativeImage size hint crashing when image is created from path
[ { "path": "atom/common/api/atom_api_native_image.cc", "patch": "@@ -217,8 +217,10 @@ NativeImage::NativeImage(v8::Isolate* isolate, const base::FilePath& hicon_path)\n ReadImageSkiaFromICO(&image_skia, GetHICON(256));\n image_ = gfx::Image(image_skia);\n Init(isolate);\n- isolate->AdjustAmountOfExter...
2017-05-11T09:38:34
facebook/react
f8ccc2186fd3dd18ab543382367c550197e35942
17aef05d750d9951c935e748a67e92229eea72ab
Fix IE8 potentially throwing during restoreSelection
[ { "path": "src/vendor/core/dom/focusNode.js", "patch": "@@ -19,14 +19,15 @@\n \"use strict\";\n \n /**\n- * IE8 throws if an input/textarea is disabled and we try to focus it.\n- * Focus only when necessary.\n- *\n * @param {DOMElement} node input/textarea to focus\n */\n function focusNode(node) {\n- if...
2014-07-02T14:30:16
golang/go
223a563f58f3b6f9b5d874b7e1e33d6f36992caa
4d6ca68a85e42c75683bc96aa540207566f54e26
os/exec: refactor goroutine error reporting Use a separate channel to report the final error of the copying goroutines, receiving a value only when all of the copying goroutines have completed. In a followup change (CL 401835), that will allow waiters to select on goroutine completion alongside other events (such as C...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -238,9 +238,16 @@ type Cmd struct {\n \t// These should be closed when Wait completes.\n \tuserPipes []io.Closer\n \n-\tgoroutine []func() error\n-\tgoroutineErrs <-chan error // one receive per goroutine\n-\tctxErr <-chan error // if non nil, receive...
2022-09-28T15:03:57
vercel/next.js
d5836a30384695e46437a455aaab8e45d1f60765
c9f859e6bea4a547d3946e99c5242bb419155598
Docs: Update Server Actions Docs (#59080) - [x] Rename page from `forms-and-mutations` to `server-actions-and-mutations` to account for examples that don't use forms. - [x] Split `/pages` and `/app` content to make easier to edit - [x] Add Security Section - [x] Recommend tainting - [x] Closures and encr...
[ { "path": "docs/02-app/01-building-your-application/01-routing/10-route-handlers.mdx", "patch": "@@ -160,7 +160,7 @@ export async function POST() {\n }\n ```\n \n-> **Good to know**: Like API Routes, Route Handlers can be used for cases like handling form submissions. A new abstraction for [handling forms a...
2023-12-07T21:12:25
rust-lang/rust
e9ce9ff498140ac257f35f163e9dfd52e96191cb
8800ec16657b24ad8a2f443c133bf0b56ae76033
Fix tracing debug representation of steps without arguments in bootstrap
[ { "path": "src/bootstrap/src/core/builder/mod.rs", "patch": "@@ -1839,9 +1839,14 @@ pub fn pretty_step_name<S: Step>() -> String {\n /// Renders `step` using its `Debug` implementation and extract the field arguments out of it.\n fn step_debug_args<S: Step>(step: &S) -> String {\n let step_dbg_repr = fo...
2025-08-15T14:52:30
nodejs/node
9918bdf5cb07f58d230522244a372cbb1b510956
f0fb511e3ba9a80618ddb616c1678d046246fe4f
lib: replace charCodeAt with fixed Unicode PR-URL: https://github.com/nodejs/node/pull/32758 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Zeyu Yang <himself65@outlook.com>
[ { "path": "lib/internal/console/constructor.js", "patch": "@@ -42,13 +42,19 @@ const {\n const {\n isTypedArray, isSet, isMap, isSetIterator, isMapIterator,\n } = require('internal/util/types');\n+const {\n+ CHAR_LOWERCASE_B,\n+ CHAR_LOWERCASE_E,\n+ CHAR_LOWERCASE_N,\n+ CHAR_UPPERCASE_C,\n+} = require...
2020-04-10T09:18:40
golang/go
4d6ca68a85e42c75683bc96aa540207566f54e26
13d48bb6a1ad3787c10fbbe4265ad11672d90a37
os/exec: do not close pipes on a double-Start error This fixes a bug introduced in CL 401834 in which calling Start twice with pipes attached to a command would spuriously close those pipes when returning the error from the second Start call. For #50436. Change-Id: I3563cc99c0a0987752190fef95da3e9927a76fda Reviewed-...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -490,6 +490,12 @@ func lookExtensions(path, dir string) (string, error) {\n // After a successful call to Start the Wait method must be called in\n // order to release associated system resources.\n func (c *Cmd) Start() error {\n+\t// Check for doubled Start ca...
2022-09-28T17:29:12
facebook/react
bea24ca944a7f3bdf814af3ae2802a4f7d976349
8758addb41d4a3f221bca5b3f717ef1379256ac0
fix some translation bug
[ { "path": "docs/docs/02-displaying-data.zh-CN.md", "patch": "@@ -1,6 +1,6 @@\n ---\n id: displaying-data-zh-CN\n-title: 显示数据 Displaying Data\n+title: 显示数据\n layout: docs\n permalink: displaying-data-zh-CN.html\n prev: why-react-zh-CN.html\n@@ -56,13 +56,13 @@ setInterval(function() {\n }, 500);\n ```\n \n-#...
2014-07-14T12:25:07
rust-lang/rust
1d00627966f6fd477ae6d7e855749c16cd00202b
be00ea1968d8d5afb5d93d2dedeb97a8bba300cb
add static glibc to the nix dev shell this fixes `tests/ui/process/nofile-limit.rs` which fails to link on nixos for me without this change
[ { "path": "src/tools/nix-dev-shell/shell.nix", "patch": "@@ -14,6 +14,7 @@ pkgs.mkShell {\n packages = [\n pkgs.git\n pkgs.nix\n+ pkgs.glibc.static\n x\n # Get the runtime deps of the x wrapper\n ] ++ lists.flatten (attrsets.attrValues env);", "additions": 1, "deletions": 0, ...
2025-08-15T14:14:39
vercel/next.js
d07a370dfa26e5c16ba8af0583b7a2f2f82475cc
e1fe0c9a14266b1c216306b7392c0006166b113e
fixes the logging by showing full URLs only on demand (#58088) <!-- 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: ## ...
[ { "path": "packages/next/src/build/output/index.ts", "patch": "@@ -322,18 +322,7 @@ export function watchCompilers(\n })\n }\n \n-const internalSegments = ['[[...__metadata_id__]]', '[__metadata_id__]']\n export function reportTrigger(trigger: string, url?: string) {\n- for (const segment of internalSegm...
2023-12-07T19:54:34
nodejs/node
1bd88a3ac6df409f03842c0c45d3710914a6b2c6
56967afdcab0b3c2dbcd120a0a761a041961754d
quic: fix up node_quic_stream includes This commit removes the unused <array> and <limits> includes, and adds <memory> (for std::unique_ptr), and <utility> (for std::move). PR-URL: https://github.com/nodejs/node/pull/33921 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/quic/node_quic_stream.cc", "patch": "@@ -14,10 +14,10 @@\n #include \"v8.h\"\n #include \"uv.h\"\n \n-#include <array>\n #include <algorithm>\n-#include <limits>\n+#include <memory>\n #include <string>\n+#include <utility>\n \n namespace node {\n ", "additions": 2, "deletions": 2, ...
2020-06-17T04:14:59
golang/go
ffdfa9ff41a83fe1265c48b93381a8fa302cf480
5612215d32643f2a5b729730c3bfdefda78e75d1
go/types, types2: consistently use "cause" instead of "reason" for error details (cleanup) There were many more uses of the variable name "cause" than "reason" to hold error message details. Consistently use "cause" throughout. Accordingly, s/MissingMethodReason/MissingMethodCause/. Change-Id: I171d784faabc66a4c58ba...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -1764,7 +1764,7 @@ func (check *Checker) typeAssertion(e syntax.Expr, x *operand, T Type, typeSwitc\n \t\treturn // success\n \t}\n \n-\tcause := check.missingMethodReason(T, x.typ, method, alt)\n+\tcause := check.missingMethodCause(T, x.typ,...
2022-09-28T21:59:16
facebook/react
65b2232f34c8c339b17a3c2c8ef384ac8ffbc6b5
4a66260b2c36f267a31cd7610fc652cfa7db6f8f
Fix typo-ed "of"
[ { "path": "docs/_posts/2014-07-13-react-v0.11-rc1.md", "patch": "@@ -122,8 +122,8 @@ Keyboard and mouse events also now include a normalized `e.getModifierState()` t\n * Added explicit warning when missing polyfills\n \n ### React With Addons\n-* PureRenderMixin:\n-* Perf: a new set off tools to help with p...
2014-07-13T20:09:50
vercel/next.js
e1fe0c9a14266b1c216306b7392c0006166b113e
a578cc8192fa3f9182d4fa70f18760f7ae1490bb
test: ability to use node debugger (#56277) Fixes ability to run `NODE_OPTIONS='--inspect' next dev` as described in [docs](https://nextjs.org/docs/pages/building-your-application/configuring/debugging), by removing inspect option from NODE_OPTIONS arg passed to worker process. This bug seem to have been introdu...
[ { "path": "test/integration/cli/test/index.test.js", "patch": "@@ -530,18 +530,24 @@ describe('CLI Usage', () => {\n test(\"NODE_OPTIONS='--inspect'\", async () => {\n const port = await findPort()\n let output = ''\n+ let errOutput = ''\n const app = await runNextCommandDev(\n ...
2023-12-07T19:20:07
nodejs/node
ea866dc81b81a71f6ff4c9cb44f8953ce5b398a6
d7d79f2163b9c7585d187769142da1ca1fa096be
events: use property, primordials PR-URL: https://github.com/nodejs/node/pull/33775 Fixes: https://github.com/nodejs/node/issues/33773 Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Zeyu Yang <himself65@outlook.com> Reviewed-By: James M Snell <jasnell@gma...
[ { "path": "lib/internal/event_target.js", "patch": "@@ -8,6 +8,7 @@ const {\n Set,\n Symbol,\n NumberIsNaN,\n+ SymbolToStringTag,\n } = primordials;\n \n const {\n@@ -67,7 +68,6 @@ class Event {\n // isTrusted is special (LegacyUnforgeable)\n Object.defineProperty(this, 'isTrusted', {\n ...
2020-06-06T18:41:53
electron/electron
b4e356212c18487cb46fa975cf8e15a8eba9cfbc
b6319698f12f6f0d8095da7a0528b4a3b9949834
Fix webcontents capital
[ { "path": "docs/api/browser-view.md", "patch": "@@ -44,7 +44,7 @@ Objects created with `new BrowserView` have the following properties:\n \n #### `view.webContents` _Experimental_\n \n-A [`webContents`](web-contents.md) object owned by this view.\n+A [`WebContents`](web-contents.md) object owned by this vie...
2017-05-10T23:28:24
facebook/react
8f909233c9945a28ed3216df6897bbdb11c41f0f
92d2dcc25fa049d125a2c0dc82a98e1ce98e1a89
[Docs] Document PureRenderMixin addon Fixes #1816
[ { "path": "docs/_data/nav_docs.yml", "patch": "@@ -55,6 +55,8 @@\n title: Cloning Components\n - id: update\n title: Immutability Helpers\n+ - id: pure-render-mixin\n+ title: PureRenderMixin\n - title: Reference\n items:\n - id: top-level-api", "additions": 2, "deletions"...
2014-07-11T23:58:39
golang/go
5612215d32643f2a5b729730c3bfdefda78e75d1
8c29881dd189bac1a3f34750c1c3fc071626b660
go/types, types2: remove (C/c)ompilerErrorMessages flag - not needed anymore Fixes #55326. Change-Id: Ic300976ddf504224faadc5bae21736fe94dac6bf Reviewed-on: https://go-review.googlesource.com/c/go/+/435416 Reviewed-by: Robert Findley <rfindley@google.com> Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by: Ro...
[ { "path": "src/cmd/compile/internal/noder/irgen.go", "patch": "@@ -43,10 +43,9 @@ func checkFiles(noders []*noder) (posMap, *types2.Package, *types2.Info) {\n \t\tpackages: make(map[string]*types2.Package),\n \t}\n \tconf := types2.Config{\n-\t\tContext: ctxt,\n-\t\tGoVersion: base...
2022-09-28T21:49:50
vercel/next.js
a578cc8192fa3f9182d4fa70f18760f7ae1490bb
2874bc0656df9031d10eea7beee36ce70e53acef
fix inconsistent scroll restoration behavior (#59366) ### What? While scrolled on a page, and when following a link to a new page and clicking the browser back button or using `router.back()`, the scroll position would sometimes restore scroll to the incorrect spot (in the case of the test added in this PR, it'd s...
[ { "path": "packages/next/src/shared/lib/router/action-queue.ts", "patch": "@@ -6,6 +6,7 @@ import {\n ACTION_REFRESH,\n ACTION_SERVER_ACTION,\n ACTION_NAVIGATE,\n+ ACTION_RESTORE,\n } from '../../../client/components/router-reducer/router-reducer-types'\n import type { ReduxDevToolsInstance } from '....
2023-12-07T19:17:15
nodejs/node
133a97f60d0052496550f3423cbae9e20ecf9c7b
e9145dbaeff1c7217f51982bd8aa3934a8e42575
quic: always copy stateless reset token Take ownership of the token value, since the memory for it is allocated anyway and the buffer size is just 16, i.e. copyable very cheaply. This makes valgrind stop complaining about a use-after-free error when running `sequential/test-quic-preferred-address-ipv6`. PR-URL: http...
[ { "path": "src/quic/node_quic_util-inl.h", "patch": "@@ -287,22 +287,27 @@ bool PreferredAddress::ResolvePreferredAddress(\n StatelessResetToken::StatelessResetToken(\n uint8_t* token,\n const uint8_t* secret,\n- const QuicCID& cid) : token_(token) {\n+ const QuicCID& cid) {\n GenerateResetT...
2020-06-16T23:46:19
facebook/react
c64df89ecf9357ae71f566d98947f99a9bdf6f8f
a4374c4f746189b74f30977f80219675a10fe891
Fix up getDefaultProps docs
[ { "path": "docs/docs/ref-03-component-specs.md", "patch": "@@ -42,9 +42,9 @@ Invoked once before the component is mounted. The return value will be used as t\n object getDefaultProps()\n ```\n \n-Invoked once before the component is mounted. Values in the mapping will be set on `this.props` if that prop is ...
2014-07-11T21:26:42
golang/go
8c29881dd189bac1a3f34750c1c3fc071626b660
7997e5f2540deb03a88a2f68f83bb5e5b7d6f77e
cmd/compile: use "shifted operand %s (type %s) must be integer" for some shift errors This matches what go/types and types2 report and it also matches the compiler errors reported for some related shift problems. For #55326. Change-Id: Iee40e8d988d5a7f9ff2c49f019884d02485c9fdf Reviewed-on: https://go-review.googleso...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -616,11 +616,7 @@ func (check *Checker) updateExprType0(parent, x syntax.Expr, typ Type, final boo\n \t\t// We already know from the shift check that it is representable\n \t\t// as an integer if it is a constant.\n \t\tif !allInteger(typ) {\...
2022-09-28T21:42:16
vercel/next.js
2874bc0656df9031d10eea7beee36ce70e53acef
42ec6c89bb21cd33d891e3351fe4aa61562f39d0
Fix server output bundling packages module resolving (#59369)
[ { "path": "packages/next/src/build/handle-externals.ts", "patch": "@@ -47,6 +47,7 @@ export async function resolveExternal(\n context: string,\n request: string,\n isEsmRequested: boolean,\n+ optOutBundlingPackages: string[],\n getResolve: (\n options: any\n ) => (\n@@ -66,8 +67,15 @@ export ...
2023-12-07T17:11:11
facebook/react
28d94d2dcfdd081b49ecf3febbc04750b108cf94
774f5a022eacbb054b09aa5a7d596186874b2600
Fix react-dislayName-test [skip ci]
[ { "path": "vendor/fbtransform/transforms/__tests__/react-displayName-test.js", "patch": "@@ -1,5 +1,17 @@\n /**\n- * Copyright 2004-present Facebook. All Rights Reserved.\n+ * Copyright 2013-2014 Facebook, Inc.\n+ *\n+ * Licensed under the Apache License, Version 2.0 (the \"License\");\n+ * you may not use ...
2014-07-11T17:36:07
nodejs/node
14d012ef96f25b097ca8d87cf32f173e3aa3bf7e
ff74e35c0bfc206fdbac21b5df61edf860a3267b
quic: fix minor linting issue PR-URL: https://github.com/nodejs/node/pull/33913 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
[ { "path": "src/quic/node_quic_socket.cc", "patch": "@@ -32,13 +32,11 @@ using v8::Context;\n using v8::FunctionCallbackInfo;\n using v8::FunctionTemplate;\n using v8::HandleScope;\n-using v8::Integer;\n using v8::Isolate;\n using v8::Local;\n using v8::Number;\n using v8::Object;\n using v8::ObjectTemplate;...
2020-06-16T19:31:05
electron/electron
6a63028079fa3360c7495ea08e2d1d2f9f69dd3a
6ace5a8e3e6c6deda6f6621890219bac2c1f1d4e
Remove vendor\brightray prefix
[ { "path": "script/upload-windows-pdb.py", "patch": "@@ -10,7 +10,7 @@\n \n SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))\n SYMBOLS_DIR = 'dist\\\\symbols'\n-DOWNLOAD_DIR = 'vendor\\\\brightray\\\\vendor\\\\download\\\\libchromiumcontent'\n+DOWNLOAD_DIR = 'vendor\\\\download\\\\li...
2017-05-10T22:56:10
golang/go
7997e5f2540deb03a88a2f68f83bb5e5b7d6f77e
435652b468f0b71266f760490896ac3e9cf46eba
cmd/compile: use "cannot use %s as %s value in %s: %s" error message This is close to what the compiler used to say, except now we say "as T value" rather than "as type T" which is closer to the truth (we cannot use a value as a type, after all). Also, place the primary error and the explanation (cause) on a single li...
[ { "path": "src/cmd/compile/internal/types2/assignments.go", "patch": "@@ -85,20 +85,12 @@ func (check *Checker) assignment(x *operand, T Type, context string) {\n \t\treturn\n \t}\n \n-\treason := \"\"\n-\tif ok, code := x.assignableTo(check, T, &reason); !ok {\n-\t\tif check.conf.CompilerErrorMessages {\n-...
2022-09-28T21:13:24
facebook/react
0d7184f0dbdadecda1cb5952a90de48ccdc603ea
774f5a022eacbb054b09aa5a7d596186874b2600
Verb agreement grammar fix
[ { "path": "docs/docs/ref-08-reconciliation.md", "patch": "@@ -76,7 +76,7 @@ After the attributes have been updated, we recurse on all the children.\n \n ### Custom Components\n \n-We decided that the two custom components are the same. Since components are stateful, we cannot just use the new component and ...
2014-07-11T09:57:21
nodejs/node
ff74e35c0bfc206fdbac21b5df61edf860a3267b
bc71278563b60caba7e2d39c170d439a205ff529
process: add unhandled-rejection throw and warn-with-error-code This PR defines two new modes for the --unhandled-rejections flag. The first mode is called "throw". The "throw" mode first emits unhandledRejection. If this hook is not set, the "throw" mode will raise the unhandled rejection as an uncaught exception. ...
[ { "path": "doc/api/cli.md", "patch": "@@ -983,11 +983,15 @@ for the very first unhandled rejection in case no [`unhandledRejection`][] hook\n is used.\n \n Using this flag allows to change what should happen when an unhandled rejection\n-occurs. One of three modes can be chosen:\n+occurs. One of the followi...
2020-05-20T00:41:01
vercel/next.js
d747073a7ae9c62563ebb8ee05ff8f5a5238ebaa
ee5a2e1c4e29b370f33e6cd98f20296ae9cea91d
fix order of reverse topologic iteration (vercel/turbo#6728) ### Description the ordering of reverse topological was incorrect. When pushing to the stack we need to push items in reverse order to make sure they are popped in correct order again. Closes PACK-2116
[ { "path": "crates/turbo-tasks/src/graph/adjacency_map.rs", "patch": "@@ -81,6 +81,7 @@ where\n stack: self\n .roots\n .into_iter()\n+ .rev()\n .map(|root| (ReverseTopologicalPass::Pre, root))\n .collect(),\n ...
2023-12-07T15:36:21
electron/electron
a76a4ddff2a7ed48f5bcd5e9379c14cd77b3e377
b1095faa712d90f23c0842ec0cedca5aa9a54269
:art: lint fix
[ { "path": "atom/browser/osr/osr_output_device.cc", "patch": "@@ -53,12 +53,11 @@ SkCanvas* OffScreenOutputDevice::BeginPaint(const gfx::Rect& damage_rect) {\n \n damage_rect_ = damage_rect;\n SkIRect damage = SkIRect::MakeXYWH(\n- damage_rect_.x(), \n- damage_rect_.y(), \n- damage_rect_.width()...
2017-05-10T21:04:19
golang/go
435652b468f0b71266f760490896ac3e9cf46eba
f1d281fe4d6177349032776c22ab6dfb8533f0eb
go/types, types2: use "assignment mismatch: x variables but y values" error message This matches current compiler behavior. For #55326. Change-Id: I7197cf4ce21e614291a1a2e1048dd78d0a232b64 Reviewed-on: https://go-review.googlesource.com/c/go/+/436175 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Robert...
[ { "path": "src/cmd/compile/internal/types2/assignments.go", "patch": "@@ -353,11 +353,7 @@ func (check *Checker) initVars(lhs []*Var, orig_rhs []syntax.Expr, returnStmt sy\n \t\t\tcheck.report(&err)\n \t\t\treturn\n \t\t}\n-\t\tif check.conf.CompilerErrorMessages {\n-\t\t\tcheck.assignError(orig_rhs, len(lh...
2022-09-28T20:20:40
facebook/react
4477e69d52a5b3a3ca657bb796716ad789f96093
774f5a022eacbb054b09aa5a7d596186874b2600
Add possessive to fix grammar
[ { "path": "docs/docs/ref-08-reconciliation.md", "patch": "@@ -6,7 +6,7 @@ permalink: reconciliation.html\n prev: special-non-dom-attributes.html\n ---\n \n-React key design decision is to make the API seem like it re-renders the whole app on every update. This makes writing applications a lot easier but is ...
2014-07-11T09:52:17
nodejs/node
e1ad548cd4bfb996ea925584542f30c85aa3dfa1
8641d94189398063b20d5e38549bfd8f023af2d6
worker: emit `'messagerror'` events for failed deserialization This is much nicer than just treating exceptions as uncaught, and enables reporting of exceptions from the internal C++ deserialization machinery. PR-URL: https://github.com/nodejs/node/pull/33772 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -1566,6 +1566,17 @@ behavior. See the documentation for [policy][] manifests for more information.\n An attempt was made to allocate memory (usually in the C++ layer) but it\n failed.\n \n+<a id=\"ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE\"></a>\n+### `ERR_MESSAGE_TA...
2020-06-08T15:42:45
vercel/next.js
0925de117ea84e477789b93395212ae902015ad2
d4d9dc40facff846582de9192f89b5b59c682edf
Update tests for Turbopack (#59354) ## What? - Add support for `experimental.externalDir` -- Was already supported, just makes Turbopack not fail on that config option - Skipped `with-babel` test because it tests Babel - Skipped `swc-warnings` test because it tests Babel - Skipped `config-resolve-alias` as it t...
[ { "path": "packages/next/src/lib/turbopack-warning.ts", "patch": "@@ -69,6 +69,7 @@ const supportedTurbopackNextConfigOptions = [\n 'experimental.useLightningcss',\n 'experimental.windowHistorySupport',\n 'experimental.instrumentationHook',\n+ 'experimental.externalDir',\n \n // Experimental option...
2023-12-07T14:03:44
golang/go
f1d281fe4d6177349032776c22ab6dfb8533f0eb
dbf174d4b9dd96b225a1f10089478f8257a54f80
go/ast: record start and end of file in File.File{Start,End} This change causes the parser to record the positions of the first and last character in the file in new ast.File fields FileStart and FileEnd. The behavior of the existing Pos() and End() methods, which record the span of declarations, must remain unchange...
[ { "path": "api/next/53202.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg go/ast, type File struct, FileEnd token.Pos #53202\n+pkg go/ast, type File struct, FileStart token.Pos #53202", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "src/go/ast/ast.go", "patch": "@@ -103...
2022-09-02T15:13:43
nodejs/node
c17d2f99018ae48ed82a90a9eccc570ed1ae83c6
85fbf7175e628fb8f892c2c0886f74e5562635f4
esm: fix loader hooks doc annotations Prior to this commit, the type annotations on the ESM loader hooks were invalid. This has been corrected and is ensured to be compatible with both the TypeScript and Closure type systems. Notes: https://www.typescriptlang.org/play/index.html?useJavaScript=true#code/PQKhCgAIUg...
[ { "path": "doc/api/esm.md", "patch": "@@ -1160,25 +1160,26 @@ condition list **must** be passed through to the `defaultResolve` function.\n ```js\n /**\n * @param {string} specifier\n- * @param {object} context\n- * @param {string} context.parentURL\n- * @param {string[]} context.conditions\n- * @param {fu...
2020-05-20T14:58:12
vercel/next.js
7a733dfd3440ac121ea3c5ff277ee732539e39ed
61b825be3937dc1f095cde942d623c79559b2c53
fix edge route catch-all param parsing (#59343) ### What? Visiting an edge catch-all route incorrectly truncates multiple parameters ### Why? The params are currently coerced into a `ParsedURLQuery`-like format by calling `Object.fromEntries` on `searchParams`, but this doesn't consider multiple param values a...
[ { "path": "packages/next/src/server/web/edge-route-module-wrapper.ts", "patch": "@@ -13,6 +13,7 @@ import { RouteMatcher } from '../future/route-matchers/route-matcher'\n import type { NextFetchEvent } from './spec-extension/fetch-event'\n import { internal_getCurrentFunctionWaitUntil } from './internal-edg...
2023-12-06T20:21:28
rust-lang/rust
f36ab498ceaf326b7b2ca0cd35a9131b94d5faba
ba412a6e70ac84641be7764d088acabd0eb3fa39
fix(tests/rmake/wasm-unexpected-features): change features from `WASM1` to `MVP`
[ { "path": "tests/run-make/wasm-unexpected-features/rmake.rs", "patch": "@@ -21,6 +21,6 @@ fn verify_features(path: &Path) {\n eprintln!(\"verify {path:?}\");\n let file = rfs::read(&path);\n \n- let mut validator = wasmparser::Validator::new_with_features(wasmparser::WasmFeatures::WASM1);\n+ l...
2025-08-15T12:48:46
golang/go
d6ca24477afa85a3ab559935faa4fed917911e4f
7f7f27f992850a06551c2798a3b874f5d5356ae9
testing: fail if T.Setenv is called via T.Run in a parallel test The existing implementation can call to T.Setenv in T.Run even after calling to T.Parallel, so I changed it to cause a panic in that case. Fixes #55128 Change-Id: Ib89d998ff56f00f96a5ca218af071bd35fdae53a Reviewed-on: https://go-review.googlesource.com...
[ { "path": "src/testing/testing.go", "patch": "@@ -547,6 +547,7 @@ type common struct {\n \thasSub atomic.Bool // whether there are sub-benchmarks.\n \traceErrors int // Number of races detected during test.\n \trunner string // Function name of tRunner running the test.\n+\tisP...
2022-09-18T02:52:07
facebook/react
d8aa1c3612af2835711d1836f60abc057809089f
0d8aa8ff654c31b776195fcced48f1320f062f3c
Update polyfills list in docs [skip ci] Fixes #1744
[ { "path": "docs/docs/07-working-with-the-browser.md", "patch": "@@ -116,12 +116,15 @@ In addition to that philosophy, we've also taken the stance that we, as authors\n `es5-shim.js` from [kriskowal's es5-shim](https://github.com/kriskowal/es5-shim) provides the following that React needs:\n \n * `Array.isAr...
2014-07-11T00:13:45