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
mrdoob/three.js
62a2a0ccc85b8b24ecdfc887fcae0b6e33531836
35adaa03aab0e3121bd00c9145c30a1d7698d2cf
Triangle: Return `null` if the triangle is degenerated. (#27311) * BatchedMesh: Add sorting and frustum culling for shadows * Triangle.getBarycoord: throw error if a degenerate triangle is used * Return null, instead * Fix test * Fix containsPoint
[ { "path": "docs/api/en/math/Triangle.html", "patch": "@@ -97,7 +97,7 @@ <h3>\n \t\t\t[page:Vector3 target] — the result will be copied into this Vector3.<br /><br />\n \n \t\t\tReturn a [link:https://en.wikipedia.org/wiki/Barycentric_coordinate_system barycentric coordinate] \n-\t\t\tfrom the given vector. ...
2023-12-06T22:28:25
golang/go
a0a99cb22b2045b15509d1002a655db407a44a50
9d04122d240db4de36bf9ef4f5627e0025201bd9
encoding/json/v2: report wrapped io.ErrUnexpectedEOF In the event that the input is just JSON whitespace, the underlying jsontext.Decoder treats this as an empty stream and reports io.EOF. The logic in unmarshalFull simply casted io.EOF as io.ErrUnexpectedEOF, which is inconsistent with how all other io.ErrUnexpected...
[ { "path": "src/encoding/json/decode_test.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"image\"\n+\t\"io\"\n \t\"maps\"\n \t\"math\"\n \t\"math/big\"\n@@ -469,11 +470,13 @@ var unmarshalTests = []struct {\n \t{CaseName: Name(\"\"), in: `{\"alphabet\": \"xyz\"}`, ptr: new(U), err:...
2025-07-09T23:55:14
vuejs/vue
1c09f63631d8fab37127fab8dc667e4be17fd4c7
49d5f2f393d416fd9f6b5abc74472435b66306e8
fix value prop handling
[ { "path": "src/platforms/web/runtime/modules/props.js", "patch": "@@ -15,16 +15,16 @@ function updateProps (oldVnode, vnode) {\n for (key in props) {\n cur = props[key]\n old = oldProps[key]\n- if (old !== cur) {\n- if (key === 'value') {\n- // store value as _value as well since\n-...
2016-05-04T20:47:00
mrdoob/three.js
35adaa03aab0e3121bd00c9145c30a1d7698d2cf
96ac576e0915f6d8f56f38cfcb12de73506031c5
Fixed: Flow reports an error in multiple materials (#27302) (#27324) Co-authored-by: shiyanglong <shiyanglong@hixianchang.com>
[ { "path": "examples/jsm/modifiers/CurveModifier.js", "patch": "@@ -214,8 +214,26 @@ export class Flow {\n \t\t\t\tchild instanceof InstancedMesh\n \t\t\t) {\n \n-\t\t\t\tchild.material = child.material.clone();\n-\t\t\t\tmodifyShader( child.material, uniforms, numberOfCurves );\n+\t\t\t\tif ( Array.isArray(...
2023-12-06T09:10:20
denoland/deno
71d1384a89c2106a809e3d1499328551da23d7fa
ff2354be0b489609e138ff03de361b4cc87c8153
fix(ext/node): include `assert.ok` in `node:test` (#29383)
[ { "path": "ext/node/polyfills/testing.ts", "patch": "@@ -32,6 +32,7 @@ const methodsToCopy = [\n \"rejects\",\n \"strictEqual\",\n \"throws\",\n+ \"ok\",\n ];\n \n /** `assert` object available via t.assert */", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "t...
2025-05-20T04:05:19
golang/go
1ca23682dd7b2706daa94e428b3b82cc85a752c0
4bc3373c8e2cad24a779698477704306548949cb
crypto/rsa: fix documentation formatting Change-Id: I6a6a696422f9ab73b9ddee131b17d3c177fefc4e Reviewed-on: https://go-review.googlesource.com/c/go/+/687615 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: Carlos Ame...
[ { "path": "src/crypto/rsa/rsa.go", "patch": "@@ -30,14 +30,15 @@\n // with a key smaller than 1024 bits. Such keys are insecure and should not be\n // used.\n //\n-// The `rsa1024min=0` GODEBUG setting suppresses this error, but we recommend\n-// doing so only in tests, if necessary. Tests can use [testing....
2025-07-10T15:06:05
vuejs/vue
9a6d80c1332530a30eca08fcb6cde285ff082447
014ac351721cfbf55326b3091727f282daa085ac
comment spelling errors (#2800)
[ { "path": "src/core/observer/watcher.js", "patch": "@@ -236,7 +236,7 @@ Watcher.prototype.teardown = function () {\n }\n \n /**\n- * Recrusively traverse an object to evoke all converted\n+ * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\...
2016-05-04T07:36:46
mrdoob/three.js
96ac576e0915f6d8f56f38cfcb12de73506031c5
f4b09ecdc6a7dc6f899ef4d68eb2fb0c06b2bb03
Fix typo in webgl2_ubo_arrays example (#27322)
[ { "path": "examples/webgl2_ubo_arrays.html", "patch": "@@ -249,7 +249,7 @@\n \t\t\t\t// controls\n \n \t\t\t\tconst controls = new OrbitControls( camera, renderer.domElement );\n-\t\t\t\tcontrols.enabledPan = false;\n+\t\t\t\tcontrols.enablePan = false;\n \n \t\t\t\t// stats\n ", "additions": 1, "de...
2023-12-06T09:07:36
denoland/deno
ff2354be0b489609e138ff03de361b4cc87c8153
5a8c0a23db69d3c012b692de52fe841c61506265
fix(ext/node): Fix `Database#exec` should return undefined (#29368)
[ { "path": "Cargo.lock", "patch": "@@ -1754,9 +1754,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.347.0\"\n+version = \"0.348.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"d75ae5562f6ad750bc2007e7b1032ae37115a83fe58b6fbc77331c47744956c...
2025-05-20T02:20:49
golang/go
4bc3373c8e2cad24a779698477704306548949cb
88cf0c5d55a8c18da515485f4a3fcf008b96cb07
runtime: turn off large memmove tests under asan/msan Just like we do for race mode. They are just too slow when running with the sanitizers. Fixes #59448 Change-Id: I86e3e3488ec5c4c29e410955e9dc4cbc99d39b84 Reviewed-on: https://go-review.googlesource.com/c/go/+/687535 Reviewed-by: Keith Randall <khr@google.com> LUC...
[ { "path": "src/runtime/memmove_test.go", "patch": "@@ -8,6 +8,8 @@ import (\n \t\"crypto/rand\"\n \t\"encoding/binary\"\n \t\"fmt\"\n+\t\"internal/asan\"\n+\t\"internal/msan\"\n \t\"internal/race\"\n \t\"internal/testenv\"\n \t. \"runtime\"\n@@ -102,8 +104,8 @@ func TestMemmoveLarge0x180000(t *testing.T) {\...
2025-07-11T16:10:53
vuejs/vue
014ac351721cfbf55326b3091727f282daa085ac
cdab583dfaff04a9182ef4ea6e0d4cae6c519c59
fix eslint again
[ { "path": "build/karma.dev.config.js", "patch": "@@ -2,7 +2,7 @@ var base = require('./karma.base.config.js')\n \n module.exports = function (config) {\n // enable linting during dev\n- base.webpack.module.preLoaders = [\n+ base.webpack.module.preLoaders = [\n {\n test: /\\.js$/,\n load...
2016-04-30T00:12:01
mrdoob/three.js
f4b09ecdc6a7dc6f899ef4d68eb2fb0c06b2bb03
52b10d5f3a3813325f03e66141a3344ffc81adf9
TSL: Fix texture_depth_2d in wgslFn (#27323)
[ { "path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -422,7 +422,7 @@ class WGSLNodeBuilder extends NodeBuilder {\n \n \tisReference( type ) {\n \n-\t\treturn super.isReference( type ) || type === 'texture_2d' || type === 'texture_cube' || type === 'texture_storage_2d';\n+\t\tret...
2023-12-06T03:00:05
mrdoob/three.js
03c2218c52ed83a765df80a33e7310a4baf4a73e
139cbde28165a6fc4d64ca7289c8b855da45193a
fix level mipmap and support compressed tex (#27313)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -2445,7 +2445,7 @@ class WebGLRenderer {\n \t\t\t\ttextures.setTexture3D( dstTexture, 0 );\n \t\t\t\tglTarget = _gl.TEXTURE_3D;\n \n-\t\t\t} else if ( dstTexture.isDataArrayTexture ) {\n+\t\t\t} else if ( dstTexture.isDataArrayTexture || dstTexture.is...
2023-12-05T10:47:17
vuejs/vue
f0f2b761833184c595c9e000dce61a938fa2516d
bdb4b80595f4bd7a3368679f4e2ba9a512a18bbd
fix eslint
[ { "path": "test/unit/features/directives/for.spec.js", "patch": "@@ -314,8 +314,8 @@ describe('Directive v-for', () => {\n const vm = new Vue({\n data: {\n items: [\n- { items: [{a: 1}, {a: 2}], a: 1 },\n- { items: [{a: 3}, {a: 4}], a: 2 }\n+ { items: [{ a: 1 }, ...
2016-04-29T23:44:10
denoland/deno
4801c0e7bb0ab2e5e493ca6477c14e040aa30f25
69eeabb879cd51943da590de5ab6e49bc1c18582
fix(coverage): pass DENO_COVERAGE_DIR env var correctly (#29363)
[ { "path": "cli/main.rs", "patch": "@@ -308,7 +308,7 @@ async fn run_subcommand(\n // this is set in order to ensure spawned processes use the same\n // coverage directory\n env::set_var(\n- \"DENO_UNSTABLE_COVERAGE_DIR\",\n+ \"DENO_COVERAGE_DIR\",\n ...
2025-05-19T08:30:01
mrdoob/three.js
139cbde28165a6fc4d64ca7289c8b855da45193a
4a1a1c880f24c17e9b406e7fc4fbfb56cb9e0868
DracoLoader: remove extra redundant code (#27308) * fix onError load * onError * LinearSRGBColorSpace instead of undefined * default onError = () => {}; call onError to cleanup code; * dracoloader: remove redundant catch
[ { "path": "examples/jsm/loaders/DRACOLoader.js", "patch": "@@ -157,12 +157,7 @@ class DRACOLoader extends Loader {\n \t\t\t\t} );\n \n \t\t\t} )\n-\t\t\t.then( ( message ) => this._createGeometry( message.geometry ) )\n-\t\t\t.catch( ( error ) => {\n-\n-\t\t\t\tthrow new Error( error );\n-\n-\t\t\t} );\n+\t...
2023-12-04T19:52:34
vuejs/vue
e275b75af8bb5eb9c409beca5fa65c7b037fa176
9ff87a357eba00e40d44a2d5a25f6ac44fca70b9
test/fix global filter registration
[ { "path": "src/core/config.js", "patch": "@@ -38,7 +38,7 @@ export default {\n 'component',\n 'directive',\n 'transition',\n- 'filters'\n+ 'filter'\n ],\n \n /**", "additions": 1, "deletions": 1, "language": "JavaScript" }, { "path": "src/core/global-api/index.js", ...
2016-04-29T22:39:52
golang/go
88cf0c5d55a8c18da515485f4a3fcf008b96cb07
7a38975a48ac735e62b389957bfc898437d628dc
cmd/link: do size fixups after symbol references are loaded When we do a size fixup, we need to clone the symbol to an external symbol so we can modify it. This includes cloning the relocations, which includes resolving the relocations. If the symbol being fixed has a relocation referencing a non-Go symbol, that symbo...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2298,17 +2298,17 @@ func (l *Loader) LoadSyms(arch *sys.Arch) {\n \t\tst.preloadSyms(r, hashedDef)\n \t\tst.preloadSyms(r, nonPkgDef)\n \t}\n-\tfor _, sf := range l.sizeFixups {\n-\t\tpp := l.cloneToExternal(sf.sym)\n-\t\tpp.size = int64(sf.s...
2025-07-10T04:46:00
denoland/deno
69eeabb879cd51943da590de5ab6e49bc1c18582
3c6a99fce39be5f995432aae06d3171cd84b0ee9
fix(ext/node): implement `before` and `after` hooks in `node:test` (#29367) Ref https://github.com/denoland/deno/issues/29360 and https://github.com/denoland/deno/issues/28837. Needed for `node:sqlite` tests
[ { "path": "ext/node/polyfills/testing.ts", "patch": "@@ -6,6 +6,8 @@ const {\n ArrayPrototypePush,\n ArrayPrototypeForEach,\n SafePromiseAll,\n+ TypeError,\n+ SafeArrayIterator,\n SafePromisePrototypeFinally,\n Symbol,\n } = primordials;\n@@ -54,6 +56,8 @@ const skippedSymbol = Symbol(\"skipped\...
2025-05-19T07:26:41
mrdoob/three.js
4a1a1c880f24c17e9b406e7fc4fbfb56cb9e0868
d5fcd197fb3bc57b59a598857d12c104cd299093
DracoLoader: Fix not calling `onError()`. (#27306) * fix onError load * onError * LinearSRGBColorSpace instead of undefined * default onError = () => {}; call onError to cleanup code;
[ { "path": "examples/jsm/loaders/DRACOLoader.js", "patch": "@@ -82,13 +82,14 @@ class DRACOLoader extends Loader {\n \n \t}\n \n-\tparse( buffer, onLoad, onError ) {\n+\n+\tparse( buffer, onLoad, onError = ()=>{} ) {\n \n \t\tthis.decodeDracoFile( buffer, onLoad, null, null, SRGBColorSpace ).catch( onError )...
2023-12-04T18:15:21
vuejs/vue
60ec66be6882194d805e19e227fc4962cbd2c1fb
6f06f1b724ad1dd394eb18b7ca71a711a2bbbcb8
CSS fixes for "Grid" example (#2753)
[ { "path": "examples/grid/style.css", "patch": "@@ -16,7 +16,8 @@ th {\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n- -user-select: none;\n+ -ms-user-select: none;\n+ user-select: none;\n }\n \n td {\n@@ -55,4 +56,4 @@ th.active .arrow {\n border-left: 4px solid trans...
2016-04-29T00:44:52
golang/go
7a38975a48ac735e62b389957bfc898437d628dc
aa5de9ebb55bbd5e0a38304f8f8e603b2ec03238
os: trivial comment fix "Geese" here looks like an autocorrect-o of "oses", I think writing it out makes more sense. Change-Id: Iba89a6c0b94657e2e93937cc153f07aea1d04e04 GitHub-Last-Rev: 4f3a780f327d6c807e9b154d781ee69a10d391e4 GitHub-Pull-Request: golang/go#74332 Reviewed-on: https://go-review.googlesource.com/c/go/...
[ { "path": "src/os/file.go", "patch": "@@ -616,7 +616,7 @@ func UserHomeDir() (string, error) {\n \tif v := Getenv(env); v != \"\" {\n \t\treturn v, nil\n \t}\n-\t// On some geese the home directory is not always defined.\n+\t// On some operating systems the home directory is not always defined.\n \tswitch r...
2025-06-22T17:16:36
denoland/deno
3c6a99fce39be5f995432aae06d3171cd84b0ee9
a7226ceb7c128f7c6285f647196aa79d823327b7
fix(ext/node): handle `null` ssl options in `node:https` (#29365) Fixes https://github.com/denoland/deno/issues/29364
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -522,12 +522,12 @@ class ClientRequest extends OutgoingMessage {\n throw (this.socket.errored || err);\n }\n if (this._encrypted) {\n- const hasCaCerts = this.agent?.options?.ca !== undefined;\n+ const hasCaCert...
2025-05-19T05:55:15
mrdoob/three.js
b019c39d77d4f319ef2ce28fd218de9dc1a7bf85
0873a8ae1d408bf2f4a27f58d435dbfe2f880545
WebGLUniformsGroups: UBO Boolean support and fix cache on number (#27285) * add boolean support and fix number cache * fix const assignment * good fix assignment to local var * Update WebGLUniformsGroups.js Improve comment. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.or...
[ { "path": "src/renderers/webgl/WebGLUniformsGroups.js", "patch": "@@ -114,7 +114,7 @@ function WebGLUniformsGroups( gl, info, capabilities, state ) {\n \n \t\t\t\t\tconst info = getUniformSize( value );\n \n-\t\t\t\t\tif ( typeof value === 'number' ) {\n+\t\t\t\t\tif ( typeof value === 'number' || typeof va...
2023-12-01T09:48:02
vuejs/vue
da7f2731e2824e1c869760cc0263cae68224e367
b756a6418df7fcb38060660f6f7508aeb2aea24e
fix x-template typo in select2 example (#2748)
[ { "path": "examples/select2/index.html", "patch": "@@ -18,7 +18,7 @@\n <div id=\"el\">\n </div>\n \n- <script type=\"text/x-tempalte\" id=\"demo-template\">\n+ <script type=\"text/x-template\" id=\"demo-template\">\n <div>\n <p>Selected: {{ selected }}</p>\n <select2 :opt...
2016-04-27T19:22:17
golang/go
aa5de9ebb55bbd5e0a38304f8f8e603b2ec03238
63ec70d4e1350f44caf950cf3f675ae2cb7ea453
synctest: fix comments for time.Now() in synctests Also add a test case to make sure that time.Now() results in the documented date. Change-Id: Ic4cc577eba485b7c6e1a64122da06d7075bbe12e Reviewed-on: https://go-review.googlesource.com/c/go/+/685677 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.g...
[ { "path": "src/testing/synctest/example_test.go", "patch": "@@ -21,7 +21,7 @@ import (\n \n func TestTime(t *testing.T) {\n \tsynctest.Test(t, func(t *testing.T) {\n-\t\tstart := time.Now() // always midnight UTC 2001-01-01\n+\t\tstart := time.Now() // always midnight UTC 2000-01-01\n \t\tgo func() {\n \t\t...
2025-07-04T18:40:42
denoland/deno
a7226ceb7c128f7c6285f647196aa79d823327b7
94683caba1d7247ba914107b521efa54b61580b1
feat(lsp): display JsErrors at their original line (#29221)
[ { "path": "cli/lsp/testing/execution.rs", "patch": "@@ -42,6 +42,7 @@ use crate::lsp::urls::url_to_uri;\n use crate::tools::test;\n use crate::tools::test::create_test_event_channel;\n use crate::tools::test::FailFastTracker;\n+use crate::tools::test::TestFailure;\n use crate::tools::test::TestFailureFormat...
2025-05-18T16:29:00
mrdoob/three.js
d33bab21fa701e9edef860cb353c30e9f94ece2f
5d75579fae7814b2a195ea5681a7dafc6953a73a
Editor: Fix multi-material support. (#27265)
[ { "path": "editor/js/Script.js", "patch": "@@ -223,7 +223,7 @@ function Script( editor ) {\n \n \t\t\t\t\tcurrentObject.material[ currentScript ] = string;\n \t\t\t\t\tcurrentObject.material.needsUpdate = true;\n-\t\t\t\t\tsignals.materialChanged.dispatch( currentObject.material );\n+\t\t\t\t\tsignals.mater...
2023-11-30T21:05:48
vuejs/vue
cab88c50bbafc6bb79ca0ae8e1903138788c2372
680bd042c9398e27937fadf0ba1b3806ad007a30
fix child component v-on spec
[ { "path": "src/core/vdom/helpers.js", "patch": "@@ -51,12 +51,16 @@ export function updateListeners (on, oldOn, add) {\n \n function arrInvoker (arr) {\n return function (ev) {\n+ const single = arguments.length === 1\n for (let i = 0; i < arr.length; i++) {\n- arr[i](ev)\n+ single ? arr[...
2016-04-27T17:19:05
mrdoob/three.js
5d75579fae7814b2a195ea5681a7dafc6953a73a
485487eb29ba76ef9a995f99b4705f8f4f4f9f3d
WebGPU Compute Rain Example: Fix RTT coord Y (#27286)
[ { "path": "examples/webgpu_compute_particles_rain.html", "patch": "@@ -46,6 +46,7 @@\n \t\t\tlet clock;\n \n \t\t\tlet collisionBox, collisionCamera, collisionPosRT, collisionPosMaterial;\n+\t\t\tlet collisionBoxPos;\n \n \t\t\tinit();\n \n@@ -69,14 +70,14 @@\n \n \t\t\t\tconst dirLight = new THREE.Directio...
2023-11-30T17:49:51
denoland/deno
69eafe48143098d15669fef39a856b02b68c8259
28cb8f7011f533e3c79da6832cea098030e35953
fix(ext/node): prevent stdin double read (#29353) Accidental debug code from https://github.com/denoland/deno/commit/28cb8f7011f533e3c79da6832cea098030e35953
[ { "path": "ext/node/polyfills/internal_binding/stream_wrap.ts", "patch": "@@ -144,11 +144,6 @@ export class LibuvStreamWrap extends HandleWrap {\n this.#read();\n }\n \n- if (this.cancelHandle) {\n- this.#reading = true;\n- this.#read();\n- }\n-\n return 0;\n }\n ", "addi...
2025-05-17T17:17:39
vuejs/vue
680bd042c9398e27937fadf0ba1b3806ad007a30
25efaf21630e5c28a4b6761dfa8f17638392a2a3
fix v-on test capture
[ { "path": "test/unit/features/directives/on.spec.js", "patch": "@@ -9,15 +9,22 @@ function trigger (target, event, process) {\n }\n \n describe('Directive v-on', () => {\n- let spy, spy2\n+ let vm, spy, spy2\n \n beforeEach(() => {\n spy = jasmine.createSpy()\n spy2 = jasmine.createSpy()\n+ c...
2016-04-27T17:13:01
mrdoob/three.js
485487eb29ba76ef9a995f99b4705f8f4f4f9f3d
09fe0527a9aa5aaca7aaf17531e6c0d0efaa8c59
WebGLUniformsGroups: Correct 3x3 to 3x4 Matrix Conversion in Uniform Buffer Object (#27284) * fix matrix 3x4 conversion * fix matrix 3x4 conversion * assign 0 to 7 and 11 * Update WebGLUniformsGroups.js --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/renderers/webgl/WebGLUniformsGroups.js", "patch": "@@ -126,15 +126,15 @@ function WebGLUniformsGroups( gl, info, capabilities, state ) {\n \t\t\t\t\t\tuniform.__data[ 0 ] = value.elements[ 0 ];\n \t\t\t\t\t\tuniform.__data[ 1 ] = value.elements[ 1 ];\n \t\t\t\t\t\tuniform.__data[ 2 ] = value....
2023-11-30T17:39:55
denoland/deno
28cb8f7011f533e3c79da6832cea098030e35953
1a955223780ab68c0d3fdfae6690353135b5e767
fix: `process.stdin.pause()` (#29330)
[ { "path": "ext/io/12_io.js", "patch": "@@ -5,14 +5,19 @@\n // Thank you! We love Go! <3\n \n import { core, primordials } from \"ext:core/mod.js\";\n-import { op_set_raw } from \"ext:core/ops\";\n+import {\n+ op_read_create_cancel_handle,\n+ op_read_with_cancel_handle,\n+ op_set_raw,\n+} from \"ext:core/...
2025-05-17T13:16:26
vuejs/vue
25efaf21630e5c28a4b6761dfa8f17638392a2a3
681dc603e46ee09b22e2f9432ab60b598d4f07fd
[next] v-on test (#2741) * ensure babel-env during build * v-on test * fixed build script
[ { "path": "test/unit/features/directives/on.spec.js", "patch": "@@ -0,0 +1,123 @@\n+import Vue from 'vue'\n+\n+function trigger (target, event, process) {\n+ var e = document.createEvent('HTMLEvents')\n+ e.initEvent(event, true, true)\n+ if (process) process(e)\n+ target.dispatchEvent(e)\n+ return e\n+...
2016-04-27T17:07:25
mrdoob/three.js
8a3124f0779282e7fa38d85a96fd970830a72cfa
1b4dff01c0d488d3fccea11ab508ba7ca96101eb
fix safari offscreen canvas without webgl context support (#27283)
[ { "path": "examples/webgl_worker_offscreencanvas.html", "patch": "@@ -53,7 +53,7 @@\n \t<body>\n \t\t<div id=\"info\">\n \t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener noreferrer\">three.js</a> - offscreen canvas (<a href=\"https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCa...
2023-11-30T10:53:31
golang/go
ab7f839280df8734c388046f957f7f37ae5b0998
47b07a87a65584f7b1c1efa26cf94e551e72dc2c
[dev.simd] cmd/compile: fix maskreg/simdreg chaos This CL fixes some errors left by CL 685895. Change-Id: I35ee36287fc964a82fd3c88764b688bd4491be65 Reviewed-on: https://go-review.googlesource.com/c/go/+/687095 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherr...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1043,8 +1043,8 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tx := v.Args[0].Reg()\n \t\ty := v.Reg()\n \t\tif v.Type.IsSIMD() {\n-\t\t\tx = simdReg(v.Args[0])\n-\t\t\ty = simdReg(v)\n+\t\t\tx = simdOrMaskReg(v.Args[0])\n+\t\t\ty =...
2025-07-09T22:33:25
mrdoob/three.js
a45cf54f5cfb98f095553673c490a8b1230a5238
84424e4f2e0e49fb194e1683b846201f8244cfc7
Editor: Fixed UINumber mobile UX.
[ { "path": "editor/js/libs/ui.js", "patch": "@@ -616,7 +616,7 @@ class UINumber extends UIElement {\n \t\t\t\tprevPointer.x = event.touches[ 0 ].pageX;\n \t\t\t\tprevPointer.y = event.touches[ 0 ].pageY;\n \n-\t\t\t\tdocument.addEventListener( 'touchmove', onTouchMove );\n+\t\t\t\tdocument.addEventListener( ...
2023-11-30T04:23:30
vuejs/vue
7f92bd9cea428d6237ae5d47af8ed0d55568d0d4
1b8ef949a10189829564acc69a919b4cd61a763b
attempting to fix ci
[ { "path": "build/build.js", "patch": "@@ -1,5 +1,4 @@\n var fs = require('fs')\n-var path = require('path')\n var zlib = require('zlib')\n var rollup = require('rollup')\n var uglify = require('uglify-js')", "additions": 0, "deletions": 1, "language": "JavaScript" }, { "path": "package.j...
2016-04-26T17:13:13
golang/go
63ec70d4e1350f44caf950cf3f675ae2cb7ea453
8131635e5a9c7ae2fd2c083bed9e841d27226500
crypto/cipher: Fix comment punctuation Change-Id: I7dc086a87d28ab847288eed13f719421420cd004 Reviewed-on: https://go-review.googlesource.com/c/go/+/686997 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
[ { "path": "src/crypto/cipher/cfb.go", "patch": "@@ -86,7 +86,7 @@ func NewCFBDecrypter(block Block, iv []byte) Stream {\n func newCFB(block Block, iv []byte, decrypt bool) Stream {\n \tblockSize := block.BlockSize()\n \tif len(iv) != blockSize {\n-\t\t// stack trace will indicate whether it was de or encryp...
2025-07-09T19:52:09
mrdoob/three.js
84424e4f2e0e49fb194e1683b846201f8244cfc7
644ce1bf2ebc51094965a43149ca499d657c0ea1
WebGPURenderer: Fix strip index format (#27279)
[ { "path": "examples/jsm/renderers/webgpu/utils/WebGPUPipelineUtils.js", "patch": "@@ -456,10 +456,9 @@ class WebGPUPipelineUtils {\n \n \t\tdescriptor.topology = utils.getPrimitiveTopology( object, material );\n \n-\t\tif ( object.isLine === true && object.isLineSegments !== true ) {\n+\t\tif ( geometry.ind...
2023-11-29T19:50:18
vuejs/vue
6b793961c974dee882e39c03681f7a7c18ab1d55
aea4f39964a1f35082856f9f0e5c21d48cfd281b
fix ssr babel-env on ci
[ { "path": "package.json", "patch": "@@ -19,7 +19,7 @@\n \"test:unit\": \"karma start build/karma.unit.config.js\",\n \"test:cover\": \"karma start build/karma.cover.config.js\",\n \"test:e2e\": \"npm run build -- vue.js && node test/e2e/runner.js\",\n- \"test:ssr\": \"npm run build -- vue.com...
2016-04-26T05:05:34
golang/go
47b07a87a65584f7b1c1efa26cf94e551e72dc2c
08cd62e9f50b10a19f96b94c1e75f868b958d113
[dev.simd] cmd/compile, simd: fix Int64x2 Greater output type to mask This CL is generated by CL 686821. Change-Id: I4bc4fa717ff858299b13955a40e750709a796fba Reviewed-on: https://go-review.googlesource.com/c/go/+/686998 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "src/simd/ops_amd64.go", "patch": "@@ -2248,7 +2248,7 @@ func (x Int32x8) Greater(y Int32x8) Mask32x8\n // Greater compares for greater than.\n //\n // Asm: VPCMPGTQ, CPU Feature: AVX\n-func (x Int64x2) Greater(y Int64x2) Int64x2\n+func (x Int64x2) Greater(y Int64x2) Mask64x2\n \n // Greater compa...
2025-07-09T21:16:03
mrdoob/three.js
042c3108d4ccf8467b712e6604004ed81d56ceaf
2f7a342a32c663871ece8a7b74d094e211ee30f7
bump @monogrid/gainmap-js to 3.0.0 that fixes problems with cubemap generation using an equirectangular rendertarget with mipmaps (#27277)
[ { "path": "examples/webgl_loader_texture_hdrjpg.html", "patch": "@@ -39,7 +39,7 @@\n \t\t\t\t\"imports\": {\n \t\t\t\t\t\"three\": \"../build/three.module.js\",\n \t\t\t\t\t\"three/addons/\": \"./jsm/\",\n-\t\t\t\t\t\"@monogrid/gainmap-js\": \"https://unpkg.com/@monogrid/gainmap-js@2.0.6/dist/decode.js\"\n+...
2023-11-29T17:43:58
vuejs/vue
aea4f39964a1f35082856f9f0e5c21d48cfd281b
4191f251afd5f9706238e43f0c818ecce1358a49
fix duplicate import
[ { "path": "src/core/global-api/index.js", "patch": "@@ -4,15 +4,14 @@ import { initUse } from './use'\n import { initMixin } from './mixin'\n import { initExtend } from './extend'\n import { initAssetRegisters } from './assets'\n-import { nextTick } from '../util/index'\n import { set, del } from '../observ...
2016-04-26T04:47:14
denoland/deno
1a955223780ab68c0d3fdfae6690353135b5e767
a08d4a09f083b337b7551d8dccf588f9767f5120
fix(task): wildcard match starts at the beginning (#29343) Closes https://github.com/denoland/deno/issues/29341
[ { "path": "cli/tools/task.rs", "patch": "@@ -929,12 +929,7 @@ fn match_tasks(\n \n // Match tasks in deno.json\n for name in tasks_config.task_names() {\n- let matches_filter = match &task_name_filter {\n- TaskNameFilter::Exact(n) => *n == name,\n- TaskNameFilter::Regex(re) => re.is_match(n...
2025-05-17T11:12:31
golang/go
8131635e5a9c7ae2fd2c083bed9e841d27226500
67c1704444ba9661699a80d0ea0a2df20b4107e2
runtime: run TestSignalDuringExec in its own process group TestSignalDuringExec sends a SIGWINCH to the whole process group. However, it may execute concurrently with other copies of the runtime tests, especially through `go tool dist`, and gdb version <12.1 has a bug in non-interactive mode where recieving a SIGWINCH...
[ { "path": "src/runtime/runtime-gdb_test.go", "patch": "@@ -78,6 +78,9 @@ func checkGdbVersion(t *testing.T) {\n \tif major < 10 {\n \t\tt.Skipf(\"skipping: gdb version %d.%d too old\", major, minor)\n \t}\n+\tif major < 12 || (major == 12 && minor < 1) {\n+\t\tt.Logf(\"gdb version <12.1 is known to crash du...
2025-07-09T15:50:06
mrdoob/three.js
e49c913cbfe09b38f9072e7fa04e505d70640ff5
e1e2409dfd048859beace32e6f71dbd677fa34dc
Editor: Removed IndexedDB prefixes.
[ { "path": "editor/js/Storage.js", "patch": "@@ -1,6 +1,6 @@\n function Storage() {\n \n-\tconst indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB;\n+\tconst indexedDB = window.indexedDB;\n \n \tif ( indexedDB === undefined ) {\n ", "additions": 1, "d...
2023-11-28T12:50:19
vuejs/vue
3dc6088d5377740f3c4680f1a231f8432b49de21
bf14a05f3e7a19bc19cabeeb45a925548b7987a9
use more reliable display check for v-show tests (fix it in PhantomJS)
[ { "path": "test/unit/features/directives/show.spec.js", "patch": "@@ -7,7 +7,7 @@ describe('Directive v-show', () => {\n template: '<div><span v-show=\"foo\">hello</span></div>',\n data: { foo: true }\n })\n- expect(vm.$el.innerHTML).toMatch(/<span( style=\"\")?>hello<\\/span>/)\n+ exp...
2016-04-26T03:36:29
denoland/deno
a08d4a09f083b337b7551d8dccf588f9767f5120
46ec01374edb9aa335adf5602323b35bf56588c8
fix(ext/node): emit 'worker' event when a new worker thread is created (#29345) As per title. Enables one Node compat test
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -89,7 +89,6 @@ const { NumberMAX_SAFE_INTEGER } = primordials;\n \n const notImplementedEvents = [\n \"multipleResolves\",\n- \"worker\",\n ];\n \n export const argv: string[] = [\"\", \"\"];", "additions": 0, "deletions": 1, "language":...
2025-05-17T07:05:05
mrdoob/three.js
116382c177f28a673d365f4f2b17d79e1a5d2a99
e0d329dd164de9f24256076dbe6a32a0abb81e51
Editor: Fixed helpers checkbox also hiding the grid.
[ { "path": "editor/js/Viewport.js", "patch": "@@ -37,12 +37,10 @@ function Viewport( editor ) {\n \tconst camera = editor.camera;\n \tconst scene = editor.scene;\n \tconst sceneHelpers = editor.sceneHelpers;\n-\tlet showSceneHelpers = true;\n \n \t// helpers\n \n \tconst grid = new THREE.Group();\n-\tsceneHe...
2023-11-28T12:48:53
golang/go
54c9d776302d53ab1907645cb67fa4a948e1500c
fca43a8436f2dbec981fb002c6ba31fe9ff89dd6
cmd/go: disable support for multiple vcs in one module Removes the somewhat redundant vcs.FromDir, "allowNesting" argument, which was always enabled, and disallow multiple VCS metadata folders being present in a single directory. This makes VCS injection attacks much more difficult. Also adds a GODEBUG, allowmultiple...
[ { "path": "doc/godebug.md", "patch": "@@ -189,6 +189,11 @@ crypto/x509.CreateCertificate. The setting `x509sha256skid=0` reverts to SHA-1.\n Go 1.25 corrected the semantics of contention reports for runtime-internal locks,\n and so removed the [`runtimecontentionstacks` setting](/pkg/runtime#hdr-Environment...
2025-06-09T18:23:46
vuejs/vue
bf14a05f3e7a19bc19cabeeb45a925548b7987a9
f5509333342d2d0b9f64d2a0e4962177b8756db1
fix spelling
[ { "path": "test/unit/features/directives/if.spec.js", "patch": "@@ -10,7 +10,7 @@ describe('Directive v-if', () => {\n expect(vm.$el.innerHTML).toBe('<span>hello</span>')\n })\n \n- it('should check if value is falthy', () => {\n+ it('should check if value is falsy', () => {\n const vm = new Vue...
2016-04-26T03:32:49
denoland/deno
2b0d44d8da88ec0ca7fcb1ad5039e3fd731d3b14
97b84669a8a30faea7aa0c78cb836fe92f2e3e26
fix(lsp): lookup bare workspace specifiers for auto-import (#29304)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -467,6 +467,12 @@ impl<'a> TsResponseImportMapper<'a> {\n return Some(dep_name);\n }\n \n+ if let Some(bare_package_specifier) =\n+ scoped_resolver.jsr_lookup_bare_specifier_for_workspace_file(specifier)\n+ {\n+ return Some(bare_package...
2025-05-16T20:38:14
mrdoob/three.js
684de25b1adc0b01f4be42b59a7b93b5f2611720
549a2e347d218f41d69f86c50d6bf34982a6e248
BatchedMesh: Add pure annotations, fix camera position for sorting (#27236) * Add pure annotations, fix camera position for sorting * Update annotations
[ { "path": "src/objects/BatchedMesh.js", "patch": "@@ -70,15 +70,16 @@ class MultiDrawRenderList {\n }\n \n const ID_ATTR_NAME = 'batchId';\n-const _matrix = new Matrix4();\n-const _identityMatrix = new Matrix4();\n-const _projScreenMatrix = new Matrix4();\n-const _frustum = new Frustum();\n-const _box = new...
2023-11-25T14:12:40
golang/go
86b5ba731044dcbb0400f03293989796ed5807fe
ef46e1b164e4a530c278434a9aaa2b23ce9a9d12
internal/trace: only test for sync preemption if async preemption is off Currently, the test change made for the fix to #68090 is flaky. This is because the sync-point-only goroutine that we expect to be sync preempted might only ever get async preempted in some circumstances. This change adds a variant to all trace ...
[ { "path": "src/internal/trace/trace_test.go", "patch": "@@ -23,7 +23,7 @@ import (\n )\n \n func TestTraceAnnotations(t *testing.T) {\n-\ttestTraceProg(t, \"annotations.go\", func(t *testing.T, tb, _ []byte, _ bool) {\n+\ttestTraceProg(t, \"annotations.go\", func(t *testing.T, tb, _ []byte, _ string) {\n \t...
2025-07-07T17:19:17
vuejs/vue
f5509333342d2d0b9f64d2a0e4962177b8756db1
657ba390c7ac117f06c724b53c2a565837817212
fix unit tests in Firefox/Safari
[ { "path": ".eslintrc.js", "patch": "@@ -8,6 +8,7 @@ module.exports = {\n 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,\n 'standard/object-curly-even-spacing': [2, 'always', {\n objectsInObjects: false\n- }]\n+ }],\n+ 'standard/array-bracket-even-spacing': [2, 'never']\...
2016-04-26T03:30:48
mrdoob/three.js
0f94eeae22633ce0b7bad2ef12cabec49eedbba0
1ab4a8a44ab9d2ee3a367b5a53213ca4f63a00d1
WebGPURenderer: Fix .clear() using RenderTarget and revisions (#27233) * Fix .clear() using RenderTarget * webgpu_rtt: improve a little * cleanup * cleanup * revisions * revision * wip flipY * update example * cleanup
[ { "path": "examples/jsm/nodes/accessors/TextureNode.js", "patch": "@@ -157,7 +157,8 @@ class TextureNode extends UniformNode {\n \n \t\tconst texture = this.value;\n \n-\t\tif ( builder.isFlipY() && ( texture.isFramebufferTexture === true || texture.isDepthTexture === true ) ) {\n+\t\tif ( ( builder.isFlipY...
2023-11-24T02:48:45
denoland/deno
97b84669a8a30faea7aa0c78cb836fe92f2e3e26
744eaa956d31e8906aab7cfbeab903953b36a6df
fix(node): use `JsErrorClass` for `code` property on node resolver errors (#29294) Superseeds #26631 --------- Signed-off-by: Leo Kettmeir <crowlkats@toaxl.com> Co-authored-by: David Sherret <dsherret@gmail.com>
[ { "path": "Cargo.lock", "patch": "@@ -1879,9 +1879,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_error\"\n-version = \"0.5.6\"\n+version = \"0.5.7\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"19fae9fe305307b5ef3ee4e8244c79cffcca421ab0ce8634dea0c6b1342f220f\"...
2025-05-16T18:54:47
golang/go
ef46e1b164e4a530c278434a9aaa2b23ce9a9d12
75b43f9a97ada1f0fce7a5775d4ab373bd0dad9c
cmd/internal/doc: fix GOROOT skew and path joining bugs Use the goCmd() function to get the go command to invoke, so that when GOROOT is set, the go command that's invoked uses the same GOROOT. Otherwise there will be skew between the go command and the tools and runtime. Also use the environment when determining GOPR...
[ { "path": "src/cmd/internal/doc/main.go", "patch": "@@ -15,6 +15,7 @@ import (\n \t\"io\"\n \t\"log\"\n \t\"net\"\n+\t\"net/url\"\n \t\"os\"\n \t\"os/exec\"\n \t\"os/signal\"\n@@ -214,7 +215,10 @@ func doPkgsite(urlPath string) error {\n \t\treturn fmt.Errorf(\"failed to find port for documentation server: ...
2025-07-01T21:16:53
vuejs/vue
657ba390c7ac117f06c724b53c2a565837817212
a347820518388ae8c83cf8c665823daebfbd0da8
directives v-for v-html v-text v-show (#7) * v-text & v-html tests * new es2015 syntax * passed v-html test * fixed if/for/else render update bug * fixed if/for/else render update bug * added v-else with v-if test * added v-if test with v-else and v-for * fixed code format * fixed Vue.delete bu...
[ { "path": "src/core/observer/index.js", "patch": "@@ -286,7 +286,12 @@ export function del (obj, key) {\n }\n delete obj[key]\n var ob = obj.__ob__\n+\n if (!ob) {\n+ if (obj._isVue) {\n+ delete obj._data[key]\n+ obj.$forceUpdate()\n+ }\n return\n }\n ob.dep.notify()", "a...
2016-04-26T03:25:59
mrdoob/three.js
b87e54fddb4ce636962703dd74aa8d143ff3d662
13105483abbad260f1101e55c4733078c199e284
AudioLoader: Fix uncaught DOMException in promise. (#27237)
[ { "path": "src/loaders/AudioLoader.js", "patch": "@@ -32,7 +32,7 @@ class AudioLoader extends Loader {\n \n \t\t\t\t\tonLoad( audioBuffer );\n \n-\t\t\t\t}, handleError );\n+\t\t\t\t} ).catch( handleError );\n \n \t\t\t} catch ( e ) {\n ", "additions": 1, "deletions": 1, "language": "JavaScript"...
2023-11-23T10:31:22
denoland/deno
08b236b5b7ca3f2d71094c38353f1bfecf50cfb1
637bcffea72d2aaf21bad94cb96295b815675760
Revert "fix(fmt): upgrade markup_fmt and malva" (#29325) Reverts denoland/deno#29168 Ref: https://github.com/g-plane/malva/issues/34
[ { "path": "Cargo.lock", "patch": "@@ -5324,9 +5324,9 @@ dependencies = [\n \n [[package]]\n name = \"malva\"\n-version = \"0.12.0\"\n+version = \"0.11.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5a10a4f69b1fd3c73e65e9b0446904f60019b7a746e10440d89fbb6e1659144b\"\n+...
2025-05-16T10:50:15
golang/go
33fb4819f59d16c483be6cf2016f79eef3543691
a995269a9383d90a3bdd029989bafc8fc3b19dc3
cmd/compile/internal/ssa: skip EndSequence entries in TestStmtLines The TestStmtLines test has been accessing a nil pointer when it tries to look up LineEntry.File.Name on a line entry with EndSequence set to true. The doc for EndSequence specifies that if EndSequence is set, only it and the Address field are meaningf...
[ { "path": "src/cmd/compile/internal/ssa/stmtlines_test.go", "patch": "@@ -120,6 +120,11 @@ func TestStmtLines(t *testing.T) {\n \t\t\t\tbreak\n \t\t\t}\n \t\t\tmust(err)\n+\t\t\tif le.EndSequence {\n+\t\t\t\t// When EndSequence is true only\n+\t\t\t\t// le.Address is meaningful, skip.\n+\t\t\t\tcontinue\n+\...
2025-07-04T10:45:42
vuejs/vue
a347820518388ae8c83cf8c665823daebfbd0da8
c8e91ab24ee7eb7f4d75af893f9bb8b873a14aa3
fix hydration bugs
[ { "path": "src/core/instance/render.js", "patch": "@@ -1,6 +1,6 @@\n import createElement from '../vdom/create-element'\n import { flatten } from '../vdom/helpers'\n-import { bind, isArray, isObject } from '../util/index'\n+import { bind, isArray, isObject, renderString } from 'shared/util'\n \n export cons...
2016-04-26T03:09:46
mrdoob/three.js
8c524e947cf9094c4b4620c99b66dd00d5d3c29c
525242a7babc6c0877f79bbc3460f0afc9d79ce9
BatchedMesh: update example, fix depth conversion & auxiliary buffer (#27228) * BatchedMesh: bit-cast depth f32 to u32 & fix auxiliary array Signed-off-by: Guilherme Avila <3927951+sciecode@users.noreply.github.com> * webgl_mesh_batch: make custom sort self-contained Signed-off-by: Guilherme Avila <3927951+sc...
[ { "path": "examples/jsm/utils/SortUtils.js", "patch": "@@ -5,20 +5,16 @@ const POWER = 3;\n const BIT_MAX = 32;\n const BIN_BITS = 1 << POWER;\n const BIN_SIZE = 1 << BIN_BITS;\n+const BIN_MAX = BIN_SIZE - 1;\n const ITERATIONS = BIT_MAX / BIN_BITS;\n \n const bins = new Array( ITERATIONS );\n-const caches ...
2023-11-23T01:48:58
denoland/deno
637bcffea72d2aaf21bad94cb96295b815675760
7b74f385396bded16f99db64b97aa48e6f603f16
fix(check): ignore errors on ambient modules (#29135) This commit makes `deno check` ignore `Cannot find module` diagnostic if the missing module specifier matches one of ambient module pattern. (For example if there's `declare module "*.svg" { ... }` declaration in one of d.ts files, importing of `<any>.svg` doesn't ...
[ { "path": "cli/graph_util.rs", "patch": "@@ -47,6 +47,7 @@ use crate::args::deno_json::TsConfigResolver;\n use crate::args::jsr_url;\n use crate::args::CliLockfile;\n use crate::args::CliOptions;\n+use crate::args::DenoSubcommand;\n pub use crate::args::NpmCachingStrategy;\n use crate::cache;\n use crate::c...
2025-05-16T06:06:34
golang/go
a995269a9383d90a3bdd029989bafc8fc3b19dc3
6c3b5a2798c83d583cb37dba9f39c47300d19f1f
sort: clarify Less doc clarifies the requirements for Less Fixes https://github.com/golang/go/issues/73420 Change-Id: I7d49b10fad78c618d946b3bb161ce19680ede47a GitHub-Last-Rev: 7a49ad81923048bfc99b265dd89f012eefcf5699 GitHub-Pull-Request: golang/go#74333 Reviewed-on: https://go-review.googlesource.com/c/go/+/683275 ...
[ { "path": "src/sort/sort.go", "patch": "@@ -26,13 +26,15 @@ type Interface interface {\n \t// Sort may place equal elements in any order in the final result,\n \t// while Stable preserves the original input order of equal elements.\n \t//\n-\t// Less must describe a transitive ordering:\n+\t// Less must des...
2025-07-06T18:41:28
mrdoob/three.js
b2741ea0fad19070b72e9e1fac8ecc94dc5084a1
fe587fa54151955ccab906521ee4aeffe775a030
GLTFLoader+GLTFExporter: Initial support for 'EXT_materials_bump' (#27036) * initial support for EXT_materials_bump * fix typo: EXR_ -> EXT_
[ { "path": "examples/jsm/exporters/GLTFExporter.js", "patch": "@@ -135,6 +135,12 @@ class GLTFExporter {\n \n \t\t} );\n \n+\t\tthis.register( function ( writer ) {\n+\n+\t\t\treturn new GLTFMaterialsBumpExtension( writer );\n+\n+\t\t} );\n+\n \t\tthis.register( function ( writer ) {\n \n \t\t\treturn new GL...
2023-11-23T00:38:28
vuejs/vue
575d55f07816a6cadb4c2f3716353c3fb30fb26e
018b0e54407b802e2954c0f1458d587ad23e5eb1
fix ssr hoc
[ { "path": "src/server/create-renderer.js", "patch": "@@ -5,7 +5,7 @@ export function createRenderer ({\n } = {}) {\n function renderComponent (component) {\n component.$mount()\n- return renderElement(component._vnode)\n+ return renderNode(component._vnode)\n }\n \n function renderNode (node...
2016-04-25T20:45:42
denoland/deno
dc29220f4ab76fd4fafeb40f3d7aa572450a997a
3f7b7d612dbe01d71b0b161f43e130534f6b5572
docs(dts): fix typos in API docs (#29301)
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -234,7 +234,7 @@ declare namespace Deno {\n * @category Errors */\n export class AlreadyExists extends Error {}\n /**\n- * Raised when an operation to returns data that is invalid for the\n+ * Raised when an operation returns data t...
2025-05-15T07:08:00
golang/go
72c39ef83470334b1e592312d30ebef9a1e8ddda
1ee72a15a3e893c82cc7108c49f141e824f941c2
[dev.simd] cmd/compile: fix the "always panic" code to actually panic without this change, the intrinsics of non-constant immediates just substitute a zero, which is wrong. Change-Id: I2c39ebedcfb0d0d6c072f4434f393027c6f3f033 Reviewed-on: https://go-review.googlesource.com/c/go/+/685575 Reviewed-by: Junyang Shao <sha...
[ { "path": "src/cmd/compile/internal/ssagen/intrinsics.go", "patch": "@@ -1636,7 +1636,7 @@ func opLen4(op ssa.Op, t *types.Type) func(s *state, n *ir.CallExpr, args []*ssa\n \n func plainPanicSimdImm(s *state) {\n \tcmp := s.newValue0(ssa.OpConstBool, types.Types[types.TBOOL])\n-\tcmp.AuxInt = 1\n+\tcmp.Aux...
2025-07-02T18:28:10
mrdoob/three.js
fe587fa54151955ccab906521ee4aeffe775a030
4d0422984cf8706a155d507bed29605098b047cf
BatchedMesh: Fix MeshBasicMaterial not working (#27229) * Add new batching_vertex shader chunk * Fix material shaders
[ { "path": "src/renderers/shaders/ShaderChunk.js", "patch": "@@ -7,6 +7,7 @@ import alphatest_pars_fragment from './ShaderChunk/alphatest_pars_fragment.glsl.\n import aomap_fragment from './ShaderChunk/aomap_fragment.glsl.js';\n import aomap_pars_fragment from './ShaderChunk/aomap_pars_fragment.glsl.js';\n i...
2023-11-22T10:00:58
vuejs/vue
4540aaf37d33835a93759fdefffa0fd8a3f15068
75ce539b4970b890b4f28be788bcff8d048dc0c3
fix async failure
[ { "path": "test/unit/features/directives/if.spec.js", "patch": "@@ -30,7 +30,6 @@ describe('Directive v-if', () => {\n waitForUpdate(() => {\n expect(vm.$el.innerHTML).toBe('')\n vm.foo = {}\n- res()\n }).then(() => {\n expect(vm.$el.innerHTML).toBe('<span>hello</span>')\n ...
2016-04-25T17:43:22
denoland/deno
3f7b7d612dbe01d71b0b161f43e130534f6b5572
6fe8fcda33a5eff21425837711df619b6b1fe96c
fix(ext/node): use primordials in `ext/node/polyfills/internal/net.ts` (#29297) Towards #24236. Replaces `Symbol`, `RegExp` and its instance method, `.test()`, with primordial equivalents.
[ { "path": "ext/node/polyfills/internal/net.ts", "patch": "@@ -20,21 +20,21 @@\n // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-p...
2025-05-15T07:01:50
golang/go
6c3b5a2798c83d583cb37dba9f39c47300d19f1f
dd687c386016445b2f4abc2a958963dd2056d95f
runtime: correct vdsoSP on S390X It should get the caller's SP. The current code gets the address of the first parameter, which is one word above the caller's SP. There is a slot for saving the LR at 0(SP) in the caller's frame. Fixes #62086 (for s390x). Change-Id: Ie8cbfabc8161b98658c884a32e0af72df189ea56 Reviewed-...
[ { "path": "src/runtime/sys_linux_s390x.s", "patch": "@@ -226,7 +226,7 @@ TEXT runtime·walltime(SB),NOSPLIT,$32-12\n \tMOVD\tR4, 24(R15)\n \n \tMOVD\tR14, R8 \t\t// Backup return address\n-\tMOVD\t$sec+0(FP), R4 \t// return parameter caller\n+\tMOVD\t$ret-8(FP), R4 \t// caller's SP\n \n \tMOVD\tR8, m_vdsoPC(...
2025-07-03T03:26:44
vuejs/vue
9b681f7cf0f4c1455e5aba0ad70bf31c1e4d25e1
e649795596863918de2b99d9ab112065a2264ebf
fixed if/for/else render update bug (#8) * fixed if/for/else render update bug * added v-else with v-if test * added v-if test with v-else and v-for * removed unnecessary elseBlock detect in optimizer
[ { "path": "src/compiler/optimizer.js", "patch": "@@ -55,6 +55,7 @@ const isStaticKey = makeMap(\n function isStatic (node) {\n return !!(node.text || node.pre || (\n !node.expression && // not text with interpolation\n+ !node.if && !node.for && // not v-if or v-for or v-else\n (!node.tag || isP...
2016-04-25T17:02:17
denoland/deno
6fe8fcda33a5eff21425837711df619b6b1fe96c
fab9b068782cf0d07183fcf409976e3cd65fb881
fix(ext/node): use primordials in `ext/node/polyfills/internal/validators.mjs` (#29302) Towards #24236. Replaces JS instrinsics with equivalent primordials.
[ { "path": "ext/node/polyfills/internal/validators.mjs", "patch": "@@ -1,13 +1,22 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ig...
2025-05-15T07:01:14
golang/go
dd687c386016445b2f4abc2a958963dd2056d95f
b3251514531123d7fd007682389bce7428d159a0
hash: document that Clone may only return ErrUnsupported or a nil error Updates #69521 Change-Id: I6a6a6964ce384a80c4c89efe67c260dc6e9ed6c8 Reviewed-on: https://go-review.googlesource.com/c/go/+/685235 Auto-Submit: Filippo Valsorda <filippo@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts....
[ { "path": "src/hash/hash.go", "patch": "@@ -64,7 +64,8 @@ type Hash64 interface {\n // unless GOFIPS140=v1.0.0 is set.\n //\n // If a hash can only determine at runtime if it can be cloned (e.g. if it wraps\n-// another hash), it may return an error wrapping [errors.ErrUnsupported].\n+// another hash), Clon...
2025-07-01T09:51:37
vuejs/vue
ae7054f4e9e63f8f82bd95e8c2308e551c92bca8
d3b598a2197b9d60f360ce7de1e6c3faa3388b51
fix ssr for child components
[ { "path": "src/platforms/web/server/create-renderer.js", "patch": "@@ -21,11 +21,14 @@ export function createComponentRenderer (options = {}) {\n }\n \n function renderNode (node) {\n- return node.child\n- ? renderComponent(node)\n- : node.tag\n+ if (node.componentOptions) {\n+ node...
2016-04-25T03:53:53
denoland/deno
fab9b068782cf0d07183fcf409976e3cd65fb881
6daaf0e1a600e0233d6768b8499f3b6d7ca67d75
fix(fmt): fail command when embedded language has syntax error (#29259)
[ { "path": "Cargo.lock", "patch": "@@ -3263,9 +3263,9 @@ dependencies = [\n \n [[package]]\n name = \"dprint-plugin-typescript\"\n-version = \"0.95.2\"\n+version = \"0.95.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"308b7fac4a5579ca0d89338ac2eed093a9e06cbef60bc04112...
2025-05-15T01:51:48
golang/go
b3251514531123d7fd007682389bce7428d159a0
15d9fe43d648764d41a88c75889c84df5e580930
cmd/cgo/internal/testsanitizers: skip asan tests when FIPS140 mode is on Executing "GODEBUG=fips140=on go test -run TestASAN ./cmd/cgo/internal/testsanitizers" fails because FIPS 140 mode is incompatible with ASAN. Change-Id: I1a489f3398bbabf597fe7ffc0982c86c3b86e07e Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/cmd/cgo/internal/testsanitizers/asan_test.go", "patch": "@@ -8,6 +8,7 @@ package sanitizers_test\n \n import (\n \t\"bytes\"\n+\t\"crypto/fips140\"\n \t\"fmt\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n@@ -157,6 +158,10 @@ func mustHaveASAN(t *testing.T) *config {\n \t\tt.Skipf(\"sk...
2025-07-02T14:11:37
vuejs/vue
d3b598a2197b9d60f360ce7de1e6c3faa3388b51
73bc99e30b937ac7f097c02acb681a4da452697d
fix hyperscript direct string as children
[ { "path": "src/core/vdom/helpers.js", "patch": "@@ -2,6 +2,9 @@ import { isArray, isPrimitive } from '../util/index'\n import VNode from './vnode'\n \n export function flatten (children) {\n+ if (typeof children === 'string') {\n+ return [VNode(undefined, undefined, undefined, children)]\n+ }\n if (i...
2016-04-25T03:53:46
mrdoob/three.js
846fdf8f6ad4ca4b50c8b2f22457c33f6b5d8dcc
0451bc2478d03a3245aebf39949776e27f896b31
Update HTMLMesh.js Fix code style.
[ { "path": "examples/jsm/interactive/HTMLMesh.js", "patch": "@@ -506,7 +506,7 @@ function html2canvas( element ) {\n \n \t// console.time( 'drawElement' );\n \n-\tcontext.clearRect(0, 0, canvas.width, canvas.height);\n+\tcontext.clearRect( 0, 0, canvas.width, canvas.height );\n \n \tdrawElement( element );\n...
2023-11-21T15:07:47
denoland/deno
938803ae6e5ea2e70c4b2eccab86eee7d0d83d23
412426511a056c582ca16d82a86a4648847c7741
fix(repl): use object_id for repl internal (#29163) Closes https://github.com/denoland/deno/issues/26599 Closes https://github.com/denoland/deno/issues/29121 This PR use object_id to interact with repl internal, instead of global variable (`__DENO_REPL_INTERNALS_{seconds}__`), so we don't need to hide this in complet...
[ { "path": "cli/tools/jupyter/server.rs", "patch": "@@ -36,7 +36,6 @@ use uuid::Uuid;\n \n use super::JupyterReplProxy;\n use crate::cdp;\n-use crate::tools::repl;\n \n pub struct JupyterServer {\n execution_count: ExecutionCount,\n@@ -322,11 +321,7 @@ impl JupyterServer {\n )\n .aw...
2025-05-14T15:44:24
golang/go
6e95fd96cc4514bb6fb39db85bb2164d717cb4da
7755a05209177e6f2d494a08a9b98b9b31d6ee8f
crypto/ecdsa: fix crypto/x509 godoc links Change-Id: I6a6a6964c0e8269305804dc2bb57f13f94f08ed5 Reviewed-on: https://go-review.googlesource.com/c/go/+/685236 Reviewed-by: David Chase <drchase@google.com> Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Res...
[ { "path": "src/crypto/ecdsa/ecdsa.go", "patch": "@@ -48,9 +48,9 @@ type PublicKey struct {\n \t// invalidate internal optimizations; moreover, [big.Int] methods are not\n \t// suitable for operating on cryptographic values. To encode and decode\n \t// PublicKey values, use [PublicKey.Bytes] and [ParseUncomp...
2025-07-01T09:55:48
mrdoob/three.js
0451bc2478d03a3245aebf39949776e27f896b31
5d0e4e4682fbf9611e7654402631b18990f801ef
Addons: Export SortUtils. (#27226) * Addons: Export SortUtils. * Addons: fix export
[ { "path": "examples/jsm/Addons.js", "patch": "@@ -272,6 +272,7 @@ export * from './utils/PackedPhongMaterial.js';\n export * as SceneUtils from './utils/SceneUtils.js';\n export * from './utils/ShadowMapViewer.js';\n export * as SkeletonUtils from './utils/SkeletonUtils.js';\n+export * as SortUtils from './...
2023-11-21T10:34:34
denoland/deno
412426511a056c582ca16d82a86a4648847c7741
5e171ad3172c76771054ec60e760f0b4ae61fad5
feat(otel): add events for boot failure and uncaught error (#29287) This commit adds "boot_failure" and "uncaught_exception" events that are sent when a worker crashes during `deno run`.
[ { "path": "Cargo.toml", "patch": "@@ -269,7 +269,7 @@ zip = { version = \"2.4.1\", default-features = false, features = [\"flate2\"] }\n \n opentelemetry = \"0.27.0\"\n opentelemetry-http = \"0.27.0\"\n-opentelemetry-otlp = { version = \"0.27.0\", features = [\"logs\", \"http-proto\", \"http-json\"] }\n+ope...
2025-05-14T10:20:12
vuejs/vue
e3717b88e42a504afbff5c24f1a712b506496d0c
9ce36930212359a8d357d8285a79ff1103cfa9a3
fixed devDeps about rollup-plugin-alias
[ { "path": "package.json", "patch": "@@ -60,7 +60,7 @@\n \"nightwatch\": \"^0.8.18\",\n \"phantomjs-prebuilt\": \"^2.1.3\",\n \"rollup\": \"^0.25.8\",\n- \"rollup-plugin-alias\": \"^1.0.2\",\n+ \"rollup-plugin-alias\": \"^1.2.0\",\n \"rollup-plugin-babel\": \"^2.4.0\",\n \"rollup-pl...
2016-04-24T09:30:01
golang/go
d168ad18e15c4e052260bb8c3446c90ab46fdde0
27ad1f50135c6de20c2afd593cdd17f47c2388e0
slices: update TestIssue68488 to avoid false positives Fixes #74387 Even tho we are abusing unsafe.SliceData a bit here it's probably fine; in case this test fail, it means some memory alias is happening which is not good for GC purposes. We don't care about false keep alives for stack locations tho. Change-Id: I94...
[ { "path": "src/slices/slices_test.go", "patch": "@@ -1454,13 +1454,16 @@ func TestRepeatPanics(t *testing.T) {\n \t}\n }\n \n+var leak *int\n+\n func TestIssue68488(t *testing.T) {\n \ts := make([]int, 3)\n \tclone := Clone(s[1:1])\n \tswitch unsafe.SliceData(clone) {\n \tcase &s[0], &s[1], &s[2]:\n \t\tt.E...
2025-06-28T00:20:22
mrdoob/three.js
5d0e4e4682fbf9611e7654402631b18990f801ef
d823a87988b2d0712e508d1cd4fee6a6e83314c1
BatchedMesh: Add setCustomSort function, hybrid radix sort implementation to examples (#27213) * Add radix sort to batched mesh * Fix options generation * Add custom sort function, separate radix sort function to examples * Adjust custom sort application * revert count and position in demo * Update demo...
[ { "path": "docs/api/en/objects/BatchedMesh.html", "patch": "@@ -98,6 +98,12 @@ <h3>[method:undefined dispose]()</h3>\n \t\t\tmethod whenever this instance is no longer used in your app.\n \t\t</p>\n \n+\t\t<h3>[method:this setCustomSort]( [param:Function sortFunction] )</h3>\n+\t\t<p>\n+\t\t\tTakes a sort a...
2023-11-21T09:00:48
denoland/deno
5437871a526cd0bca078ec9346fd7d77d62efcd4
df7ddfc7dfb494dd9a6025a39ed9f1c1bdf227c0
fix(ext/node): use primordials in `ext/node/polyfills/internal/stream_base_commons.ts` (#29290) Towards #24236. Replaces JS intrinsics with primordial equivalents. Lint "ignore" statements were added for `Readable` stream instances.
[ { "path": "ext/node/polyfills/internal/stream_base_commons.ts", "patch": "@@ -20,9 +20,6 @@\n // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore...
2025-05-14T09:54:23
golang/go
27ad1f50135c6de20c2afd593cdd17f47c2388e0
86fca3dcb63157b8e45e565e821e7fb098fcf368
internal/abi: fix comment on NonEmptyInterface Change-Id: Ia3f4e844049caf11ae67d1bd6dd48350f51c532f Reviewed-on: https://go-review.googlesource.com/c/go/+/684375 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Keith Ra...
[ { "path": "src/internal/abi/iface.go", "patch": "@@ -26,7 +26,7 @@ type EmptyInterface struct {\n \tData unsafe.Pointer\n }\n \n-// EmptyInterface describes the layout of an interface that contains any methods.\n+// NonEmptyInterface describes the layout of an interface that contains any methods.\n type Non...
2025-06-26T21:36:14
mrdoob/three.js
0582b0000cc47cedfe2295e1622cc045e7a5de7f
4c5c68f4c690a73e8243e0d10c7cc3101dd0e084
Examples: Add webgl_loader_gainmap (#27183) * initial work for adding gainmap loader example * added tags * better example with file size and resolution comparison * updated example to latest gainmap-js release 2.0.3 which fixes some compatibility problems in some browsers and platforms + adds progress handle...
[ { "path": "examples/files.json", "patch": "@@ -82,6 +82,7 @@\n \t\t\"webgl_loader_collada_skinning\",\n \t\t\"webgl_loader_draco\",\n \t\t\"webgl_loader_fbx\",\n+\t\t\"webgl_loader_gainmap\",\n \t\t\"webgl_loader_fbx_nurbs\",\n \t\t\"webgl_loader_gcode\",\n \t\t\"webgl_loader_gltf\",", "additions": 1, ...
2023-11-19T09:31:09
mrdoob/three.js
4c5c68f4c690a73e8243e0d10c7cc3101dd0e084
4eecc8906c00f7a9487eb9c4af5344b736d84b1e
NodeMaterial: Use type 'vec3' when getting color attribute, fixing crash (#27210) in WebGPU.
[ { "path": "examples/jsm/nodes/materials/NodeMaterial.js", "patch": "@@ -160,7 +160,7 @@ class NodeMaterial extends ShaderMaterial {\n \n \t\tif ( this.vertexColors === true && geometry.hasAttribute( 'color' ) ) {\n \n-\t\t\tcolorNode = vec4( colorNode.xyz.mul( attribute( 'color' ) ), colorNode.a );\n+\t\t\t...
2023-11-18T20:53:31
denoland/deno
df7ddfc7dfb494dd9a6025a39ed9f1c1bdf227c0
63952553110bf78ed6a99f3fb5da4584781c3373
fix(ext/node): use primordials in `ext/node/polyfills/internal/url.ts` (#29146) Towards #24236.
[ { "path": "ext/node/polyfills/internal/url.ts", "patch": "@@ -1,17 +1,23 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { fileURLToPath } from \"node:url\";\n import ...
2025-05-13T23:30:44
golang/go
0710cce6eb0d75db1fc6c45807773f40edb14d73
59846af331228b28e69326412011b26b62f0c74d
[dev.simd] runtime: remove write barrier in xRegRestore Currently, there's a write barrier in xRegRestore when it assigns pp.xRegs.cache = gp.xRegs.state. This is bad because that gets called on the asyncPreempt return path, where we have really limited stack space, and we don't currently account for this write barrie...
[ { "path": "src/runtime/mkpreempt.go", "patch": "@@ -160,7 +160,7 @@ func writeXRegs(arch string, l *layout) {\n \tfmt.Fprintf(g.w, `\n package runtime\n \n-type xRegState struct {\n+type xRegs struct {\n `)\n \tpos := 0\n \tfor _, reg := range l.regs {", "additions": 1, "deletions": 1, "language...
2025-06-30T20:42:19
vuejs/vue
cf8253cdd98af34090d8ef5a21489314a4325c4f
955e2f839175fadbd0218f7b78c48ebbbcca6349
fix platform compiler directives
[ { "path": "src/entries/web-compiler.js", "patch": "@@ -1,6 +1,6 @@\n import { extend } from '../shared/util'\n import { compile as baseCompile } from '../compiler/index'\n-import * as directives from '../platforms/web/compiler/directives/index'\n+import directives from '../platforms/web/compiler/directives/...
2016-04-23T20:15:53
mrdoob/three.js
763c53eb55eda9928b5cb6318e8061d77b2c8113
5f53c76b8d13fe939f691c7906dd74cb70fe5998
WebGPURenderer: Add "updateRanges" support for WebGLAttributeUtils (#27149) * Add "updateRanges" support for WebGLAttributeUtils * Fix failed test
[ { "path": "examples/jsm/renderers/webgl/utils/WebGLAttributeUtils.js", "patch": "@@ -105,9 +105,30 @@ class WebGLAttributeUtils {\n \t\tconst bufferAttribute = attribute.isInterleavedBufferAttribute ? attribute.data : attribute;\n \t\tconst bufferData = backend.get( bufferAttribute );\n \t\tconst bufferType...
2023-11-17T10:07:16
denoland/deno
63952553110bf78ed6a99f3fb5da4584781c3373
784c6a5296b84217123a6c2c50285f57b5bf036d
chore: fix workflow failure on lts post publish (#29288)
[ { "path": ".github/workflows/post_publish.yml", "patch": "@@ -31,4 +31,4 @@ jobs:\n - name: Upload version file to dl.deno.land\n run: |\n echo ${GITHUB_REF#refs/*/} > release-latest.txt\n- deno run --allow-net tools/release/version_greater_latest.ts ${GITHUB_REF#refs/*/} &&...
2025-05-13T23:23:36