repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
765905e3bd13dcb048388890dba2ea47f6e58711
2ee4b31242e426df757aa09450b744e0af8cb08d
debug/elf: don't panic if symtab too small No test case because the problem can only happen for invalid data. Let the fuzzer find cases like this. For #47653 Fixes #75130 Change-Id: Ie6015564bb98334377383bbc16d79119dc4e36f9 Reviewed-on: https://go-review.googlesource.com/c/go/+/698855 Reviewed-by: Tobias Klauser <to...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -692,6 +692,9 @@ func (f *File) getSymbols64(typ SectionType) ([]Symbol, []byte, error) {\n \tif len(data)%Sym64Size != 0 {\n \t\treturn nil, nil, errors.New(\"length of symbol section is not a multiple of Sym64Size\")\n \t}\n+\tif len(data) == 0 {\n+\t\tretur...
2025-08-24T20:17:56
vuejs/vue
eef040ebd0c459a9ee7ed930b0b9a530803687ba
0f8ad06b2c580fd9e484b2d559a59fc06914f22a
vdom: teardown stale directives on patch (fix #3491)
[ { "path": "src/core/vdom/modules/directives.js", "patch": "@@ -8,6 +8,11 @@ export default {\n },\n update: function updateDirectives (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n applyDirectives(oldVnode, vnode, 'update')\n+ // if old vnode has directives but new vnode doesn't\n+ // we ...
2016-08-23T10:01:21
mrdoob/three.js
f91fe5fc251a88b0d0c3ae9f47c68277ecf0d0f3
f2766a0dfc47a790cd64dec6f9b7132d6fee9fa8
Editor: Fixed non-localized prompt messages (#28260) * localize the prompts * no brackets
[ { "path": "editor/index.html", "patch": "@@ -226,7 +226,7 @@\n \n \t\t\t\tconst file = hash.slice( 6 );\n \n-\t\t\t\tif ( confirm( 'Any unsaved data will be lost. Are you sure?' ) ) {\n+\t\t\t\tif ( confirm( editor.strings.getKey( 'prompt/file/open' ) ) ) {\n \n \t\t\t\t\tconst loader = new THREE.FileLoader...
2024-05-03T11:09:55
denoland/deno
8150e761c943c327cf0dbc4daf44926a76b91c67
f6176a1674d21a02b0634540ba18d89129876fc3
fix(install): purge more packages from lockfile on config change (#29953) Co-authored-by: nathanwhit <nathanwhit@users.noreply.github.com>
[ { "path": "Cargo.lock", "patch": "@@ -941,7 +941,7 @@ dependencies = [\n \"chrono\",\n \"deno_bench_util\",\n \"deno_cache_dir\",\n- \"deno_lockfile 0.30.1\",\n+ \"deno_lockfile 0.30.2\",\n \"deno_semver\",\n \"deno_terminal 0.2.2\",\n \"deno_tower_lsp\",\n@@ -1519,7 +1519,7 @@ dependencies = [\n \"d...
2025-07-01T15:45:02
golang/go
2ee4b31242e426df757aa09450b744e0af8cb08d
b21867b1a2a8e276257e3cb81f4a1dc7e8f9e2cd
net/http: Ensure that CONNECT proxied requests respect MaxResponseHeaderBytes Currently, CONNECT proxied requests use an unlimited Reader. As a result, a malicious or misbehaving proxy server can send an unlimited number of bytes to a client; causing the client to indefinitely receive bytes until it runs out of memory...
[ { "path": "src/net/http/transport.go", "patch": "@@ -325,6 +325,13 @@ func (t *Transport) readBufferSize() int {\n \treturn 4 << 10\n }\n \n+func (t *Transport) maxHeaderResponseSize() int64 {\n+\tif t.MaxResponseHeaderBytes > 0 {\n+\t\treturn t.MaxResponseHeaderBytes\n+\t}\n+\treturn 10 << 20 // conservati...
2025-08-25T13:07:25
mrdoob/three.js
678c80cabfedb728782261ac27479376e3f6ffc2
697a873e88ceae9f711fa06042824b3da21fe6a0
lint fix (#28261)
[ { "path": "editor/js/Loader.js", "patch": "@@ -99,7 +99,7 @@ function Loader( editor ) {\n \n \t\t\t\t\t}, function ( error ) {\n \n-\t\t\t\t\t\tconsole.error( error )\n+\t\t\t\t\t\tconsole.error( error );\n \n \t\t\t\t\t} );\n \n@@ -941,7 +941,7 @@ function Loader( editor ) {\n \t\t\t\t{\n \n \t\t\t\t\tcon...
2024-05-03T01:54:13
vuejs/vue
0f8ad06b2c580fd9e484b2d559a59fc06914f22a
8d03a452de61634428923a4dabbd22c24b91f3b3
Fix Spelling (#3496) * Fix Spelling * Fix other instances.
[ { "path": "packages/vue-server-renderer/build.js", "patch": "@@ -3459,7 +3459,7 @@ function parse(template, options) {\n \n if (process.env.VUE_ENV !== 'server' && isForbiddenTag(element)) {\n element.forbidden = true;\n- process.env.NODE_ENV !== 'production' && warn$1('Templates should...
2016-08-22T21:03:00
denoland/deno
4150ef401899a41dc83fe40f272aa069440d3a2b
f033cc116dfdbfd3735a6194de7e46cb4923d2d4
docs: fix link in contribution guide (#29943) Signed-off-by: ikkz <ylei.mk@gmail.com>
[ { "path": ".github/CONTRIBUTING.md", "patch": "@@ -65,7 +65,7 @@ To use a development version of the LSP in VSCode:\n In addition to the above make sure that:\n \n > To use the commands below, you need to first install the necessary tools on\n-> your system as described [here](building_from_source).\n+> you...
2025-06-30T06:17:43
mrdoob/three.js
2802562d5a93b2d96aaf286b173b29db3489494a
5a6eb7ab8bc8d5ccb887aea2d8af92b0502b0ee2
Editor: Fixed outliner's low contrast issue in dark theme (#28248) * hi con * indent using tabs
[ { "path": "editor/css/main.css", "patch": "@@ -661,10 +661,13 @@ select {\n \t\t}\n \n \t.Outliner {\n-\t\tcolor: #888;\n \t\tbackground: #222;\n \t}\n \n+\t\t.Outliner .option {\n+\t\t\tcolor: #999;\n+\t\t}\n+\n \t\t.Outliner .option:hover {\n \t\t\tbackground-color: rgba(21,60,94,0.5);\n \t\t}", "addi...
2024-05-02T08:30:34
golang/go
b21867b1a2a8e276257e3cb81f4a1dc7e8f9e2cd
d19e377f6ea3b84e94d309894419f2995e7b56bd
net/http: require exact match for CrossSiteProtection bypass patterns Fixes #75054 Fixes CVE-2025-47910 Change-Id: I6a6a696440c45c450d2cd681f418b01aa0422a60 Reviewed-on: https://go-review.googlesource.com/c/go/+/699275 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-...
[ { "path": "src/net/http/csrf.go", "patch": "@@ -77,13 +77,21 @@ func (c *CrossOriginProtection) AddTrustedOrigin(origin string) error {\n \treturn nil\n }\n \n-var noopHandler = HandlerFunc(func(w ResponseWriter, r *Request) {})\n+type noopHandler struct{}\n+\n+func (noopHandler) ServeHTTP(ResponseWriter, *...
2025-08-26T20:52:39
vuejs/vue
92903f320c2254bf0eeaa5e3fdf821e1259e50d0
d2df58e547a7e1018c72a52714be7dee4ad06922
fix flow / missing annotations
[ { "path": "src/core/vdom/modules/ref.js", "patch": "@@ -1,18 +1,18 @@\n-/* flow */\n+/* @flow */\n \n import { remove } from 'shared/util'\n \n export default {\n- create (_, vnode) {\n+ create (_: any, vnode: VNodeWithData) {\n registerRef(vnode)\n },\n- update (oldVnode, vnode) {\n+ update (oldV...
2016-08-20T16:11:33
denoland/deno
a70f1cfab41a883e7fca711a3025e52d337d9f36
8fcbb0fa4370e11a09f72f4546cdb592476e9714
fix(node): use primordials more consistently in `_events.mjs` (#29930) Fixes #29929 --------- Signed-off-by: Nicholas Berlette <11234104+nberlette@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/node/polyfills/_events.mjs", "patch": "@@ -29,13 +29,27 @@ import { primordials } from \"ext:core/mod.js\";\n const {\n ArrayPrototypeMap,\n ArrayPrototypeFilter,\n+ ArrayPrototypePush,\n+ ArrayPrototypeShift,\n+ ArrayPrototypeUnshift,\n+ Error,\n+ ErrorCaptureStackTrace,\n+ Functio...
2025-06-28T17:03:21
mrdoob/three.js
9287a98ab32db06e541a379291bc95e97984f0e9
5a3b00adacddb7cdc01feeb4ea53f92787781580
fix unreadable text in viewport (#28253)
[ { "path": "editor/css/main.css", "patch": "@@ -308,7 +308,7 @@ select {\n \tbottom: 0;\n }\n \n-\t#viewport #info {\n+\t#viewport .Text {\n \t\ttext-shadow: 1px 1px 0 rgba(0,0,0,0.25);\n \t\tpointer-events: none;\n \t}", "additions": 1, "deletions": 1, "language": "CSS" } ]
2024-05-02T08:30:11
golang/go
49a2f3ed871c044eb093b16c09202b7dcd875878
afc51ed007ad814fc11273f39055aeea71172557
net: allow zero value destination address in WriteMsgUDPAddrPort The existing address validity checks already cover both connected and non-connected sockets. Pass a nil sockaddr just like WriteMsgUDP, when the address is zero value. TestWriteToUDP is extended to cover the netip APIs. Fixes #74841 Change-Id: I2708e7...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -260,9 +260,6 @@ func addrPortToSockaddrInet6(ap netip.AddrPort) (syscall.SockaddrInet6, error) {\n \t// to an IPv4-mapped IPv6 address.\n \t// The error message is kept consistent with ipToSockaddrInet6.\n \taddr := ap.Addr()\n-\tif !addr.IsValid() {\n-\t\t...
2025-08-01T16:42:27
vuejs/vue
d2df58e547a7e1018c72a52714be7dee4ad06922
16ce0f13d5e701821c5b64cf73d851b6762906c9
move v-show marker to runtime so that render functions work as expected (fix #3488)
[ { "path": "flow/vnode.js", "patch": "@@ -38,15 +38,15 @@ declare interface VNodeData {\n staticClass?: string;\n class?: any;\n style?: Array<Object> | Object;\n- show?: true;\n props?: { [key: string]: any };\n attrs?: { [key: string]: string };\n domProps?: { [key: string]: any };\n hook?: ...
2016-08-20T15:14:26
mrdoob/three.js
6d905135f5f915277c11f1c41a362be896201994
32d19ebeef7a5a3b7a86a4865df3f883c050e88f
Examples: Fix WebGPU logarithmic detph buffer demo. (#28249)
[ { "path": "examples/webgpu_camera_logarithmicdepthbuffer.html", "patch": "@@ -118,9 +118,9 @@\n \t\t\t\t{ size: 1e19, scale: 1.0, label: 'mind boggling (1000 light years)' }\n \t\t\t];\n \n-\t\t\tinit();\n+\t\t\tinit().then( animate );\n \n-\t\t\tfunction init() {\n+\t\t\tasync function init() {\n \n \t\t\t...
2024-05-01T14:55:04
denoland/deno
c36a20f6bb6ff45d11b9720b65d8c9d90ce7dc84
8019d9db95e014166a55f789b5dfa46992b1a5a5
feat(run): resolve main module with workspace resolver (#29928) Closes https://github.com/denoland/deno/issues/29897. Closes https://github.com/denoland/deno/issues/14066. Closes https://github.com/denoland/deno/issues/19955. With this PR we'll attempt to resolve bare specifiers passed to `run` or `serve` with the wo...
[ { "path": "cli/args/mod.rs", "patch": "@@ -353,6 +353,110 @@ fn resolve_lint_rules_options(\n }\n }\n \n+pub struct WorkspaceMainModuleResolver {\n+ workspace_resolver: Arc<deno_resolver::workspace::WorkspaceResolver<CliSys>>,\n+ node_resolver: Arc<crate::node::CliNodeResolver>,\n+}\n+\n+impl WorkspaceM...
2025-06-28T02:14:30
golang/go
fa18c547cd891e526d2e01cfbc17961de45c31a5
bfd130db02336a174dab781185be369f089373ba
syscall: sort Windows env block in StartProcess Fixes #29530 Change-Id: Ia28c78274b9288bfa5de9ccb142a452d291a5b66 Reviewed-on: https://go-review.googlesource.com/c/go/+/694435 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-pr...
[ { "path": "src/syscall/exec_windows.go", "patch": "@@ -9,6 +9,7 @@ package syscall\n import (\n \t\"internal/bytealg\"\n \t\"runtime\"\n+\t\"slices\"\n \t\"sync\"\n \t\"unicode/utf16\"\n \t\"unsafe\"\n@@ -113,6 +114,49 @@ func makeCmdLine(args []string) string {\n \treturn string(b)\n }\n \n+func envSorted(...
2025-08-08T19:44:42
vuejs/vue
fc78242a07eeae706bb8c1b1eb3fc50396ea02ce
3bd7e5880190803ef8945fcd6d20ca87f13c1a1f
invoke remove hook before destroy hook (fix #3481)
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -213,8 +213,8 @@ export function createPatchFunction (backend) {\n const ch = vnodes[startIdx]\n if (isDef(ch)) {\n if (isDef(ch.tag)) {\n- invokeDestroyHook(ch)\n removeAndInvokeRemoveHook(ch)\n+ invokeDestroyH...
2016-08-19T19:16:45
mrdoob/three.js
258c28f958a784fda02eac3ff8a0b4a255fd7bbc
a6130f8f112148d1eb658d99b3ccaec8bb322f8c
Raycaster: add Raycaster.stopTraversal() (#27709) * Raycaster: add stop traversal on demand * Raycaster: fix CI warn Implicit operand conversion * Raycaster: stopTraversal on current branch only * raycast stop traversal of children when return true * Update Raycaster.js Fix code style. * Update Rayca...
[ { "path": "src/core/Raycaster.js", "patch": "@@ -101,13 +101,15 @@ function ascSort( a, b ) {\n \n function intersect( object, raycaster, intersects, recursive ) {\n \n+\tlet stopTraversal = false;\n+\n \tif ( object.layers.test( raycaster.layers ) ) {\n \n-\t\tobject.raycast( raycaster, intersects );\n+\t\...
2024-04-27T00:11:33
denoland/deno
8019d9db95e014166a55f789b5dfa46992b1a5a5
3b8df8fde68b8565e0c5c33765ff2721b63ef873
fix(check): don't detect tsconfigs with no deno.json/package.json or --no-config (#29925)
[ { "path": "cli/tools/publish/module_content.rs", "patch": "@@ -284,6 +284,7 @@ mod test {\n \n use deno_config::workspace::WorkspaceDiscoverStart;\n use deno_path_util::url_from_file_path;\n+ use deno_resolver::factory::ConfigDiscoveryOption;\n use deno_resolver::factory::WorkspaceDirectoryProvider;\...
2025-06-27T22:09:55
vuejs/vue
13ce3a25599857d47959f38720f876c356a4925a
ba5fb31188467c9f07cdcfa94e9469e172098ec5
fix v-on chained keyCodes (fix #3478)
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -41,25 +41,40 @@ function genHandler (\n ? handler.value\n : `function($event){${handler.value}}`\n } else {\n- let code = 'function($event){'\n+ let code = ''\n+ const keys = []\n for (const key in handler.modifiers) {\n- ...
2016-08-18T16:17:17
golang/go
bfd130db02336a174dab781185be369f089373ba
dae9e456ae6992b3c19a8c5039090ee9ca4d9b7d
internal/poll: don't use stack-allocated WSAMsg parameters WSAMsg parameters should be passed to Windows as heap pointers instead of stack pointers. This is because Windows might access the memory after the syscall returned in case of a non-blocking operation (which is the common case), and if the WSAMsg is on the sta...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -144,19 +144,47 @@ func (o *operation) ClearBufs() {\n \to.bufs = o.bufs[:0]\n }\n \n-func newWSAMsg(p []byte, oob []byte, flags int) windows.WSAMsg {\n-\treturn windows.WSAMsg{\n-\t\tBuffers: &syscall.WSABuf{\n-\t\t\tLen: uint32(len(p)),\n-\t\t\tBuf...
2025-08-25T07:57:49
mrdoob/three.js
b175d49fcabb4b9bb17216bceba8cd07fde5eb9b
360c0e9636cb5577e217e235a5a3eaabdb1463ed
Playground: Fix `PreviewEditor` (#28223) * Playground: Fix `PreviewEditor` * add antialias
[ { "path": "playground/editors/PreviewEditor.js", "patch": "@@ -2,8 +2,9 @@ import { OrbitControls } from 'three/addons/controls/OrbitControls.js';\n import { ViewHelper } from 'three/addons/helpers/ViewHelper.js';\n import { Element, LabelElement, SelectInput } from 'flow';\n import { BaseNodeEditor } from ...
2024-04-26T00:08:05
denoland/deno
3b8df8fde68b8565e0c5c33765ff2721b63ef873
c73b91318beb2575e1166d455aeb76996c513fcd
fix(ext/node): don't show deprecation warnings for dependencies (#29909) Note: We found a case where the v8::StackTrace::current_stack_trace(scope, 20) returns the stack trace which only contains ext: entries in op_node_call_is_from_dependency. Steps to reproduce: ``` touch package.json deno i npm:vitest ``` ``` // ...
[ { "path": "ext/node/ops/util.rs", "patch": "@@ -106,6 +106,7 @@ pub fn op_node_call_is_from_dependency<\n let Some(stack_trace) = v8::StackTrace::current_stack_trace(scope, 20) else {\n return false;\n };\n+ let mut only_internal = true;\n for i in 0..stack_trace.get_frame_count() {\n let Som...
2025-06-27T13:27:45
vuejs/vue
ba5fb31188467c9f07cdcfa94e9469e172098ec5
6bdb577d4abd90f2bf6f21c29e6af07d598f7ac4
fix transition insert hook duplicate invocation on slot nodes (fix #3474)
[ { "path": "flow/vnode.js", "patch": "@@ -46,6 +46,7 @@ declare interface VNodeData {\n on?: ?{ [key: string]: Function | Array<Function> };\n nativeOn?: { [key: string]: Function | Array<Function> };\n transition?: Object;\n+ transitionInjected?: boolean;\n inlineTemplate?: {\n render: Function...
2016-08-18T16:00:31
golang/go
ea55ca360005c607fa54304d95c6821a6ce20e7c
9ae2f1fb574e879402bc5bbac1d2b5d84acce6cb
runtime: skip doInit of plugins in runtime.main Plugins may be loaded in the user's init code. If loading fails, md.bad is true, and doInit should not be executed. If loading succeeds, the plugin must run modulesinit and typelinksinit before doInit. Here is not protected by pluginsMu, and in concurrent scenarios it is...
[ { "path": "src/cmd/cgo/internal/testplugin/plugin_test.go", "patch": "@@ -422,3 +422,11 @@ func TestIssue67976(t *testing.T) {\n \tglobalSkip(t)\n \tgoCmd(t, \"build\", \"-buildmode=plugin\", \"-o\", \"issue67976.so\", \"./issue67976/plugin.go\")\n }\n+\n+func TestIssue75102(t *testing.T) {\n+\tglobalSkip(t...
2025-08-20T13:33:42
mrdoob/three.js
7c449d803bbdf9f6255d1321f6168711394c6641
5cfc5dba4f8b26bce30f42310d5b9289e40b011e
Examples: Fixed webgpu_loader_materialx.
[ { "path": "examples/webgpu_loader_materialx.html", "patch": "@@ -38,8 +38,6 @@\n \n \t\t\timport WebGPURenderer from 'three/addons/renderers/webgpu/WebGPURenderer.js';\n \n-\t\t\timport { nodeFrame } from './jsm/renderers/webgl-legacy/nodes/WebGLNodes.js';\n-\n \t\t\tconst SAMPLE_PATH = 'https://raw.githubu...
2024-04-25T04:49:51
denoland/deno
9026234a2347ad8741a4fa032dd11b22c94e5750
7d36d8e8ff7ff39727c8b325d132ad047541ca1f
fix(ext/node): keep BOM in buffer.toString('utf8') (#29896)
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -1154,7 +1154,7 @@ function _base64Slice(buf, start, end) {\n return forgivingBase64Encode(buf.slice(start, end));\n }\n }\n-const decoder = new TextDecoder();\n+const decoder = new TextDecoder(\"utf-8\", { ignoreBOM: true });\n \n funct...
2025-06-27T03:41:27
vuejs/vue
6bdb577d4abd90f2bf6f21c29e6af07d598f7ac4
e62165ca89898f42374605929322a457afe31b42
fix name warning when instantiating extended components (fix #3472)
[ { "path": "src/core/util/options.js", "patch": "@@ -36,7 +36,7 @@ if (process.env.NODE_ENV !== 'production') {\n }\n \n strats.name = function (parent, child, vm) {\n- if (vm) {\n+ if (vm && child) {\n warn(\n 'options \"name\" can only be used as a component definition option, ' +\n...
2016-08-18T15:17:45
mrdoob/three.js
1395e9dbcf4791797a2b47e0fc0d80e8916954af
5493cfa86c57d66c260e8b62655c2bd3d2c98378
Editor: Fix glTF assets with external KTX2 textures. (#28206)
[ { "path": "editor/js/Loader.js", "patch": "@@ -974,7 +974,7 @@ function Loader( editor ) {\n \t\tconst dracoLoader = new DRACOLoader();\n \t\tdracoLoader.setDecoderPath( '../examples/jsm/libs/draco/gltf/' );\n \n-\t\tconst ktx2Loader = new KTX2Loader();\n+\t\tconst ktx2Loader = new KTX2Loader( manager );\n ...
2024-04-24T09:09:22
golang/go
bbd5342a62baa2fa6b42d444b05717c2563d0764
ed7f804775725149088a71108efd0b20ef9f206f
net: fix cgoResSearch CL 457439 mistakenly redeclared size inside the for loop, causing cgoResSearch to always fail and fall back to goLookupCNAME. Change-Id: I3e142d34287388284a8998ac13761b1e0c2911a5 Reviewed-on: https://go-review.googlesource.com/c/go/+/696895 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit...
[ { "path": "src/net/cgo_unix.go", "patch": "@@ -351,7 +351,7 @@ func cgoResSearch(hostname string, rtype, class int) ([]dnsmessage.Resource, err\n \n \tvar size int\n \tfor {\n-\t\tsize := _C_res_nsearch(state, (*_C_char)(unsafe.Pointer(s)), class, rtype, buf, bufSize)\n+\t\tsize = _C_res_nsearch(state, (*_C...
2025-08-18T08:55:40
denoland/deno
7d36d8e8ff7ff39727c8b325d132ad047541ca1f
65e1aaefba8180365db2433c72cbf7361a1b8fdb
fix(ext/node): fix reference error in node:stream (#29894)
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -1460,6 +1460,11 @@ export class ERR_HTTP_TRAILER_INVALID extends NodeError {\n );\n }\n }\n+export class ERR_ILLEGAL_CONSTRUCTOR extends NodeTypeError {\n+ constructor() {\n+ super(\"ERR_ILLEGAL_CONSTRUCTOR\", \"Illegal constructor\"...
2025-06-27T00:45:52
vuejs/vue
e62165ca89898f42374605929322a457afe31b42
1e7467505327f31b401c8ed5d0229bead6157ef3
ensure v-model to have higher priority than v-on events (fix #3468)
[ { "path": "src/compiler/helpers.js", "patch": "@@ -46,7 +46,8 @@ export function addHandler (\n el: ASTElement,\n name: string,\n value: string,\n- modifiers: ?{ [key: string]: true }\n+ modifiers: ?{ [key: string]: true },\n+ important: ?boolean\n ) {\n // check capture modifier\n if (modifier...
2016-08-17T20:40:45
golang/go
ed7f804775725149088a71108efd0b20ef9f206f
a21249436b6e1fd47356361d53dc053bbc074f90
os: set full name for Roots created with Root.OpenRoot Set the Name for a Root created within a Root to be the concatenation of the parent's path and the name used to open the child. This matches the behavior for files opened within a Root with Root.Open. Fixes #73868 Change-Id: Idf4021602ac25556721b7ef6924dec652c7...
[ { "path": "src/os/root_test.go", "patch": "@@ -1919,3 +1919,36 @@ func TestRootWriteReadFile(t *testing.T) {\n \t\tt.Fatalf(\"root.ReadFile(%q) = %q, %v; want %q, nil\", name, got, err, want)\n \t}\n }\n+\n+func TestRootName(t *testing.T) {\n+\tdir := t.TempDir()\n+\troot, err := os.OpenRoot(dir)\n+\tif err...
2025-08-22T17:47:01
denoland/deno
65e1aaefba8180365db2433c72cbf7361a1b8fdb
de02d99a17321a843dd6cd3bb060d78a5eb6c241
fix(ext/node): add type check to LibuvStreamWrap.writeBuffer (#29879)
[ { "path": "ext/node/polyfills/internal_binding/stream_wrap.ts", "patch": "@@ -37,6 +37,7 @@ const {\n Symbol,\n TypedArrayPrototypeSlice,\n Uint8Array,\n+ Uint8ArrayPrototype,\n } = primordials;\n import { op_can_write_vectored, op_raw_write_vectored } from \"ext:core/ops\";\n \n@@ -51,6 +52,7 @@ imp...
2025-06-26T23:48:57
mrdoob/three.js
c5c42fb7d0af9905f1527c741b898798feb48e8b
50d4f7407043b6b9cb7bd4c0bdeb93e917555ee1
Examples: Fix `monaco-editor` (#28201)
[ { "path": "examples/jsm/nodes/materials/NodeMaterial.js", "patch": "@@ -146,6 +146,8 @@ class NodeMaterial extends ShaderMaterial {\n \n \tsetupClipping( builder ) {\n \n+\t\tif ( builder.clippingContext === null ) return null;\n+\n \t\tconst { globalClippingCount, localClippingCount } = builder.clippingCon...
2024-04-23T17:25:12
vuejs/vue
ce798c6f68624b156c484fea5f0e4e8abbee6d60
e422a98150806d9dde395b3398be42ae3d3bb85e
fix ref on empty component root (fix #3455)
[ { "path": "src/core/vdom/modules/ref.js", "patch": "@@ -17,7 +17,7 @@ export default {\n }\n }\n \n-function registerRef (vnode: VNodeWithData, isRemoval: ?boolean) {\n+export function registerRef (vnode: VNodeWithData, isRemoval: ?boolean) {\n const key = vnode.data.ref\n if (!key) return\n ", "a...
2016-08-16T14:27:38
golang/go
f2db0dca0b0399c08319d22cbcbfa83be2bb781a
d86ec924993bfb824dfb6f618a46ea205fdbf261
net/http/httptest: redirect example.com requests to server The default server cert used by NewServer already includes example.com in its DNSNames, and by default, the client's RootCA configuration means it won't trust a response from the real example.com. Fixes #31054 Change-Id: I0686977e5ffe2c2f22f3fc09a47ee8ecc447...
[ { "path": "doc/next/6-stdlib/99-minor/net/http/httptest/31054.md", "patch": "@@ -0,0 +1,2 @@\n+The HTTP client returned by [Server.Client] will now redirect requests for\n+`example.com` and any subdomains to the server being tested.", "additions": 2, "deletions": 0, "language": "Markdown" }, ...
2025-04-19T12:50:35
mrdoob/three.js
1780cc5466511ed177fcba3c08b43a49067f2b96
4993e3af579a27cec950401b523b6e796eab93ec
WebGPURenderer: fix `D_BlinnPhong` (#28199) * WebGPURenderer: fix `D_BlinnPhong` * fix: correction
[ { "path": "examples/jsm/nodes/functions/PhongLightingModel.js", "patch": "@@ -12,7 +12,7 @@ const G_BlinnPhong_Implicit = () => float( 0.25 );\n \n const D_BlinnPhong = tslFn( ( { dotNH } ) => {\n \n-\treturn shininess.mul( 0.5 / Math.PI ).add( 1.0 ).mul( dotNH.pow( shininess ) );\n+\treturn shininess.mul( ...
2024-04-23T15:37:11
vuejs/vue
ac762c35ee759ee8cec99b41ad6e8b5b4c027e72
68be112652060f9a7123b594a3b18ca5fc31b033
fix v-if component root test in Firefox
[ { "path": "test/unit/features/directives/if.spec.js", "patch": "@@ -161,14 +161,16 @@ describe('Directive v-if', () => {\n }\n }\n }).$mount()\n- expect(vm.$el.innerHTML).toBe('<div id=\"ok\" class=\"inner test\">test</div>')\n+ expect(vm.$el.children[0].id).toBe('ok')\n+ expect(v...
2016-08-16T03:29:49
denoland/deno
7a9ab843bd4e33c12ee4e092a87b93ae23735a6d
9913311860bc7479d0cc52c72f45eadc5adf2609
feat(check): tsconfig "references", "extends", "files", "include" and "exclude" (#29843) - Each workspace directory is probed for a `tsconfig.json`. - These and any that are included by their `references` are put into a list ordered by priority. - A tsconfig has lower priority than its `references`. - An earlier lis...
[ { "path": "Cargo.lock", "patch": "@@ -2698,6 +2698,7 @@ dependencies = [\n \"http 1.1.0\",\n \"import_map\",\n \"indexmap 2.9.0\",\n+ \"jsonc-parser\",\n \"log\",\n \"node_resolver\",\n \"once_cell\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "cli/args/mo...
2025-06-26T21:17:07
golang/go
9d3f7fda70900c9d311df1eb4656fe9f6d62c781
78a05c541f7c5f7b89abac11cff0ff18b029cb47
crypto/tls: fix quic comment typo Change-Id: Ibd6b8d10ecac3cdea33de1218d516b7425443313 GitHub-Last-Rev: 3d5568ba087be71f21cf816c5edd9b8b8c629865 GitHub-Pull-Request: golang/go#75092 Reviewed-on: https://go-review.googlesource.com/c/go/+/697575 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi...
[ { "path": "src/crypto/tls/quic.go", "patch": "@@ -221,7 +221,7 @@ func (q *QUICConn) NextEvent() QUICEvent {\n \tqs := q.conn.quic\n \tif last := qs.nextEvent - 1; last >= 0 && len(qs.events[last].Data) > 0 {\n \t\t// Write over some of the previous event's data,\n-\t\t// to catch callers erroniously retain...
2025-08-21T01:40:55
mrdoob/three.js
0de958e14ba8c0b354439f6a8621f6b16f1f55f4
81b782ad8b13eae6dbd3335cf295f7a00bba98ff
Object3D: add generator-based traversal methods (#28053) * Object3D: add traversal generator methods * feat: add opt condition to traversal generators * feat: move generator functions to SceneUtils * fix(test): move tests, oops * fix: remove unit tests * fix: remove condition callback (always yield) ...
[ { "path": "examples/jsm/utils/SceneUtils.js", "patch": "@@ -245,10 +245,69 @@ function sortInstancedMesh( mesh, compareFn ) {\n \n }\n \n+/**\n+ * @param {Object3D} object Object to traverse.\n+ * @yields {Object3D} Objects that passed the filter condition.\n+ */\n+function* traverseGenerator( object ) {\n+...
2024-04-23T08:15:26
vuejs/vue
68be112652060f9a7123b594a3b18ca5fc31b033
e08d6b91932eff35d9e36b7a2809b251781d2451
Revert "support transition on component with v-show in root node (fix #3431)" This reverts commit aab560e0d9c5c775c1f88d7d9316c79d69001297.
[ { "path": "src/platforms/web/runtime/directives/show.js", "patch": "@@ -3,36 +3,16 @@\n import { isIE9 } from 'web/util/index'\n import { enter, leave } from '../modules/transition'\n \n-// The v-show directive may appear on a component's parent vnode or its\n-// inner vnode, and the transition wrapper may ...
2016-08-16T02:58:18
denoland/deno
7554b28a04ac149ff0d5ff84cf2490add30a4f5f
3cefece2dad65f6876041e5a27909e7bc26878a1
fix: support `Deno.permissions.query({name:"import"})` (#29610) Closes #27050
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -4069,6 +4069,21 @@ declare namespace Deno {\n path?: string | URL;\n }\n \n+ /** The permission descriptor for the `allow-import` and `deny-import` permissions, which controls\n+ * access to importing from remote hosts via the network. The opt...
2025-06-26T20:13:56
mrdoob/three.js
81b782ad8b13eae6dbd3335cf295f7a00bba98ff
4d6fa0d96f81a1adfc0e9f998d443be1e3e7591d
WebGPURenderer: Support `specularColorMap` (#28155) * WebGPURenderer: support `specularColorMap` * chore: follow pattern * chore: rename variable * fix: wrong scope
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -85,7 +85,7 @@ export { default as VertexColorNode, vertexColor } from './accessors/VertexColor\n export { default as CubeTextureNode, cubeTexture } from './accessors/CubeTextureNode.js';\n export { default as InstanceNode, instance } from './accessors/I...
2024-04-22T17:47:40
vuejs/vue
e08d6b91932eff35d9e36b7a2809b251781d2451
1bc13f866acf197111461242ce539514ba5ca05f
fix unnecessary child watcher calls on parent re-render (fix #3453)
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -151,11 +151,6 @@ export function lifecycleMixin (Vue: Class<Component>) {\n if (vm._watcher) {\n vm._watcher.update()\n }\n- if (vm._watchers.length) {\n- for (let i = 0; i < vm._watchers.length; i++) {\n- vm._watchers[i]...
2016-08-15T21:47:01
denoland/deno
3cefece2dad65f6876041e5a27909e7bc26878a1
d2a6958f14e7bb84b90b13c5c177f06ba2986888
feat: --allow-net supports CIDR ranges (#29704) This commit adds support for specifying CIDR ranges in `--allow-net` and `--deny-net` flag: Eg: trying to run `deno run --allow-net --deny-net=192.168.0.0/16` and `fetch` from `http://127.0.0.1:4545/` will raise `NotCapable` error.
[ { "path": "Cargo.lock", "patch": "@@ -2624,6 +2624,7 @@ dependencies = [\n \"deno_terminal 0.2.2\",\n \"deno_unsync\",\n \"fqdn\",\n+ \"ipnetwork\",\n \"libc\",\n \"log\",\n \"nix 0.27.1\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "cli/args/flags_net.rs"...
2025-06-26T20:13:04
mrdoob/three.js
4d6fa0d96f81a1adfc0e9f998d443be1e3e7591d
31b2f94b0deec375807e4dd2c38bde258437e339
WebGLRenderer: remove redundant code (#28186) The null check seems to have been redundant. This code should behave the same as the previous code and return `null` when `context === null` or return `context` otherwise. Maybe there is a good reason it was like it was (ability to put a debugger on line 227?) in w...
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -218,10 +218,7 @@ class WebGLRenderer {\n \n \t\tfunction getContext( contextName, contextAttributes ) {\n \n-\t\t\tconst context = canvas.getContext( contextName, contextAttributes );\n-\t\t\tif ( context !== null ) return context;\n-\n-\t\t\treturn ...
2024-04-22T11:17:47
vuejs/vue
1bc13f866acf197111461242ce539514ba5ca05f
f764db4b01861f79a347b14ecf6313cc174cc12c
fix native events on components with inline-template (fix #3451)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -152,7 +152,7 @@ function genData (el: ASTElement): string | void {\n data += `${genHandlers(el.events)},`\n }\n if (el.nativeEvents) {\n- data += `${genHandlers(el.nativeEvents, true)}`\n+ data += `${genHandlers(el.nativeEvents, true)},`...
2016-08-15T20:23:37
denoland/deno
8cefe97b09ef76727509ffad088ec04fd61cba7c
0a4f946fd90b322600dd8956fe2b3d99ca402669
fix(bundle): only replace require shim in js files, spruce up output (#29892) We were trying to do the hack of replacing the esbuild require shim on every output file, regardless of whether it was js/ts. This fixes that. In addition, this spruces up the output of deno bundle a bit. before: ![Screenshot 2025-06-25 at...
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -4,12 +4,14 @@ mod esbuild;\n mod externals;\n mod transform;\n \n+use std::borrow::Cow;\n use std::cell::RefCell;\n use std::path::Path;\n use std::path::PathBuf;\n use std::rc::Rc;\n use std::sync::Arc;\n use std::sync::LazyLock;\n+use std::time::Duration;...
2025-06-26T18:35:19
mrdoob/three.js
812cf86f8e7a74bc1116174f72a245b6a0469af6
ff08e10db0fb9c5ca4831dcecef77debb3e0beae
make PMREM blur order consistent (#28166) * make blur order consistent * fix format
[ { "path": "src/extras/PMREMGenerator.js", "patch": "@@ -49,16 +49,16 @@ const INV_PHI = 1 / PHI;\n // Vertices of a dodecahedron (except the opposites, which represent the\n // same axis), used as axis directions evenly spread on a sphere.\n const _axisDirections = [\n-\t/*@__PURE__*/ new Vector3( 1, 1, 1 )...
2024-04-20T08:33:12
golang/go
a076f497577605e4cf0e20c147711e03dee7b2c3
98238fd495a2a16a2cd90197c6f41352760e4ccb
os: fix Root.MkdirAll to handle race of directory creation No tests were added, because in order to reproduce, the directory would have to be created precisely between the rootOpenDir and mkdirat calls, which is impossible to do in a test. Fixes #75114 Change-Id: I6f86a5b33c87452c35728318eaf2169a7534ef37 Reviewed-on...
[ { "path": "src/os/root_openat.go", "patch": "@@ -131,7 +131,9 @@ func rootMkdirAll(r *Root, fullname string, perm FileMode) error {\n \t\t\tif try > 0 || !IsNotExist(err) {\n \t\t\t\treturn 0, &PathError{Op: \"openat\", Err: err}\n \t\t\t}\n-\t\t\tif err := mkdirat(parent, name, perm); err != nil {\n+\t\t\t...
2025-08-21T17:03:42
vuejs/vue
7b4a5a14e3c5c99f7dd69e01605322b8410a2c88
d927159a3712a0574317135d859ace0843d3c85c
add warning for incorrect <slot> usage (ref #3447)
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -34,6 +34,7 @@ let preTransforms\n let transforms\n let postTransforms\n let delimiters\n+let seenSlots: any\n \n /**\n * Convert HTML string to AST.\n@@ -50,6 +51,7 @@ export function parse (\n transforms = pluckModuleFunction(options.modules, 'tran...
2016-08-15T16:35:11
denoland/deno
e69a668e1f3d12f7b5f7f9022c79cfc23b831fee
ec32c6e5ba509533295ba955275e6cf539ee7b3f
fix(ext/node): export promise based `lchown` and `lutimes` from `node:fs/promises` (#29870) The promised based `lchown` and `lutimes` were implemented in #24418 and #23172 , but haven't been exported through the `node:fs/promises` namespace. Signed-off-by: Daniel Osvaldo R <daniel.rahmanto@gmail.com>
[ { "path": "ext/node/polyfills/fs/promises.ts", "patch": "@@ -21,10 +21,10 @@ export const link = fsPromises.link;\n export const unlink = fsPromises.unlink;\n export const chmod = fsPromises.chmod;\n export const lchmod = fsPromises.lchmod;\n-// export const lchown = fs.lchown;\n+export const lchown = fsPro...
2025-06-26T16:55:47
mrdoob/three.js
7ce0c40e70da95e24a1308cb2f25217a924ffcaf
b8b67f25b4af6abbd8b626adbee83e4d864cd097
Fixing rotation defect in VRMLLoader.js (#28162) VRML files can contain non-normalized rotation vectors, whether correctly or incorrectly. This change loads such files safely, and has no impact if the vector is already normalized.
[ { "path": "examples/jsm/loaders/VRMLLoader.js", "patch": "@@ -800,7 +800,7 @@ class VRMLLoader extends Loader {\n \t\t\t\t\t\tbreak;\n \n \t\t\t\t\tcase 'rotation':\n-\t\t\t\t\t\tconst axis = new Vector3( fieldValues[ 0 ], fieldValues[ 1 ], fieldValues[ 2 ] );\n+\t\t\t\t\t\tconst axis = new Vector3( fieldVa...
2024-04-19T18:27:53
golang/go
98238fd495a2a16a2cd90197c6f41352760e4ccb
1ad30844d9cc0d5792b055f44a6e98759587bbfb
all: delete remaining windows/arm code Fixes #43800 Updates #71671 Change-Id: Ib7aafe3a3f6ae48f23fa23f03103820e9fcf5161 Reviewed-on: https://go-review.googlesource.com/c/go/+/698415 Reviewed-by: Quim Muntal <quimmuntal@gmail.com> Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -1773,7 +1773,7 @@ func buildModeSupported(compiler, buildmode, goos, goarch string) bool {\n \t\t\t\"ios/amd64\", \"ios/arm64\",\n \t\t\t\"aix/ppc64\",\n \t\t\t\"openbsd/arm64\",\n-\t\t\t\"windows/386\", \"windows/amd64\", \"windows/arm\", \"windows/arm64\":\n...
2025-08-22T09:49:53
vuejs/vue
efb603570e271b9627c735c0ab2b3b11e292f151
397e64ad8956692af17a6d23f4d198c5164e676d
fix patch modules error on empty component root
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -81,15 +81,16 @@ export function lifecycleMixin (Vue: Class<Component>) {\n const prevEl = vm.$el\n const prevActiveInstance = activeInstance\n activeInstance = vm\n- if (!vm._vnode) {\n+ const prevVnode = vm._vnode\n+ vm._vnode =...
2016-08-15T04:28:48
mrdoob/three.js
b8b67f25b4af6abbd8b626adbee83e4d864cd097
ec498d07f3314dfdad9598314f06d1c0abf8f48a
WebGPURenderer: Fix group draw range (#28163)
[ { "path": "examples/jsm/renderers/common/RenderObject.js", "patch": "@@ -56,6 +56,8 @@ export default class RenderObject {\n \t\tthis.geometry = object.geometry;\n \t\tthis.version = material.version;\n \n+\t\tthis.drawRange = null;\n+\n \t\tthis.attributes = null;\n \t\tthis.pipeline = null;\n \t\tthis.ver...
2024-04-19T17:54:25
denoland/deno
880ed76b999a8796ae9f6a6687d3a0d8e7c19e68
e8d9d59b837a1f26da74d6cb3954b9d7cba104e9
fix(lsp): don't show no-export diagnostics for type-only npm imports (#29888)
[ { "path": "cli/lsp/diagnostics.rs", "patch": "@@ -25,7 +25,6 @@ use deno_core::unsync::spawn_blocking;\n use deno_core::unsync::JoinHandle;\n use deno_core::url::Url;\n use deno_core::ModuleSpecifier;\n-use deno_graph::source::ResolutionKind;\n use deno_graph::source::ResolveError;\n use deno_graph::Resolut...
2025-06-26T14:53:05
golang/go
1ad30844d9cc0d5792b055f44a6e98759587bbfb
13c082601db45c25fc85f4cdac9cc3bab7c4329f
cmd/asm: process forward jump to PCALIGN The forward jump target are not processed when the target is PCALIGN, so process it before emit nops for PCALIGN. Fixes #74648 Change-Id: I690fbfacf79e26d7a37628a2551729b2381616c5 Reviewed-on: https://go-review.googlesource.com/c/go/+/696915 LUCI-TryBot-Result: Go LUCI <golan...
[ { "path": "src/cmd/internal/obj/x86/asm6.go", "patch": "@@ -2120,19 +2120,6 @@ func span6(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\tc0 := c\n \t\t\tc = pjc.padJump(ctxt, s, p, c)\n \n-\t\t\tif p.As == obj.APCALIGN || p.As == obj.APCALIGNMAX {\n-\t\t\t\tv := obj.AlignmentPadding(c, p, ctx...
2025-08-18T11:27:46
mrdoob/three.js
ec498d07f3314dfdad9598314f06d1c0abf8f48a
edc383d8cd3e657bd4bc601e937fb4ffc9f57037
Nodes: Line2NodeMaterial - simplify extension (#28160) * move setupShader to setup * fix update signalling --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/nodes/materials/Line2NodeMaterial.js", "patch": "@@ -43,9 +43,15 @@ class Line2NodeMaterial extends NodeMaterial {\n \t\tthis.dashSizeNode = null;\n \t\tthis.gapSizeNode = null;\n \n+\t\tthis.setValues( params );\n+\n+\t}\n+\n+\tsetup( builder ) {\n+\n \t\tthis.setupShaders();\n \n-\...
2024-04-19T15:34:02
denoland/deno
9bcd4366ee39662d8db0b5b0502701d475d6035f
4a0cd18a6b6b18b924084341b1df71f569053302
fix(ext/node): add `lchmod`, `lchmod` promise, `lchmodSync` to `node:fs` (#29833)
[ { "path": "cli/rt/file_system.rs", "patch": "@@ -195,6 +195,16 @@ impl FileSystem for DenoRtSys {\n RealFs.chown_async(path, uid, gid).await\n }\n \n+ fn lchmod_sync(&self, path: &Path, mode: u32) -> FsResult<()> {\n+ self.error_if_in_vfs(path)?;\n+ RealFs.lchmod_sync(path, mode)\n+ }\n+\n+ a...
2025-06-26T06:46:07
vuejs/vue
aab560e0d9c5c775c1f88d7d9316c79d69001297
174e936e2acc2fefe7d868102648ba39ea034b89
support transition on component with v-show in root node (fix #3431)
[ { "path": "src/platforms/web/runtime/directives/show.js", "patch": "@@ -3,16 +3,36 @@\n import { isIE9 } from 'web/util/index'\n import { enter, leave } from '../modules/transition'\n \n-// recursively search for possible transition defined inside the component root\n-function locateNode (vnode: VNode): VNo...
2016-08-15T02:15:33
golang/go
f7c6fa709e05830cad484422f04f2b123f54a3dc
7c84e984e675e44a2abc9aa25dd68cb9c9d08ec5
[dev.simd] simd/_gen/unify: fix some missing environments There were a couples places where we failed to provide a reasonable variable environment for YAML encoding. I think this only affects encoding "!repeat" nodes, which aren't common in practice and a bit of a disaster, which is how this went unnoticed. Change-Id...
[ { "path": "src/simd/_gen/unify/trace.go", "patch": "@@ -132,10 +132,12 @@ func (t *tracer) traceUnify(v, w *Value, e envSet) {\n \t\treturn\n \t}\n \n+\tt.enc.e = e // Interpret values w.r.t. e\n \tt.logf(\"Unify\\n%s\\nwith\\n%s\\nin\\n%s\",\n \t\tyamlf(\" \", t.enc.value(v)),\n \t\tyamlf(\" \", t.enc.va...
2025-08-21T13:28:32
mrdoob/three.js
df2bdbe4c9df82aaaa54281b0b7b8c4e5e15c615
14f9db73d401cfcc59d84ccb32c67a9e4ff090de
fix array size calc (#28161) Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/renderers/webgl/utils/WebGLTextureUtils.js", "patch": "@@ -706,7 +706,7 @@ class WebGLTextureUtils {\n \n \t\tawait backend.utils._clientWaitAsync();\n \n-\t\tconst dstBuffer = new typedArrayType( elementCount );\n+\t\tconst dstBuffer = new typedArrayType( byteLength / typedArrayType...
2024-04-19T13:41:31
vuejs/vue
174e936e2acc2fefe7d868102648ba39ea034b89
854ccce5d5bbd53e2e7f8fe19ee5f3d3a7d46fe7
fix v-model on input[type=range] in IE (fix #3439)
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -1,5 +1,6 @@\n /* @flow */\n \n+import { isIE } from 'web/util/index'\n import { addHandler, addProp, getBindingAttr } from 'compiler/helpers'\n \n let warn\n@@ -96,7 +97,7 @@ function genDefaultModel (\n \n const type = el.attrsMap....
2016-08-14T22:58:30
denoland/deno
4a0cd18a6b6b18b924084341b1df71f569053302
f7817964023975aade9fdad31ca6df98ac0ccc8a
fix(install/global): resolve bin name from npm packument (#29884)
[ { "path": "cli/factory.rs", "patch": "@@ -107,6 +107,7 @@ use crate::resolver::CliResolver;\n use crate::standalone::binary::DenoCompileBinaryWriter;\n use crate::sys::CliSys;\n use crate::tools::coverage::CoverageCollector;\n+use crate::tools::installer::BinNameResolver;\n use crate::tools::lint::LintRuleP...
2025-06-25T19:10:26
vuejs/vue
854ccce5d5bbd53e2e7f8fe19ee5f3d3a7d46fe7
6a156020ec06dd9b74f6eff8602a321edd009927
prevent out-in transition to enter early when parent re-renders (fix #3440)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -48,6 +48,12 @@ export function extractTransitionData (comp: Component): Object {\n return data\n }\n \n+function placeholder (h, rawChild) {\n+ return /\\d-keep-alive$/.test(rawChild.tag)\n+ ? h('keep-alive')\n+ : null\n+...
2016-08-14T22:49:48
denoland/deno
864a6f57746bcf637704b8a95c577c78228e4131
507e103ad332edfd7bcfdf92f6b6c21a8b7aba26
fix(ext/node): improve input validations of stream/consumers (#29880)
[ { "path": "ext/node/polyfills/stream/consumers.js", "patch": "@@ -1,16 +1,32 @@\n // deno-lint-ignore-file\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-import { primordials } from \"ext:core/mod.js\";\n+import { core, primordials } from \"ext:core/mod.js\";\n import { TextDecoder } from \"ex...
2025-06-25T07:10:57
vuejs/vue
238f65dc71312c9e1b459771ce4373e25af32f10
a5a501eafb901f7e6656ac0340b301b692288fbe
fix _scopeId on non-element component root
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -146,7 +146,9 @@ export function createPatchFunction (backend) {\n }\n vnode.elm = vnode.child.$el\n invokeCreateHooks(vnode, insertedVnodeQueue)\n- setScope(vnode)\n+ if (vnode.child._vnode.tag) {\n+ setScope(vnode)\n+ }\n }\n \n ...
2016-08-14T21:50:31
golang/go
9de69f6913dc253ee8ce67043f543bedde28fdb4
4afd4828129d547719e8e71352c36e5117ddb50e
errors: mention Is/As in Join docs Fixes #74461 Change-Id: Ic1b1b2b43d59dd67f31c2388ca88650ee847ba93 Reviewed-on: https://go-review.googlesource.com/c/go/+/696737 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Carlos...
[ { "path": "src/errors/join.go", "patch": "@@ -16,6 +16,7 @@ import (\n // between each string.\n //\n // A non-nil error returned by Join implements the Unwrap() []error method.\n+// The errors may be inspected with [Is] and [As].\n func Join(errs ...error) error {\n \tn := 0\n \tfor _, err := range errs {"...
2025-08-17T13:03:37
denoland/deno
be3e7f4ae925cda2f24a4e15059e6b94981e17a2
b6d09f65b1f3dfb7c0decf11545a234f2fca3650
fix(ext/node): improve assert.fail (#29850)
[ { "path": "ext/node/polyfills/assert.ts", "patch": "@@ -420,17 +420,56 @@ function notDeepStrictEqual(\n );\n }\n \n-function fail(message?: string | Error): never {\n- if (typeof message === \"string\" || message == null) {\n- throw createAssertionError({\n- message: message ?? \"Failed\",\n- ...
2025-06-25T01:26:33
mrdoob/three.js
4314fa71dc72d54291ae120b588a7733eaae9f5f
0dbbf04964634d5eaaf698c3e3b8bf9c17a2fcbe
WebGPURenderer: `transmission` and `clearcoat` shouldn't be ignored in `getMaterialCacheKey` (#28135) * WebGPURenderer: `transmission` and `clearcoat` shouldn't be ignored in `getMaterialCacheKey` * fix: use `getKeys` to get all properties
[ { "path": "examples/jsm/renderers/common/RenderObject.js", "patch": "@@ -2,6 +2,40 @@ import ClippingContext from './ClippingContext.js';\n \n let id = 0;\n \n+function getKeys( obj ) {\n+\n+\tconst keys = Object.keys( obj );\n+\n+\tlet proto = Object.getPrototypeOf( obj );\n+\n+\twhile ( proto ) {\n+\n+\t\...
2024-04-17T21:36:29
vuejs/vue
a5a501eafb901f7e6656ac0340b301b692288fbe
9bbf7230a59faaa78858dae32f05441da103cca6
fix #3437 properly without hacking the type system
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -126,7 +126,7 @@ export function createComponentInstanceForVnode (\n }\n \n function init (vnode: VNodeWithData, hydrating: boolean) {\n- if (!vnode.child) {\n+ if (!vnode.child || vnode.child._isDestroyed) {\n const child = vnode.child = cre...
2016-08-12T21:33:21
golang/go
4afd4828129d547719e8e71352c36e5117ddb50e
509d5f647ffc413bd874c2e2bf6d1b33f9bc0ac2
cmd/go/internal/doc: pass URL fragments separately with -http Plumb URL fragments separately when invoking pkgsite so the `#` doesn't get %-encoded into the path. Fixes: #75088 Change-Id: I33814fc6a192dff3e4f3d0b9d81205056dddd438 Reviewed-on: https://go-review.googlesource.com/c/go/+/697435 Reviewed-by: Sean Liao <se...
[ { "path": "src/cmd/go/internal/doc/doc.go", "patch": "@@ -212,16 +212,16 @@ func do(writer io.Writer, flagSet *flag.FlagSet, args []string) (err error) {\n \t\t\tmod, err := runCmd(append(os.Environ(), \"GOWORK=off\"), \"go\", \"list\", \"-m\")\n \t\t\tif err == nil && mod != \"\" && mod != \"command-line-a...
2025-08-19T17:37:18
denoland/deno
68bfb7a9f647f258ef9443ee6e18d0458e9fc8b4
695df5735824d5eed64180de865baff55b4bc757
fix(ext/node): remove duplicated stream classes (#29860)
[ { "path": "ext/node/lib.rs", "patch": "@@ -670,21 +670,16 @@ deno_core::extension!(deno_node,\n \"internal/streams/add-abort-signal.js\",\n \"internal/streams/compose.js\",\n \"internal/streams/destroy.js\",\n- \"internal/streams/duplex.js\",\n \"internal/streams/duplexify.js\",\n \"i...
2025-06-25T01:21:03
mrdoob/three.js
0dbbf04964634d5eaaf698c3e3b8bf9c17a2fcbe
70e7f55e971d9aafc1c8ad12e2ed4845a4dd1927
Allow specifying sphere size in CCDIKSolver.createHelper (#28147) * Allow specifying sphere size in CCDIKSolver.createHelper * Fix whitespace * Update CCDIKSolver.js Clean up. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/animation/CCDIKSolver.js", "patch": "@@ -213,11 +213,12 @@ class CCDIKSolver {\n \t/**\n \t * Creates Helper\n \t *\n+\t * @param {number} sphereSize\n \t * @return {CCDIKHelper}\n \t */\n-\tcreateHelper() {\n+\tcreateHelper( sphereSize ) {\n \n-\t\treturn new CCDIKHelper( this.mesh,...
2024-04-17T08:39:08
golang/go
509d5f647ffc413bd874c2e2bf6d1b33f9bc0ac2
853fc1273912b020e428c77d35e525c9225fd51e
internal/poll: don't call Seek for overlapped Windows handles Overlapped handles don't have the file pointer updated when performing I/O operations, so there is no need to call FD.Seek to reset the file pointer. Also, some overlapped file handles don't support seeking. See #74951. Fixes #74951. Change-Id: I0edd53be...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -622,12 +622,22 @@ func (fd *FD) Pread(b []byte, off int64) (int, error) {\n \n \tfd.l.Lock()\n \tdefer fd.l.Unlock()\n-\tcuroffset, err := syscall.Seek(fd.Sysfd, 0, io.SeekCurrent)\n-\tif err != nil {\n-\t\treturn 0, err\n+\tif fd.isBlocking {\n+\t\...
2025-08-19T11:00:02
mrdoob/three.js
34cfc4d11cf0a0fd83dc66a75acfc181df9bc972
cbb480b5ae7e7a3af5f3a5fffa6c5dbc098b4873
WebGPURenderer: Fix 'receiveShadow' and introduce `shadowPositionNode` (#28146) * fix receive shadow and introduce shadowPositionNode * fix receive only and example * better fix * update example * add color noise to example
[ { "path": "examples/jsm/nodes/lighting/AnalyticLightNode.js", "patch": "@@ -50,6 +50,10 @@ class AnalyticLightNode extends LightingNode {\n \n \tsetupShadow( builder ) {\n \n+\t\tconst { object } = builder;\n+\n+\t\tif ( object.receiveShadow === false ) return;\n+\n \t\tlet shadowNode = this.shadowNode;\n \...
2024-04-17T02:48:51
denoland/deno
695df5735824d5eed64180de865baff55b4bc757
4e23d9b5f0a8b7407c5afe273d928d2f4349a792
fix(fmt/css): prefer collapsing font-family values (#29864) Closes https://github.com/denoland/deno/issues/29336
[ { "path": "Cargo.lock", "patch": "@@ -5534,9 +5534,9 @@ dependencies = [\n \n [[package]]\n name = \"malva\"\n-version = \"0.11.2\"\n+version = \"0.12.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"6a952f521471c6c8302a17fc0c64a512221a9d4ff268af4d43a02bc2be48c712\"\n+...
2025-06-24T20:28:53
golang/go
853fc1273912b020e428c77d35e525c9225fd51e
bd885401d5a4b45fee8ae37069be0cc3beef9e3e
internal/poll: set the correct file offset in FD.Seek for Windows overlapped handles Windows doesn't keep the file pointer for overlapped file handles. To work around this, we keep track of the current offset ourselves and use it on every Read/Write operation. When the user calls File.Seek with whence == io.SeekCurre...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -1107,6 +1107,12 @@ func (fd *FD) Seek(offset int64, whence int) (int64, error) {\n \tfd.l.Lock()\n \tdefer fd.l.Unlock()\n \n+\tif !fd.isBlocking && whence == io.SeekCurrent {\n+\t\t// Windows doesn't keep the file pointer for overlapped file handle...
2025-08-19T10:10:54
mrdoob/three.js
8c55e3e14f1e82a83a56a09a2705eb77d0ff0535
44556ab610958976f4f90de90faa5b82d419ee47
WebGLTextures: Fix `gl.invalidateFramebuffer()` call. (#28139)
[ { "path": "src/renderers/webgl/WebGLTextures.js", "patch": "@@ -1892,7 +1892,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils,\n \n \t\t\t\t\t}\n \n-\t\t\t\t\tif ( ignoreDepthValues === true ) {\n+\t\t\t\t\tif ( ignoreDepthValues === true && supportsInvalidateFramebuffer ...
2024-04-15T08:54:55
denoland/deno
c50b37c2340fefa28d2420cdf9ec627e3671cb56
ef6ff554b0d55b84e697ce835b2f7f36461dba62
test: fix specs::coverage::data_url test (#29865)
[ { "path": "tests/specs/coverage/data_url/main.out", "patch": "@@ -4,12 +4,9 @@ test ... ok ([WILDLINE])\n \n ok | 1 passed | 0 failed ([WILDLINE])\n \n---------------------------------\n-File | Branch % | Line % |\n---------------------------------\n- main.ts | 100.0 | 100.0 |\n-----------------...
2025-06-24T10:52:28
vuejs/vue
9d43bff27e50a07ad4625a9d61face9d499d66ec
63fe7fc76dc0f9b1aae15b9b7db4c8014bf181d0
fix component in slot lifecycle (fix #3437)
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -161,6 +161,7 @@ function destroy (vnode: MountedComponentVNode) {\n if (!vnode.child._isDestroyed) {\n if (!vnode.data.keepAlive) {\n vnode.child.$destroy()\n+ vnode.child = null\n } else {\n vnode.child._inactive = true...
2016-08-12T19:12:57
golang/go
119546ea4fdded79057913a943bd3b6a8dcf8d4a
ffa882059cfbfc7cd5f16c83d24775c08d63668f
cmd/go: document install outputs to $GOOS_$GOARCH when cross compiling Fixes #74979 Change-Id: I2a93e3a78c953418cf62d93db107b9c8d25e8ed2 Reviewed-on: https://go-review.googlesource.com/c/go/+/696755 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Carlos Amedee <c...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -758,6 +758,8 @@\n // variable, which defaults to $GOPATH/bin or $HOME/go/bin if the GOPATH\n // environment variable is not set. Executables in $GOROOT\n // are installed in $GOROOT/bin or $GOTOOLDIR instead of $GOBIN.\n+// Cross compiled binaries are install...
2025-08-17T11:46:13
mrdoob/three.js
44556ab610958976f4f90de90faa5b82d419ee47
361f301cccd17f1c9d6858604cf13700164a22ca
WebGPURenderer: Fix `specularF90` of `MeshStandardMaterial` (#28138) * MeshStandardNodeMaterial: fix specularF90 * update screenshot * update screenshots
[ { "path": "examples/jsm/nodes/functions/PhysicalLightingModel.js", "patch": "@@ -383,7 +383,7 @@ class PhysicalLightingModel extends LightingModel {\n \t// Approximates multiscattering in order to preserve energy.\n \t// http://www.jcgt.org/published/0008/01/03/\n \n-\tcomputeMultiscattering( singleScatter,...
2024-04-15T05:15:30
denoland/deno
ef6ff554b0d55b84e697ce835b2f7f36461dba62
5b65313d48d6ac422e7ed39fbca5e2d032c59b34
fix(bench): Make output table markdown compatible (#29532) This changes the format of the table outputted by `deno bench` to be markdown compatible. Related #29533 Closes #29466
[ { "path": "cli/tools/bench/mitata.rs", "patch": "@@ -221,19 +221,21 @@ pub mod reporter {\n pub fn br(options: &Options) -> String {\n let mut s = String::new();\n \n- s.push_str(&\"-\".repeat(options.size));\n+ s.push_str(&format!(\"| {} |\", \"-\".repeat(options.size)));\n \n if options.av...
2025-06-24T09:27:42
vuejs/vue
63fe7fc76dc0f9b1aae15b9b7db4c8014bf181d0
299f529498f096fa0c113f94ca58b60c330c98dc
fix spec fit
[ { "path": "test/unit/features/transition/transition.spec.js", "patch": "@@ -253,7 +253,7 @@ if (!isIE9) {\n }).then(done)\n })\n \n- fit('transition events (v-show)', done => {\n+ it('transition events (v-show)', done => {\n const onLeaveSpy = jasmine.createSpy('leave')\n const o...
2016-08-12T18:51:44
golang/go
ffa882059cfbfc7cd5f16c83d24775c08d63668f
1f2e8e03e48597367e674138e26432345c685b1c
unique: deflake TestCanonMap/LoadOrStore/ConcurrentUnsharedKeys I do not know yet what's causing this flake, but I've debugged it enough to be confident that it's not a serious issue; it seems to be a test flake. There is some path through which the tree nodes or keys might still be transiently reachable, but I don't ...
[ { "path": "src/unique/canonmap_test.go", "patch": "@@ -108,6 +108,25 @@ func testCanonMap(t *testing.T, newMap func() *canonMap[string]) {\n \t\t\t\twg.Wait()\n \t\t\t}\n \n+\t\t\t// Run an extra GC cycle to de-flake. Sometimes the cleanups\n+\t\t\t// fail to run in time, despite drainCleanupQueue.\n+\t\t\t...
2025-08-19T19:29:55
mrdoob/three.js
500f452242b2df2b0af1913625d23bd0b3a00b28
454ada917e9b11ac99bdc9ac4f937adeb015bd77
WebGPURenderer: Transmission - Backdrop 3/3 (#27880) * WebGPURenderer: Apply fog before tonemapping and encoding * TSL: Add `rendererReference` * PassNode: Add `getViewZNode()` * FogNode: Add `.getViewZNode()`, removed `mixAssign()` * TSL: Add `toneMappingExposure` * PostProcessing: Add `.renderAsync()`...
[ { "path": "examples/files.json", "patch": "@@ -351,9 +351,11 @@\n \t\t\"webgpu_loader_gltf_compressed\",\n \t\t\"webgpu_loader_gltf_iridescence\",\n \t\t\"webgpu_loader_gltf_sheen\",\n+\t\t\"webgpu_loader_gltf_transmission\",\n \t\t\"webgpu_loader_materialx\",\n \t\t\"webgpu_materials\",\n \t\t\"webgpu_mate...
2024-04-12T16:22:18
vuejs/vue
299f529498f096fa0c113f94ca58b60c330c98dc
33bd50993a13ca8171d6922ee8cd76003ac95651
fix transition enter hook for v-show (fix #3433)
[ { "path": "src/platforms/web/runtime/modules/transition.js", "patch": "@@ -92,15 +92,17 @@ export function enter (vnode: VNodeWithData) {\n el._enterCb = null\n })\n \n- // remove pending leave element on enter by injecting an insert hook\n- mergeVNodeHook(vnode.data.hook || (vnode.data.hook = {}), ...
2016-08-12T18:46:03
denoland/deno
5b65313d48d6ac422e7ed39fbca5e2d032c59b34
fd352537ce5e0295d9f9fa9478ae762bc488aaad
fix(coverage): Make output table markdown compatible (#29533) This changes the format of the table outputted by `deno coverage` to be markdown compatible. Related #29532 Closes #29465
[ { "path": "cli/tools/coverage/reporter.rs", "patch": "@@ -161,7 +161,7 @@ impl SummaryCoverageReporter {\n };\n \n println!(\n- \" {file_name} | {branch_percent} | {line_percent} |\",\n+ \"| {file_name} | {branch_percent} | {line_percent} |\",\n file_name = file_name,\n branch_...
2025-06-24T09:27:07
mrdoob/three.js
454ada917e9b11ac99bdc9ac4f937adeb015bd77
a3499193e531229004c469a0ba89861b20f3e641
docs: Fix typo (#28123) Fix typo in Korean docs
[ { "path": "docs/manual/ko/introduction/Creating-a-scene.html", "patch": "@@ -63,7 +63,7 @@ <h2>Scene 만들기</h2>\n \n \t\t<p>다음은 renderer입니다. 마법이 일어나는 곳입니다. 같이 사용하는 WebGLRenderer와 더불어, three.js는 다른 몇가지 renderer를 사용하는데, 오래된 브라우저 혹은 모종의 사유로 WebGL을 지원 안할때의 대비용으로 사용하는 것입니다.</p>\n \n-\t\t<p>renderer 인스턴스를 생섬함과 동시에,...
2024-04-12T07:19:02
vuejs/vue
86bf3da18e29cbec2ff9c88f8ff39e2eefe3e168
837b0b224b5405173e57a9c41cb2afe6686f6bd0
fix flow error for #3393
[ { "path": "src/platforms/web/runtime/directives/show.js", "patch": "@@ -11,7 +11,7 @@ function locateNode (vnode: VNode): VNodeWithData {\n }\n \n export default {\n- bind (el: HTMLElement, { value }: VNodeDirective, vnode: VNodeWithData) {\n+ bind (el: any, { value }: VNodeDirective, vnode: VNodeWithData...
2016-08-11T13:53:31
denoland/deno
19d08d12d37229981467a9b0b65e882c3aa3a822
ef938a8cd50d235db17e45d47080eb9f60391595
fix(bundle): transform import.meta.main (#29830) For entrypoints, it remains untouched. For non-entrypoints it becomes `false`.
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -2,6 +2,7 @@\n \n mod esbuild;\n mod externals;\n+mod transform;\n \n use std::cell::RefCell;\n use std::path::Path;\n@@ -10,6 +11,8 @@ use std::rc::Rc;\n use std::sync::Arc;\n use std::sync::LazyLock;\n \n+use deno_ast::EmitOptions;\n+use deno_ast::MediaTyp...
2025-06-23T20:51:24
golang/go
1f2e8e03e48597367e674138e26432345c685b1c
5024d0d884f8ca4fe74a861b5b20f6a3955762f2
os: fix path in MkdirTemp error message Fixes #75012 Change-Id: I9dd3ba8987bde9db93769a1b05d13b162ba5332d Reviewed-on: https://go-review.googlesource.com/c/go/+/696715 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts...
[ { "path": "src/os/tempfile.go", "patch": "@@ -105,7 +105,7 @@ func MkdirTemp(dir, pattern string) (string, error) {\n \t\t\tif try++; try < 10000 {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\treturn \"\", &PathError{Op: \"mkdirtemp\", Path: dir + string(PathSeparator) + prefix + \"*\" + suffix, Err: ErrExist}\n+\t...
2025-08-16T18:36:14
mrdoob/three.js
c8eb9e6213b97c6aff5e3dc2901d95e471244dff
fa03a0180c7ee5fb93a0b8bdb874beb02dd320f0
WebGLRenderer: Fix global clipping planes with nested render calls. (#28120)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -906,7 +906,7 @@ class WebGLRenderer {\n \t\t\tif ( targetScene === null ) targetScene = scene;\n \n \t\t\tcurrentRenderState = renderStates.get( targetScene );\n-\t\t\tcurrentRenderState.init();\n+\t\t\tcurrentRenderState.init( camera );\n \n \t\t\tr...
2024-04-11T18:30:42
denoland/deno
b5c59ed2150cde2b7182224d7b0101f5cc11cdd3
d15581fb19629c5560b09bf2893c8f1f90494c77
fix(ext/node): improve assert.ifError (#29846)
[ { "path": "ext/node/polyfills/assert.ts", "patch": "@@ -21,7 +21,15 @@ import { primordials } from \"ext:core/mod.js\";\n import { CallTracker } from \"ext:deno_node/internal/assert/calltracker.js\";\n import { deprecate } from \"node:util\";\n \n-const { ObjectPrototypeIsPrototypeOf } = primordials;\n+cons...
2025-06-23T12:16:53