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
vuejs/vue
f76d16ed9507d4c2a90243ea3d77ccf00df29346
8fc6bc882708a725693b50a55f56cfde653ee48d
fix(vdom): Don't replace input for text-like type change (#6344) fix #6313
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -6,8 +6,6 @@\n *\n * modified by Evan You (@yyx990803)\n *\n-\n-/*\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n@@ -17,6 +15,7 @@ import config from '../config'\n impo...
2017-09-01T22:49:39
mrdoob/three.js
27a171511dc9b001641e0a97fe81b7a51d89ec14
92bd4f3a4332a890b3b62b0fc5dc2b0f6c7c30c6
ConvexGeometry html indentation fix (#30399)
[ { "path": "docs/examples/en/geometries/ConvexGeometry.html", "patch": "@@ -29,10 +29,11 @@ <h2>Import</h2>\n \n \t\t<h2>Code Example</h2>\n \n-\t\t<code>const geometry = new ConvexGeometry( points );\n-\t\tconst material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );\n-\t\tconst mesh = new THREE.Mesh...
2025-01-26T15:54:09
denoland/deno
56e196b517488977ee32fa29330a841a3251e208
ed55de83b71b386f14196c2e56138d43a942249e
fix(x): fix executing native binary on windows + some cleanup (#31551) Addressing some todos from the original PR. For instance, this allows things like `dx supabase` (which is a native bin) to work on windows
[ { "path": "cli/tools/x.rs", "patch": "@@ -105,21 +105,16 @@ async fn maybe_run_local_npm_bin(\n ) -> Result<Option<i32>, AnyError> {\n let permissions = factory.root_permissions_container()?;\n \n- let bins = resolve_local_bins(node_resolver, npm_resolver)?;\n- let command = if command.starts_with(\"@\"...
2025-12-11T08:33:20
golang/go
35d2712b324af111816e9d637032cbbb8eaeedc7
90c970cd0fce1804d82f5148884e69d179c2e265
net/http: fix typo in Transport docs Change-Id: Ifeb8d6d2e3fd4c8b0e27da62bec5cf28fe71db34 GitHub-Last-Rev: 5760fb106f58bf77817b9813f029d47be4ca7e3b GitHub-Pull-Request: golang/go#76316 Reviewed-on: https://go-review.googlesource.com/c/go/+/720800 Auto-Submit: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/net/http/transport.go", "patch": "@@ -87,7 +87,7 @@ const DefaultMaxIdleConnsPerHost = 2\n // ClientTrace.Got1xxResponse.\n //\n // Transport only retries a request upon encountering a network error\n-// if the connection has been already been used successfully and if the\n+// if the connecti...
2025-11-16T00:00:59
vuejs/vue
02f8b806768d70c589e646c384e592e93387b994
50257a58810a83b27316a793adf8d59a81ef3cf0
fix(ssr): fix cachedEscape memory issue close #6332
[ { "path": "src/platforms/web/server/modules/attrs.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { cachedEscape } from '../util'\n+import { escape } from '../util'\n \n import {\n isDef,\n@@ -50,7 +50,7 @@ export function renderAttr (key: string, value: string): string {\n } else if (isEnumera...
2017-09-01T22:08:12
mrdoob/three.js
98a3fa37f7c17c02a7ddf66648b7cbffe24924b3
3fefbf2ec96cf89b47270472ea2b4764dcf746db
fix (#30385)
[ { "path": "examples/webgpu_video_frame.html", "patch": "@@ -50,6 +50,9 @@\n \t\t\t\tconst decoder = new VideoDecoder( {\n \t\t\t\t\toutput( frame ) {\n \n+\t\t\t\t\t\t// To avoid video decoder stalls, we should close the VideoFrame which is no longer needed. https://w3c.github.io/webcodecs/#dom-videodecoder...
2025-01-22T22:25:59
golang/go
9772d3a690eabd4a167301b886e18c6ce7b6e4bc
1903782ade15293358c983e03db2bf238c5352fa
cmd/cgo: strip top-level const qualifier from argument frame struct Otherwise we can't assign to it. Fixes #75751 Change-Id: Iba680db672297bca1a1d1a33912b80863da66a08 Reviewed-on: https://go-review.googlesource.com/c/go/+/717342 Reviewed-by: David Chase <drchase@google.com> Auto-Submit: Ian Lance Taylor <iant@golang...
[ { "path": "src/cmd/cgo/internal/test/test.go", "patch": "@@ -953,6 +953,12 @@ typedef struct {\n } issue69086struct;\n static int issue690861(issue69086struct* p) { p->b = 1234; return p->c; }\n static int issue690862(unsigned long ul1, unsigned long ul2, unsigned int u, issue69086struct s) { return (int)(s...
2025-11-03T23:54:39
denoland/deno
d94c7fa2dc05448d5c27d121d2a480de86dd07e5
d5b1548eba893d4cc26305f33739a6ca2e6e8c11
fix: adjust deno_cache version (#31553) Small mishap because of https://github.com/denoland/deno/pull/31183 and https://github.com/denoland/deno/pull/31205.
[ { "path": "Cargo.lock", "patch": "@@ -1791,7 +1791,7 @@ dependencies = [\n \n [[package]]\n name = \"deno_cache\"\n-version = \"0.154.0\"\n+version = \"0.155.0\"\n dependencies = [\n \"async-stream\",\n \"async-trait\",", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path...
2025-12-10T16:36:32
vuejs/vue
d6e6f1deb180a4f47e94496724623b9e6d8e08b3
d77b95317cedae299605fb692e2c7c67796b17cb
fix(v-model): Allow using array value with array v-model in checkboxes (#6220) fix #6219
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -93,7 +93,7 @@ function genCheckboxModel (\n 'if(Array.isArray($$a)){' +\n `var $$v=${number ? '_n(' + valueBinding + ')' : valueBinding},` +\n '$$i=_i($$a,$$v);' +\n- `if($$el.checked){$$i<0&&(${value}=$$a.con...
2017-09-01T21:35:41
mrdoob/three.js
3fefbf2ec96cf89b47270472ea2b4764dcf746db
574c8f8c669976e1994ae831ef925b3bd0dd68d4
Revert "Fix video decoder stalls issue in webgpu_video_frame.html (#30380)" (#30384) This reverts commit 574c8f8c669976e1994ae831ef925b3bd0dd68d4.
[ { "path": "examples/webgpu_video_frame.html", "patch": "@@ -50,9 +50,6 @@\n \t\t\t\tconst decoder = new VideoDecoder( {\n \t\t\t\t\toutput( frame ) {\n \n-\t\t\t\t\t\t// To avoid video decoder stalls, we should close the VideoFrame which is no longer needed. https://w3c.github.io/webcodecs/#dom-videodecoder...
2025-01-22T21:02:45
golang/go
1903782ade15293358c983e03db2bf238c5352fa
ec92bc6d63efdbd1e04b7590b8ec3ea5236503e0
errors: add examples for custom Is/As matching Change-Id: Ia92dae13b6a4e9434b29d2ab3f698f6ba87b4b89 Reviewed-on: https://go-review.googlesource.com/c/go/+/713740 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Mark Freeman <markfreeman@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/errors/example_test.go", "patch": "@@ -44,6 +44,39 @@ func ExampleNew() {\n \t// Output: emit macho dwarf: elf header corrupted\n }\n \n+func OopsNew() error {\n+\treturn errors.New(\"an error\")\n+}\n+\n+var ErrSentinel = errors.New(\"an error\")\n+\n+func OopsSentinel() error {\n+\treturn E...
2025-10-22T12:13:51
denoland/deno
6b81dc58d39d90c6d456f9eccd7c6992249358f1
556eb7146965f594cfc8e772e69835699e9f5a9f
fix(ext/node): fix sqlite extension used for testing; ensure related tests are actually meaningful (#31547) Reland of https://github.com/denoland/deno/pull/31455 which was reverted in https://github.com/denoland/deno/pull/31539.
[ { "path": "Cargo.lock", "patch": "@@ -8528,6 +8528,13 @@ dependencies = [\n \"winnow 0.6.26\",\n ]\n \n+[[package]]\n+name = \"sqlite_extension_test\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"test_server\",\n+]\n+\n [[package]]\n name = \"stable_deref_trait\"\n version = \"1.2.0\"\n@@ -9347,14 +9354,6...
2025-12-10T13:06:05
vuejs/vue
d77b95317cedae299605fb692e2c7c67796b17cb
06741f326625e2db78d092e586923b97ba006906
fix: handle special case for allowfullscreen on <embed> close #6202
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -64,7 +64,12 @@ function setAttr (el: Element, key: string, value: any) {\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key)\n } else {\n- el.setAttribute(key, key)\n+ // technically allowfullscreen is a boo...
2017-09-01T21:00:31
mrdoob/three.js
574c8f8c669976e1994ae831ef925b3bd0dd68d4
176ea06512a4249a34b72296c432f9e76120de4c
Fix video decoder stalls issue in webgpu_video_frame.html (#30380) * fix * Update webgpu_video_frame.html More clean up. * Update webgpu_video_frame.html * Update webgpu_video_frame.html --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/webgpu_video_frame.html", "patch": "@@ -50,6 +50,9 @@\n \t\t\t\tconst decoder = new VideoDecoder( {\n \t\t\t\t\toutput( frame ) {\n \n+\t\t\t\t\t\t// To avoid video decoder stalls, we should close the VideoFrame which is no longer needed. https://w3c.github.io/webcodecs/#dom-videodecoder...
2025-01-22T21:00:13
golang/go
ec92bc6d63efdbd1e04b7590b8ec3ea5236503e0
3820f94c1d081921494ada1da64b4fab21ae1a48
cmd/compile: rewrite Rsh to RshU if arguments are proved positive Fixes #76332 Change-Id: I9044025d5dc599531c7f88ed2870bcf3d8b0acbd Reviewed-on: https://go-review.googlesource.com/c/go/+/721206 Reviewed-by: Mark Freeman <markfreeman@google.com> Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Jorropo <jorropo...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2664,14 +2664,30 @@ var mostNegativeDividend = map[Op]int64{\n \tOpMod64: -1 << 63,\n }\n var unsignedOp = map[Op]Op{\n-\tOpDiv8: OpDiv8u,\n-\tOpDiv16: OpDiv16u,\n-\tOpDiv32: OpDiv32u,\n-\tOpDiv64: OpDiv64u,\n-\tOpMod8: OpMod8u,\n-\tOpMod16:...
2025-11-18T00:42:37
vuejs/vue
06741f326625e2db78d092e586923b97ba006906
c371fbde9c1251bc225dddd682b32621a31f2548
fix: computed properties should not be cached during SSR ref: vuejs/vuex#877
[ { "path": "src/core/instance/state.js", "patch": "@@ -23,6 +23,7 @@ import {\n nativeWatch,\n validateProp,\n isPlainObject,\n+ isServerRendering,\n isReservedAttribute\n } from '../util/index'\n \n@@ -169,6 +170,8 @@ const computedWatcherOptions = { lazy: true }\n function initComputed (vm: Compon...
2017-09-01T16:51:29
mrdoob/three.js
176ea06512a4249a34b72296c432f9e76120de4c
1d5c43d496974bcc9fc596ac5e7a370f010a6fbe
Eslint: fix errors (#30383) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "editor/js/Strings.js", "patch": "@@ -3,8 +3,8 @@ function Strings( config ) {\n \tconst language = config.getKey( 'language' );\n \n \tconst values = {\n-fa: {\n-'prompt/file/open': 'تمام داده های ذخیره نشده پاک خواهند شد آیا مطمئنید؟',\n+\t\tfa: {\n+\t\t\t'prompt/file/open': 'تمام داده های ذخیره...
2025-01-22T17:43:03
denoland/deno
861f62a4ec38ddcc6497cde3f1056f5ec22b07e7
f5cb510ebac83583ca95d516d6c689e79c531f51
feat: add `deno x` (alias `dx`) for conveniently running binaries from packages (#31138) an equivalent to npx, for conveniently running binaries from packages available as `deno x`, and you can install an alias via `deno x --install-alias` (defaults to dx but can be specified) Used like `deno x rolldown`, or `dx rol...
[ { "path": "cli/args/flags.rs", "patch": "@@ -417,6 +417,42 @@ impl RunFlags {\n }\n }\n \n+#[derive(Clone, Debug, Eq, PartialEq, Default)]\n+pub enum DenoXShimName {\n+ #[default]\n+ Dx,\n+ Denox,\n+ Other(String),\n+}\n+\n+impl DenoXShimName {\n+ pub fn name(&self) -> &str {\n+ match self {\n+ ...
2025-12-09T23:06:36
golang/go
d474f1fd21fde4a508235c48caf0acca6ce73642
d0d0a7298036793e0648bfd6d296a1cdac372a97
cmd/compile: make dse track multiple shadowed ranges Track multiple shadowed ranges when doing DSE. Elides zeroing for: func nozero() (b [5]int64) { b[0] = 1 b[1] = 7 b[3] = 1 b[4] = 1 b[2] = 0 return b } goes from: v28 00003 (7) LEAQ main.b(SP), AX v5 00004 (7) MOVUPS X15, (AX) v5 00005 (7) MO...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -10,6 +10,10 @@ import (\n \t\"cmd/internal/obj\"\n )\n \n+// maxShadowRanges bounds the number of disjoint byte intervals\n+// we track per pointer to avoid quadratic behaviour.\n+const maxShadowRanges = 64\n+\n // dse does dead-store elim...
2025-05-21T07:34:48
vuejs/vue
0529040c17b8632032a43d142aac88386f6b4a1f
172dbf9faf4cb71dff72c77fdfe80fa1932d1ba3
fix: deep clone slot vnodes on re-render fix #6372
[ { "path": "src/core/instance/render.js", "patch": "@@ -78,9 +78,13 @@ export function renderMixin (Vue: Class<Component>) {\n } = vm.$options\n \n if (vm._isMounted) {\n- // clone slot nodes on re-renders\n+ // if the parent didn't update, the slot nodes will be the ones from\n+ // la...
2017-08-29T22:47:10
mrdoob/three.js
806d427f3c36afb643e2456d46e4d9fbe193d256
7bc5b1782682dc8c832a02456c16c13f77cc5969
WebGPURenderer: Introduce `TimestampQueryPool` (#30359) * WebGPURenderer: Introduce renderer.resolveAllTimestampsAsync(type) * cleanup * update some examples and cleanup * white space * test bird screenshot * fix bird e2e * revert bird screenshot * feedbacks * better to not use async as it affects the loop and...
[ { "path": "examples/webgpu_compute_birds.html", "patch": "@@ -28,7 +28,8 @@\n \t\t\t\t\t\"three\": \"../build/three.webgpu.js\",\n \t\t\t\t\t\"three/webgpu\": \"../build/three.webgpu.js\",\n \t\t\t\t\t\"three/tsl\": \"../build/three.tsl.js\",\n-\t\t\t\t\t\"three/addons/\": \"./jsm/\"\n+\t\t\t\t\t\"three/add...
2025-01-21T17:19:14
denoland/deno
f5cb510ebac83583ca95d516d6c689e79c531f51
dd80d7575f7c07e2eaa73ad76ce3d811fb61f1b0
fix(bundle): support android (#31521) support android os in esbuild linked with https://github.com/denoland/esbuild_client/pull/16
[ { "path": "cli/tools/bundle/esbuild.rs", "patch": "@@ -28,6 +28,8 @@ fn esbuild_platform() -> &'static str {\n (\"aarch64\", \"macos\" | \"apple\") => \"darwin-arm64\",\n (\"x86_64\", \"windows\") => \"win32-x64\",\n (\"aarch64\", \"windows\") => \"win32-arm64\",\n+ (\"x86_64\", \"android\") ...
2025-12-09T22:28:31
golang/go
d0d0a7298036793e0648bfd6d296a1cdac372a97
a9704f89ea6bc02815557db8d89c1fa22a779b7e
cmd/compile/internal/ssa: correct type of ARM64 conditional instructions The CCMP, CCMN, CCMPconst, and related instructions in ARM64Ops.go were incorrectly set to type "Flag". This non-existent type caused compilation failures during the "lower" and "late lower" passes. Change them to the correct type, "Flags". Cha...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64Ops.go", "patch": "@@ -517,15 +517,15 @@ func init() {\n \t\t// If the condition 'Cond' evaluates to true against current flags,\n \t\t// flags are set to the result of the comparison operation.\n \t\t// Otherwise, flags are set to the fallback value '...
2025-11-21T09:58:40
vuejs/vue
172dbf9faf4cb71dff72c77fdfe80fa1932d1ba3
f4ee63ca1059efcbdcacea9f6c1ce4e9433e2baf
fix(ssr): should also escape static text content fix #6345
[ { "path": "src/server/optimizing-compiler/codegen.js", "patch": "@@ -22,8 +22,8 @@ import {\n applyModelTransform\n } from './modules'\n \n+import { escape } from 'web/server/util'\n import { optimizability } from './optimizer'\n-\n import type { CodegenResult } from 'compiler/codegen/index'\n \n export t...
2017-08-29T21:32:28
mrdoob/three.js
7bc5b1782682dc8c832a02456c16c13f77cc5969
7e76dc4499c9d252a74bc25d7196f87c2c7ee139
TSL: Add matrix operations support (#30370) * TSL: Add matrix operations support * fix lint * fix lint * fix CI
[ { "path": "src/nodes/math/OperatorNode.js", "patch": "@@ -118,23 +118,39 @@ class OperatorNode extends TempNode {\n \n \t\t} else {\n \n-\t\t\tif ( typeA === 'float' && builder.isMatrix( typeB ) ) {\n+\t\t\t// Handle matrix operations\n+\t\t\tif ( builder.isMatrix( typeA ) ) {\n \n-\t\t\t\treturn typeB;\n+\...
2025-01-21T15:36:47
denoland/deno
6d55117b824ee0a6cfd12ddadf34f570dfc7ebfc
5f2a56ff5fe46b67a6870b59e407507cde175416
Revert "fix(ext/node): fix sqlite extension used for testing; ensure … (#31539) …related tests are actually meaningful (#31455)" This reverts commit 40cf41275b8e1ec4358d6bca5fdecd104787e5d5. Started getting random kills on linux arm after this PR landed. Reverting to see if it will help.
[ { "path": "Cargo.lock", "patch": "@@ -8528,13 +8528,6 @@ dependencies = [\n \"winnow 0.6.26\",\n ]\n \n-[[package]]\n-name = \"sqlite_extension_test\"\n-version = \"0.1.0\"\n-dependencies = [\n- \"test_server\",\n-]\n-\n [[package]]\n name = \"stable_deref_trait\"\n version = \"1.2.0\"\n@@ -9354,6 +9347,14...
2025-12-09T15:35:50
vuejs/vue
59dbd4a414394a3ce581f9fbd9554da9af9e4b1d
a43d66743be2bd62b2398090663e41eeaf0dc75f
fix: ensure $attrs and $listeners are always objects (#6441) fix #6263
[ { "path": "flow/component.js", "patch": "@@ -29,8 +29,8 @@ declare interface Component {\n $slots: { [key: string]: Array<VNode> };\n $scopedSlots: { [key: string]: () => VNodeChildren };\n $vnode: VNode; // the placeholder node for the component in parent's render tree\n- $attrs: ?{ [key: string] : ...
2017-08-29T20:59:39
mrdoob/three.js
f4ff275b36f5abfcf6f167b12bcdc9c349ba619e
f70fece9eb12b9cb4bc5873c04bff54ac33ca329
TSL: Add `mat2` support (#30364) * TSL: Add mat2 support * fix CI * good
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -1320,9 +1320,16 @@ class NodeBuilder {\n \n \t\tif ( length === 1 ) return componentType;\n \n-\t\tconst baseType = getTypeFromLength( length );\n+\t\tlet baseType = getTypeFromLength( length );\n \t\tconst prefix = componentType === 'float' ? '' : co...
2025-01-20T20:07:54
golang/go
d3a0321dbad4c2f60bede3bd033b26a5a4839c53
74ebdd28d10f93fbcb58708c76b5805bc6c114a3
[dev.simd] cmd/compile: fix incorrect mapping of SHA256MSG2128 Change-Id: Iff00fdb5cfc83c546ad564fa7618ec34d0352fdc Reviewed-on: https://go-review.googlesource.com/c/go/+/722640 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Junyang Shao <shaojunyang@google.com> ...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -2291,7 +2291,8 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \tcase ssa.OpAMD64SHA1MSG1128,\n \t\tssa.OpAMD64SHA1MSG2128,\n \t\tssa.OpAMD64SHA1NEXTE128,\n-\t\tssa.OpAMD64SHA256MSG1128:\n+\t\tssa.OpAMD64SHA256MSG1128,\n+\t...
2025-11-20T22:28:41
denoland/deno
55a2c7d28b1a4c0714fc5af504a9b7077bfbb3b4
05dac153b6eacc7218a4bae1bfdf35509060680b
fix(install): report installed npm packages when not using node_modules, fix double counting (#31536) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/tools/installer/mod.rs", "patch": "@@ -81,7 +81,7 @@ pub struct InstallStats {\n pub downloaded_jsr: DashSet<String>,\n pub reused_jsr: DashSet<String>,\n pub resolved_npm: DashSet<String>,\n- pub downloaded_npm: Count,\n+ pub downloaded_npm: DashSet<String>,\n pub intialized_npm: D...
2025-12-09T12:20:03
vuejs/vue
a43d66743be2bd62b2398090663e41eeaf0dc75f
d4d553ced75d8c73e75b85cec398be4b09f6f669
fix(transition): consider async placeholder as valid child to return (#6369) fix #6256
[ { "path": "src/core/vdom/helpers/get-first-component-child.js", "patch": "@@ -1,12 +1,13 @@\n /* @flow */\n \n import { isDef } from 'shared/util'\n+import { isAsyncPlaceholder } from './is-async-placeholder'\n \n export function getFirstComponentChild (children: ?Array<VNode>): ?VNode {\n if (Array.isArr...
2017-08-29T20:09:20
golang/go
f87aaec53d943eb2b5a6b9be9e4af284543c4004
dbd2ab999262e1c9304d0591d6883f83b09c8570
cmd/compile: fix integer overflow in prove pass The detectSliceLenRelation function incorrectly deduced lower bounds for "len(s) - i" without checking if the subtraction could overflow (e.g. when i is negative). This led to incorrect elimination of bounds checks. Fixes: #76355 Change-Id: I30ada0e5f1425929ddd8ae1b66e5...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2051,8 +2051,11 @@ func (ft *factsTable) detectSliceLenRelation(v *Value) {\n \t\treturn\n \t}\n \n-\tslice := v.Args[0].Args[0]\n \tindex := v.Args[1]\n+\tif !ft.isNonNegative(index) {\n+\t\treturn\n+\t}\n+\tslice := v.Args[0].Args[0]\n \n \t...
2025-11-19T10:17:47
denoland/deno
0bc213b15b819597d935be6cb04cec03659d146b
63fe08925da3ed245fca9c3935ab40101ec5eb3e
fix(ext/node): prevent cipher operations after finalize (#31533) Throw a state error for operations if the cipher is already finalized.
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -184,6 +184,8 @@ export class Cipheriv extends Transform implements Cipher {\n \n #autoPadding = true;\n \n+ #finalized = false;\n+\n constructor(\n cipher: string,\n key: CipherKey,\n@@ -220,6 +222,10 @@ export class Cipher...
2025-12-09T10:33:37
mrdoob/three.js
146e242603a10cecc37edb56786f21047dce4fbe
8343b4b85ad73f74098dd568633d300e5aee993a
Fix Grammar Scene.html (#30357)
[ { "path": "docs/api/en/scenes/Scene.html", "patch": "@@ -11,7 +11,7 @@\n \t\t<h1>[name]</h1>\n \n \t\t<p class=\"desc\">\n-\t\t\tScenes allow you to set up what and where is to be rendered by three.js.\n+\t\t\tScenes allow you to set up what is to be rendered and where by three.js.\n \t\t\tThis is where you...
2025-01-18T08:53:16
vuejs/vue
d4d553ced75d8c73e75b85cec398be4b09f6f669
41d774d112946f986bf0b0e3f30fd962c01ceba2
fix(v-model): avoid unnecessary change event on select options change fix #6193 via #6194
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -53,7 +53,14 @@ export default {\n const prevOptions = el._vOptions\n const curOptions = el._vOptions = [].map.call(el.options, getValue)\n if (curOptions.some((o, i) => !looseEqual(o, prevOptions[i]))) {\n- tri...
2017-08-29T16:52:19
golang/go
dbd2ab999262e1c9304d0591d6883f83b09c8570
b9d86baae34197004a175c5c02b901240056a250
cmd/compile/internal: fix typos Change-Id: I5974f5b460f827877f49f69aff01ce5042f511c0 GitHub-Last-Rev: 552d12c0e609a65481381191be6bbd9f353120f5 GitHub-Pull-Request: golang/go#76398 Reviewed-on: https://go-review.googlesource.com/c/go/+/722900 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservice...
[ { "path": "src/cmd/compile/internal/ir/expr.go", "patch": "@@ -681,7 +681,7 @@ type TypeAssertExpr struct {\n \n \t// When set to true, if this assert would panic, then use a nil pointer panic\n \t// instead of an interface conversion panic.\n-\t// It must not be set for type asserts using the commaok form....
2025-11-21T16:08:00
denoland/deno
80e36b53d386dd9b83e54d2b86e5be6bb10479b6
1317a36332cae7fc0712bee17722519919ccae31
fix(install): rewrite node_modules .bin shim generation for windows to be like npm (#31494) Previously we were just generating a little cmd file that did `deno run npm:/..`..., but we were the odd one out in that most other package managers do .cmd, a sh script, and a powershell script. This ports the shim logic from...
[ { "path": "Cargo.lock", "patch": "@@ -2595,6 +2595,7 @@ dependencies = [\n \"deno_unsync\",\n \"dyn-clone\",\n \"futures\",\n+ \"lazy-regex\",\n \"log\",\n \"once_cell\",\n \"parking_lot\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "libs/npm_installer/Car...
2025-12-09T08:39:20
mrdoob/three.js
5b7a0175327b4dd17203ba78d1887f2ed413bf72
8bbd48e8f2139f08ffcc1f4be79f9ada120d43c3
XRManager: Fix background (#30348) * XRManager: Fix background clear in XR. * Renderer: Update background even in XR.
[ { "path": "src/renderers/common/Background.js", "patch": "@@ -142,6 +142,20 @@ class Background extends DataMap {\n \n \t\t//\n \n+\t\tconst environmentBlendMode = renderer.xr.getEnvironmentBlendMode();\n+\n+\t\tif ( environmentBlendMode === 'additive' ) {\n+\n+\t\t\t_clearColor.set( 0, 0, 0, 1 );\n+\n+\t\t...
2025-01-17T16:55:58
vuejs/vue
f40da5dbf2f01b417a7487d15b43cfd3aeb02a8f
5091e2c9847601e329ac36d17eae90bb5cb77a91
fix(v-model) selected option not updated properly under IE11 (#6213) fix #6209
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -22,14 +22,7 @@ if (isIE9) {\n export default {\n inserted (el, binding, vnode) {\n if (vnode.tag === 'select') {\n- const cb = () => {\n- setSelected(el, binding, vnode.context)\n- }\n- cb()\n- /* istan...
2017-08-29T15:17:38
golang/go
b9d86baae34197004a175c5c02b901240056a250
4b0e3cc1d63a00ee184ea1f6b17e79808e3d9fdc
cmd/compile/internal/devirtualize: fix typos Change-Id: I4f5a89f452a252018072d067da4cdb9a6cb0f4fe GitHub-Last-Rev: 7eb108d3878109ccb9846d97b2adc7ea3003772a GitHub-Pull-Request: golang/go#76396 Reviewed-on: https://go-review.googlesource.com/c/go/+/722860 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Robert ...
[ { "path": "src/cmd/compile/internal/devirtualize/devirtualize.go", "patch": "@@ -131,7 +131,7 @@ func StaticCall(s *State, call *ir.CallExpr) {\n \t\t// type assertion that we make here would also have failed, but with a different\n \t\t// panic \"pkg.Iface is nil, not *pkg.Impl\", where previously we would...
2025-11-21T15:51:03
denoland/deno
1317a36332cae7fc0712bee17722519919ccae31
b18b8347f7095d85608dda41c47af3c744539787
fix(bundle): don't use createRequire when targeting browser in Deno.bundle (#31534) Fixes #31524 Missed a code path in the original fix
[ { "path": "cli/tools/bundle/provider.rs", "patch": "@@ -173,7 +173,9 @@ impl BundleProvider for CliBundleProvider {\n super::process_result(\n &result,\n &bundler.cwd,\n- true,\n+ crate::tools::bundle::should_replace_require_shim(\n+ bundl...
2025-12-09T00:13:35
mrdoob/three.js
e6a79f84a545d40efc8f1b18a5785fbf6a9a5ca3
2eff1b94da6b361bf5382f52e0fb8db7720d1ef0
WebGPURenderer: Add `XRManager`. (#30346) * WebGPURenderer: Add `XRManager`. * Renderer: Fix projection matrix computation in XR. * WebGLBackend: Use `gl.STATIC_DRAW` for camera index buffers. * Renderer: Clean up. * WebGLBackend: Don't cache `cameraIndex`. * XRManager: Add documentation. * E2E: Upda...
[ { "path": "examples/files.json", "patch": "@@ -448,7 +448,8 @@\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_volume_cloud\",\n \t\t\"webgpu_volume_perlin\",\n-\t\t\"webgpu_water\"\n+\t\t\"webgpu_water\",\n+\t\t\"webgpu_xr_cubes\"\n \t],\n \t\"webaudio\": [\n \t\t\"webaudio_orientation\",", "additions"...
2025-01-17T13:55:45
vuejs/vue
5091e2c9847601e329ac36d17eae90bb5cb77a91
0dc27dcdec72c1c2e12fb49fb95dceca45e84115
fix(ssr): address possible xss vector
[ { "path": "src/platforms/web/server/modules/attrs.js", "patch": "@@ -50,7 +50,7 @@ export function renderAttr (key: string, value: string): string {\n } else if (isEnumeratedAttr(key)) {\n return ` ${key}=\"${isFalsyAttrValue(value) || value === 'false' ? 'false' : 'true'}\"`\n } else if (!isFalsyAt...
2017-08-29T14:42:54
golang/go
4b0e3cc1d63a00ee184ea1f6b17e79808e3d9fdc
cdba82c7d6fce54b212872ae45d04c3911b11014
cmd/link: support loading R_LARCH_PCREL20_S2 and R_LARCH_CALL36 relocs Host libgcc.a (among other libraries) on loong64 systems may contain such relocs if built with the "medium" code model and/or linker relaxation, which is increasingly the case. Make the internal linker aware of these for cgo interopability going fo...
[ { "path": "src/cmd/internal/obj/fips140.go", "patch": "@@ -354,8 +354,10 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_CALLLOONG64,\n \t\tobjabi.R_CALLPOWER,\n \t\tobjabi.R_GOTPCREL,\n-\t\tobjabi.R_LOONG64_ADDR_LO, // used with PC-relative load\n-\t\tobjabi.R_LOONG64_ADDR_HI, // u...
2025-10-06T10:09:14
denoland/deno
b18b8347f7095d85608dda41c47af3c744539787
17cdcc288c741c35465baccae737230eadb574f4
chore: macos-15-intel runner on ci (#31419) This includes fixes from https://github.com/denoland/sui/commit/e229ef18a616e76bee0f225807bc71f8376c3c9b
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -12,7 +12,7 @@ const ubuntuX86XlRunner = \"ghcr.io/cirruslabs/ubuntu-runner-amd64:24.04\";\n const ubuntuARMRunner = \"ghcr.io/cirruslabs/ubuntu-runner-arm64:24.04\";\n const windowsX86Runner = \"windows-2022\";\n const windowsX86XlRunner = \"window...
2025-12-08T23:07:44
mrdoob/three.js
019541734841967b72aa73997f0451c5b48272d5
785add50170c5726e48ed55a7e71a5ec16d2c176
WebGLBackend: Fix `ArrayCamera` pixel ratio (#30338)
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -1104,11 +1104,16 @@ class WebGLBackend extends Backend {\n \n \t\t\t\t\tconst vp = subCamera.viewport;\n \n+\t\t\t\t\tconst x = vp.x * pixelRatio;\n+\t\t\t\t\tconst y = vp.y * pixelRatio;\n+\t\t\t\t\tconst width = vp.width * pixelRatio;...
2025-01-16T22:07:22
vuejs/vue
82f03de3328abde70493d2d3630137f23f140fcb
b5cc8b9e935897184ac43119bf5fbeca606f4b6a
fix-Firefox (#6359)
[ { "path": "src/core/util/env.js", "patch": "@@ -17,7 +17,7 @@ export const isAndroid = UA && UA.indexOf('android') > 0\n export const isIOS = UA && /iphone|ipad|ipod|ios/.test(UA)\n export const isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge\n \n-// Firefix has a \"watch\" function on Object.prototype...
2017-08-13T12:53:17
golang/go
74ebdd28d10f93fbcb58708c76b5805bc6c114a3
4d26d66a49c51b5a7c610c4815322809b31962d9
[dev.simd] simd, cmd/compile: add more element types for Select128FromPair Also includes a comment cleanup pass. Fixed NAME processing for additional documentation. Change-Id: Ide5b60c17ddbf3c6eafd20147981c59493fc8133 Reviewed-on: https://go-review.googlesource.com/c/go/+/722180 Reviewed-by: Junyang Shao <shaojunyang...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -941,8 +941,12 @@\n (ScaleFloat64x8 ...) => (VSCALEFPD512 ...)\n (Select128FromPairFloat32x8 ...) => (VPERM2F128256 ...)\n (Select128FromPairFloat64x4 ...) => (VPERM2F128256 ...)\n+(Select128FromPairInt8x32 ...) => (VPERM2I128256 .....
2025-11-19T22:17:54
denoland/deno
a15cafeb3bf135f3043bc3f78b08b925ffe6a244
642f2a46a6d49b2018c042faae5407c328810d9d
feat(ext/web): transferable {Readable,Writable,Transform}Stream (#31126) https://streams.spec.whatwg.org/#rs-transfer https://streams.spec.whatwg.org/#ws-transfer https://streams.spec.whatwg.org/#ts-transfer Remaining test failures are due to our `DOMException` not correctly being serializable and can be solved in a ...
[ { "path": ".gitignore", "patch": "@@ -45,3 +45,6 @@ Untitled*.ipynb\n /.ms-playwright\n \n **/.claude/settings.local.json\n+\n+# pyenv\n+/.python-version", "additions": 3, "deletions": 0, "language": "Unknown" }, { "path": "ext/web/06_streams.js", "patch": "@@ -60,6 +60,7 @@ const {\...
2025-12-08T12:31:43
mrdoob/three.js
7b21022e42499807f95e2e6d99fe4ef4a7da37bd
add425de306c52432639920e50ddea653f3d29a4
fix CustomToneMapping in Post Processing OutputPass and OutputShader (#30335) Co-authored-by: Francesco Sampoli <sampoli@quest-it.com>
[ { "path": "examples/jsm/postprocessing/OutputPass.js", "patch": "@@ -8,6 +8,7 @@ import {\n \tAgXToneMapping,\n \tACESFilmicToneMapping,\n \tNeutralToneMapping,\n+\tCustomToneMapping,\n \tSRGBTransfer\n } from 'three';\n import { Pass, FullScreenQuad } from './Pass.js';\n@@ -63,6 +64,7 @@ class OutputPass e...
2025-01-16T13:19:29
vuejs/vue
3d14e855e422b656859d1b419af43b94320fcfce
303655116f8ec78f3b0ac99569637ad868dfe246
fix: checkbox v-model="array" ignore false-value (#6180) close #6178
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -93,7 +93,7 @@ function genCheckboxModel (\n 'if(Array.isArray($$a)){' +\n `var $$v=${number ? '_n(' + valueBinding + ')' : valueBinding},` +\n '$$i=_i($$a,$$v);' +\n- `if($$c){$$i<0&&(${value}=$$a.concat($$v))...
2017-07-21T04:00:22
mrdoob/three.js
0c1185d40e326cd35e55417e5df3d98dcf6dcd9d
a13e4b053ad4dec53b66a96cc035ee5c747c3d21
WebGPURenderer: Improve `ArrayCamera` performance and fixes (#30313) * wip arraycamera * Update webgl_camera_array2.html * updated approach * Update WebGLBackend.js * added webgpu support * update example * revision * update camera array * Update Camera.js * update * Update webgpu_camera_array.html * cleanu...
[ { "path": "examples/webgpu_camera_array.html", "patch": "@@ -7,6 +7,7 @@\n \t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"main.css\">\n \t</head>\n \t<body>\n+\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n@@ -22,51 +23,43 @@\n \n \t\t\timport * as THREE from 'three';\n \n+\t\...
2025-01-16T12:14:34
denoland/deno
642f2a46a6d49b2018c042faae5407c328810d9d
2353b9ba6af282c63a1e6e88af9a86690f19ec5d
fix(lsp): don't provide organizeImports action when client provides it (#31530)
[ { "path": "cli/lsp/config.rs", "patch": "@@ -1208,6 +1208,14 @@ impl Config {\n })()\n .unwrap_or(false)\n }\n+\n+ pub fn client_provided_organize_imports_capable(&self) -> bool {\n+ (|| {\n+ let experimental = self.client_capabilities.experimental.as_ref()?;\n+ experimental.get(\"cl...
2025-12-08T10:46:22
golang/go
4d26d66a49c51b5a7c610c4815322809b31962d9
e3d4645693bc030b9ff9b867f1d374a1d72ef2fe
[dev.simd] simd: fix signatures for PermuteConstant* methods This moves the packed-immediate methods to package-private, and adds exported versions with four parameters. Rename PermuteConstant to PermuteScalars Rename VPSHUFB Permute to PermuteOrZero Rename Permute2 to ConcatPermute Comments were repaired/enhanced. ...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -396,7 +396,7 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPOR256,\n \t\tssa.OpAMD64VPORD512,\n \t\tssa.OpAMD64VPORQ512,\n-\t\tssa.OpAMD64VPSHUFB128,\n+\t\tssa.OpAMD64VPERMB128,\n \t\tssa.OpAMD64VPERMB256,...
2025-11-17T20:31:36
vuejs/vue
303655116f8ec78f3b0ac99569637ad868dfe246
fc3d7cd7a93534d76840418467f303d4b301fbcd
fix(provide/inject): merge provide properly from mixins close #6175
[ { "path": "src/core/util/options.js", "patch": "@@ -85,7 +85,7 @@ export function mergeDataOrFn (\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this) : childVal,\n- parentVal.call(this)\n+ typeof parentVal === 'functi...
2017-07-21T01:47:52
mrdoob/three.js
a13e4b053ad4dec53b66a96cc035ee5c747c3d21
d9ca4dc0104b05c6421e22d30346abafd66894c4
WebGPURenderer: Fix clear alpha in WebGLBackend (#30329) * WebGPURenderer: Fix clear alpha in WebGLBackend * improved jsdoc * add comment * simplify * remove white space * revert
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -1855,6 +1855,9 @@ class Renderer {\n \n \t\t}\n \n+\t\t// #30329\n+\t\trenderContext.clearColorValue = this._clearColor;\n+\n \t\tthis.backend.clear( color, depth, stencil, renderContext );\n \n \t\tif ( renderTarget !== null && this._renderTarget ...
2025-01-16T02:51:01
denoland/deno
2353b9ba6af282c63a1e6e88af9a86690f19ec5d
40cf41275b8e1ec4358d6bca5fdecd104787e5d5
fix(ext/node): implement `DatabaseSync.aggregate()` (#31461) Implementation is based on https://github.com/nodejs/node/blob/v24.2.0/src/node_sqlite.cc It passes all tests from https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-sqlite-aggregate-function.mjs except for two test cases where it uses `mock()` ...
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -25,6 +25,7 @@ use deno_permissions::PermissionsContainer;\n use rusqlite::ffi as libsqlite3_sys;\n use rusqlite::ffi::SQLITE_DBCONFIG_DQS_DDL;\n use rusqlite::ffi::SQLITE_DBCONFIG_DQS_DML;\n+use rusqlite::ffi::sqlite3_create_window_function;\n use r...
2025-12-08T10:34:31
vuejs/vue
fc3d7cd7a93534d76840418467f303d4b301fbcd
eb9168cfc1816b53ddb1eccd6310173a37803897
fix: work around IE/Edge bug when accessing document.activeElement from iframe close #6157
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -63,7 +63,11 @@ function shouldUpdateValue (\n function isDirty (elm: acceptValueElm, checkVal: string): boolean {\n // return true when textbox (.number and .trim) loses focus and its value is\n // not equal to the updated value\n...
2017-07-21T01:14:43
mrdoob/three.js
a34d43c652c32a5e303320736c33e7dd563ab2a5
53452d3f02573c7a82b22ff74915974ef0666e18
Node: fix some types (#30323) * Node: fix some types * Update Lighting.js * Update Background.js * Update NodeMaterial.js --------- Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/nodes/accessors/BufferAttributeNode.js", "patch": "@@ -271,7 +271,7 @@ class BufferAttributeNode extends InputNode {\n \t/**\n \t * Sets the `instanced` property to the given value.\n \t *\n-\t * @param {Number} value - The value to set.\n+\t * @param {Boolean} value - The value to set.\n \t ...
2025-01-14T15:23:43
golang/go
bd2b117c2c778343106f5823e4ae99da2160d095
3ad2e113fc3dd202bfb2ef87d376b6ef54337f0b
crypto/tls: add QUICErrorEvent Add a new QUICEvent type for reporting errors. This provides a way to report errors that don't occur as a result of QUICConn.Start, QUICConn.HandleData, or QUICConn.SendSessionTicket. Fixes #75108 Change-Id: I941371a21f26b940e75287a66d7e0211fc0baab1 Reviewed-on: https://go-review.googl...
[ { "path": "api/next/75108.txt", "patch": "@@ -0,0 +1,3 @@\n+pkg crypto/tls, const QUICErrorEvent = 10 #75108\n+pkg crypto/tls, const QUICErrorEvent QUICEventKind #75108\n+pkg crypto/tls, type QUICEvent struct, Err error #75108", "additions": 3, "deletions": 0, "language": "Plain Text" }, { ...
2025-11-08T19:22:59
denoland/deno
40cf41275b8e1ec4358d6bca5fdecd104787e5d5
b8b549d574eceed3275923339f402a4b3df5385e
fix(ext/node): fix sqlite extension used for testing; ensure related tests are actually meaningful (#31455) The SQLite extension-loading tests, prior to this PR, were short-circuiting due to an incorrect search path, and not actually verifying that extensions loaded. When this invalid path was fixed, the result was a ...
[ { "path": "Cargo.lock", "patch": "@@ -8527,6 +8527,13 @@ dependencies = [\n \"winnow 0.6.26\",\n ]\n \n+[[package]]\n+name = \"sqlite_extension_test\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"test_server\",\n+]\n+\n [[package]]\n name = \"stable_deref_trait\"\n version = \"1.2.0\"\n@@ -9346,14 +9353,6...
2025-12-08T10:30:54
vuejs/vue
a8ac129a5876a7eeae0137bf2f1b0968d4d6ffad
9b4dbba384bc81a99abe429476729f80cb06d19a
fix: ensure looseEqual is not dependant on key enumeration order close #5908
[ { "path": "src/shared/util.js", "patch": "@@ -248,15 +248,31 @@ export function genStaticKeys (modules: Array<ModuleOptions>): string {\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\n-export function looseEqual (a: mixed, b: mixed): ...
2017-07-21T00:41:18
mrdoob/three.js
0434326a9f83169affda7483adf0e87c58e4463e
2cf6a5bfd315dc6b87269f77fdef97146e4b34de
RenderObject: Improve cache key computation when rendering shadows. (#30316) * RenderObject: Improve cache key computation when rendering shadows. * ShadowNode: Fix material type conflict.
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -56,7 +56,7 @@ const getShadowMaterial = ( light ) => {\n \t\tmaterial = new NodeMaterial();\n \t\tmaterial.colorNode = vec4( 0, 0, 0, 1 );\n \t\tmaterial.depthNode = depthNode;\n-\t\tmaterial.isShadowNodeMaterial = true; // Use to avoid other overr...
2025-01-14T09:07:35
denoland/deno
b8b549d574eceed3275923339f402a4b3df5385e
61cf9333a914fa3eb1d5295f01e2ccb12f08c3cb
fix(node): missing `statfs` export from `node:fs/promises` (#31528) We already had the functionality, we just didn't export it. Fixes https://github.com/denoland/deno/issues/31526
[ { "path": "ext/node/polyfills/fs/promises.ts", "patch": "@@ -16,6 +16,7 @@ export const readlink = fsPromises.readlink;\n export const symlink = fsPromises.symlink;\n export const lstat = fsPromises.lstat;\n export const stat = fsPromises.stat;\n+export const statfs = fsPromises.statfs;\n export const fstat...
2025-12-08T09:45:01
golang/go
d58b733646d2d52638b08d5c44afbc7292aeca4d
1bc54868d4fd03e3716e7ad9669d87c34c8aaa2d
runtime: track goroutine location until actual STW TestTraceSTW / TestTraceGCSTW currently tracks the location (M/P) of the target goroutines until it reaches the "start" log message, assuming the actual STW comes immediately afterwards. On 386 with TestTraceGCSTW, it actually tends to take >10ms after the start log ...
[ { "path": "src/runtime/proc_test.go", "patch": "@@ -1321,11 +1321,13 @@ func runTestTracesSTW(t *testing.T, run int, name, stwType string) (err error) {\n \t//\n \t// 2. Once found, track which M and P the target goroutines run on until...\n \t//\n-\t// 3. Look for the \"TraceSTW\" \"start\" log message, wh...
2025-11-20T21:21:09
mrdoob/three.js
47cbf9de9155a41222a5a91dbba6dd073af576df
acc17c6582436a7cc2451a73aedb4c3854944dee
Renderer: fix types and references (#30318) Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
[ { "path": "src/renderers/common/Binding.js", "patch": "@@ -27,7 +27,7 @@ class Binding {\n \t\t * A bitmask that defines in what shader stages the\n \t\t * binding's resource is accessible.\n \t\t *\n-\t\t * @type {String}\n+\t\t * @type {Number}\n \t\t */\n \t\tthis.visibility = 0;\n ", "additions": 1,...
2025-01-13T21:19:06
vuejs/vue
9b4dbba384bc81a99abe429476729f80cb06d19a
082fc3967db4d3290e901a38504dcd9bb698e561
fix(transition): should trigger transition hooks for v-show in ie9 fix #5525
[ { "path": "src/platforms/web/runtime/directives/show.js", "patch": "@@ -1,6 +1,5 @@\n /* @flow */\n \n-import { isIE9 } from 'core/util/env'\n import { enter, leave } from '../modules/transition'\n \n // recursively search for possible transition defined inside the component root\n@@ -16,7 +15,7 @@ export d...
2017-07-21T00:03:33
denoland/deno
99c4d22b8574557921e45466df1f6d4f569bee8b
c27d8f047bec19a175e8c5708e865fba85189023
Revert "fix(resolver): fall back to execution if can't resolve types" (#31513) Reverts denoland/deno#31507
[ { "path": "libs/resolver/npm/mod.rs", "patch": "@@ -513,21 +513,6 @@ impl<\n match resolution_result {\n Ok(url) => Ok(url),\n Err(err) => {\n- if err.as_types_not_found().is_some() {\n- // failed to find types, just fall back to normal resolution\n- debug_assert_eq!...
2025-12-07T15:46:49
vuejs/vue
082fc3967db4d3290e901a38504dcd9bb698e561
17130611261fdbab70d0e5ab45036e4b612b17fe
fix(parser): only ignore the first newline in <pre> fix #6146
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -79,9 +79,6 @@ export function parseHTML (html, options) {\n last = html\n // Make sure we're not in a plaintext content element like script/style\n if (!lastTag || !isPlainTextElement(lastTag)) {\n- if (shouldIgnoreFirstNewline(l...
2017-07-20T23:30:09
vuejs/vue
17130611261fdbab70d0e5ab45036e4b612b17fe
06b9b0bbadcc6c5afd300ed7748294e62ba00803
fix(v-on): revert component root data.on/data.nativeOn behavior for weex-vue-render compat close #6109
[ { "path": "src/core/instance/render.js", "patch": "@@ -54,12 +54,12 @@ export function initRender (vm: Component) {\n defineReactive(vm, '$attrs', parentData && parentData.attrs, () => {\n !isUpdatingChildComponent && warn(`$attrs is readonly.`, vm)\n }, true)\n- defineReactive(vm, '$listen...
2017-07-19T23:39:42
golang/go
ff654ea1000af81bd08f24faf06c2113e8df001a
a662badab918d7708bbc750f24b9c7313520e2b0
net/url: permit colons in the host of postgresql:// URLs PostgreSQL's postgresql:// URL scheme permits a comma-separated list of host:ports to appear in the host subcomponent: https://www.postgresql.org/docs/11/libpq-connect.html#LIBPQ-MULTIPLE-HOSTS While this is not compliant with RFC 3986, it's something we've acc...
[ { "path": "src/net/url/url.go", "patch": "@@ -489,7 +489,7 @@ func parse(rawURL string, viaRequest bool) (*URL, error) {\n \t\tif i := strings.Index(authority, \"/\"); i >= 0 {\n \t\t\tauthority, rest = authority[:i], authority[i:]\n \t\t}\n-\t\turl.User, url.Host, err = parseAuthority(authority)\n+\t\turl....
2025-11-19T23:32:04
denoland/deno
c27d8f047bec19a175e8c5708e865fba85189023
bc9d356059abf4bb04c9849edbfcc53ebcd363ed
fix: make '@types' package resolution more consistent (#31512) Shifts `@types` package resolution down into node_resolver so it's always done. We were being inconsistent.
[ { "path": "Cargo.lock", "patch": "@@ -2520,9 +2520,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.42.1\"\n+version = \"0.42.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7676aeffeeefb7ef4343a5f5c04e6bf97d5b24038d04c119fb3891fa56a1d146\"...
2025-12-06T16:59:06
vuejs/vue
06b9b0bbadcc6c5afd300ed7748294e62ba00803
d03fa26687605a43d9a0c3f395d1d32375f7eaee
fix(v-bind): respect .prop modifier on components (#6159)
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -483,8 +483,8 @@ function processAttrs (el) {\n )\n }\n }\n- if (!el.component && (\n- isProp || platformMustUseProp(el.tag, el.attrsMap.type, name)\n+ if (isProp || (\n+ !el.component && pla...
2017-07-19T22:11:51
mrdoob/three.js
292c046b176f5fd087d7ef47e55b82cb23981a18
65d40344497e01218f5b1599c2eed602a90c8010
WebGPURenderer: Fix Shadows PBR (#30307)
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -890,7 +890,7 @@ class WebGPUBackend extends Backend {\n \n \t\t\tif ( color ) {\n \n-\t\t\t\tconst descriptor = this._getRenderPassDescriptor( renderTargetContext, { loadOp: GPULoadOp.Clear } );\n+\t\t\t\tconst descriptor = this._getRenderPass...
2025-01-11T12:23:34
golang/go
c1b7112af8331d37e33be521d2d8baa552945971
ca37d24e0b9369b8086959df5bc230b38bf98636
os/signal: make NotifyContext cancel the context with a cause This is especially useful when combined with the nesting semantics of context.Cause, and with errgroup's use of CancelCauseFunc. For example, with the following code ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt) defer stop() ser...
[ { "path": "doc/next/6-stdlib/99-minor/os/signal/notifycontext.md", "patch": "@@ -0,0 +1,2 @@\n+[NotifyContext] now cancels the returned context with [context.CancelCauseFunc]\n+and an error indicating which signal was received.", "additions": 2, "deletions": 0, "language": "Markdown" }, { ...
2025-11-18T16:19:04
denoland/deno
bc9d356059abf4bb04c9849edbfcc53ebcd363ed
8c46ac3228762fb442b0080c7eb81e5e918543bb
fix(node/net): return string `family` in `server.address()` (#31465) ## Summary Aligns Deno's Node.js compatibility layer (`node:net`, `node:http`, `node:https`, `node:http2`, `node:dns`) with Node.js v18.4.0+ behavior by returning the `family` property as a string (`"IPv4"` or `"IPv6"`) rather than a number in `serv...
[ { "path": "ext/node/polyfills/dns.ts", "patch": "@@ -234,8 +234,19 @@ export function lookup(\n }\n \n if (options?.family != null) {\n- validateOneOf(options.family, \"options.family\", validFamilies);\n- family = options.family;\n+ // Accept both numeric (0, 4, 6) and string ('IPv4'...
2025-12-06T03:51:55
mrdoob/three.js
dd4736363ffaa5d22d8710d1c13bcb0ba742e18f
0a7d33cbfd6c6b913b80d5ddcb15dbb2198606ce
RenderObject: Fix geometry key for morph targets. (#30302) * RenderObject: Fix geometry key for morph targets. * RenderObject: Clean up. * RenderObject: Improve cache key names.
[ { "path": "docs/api/en/core/BufferAttribute.html", "patch": "@@ -70,6 +70,9 @@ <h3>[property:Number gpuType]</h3>\n \t\t<h3>[property:Boolean isBufferAttribute]</h3>\n \t\t<p>Read-only flag to check if a given object is of type [name].</p>\n \n+\t\t<h3>[property:Integer id]</h3>\n+\t\t<p>Unique number for t...
2025-01-10T14:05:29
vuejs/vue
d03fa26687605a43d9a0c3f395d1d32375f7eaee
b0f00e31e7d06edfdc733e2e7f24d5ca448759f9
fix(compile): properly generate comments with special character (#6156) close #6150
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -442,7 +442,7 @@ export function genText (text: ASTText | ASTExpression): string {\n }\n \n export function genComment (comment: ASTText): string {\n- return `_e('${comment.text}')`\n+ return `_e(${JSON.stringify(comment.text)})`\n }\n \n function ge...
2017-07-19T22:09:21
denoland/deno
8c46ac3228762fb442b0080c7eb81e5e918543bb
3a4b9de81ef0a83652729320cfc750f94ccab924
fix(check): move types not found error to tsc diagnostic (#31509) Closes https://github.com/denoland/deno/issues/31352
[ { "path": "cli/graph_util.rs", "patch": "@@ -297,9 +297,9 @@ pub fn resolution_error_for_tsc_diagnostic(\n | NodeJsErrorCode::ERR_UNSUPPORTED_ESM_URL_SCHEME\n | NodeJsErrorCode::ERR_INVALID_FILE_URL_PATH\n | NodeJsErrorCode::ERR_PACKAGE_IMPORT_NOT_DEFINED\n- | NodeJsErrorCode::ERR_PAC...
2025-12-06T02:57:45
mrdoob/three.js
5fb35c77b98b0c3d438100035a1e8dafeca5eb2a
60e27ac7cb47c38491457bcb2de3584da9389a33
WebGPUBackend: Fix Timestamp Query (#30299) * fix * await
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -1468,23 +1468,23 @@ class WebGPUBackend extends Backend {\n \n \t\tconst renderContextData = this.get( renderContext );\n \n-\t\tif ( ! renderContextData.timestampQuerySet ) {\n+\t\t// init query set if not exists\n \n+\t\tif ( ! renderContext...
2025-01-10T07:36:29
vuejs/vue
b0f00e31e7d06edfdc733e2e7f24d5ca448759f9
c70addf7d1a8e820ed80b6ab14aace5aa7b604c5
fix(provide/inject): resolve inject properly from mixins (#6107) fix #6093
[ { "path": "src/core/instance/inject.js", "patch": "@@ -1,7 +1,6 @@\n /* @flow */\n \n import { warn } from '../util/index'\n-import { hasOwn } from 'shared/util'\n import { hasSymbol } from 'core/util/env'\n import { defineReactive, observerState } from '../observer/index'\n \n@@ -56,7 +55,7 @@ export funct...
2017-07-19T22:07:33
denoland/deno
3a4b9de81ef0a83652729320cfc750f94ccab924
3089aa8690af8dfaa6f24051800fa116a20b3ee3
fix: change errors message suggesting to run approve-scripts (#31493) Follow up to https://github.com/denoland/deno/pull/31472 Before: ``` $ deno install ... ╭ Warning │ │ Ignored build scripts for packages: │ npm:msgpackr-extract@3.0.3 │ npm:@parcel/watcher@2.5.1 │ npm:lmdb@2.8.5 │ npm:@swc/core@1.12.0 │ │ Run...
[ { "path": "cli/tools/pm/approve_scripts.rs", "patch": "@@ -126,11 +126,21 @@ pub async fn approve_scripts(\n config_updater.set_allow_scripts_value(allow_scripts_value);\n config_updater.commit()?;\n \n- for req in approvals {\n- log::info!(\"Approved {}\", colors::green(format!(\"npm:{req}\")));\n-...
2025-12-05T21:19:29
mrdoob/three.js
60e27ac7cb47c38491457bcb2de3584da9389a33
7e300eb97793badc753474494fc76eaef0a8bb55
Renderer: Fix viewport configuration of `ArrayCamera`. (#30298)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -2622,6 +2622,7 @@ class Renderer {\n \t\t\t\t\t\tviewportValue.copy( vp ).multiplyScalar( this._pixelRatio ).floor();\n \t\t\t\t\t\tviewportValue.minDepth = minDepth;\n \t\t\t\t\t\tviewportValue.maxDepth = maxDepth;\n+\t\t\t\t\t\tthis._currentRende...
2025-01-09T12:48:07
vuejs/vue
c70addf7d1a8e820ed80b6ab14aace5aa7b604c5
be3dc9c6e923248bcf81eb8240dd4f3c168fac59
fix(v-model): use stricter check for <select> option update close #6112
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -30,6 +30,7 @@ export default {\n if (isIE || isEdge) {\n setTimeout(cb, 0)\n }\n+ el._vOptions = [].map.call(el.options, getValue)\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n ...
2017-07-19T21:51:41
denoland/deno
a39796500df53799c72e83d7af6a3603625e263a
dfe26dadb0018f07f5a6086e10e4f6562b3613d0
fix(resolver): fall back to execution if can't resolve types (#31507) Fixes https://github.com/denoland/deno/issues/31352 This matches the behavior of the other node_modules_dir modes more closely as well as tsc's behavior. Failing to find types should not be an error
[ { "path": "libs/resolver/npm/mod.rs", "patch": "@@ -526,6 +526,19 @@ impl<\n {\n return Ok(resolved);\n }\n+ // failed to find types, just fall back to normal resolution\n+ debug_assert_eq!(resolution_kind, NodeResolutionKind::Types);\n+ if let Ok(r...
2025-12-05T20:34:02
mrdoob/three.js
1b5a3bb8ab59483fa1975759bde8c82a7d6d9f60
e694219431b9a3acdd52468c177cd5c720418c8d
Update RenderContext.js Fix typo.
[ { "path": "src/renderers/common/RenderContext.js", "patch": "@@ -231,7 +231,7 @@ class RenderContext {\n }\n \n /**\n- * Computes a cache key for the given render context. This cache\n+ * Computes a cache key for the given render context. This key\n * should identify the render target state so it is possib...
2025-01-09T08:52:29
vuejs/vue
be3dc9c6e923248bcf81eb8240dd4f3c168fac59
381b48503aae796c5c21c318cae8b0a8322dde35
fix: include boolean in isPrimitive check (#6127) suppresses key warning for boolean values, closes #6126
[ { "path": "src/shared/util.js", "patch": "@@ -22,7 +22,11 @@ export function isFalse (v: any): boolean %checks {\n * Check if value is primitive\n */\n export function isPrimitive (value: any): boolean %checks {\n- return typeof value === 'string' || typeof value === 'number'\n+ return (\n+ typeof va...
2017-07-19T12:27:48
denoland/deno
dd0aa99f18822728c80011bb51ae04a9d5ec1b3c
e5f9b441ef9e2ba75306679068ad292a29f690ef
fix: fix npx running in test, make approve-scripts test less flaky (#31501) It was doing `npx cowsay` but cowsay wasn't listed as a dependency, so it was falling back to actual npx. I also found that the cowsay part sometimes overlaps with the progress bar, so checking for 'install' is more reliable
[ { "path": "tests/integration/pm_tests.rs", "patch": "@@ -178,9 +178,7 @@ fn approve_scripts_basic() {\n pty.write_line(\" \");\n pty.write_line(\"\\r\\n\");\n pty.expect(\"Approved npm:@denotest/node-lifecycle-scripts@1.0.0\");\n- pty.expect(\n- \"@denotest/node-lifecycle-scrip...
2025-12-05T08:20:01
mrdoob/three.js
e694219431b9a3acdd52468c177cd5c720418c8d
dc9f057a4376e4d56049f47e1ae8838ac228a516
Update shadertoy.html (#30294) Update manual/zh/shadertory.html for incorrect transilation.
[ { "path": "manual/zh/shadertoy.html", "patch": "@@ -62,9 +62,9 @@ <h1>Three.js 与 Shadertoy</h1>\n class=\"notranslate\" translate=\"no\">vec4</code>, <code class=\"notranslate\" translate=\"no\">vec2</code>,<code\n class=\"notranslate\" translate=\"no\">vec3</code> 这三种特定类型。 一个 <code ...
2025-01-09T08:51:20
golang/go
790384c6c23f7ce44199ea3cd61c856d632b08aa
a49b0302d0e1d97b67a5f3f3beceafdcbc4c2ef0
spec: adjust rule for type parameter on RHS of alias declaration Per discussion on issue #75885, a type parameter on the RHS of an alias declaration must not be declared in the same declaration (but it may be declared by an enclosing function). This relaxes the spec slightly and allows for (pre-existing) test cases. ...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Nov 12, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 18, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2487,11 +2487,1...
2025-11-18T23:47:44
denoland/deno
49fa02d98859f467e0216bfdb79417aace90f433
54412e4e8fd1fe3dadb9dfb9276a9dfccca90fd1
fix(ext/node): `url.domainToASCII` returns empty string for invalid domains (#31219) ## Summary This PR fixes the behavior of `url.domainToASCII` to match Node.js by returning an empty string when an invalid domain is passed, instead of throwing an error. ## Changes - Modified `op_node_idna_domain_to_ascii` in `ext...
[ { "path": "ext/node/ops/idna.rs", "patch": "@@ -114,12 +114,12 @@ pub fn op_node_idna_punycode_to_unicode(\n \n /// Converts a domain to ASCII as per the IDNA spec\n /// (specifically UTS #46)\n+///\n+/// Returns an empty string if the domain is invalid, matching Node.js behavior\n #[op2]\n #[string]\n-pub ...
2025-12-03T14:57:53
mrdoob/three.js
dc9f057a4376e4d56049f47e1ae8838ac228a516
95a994c425bb7e9093e53a9823783fdcda585f6c
TSL: Fix optional parameter in `Fn()` (#30293)
[ { "path": "src/nodes/tsl/TSLCore.js", "patch": "@@ -305,7 +305,7 @@ class ShaderCallNodeInternal extends Node {\n \t\t} else {\n \n \t\t\tconst jsFunc = shaderNode.jsFunc;\n-\t\t\tconst outputNode = inputNodes !== null ? jsFunc( inputNodes, builder ) : jsFunc( builder );\n+\t\t\tconst outputNode = inputNode...
2025-01-09T02:32:09
golang/go
a49b0302d0e1d97b67a5f3f3beceafdcbc4c2ef0
32f5aadd2ffc60421c62b185fa7668012fb5e73e
net/http: correctly close fake net.Conns Fix an inverted test in fakeNetConn.Close that caused closing a connection to not break the other half of the connection. Change-Id: I4e53f78402f8e503c749d57f294a4524abdccfb5 Reviewed-on: https://go-review.googlesource.com/c/go/+/722220 Reviewed-by: Nicholas Husin <nsh@golang....
[ { "path": "src/net/http/netconn_test.go", "patch": "@@ -180,9 +180,10 @@ func (c *fakeNetConn) Close() error {\n \tc.loc.unlock()\n \t// Remote half of the connection reads EOF after reading any remaining data.\n \tc.rem.lock()\n-\tif c.rem.readErr != nil {\n+\tif c.rem.readErr == nil {\n \t\tc.rem.readErr ...
2025-11-19T19:25:49
denoland/deno
54412e4e8fd1fe3dadb9dfb9276a9dfccca90fd1
62e63ac9cacd6f55d5999c17814ef2d842213b5f
test: disable parallel/test-fs-promises-file-handle-readFile.js (#31485) This test needs some more work, I've seen it crash multiple times in various PRs over the last 24h.
[ { "path": "tests/node_compat/config.toml", "patch": "@@ -463,7 +463,8 @@\n \"parallel/test-fs-open-numeric-flags.js\" = {}\n \"parallel/test-fs-open.js\" = {}\n \"parallel/test-fs-promises-exists.js\" = {}\n-\"parallel/test-fs-promises-file-handle-readFile.js\" = { flaky = true }\n+# TODO(bartlomieju): cras...
2025-12-03T14:46:43
mrdoob/three.js
95a994c425bb7e9093e53a9823783fdcda585f6c
055364a7c3ada0caee81c8b69d5c19adc536edda
WebGPUBackend: Fix Occlusion Query Logic (#30288) * fix * Update WebGLBackend.js * Update webgpu_occlusion.html --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/webgpu_occlusion.html", "patch": "@@ -92,7 +92,7 @@\n \t\t\t\tconst plane = new THREE.Mesh( planeGeometry, new THREE.MeshPhongNodeMaterial( { color: 0x00ff00, side: THREE.DoubleSide } ) );\n \t\t\t\tconst sphere = new THREE.Mesh( sphereGeometry, new THREE.MeshPhongNodeMaterial( { color: ...
2025-01-09T02:31:42
vuejs/vue
a7615ef053d8bca85623666cb9a68e4d21f76952
ac3d1eaea34ee23978d395a84f68154e7e86caa1
build: fix postinstall script causing user install errors
[ { "path": ".github/CONTRIBUTING.md", "patch": "@@ -41,9 +41,10 @@ After cloning the repo, run:\n \n ``` bash\n $ npm install\n+& npm run setup\n ```\n \n-This will also run the `postinstall` script which links two git hooks:\n+The `setup` script links two git hooks:\n \n - `pre-commit`: runs ESLint on stage...
2017-07-13T06:38:31
mrdoob/three.js
3da65505c560cf0d51e9e1daeb9b1c3c4f9f12c1
9ddf4be866249472ff6cdd5ca82c1c0166285748
Docs: Fix incorrect note on color management in post-processing (#30281) * Docs: Fix incorrect note on color management in post-processing * Update Color-management.html
[ { "path": "docs/manual/en/introduction/Color-management.html", "patch": "@@ -214,14 +214,10 @@ <h3>Output color space</h3>\n \n \t<p>\n \t\tOutput to a display device, image, or video may involve conversion from the open domain\n-\t\tLinear-sRGB working color space to another color space. This conversion ma...
2025-01-08T18:03:05
golang/go
32f5aadd2ffc60421c62b185fa7668012fb5e73e
a18aff805706bfdaeb9aca042111fae32f9f8b61
cmd/compile: stack allocate backing stores during append We can already stack allocate the backing store during append if the resulting backing store doesn't escape. See CL 664299. This CL enables us to often stack allocate the backing store during append *even if* the result escapes. Typically, for code like: f...
[ { "path": "src/cmd/compile/internal/deadlocals/deadlocals.go", "patch": "@@ -44,6 +44,11 @@ func Funcs(fns []*ir.Func) {\n \t\t\t\t*as.lhs = ir.BlankNode\n \t\t\t\t*as.rhs = zero\n \t\t\t}\n+\t\t\tif len(assigns) > 0 {\n+\t\t\t\t// k.Defn might be pointing at one of the\n+\t\t\t\t// assignments we're overwr...
2025-09-12T21:43:19
denoland/deno
62e63ac9cacd6f55d5999c17814ef2d842213b5f
746f60d2a4eda1b825d7d459de192ee416dbc015
fix(audit): remove unwrap in favor of log, don't print empty reports (#31479) Changes to print reports from socket.dev, only if something is found.
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -663,10 +663,14 @@ mod socket_dev {\n None\n }\n })\n- .map(|json_response| {\n- let response: FirewallResponse =\n- serde_json::from_str(&json_response).unwrap();\n- response\n+ .filter_map(|json_respon...
2025-12-02T23:30:57
mrdoob/three.js
f2cf01c68b4f56393066088c767bc82409879f0e
48df2ee36336710364d7e268c34b0f03be3df16f
Docs: Cloning the texture automatically mark it for texture upload (#30285) * cloning the texture automatically mark it for texture upload * fix typo
[ { "path": "docs/api/en/textures/Texture.html", "patch": "@@ -309,10 +309,7 @@ <h3>[method:undefined updateMatrix]()</h3>\n \t\t<h3>[method:Texture clone]()</h3>\n \t\t<p>\n \t\t\tMake copy of the texture. Note this is not a \"deep copy\", the image is\n-\t\t\tshared. Besides, cloning a texture does not auto...
2025-01-08T16:08:04