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
06412288cfd31ab365fe8ee6368742dffa759803
03f499ec4602500939a1ed3c540cbd5183c20ce9
runtime: panic on AddCleanup with self pointer For #75066 Change-Id: Ifd555586fb448e7510fed16372648bdd7ec0ab4a Reviewed-on: https://go-review.googlesource.com/c/go/+/697535 Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.com> ...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -84,7 +84,8 @@ func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n \n \t// Check that arg is not equal to ptr.\n \targType := abi.TypeOf(arg)\n-\tif kind := argType.Kind(); kind == abi.Pointer || kind == abi.UnsafePointer {\n+\tkind := argT...
2025-08-20T00:00:29
denoland/deno
5a5d63915cf8e78cd9abb757c849597010328931
4d747eafcc1e373fe2cb9d82e0ab4dc333357b48
docs(cli): add DENO_KV_DEFAULT_PATH and DENO_KV_PATH_PREFIX to help (#31720) Closes #31669
[ { "path": "cli/args/flags.rs", "patch": "@@ -1439,6 +1439,16 @@ static ENV_VARS: &[EnvVar] = &[\n description: \"Controls whether Deno.openKv() API should use disk based or in-memory\\ndatabase.\",\n example: None,\n },\n+ EnvVar {\n+ name: \"DENO_KV_DEFAULT_PATH\",\n+ description: \"Set th...
2026-01-07T15:10:13
mrdoob/three.js
c399a18428027f60c2303b6bdcee3acb1e790fca
4edb768f269c0953639cf7138cd0eae524a1bfca
fix: reuse instantiated material for buildXform to avoid generating missing materials (#30661)
[ { "path": "examples/jsm/exporters/USDZExporter.js", "patch": "@@ -119,7 +119,7 @@ class USDZExporter {\n \n \t\t\t\t\t}\n \n-\t\t\t\t\toutput += buildXform( object, geometry, material );\n+\t\t\t\t\toutput += buildXform( object, geometry, materials[ material.uuid ] );\n \n \t\t\t\t} else {\n \n@@ -796,7 +79...
2025-03-06T11:33:39
vuejs/vue
68bdbf508b915872627676d6bf987bdac9e5fe97
2d32b5d1b663fa331ec256b73e937af15eb6e3d5
fix: perperly handle v-if on <template> scoped slot fix #6725
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -343,11 +343,14 @@ function genScopedSlot (\n if (el.for && !el.forProcessed) {\n return genForScopedSlot(key, el, state)\n }\n- return `{key:${key},fn:function(${String(el.slotScope)}){` +\n+ const fn = `function(${String(el.slotScope)}){` +...
2017-10-10T16:21:42
golang/go
07b10e97d6552e16534aae51f140771a601ef385
e96094402d55b6a104b642ce2adc76d3753843d9
cmd/go/internal/modcmd: inject modfetch.Fetcher_ into DownloadModule This commit continues the injection of the global Fetcher_ variable into the various function calls that make use of it. The purpose is to prepare for the eventual removal of the global Fetcher_ variable and eliminate global state within the modfetc...
[ { "path": "src/cmd/go/internal/modcmd/download.go", "patch": "@@ -366,25 +366,25 @@ func runDownload(ctx context.Context, cmd *base.Command, args []string) {\n // leaving the results (including any error) in m itself.\n func DownloadModule(ctx context.Context, m *ModuleJSON) error {\n \tvar err error\n-\t_,...
2025-11-24T21:53:11
denoland/deno
4d747eafcc1e373fe2cb9d82e0ab4dc333357b48
f47ad1f05a813a6fd8bc15dde979d23e3bdf6af8
fix(ext/node): use correct block sizes for HMAC algorithms (#31775) The HMAC implementation was hardcoded to use 64-byte blocks for most algorithms and 128-byte blocks only for sha512/sha384. This is incorrect for many algorithms like sha3-* variants and blake2 which have different block sizes. Add a lookup table wit...
[ { "path": "ext/node/polyfills/internal/crypto/hash.ts", "patch": "@@ -45,6 +45,7 @@ import {\n import LazyTransform from \"ext:deno_node/internal/streams/lazy_transform.js\";\n import {\n getDefaultEncoding,\n+ getHashBlockSize,\n toBuf,\n } from \"ext:deno_node/internal/crypto/util.ts\";\n import {\n@...
2026-01-06T19:49:57
mrdoob/three.js
1c45822f6cb536b41ecc93dccc60363810485888
b1242211bcdc28fe27e355e6059665abff50c575
WebGPURenderer: Fix texture view caching and dispose event stacking (#30647) * WebGPURenderer: Fix texture view caching and dispose event stacking * cleanup log * cleanup * cleanup
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -1932,6 +1932,8 @@ class Renderer {\n \t\t\trenderContext.stencil = renderTarget.stencilBuffer;\n \t\t\t// #30329\n \t\t\trenderContext.clearColorValue = this.backend.getClearColor();\n+\t\t\trenderContext.activeCubeFace = this.getActiveCubeFace();\...
2025-03-05T13:35:15
vuejs/vue
dff85b230abda63839ed6b80d56ccfc6068b9ae0
70a28b37bc2fc9fe8494d70a13e4f8848aed4d00
fix(ssr): handle inline template compilation error fix #6766
[ { "path": "src/compiler/to-function.js", "patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n-import { noop } from 'shared/util'\n-import { warn, tip } from 'core/util/debug'\n+import { noop, extend } from 'shared/util'\n+import { warn as baseWarn, tip } from 'core/util/debug'\n \n type CompiledFunctionResult = {\n...
2017-10-10T14:47:06
golang/go
272df5f6ba94018dac2b7d384e92115b795fe241
1768cb40b838a36f9bdcbe5381f2e086483f22f5
crypto/internal/fips140/aes/gcm: add more GCM nonce modes First, this adds a GCM mode for QUIC, and a generic TLS 1.3/QUIC-like XOR'd counter mode. QUIC constructs nonces exactly like TLS 1.3, but the counter does not reset to zero on a key update, so the mask must be provided explicitly (or we will panic well before ...
[ { "path": "src/crypto/cipher/gcm_fips140v2.0_test.go", "patch": "@@ -0,0 +1,91 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build !fips140v1.0\n+\n+package cipher_test\n+\n+im...
2025-11-24T12:35:15
denoland/deno
0490c42da4f78f2ca75bae608ffdc654b3e3095b
202cb32f8022ba924b778a0d60e658ebc529985b
fix(ext/node): handle errors in sqlite session filter callback and ad… (#31756) Closes https://github.com/denoland/deno/issues/31635 Fixes two issues in the `node:sqlite` module: 1. The filter handler in `applyChangeset` was panicking when the JavaScript filter callback threw an exception. The code used `.unwrap()` ...
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -963,6 +963,7 @@ impl DatabaseSync {\n scope: &'a mut v8::PinScope<'b, 'c>,\n confict: Option<v8::Local<'b, v8::Function>>,\n filter: Option<v8::Local<'b, v8::Function>>,\n+ has_caught: bool,\n }\n \n // Conflict handle...
2026-01-05T14:04:15
mrdoob/three.js
e52f524bdaaf85c25cdfd6aba033344ff5740966
2da51185bd8aaafbc0ed7ae13151e0ffc606c42e
Backend: Fix signature. (#30644)
[ { "path": "src/renderers/common/Backend.js", "patch": "@@ -344,7 +344,7 @@ class Backend {\n \t * @abstract\n \t * @param {Texture} srcTexture - The source texture.\n \t * @param {Texture} dstTexture - The destination texture.\n-\t * @param {?Vector4} [srcRegion=null] - The region of the source texture to c...
2025-03-04T08:23:37
vuejs/vue
62405aa9035d5f547c0440263f16f21c1325f100
405d8e9f4c3201db2ae0e397d9191d9b94edc219
revert: fix(v-model): fix input listener with modifier blocking v-model update This reverts commit 6f312d636c3d6049dc9e60007f88ea871b8e8173 because the change is no longer needed after switching nextTick to use MessageChannel.
[ { "path": "src/core/vdom/helpers/update-listeners.js", "patch": "@@ -5,22 +5,18 @@ import { cached, isUndef } from 'shared/util'\n \n const normalizeEvent = cached((name: string): {\n name: string,\n- plain: boolean,\n once: boolean,\n capture: boolean,\n- passive: boolean,\n- handler?: Function\n+...
2017-10-09T20:30:07
mrdoob/three.js
2da51185bd8aaafbc0ed7ae13151e0ffc606c42e
7284747f79e8a189fad13a58261ead0febc9220b
Update Backend.js Fix interface method, see #30584.
[ { "path": "src/renderers/common/Backend.js", "patch": "@@ -346,9 +346,10 @@ class Backend {\n \t * @param {Texture} dstTexture - The destination texture.\n \t * @param {?Vector4} [srcRegion=null] - The region of the source texture to copy.\n \t * @param {?(Vector2|Vector3)} [dstPosition=null] - The destinat...
2025-03-04T08:19:18
denoland/deno
202cb32f8022ba924b778a0d60e658ebc529985b
f99eb8ce89ca4091ae94182b740fc6c345c070d1
fix(node/crypto): integrate async_hooks for domain error handling (#31751) Closes https://github.com/denoland/deno/issues/31636 This PR adds: - `AsyncHook` in `domain.ts` with `init`/`before`/`after`/`destroy` callbacks to associate async operations with domains - `emitInit`/`emitBefore`/`emitAfter`/`emitDestroy` cal...
[ { "path": "ext/node/polyfills/domain.ts", "patch": "@@ -5,8 +5,10 @@\n \n import { primordials } from \"ext:core/mod.js\";\n import { ERR_UNHANDLED_ERROR } from \"ext:deno_node/internal/errors.ts\";\n+import { AsyncHook } from \"ext:deno_node/internal/async_hooks.ts\";\n const {\n ArrayPrototypeIndexOf,\n...
2026-01-05T14:04:06
golang/go
1768cb40b838a36f9bdcbe5381f2e086483f22f5
a9093067ee0fda40421bd1d4fad893dfa6c99fd5
crypto/tls: add SecP256r1/SecP384r1MLKEM1024 hybrid post-quantum key exchanges Fixes #71206 Change-Id: If3cf75261c56828b87ae6805bd2913f56a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/722140 Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: R...
[ { "path": "api/next/71206.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg crypto/tls, const SecP256r1MLKEM768 = 4587 #71206\n+pkg crypto/tls, const SecP256r1MLKEM768 CurveID #71206\n+pkg crypto/tls, const SecP384r1MLKEM1024 = 4589 #71206\n+pkg crypto/tls, const SecP384r1MLKEM1024 CurveID #71206", "additions": 4, ...
2025-11-19T16:32:42
vuejs/vue
405d8e9f4c3201db2ae0e397d9191d9b94edc219
37533fd71e4fe002c909d6b167873cad5097f6b9
fix: prevent memory leak due to circular reference in vnodes fix #6759
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -133,6 +133,10 @@ export function lifecycleMixin (Vue: Class<Component>) {\n if (vm.$el) {\n vm.$el.__vue__ = null\n }\n+ // release circular reference (#6759)\n+ if (vm.$vnode) {\n+ vm.$vnode.parent = null\n+ }\n }\n }\n...
2017-10-09T15:48:19
mrdoob/three.js
2244d4acb61ec25cac5afb2eb34a14602c7e4f1a
4944ad7a7f08944981987de860255b90a123f8c0
Update Raycaster.js Fix typo.
[ { "path": "src/core/Raycaster.js", "patch": "@@ -5,7 +5,7 @@ import { Layers } from './Layers.js';\n const _matrix = /*@__PURE__*/ new Matrix4();\n \n /**\n- * This class is designed to assist with raycasting] Raycasting is used for\n+ * This class is designed to assist with raycasting. Raycasting is used f...
2025-03-01T13:43:06
denoland/deno
090c7f3b276ce2a0598a44e67f8f51d6356d5c82
ded26474c0112b4b6817a1e5f8874ac97e088d8e
fix: deno cross compile for intel mac target (#31714) Do not attempt to codesign the final deno compile binary on non-macOS hosts. This restores earlier behavior of deno compile when binary is built for the intel mac target Fixes https://github.com/denoland/deno/issues/31698 Fixes https://github.com/denoland/deno/iss...
[ { "path": "Cargo.lock", "patch": "@@ -5812,9 +5812,9 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.12.5\"\n+version = \"0.12.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2d68355a1ba8740fde49a5dbd4ba3e0f3f36dbd122a39f8a3e362e43107226ff\"\n...
2026-01-05T13:09:32
vuejs/vue
37533fd71e4fe002c909d6b167873cad5097f6b9
96b97448118de0939bf5f77c9b74cf1613a5a107
refactor: improve errorCaptured propagation behavior
[ { "path": "src/core/util/error.js", "patch": "@@ -8,12 +8,15 @@ export function handleError (err: Error, vm: any, info: string) {\n if (vm) {\n let cur = vm\n while ((cur = cur.$parent)) {\n- if (cur.$options.errorCaptured) {\n- try {\n- const propagate = cur.$options.errorCap...
2017-10-09T13:51:54
golang/go
86cd9b5c905d29b18ddc3b93dff60e12143cc1c8
1265ebfe274c31713bd5b72f570b36dbf0005e63
[dev.simd] simd, cmd/compile: add float -> int conversions This CL also fixed some documentation errors in existing APIs. Go defaults MXCSR to mask exceptions, the documentation is based on this fact. Change-Id: I745083b82b4bef93126a4b4e41f8698956963704 Reviewed-on: https://go-review.googlesource.com/c/go/+/724320 L...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -45,9 +45,25 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VCVTTPS2DQ128,\n \t\tssa.OpAMD64VCVTTPS2DQ256,\n \t\tssa.OpAMD64VCVTTPS2DQ512,\n-\t\tssa.OpAMD64VCVTPS2UDQ128,\n-\t\tssa.OpAMD64VCVTPS2UDQ256,\n-\t\...
2025-11-25T17:27:23
mrdoob/three.js
628fc0d0bb7bb6ca8852465aeaa7d149869281f3
008362f9af0d078aaf3d88eaef73942e8aae013e
Doc: fix some errors (#30632) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "examples/jsm/geometries/ParametricGeometries.js", "patch": "@@ -98,7 +98,7 @@ class ParametricTorusKnotGeometry extends ParametricTubeGeometry {\n \t\tconst radiusSegments = segmentsR;\n \t\tconst extrudePath = new TorusKnotCurve();\n \n-\t\tsuper( extrudePath, segments, tube, radiusSegments, tru...
2025-02-28T21:17:14
denoland/deno
7222e85d435b977de1ab810db067b86f29e6444f
e5b1487f7f6dc18b8ce8618ba3f8455f8379ca8b
fix(ext/websocket): prevent sending multiple close frames (#31747) Fixes https://github.com/denoland/deno/issues/21642
[ { "path": "Cargo.lock", "patch": "@@ -3975,7 +3975,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"27cea6e7f512d43b098939ff4d5a5d6fe3db07971e1d05176fe26c642d33f5b8\"\n dependencies = [\n \"getrandom 0.3.3\",\n- \"rand 0.9.1\",\n+ \"rand 0.9.2\",\n \"siphasher 1.0.1\"...
2026-01-02T18:09:39
vuejs/vue
2876ed870c5368a1767fbeddf06e94b55ebd6234
35e55ecd42d0d5dcb476aca79c91186b8f3dc226
fix: resolve async component default for native dynamic import fix #6751
[ { "path": "src/core/vdom/helpers/resolve-async-component.js", "patch": "@@ -6,13 +6,17 @@ import {\n isDef,\n isUndef,\n isTrue,\n- isObject\n+ isObject,\n+ hasSymbol\n } from 'core/util/index'\n \n import { createEmptyVNode } from 'core/vdom/vnode'\n \n-function ensureCtor (comp, base) {\n- if (c...
2017-10-07T06:43:10
mrdoob/three.js
1eabccd84b1a0050f9d1c57c941004ff263e63e4
ba08cab76a91a1f7975fb4712ccfe98e9ea38888
Docs: Fix some typing (#30626) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/animation/AnimationClip.js", "patch": "@@ -289,7 +289,7 @@ class AnimationClip {\n \t * @static\n \t * @param {Object} animation - A serialized animation clip as JSON.\n \t * @param {Array<Bones>} bones - An array of bones.\n-\t * @return {AnimationClip} The new animation clip.\n+\t * @return...
2025-02-27T17:33:31
golang/go
6954be0baacd0f05edfd3015cc3ecfbf237b3967
8d6d14f5d68c6011eb0ae1c9fac6857475aae7a8
internal/strconv: delete ftoaryu CL 700075 made this dead code. Benchmarks below for CL 700075, testing Dragonbox vs the old Ryu being deleted. The "Fixed" benchmarks are unchanged, which gives a sense of the noise level. benchmark \ host linux-amd64 s7 linux-arm64 local linux-386 s7:GOA...
[ { "path": "src/internal/strconv/ftoaryu.go", "patch": "@@ -1,307 +0,0 @@\n-// Copyright 2021 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-package strconv\n-\n-import \"math/bits\"\n-\n-// binary to decim...
2025-11-24T19:03:34
denoland/deno
e5b1487f7f6dc18b8ce8618ba3f8455f8379ca8b
66c2ed6ed0c2c8a99388721dca8eca67b4ed5c7b
fix(webgpu): update wgpu to 28.0.0 (#31163)
[ { "path": "Cargo.lock", "patch": "@@ -96,7 +96,7 @@ dependencies = [\n \"cfg-if\",\n \"once_cell\",\n \"version_check\",\n- \"zerocopy\",\n+ \"zerocopy 0.7.32\",\n ]\n \n [[package]]\n@@ -717,18 +717,18 @@ dependencies = [\n \n [[package]]\n name = \"bytemuck\"\n-version = \"1.21.0\"\n+version = \"1.24.0...
2026-01-02T06:28:49
vuejs/vue
6dac3dbe441302cebb945b675f78f8e7247e2a97
514b90b64770cba9f905d2dff59dfa0e064e580c
feat: rename catchError -> errorCaptured
[ { "path": "src/core/util/error.js", "patch": "@@ -8,12 +8,12 @@ export function handleError (err: Error, vm: any, info: string) {\n if (vm) {\n let cur = vm\n while ((cur = cur.$parent)) {\n- if (cur.$options.catchError) {\n+ if (cur.$options.errorCaptured) {\n try {\n- ...
2017-10-06T20:35:27
mrdoob/three.js
ba08cab76a91a1f7975fb4712ccfe98e9ea38888
791353c68b19645308b70b0b2c0e2c6d36699856
Docs: More JSDoc. (#30624) * Docs: More JSDoc. * AnimationUtils: Fix `if`.
[ { "path": "src/animation/AnimationAction.js", "patch": "@@ -1,13 +1,31 @@\n import { WrapAroundEnding, ZeroCurvatureEnding, ZeroSlopeEnding, LoopPingPong, LoopOnce, LoopRepeat, NormalAnimationBlendMode, AdditiveAnimationBlendMode } from '../constants.js';\n \n-\n+/**\n+ * An instance of `AnimationAction` sc...
2025-02-27T15:53:00
golang/go
8d6d14f5d68c6011eb0ae1c9fac6857475aae7a8
4ca048cc326bf310f873315dfb1e2644ec243299
compress/flate: move big non-pointer arrays to end of compressor The compressor type is fairly large: 656616 bytes on amd64. Before this patch, it had fields of slice and interface type near the end of the struct. As those types always contain pointers, the ptrBytes value in the type descriptor was quite large. That f...
[ { "path": "src/compress/flate/deflate.go", "patch": "@@ -89,16 +89,6 @@ type compressor struct {\n \tstep func(*compressor) // process window\n \tbestSpeed *deflateFast // Encoder for BestSpeed\n \n-\t// Input hash chains\n-\t// hashHead[hashValue] contains the largest inpu...
2025-09-29T04:38:53
denoland/deno
66c2ed6ed0c2c8a99388721dca8eca67b4ed5c7b
d08d79083dd7b760aa556d057e4a937d4dd6c07e
fix: update urlpattern to 0.4.2 (#31193) Fixes #25953 Fixes #31072
[ { "path": "Cargo.lock", "patch": "@@ -4177,9 +4177,9 @@ checksum = \"aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b\"\n \n [[package]]\n name = \"form_urlencoded\"\n-version = \"1.2.1\"\n+version = \"1.2.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = ...
2026-01-02T02:11:20
vuejs/vue
514b90b64770cba9f905d2dff59dfa0e064e580c
db138e2254d71f6b96e033acf66ba43ad269841a
fix: add slot v-bind warning (#6736) close #6677
[ { "path": "src/core/instance/render-helpers/render-slot.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { extend, warn } from 'core/util/index'\n+import { extend, warn, isObject } from 'core/util/index'\n \n /**\n * Runtime helper for rendering <slot>\n@@ -15,6 +15,12 @@ export function renderSlot...
2017-10-06T19:48:00
mrdoob/three.js
bb126a25931dc631515087c629230a89c17a9398
a8a6faf14b4837070bdfabb9e6ee5df23aa05d52
FBXLoader: Loading FBX files with out-of-bounds material assignments lead to incorrect geometry groups and subsequent errors (#30581) In line with other FBX loaders, a default material is now created.
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -22,6 +22,7 @@ import {\n \tMesh,\n \tMeshLambertMaterial,\n \tMeshPhongMaterial,\n+\tMeshStandardMaterial,\n \tNumberKeyframeTrack,\n \tObject3D,\n \tPerspectiveCamera,\n@@ -1298,6 +1299,35 @@ class FBXTreeParser {\n \n \t\t}\n \n+\t\t// Sanitizat...
2025-02-25T10:11:04
golang/go
113eb42efca8e14355f57c89cd38d31616728a27
6e5cfe94b0635e07466a8b8ebeacae4600d273d7
strconv: replace Ryu ftoa with Dragonbox Dragonbox is a faster ftoa algorithm that provides the same guarantees as Ryu: round-trip conversion, shortest length, and correct rounding. Dragonbox only supports shortest-precision conversion, so we continue to use Ryu-printf for fixed precision. The new implementation has ...
[ { "path": "src/internal/strconv/ftoa.go", "patch": "@@ -86,6 +86,7 @@ func genericFtoa(dst []byte, val float64, fmt byte, prec, bitSize int) []byte {\n \tneg := bits>>(flt.expbits+flt.mantbits) != 0\n \texp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)\n \tmant := bits & (uint64(1)<<flt.mantbits - 1)\n+...
2025-11-20T23:56:29
denoland/deno
d08d79083dd7b760aa556d057e4a937d4dd6c07e
0905fd9d36367fb46337c9be490a7337cffd758a
fix(ext/node): support numbered positional parameters in node:sqlite (#31722) SQLite numbered positional parameters (?1, ?2, ?NNN) were incorrectly treated as named parameters and skipped during binding, causing a "column index out of range" error. This fix updates the parameter binding logic to recognize that paramet...
[ { "path": "ext/node/ops/sqlite/statement.rs", "patch": "@@ -543,20 +543,33 @@ impl StatementSync {\n anon_start += 1;\n }\n \n- let mut anon_idx = 1;\n+ // SAFETY: `raw` is a valid pointer to a sqlite3_stmt.\n+ let sql_param_count = unsafe { ffi::sqlite3_bind_parameter_count(raw...
2026-01-01T16:04:36
vuejs/vue
2503e13de58c7f8286c77c2668118ed30b69d79d
3c65239ad406f371564c1b5d8303b772e5c5a7d1
chore: fix sponsor logo width
[ { "path": "README.md", "patch": "@@ -124,8 +124,7 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n </td>\n <td align=\"center\" valign=\"middle\">\n <a href=\"http://tooltwist.com\" target=\"_blank\">\n- <img width=\"14\n- 0px\" src=\...
2017-10-05T20:49:57
mrdoob/three.js
a8a6faf14b4837070bdfabb9e6ee5df23aa05d52
3184121924ac47c8ffcbb0e866d834f804da506f
Reflector: Add `forceUpdate`. (#30569) * Add needsUpdate to Reflector * Rename needsUpdate to forceUpdate in Reflector * Update Reflector.js Improved code style. * Add forceUpdate to ReflectorBaseNode * ReflectorNode.js Eslint fix * Update ReflectorNode.js --------- Co-authored-by: Michael Herzog <michael.herz...
[ { "path": "examples/jsm/objects/Reflector.js", "patch": "@@ -21,6 +21,7 @@ class Reflector extends Mesh {\n \t\tthis.isReflector = true;\n \n \t\tthis.type = 'Reflector';\n+\t\tthis.forceUpdate = false;\n \t\tthis.camera = new PerspectiveCamera();\n \n \t\tconst scope = this;\n@@ -76,9 +77,10 @@ class Refle...
2025-02-25T10:10:02
golang/go
6e5cfe94b0635e07466a8b8ebeacae4600d273d7
2c7c62b97235c376205653200c2bd14ac03baa41
crypto: fix dead links and correct SHA-512 algorithm comment Change-Id: I71d63b0b78a9fc4895574f6df465e22c9585e77c Reviewed-on: https://go-review.googlesource.com/c/go/+/710196 Reviewed-by: Filippo Valsorda <filippo@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped...
[ { "path": "src/crypto/internal/fips140/sha256/_asm/sha256block_amd64_avx2.go", "patch": "@@ -15,7 +15,7 @@ import (\n // To find it, surf to http://www.intel.com/p/en_US/embedded\n // and search for that title.\n // AVX2 version by Intel, same algorithm as code in Linux kernel:\n-// https://github.com/torva...
2025-10-08T18:13:56
denoland/deno
0905fd9d36367fb46337c9be490a7337cffd758a
0ffed3e8fbd1ff0c26f37539e20401ddb53d3119
feat(node/http): enable keepAlive connection reuse for HTTP Agent (#31709) Closes https://github.com/denoland/deno/issues/29676 Enables HTTP Agent keepAlive connection pooling for improved performance with Node.js HTTP clients. Changes: - Use `conn.without_shutdown()` to allow socket reuse after HTTP response - Add ...
[ { "path": "ext/node/lib.rs", "patch": "@@ -323,6 +323,7 @@ deno_core::extension!(deno_node,\n ops::handle_wrap::op_node_new_async_id,\n ops::http::op_node_http_fetch_response_upgrade,\n ops::http::op_node_http_request_with_conn,\n+ ops::http::op_node_http_response_reclaim_conn,\n ops::htt...
2025-12-30T13:22:08
vuejs/vue
b3cd9bc3940eb1e01da7081450929557d9c1651e
e34c6b78bd77d5eff86a83525a71f1e2f90607a4
feat: add catchError option also propagate error thrown in renderError() to global handler
[ { "path": "src/core/instance/render.js", "patch": "@@ -101,14 +101,21 @@ export function renderMixin (Vue: Class<Component>) {\n try {\n vnode = render.call(vm._renderProxy, vm.$createElement)\n } catch (e) {\n- handleError(e, vm, `render function`)\n+ handleError(e, vm, `render`)\n ...
2017-10-05T18:59:38
golang/go
657b331ff5da9b02bd98b489ff144a03c6651bae
bd9222b525b44d91941fc4d179b467103817d463
net/url: fix example of Values.Encode Calling url.Values.Encode generates a query string with the values sorted by key. However, in the example in the documentation this behaviour is not reflected. This change corrects this. Change-Id: Id95a5d79b57dc20c3bff1f0c6975c76dcd8412b1 Reviewed-on: https://go-review.googlesou...
[ { "path": "src/net/url/example_test.go", "patch": "@@ -58,11 +58,12 @@ func ExampleValues() {\n \tv.Add(\"friend\", \"Jess\")\n \tv.Add(\"friend\", \"Sarah\")\n \tv.Add(\"friend\", \"Zoe\")\n-\t// v.Encode() == \"name=Ava&friend=Jess&friend=Sarah&friend=Zoe\"\n+\tfmt.Println(v.Encode())\n \tfmt.Println(v.Ge...
2025-11-24T19:52:22
vuejs/vue
6d1f4cb89a156bf5f84942b1031354aa93916cb7
6e41679a96582da3e0a60bdbf123c33ba0e86b31
fix: fallback to Promise in non-DOM environments
[ { "path": "src/core/util/env.js", "patch": "@@ -103,6 +103,12 @@ export const nextTick = (function () {\n timerFunc = () => {\n port.postMessage(1)\n }\n+ } else if (typeof Promise !== 'undefined' && isNative(Promise)) {\n+ // use microtask in non-DOM environments, e.g. Weex\n+ const p ...
2017-10-05T05:01:08
denoland/deno
0ffed3e8fbd1ff0c26f37539e20401ddb53d3119
0ae83e43ca96a1b40e7c8bcb80590f6a1fe757c2
fix(ext/node): support TypedArray and DataView targets in Buffer.copy() (#31734) Closes https://github.com/denoland/deno/issues/31637 - `parallel/test-buffer-copy.js` now passes - Allow `Buffer.copy()` to accept any `ArrayBufferView` (TypedArray or DataView) as the target, matching Node.js behavior - Previously only ...
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -17,7 +17,9 @@ const {\n ArrayPrototypeSlice,\n ArrayPrototypeForEach,\n BigInt,\n+ DataViewPrototypeGetBuffer,\n DataViewPrototypeGetByteLength,\n+ DataViewPrototypeGetByteOffset,\n Float32Array,\n Float64Array,\n MathFloor,\n...
2025-12-30T13:19:49
golang/go
bd9222b525b44d91941fc4d179b467103817d463
e3088d6eb8ff0d63edc3452cbed827cb67231182
crypto/sha3: reduce cSHAKE allocations Consider a hypothetical SumCSHAKE256 function: func SumCSHAKE256(N, S, data []byte, length int) []byte { out := make([]byte, 64) return sumCSHAKE256(out, N, S, data, length) } func sumCSHAKE256(out, N, S, data []byte, length int) []byte { if len(out) < length { out ...
[ { "path": "src/crypto/internal/fips140/sha3/shake.go", "patch": "@@ -23,14 +23,14 @@ type SHAKE struct {\n \tinitBlock []byte\n }\n \n-func bytepad(data []byte, rate int) []byte {\n-\tout := make([]byte, 0, 9+len(data)+rate-1)\n-\tout = append(out, leftEncode(uint64(rate))...)\n-\tout = append(out, data...)...
2024-12-15T01:38:43
vuejs/vue
6e41679a96582da3e0a60bdbf123c33ba0e86b31
1780b1f07b9d3910bac5b101cb65b645f67b1df5
fix: use MessageChannel for nextTick fix #6566, #6690
[ { "path": "src/core/util/env.js", "patch": "@@ -1,7 +1,6 @@\n /* @flow */\n-/* globals MutationObserver */\n+/* globals MessageChannel */\n \n-import { noop } from 'shared/util'\n import { handleError } from './error'\n \n // can we use __proto__?\n@@ -80,41 +79,29 @@ export const nextTick = (function () {\...
2017-10-05T04:52:47
denoland/deno
0ae83e43ca96a1b40e7c8bcb80590f6a1fe757c2
223d7bb683a425ecbf5a6380a9a0a5fd46581a20
fix(task): prioritize member `package.json` when `deno.json` only in root (#31736) It was using the deno.json from the root even if the member package.json had a script with the same name.
[ { "path": "cli/args/mod.rs", "patch": "@@ -799,7 +799,7 @@ impl CliOptions {\n pub fn resolve_storage_key_resolver(&self) -> StorageKeyResolver {\n if let Some(location) = &self.flags.location {\n StorageKeyResolver::from_flag(location)\n- } else if let Some(deno_json) = self.start_dir.maybe_...
2025-12-29T22:49:03
golang/go
e3088d6eb8ff0d63edc3452cbed827cb67231182
a5ebc6b67c1e397ab74abadf20a7f290cf28949e
crypto/hpke: expose crypto/internal/hpke Fixes #75300 Change-Id: I6a83e0d040dba3366819d2afff704f886a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/723560 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Auto-Submit: Filippo Valsorda <filippo@golang.o...
[ { "path": "api/next/75300.txt", "patch": "@@ -10,3 +10,54 @@ pkg crypto/ecdh, type KeyExchanger interface, ECDH(*PublicKey) ([]uint8, error)\n pkg crypto/ecdh, type KeyExchanger interface, PublicKey() *PublicKey #75300\n pkg crypto/mlkem, method (*DecapsulationKey1024) Encapsulator() crypto.Encapsulator #75...
2025-11-22T22:03:14
mrdoob/three.js
4c052540fe2f67470bb5aac57d8d0bb32a509357
5323b5e78c5198ff4bb9d4c09b47c468adb2749f
Update Audio.js Docs: Fix typo.
[ { "path": "src/audio/Audio.js", "patch": "@@ -3,7 +3,7 @@ import { Object3D } from '../core/Object3D.js';\n /**\n * Represents a non-positional ( global ) audio object.\n *\n- * This and related audio module make use of the [Web Audio API]{@link https://www.w3.org/TR/webaudio-1.1/}.\n+ * This and related ...
2025-02-24T15:13:57
vuejs/vue
1780b1f07b9d3910bac5b101cb65b645f67b1df5
aa1356e83de1112660e7a88ff955f49d64bb5b1f
build: fix weex build
[ { "path": "package.json", "patch": "@@ -23,7 +23,7 @@\n \"dev:weex:compiler\": \"rollup -w -c build/config.js --environment TARGET:weex-compiler \",\n \"build\": \"node build/build.js\",\n \"build:ssr\": \"npm run build -- web-runtime-cjs,web-server-renderer\",\n- \"build:weex\": \"npm run bu...
2017-10-04T22:23:53
mrdoob/three.js
c8b3e444d1c1b38443a5642d68a8ad1594ab0142
9d03b1261e4755d23116095a5358b9bf6318045d
DDSLoader: Fix incorrect alpha when loading 24-bit uncompressed textures. (#30598)
[ { "path": "examples/jsm/loaders/DDSLoader.js", "patch": "@@ -126,7 +126,7 @@ class DDSLoader extends CompressedTextureLoader {\n \t\t\t\t\tbyteArray[ dst ] = r; dst ++;\t//r\n \t\t\t\t\tbyteArray[ dst ] = g; dst ++;\t//g\n \t\t\t\t\tbyteArray[ dst ] = b; dst ++;\t//b\n- \t\t\tbyteArray[ d...
2025-02-23T22:10:04
golang/go
e8fdfeb72b0468b645f256bcaf46570f866a54fd
12d437c09a2ea871333547c8ac3ea536f433891b
reflect: add iterator equivalents for NumField, NumIn, NumOut and NumMethod The new methods are Type.Fields, Type.Methods, Type.Ins, Type.Outs, Value.Fields and Value.Methods. These methods have been introduced into the reflect package (as well as tests) replacing three-clause for loops where possible. Fixes #66631 ...
[ { "path": "api/next/66631.txt", "patch": "@@ -0,0 +1,6 @@\n+pkg reflect, type Type interface, Fields() iter.Seq[StructField] #66631\n+pkg reflect, type Type interface, Methods() iter.Seq[Method] #66631\n+pkg reflect, type Type interface, Ins() iter.Seq[Type] #66631\n+pkg reflect, type Type interface, Outs()...
2025-11-19T21:18:39
denoland/deno
223d7bb683a425ecbf5a6380a9a0a5fd46581a20
ce1d4514ac401d8550df16b59b37c20bb5958b3b
fix(serve): net permissions in config file (#31718) It wasn't being resolved properly because we were injecting allow-net options when parsing flags instead of when resolving wholly resolving permissions. Closes #31728
[ { "path": "cli/args/flags.rs", "patch": "@@ -6509,25 +6509,6 @@ fn serve_parse(\n let open_site = matches.remove_one::<bool>(\"open\").unwrap_or(false);\n \n runtime_args_parse(flags, matches, true, true, true)?;\n- // If the user didn't pass --allow-net, add this port to the network\n- // allowlist. ...
2025-12-29T14:11:22
vuejs/vue
8295f716657ffe516f30e84f29ca94f4a0aefabf
dae173d96d15f47de6ce6961354d5c05e4273005
fix: warn slot-scope when used as a prop
[ { "path": "src/core/instance/state.js", "patch": "@@ -18,6 +18,7 @@ import {\n bind,\n noop,\n hasOwn,\n+ hyphenate,\n isReserved,\n handleError,\n nativeWatch,\n@@ -84,9 +85,11 @@ function initProps (vm: Component, propsOptions: Object) {\n const value = validateProp(key, propsOptions, pro...
2017-10-04T21:31:58
mrdoob/three.js
155d41e56acbc61cf5f426ab9f8433ed2f1273a6
11c6c58190870ac5ffae1994ec7198bd2d68927a
Docs: Fixes missing material on the doc page about the LOD class (#30591) * Docs: Fixes missing material on the doc page about the LOD class * Update LOD.html --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "docs/api/en/objects/LOD.html", "patch": "@@ -25,6 +25,7 @@ <h2>Code Example</h2>\n \n \t\t<code>\n \t\tconst lod = new THREE.LOD();\n+\t\tconst material = new THREE.MeshBasicMaterial( { color: 0xffff00 } );\n \n \t\t//Create spheres with 3 levels of detail and create new LOD levels for them\n \t\...
2025-02-23T14:30:53
golang/go
4fb7e083a868946db08db9ef3bc807e21c8fc961
31d373534e6b2582817585851f45b8af6386d023
crypto/tls: expose HelloRetryRequest state This commit adds fields to the ClientHelloInfo and ConnectionState structures to represent hello retry request state information. ClientHelloInfo gains a new HelloRetryRequest bool field that indicates if the client hello was sent in response to a TLS 1.3 hello retry request...
[ { "path": "api/next/74425.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/tls, type ConnectionState struct, HelloRetryRequest bool #74425\n+pkg crypto/tls, type ClientHelloInfo struct, HelloRetryRequest bool #74425", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc...
2025-11-03T19:47:42
denoland/deno
ce1d4514ac401d8550df16b59b37c20bb5958b3b
11e9e073d9fc0c670206f41727c54789a1be56af
fix(install): wait for package installations before applying patches (#31711) ## Overview In the current latest version of Deno (2.6.3), there is an issue where running the `deno install` command causes patched packages specified in the `links` property of `deno.json` to be overwritten with npm package sources. To re...
[ { "path": "libs/npm_installer/local.rs", "patch": "@@ -468,6 +468,12 @@ impl<\n }\n }\n \n+ // Wait for all npm package installations to complete before applying patches\n+ // This prevents race conditions where npm packages could overwrite patch files\n+ while let Some(result) = cache_fu...
2025-12-24T20:29:35
mrdoob/three.js
3bb6e70ca2107d709c003b4a7df9853d9fc51717
498be07c42e792343819e72f08e393609a43f94e
RenderTarget: Fix copy of images. (#30585)
[ { "path": "docs/api/en/renderers/WebGLRenderTarget.html", "patch": "@@ -133,7 +133,11 @@ <h3>[method:WebGLRenderTarget clone]()</h3>\n \t\t<p>Creates a copy of this render target.</p>\n \n \t\t<h3>[method:this copy]( [param:WebGLRenderTarget source] )</h3>\n-\t\t<p>Adopts the settings of the given render ta...
2025-02-23T11:58:22
vuejs/vue
2431d3d74396b33a2a120a835cfe7a776f06e277
2b5c83af6d8b15510424af4877d58c261ea02e16
chore: fix warning space
[ { "path": "src/core/instance/proxy.js", "patch": "@@ -15,10 +15,10 @@ if (process.env.NODE_ENV !== 'production') {\n \n const warnNonPresent = (target, key) => {\n warn(\n- `Property or method \"${key}\" is not defined on the instance but` +\n+ `Property or method \"${key}\" is not defined o...
2017-10-04T02:25:52
golang/go
31d373534e6b2582817585851f45b8af6386d023
aa093eed830796b3ba498b04077d8ee2d6d428bf
doc: pre-announce removal of 1.23 and earlier crypto GODEBUGs For #75316 Change-Id: Ife391b8c3e7fd2fec0e53b296d47b4756a787001 Reviewed-on: https://go-review.googlesource.com/c/go/+/723100 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea...
[ { "path": "doc/godebug.md", "patch": "@@ -334,13 +334,15 @@ any effect.\n Go 1.23 changed the default TLS cipher suites used by clients and servers when\n not explicitly configured, removing 3DES cipher suites. The default can be reverted\n using the [`tls3des` setting](/pkg/crypto/tls/#Config.CipherSuites)...
2025-11-21T22:11:41
mrdoob/three.js
a759c34fa37878be156074dfb45d8454dd3a9dda
1eb2fc95b25fc13e82644f031a013bb22d793e8d
COnfig: Fix eslint for test and .gitignore (#30580) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": ".gitignore", "patch": "@@ -8,11 +8,13 @@ npm-debug.log\n .vs/\n \n test/unit/build\n+test/treeshake/index-src.bundle.min.js\n test/treeshake/index.bundle.js\n test/treeshake/index.bundle.min.js\n test/treeshake/index.webgpu.bundle.js\n test/treeshake/index.webgpu.bundle.min.js\n-test/treeshake/in...
2025-02-21T14:16:24
denoland/deno
11e9e073d9fc0c670206f41727c54789a1be56af
1ce0e55d7850de54ad27c48c1fb097cb6156af73
fix(ext/node): support for inspector.url() (#31705) Closes https://github.com/denoland/deno/issues/31700
[ { "path": "ext/node/lib.rs", "patch": "@@ -34,6 +34,7 @@ use deno_permissions::PermissionCheckError;\n pub use node_resolver::DENO_SUPPORTED_BUILTIN_NODE_MODULES as SUPPORTED_BUILTIN_NODE_MODULES;\n pub use node_resolver::PathClean;\n use ops::handle_wrap::AsyncId;\n+pub use ops::inspector::InspectorServerU...
2025-12-22T23:42:06
vuejs/vue
2b5c83af6d8b15510424af4877d58c261ea02e16
ae347a52259b24507a9c747c80d78a6beaa36de0
fix: handle errors in errorHandler close #6714
[ { "path": "src/core/util/error.js", "patch": "@@ -6,16 +6,24 @@ import { inBrowser } from './env'\n \n export function handleError (err: Error, vm: any, info: string) {\n if (config.errorHandler) {\n- config.errorHandler.call(null, err, vm, info)\n- } else {\n- if (process.env.NODE_ENV !== 'product...
2017-10-03T22:23:43
mrdoob/three.js
eb51e091948980d061ea77625c7d78cf6ac65126
2ab9aea318610820a3f5410c898eb56f8d6a9c29
Revert "RenderTarget: Fix copy of images. (#30570)" (#30572) This reverts commit 2ab9aea318610820a3f5410c898eb56f8d6a9c29.
[ { "path": "src/core/RenderTarget.js", "patch": "@@ -148,12 +148,12 @@ class RenderTarget extends EventDispatcher {\n \t\t\tthis.textures[ i ].isRenderTargetTexture = true;\n \t\t\tthis.textures[ i ].renderTarget = this;\n \n-\t\t\t// ensure image object is not shared, see #20328\n+\t\t}\n \n-\t\t\tconst ima...
2025-02-20T12:32:51
denoland/deno
1ce0e55d7850de54ad27c48c1fb097cb6156af73
0a162aaecceb267f099b0347bc7722950de7be3e
fix(compile): make compile work with `--unstable-npm-lazy-caching` (#31704) Closes https://github.com/denoland/deno/issues/31703
[ { "path": "cli/standalone/binary.rs", "patch": "@@ -49,13 +49,15 @@ use deno_lib::util::v8::construct_v8_flags;\n use deno_lib::version::DENO_VERSION_INFO;\n use deno_npm::NpmSystemInfo;\n use deno_npm::resolution::SerializedNpmResolutionSnapshot;\n+use deno_npm::resolution::ValidSerializedNpmResolutionSnap...
2025-12-22T19:28:45
vuejs/vue
ae347a52259b24507a9c747c80d78a6beaa36de0
6ad44e13e990951ff152a0fd7042613c5a87f1c0
fix: ensure nextTick are passed to errorHandler (#6730)
[ { "path": "src/core/util/env.js", "patch": "@@ -89,7 +89,7 @@ export const nextTick = (function () {\n /* istanbul ignore if */ // $flow-disable-line\n if (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve()\n- var logError = err => { console.error(err) }\n+ var ...
2017-10-03T22:06:13
mrdoob/three.js
2ab9aea318610820a3f5410c898eb56f8d6a9c29
a5df72ec62b0a48a9bf622180686d9874eded995
RenderTarget: Fix copy of images. (#30570)
[ { "path": "src/core/RenderTarget.js", "patch": "@@ -148,12 +148,12 @@ class RenderTarget extends EventDispatcher {\n \t\t\tthis.textures[ i ].isRenderTargetTexture = true;\n \t\t\tthis.textures[ i ].renderTarget = this;\n \n-\t\t}\n+\t\t\t// ensure image object is not shared, see #20328\n \n-\t\t// ensure i...
2025-02-20T10:16:43
vuejs/vue
6ad44e13e990951ff152a0fd7042613c5a87f1c0
baabd6d14016c730fe40a4202ae9b8f75e80041c
fix(ref): preserve ref on components after removing root element (#6718) fix #6632, #6641
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -697,6 +697,8 @@ export function createPatchFunction (backend) {\n insert.fns[i]()\n }\n }\n+ } else {\n+ registerRef(ancestor)\n }\n ancestor = ancestor.parent\n ...
2017-10-03T22:04:23
mrdoob/three.js
d8bf25aa51968e78bdac6f4de2d2bfbb0d049da2
4bc99d47eb8d3e339ca936d3458a6777ce60070d
Docs: Fix function types. (#30559)
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -292,7 +292,7 @@ class NodeMaterial extends Material {\n \t\t * \treturn shadow.mix( color( 0xff0000 ), 1 ); // modify shadow color\n \t\t * } );\n \t\t *\n-\t\t * @type {?(Function<vec4>|FunctionNode<vec4>)}\n+\t\t * @type {?(Function|FunctionNo...
2025-02-19T08:53:01
golang/go
aa093eed830796b3ba498b04077d8ee2d6d428bf
1dc1505d4ad0d3a3172d90e16858697b0dca0ab7
crypto/fips140: add Version Fixes #75301 Change-Id: If953b4382499570d5437491036f91cbe4fec7c01 Reviewed-on: https://go-review.googlesource.com/c/go/+/723101 Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "api/next/75301.txt", "patch": "@@ -0,0 +1 @@\n+pkg crypto/fips140, func Version() string #75301", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/crypto/fips140/75301.md", "patch": "@@ -0,0 +1 @@\n+[Version] returns the res...
2025-11-21T22:27:36
vuejs/vue
baabd6d14016c730fe40a4202ae9b8f75e80041c
c5d0fa0503631b53338e5255bc8640da4b2fd4cb
fix(compiler): warn when inline-template component has no children (fix #6703) (#6715)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -309,7 +309,7 @@ function genDirectives (el: ASTElement, state: CodegenState): string | void {\n function genInlineTemplate (el: ASTElement, state: CodegenState): ?string {\n const ast = el.children[0]\n if (process.env.NODE_ENV !== 'production' &&...
2017-10-03T22:00:52
golang/go
6851795fb6cda61e2c8396c36da187a2bd87b29e
0921e1db83d3e67032999b5a2f54f5ede8ba39b5
runtime: add GODEBUG=tracebacklabels=1 to include pprof labels in tracebacks Copy LabelSet to an internal package as label.Set, and include (escaped) labels within goroutine stack dumps. Labels are added to the goroutine header as quoted key:value pairs, so the line may get long if there are a lot of labels. To hand...
[ { "path": "doc/godebug.md", "patch": "@@ -168,6 +168,12 @@ allows malformed hostnames containing colons outside of a bracketed IPv6 address\n The default `urlstrictcolons=1` rejects URLs such as `http://localhost:1:2` or `http://::1/`.\n Colons are permitted as part of a bracketed IPv6 address, such as `htt...
2025-05-23T20:04:08
mrdoob/three.js
4bc99d47eb8d3e339ca936d3458a6777ce60070d
91964e82f4e90ec1eee0eab443bcb65f7c3594ec
WebGPURenderer: Volumetric lighting (#30530) * volumetric fog - wip * performance-test * revision * Update webgpu_volume_cloud4.html * revision shadow * revisions * rename * volumetric lighting * rename to live test * improve names * update shadow intensity * rev * update title * update description * des...
[ { "path": "examples/files.json", "patch": "@@ -447,6 +447,8 @@\n \t\t\"webgpu_video_frame\",\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_volume_cloud\",\n+\t\t\"webgpu_volume_lighting\",\n+\t\t\"webgpu_volume_lighting_rectarea\",\n \t\t\"webgpu_volume_perlin\",\n \t\t\"webgpu_water\",\n \t\t\"webgpu_xr_...
2025-02-19T02:24:14
vuejs/vue
cf3be87b68260d9d7e9f3480d9aefeb8bad69e2e
c64f9ae1649175ee8cac1c7ecf3283897c948202
refactor: improve error msg for non-reactive properties (#6735) close #6657
[ { "path": "src/core/instance/proxy.js", "patch": "@@ -15,9 +15,11 @@ if (process.env.NODE_ENV !== 'production') {\n \n const warnNonPresent = (target, key) => {\n warn(\n- `Property or method \"${key}\" is not defined on the instance but ` +\n- `referenced during render. Make sure to declare...
2017-10-03T15:45:38
mrdoob/three.js
4c206121baeccf3be37f5bffcd2962fb2c827f91
4473f143082770a0f08fa3d72025dfb5cb23bb1c
Jsdoc: More fixes (#30557) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/materials/Material.js", "patch": "@@ -194,8 +194,8 @@ class Material extends EventDispatcher {\n \t\t *\n \t\t * This property has only an effect when using custom blending with `ConstantAlpha` or `OneMinusConstantAlpha`.\n \t\t *\n-\t\t * @type {Color}\n-\t\t * @default (0,0,0)\n+\t\t * @typ...
2025-02-18T22:44:49
denoland/deno
6aaed850b8a775c85eb4a4a6f20024a3f0e62ae2
d3668555dceb0b252234e8af5e26fe6118ba440a
fix(check): improve node types handling (#31677) 1. Always injects node types when someone has a `node:` import (like before, so this isn't dependent on the lib setting... which fixes the linked issue) 2. Handles someone doing `/// <reference lib="node" />`. Previously this was slightly broken. * https://github.com/d...
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -3,6 +3,7 @@\n use std::borrow::Cow;\n use std::collections::BTreeMap;\n use std::collections::HashMap;\n+use std::collections::HashSet;\n use std::fs;\n use std::future::Future;\n use std::ops::Range;\n@@ -1506,6 +1507,11 @@ impl DocumentModules {\n fo...
2025-12-20T10:17:45
golang/go
1a53ce9734c0b2a3e2a9814e75949ea77a978143
c6f882f6c58ed56fa4bd2d8256ec55d9992c3583
context: don't return the wrong error when Cause races cancellation Check to see if a context is canceled at all before checking for the cancellaion cause. If we can't find a cause, use the original error. Avoids a data race where we look for a cause, find none (because the context is not canceled), the context is ca...
[ { "path": "src/context/context.go", "patch": "@@ -286,23 +286,23 @@ func withCancel(parent Context) *cancelCtx {\n // Otherwise Cause(c) returns the same value as c.Err().\n // Cause returns nil if c has not been canceled yet.\n func Cause(c Context) error {\n+\terr := c.Err()\n+\tif err == nil {\n+\t\tretu...
2025-06-06T22:38:28
vuejs/vue
c64f9ae1649175ee8cac1c7ecf3283897c948202
a5e5b31455e0d64f834dd691b7488e0e105d32c3
fix: properly render value on <progress> in IE/Edge fix #6666
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { isIE9 } from 'core/util/env'\n+import { isIE9, isEdge } from 'core/util/env'\n \n import {\n extend,\n@@ -42,8 +42,9 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n ...
2017-10-03T04:02:27
mrdoob/three.js
97a078d73a8bdd77047809d0768ecea65588f447
eb41b4090cc1fbb5c7ae063a38c48d011fafce90
BatchedMesh: Deprecate old instancing render paths (#30550) * Deprecate use of "_multiDrawInstances" * r170 -> r173 * 173 -> 174 * Fix logs
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -870,6 +870,8 @@ class WebGLRenderer {\n \n \t\t\t\tif ( object._multiDrawInstances !== null ) {\n \n+\t\t\t\t\t// @deprecated, r174\n+\t\t\t\t\twarnOnce( 'THREE.WebGLRenderer: renderMultiDrawInstances has been deprecated and will be removed in r184. ...
2025-02-18T10:31:55
denoland/deno
d3668555dceb0b252234e8af5e26fe6118ba440a
9cd8077757a365f2e9e36499c2330d2d4facbb2e
Revert "fix(ext/node): stub out Module.register and Module.registerHooks" (#31684) Reverts denoland/deno#31666
[ { "path": "ext/node/polyfills/01_require.js", "patch": "@@ -1322,21 +1322,13 @@ Module.findSourceMap = findSourceMap;\n * @param {{ parentURL: string | URL, data: any, transferList: any[] }} [_options]\n */\n export function register(_specifier, _parentUrl, _options) {\n- throw new Error(\n- \"Module ...
2025-12-20T09:53:17
golang/go
c6f882f6c58ed56fa4bd2d8256ec55d9992c3583
97d5295f6fcbc4c24225096900c22773d6672cce
crypto/x509: add ExtKeyUsage.String and KeyUsage.String methods Fixes #56866 Change-Id: Icc8f067820f5d74e0d5073bce160429e6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/723360 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Filippo Val...
[ { "path": "api/next/56866.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/x509, method (ExtKeyUsage) String() string #56866\n+pkg crypto/x509, method (KeyUsage) String() string #56866", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/crypto/...
2025-11-22T15:26:24
vuejs/vue
cf1ff5b0dc3d15c1e16821cb5e4fc984c74f07c1
894d380e40d213771285ffdbee8f0305cbc15bd8
fix: use correct ns inside <foreignObject> as root node fix #6642
[ { "path": "src/core/vdom/create-element.js", "patch": "@@ -122,17 +122,18 @@ export function _createElement (\n }\n }\n \n-function applyNS (vnode, ns) {\n+function applyNS (vnode, ns, force) {\n vnode.ns = ns\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n...
2017-10-02T21:35:47
mrdoob/three.js
3ba9864239c0cbf2ff4a86663b2477317d91c296
cb5d4de85f2a4e8ca36354345975574cd8d33d1f
WebGPURenderer: Fix `mat2()` arguments (#30543) * WebGPURenderer: Fix matN() and matN(x) behaviors * simplify the code since luckily the nodebuilder fallback all values to zero if no arguments * from specs scalar x spread on diagonal * even more simple * partial revert
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -1160,11 +1160,11 @@ class NodeBuilder {\n \n \t\t\treturn `${ this.getType( type ) }( ${ generateConst( value.x ) }, ${ generateConst( value.y ) }, ${ generateConst( value.z ) } )`;\n \n-\t\t} else if ( typeLength === 4 ) {\n+\t\t} else if ( typeLengt...
2025-02-17T16:39:17
denoland/deno
48c6d0e107e740116c96bf339eb0fdaad76ca82d
bd7b0a8f3a470e2323d6437c6fc677cfc8113564
fix(compile): ensure temp dir exists during x64 codesign (#31672) Closes https://github.com/denoland/deno/issues/31664
[ { "path": "Cargo.lock", "patch": "@@ -5773,9 +5773,9 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.12.4\"\n+version = \"0.12.5\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"31c0d3e44c406dd59a3366bf17b79bf60d22c4d47fe903b7bf84cb57e7b1314b\"\n...
2025-12-19T12:29:02
golang/go
62cd044a79b9f2ba889bca59b3b12400dc41dd85
f1e376f342af82d6f5bdba23cdc5c35b5bfd9064
cmd/compile: add cases for StringLen to prove Tricky index-offset logic had been added for slices, but not for strings. This fixes that, and also adds tests for same behavior in string/slice cases, and adds a new test for code in prove that had been added but not explicitly tested. Fixes #76270. Change-Id: Ibd92b89...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2040,14 +2040,14 @@ func (ft *factsTable) flowLimit(v *Value) {\n //\n // slicecap - index >= slicelen - index >= K\n //\n-// Note that \"index\" is not useed for indexing in this pattern, but\n+// Note that \"index\" is not used for indexing ...
2025-11-24T20:00:11
vuejs/vue
0f2cb09444e8b2a5fa41aaf8c94e6f2f43e00c2f
dd505438296dcbaae74fd28061600cea07cf25c0
fix: work around old Chrome bug fix #6601
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -28,6 +28,11 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n if (key === 'textContent' || key === 'innerHTML') {\n if (vnode.children) vnode.children.length = 0\n if (cur === oldProps[key]...
2017-10-02T21:11:36
mrdoob/three.js
82c9bb09e6235072b887c4cbce1d8ea2e2be6801
cddc10580113c8d92b1f7935a07c48cec880f080
SpriteNodeMaterial: Fix `scaleNode` type convertion (#30545)
[ { "path": "src/materials/nodes/SpriteNodeMaterial.js", "patch": "@@ -121,7 +121,7 @@ class SpriteNodeMaterial extends NodeMaterial {\n \n \t\tif ( scaleNode !== null ) {\n \n-\t\t\tscale = scale.mul( float( scaleNode ) );\n+\t\t\tscale = scale.mul( vec2( scaleNode ) );\n \n \t\t}\n ", "additions": 1, ...
2025-02-17T15:42:14
denoland/deno
bd7b0a8f3a470e2323d6437c6fc677cfc8113564
d9a8d18a0bf7d0bc632bb8c7c430a01833f3582b
fix(ext/node): stub out Module.register and Module.registerHooks (#31666) Stubs out `Module.register` and `Module.registerHooks` functions that are meant to be used for Module Loader hooks as per https://nodejs.org/api/module.html#customization-hooks. This is a follow up to https://github.com/denoland/deno/pull/24965...
[ { "path": "ext/node/polyfills/01_require.js", "patch": "@@ -1322,13 +1322,21 @@ Module.findSourceMap = findSourceMap;\n * @param {{ parentURL: string | URL, data: any, transferList: any[] }} [_options]\n */\n export function register(_specifier, _parentUrl, _options) {\n- // TODO(@marvinhagemeister): Stu...
2025-12-19T12:28:29
golang/go
f1e376f342af82d6f5bdba23cdc5c35b5bfd9064
7fbd141de506e331ef3f5910b505ece91a012e4a
cmd/go/internal/auth: fix typo Change-Id: Ic113d59144aa2d37c8988559fbc086f5c29c0b69 GitHub-Last-Rev: e2623be0a00464d9be845da53fb1a67520fc1716 GitHub-Pull-Request: golang/go#76397 Reviewed-on: https://go-review.googlesource.com/c/go/+/722861 Reviewed-by: Michael Matloob <matloob@google.com> Reviewed-by: Cherry Mui <che...
[ { "path": "src/cmd/go/internal/auth/userauth.go", "patch": "@@ -48,7 +48,7 @@ func runAuthCommand(command string, url string, res *http.Response) (map[string]\n // parseUserAuth parses the output from a GOAUTH command and\n // returns a mapping of prefix → http.Header without the leading \"https://\"\n // o...
2025-11-21T15:59:20
vuejs/vue
dd505438296dcbaae74fd28061600cea07cf25c0
5fe7dc28d1249737cea57a26d13a9e9342b9007f
docs: typo fix (#6729) https://github.com/vuejs/vue/blob/94512f3e8cee4030a1096121700ed49afab48073/src/platforms/web/entry-compiler.js#L5
[ { "path": "packages/vue-template-compiler/README.md", "patch": "@@ -90,7 +90,7 @@ This is used by default in `vue-loader@>=12` and can be disabled using the [`opt\n \n ---\n \n-### compiler.ssrCompileToFunction(template)\n+### compiler.ssrCompileToFunctions(template)\n \n > 2.4.0+\n ", "additions": 1, ...
2017-10-02T20:04:02
mrdoob/three.js
11c126131dfbe281713f2e049c37bfb41721ccb6
517e9b7d6ae5ab919afd006a43e9bd5a7f72d2a2
JSDoc: More docs and fixes. (#30541)
[ { "path": "src/core/EventDispatcher.js", "patch": "@@ -1,9 +1,33 @@\n /**\n- * https://github.com/mrdoob/eventdispatcher.js/\n+ * This modules allows to dispatch event objects on custom JavaScript objects.\n+ *\n+ * Main repository: [eventdispatcher.js]{@link https://github.com/mrdoob/eventdispatcher.js/}\n...
2025-02-17T13:11:39
denoland/deno
d9a8d18a0bf7d0bc632bb8c7c430a01833f3582b
dd47e25a3056dea79620ddb778834c462713881b
fix(audit): fix deserde for transitive npm audit actions (#31671) Fixes https://github.com/denoland/deno/issues/31613
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -450,8 +450,8 @@ mod npm {\n #[derive(Debug, Deserialize)]\n pub struct AuditActionResolve {\n pub id: i32,\n+ pub path: Option<String>,\n // TODO(bartlomieju): currently not used, commented out so it's not flagged by clippy\n- // pub path: S...
2025-12-19T08:22:26
golang/go
7fbd141de506e331ef3f5910b505ece91a012e4a
0bc192368ac603614dc3f240e751f539d91a1db2
runtime: use m.profStack in traceStack Turns out we spend a few percent of the trace event writing path in just zero-initializing the stack space for pcBuf. We don't need zero initialization, since we're going to write over whatever we actually use. Use m.profStack instead, which is already sized correctly. A side-ef...
[ { "path": "src/runtime/tracestack.go", "patch": "@@ -30,7 +30,7 @@ const (\n //\n // Avoid calling this function directly. Prefer traceEventWriter.stack.\n func traceStack(skip int, gp *g, tab *traceStackTable) uint64 {\n-\tvar pcBuf [tracev2.MaxFramesPerStack]uintptr\n+\tpcBuf := getg().m.profStack\n \n \t...
2025-11-19T23:42:06
vuejs/vue
4fd2ce813cd0a59bd544defe07f44a5731e45f84
4361a2b3aee55a30e0e6a779c1ef55cdf93a6f52
fix: allow an object's Symbols to be observed (#6704) Attempting to parseFloat on a Symbol throws the error `Cannot convert a Symbol value to a string`. A Symbol can be cast to a string using `.toString()` or `String()` though, so explicitly casting before parsing resolves the issue, allowing `Vue.set` to be cal...
[ { "path": "src/shared/util.js", "patch": "@@ -56,7 +56,7 @@ export function isRegExp (v: any): boolean {\n * Check if val is a valid array index.\n */\n export function isValidArrayIndex (val: any): boolean {\n- const n = parseFloat(val)\n+ const n = parseFloat(String(val))\n return n >= 0 && Math.flo...
2017-09-28T14:53:40
mrdoob/three.js
12e4fd8bdd409d2b1b3771edc7f9d693d8b0c78a
5f2b92f0be254b3c38662d354c153795d1d33377
WebGPURenderer: Fix storage buffer update range (#30532)
[ { "path": "src/renderers/webgpu/utils/WebGPUAttributeUtils.js", "patch": "@@ -186,9 +186,21 @@ class WebGPUAttributeUtils {\n \t\t\tfor ( let i = 0, l = updateRanges.length; i < l; i ++ ) {\n \n \t\t\t\tconst range = updateRanges[ i ];\n+\t\t\t\tlet dataOffset, size;\n \n-\t\t\t\tconst dataOffset = range.st...
2025-02-16T09:27:04
mrdoob/three.js
a39dbfad240eb2084be5fc2ee956f1fcea7b9a2a
414482678b9257dee26c18ccee35adb61cfdbe5b
WebGPURenderer: Support rotation of env maps. (#30528) * WebGPURenderer: Support rotation of env maps. * move `materialEnvIntensity` and `materialEnvRotation` to `MaterialProperties` * MaterialPropeties: Fix update. --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/webgpu_materials_envmaps.html", "patch": "@@ -107,7 +107,8 @@\n \t\t\t\t\tRefraction: false,\n \t\t\t\t\tbackgroundRotationX: false,\n \t\t\t\t\tbackgroundRotationY: false,\n-\t\t\t\t\tbackgroundRotationZ: false\n+\t\t\t\t\tbackgroundRotationZ: false,\n+\t\t\t\t\tsyncMaterial: false\n \t...
2025-02-15T22:30:27
denoland/deno
e76aa96376fdc12b1848fe3d74616c93e6e12b19
1d77081cc31720362e33a9063d354f07b0c786ed
fix(check): handle workspace members having different jsx import sources and importing each other (#31654)
[ { "path": "cli/lsp/tsc.rs", "patch": "@@ -4837,7 +4837,7 @@ fn op_release(\n #[allow(clippy::type_complexity)]\n fn op_resolve(\n state: &mut OpState,\n- #[string] base: String,\n+ #[string] base: &str,\n #[serde] specifiers: Vec<(bool, String)>,\n ) -> Result<Vec<Option<(String, Option<String>)>>, de...
2025-12-19T02:54:21
mrdoob/three.js
414482678b9257dee26c18ccee35adb61cfdbe5b
d264b7c1be435b18f585745ca498b8590b0c336a
WebGPURenderer: Fix storage buffer binding update and 4 bytes alignment (#30529) * WebGPURenderer: Fix storage buffer binding update and 4 bytes alignment * remove unused import
[ { "path": "src/renderers/common/Bindings.js", "patch": "@@ -224,6 +224,16 @@ class Bindings extends DataMap {\n \n \t\t\t}\n \n+\t\t\tif ( binding.isStorageBuffer ) {\n+\n+\t\t\t\tconst attribute = binding.attribute;\n+\t\t\t\tconst attributeType = attribute.isIndirectStorageBufferAttribute ? AttributeType....
2025-02-15T20:02:17
vuejs/vue
2deda3d4328eb7aea0adb0eaf01d68537ed0e0af
4441e0f9d16e924f409a3711140932c50590ced6
refactor(weex): Adjust the weex platform entry file to fit the new weex runtime (#6620) * trim trailing whitespace * revert(weex): remove the new Function hack for V8, as Weex uses JSC now Remove the `callFunctionNative` method and `compileBundle`, which is provided by modified V8. In order to maintain the cons...
[ { "path": "build/config.js", "patch": "@@ -17,7 +17,7 @@ const banner =\n \n const weexFactoryPlugin = {\n intro () {\n- return 'module.exports = function weexFactory (exports, renderer) {'\n+ return 'module.exports = function weexFactory (exports, document) {'\n },\n outro () {\n return '}'...
2017-09-18T19:38:27
denoland/deno
1d77081cc31720362e33a9063d354f07b0c786ed
bf919416b3e28cb273ae6014f76235e0ca2b7ab2
fix(fetch): fix SOCKS5 proxy URL validation logic (#31604) Closes #31356
[ { "path": "ext/fetch/22_http_client.js", "patch": "@@ -64,7 +64,7 @@ function createHttpClient(options) {\n case \"socks5\": {\n const url = options.proxy.url;\n if (\n- !StringPrototypeStartsWith(url, \"socks5:\") ||\n+ !StringPrototypeStartsWith(url, \"soc...
2025-12-18T14:53:11
mrdoob/three.js
1805ecd79527e25ad528bb91cbca0073ea058190
27a593bc687aa5c595731360009250784caa55fd
WebGLBackend: Fix depth regression. (#30527)
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -212,10 +212,10 @@ class WebGLBackend extends Backend {\n \t\tconst parameters = this.parameters;\n \n \t\tconst contextAttributes = {\n-\t\t\tantialias: false, // MSAA is applied via a custom renderbuffer\n+\t\t\tantialias: renderer.sam...
2025-02-15T09:39:52
vuejs/vue
4459b87de902cf3ba496a104304ca80d1c9824c1
8164ce6169851d673ed0904289ece4c22ca20e95
fix(core): avoid observing VNodes fix #6610
[ { "path": "src/core/observer/index.js", "patch": "@@ -1,6 +1,7 @@\n /* @flow */\n \n import Dep from './dep'\n+import VNode from '../vdom/vnode'\n import { arrayMethods } from './array'\n import {\n def,\n@@ -104,7 +105,7 @@ function copyAugment (target: Object, src: Object, keys: Array<string>) {\n * or...
2017-09-15T14:16:39