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 |
|---|---|---|---|---|---|
denoland/deno | 1a8e5edd0fa288e2164fcebf029cd87975938c99 | 9812163db27f6bf348a5d6010d186a7809332482 | fix: remove WorkerGlobalScope from global middleware (#29543)
This commit removes "WorkerGlobalScope" global from the "global
middleware" that we use to provide different set of globals to
user code and npm packages.
This is done, by renaming "WebWorkerType" to "WorkerThreadType"
and introducing a "Node" variant - th... | [
{
"path": "ext/node/global.rs",
"patch": "@@ -64,9 +64,8 @@ const fn str_to_utf16<const N: usize>(s: &str) -> [u16; N] {\n \n // UTF-16 encodings of the managed globals. THIS LIST MUST BE SORTED.\n #[rustfmt::skip]\n-const MANAGED_GLOBALS: [&[u16]; 12] = [\n+const MANAGED_GLOBALS: [&[u16]; 11] = [\n &str_... | 2025-06-11T15:19:15 |
vuejs/vue | 42889ff87a7a068fa32dba72f7950a3792277e9b | dffeb1d1c253c6b110c2e32c7e129aad19504e6a | fix global directive function shorthand (fix #3243) | [
{
"path": "src/core/global-api/assets.js",
"patch": "@@ -28,6 +28,9 @@ export function initAssetRegisters (Vue: GlobalAPI) {\n definition.name = definition.name || id\n definition = Vue.extend(definition)\n }\n+ if (type === 'directive' && typeof definition === 'function')... | 2016-07-07T20:09:26 |
golang/go | 8eb5f6020e707672a846f0f83011b87e48039550 | b226bcc4a9ae71dd75effbd020220590a29a68a9 | [dev.simd] cmd/compile, simd: API interface fixes
- Absolute -> Abs
- ApproximateReciprocal -> Reciprocal
- Other derived apis also changed.
- Round -> RoundToEven
- Other derived apis also changed.
- Drop DotProdBroadcast
- Fused(Mul|Add)(Mul|Add)? -> remove the "Fused"
- MulEvenWi... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -24,18 +24,6 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPABSQ128,\n \t\tssa.OpAMD64VPABSQ256,\n \t\tssa.OpAMD64VPABSQ512,\n-\t\tssa.OpAMD64VRCPPS128,\n-\t\tssa.OpAMD64VRCPPS256,\n-\t\tssa.OpAMD64VRCP14PS... | 2025-08-07T17:05:50 |
denoland/deno | 6367a54b61cde553d482fc1ed64436da6e2e7dcc | b49523780de5c3985f73490b9358459353ac291d | fix(ext/node): use primordials in `ext/node/polyfills/internal_binding/stream_wrap.ts` (#29542) | [
{
"path": "ext/node/polyfills/internal_binding/stream_wrap.ts",
"patch": "@@ -27,11 +27,17 @@\n // - https://github.com/nodejs/node/blob/master/src/stream_wrap.h\n // - https://github.com/nodejs/node/blob/master/src/stream_wrap.cc\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// ... | 2025-06-11T06:40:09 |
mrdoob/three.js | f67234d1e0693335ae46bc7e7588bf21207dd627 | 5838c86d58a4de584ed9ee1972677bb11e8cbb13 | docs: fix GridHelper hierarchy (#27817) | [
{
"path": "docs/api/en/helpers/GridHelper.html",
"patch": "@@ -7,7 +7,7 @@\n \t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"page.css\" />\n \t</head>\n \t<body>\n-\t\t[page:Object3D] → [page:Line] →\n+\t\t[page:Object3D] → [page:Line] → [page:LineSegments] →\n \n \t\t<h1>[nam... | 2024-02-27T08:42:55 |
vuejs/vue | dffeb1d1c253c6b110c2e32c7e129aad19504e6a | e0c77dd48d8ec69e17d70d3f30868b7d5402f494 | fix HOC root node replace updates | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -85,15 +85,9 @@ export function lifecycleMixin (Vue: Class<Component>) {\n if (vm.$el) {\n vm.$el.__vue__ = vm\n }\n- // update parent vnode element after patch\n- const parentNode = vm.$vnode\n- if (parentNode) {\n- parent... | 2016-07-07T19:30:42 |
denoland/deno | b49523780de5c3985f73490b9358459353ac291d | 7bde4d09e29d64b71c32d924855959a9b6fc6dea | fix(ext/node): update decipherIv error properties (#29652)
Enables `parallel/test-crypto-stream.js` test
Ref https://github.com/denoland/deno/issues/29637 | [
{
"path": "ext/node/ops/crypto/cipher.rs",
"patch": "@@ -176,7 +176,7 @@ pub enum CipherError {\n #[error(\"Invalid initialization vector\")]\n InvalidInitializationVector,\n #[class(type)]\n- #[error(\"Cannot pad the input data\")]\n+ #[error(\"bad decrypt\")]\n CannotPadInputData,\n #[class(ty... | 2025-06-11T04:15:45 |
golang/go | 8282b72d627269ed2c2f7db7ea744e109667d7b1 | dc54d7b607488e71776ba0fa3d09398d65daf033 | runtime/race: update darwin race syso
On macOS, the script in LLVM TSAN building the race syso files
produces the Mach-O object with a malformed dynamic symbol table,
which new Apple linker doesn't like and emits an annoying warning
(https://github.com/golang/go/issues/61229#issuecomment-1988965927).
The dynamic symbo... | [
{
"path": "src/runtime/race/README",
"patch": "@@ -4,14 +4,14 @@ the LLVM project (https://github.com/llvm/llvm-project/tree/main/compiler-rt).\n \n To update the .syso files use golang.org/x/build/cmd/racebuild.\n \n-internal/amd64v1/race_darwin.syso built with LLVM 51bfeff0e4b0757ff773da6882f4d538996c9b04... | 2025-03-25T19:21:04 |
mrdoob/three.js | 3d07bacfe8c5cc1b1f7d7a1c8a1c9da5f168da99 | d0b43f2fb25275216bcc0d2760681136cda76457 | CondNode: Fix duplicate conditional (#27828) | [
{
"path": "examples/jsm/nodes/math/CondNode.js",
"patch": "@@ -41,11 +41,21 @@ class CondNode extends Node {\n \t\tconst type = this.getNodeType( builder );\n \t\tconst context = { tempWrite: false };\n \n+\t\tconst nodeData = builder.getDataFromNode( this );\n+\n+\t\tif ( nodeData.nodeProperty !== undefine... | 2024-02-26T20:23:41 |
vuejs/vue | 751b0c87a4aeb5d20f378ed7e35adcf8d1b3a93a | 9b941765301ef1a8e5c918ff2991cd5b770391c5 | fix watcher tests | [
{
"path": "test/unit/modules/observer/watcher.spec.js",
"patch": "@@ -61,27 +61,15 @@ describe('Watcher', () => {\n \n it('path containing $data', done => {\n const watcher = new Watcher(vm, '$data.b.c', spy)\n- expect(watcher.value).toBeUndefined()\n+ expect(watcher.value).toBe(2)\n vm.b = ... | 2016-07-07T17:37:58 |
denoland/deno | 7bde4d09e29d64b71c32d924855959a9b6fc6dea | e27447943bf1ee7d984bac9a631ac9f2e8377eaa | fix(ext/node): use primordials in `ext/node/polyfills/internal/util/inspect.mjs` (#29691) | [
{
"path": "ext/node/polyfills/internal/util/inspect.mjs",
"patch": "@@ -20,9 +20,38 @@\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... | 2025-06-11T04:07:52 |
mrdoob/three.js | d0b43f2fb25275216bcc0d2760681136cda76457 | a963bf7092dcb3653d0ff3b9980215141dea7240 | WGLSLNodeBuilder: Fix equals (#27826) | [
{
"path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeBuilder.js",
"patch": "@@ -114,9 +114,9 @@ fn threejs_greaterThan( a : vec3<f32>, b : vec3<f32> ) -> vec3<bool> {\n \tmod_vec3: new CodeNode( 'fn threejs_mod_vec3( x : vec3f, y : vec3f ) -> vec3f { return x - y * floor( x / y ); }' ),\n \tmod_vec4: new ... | 2024-02-26T16:40:12 |
golang/go | e0a1ea431c960c3ed740f9b32754e7c31737035c | 2747f925dd1f08f9b9a1ef23170ee601519d70c2 | cmd/compile: make panicBounds stack frame smaller on ppc64
We're running into nosplit limits when compiled with all=-N -l.
Fixes #74910
Change-Id: I156263ae9b54ded240000001719512af86af70ee
Reviewed-on: https://go-review.googlesource.com/c/go/+/693557
Reviewed-by: Paul Murphy <paumurph@redhat.com>
Auto-Submit: Keith ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/PPC64Ops.go",
"patch": "@@ -171,7 +171,7 @@ func init() {\n \t\tfpstore = regInfo{inputs: []regMask{gp | sp | sb, fp}}\n \t\tfpstoreidx = regInfo{inputs: []regMask{gp | sp | sb, gp | sp | sb, fp}}\n \t\tcallerSave = regMask(gp | fp | gr | xer)\n-\t\tfirst8 ... | 2025-08-06T16:59:12 |
vuejs/vue | 9b941765301ef1a8e5c918ff2991cd5b770391c5 | 1fb227cb90fcc88ea84dc9c845e37b1d21902805 | fix functional test | [
{
"path": "test/unit/features/options/functional.spec.js",
"patch": "@@ -10,7 +10,7 @@ describe('Options functional', () => {\n functional: true,\n props: ['msg'],\n render (h, { props, children }) {\n- return h('div', null, [props.msg, ' '].concat(children))\n+ ... | 2016-07-07T17:32:34 |
denoland/deno | e27447943bf1ee7d984bac9a631ac9f2e8377eaa | e5c9168f8685eb6997f9fb013adeffc0fda8afe6 | fix(ext/node): fix fs.watchFile trigger (#29659)
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com> | [
{
"path": "ext/node/polyfills/_fs/_fs_watch.ts",
"patch": "@@ -298,7 +298,7 @@ class StatWatcher extends EventEmitter {\n while (true) {\n await delay(interval, { signal: this.#abortController.signal });\n const curr = await statAsync(filename);\n- if (curr?.mtime !== pr... | 2025-06-11T03:37:59 |
mrdoob/three.js | 5e2397a4b67d375e0fd6001f550c79fdf036696b | 9444fc913e107222e6bafe62f2c277c76d4e1fd1 | BufferGeometry: Remove outdated advice from error message. (#27824) | [
{
"path": "src/core/BufferGeometry.js",
"patch": "@@ -300,7 +300,7 @@ class BufferGeometry extends EventDispatcher {\n \n \t\tif ( position && position.isGLBufferAttribute ) {\n \n-\t\t\tconsole.error( 'THREE.BufferGeometry.computeBoundingBox(): GLBufferAttribute requires a manual bounding box. Alternativel... | 2024-02-26T11:45:46 |
golang/go | 2747f925dd1f08f9b9a1ef23170ee601519d70c2 | 025d36917c8f56baede2f477131bbf08bf1382ca | debug/macho: support reading imported symbols without LC_DYSYMTAB
Currently, the ImportedSymbols method requires an LC_DYSYMTAB load
command to exist. However, a Mach-O object file may not have an
LC_DYSYMTAB load command, e.g. the one produced by "ld -r".
Support this case by just reading the symbol table and gathers... | [
{
"path": "src/debug/macho/file.go",
"patch": "@@ -719,15 +719,28 @@ func (f *File) DWARF() (*dwarf.Data, error) {\n // referred to by the binary f that are expected to be\n // satisfied by other libraries at dynamic load time.\n func (f *File) ImportedSymbols() ([]string, error) {\n-\tif f.Dysymtab == nil ... | 2025-08-04T14:30:26 |
vuejs/vue | 1fb227cb90fcc88ea84dc9c845e37b1d21902805 | cb663db3e5dcb1127e4bba61ccf5ef8256589699 | fix watcher path check | [
{
"path": "src/core/observer/watcher.js",
"patch": "@@ -66,7 +66,7 @@ export default class Watcher {\n if (!this.getter) {\n this.getter = function () {}\n process.env.NODE_ENV !== 'production' && warn(\n- 'Failed watching path: ' + expOrFn +\n+ `Failed watching path:... | 2016-07-07T02:19:02 |
mrdoob/three.js | c825051719fa204822beb6c459945b944cc39d82 | 50856204ddbd23840d540f342d48213c76bf17c9 | DragControls: Add support for multiple groups. (#27791)
* Update DragControls.js
Fixed Group drag and drop issue.
Existing code can drag only one group now we can drag multiple group in scene.
* Added new updateObject function for dynamically update objects
* function name updated as per review comment
*... | [
{
"path": "examples/jsm/controls/DragControls.js",
"patch": "@@ -30,7 +30,7 @@ class DragControls extends EventDispatcher {\n \t\t_domElement.style.touchAction = 'none'; // disable touch scroll\n \n \t\tlet _selected = null, _hovered = null;\n-\n+ \n \t\tconst _intersections = [];\n \n \t\tthis.mode = 'tran... | 2024-02-26T09:35:41 |
denoland/deno | e5c9168f8685eb6997f9fb013adeffc0fda8afe6 | b3242183f32c4aedfffcadad68251709a0913232 | fix(ext/node): fix events.getEventListeners (#29685) | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -844,7 +844,9 @@ export function getEventListeners(emitterOrTarget, type) {\n return emitterOrTarget.listeners(type);\n }\n if (emitterOrTarget instanceof EventTarget) {\n- return emitterOrTarget[eventTargetData]?.listeners?.[type] || [];\n... | 2025-06-11T00:40:53 |
mrdoob/three.js | 2adfd75ee0f3cfdc94066640b27cdbbbdf863e06 | 0bd5c6549f14fe5589a44b9b2788c8a0d6f4ff12 | WebGPURenderer: Fix flipY `Data*Texture` (#27815) | [
{
"path": "examples/jsm/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -327,13 +327,13 @@ class WebGPUTextureUtils {\n \n \t\tif ( texture.isDataTexture || texture.isData3DTexture ) {\n \n-\t\t\tthis._copyBufferToTexture( options.image, textureData.texture, textureDescriptorGPU, 0, false );\n+\... | 2024-02-24T07:25:21 |
golang/go | f53dcb6280a66acb7f6a66d39eaf51e5f0f5698b | a3895fe9f18682d5055cb68283eba21d7255a67f | cmd/internal/testdir: unify link command
There are three places where we manually construct a "go tool link"
command. Unify them.
Test binaries don't need the symbol table or debug info, so pass
-s -w always.
Change-Id: I40143894172877738e250f291d7e7ef8dce62488
Reviewed-on: https://go-review.googlesource.com/c/go/+/... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -233,19 +233,23 @@ var stdlibImportcfgFile = sync.OnceValue(func() string {\n \treturn filename\n })\n \n-func linkFile(runcmd runCmd, goname string, importcfg string, ldflags []string) (err error) {\n+// linkFile links infile with the given... | 2025-08-02T22:06:57 |
vuejs/vue | 03621ee245d13eec9a54ba070ac3d93b13015a52 | b6d386b07018830faa2da82176c7b1835d68a980 | adjust render fn + fix props validation for functional components | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -118,7 +118,7 @@ export function lifecycleMixin (Vue: Class<Component>) {\n const propKeys = vm.$options._propKeys || []\n for (let i = 0; i < propKeys.length; i++) {\n const key = propKeys[i]\n- vm[key] = validateProp(vm, k... | 2016-07-06T23:07:59 |
denoland/deno | 147b067db52b57cfc9acde71994112e7d3108ac3 | 56ce3352d2281bacf1339b21eaeb89f225149893 | fix(ext/os): silently ignore invalid utf-8 characters in os vars (#29571) | [
{
"path": "ext/os/lib.rs",
"patch": "@@ -183,7 +183,17 @@ fn op_env(\n state: &mut OpState,\n ) -> Result<HashMap<String, String>, PermissionCheckError> {\n state.borrow_mut::<PermissionsContainer>().check_env_all()?;\n- Ok(env::vars().collect())\n+\n+ Ok(\n+ env::vars_os()\n+ .filter_map(|(ke... | 2025-06-10T21:52:38 |
mrdoob/three.js | 0bd5c6549f14fe5589a44b9b2788c8a0d6f4ff12 | 289444e23fc91a82b88a79c2eb89bc5961f6acfd | VOXLoader: Improve `version` error message. (#27812) | [
{
"path": "examples/jsm/loaders/VOXLoader.js",
"patch": "@@ -56,9 +56,16 @@ class VOXLoader extends Loader {\n \t\tconst id = data.getUint32( 0, true );\n \t\tconst version = data.getUint32( 4, true );\n \n-\t\tif ( id !== 542658390 || version !== 150 ) {\n+\t\tif ( id !== 542658390 ) {\n \n-\t\t\tconsole.e... | 2024-02-23T18:38:01 |
vuejs/vue | b6d386b07018830faa2da82176c7b1835d68a980 | 9421bd48066906e20052e04cf88c4ae623080a95 | fix getReadlChild types | [
{
"path": "src/core/vdom/helpers.js",
"patch": "@@ -64,10 +64,10 @@ function applyNS (vnode, ns) {\n \n // in case the child is also an abstract component, e.g. <transition-control>\n // we want to recrusively retrieve the real component to be rendered\n-export function getRealChild (vnode) {\n+export funct... | 2016-07-06T22:35:51 |
golang/go | a3895fe9f18682d5055cb68283eba21d7255a67f | 608e9fac9055aa188c513f4dd53f12e692bc3c0c | database/sql: avoid closing Rows while scan is in progress
A database/sql/driver.Rows can return database-owned data
from Rows.Next. The driver.Rows documentation doesn't explicitly
document the lifetime guarantees for this data, but a reasonable
expectation is that the caller of Next should only access it
until the n... | [
{
"path": "src/database/sql/convert.go",
"patch": "@@ -335,7 +335,6 @@ func convertAssignRows(dest, src any, rows *Rows) error {\n \t\t\tif rows == nil {\n \t\t\t\treturn errors.New(\"invalid context to convert cursor rows, missing parent *Rows\")\n \t\t\t}\n-\t\t\trows.closemu.Lock()\n \t\t\t*d = Rows{\n \... | 2025-07-23T21:26:54 |
mrdoob/three.js | 499d3139efb125dd842e6813bf1ad2a1cfebe186 | 5b4520ea2f25cb1dbb0054ec3682bad596f1bdb9 | TSL: Fix duplicate assignments (#27798)
* AssignNode: Fix duplicate assignments
* add void | [
{
"path": "examples/jsm/nodes/core/AssignNode.js",
"patch": "@@ -56,11 +56,21 @@ class AssignNode extends TempNode {\n \n \t\tconst sourceType = sourceNode.getNodeType( builder );\n \n+\t\tconst nodeData = builder.getDataFromNode( this );\n+\n \t\t//\n \n \t\tlet snippet;\n \n-\t\tif ( needsSplitAssign ) {\... | 2024-02-23T02:40:33 |
denoland/deno | 56ce3352d2281bacf1339b21eaeb89f225149893 | 4438f8762f23dd83b9d9feb458d0f58d4051dc7d | fix(unstable): rename "patch" property to "links" (#29677)
This is to help make this feature less ambiguous with `npm patch`, which
it's not like.
Note: the "patch" property will continue to work for the time being, but
the lockfile will have a bit of churn for this unstable property. We're
going to merge this in a p... | [
{
"path": "Cargo.lock",
"patch": "@@ -892,7 +892,7 @@ dependencies = [\n \"chrono\",\n \"deno_bench_util\",\n \"deno_cache_dir\",\n- \"deno_lockfile\",\n+ \"deno_lockfile 0.30.0\",\n \"deno_semver\",\n \"deno_terminal 0.2.2\",\n \"deno_tower_lsp\",\n@@ -1469,9 +1469,9 @@ dependencies = [\n \"deno_gra... | 2025-06-10T21:51:23 |
golang/go | 608e9fac9055aa188c513f4dd53f12e692bc3c0c | 72e8237cc11569de2faf9885a1b83d06446533b5 | go/types, types2: flip on position tracing
Running compilebench with flags off / on, we get the below:
│ old.txt │ new.txt │
│ sec/op │ sec/op vs base │
Template 149.2m ± 6% 155.5m ± 5% ... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -22,7 +22,7 @@ var nopos syntax.Pos\n const debug = false // leave on during development\n \n // position tracing for panics during type checking\n-const tracePos = false // TODO(markfreeman): check performance implications\n+const tracePos ... | 2025-05-28T16:12:35 |
mrdoob/three.js | 18a5375fff91980e0edc6008b4756f489bfc784a | f9a97ef7814a67bf84048cfc42a78c21a77281ed | Fix env map Euler rotation (#27785) | [
{
"path": "src/renderers/webgl/WebGLBackground.js",
"patch": "@@ -116,8 +116,9 @@ function WebGLBackground( renderer, cubemaps, cubeuvmaps, state, objects, alpha,\n \n \t\t\tif ( background.isCubeTexture && background.isRenderTargetTexture === false ) {\n \n-\t\t\t\t// environment maps which are no cube ren... | 2024-02-21T08:01:57 |
denoland/deno | 4438f8762f23dd83b9d9feb458d0f58d4051dc7d | 1f579ba89ed929d8b60acf9c48dcb529da97438b | fix(bundle): rework how patterns for externals are handled (#29680)
Now aligns with esbuild's behavior | [
{
"path": "cli/tools/bundle/esbuild.rs",
"patch": "@@ -61,8 +61,15 @@ pub async fn ensure_esbuild(\n let nv =\n PackageNv::from_str(&format!(\"{}@{}\", pkg_name, ESBUILD_VERSION)).unwrap();\n let api = npm_registry_info.as_npm_registry_api();\n- let info = api.package_info(&pkg_name).await?;\n- le... | 2025-06-10T16:58:55 |
golang/go | 72e8237cc11569de2faf9885a1b83d06446533b5 | 3406a617d9643902e932ca99c6f276fa7b19e030 | cmd/compile: allow more args in StructMake folding rule
imakeOfStructMake does the right thing, but we never call it
when the StructMake has more than one argument.
Fixes #74908
Change-Id: Ib4b1a025bfb1fa69a325207e47b74bd6217092bf
Reviewed-on: https://go-review.googlesource.com/c/go/+/693615
Auto-Submit: Keith Randa... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -921,7 +921,7 @@\n @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.FieldOff(int(i))] ptr) mem)\n \n // Putting struct{*byte} and similar into direct interfaces.\n-(IMake _typ (StructMake val)) => imakeOfStructMake(v)\n+(IMake _t... | 2025-08-06T16:21:41 |
mrdoob/three.js | ed15131157f38111c6ea3238a93f353b12f773cb | 2826c95442245c2bb3c3377de93d9b10d48bf15a | WebGLRenderer: Add support for rotating env maps. (#27758)
* WebGLRenderer: Add support for rotating env maps.
* Fix envMap rotation around x-axes.
* Docs: Add new background and envMap rotation.
* Ensure left-handed frame when rotating env maps.
* Fix typo.
* Clean up.
* Scene: Add `environmentRotat... | [
{
"path": "docs/api/en/materials/MeshBasicMaterial.html",
"patch": "@@ -99,6 +99,11 @@ <h3>[property:Integer combine]</h3>\n \t\t<h3>[property:Texture envMap]</h3>\n \t\t<p>The environment map. Default is null.</p>\n \n+\t\t<h3>[property:Euler envMapRotation]</h3>\n+\t\t<p>\n+\t\t\tThe rotation of the envir... | 2024-02-20T10:23:42 |
denoland/deno | 1f579ba89ed929d8b60acf9c48dcb529da97438b | cb810ab664f0eb5a0892d9ea6cbaa7084a5c8ab1 | fix(bundle): pass requested module type to load (#29683)
Fixes #29663. | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -12,6 +12,7 @@ use deno_core::error::AnyError;\n use deno_core::resolve_url_or_path;\n use deno_core::url::Url;\n use deno_core::ModuleLoader;\n+use deno_core::RequestedModuleType;\n use deno_error::JsError;\n use deno_graph::Position;\n use deno_lib::worker... | 2025-06-10T15:44:32 |
vuejs/vue | d4a167e7c6c42506f167cf447846f826a9844c95 | ae9e7da9c19ee3d90cdb25176afd405199a384ed | watcher errors should be handled in production mode as well | [
{
"path": "src/core/observer/watcher.js",
"patch": "@@ -99,12 +99,12 @@ export default class Watcher {\n this.vm\n )\n }\n- /* istanbul ignore else */\n- if (config.errorHandler) {\n- config.errorHandler.call(null, e, this.vm)\n- } else {\n- ... | 2016-07-06T20:09:01 |
mrdoob/three.js | cfdd878cf74857aef26459eb82c68dd75f097c72 | 98941a0cd6fa899e27064961321bfc6a84c1e34e | WebGLRenderer: Fixed compressed partial update on texture3D (#27771)
* Fixed compressed partial update on texture3D and add example to e2e tests
* removed example | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -2440,8 +2440,8 @@ class WebGLRenderer {\n \n \t\t\t}\n \n-\t\t\tconst width = sourceBox.max.x - sourceBox.min.x + 1;\n-\t\t\tconst height = sourceBox.max.y - sourceBox.min.y + 1;\n+\t\t\tconst width = Math.round( sourceBox.max.x - sourceBox.min.x );\... | 2024-02-19T18:51:34 |
golang/go | 7ca34599ec4df8a21b7d4580f7e1c716c44f7e0f | 82d056ddd7378ee23ab073c7a195d92cfc4a59d6 | [dev.simd] simd, cmd/compile: generated files to add 'blend' and 'blendMasked'
Generated by arch/internal/simdgen CL 693175
These methods are not public because of simdgen-induced name/signature
issues, and because their addition was motivated by the need for
emulation tools.
The specific name signature problems are... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -589,7 +589,11 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPXORDMasked512,\n \t\tssa.OpAMD64VPXORQMasked128,\n \t\tssa.OpAMD64VPXORQMasked256,\n-\t\tssa.OpAMD64VPXORQMasked512:\n+\t\tssa.OpAMD64VPXORQMask... | 2025-08-04T19:19:54 |
denoland/deno | cb810ab664f0eb5a0892d9ea6cbaa7084a5c8ab1 | 9730b97dfbdd3dff1e0b7f333dc5734e42a05a9e | fix(fmt): allow omission of semicolon in certain cases in css template (#29687) | [
{
"path": "Cargo.lock",
"patch": "@@ -6560,7 +6560,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15\"\n dependencies = [\n \"bytes\",\n- \"heck 0.5.0\",\n+ \"heck 0.4.1\",\n \"itertools 0.13.0\",\n \"lo... | 2025-06-10T14:19:40 |
vuejs/vue | ae9e7da9c19ee3d90cdb25176afd405199a384ed | 7630622689587b947c3ba03678a8f1d1e24ac71f | fix missing component tag | [
{
"path": "src/core/vdom/create-element.js",
"patch": "@@ -51,7 +51,7 @@ function _createElement (\n )\n } else if ((Ctor = resolveAsset(context.$options, 'components', tag))) {\n // component\n- return createComponent(Ctor, data, parent, context, host, children)\n+ return createCo... | 2016-07-06T17:12:38 |
mrdoob/three.js | 2ab2277a71c1d915fcf8d9d5514da4aab0b8339c | 1dc5dfea06827a20babf751543366d5e056e80b8 | `WebGPURenderer`: Fix normal didn't consider `faceDirection` (#27774) | [
{
"path": "examples/jsm/nodes/materials/NodeMaterial.js",
"patch": "@@ -20,6 +20,7 @@ import EnvironmentNode from '../lighting/EnvironmentNode.js';\n import { depthPixel } from '../display/ViewportDepthNode.js';\n import { cameraLogDepth } from '../accessors/CameraNode.js';\n import { clipping, clippingAlph... | 2024-02-19T16:06:38 |
golang/go | e1fd4faf914b914856dfb0be1ad26cd4cef4a9ae | bcd25c79aa5675d3e5d28c09715b8147906da006 | runtime: fix godoc comment for inVDSOPage
Change-Id: I7dcab0c915a748e52c5c689c1cb774f486d2b9e6
Reviewed-on: https://go-review.googlesource.com/c/go/+/693195
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project... | [
{
"path": "src/runtime/vdso_linux.go",
"patch": "@@ -285,7 +285,7 @@ func vdsoauxv(tag, val uintptr) {\n \t}\n }\n \n-// vdsoMarker reports whether PC is on the VDSO page.\n+// inVDSOPage reports whether PC is on the VDSO page.\n //\n //go:nosplit\n func inVDSOPage(pc uintptr) bool {",
"additions": 1,
... | 2025-08-05T10:57:42 |
denoland/deno | baa52bf323834c09e550eaff89c8d305b7b46566 | e8dc88790e38d03ed517948fc7779fb5ea057f63 | fix(test): handle snippet containing `Deno.test` in doc test (#29631) | [
{
"path": "cli/util/extract.rs",
"patch": "@@ -48,6 +48,11 @@ enum WrapKind {\n NoWrap,\n }\n \n+struct TestOrSnippet {\n+ file: File,\n+ has_deno_test: bool,\n+}\n+\n fn extract_inner(\n file: File,\n wrap_kind: WrapKind,\n@@ -86,8 +91,13 @@ fn extract_inner(\n \n extracted_files\n .into_iter... | 2025-06-10T05:40:59 |
vuejs/vue | 7b4400d2151c30b994db9c7d5f761055e4165e36 | 4a66c3d7ca4d64d4e3a7dd4494e6a7c82c55655e | fix createElement ssr perf regression | [
{
"path": "src/core/vdom/create-element.js",
"patch": "@@ -41,16 +41,27 @@ function _createElement (\n // in case of component :is set to falsy value\n return emptyVNode()\n }\n- const Ctor = typeof tag === 'string'\n- ? resolveAsset(context.$options, 'components', tag)\n- : tag\n- if (Cto... | 2016-07-05T19:22:19 |
mrdoob/three.js | b82170ab01c8f74fcc3678986ef15286b2e7fc13 | 698079ae0abb14bb5d6a521f7526ee1414c59100 | Fixes `emissiveIntensity` not persisting. (#27769)
If a Material with an `emissiveIntensity` of 0 is serialized, the previous truthy check does not persist this field. It will get reset to the default of 1 when loaded by the `ObjectLoader`.
Solution: Be explicit and add `!== undefined` (same as specularIntensity). | [
{
"path": "src/materials/Material.js",
"patch": "@@ -190,7 +190,7 @@ class Material extends EventDispatcher {\n \t\tif ( this.sheenColor && this.sheenColor.isColor ) data.sheenColor = this.sheenColor.getHex();\n \t\tif ( this.sheenRoughness !== undefined ) data.sheenRoughness = this.sheenRoughness;\n \t\tif... | 2024-02-19T08:26:13 |
golang/go | bcd25c79aa5675d3e5d28c09715b8147906da006 | b0945a54b5ec65f79ad722d62f8c3ed62ba0b9d9 | cmd/compile: allow StructSelect [x] of interface data fields for x>0
As of CL 681937 we can now have structs which are pointer shaped, but
their pointer field is not the first field, like struct{ struct{}; *int }.
Fixes #74888
Change-Id: Idc80f6b1abde3ae01437e2a9cadb5aa23d04b806
Reviewed-on: https://go-review.google... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/dec.rules",
"patch": "@@ -98,7 +98,7 @@\n // Some of these are copied from generic.rules\n \n (IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect [0] (IData x)) => (IData x)\n+(StructSelect (IData x)) => (IData x)\n \n (StructSelect [i] x:(StructMak... | 2025-08-05T20:37:21 |
denoland/deno | e8dc88790e38d03ed517948fc7779fb5ea057f63 | 9494ba317c790e11eeed80568fced9cc90e36a2f | fix(ext/node): fix inspect of CustomEvent of Node.js (#29668) | [
{
"path": "ext/node/polyfills/internal/event_target.mjs",
"patch": "@@ -4,6 +4,13 @@\n // TODO(petamoriken): enable prefer-primordials for node polyfills\n // deno-lint-ignore-file prefer-primordials\n \n+import { primordials } from \"ext:core/mod.js\";\n+const {\n+ NumberIsInteger,\n+ ObjectAssign,\n+ S... | 2025-06-10T03:57:19 |
vuejs/vue | 4a66c3d7ca4d64d4e3a7dd4494e6a7c82c55655e | 5c6c8c7ed0b72461f1ed2e673c8f04cba300aaff | fix flow | [
{
"path": "src/platforms/web/compiler/index.js",
"patch": "@@ -35,7 +35,7 @@ export function compile (\n export function compileToFunctions (\n template: string,\n options?: CompilerOptions,\n- vm: Component\n+ vm?: Component\n ): CompiledFunctionResult {\n const _warn = (options && options.warn) ||... | 2016-07-05T18:50:41 |
mrdoob/three.js | a9db0d38390bfe4cf4de28bb59b954272babd35d | 0bf3908b73b2cf73d7361cce17cfc8b816cb2a00 | Fix 'car' WebGL example not working in playground (#27757)
* Fix car WebGL example not working in playground
* Update index.html
Remove deprecated code.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "playground/index.html",
"patch": "@@ -91,7 +91,7 @@\n \n \t\t\t\t//\n \n-\t\t\t\tcamera = new THREE.PerspectiveCamera( 40, window.innerWidth / window.innerHeight, 0.5, 60 );\n+\t\t\t\tcamera = new THREE.PerspectiveCamera( 40, window.innerWidth / window.innerHeight, 0.5, 200 );\n \t\t\t\tcamera.po... | 2024-02-16T21:17:02 |
golang/go | af0c4fe2ca51918bd82231ac48a28a0d0ef15c98 | e73afaae69bb6f098e3c1dbd98cfe134843910a1 | runtime: save scalar registers off stack in amd64 async preemption
Asynchronous preemption must save all registers that could be in use
by Go code. Currently, it saves all of these to the goroutine stack.
As a result, the stack frame requirements of asynchronous preemption
can be rather high. On amd64, this requires 3... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -554,6 +554,8 @@ type G = g\n \n type Sudog = sudog\n \n+type XRegPerG = xRegPerG\n+\n func Getg() *G {\n \treturn getg()\n }",
"additions": 2,
"deletions": 0,
"language": "Go"
},
{
"path": "src/runtime/lockrank.go",
"patch": "@@ -... | 2025-04-30T02:55:40 |
vuejs/vue | 93342d7b96e909fbc133c1c937889f659e8302ef | 579ff4ddbcd2db0399a8b9a2f56c4cdc5826e104 | fix coverage | [
{
"path": "test/unit/modules/compiler/compiler-options.spec.js",
"patch": "@@ -114,4 +114,15 @@ describe('compile options', () => {\n expect(vm.$el.innerHTML).toBe('<input type=\"text\">')\n expect(vm.$children[0].valid).toBe(true)\n })\n+\n+ it('should collect errors', () => {\n+ let compiled... | 2016-07-03T19:03:48 |
denoland/deno | 9494ba317c790e11eeed80568fced9cc90e36a2f | cb9245c69a8f11c8a90d488fae1325b49b82ea5f | fix(ext/node): support 2nd arg of `EventEmitter.prototype.listenerCount` (#29664) | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -739,17 +739,36 @@ EventEmitter.prototype.rawListeners = function rawListeners(type) {\n * Returns the number of listeners listening to event name\n * specified as `type`.\n * @param {string | symbol} type\n+ * @param {Function} listener\n * @retu... | 2025-06-10T02:03:41 |
golang/go | c0025d5e0b3f6fca7117e9b8f4593a95e37a9fa5 | 4ee0df8c466861bcd258ec55b58283f276d3b3d5 | go/parser: correct comment in expectedErrors
If `here` were already the start of the comment, then
the `pos = here` assignment would be redundant. Since pos
is already the start of the comment.
Change-Id: I793334988951ae5441327cb62d7524b423155b74
Reviewed-on: https://go-review.googlesource.com/c/go/+/693295
Reviewed-... | [
{
"path": "src/go/parser/error_test.go",
"patch": "@@ -88,7 +88,7 @@ func expectedErrors(fset *token.FileSet, filename string, src []byte) map[token.\n \t\t\ts := errRx.FindStringSubmatch(lit)\n \t\t\tif len(s) == 3 {\n \t\t\t\tif s[1] == \"HERE\" {\n-\t\t\t\t\tpos = here // start of comment\n+\t\t\t\t\tpos... | 2025-08-05T16:51:09 |
vuejs/vue | 579ff4ddbcd2db0399a8b9a2f56c4cdc5826e104 | e17f2ba20cdc44fabe9a6ca2baa6881debc1a992 | fix nested svg namespaces | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -3,7 +3,7 @@\n import { decodeHTML } from 'entities'\n import { parseHTML } from './html-parser'\n import { parseText } from './text-parser'\n-import { hyphenate, cached, no } from 'shared/util'\n+import { cached, no } from 'shared/util'\n import {\n ... | 2016-07-03T18:51:14 |
denoland/deno | ccc30edcb5bb40e574d5c3631a16dd1e3697247e | d5f0dd7ca29a89049b83ea9fc5037cc03d00f56c | fix(ext/node): make conditional exports work in `require()` (#29640)
This commit fixes passing conditional exports specified with
`--unstable-node-conditions` flag to `require()` calls.
Fixes scenario from
https://github.com/denoland/deno/issues/23757#issuecomment-2949344042
---------
Co-authored-by: Nayeem Rahman ... | [
{
"path": "ext/node/ops/require.rs",
"patch": "@@ -26,7 +26,6 @@ use node_resolver::NpmPackageFolderResolver;\n use node_resolver::ResolutionMode;\n use node_resolver::UrlOrPath;\n use node_resolver::UrlOrPathRef;\n-use node_resolver::REQUIRE_CONDITIONS;\n use sys_traits::FsCanonicalize;\n use sys_traits::F... | 2025-06-10T00:09:46 |
golang/go | 4ee0df8c466861bcd258ec55b58283f276d3b3d5 | a2c45f0eb1f281ed39c5111dd0fe4b2728f11cf3 | cmd: remove dead code
Fixes #74076
Change-Id: Icc67b3d4e342f329584433bd1250c56ae8f5a73d
Reviewed-on: https://go-review.googlesource.com/c/go/+/690635
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Alan Donovan <ad... | [
{
"path": "src/cmd/asm/internal/arch/loong64.go",
"patch": "@@ -23,18 +23,6 @@ func jumpLoong64(word string) bool {\n \treturn false\n }\n \n-// IsLoong64MUL reports whether the op (as defined by an loong64.A* constant) is\n-// one of the MUL/DIV/REM instructions that require special handling.\n-func IsLoon... | 2025-07-26T08:46:22 |
vuejs/vue | b3710e07e97b0b8012cf5775760c18d880cde14d | 06ca85d633b969d4beaadb64782f35831fbbf86e | fix eslint in tests | [
{
"path": "test/unit/features/directives/model-select.spec.js",
"patch": "@@ -205,7 +205,7 @@ describe('Directive v-model select', () => {\n })\n \n it('should warn multiple with non-Array value', () => {\n- const vm = new Vue({\n+ new Vue({\n data: {\n test: 'meh'\n },",
"... | 2016-06-30T19:19:58 |
denoland/deno | d5f0dd7ca29a89049b83ea9fc5037cc03d00f56c | 64a95cb5fb26ad86f26f6923b17f1726cdd4bc02 | fix(install): bust packument cache on version not found when loading extra info from lockfile (#29679)
Co-authored-by: nathanwhit <nathanwhit@users.noreply.github.com> | [
{
"path": "resolvers/npm_cache/registry_info.rs",
"patch": "@@ -226,7 +226,7 @@ impl<THttpClient: NpmCacheHttpClient, TSys: NpmCacheSys>\n self: &Arc<Self>,\n name: &str,\n ) -> Result<Option<Arc<NpmPackageInfo>>, LoadPackageInfoInnerError> {\n- let (cache_item, clear_id) = {\n+ let (value_c... | 2025-06-09T23:22:12 |
mrdoob/three.js | 35ad738002fda985828ba9fc9886c086e6a469aa | 3606ee1044aa6f89ce1a0e63ee51074542fb7957 | fix bufferType lost breaking updateAttribute later on (#27751) | [
{
"path": "examples/jsm/renderers/webgl/utils/WebGLAttributeUtils.js",
"patch": "@@ -8,6 +8,7 @@ class DualAttributeData {\n \n \t\tthis.buffers = [ attributeData.bufferGPU, dualBuffer ];\n \t\tthis.type = attributeData.type;\n+\t\tthis.bufferType = attributeData.bufferType;\n \t\tthis.pbo = attributeData.p... | 2024-02-15T02:38:50 |
golang/go | cd55f86b8dcfc139ee5c17d32530ac9e758c8bc0 | 21ab0128b62658ba3e325586f45bb781bee55fda | cmd/compile: allow multi-field structs to be stored directly in interfaces
If the struct is a bunch of 0-sized fields and one pointer field.
Fixes #74092
Change-Id: I87c5d162c8c9fdba812420d7f9d21de97295b62c
Reviewed-on: https://go-review.googlesource.com/c/go/+/681937
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -921,8 +921,8 @@\n @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.FieldOff(int(i))] ptr) mem)\n \n // Putting struct{*byte} and similar into direct interfaces.\n-(IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect... | 2025-06-15T03:10:50 |
vuejs/vue | 06ca85d633b969d4beaadb64782f35831fbbf86e | 5b668a922225c0d2dc1664dd117e4f74d15dbfbf | port hyphenate fix | [
{
"path": "src/shared/util.js",
"patch": "@@ -99,9 +99,10 @@ export const capitalize = cached((str: string): string => {\n /**\n * Hyphenate a camelCase string.\n */\n-const hyphenateRE = /([a-z\\d])([A-Z])/g\n+const hyphenateRE = /([^-])([A-Z])/g\n export const hyphenate = cached((str: string): string =>... | 2016-06-30T19:19:52 |
denoland/deno | 64a95cb5fb26ad86f26f6923b17f1726cdd4bc02 | a83b543bc7e70a7263285373b04ef60fd0adb899 | fix(bundle): fix handling of multiple entrypoints (#29651)
Fixes #29648. | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -121,7 +121,6 @@ pub async fn bundle(\n \n let entrypoint = bundle_flags\n .entrypoints\n- .first()\n .iter()\n .map(|e| resolve_url_or_path(e, &init_cwd).unwrap())\n .collect::<Vec<_>>();",
"additions": 0,
"deletions": 1,
"l... | 2025-06-09T20:15:13 |
mrdoob/three.js | 3606ee1044aa6f89ce1a0e63ee51074542fb7957 | 8efe8f81baf9e6370f9004c3f2cace157be014f5 | EditorControls: Add duplicate pointer ID fix. (#27749) | [
{
"path": "editor/js/EditorControls.js",
"patch": "@@ -136,6 +136,10 @@ class EditorControls extends THREE.EventDispatcher {\n \n \t\t\t//\n \n+\t\t\tif ( isTrackingPointer( event ) ) return;\n+\n+\t\t\t//\n+\n \t\t\taddPointer( event );\n \n \t\t\tif ( event.pointerType === 'touch' ) {\n@@ -392,6 +396,18 @... | 2024-02-14T21:12:54 |
golang/go | a3295df873bb22b3ba427124b1220370a5ca5cdb | bd082857a55b81acfd5b341c41dd90e29c159bd7 | cmd/compile/internal/ssa: Use transitive properties for len/cap
Remove the special casing for len/cap and rely on the posets.
After removing the special logic, I ran `go build -gcflags='-d
ssa/prove/debug=2' all` to verify my results. During this, I found 2
common cases where the old implicit unsigned->signed domain ... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -409,12 +409,6 @@ type factsTable struct {\n \tlimits []limit // indexed by value ID\n \tlimitStack []limitFact // previous entries\n \trecurseCheck []bool // recursion detector for limit propagation\n-\n-\t// For each slice s,... | 2025-06-04T08:22:21 |
vuejs/vue | ac15b048fd486a89dd678f1f71d26b3388b1806e | 49213f337276a9e8a9d6e8cc28e2bea5d762174d | ssr doc version fix | [
{
"path": "packages/vue-server-renderer/README.md",
"patch": "@@ -147,7 +147,7 @@ As an example, check out [`v-show`'s server-side implementation](https://github.\n \n ### cache\n \n-> Note: this option has changed and is different from versions < 2.0.0-alpha.8.\n+> Note: this option has changed and is diff... | 2016-06-29T20:51:02 |
denoland/deno | a83b543bc7e70a7263285373b04ef60fd0adb899 | ebbe435f301bc5c923325ed1c3f5472c4cfa29e7 | fix(compile): skip over read_dir errors when finding node_modules directories (#29672)
Not sure a good way to test this.
Closes https://github.com/denoland/deno/issues/29604 | [
{
"path": "cli/standalone/binary.rs",
"patch": "@@ -794,11 +794,12 @@ impl<'a> DenoCompileBinaryWriter<'a> {\n .unwrap(),\n );\n while let Some(pending_dir) = pending_dirs.pop_front() {\n- let mut entries = fs::read_dir(&pending_dir)\n- .with_context(|| {\n- ... | 2025-06-09T18:59:49 |
mrdoob/three.js | a11a7735dabd19160d5adae4d5e4372b09e20789 | 419f661c2e56bf9c42ecbdad179ff6d4f6d3761a | TSL: `parallaxUV` (#27739)
* BlendModeNode: Add layout and fix if used with textures
* TSL: Add parallaxUV
* Examples: Add `webgpu_parallax_uv`
* update
* cleanup
* Automatic compute tangents if needed
* use default TBNViewMatrix
* Rename parallaxDelta -> parallaxDirection
* Reg optional overla... | [
{
"path": "examples/files.json",
"patch": "@@ -356,6 +356,7 @@\n \t\t\"webgpu_morphtargets\",\n \t\t\"webgpu_morphtargets_face\",\n \t\t\"webgpu_occlusion\",\n+\t\t\"webgpu_parallax_uv\",\n \t\t\"webgpu_particles\",\n \t\t\"webgpu_portal\",\n \t\t\"webgpu_reflection\",",
"additions": 1,
"deletions":... | 2024-02-13T22:23:55 |
golang/go | bd082857a55b81acfd5b341c41dd90e29c159bd7 | 2b622b05a97bf785e97a3c241270cb6580d65ef7 | doc: fix typo in go memory model doc
Fixes a typo where originally "may by" was written where the intent was
"may be".
Change-Id: Ia5ba51a966506395c41b17ca28d59f63bd487f3e
Reviewed-on: https://go-review.googlesource.com/c/go/+/693075
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: Dmitri Shuralyov <d... | [
{
"path": "doc/go_mem.html",
"patch": "@@ -231,7 +231,7 @@ <h2 id=\"restrictions\">Implementation Restrictions for Programs Containing Data R\n \n <p>\n A read of an array, struct, or complex number\n-may by implemented as a read of each individual sub-value\n+may be implemented as a read of each individual... | 2025-08-04T18:33:05 |
vuejs/vue | 6cf19291bea4db51869052274e0c1acac57d0587 | 1b60a88ee14ff3cda5ca86a319f8547374fce4eb | adjust v-model on component sync mechanism (fix #3179) | [
{
"path": "examples/select2/index.html",
"patch": "@@ -48,7 +48,7 @@\n .select2({ data: this.options })\n // emit event on change.\n .on('change', function () {\n- vm.$emit('input', mockEvent(this.value))\n+ vm.$emit('input', this.value)\n })\n ... | 2016-06-29T16:25:28 |
mrdoob/three.js | b0e6fad8e57031bc2a069c2ebd00fadcb2ec338c | 0a6558999c0f52e084bcf38df004d26bdae5c79d | BlendModeNode: Add layout and fix if used with textures (#27738) | [
{
"path": "examples/jsm/nodes/display/BlendModeNode.js",
"patch": "@@ -9,6 +9,13 @@ export const BurnNode = tslFn( ( { base, blend } ) => {\n \n \treturn vec3( fn( 'x' ), fn( 'y' ), fn( 'z' ) );\n \n+} ).setLayout( {\n+\tname: 'burnColor',\n+\ttype: 'vec3',\n+\tinputs: [\n+\t\t{ name: 'base', type: 'vec3' }... | 2024-02-12T21:36:59 |
denoland/deno | ebbe435f301bc5c923325ed1c3f5472c4cfa29e7 | b575a6bfb147d18f33288c977ec38a2143138c28 | fix(ext/node): Fix missing core_import_map node internal file path for http2 (#29644) | [
{
"path": "tools/core_import_map.json",
"patch": "@@ -142,6 +142,7 @@\n \"ext:deno_node/internal/fs/utils.mjs\": \"../ext/node/polyfills/internal/fs/utils.mjs\",\n \"ext:deno_node/internal/hide_stack_frames.ts\": \"../ext/node/polyfills/internal/hide_stack_frames.ts\",\n \"ext:deno_node/internal... | 2025-06-09T15:58:25 |
golang/go | 5ab9f23977694ab87614fd30e081d294eb313efd | fcc036f03b07e58f76ed94bc9a9483ddef96f81c | cmd/compile, runtime: add checkptr instrumentation for unsafe.Add
Fixes #74431
Change-Id: Id651ea0b82599ccaff8816af0a56ddbb149b6f89
Reviewed-on: https://go-review.googlesource.com/c/go/+/692015
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randall <khr@go... | [
{
"path": "src/cmd/compile/internal/walk/expr.go",
"patch": "@@ -131,6 +131,14 @@ func walkExpr1(n ir.Node, init *ir.Nodes) ir.Node {\n \t\tn := n.(*ir.BinaryExpr)\n \t\tn.X = walkExpr(n.X, init)\n \t\tn.Y = walkExpr(n.Y, init)\n+\t\tif n.Op() == ir.OUNSAFEADD && ir.ShouldCheckPtr(ir.CurFunc, 1) {\n+\t\t\t/... | 2025-07-29T11:45:23 |
vuejs/vue | 1b60a88ee14ff3cda5ca86a319f8547374fce4eb | feee9ef6f68994d74ba687a62aa55b8074039c39 | adjust sameVnode check (fix #3176) | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -23,7 +23,11 @@ function isDef (s) {\n }\n \n function sameVnode (vnode1, vnode2) {\n- return vnode1.key === vnode2.key && vnode1.tag === vnode2.tag\n+ return (\n+ vnode1.key === vnode2.key &&\n+ vnode1.tag === vnode2.tag &&\n+ !vnode1.data === !vn... | 2016-06-29T16:03:37 |
mrdoob/three.js | 56785efe0fe335c9763c3fdcbb13d047b288b55f | 018473b999716f7ad21b325923af214c69800016 | WebGPURenderer: Fix isStorageInstancedBufferAttribute usage (#27737) | [
{
"path": "examples/jsm/renderers/webgl/WebGLBackend.js",
"patch": "@@ -422,7 +422,7 @@ class WebGLBackend extends Backend {\n \t\tgl.bindTransformFeedback( gl.TRANSFORM_FEEDBACK, transformFeedbackGPU );\n \t\tgl.beginTransformFeedback( gl.POINTS );\n \n-\t\tif ( attributes[ 0 ].isInstancedBufferAttribute )... | 2024-02-12T16:51:15 |
mrdoob/three.js | 1d2ab56161866a726dde2651e734a45bf94486c8 | 8732633e37ab1516d8d05f33139e91565cac5803 | SpotLightHelper: Fix offset when adjusting the scene / parent position (#27487)
* SpotLightHelper: Fix offset when adjusting the scene / parent position
* Ensure children matrices are up to date
* move matrix update to update function, simplify
* Formatting
* Ensure parent matrix is up to date
* Remove ... | [
{
"path": "src/helpers/SpotLightHelper.js",
"patch": "@@ -15,7 +15,6 @@ class SpotLightHelper extends Object3D {\n \n \t\tthis.light = light;\n \n-\t\tthis.matrix = light.matrixWorld;\n \t\tthis.matrixAutoUpdate = false;\n \n \t\tthis.color = color;\n@@ -67,6 +66,24 @@ class SpotLightHelper extends Object3D... | 2024-02-12T10:22:17 |
vuejs/vue | dde29d7388cdf523968551aa83942a494e0448fb | 3661b4e78e96a5f5a9c299adc2667b4400e3b5f2 | fix keep-alive nested child components | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -143,7 +143,7 @@ export function createPatchFunction (backend) {\n if (isDef(i = data.hook) && isDef(i = i.destroy)) i(vnode)\n for (i = 0; i < cbs.destroy.length; ++i) cbs.destroy[i](vnode)\n }\n- if (isDef(i = vnode.child)) {\n+ if (is... | 2016-06-28T08:12:43 |
denoland/deno | b575a6bfb147d18f33288c977ec38a2143138c28 | 9ce1a60d4c7b8b59126db8ee5a81606f492907fa | fix(ext/node): use primordials in `ext/node/polyfills/internal/fs/streams.mjs` (#29643)
Towards #24236. Replaces JS builtins with equivalent primordials. | [
{
"path": "ext/node/polyfills/internal/fs/streams.mjs",
"patch": "@@ -1,9 +1,19 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno... | 2025-06-09T13:06:28 |
mrdoob/three.js | 8aef01602b008153576f4599e31ea78e0e3f7aa0 | ddecdd14bae501f61b7c3d46d3a9f7529edc5b81 | DragControls: Add `rotate` mode. (#27689)
* added rotation to DragControls
* Update misc_controls_drag.html
Clean up.
* updated code per code review see #27689 for details
* Update DragControls.js
Clean up.
* Update DragControls.html
Clean up.
* Update DragControls.html
Fix type.
* Update... | [
{
"path": "docs/examples/en/controls/DragControls.html",
"patch": "@@ -111,6 +111,16 @@ <h3>[property:Boolean transformGroup]</h3>\n \t\t\tIf set to `true`, [name] does not transform individual objects but the entire group. Default is `false`.\n \t\t</p>\n \n+\t\t<h3>[property:String mode]</h3>\n+\t\t<p>\n+... | 2024-02-09T16:53:19 |
vuejs/vue | 827ac27a965e8937c8f1e31244820900ee055f0b | b791c5722f9820a9d23570baf8602227ad43d47a | fix eslint | [
{
"path": "test/ssr/ssr-bundle-render.spec.js",
"patch": "@@ -36,6 +36,7 @@ describe('SSR: bundle renderer', () => {\n createRenderer('app.js', renderer => {\n const context = { url: '/test' }\n renderer.renderToString(context, (err, res) => {\n+ expect(err).toBeNull()\n expec... | 2016-06-27T21:19:49 |
denoland/deno | 9ce1a60d4c7b8b59126db8ee5a81606f492907fa | fca2c56df38f163bb74b8f73a9b659352a2a3d25 | fix(ext/node): validate prime bigint candidate (#29653) | [
{
"path": "ext/node/polyfills/internal/crypto/random.ts",
"patch": "@@ -96,6 +96,9 @@ export function checkPrime(\n \n let op = op_node_check_prime_bytes_async;\n if (typeof candidate === \"bigint\") {\n+ if (candidate < 0) {\n+ throw new ERR_OUT_OF_RANGE(\"candidate\", \">= 0\", candidate);\n+ ... | 2025-06-09T05:45:20 |
mrdoob/three.js | 996903f37a0beb2ca5c27505139f9d9389a438b9 | c2b4d2fa5fb1464cf4caa81bc831b35572ce7b9d | WebGLRenderer: Add Support for Khronos Neutral Tone Mapping (#27668)
* added Commerce tone mapping
* fix test
* Update OutputPass.js
Add support for `CommereceToneMapping`.
* Update OutputShader.js
Add support for `CommerceToneMapping`.
* Update tonemapping_pars_fragment.glsl.js
Add reference for ... | [
{
"path": "examples/jsm/postprocessing/OutputPass.js",
"patch": "@@ -7,6 +7,7 @@ import {\n \tCineonToneMapping,\n \tAgXToneMapping,\n \tACESFilmicToneMapping,\n+\tKhronosNeutralToneMapping,\n \tSRGBTransfer\n } from 'three';\n import { Pass, FullScreenQuad } from './Pass.js';\n@@ -61,6 +62,7 @@ class Outpu... | 2024-02-09T14:16:31 |
vuejs/vue | f20b1a833367f5b0c5dc0cf9e243eb4968de1466 | 8c869731988a2bb961955a4c896227977acb4c3d | fix ssr test case for init -> beforeCreate change | [
{
"path": "test/ssr/ssr-string.spec.js",
"patch": "@@ -141,7 +141,7 @@ describe('SSR: renderToString', () => {\n data: {\n val: 'hi'\n },\n- init () {\n+ beforeCreate () {\n expect(lifecycleCount++).toBe(1)\n },\n created () {\n@@ -151,7 +151,7 @@ describe('... | 2016-06-27T16:53:12 |
denoland/deno | fca2c56df38f163bb74b8f73a9b659352a2a3d25 | 795c904322e8b12d86822c7d5202588a39d12046 | fix(ext/node): disable `parallel/test-crypto-secure-heap.js` test (#29658) | [
{
"path": "tests/node_compat/run_all_test_unmodified.ts",
"patch": "@@ -72,6 +72,7 @@ const NODE_IGNORED_TEST_CASES = new Set([\n \"parallel/test-benchmark-cli.js\", // testing private benchmark utility\n \"parallel/test-buffer-backing-arraybuffer.js\", // Deno does not allow heap-allocated ArrayBuffer,... | 2025-06-09T05:45:06 |
mrdoob/three.js | 158d8a10d44b076b15fb7c579b55e2477340ac79 | 92390099a7ec5a098fcd64017e6bf04d890800e4 | WebGPURenderer: Support clipping (#27691)
* clipping
* add ;
* remove testing code
* cleanup and adjust default settiing in example
* remove unused import
* cleanup ClippingNode
* combine methods
* rework to increase efficiency
* update screenshot
* fix asyncCompile
* fix against upstream... | [
{
"path": "examples/files.json",
"patch": "@@ -321,6 +321,7 @@\n \t\t\"webgpu_backdrop_water\",\n \t\t\"webgpu_camera_logarithmicdepthbuffer\",\n \t\t\"webgpu_clearcoat\",\n+\t\t\"webgpu_clipping\",\n \t\t\"webgpu_compute_audio\",\n \t\t\"webgpu_compute_particles\",\n \t\t\"webgpu_compute_particles_rain\","... | 2024-02-09T04:00:16 |
vuejs/vue | cf8aeddc122dc13870ac07eff1574b2c172feb18 | 3f91f6577f7873843e3c1e7a4cd1ab1a61bcf794 | fix v-once with v-for and remove unused _t method (fix #3155) | [
{
"path": "flow/compiler.js",
"patch": "@@ -65,6 +65,7 @@ declare type ASTElement = {\n \n static?: boolean,\n staticRoot?: boolean,\n+ staticProcessed?: boolean,\n \n text?: string,\n attrs?: Array<{ name: string, value: string }>,",
"additions": 1,
"deletions": 0,
"language": "JavaScr... | 2016-06-27T15:18:06 |
denoland/deno | 795c904322e8b12d86822c7d5202588a39d12046 | 9c28cb5d66517b135a10f4d59de1746153f76a65 | fix(ext/web): fix property configuration of event phase fields (#29635)
The properties like `Event.NONE` should have property configuration of
`writable: false, enumerable: true, configurable: false`, but they
currently have `enumerable: false, configurable: true, getter, setter:
undefined`.
This commit fixes it. Thi... | [
{
"path": "ext/web/02_event.js",
"patch": "@@ -308,22 +308,6 @@ class Event {\n return Event.BUBBLING_PHASE;\n }\n \n- static get NONE() {\n- return 0;\n- }\n-\n- static get CAPTURING_PHASE() {\n- return 1;\n- }\n-\n- static get AT_TARGET() {\n- return 2;\n- }\n-\n- static get BUBBLING... | 2025-06-09T04:52:35 |
mrdoob/three.js | 066664a4071c6decd099a7969272d1b49fef0732 | 49f785bd3eaba642427a4e7e43aae6f203bf0527 | RenderTarget: add count option for MRT (#26427)
* WebGLRenderTarget: add count option for MRT
* WebGLRenderTarget: resize all attachments
* Cleanup MRT textures code
* Docs: cleanup
* Move changes
* RenderTarget: fix conflicts
* Legacy: update deprecation version
* Legacy: update deprecation hint | [
{
"path": "docs/api/ar/renderers/WebGLMultipleRenderTargets.html",
"patch": "@@ -1,75 +0,0 @@\n-<!DOCTYPE html>\n-<html lang=\"ar\">\n-\t<head>\n-\t\t<meta charset=\"utf-8\" />\n-\t\t<base href=\"../../../\" />\n-\t\t<script src=\"page.js\"></script>\n-\t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"p... | 2024-02-08T11:55:45 |
vuejs/vue | 3f91f6577f7873843e3c1e7a4cd1ab1a61bcf794 | 1d02463ced3e13caa8ea394e1efc9e094db4155e | fix id-resolved appear transition (fix #3157) | [
{
"path": "src/platforms/web/runtime/modules/transition.js",
"patch": "@@ -42,17 +42,15 @@ export function enter (vnode: VNodeWithData) {\n el._leaveCb.cancelled = true\n el._leaveCb()\n }\n+\n const data = vnode.data.transition\n if (!data) {\n return\n }\n- const isAppear = !vnode.con... | 2016-06-27T00:03:39 |
denoland/deno | 9c28cb5d66517b135a10f4d59de1746153f76a65 | b8edafd44688fe602ffb0c8572da0957678c80d3 | fix(ext/node): update interaction between event emitters and domains (#29632) | [
{
"path": "ext/node/polyfills/domain.ts",
"patch": "@@ -1,25 +1,30 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n // This code has been inspired by https://github.com/bevry/domain-browser/commit/8bce7f4a093966ca850d... | 2025-06-09T03:06:43 |
mrdoob/three.js | 3ebe3ddd5015096b19f6e6dbb533ff56e0737881 | 66ed062bfceb871e756645b5e2f68ac39a512d6f | MorphNode: Fix loop performance (#27707) | [
{
"path": "examples/jsm/nodes/accessors/MorphNode.js",
"patch": "@@ -9,6 +9,7 @@ import { textureLoad } from './TextureNode.js';\n import { vertexIndex } from '../core/IndexNode.js';\n import { ivec2, int } from '../shadernode/ShaderNode.js';\n import { DataArrayTexture, Vector2, Vector4, FloatType } from '... | 2024-02-08T06:30:12 |
vuejs/vue | 9344bd7a52ddec802017bc39ab71175eb41f606f | 5854f0f781af34a6cbe9042dc10b199858023f3a | better bundle renderer error handling | [
{
"path": "src/server/create-bundle-renderer.js",
"patch": "@@ -8,12 +8,16 @@ export function createBundleRendererCreator (createRenderer) {\n renderToString: (context, cb) => {\n runInVm(code, context).then(app => {\n renderer.renderToString(app, cb)\n- })\n+ }).catch(... | 2016-06-26T15:50:14 |
mrdoob/three.js | 66ed062bfceb871e756645b5e2f68ac39a512d6f | d0ee260c95746bae20f3a911bd944d85bb52128a | WebGPURenderer: Fix attribute data getting reset when using vec3 in WebGPU (#27708) | [
{
"path": "examples/jsm/renderers/webgpu/utils/WebGPUAttributeUtils.js",
"patch": "@@ -49,6 +49,12 @@ class WebGPUAttributeUtils {\n \t\t\t\tbufferAttribute.itemSize = 4;\n \t\t\t\tarray = new array.constructor( bufferAttribute.count * 4 );\n \n+\t\t\t\tfor ( let i = 0; i < bufferAttribute.count; i ++ ) {\n... | 2024-02-08T06:29:59 |
denoland/deno | b8edafd44688fe602ffb0c8572da0957678c80d3 | dfe56f8b4524f2e2f80d80cd0753f886822e0a90 | fix(ext/node): match WebCrypto tag too small error msg with Node (#29654)
Enables `parallel/test-crypto-webcrypto-aes-decrypt-tag-too-small.js`
Ref https://github.com/denoland/deno/issues/29637 | [
{
"path": "ext/crypto/00_crypto.js",
"patch": "@@ -734,7 +734,7 @@ class SubtleCrypto {\n normalizedAlgorithm.tagLength / 8\n ) {\n throw new DOMException(\n- \"Tag length overflows ciphertext\",\n+ \"The provided data is too small\",\n \"Opera... | 2025-06-08T15:37:31 |
vuejs/vue | 3245c72314fe0bd869338804dd7f8b63d8a92f5f | 175282ea05da6d8de86a4ca6691d69273edead82 | fix ssr dev config | [
{
"path": "build/webpack.ssr.dev.config.js",
"patch": "@@ -4,7 +4,6 @@ var alias = require('./alias')\n module.exports = {\n target: 'node',\n entry: path.resolve(__dirname, 'webpack.ssr.dev.entry.js'),\n- target: 'node',\n output: {\n path: path.resolve(__dirname, '../packages/vue-server-rendere... | 2016-06-25T12:14:16 |
mrdoob/three.js | 762a1340908d187cf5674b15d5f91957c52ff06e | a988218a34e5b6fb6fd51267139c098720b8ed0e | WebGPURenderer: Fix `vec2` and `vec3` for `storageObject` in StorageBufferNode (#27697)
* improve tests
* fix vec2, vec3 packing
* cleanup
* always switch buffer to support reading and align with toAttribute() | [
{
"path": "examples/jsm/renderers/webgl/WebGLBackend.js",
"patch": "@@ -437,11 +437,10 @@ class WebGLBackend extends Backend {\n \n \t\t\t\tthis.textureUtils.copyBufferToTexture( dualAttributeData.transformBuffer, dualAttributeData.pbo );\n \n-\t\t\t} else {\n+\t\t\t}\n \n-\t\t\t\tdualAttributeData.switchBu... | 2024-02-08T03:43:46 |
denoland/deno | dfe56f8b4524f2e2f80d80cd0753f886822e0a90 | f3920ef2ecca1bbb229fb075a87d61ea41418d4e | fix(ext/node): internal getOpenSSLSecLevel() for tests (#29657)
Enables `parallel/test-crypto-sec-level.js`
Ref https://github.com/denoland/deno/issues/29637 | [
{
"path": "ext/node/polyfills/internal/crypto/util.ts",
"patch": "@@ -228,6 +228,10 @@ export function setEngine(_engine: string, _flags: typeof constants) {\n notImplemented(\"crypto.setEngine\");\n }\n \n+export function getOpenSSLSecLevel(): number {\n+ return 5; // highest sec level, used in tests.\n... | 2025-06-08T15:37:14 |
golang/go | d7bd7773ebe0ffe7d7fae92acb77e10ad0539dd3 | 4b6cbc377f9b3d2598b0d30a37c9cf3797ba6e12 | go/parser: remove safePos
The logic in safePos is wrong, since (*token.File).Offset does not panic,
so this function was basically a noop (since CL 559436).
To work properly it would have to be:
return p.file.Pos(p.file.Offset(pos))
Since it effectively acts as a no-op and hasn't been noticed since,
let's go ahead ... | [
{
"path": "src/go/parser/parser.go",
"patch": "@@ -455,25 +455,6 @@ var exprEnd = map[token.Token]bool{\n \ttoken.RBRACE: true,\n }\n \n-// safePos returns a valid file position for a given position: If pos\n-// is valid to begin with, safePos returns pos. If pos is out-of-range,\n-// safePos returns the... | 2025-08-04T15:25:37 |
vuejs/vue | 7304385c11dc23dc89278be0995817c64619910d | 76d7809a113faa29053568b54727565550658ac0 | fix global mixin recursive name lookup | [
{
"path": "src/core/global-api/mixin.js",
"patch": "@@ -9,6 +9,9 @@ export function initMixin (Vue: GlobalAPI) {\n // update constructors that are already created\n config._ctors.forEach(Ctor => {\n Ctor.options = mergeOptions(Ctor['super'].options, Ctor.extendOptions)\n+ if (Ctor.options... | 2016-06-24T15:43:17 |
mrdoob/three.js | 76bff1eb9584c47d521755b87e49246079a8ae24 | bd885e92f3fe8f71fc1160492e9a81ea9d8d94fe | GLTFExporter: Better error handling when using invalid image data. (#27700) | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -1288,7 +1288,17 @@ class GLTFWriter {\n \n \t\t\t} else {\n \n-\t\t\t\tctx.drawImage( image, 0, 0, canvas.width, canvas.height );\n+\t\t\t\tif ( ( typeof HTMLImageElement !== 'undefined' && image instanceof HTMLImageElement ) ||\n+\t\t\t\t\t(... | 2024-02-07T10:06:37 |
denoland/deno | f3920ef2ecca1bbb229fb075a87d61ea41418d4e | 635e3744bde6194d571654c5037fa6e16f852555 | fix(ext/node): validate randomUUID() options (#29656)
Enables `parallel/test-crypto-randomuuid.js`
Ref https://github.com/denoland/deno/issues/29637 | [
{
"path": "ext/node/polyfills/internal/crypto/random.ts",
"patch": "@@ -298,7 +298,18 @@ function unsignedBigIntToBuffer(bigint: bigint, name: string) {\n return Buffer.from(padded, \"hex\");\n }\n \n-export const randomUUID = () => globalThis.crypto.randomUUID();\n+export function randomUUID(options) {\n... | 2025-06-08T15:36:52 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.