repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
denoland/deno
ebfd3c3d7c196340a90189f8be5cd104c625ee4f
c69a8fa4145164d53b5bc04bd3355c3be9e758c5
fix: android build (#30360) Fix build error on Android. Patches from https://github.com/cions/termux-deno
[ { "path": "cli/Cargo.toml", "patch": "@@ -195,7 +195,7 @@ deno_subprocess_windows.workspace = true\n [target.'cfg(unix)'.dependencies]\n nix.workspace = true\n shell-escape = \"=0.1.5\"\n-[target.'cfg(any(target_os = \"linux\", target_os = \"macos\"))'.dependencies]\n+[target.'cfg(any(target_os = \"android\...
2025-08-12T13:47:18
vuejs/vue
240df147f11824db5811d23c8704225aa586b96b
c23c5c5d7011d29764fccca4f88155d1c5cfbbf8
Generate style on custom component in SSR (fix #4055) (#4076) * fix #4055, generate style on custom component * add test for custom component style * add synthetic data for module processing
[ { "path": "src/platforms/web/server/modules/style.js", "patch": "@@ -2,24 +2,43 @@\n \n import { hyphenate, toObject } from 'shared/util'\n \n-export default function renderStyle (node: VNodeWithData): ?string {\n+function concatStyleString (former: string, latter: string) {\n+ if (former === '' || latter ...
2016-11-04T13:38:52
mrdoob/three.js
8b141450e6f2920a634dc422dfcd683a809f3c1a
c9136670fbf518e0beb7f9d425f3d6bdcf8618e6
Transpiler: Fix `shader_toy` example and update `three/tsl` import (#28788)
[ { "path": "examples/jsm/transpiler/TSLEncoder.js", "patch": "@@ -501,7 +501,9 @@ ${ this.tab }} )`;\n \n \t\tthis.addImport( 'overloadingFn' );\n \n-\t\treturn `export const ${ name } = /*#__PURE__*/ overloadingFn( [ ${ nodes.map( node => node.name + '_' + nodes.indexOf( node ) ).join( ', ' ) } ] );\\n`;\n+...
2024-07-02T17:49:27
golang/go
ee7bf06cb306ea9234fbc1501f3e0f3903ada427
f9e61a9a32c8cbfd810ac9fec135b5c0911b8d69
time: improve ParseDuration performance for invalid input Add "parseDurationError" to reduce memory allocation in the error path of "ParseDuration" and delay the generation of error messages. This improves the performance when dealing with invalid input. The format of the error message remains unchanged. Benchmarks:...
[ { "path": "src/time/format.go", "patch": "@@ -1602,6 +1602,16 @@ func leadingFraction(s string) (x uint64, scale float64, rem string) {\n \treturn x, scale, s[i:]\n }\n \n+// parseDurationError describes a problem parsing a duration string.\n+type parseDurationError struct {\n+\tmessage string\n+\tvalue s...
2025-09-19T10:34:09
denoland/deno
c69a8fa4145164d53b5bc04bd3355c3be9e758c5
6344dcffad919381b2d5ad77c906ce555ae75ed1
fix(unstable): update deno_tunnel for better reconnect errors (#30381)
[ { "path": "Cargo.lock", "patch": "@@ -2952,9 +2952,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_tunnel\"\n-version = \"0.7.0\"\n+version = \"0.8.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"386488c23cda3d6f44d4fa5593a45346032902bbd5bf058e48077b85fb550f99\...
2025-08-12T09:45:37
vuejs/vue
c23c5c5d7011d29764fccca4f88155d1c5cfbbf8
4078ce9c58830fecff095ab96dc41693377794dd
keep consistency in dev and prod env (#4093) * keep consistency in dev and prod env * Update extend.js * delete name=null * fixup * Update name.spec.js
[ { "path": "src/core/global-api/extend.js", "patch": "@@ -22,14 +22,13 @@ export function initExtend (Vue: GlobalAPI) {\n if (isFirstExtend && extendOptions._Ctor) {\n return extendOptions._Ctor\n }\n- let name = extendOptions.name || Super.options.name\n+ const name = extendOptions.name ...
2016-11-04T13:35:10
mrdoob/three.js
570f72713f0220e69a8e7ac78de6661b8092d26d
3e8a091b30baf2e4369145789db91127349f1ddb
Node: Add `Lut3DNode`. (#28779) * Node: Add `Lut3DNode`. * E2E: Add example to exception list.
[ { "path": "examples/files.json", "patch": "@@ -367,6 +367,7 @@\n \t\t\"webgpu_pmrem_equirectangular\",\n \t\t\"webgpu_pmrem_scene\",\n \t\t\"webgpu_portal\",\n+\t\t\"webgpu_postprocessing_3dlut\",\n \t\t\"webgpu_postprocessing_afterimage\",\n \t\t\"webgpu_postprocessing_anamorphic\",\n \t\t\"webgpu_postproc...
2024-07-01T21:45:07
golang/go
3cf1aaf8b9c846c44ec8db679495dd5816d1ec30
0ab038af6290c7fb52d4c26949d735692781b3d1
runtime: use futexes with 64-bit time on Linux Linux introduced new syscalls to fix the year 2038 issue. To still be able to use the old ones, the Kconfig option COMPAT_32BIT_TIME would be necessary. Use the new syscall with 64-bit values for futex by default. Define _ENOSYS for detecting if it's not available. Add a...
[ { "path": "src/runtime/defs2_linux.go", "patch": "@@ -48,6 +48,7 @@ const (\n \tEINTR = C.EINTR\n \tEAGAIN = C.EAGAIN\n \tENOMEM = C.ENOMEM\n+\tENOSYS = C.ENOSYS\n \n \tPROT_NONE = C.PROT_NONE\n \tPROT_READ = C.PROT_READ", "additions": 1, "deletions": 0, "language": "Go" }, { "path": ...
2025-09-18T15:43:42
denoland/deno
6344dcffad919381b2d5ad77c906ce555ae75ed1
e2889e01f07161b92c4be81e5c0115d3790bd3be
fix(ext/node): make some `os` exported properties read only (#30374) These only occurs when importing using `require('os')`, since ES module imports already make it non-writeable. Changes are based on Node.js original implementation [here](https://github.com/nodejs/node/blob/591ba692bfe30408e6a67397e7d18bfa1b9c3561/li...
[ { "path": "ext/node/polyfills/os.ts", "patch": "@@ -38,7 +38,12 @@ import { os } from \"ext:deno_node/internal_binding/constants.ts\";\n import { osUptime } from \"ext:deno_os/30_os.js\";\n import { Buffer } from \"ext:deno_node/internal/buffer.mjs\";\n import { primordials } from \"ext:core/mod.js\";\n-con...
2025-08-12T08:21:31
vuejs/vue
4078ce9c58830fecff095ab96dc41693377794dd
35f145cfc10b6101c1b0c10d348520d367031619
fix #4041, warn overriding Vue's internal methods (#4111) * fix #4041, warn overriding Vue's internal methods * prefer concise warning message
[ { "path": "src/core/instance/state.js", "patch": "@@ -21,6 +21,8 @@ import {\n noop\n } from '../util/index'\n \n+import BuiltinVue from '../index'\n+\n export function initState (vm: Component) {\n vm._watchers = []\n initProps(vm)\n@@ -143,12 +145,16 @@ function initMethods (vm: Component) {\n if ...
2016-11-04T11:44:47
mrdoob/three.js
08d5412aa0bc5fe74c2f7b0305d6f5570e50961e
18895132c1348bcb4719fed1bef99bb0314060af
TSL: Introduce `node.toTexture()` and `rtt()` (#28773) * TextureNode: Fix analyze reference * Add RTTNode * rgbShift: add `.toTexture()` and updated example * Update GaussianBlurNode.js * add procedural texture * Update AnamorphicNode.js * update imports * update build for now * update build ...
[ { "path": "build/three.webgpu.js", "patch": "@@ -42137,6 +42137,7 @@ class TextureNode extends UniformNode {\n \tsetup( builder ) {\n \n \t\tconst properties = builder.getNodeProperties( this );\n+\t\tproperties.referenceNode = this.referenceNode;\n \n \t\t//\n \n@@ -45830,7 +45831,7 @@ const viewportBottom...
2024-07-01T09:08:48
golang/go
a58afe44fa3be498e213bafa77455ffdfe5e23e2
3203a5da290753e5c7aceb12f41f06b272356bd0
net: fix testHookCanceledDial race Loading and calling testHookCanceledDial in the function passed to context.AfterFunc is racey, because the function runs in a separate goroutine, and is not synchronized with the test code that restores the original testHookCanceledDial value. We could add a channel and wait for the...
[ { "path": "src/net/fd_unix.go", "patch": "@@ -82,6 +82,9 @@ func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa sysc\n \t\t\tdefer fd.pfd.SetWriteDeadline(noDeadline)\n \t\t}\n \n+\t\t// Load the hook function synchronously to prevent a race\n+\t\t// with test code that restores the ...
2025-09-16T20:25:53
denoland/deno
e2889e01f07161b92c4be81e5c0115d3790bd3be
93d0cff559217be75023b3cb900bc91533a9872c
fix: upgrade deno_core to 0.355.0 (#30352)
[ { "path": "Cargo.lock", "patch": "@@ -1848,9 +1848,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.354.0\"\n+version = \"0.355.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0cfe32c94bf6e813fc2ca43297f4b889f4e48936ca19a13e3b44035831afc2b...
2025-08-11T09:12:43
vuejs/vue
35f145cfc10b6101c1b0c10d348520d367031619
bc455352a3dd95bc7c5789feb4d7e969427351d4
Update vue.d.ts (#4105) fix typo.
[ { "path": "types/vue.d.ts", "patch": "@@ -7,7 +7,7 @@ import {\n WatchHandler,\n DirectiveOptions,\n DirectiveFunction\n-} from \"./options.d\";\n+} from \"./options\";\n import { VNode, VNodeData, VNodeChildren } from \"./vnode\";\n import { PluginFunction, PluginObject } from \"./plugin\";\n ", ...
2016-11-04T00:37:20
golang/go
3203a5da290753e5c7aceb12f41f06b272356bd0
8ca209ec3962874ad1c15c22c86293edf428c284
net/http: avoid connCount underflow race Remove a race condition in counting the number of connections per host, which can cause a connCount underflow and a panic. The race occurs when: - A RoundTrip call attempts to use a HTTP/2 roundtripper (pconn.alt != nil) and receives an isNoCachedConn error. The call re...
[ { "path": "src/net/http/transport.go", "patch": "@@ -1382,7 +1382,10 @@ func (w *wantConn) cancel(t *Transport) {\n \tw.done = true\n \tw.mu.Unlock()\n \n-\tif pc != nil {\n+\t// HTTP/2 connections (pc.alt != nil) aren't removed from the idle pool on use,\n+\t// and should not be added back here. If the pco...
2025-09-15T22:18:57
mrdoob/three.js
af4898d83d7404678232b26013ee8b0d9771209a
9d5853b585b02db19d7c4dffe3d59e244da0b50d
Node: Add `FilmNode`. (#28770) * Node: Add `FilmNode`. * E2E: Update screenshot. * FilmNode: Fix grayscale, use `intensityNode`. * E2E: Add example to exception list. * Update FilmNode.js * cleanup * E2E: Update screenshot. * Update FilmNode.js --------- Co-authored-by: sunag <sunagbrasil@gm...
[ { "path": "examples/misc_controls_fly.html", "patch": "@@ -30,7 +30,8 @@\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n-\t\t\t\t\t\"three\": \"../build/three.module.js\",\n+\t\t\t\t\t\"three\": \"../build/three.webgpu.js\",\n+\t\t\t\t\t\"three/tsl\": \"../build/three.webgpu.js\",\n \...
2024-06-30T21:52:38
vuejs/vue
d9efc6a92b54547869f20040a47fd0bf07024b9a
887ec90d1484599398ffdd17df9f088d6cc6800f
clone components hash to avoid webpack 2 immutable export (fix #4062)
[ { "path": "src/core/util/options.js", "patch": "@@ -200,6 +200,7 @@ const defaultStrat = function (parentVal: any, childVal: any): any {\n function normalizeComponents (options: Object) {\n if (options.components) {\n const components = options.components\n+ const normalized = options.components = ...
2016-11-03T20:23:05
denoland/deno
62bb429cbf0d02b9cd1d50cedbaa031587df74e4
9371d7bcf32cc0915876bf816f3c425df9810708
fix(ext/node): accept `base64url` encoding on StringDecoder (#30366) Also remove a duplicated `normalizedEncoding` function. These node compatibility tests are now passing: - [test-string-decoder-end.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-string-decoder-end.js) - [test-string-decoder-fuzz.j...
[ { "path": "ext/node/lib.rs", "patch": "@@ -619,7 +619,7 @@ deno_core::extension!(deno_node,\n \"internal/http2/util.ts\",\n \"internal/idna.ts\",\n \"internal/net.ts\",\n- \"internal/normalize_encoding.mjs\",\n+ \"internal/normalize_encoding.ts\",\n \"internal/options.ts\",\n \"int...
2025-08-10T13:19:14
golang/go
8ca209ec3962874ad1c15c22c86293edf428c284
3032894e045fd3628198061a44c56d4a1fb73d93
context: don't return a non-nil from Err before Done is closed The Context.Err documentation states that it returns nil if the context's done channel is not closed. Fix a race condition introduced by CL 653795 where Err could return a non-nil error slightly before the Done channel is closed. No impact on Err performa...
[ { "path": "src/context/context.go", "patch": "@@ -463,6 +463,8 @@ func (c *cancelCtx) Done() <-chan struct{} {\n func (c *cancelCtx) Err() error {\n \t// An atomic load is ~5x faster than a mutex, which can matter in tight loops.\n \tif err := c.err.Load(); err != nil {\n+\t\t// Ensure the done channel has ...
2025-09-18T18:15:47
mrdoob/three.js
d7f8eb282529c29e8395753c76ffe343c7add5b8
15bb480ee96d259b7a905d55914284b1c3bd7b6d
fix example with new webgpu build (#28766)
[ { "path": "examples/webgpu_refraction.html", "patch": "@@ -15,19 +15,17 @@\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n-\t\t\t\t\t\"three\": \"../build/three.module.js\",\n-\t\t\t\t\t\"three/addons/\": \"./jsm/\",\n-\t\t\t\t\t\"three/nodes\": \"./jsm/nodes/Nodes.js\"\n+\t\t\t\t\t\"...
2024-06-30T13:03:52
vuejs/vue
887ec90d1484599398ffdd17df9f088d6cc6800f
5a4c1d7f70f96bb1ebf47c10c0f420d2ed9d5584
fix RenderContext (#4099)
[ { "path": "types/options.d.ts", "patch": "@@ -55,7 +55,7 @@ export interface FunctionalComponentOptions {\n export interface RenderContext {\n props: any;\n children: VNode[];\n- slots: any;\n+ slots(): any;\n data: VNodeData;\n parent: Vue;\n }", "additions": 1, "deletions": 1, "langu...
2016-11-03T17:07:07
golang/go
d9751166a6872e05afee5087cee2f360344bd2f9
4eb5c6e07b56b75033d98941c8fadd3304ee4965
[dev.simd] cmd/compile: handle rematerialized op for incompatible reg constraint This CL fixes an issue raised by contributor dominikh@. Change-Id: I941b330a6ba6f6c120c69951ddd24933f2f0b3ec Reviewed-on: https://go-review.googlesource.com/c/go/+/704056 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.i...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -2576,7 +2576,26 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\tx = v.copyInto(e.p...
2025-09-16T03:27:41
denoland/deno
9371d7bcf32cc0915876bf816f3c425df9810708
68297b5f10f8dd2df0fcc5c21dd2513292d0f74b
fix(ext/node): handle large buffer correctly (#30369) Previously, Deno throws error when creating `Buffer.allocUnsafe` or `Buffer.allocUnsafeSlow` with size of `2**31` where that's not the case with Node.js. The changes allow these tests to pass: - [test-buffer-large-size-buffer-alloc-unsafe-slow.js](https://github.c...
[ { "path": "ext/node/ops/buffer.rs", "patch": "@@ -156,7 +156,10 @@ pub fn op_node_decode_utf8<'a>(\n \n #[derive(Debug, thiserror::Error, deno_error::JsError)]\n enum BufferError {\n- #[error(\"String too long\")]\n+ #[error(\n+ \"Cannot create a string longer than 0x{:x} characters\",\n+ v8::String...
2025-08-10T12:02:43
vuejs/vue
e2a361a052dfdfb3f531e9a8e26b12d48309f6b9
ec824be88e9bc71b31e5c4a43f80d921674dca66
forgivingly handle < inside template plain text (fix #4012)
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -91,7 +91,7 @@ export function parseHTML (html, options) {\n last = html\n // Make sure we're not in a script or style element\n if (!lastTag || !isSpecialTag(lastTag, options.sfc, stack)) {\n- const textEnd = html.indexOf('<')\n+...
2016-11-03T04:53:49
mrdoob/three.js
2c13adcb7d526853439f7c19bd8882f41da7fb83
6e663439939042ba7cf04c59e57d1643cad5f706
WebGPURenderer: Build - `three.webgpu.js` (#28650) * webgpu build * revision * cleanup * Restore USDZLoader * update * puppeteer: added `three.webgpu` build support * update IESSpotLight * move to src and revision * cleanup * fix test-circular-deps test * fix lint * revision * clean...
[ { "path": "examples/jsm/lines/webgpu/Line2.js", "patch": "@@ -0,0 +1,20 @@\n+import { LineSegments2 } from './LineSegments2.js';\n+import { LineGeometry } from '../LineGeometry.js';\n+\n+import { Line2NodeMaterial } from 'three';\n+\n+class Line2 extends LineSegments2 {\n+\n+\tconstructor( geometry = new Li...
2024-06-30T09:27:28
mrdoob/three.js
6e663439939042ba7cf04c59e57d1643cad5f706
3b935a419569f497bcc99dd8ef698a938581d343
Examples: Add `webgpu_refraction`. (#28761) * Node: Add `RefractorNode`. * E2E: Add example to exception list. * Examples: Simplify refraction demo. * Move verticalRefractor to backdropNode ---------
[ { "path": "examples/files.json", "patch": "@@ -373,6 +373,7 @@\n \t\t\"webgpu_postprocessing_sobel\",\n \t\t\"webgpu_postprocessing\",\n \t\t\"webgpu_reflection\",\n+\t\t\"webgpu_refraction\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",", "additions": 1, "deletions": ...
2024-06-30T04:30:52
vuejs/vue
ec824be88e9bc71b31e5c4a43f80d921674dca66
09f9783943613ee732c5b45951907fd069322f7d
fix v-once inside v-for (fix #3964)
[ { "path": "flow/compiler.js", "patch": "@@ -117,6 +117,7 @@ declare type ASTElement = {\n \n forbidden?: true;\n once?: true;\n+ onceProcessed?: boolean;\n wrapData?: (code: string) => string;\n }\n ", "additions": 1, "deletions": 0, "language": "JavaScript" }, { "path": "flow/com...
2016-11-03T02:34:36
golang/go
443b7aeddb82d90345b8e7c8a4ef7c145dac7ce4
bdd30e25caa0b69e335ba1f1f48566924850fa4b
[dev.simd] cmd/compile, simd/_gen: make rewrite rules consistent on CPU Features The previous CL left a bug in the xed parser so that the generator can generate rules rewriting an AVX instruction to AVX512 instruction. This CL fixes that. Change-Id: I0df7e7dc6c936ce7add24a757ce7f44a15917fef Reviewed-on: https://go-r...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1397,110 +1397,50 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VSQRTPDMasked512load:\n \t\tp = simdVkvload(s, v)\n \n-\tcase ssa.OpAMD64VADDPS128load,\n-\t\tssa.OpAMD64VADDPS256load,\n-\t\tssa.OpAMD64VADDP...
2025-09-12T18:45:39
mrdoob/three.js
3b935a419569f497bcc99dd8ef698a938581d343
2492ea8e153f7badbd3937d4dafab7b362d65b86
SimplifyModifier: Fix missing import (#28763)
[ { "path": "examples/jsm/modifiers/SimplifyModifier.js", "patch": "@@ -1,5 +1,6 @@\n import {\n \tBufferGeometry,\n+\tColor,\n \tFloat32BufferAttribute,\n \tVector2,\n \tVector3,\n@@ -81,7 +82,7 @@ class SimplifyModifier {\n \n \t\t\tif ( colorAttribute ) {\n \n-\t\t\t\tcol = new THREE.Color().fromBufferAttr...
2024-06-29T20:39:24
denoland/deno
56d6a7489422dcd8e93cad7ddc2d8556d2260981
a17c53cfe4f22ed3996714e66f66ba27060c44d9
fix: upgrade @node/types to 24 (#30343) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/tsc/97_ts_host.js", "patch": "@@ -891,8 +891,10 @@ const setTypesNodeIgnorableNames = new Set([\n \"BroadcastChannel\",\n \"btoa\",\n \"ByteLengthQueuingStrategy\",\n+ \"CloseEvent\",\n \"CompressionStream\",\n \"CountQueuingStrategy\",\n+ \"CustomEvent\",\n \"DecompressionStrea...
2025-08-07T16:08:47
vuejs/vue
09f9783943613ee732c5b45951907fd069322f7d
cb1bb75b5827f7335bce9d097f995226235ecf2b
fix global mixin + export constructor in vue-loader (fix vue-loader#433)
[ { "path": "src/core/instance/init.js", "patch": "@@ -66,10 +66,13 @@ export function resolveConstructorOptions (Ctor: Class<Component>) {\n if (Ctor.super) {\n const superOptions = Ctor.super.options\n const cachedSuperOptions = Ctor.superOptions\n+ const extendOptions = Ctor.extendOptions\n ...
2016-11-02T22:51:09
golang/go
78ef487a6f936a39e9d4ebf66ac421bb1244a7a9
77aac7bb75edc222dd7b350e8b76c20c79da5f43
cmd/compile: fix the issue of shift amount exceeding the valid range Fixes #75479 Change-Id: I362d3e49090e94f91a840dd5a475978b59222a00 Reviewed-on: https://go-review.googlesource.com/c/go/+/704135 Reviewed-by: Mark Freeman <markfreeman@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.g...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules", "patch": "@@ -717,7 +717,8 @@\n (SRLVconst [rc] (MOVBUreg x)) && rc >= 8 => (MOVVconst [0])\n \n // (x + x) << c -> x << c+1\n-((SLLV|SLL)const [c] (ADDV x x)) => ((SLLV|SLL)const [c+1] x)\n+((SLLV|SLL)const <t> [c] (ADDV x x)) && c < t.Size() * 8...
2025-09-16T07:27:42
mrdoob/three.js
558daad8454fddb792fa23c757c96b5541f8e298
0286e813d01f8ba7e698d3aabf408fe748416f13
SSAOPass: Fix debug output. (#28762)
[ { "path": "examples/jsm/postprocessing/SSAOPass.js", "patch": "@@ -202,29 +202,29 @@ class SSAOPass extends Pass {\n \n \t\t\t\tthis.copyMaterial.uniforms[ 'tDiffuse' ].value = this.ssaoRenderTarget.texture;\n \t\t\t\tthis.copyMaterial.blending = NoBlending;\n-\t\t\t\tthis.renderPass( renderer, this.copyMat...
2024-06-29T16:07:18
denoland/deno
a17c53cfe4f22ed3996714e66f66ba27060c44d9
e282367f6762ef56804f4593aa668ea7f7e1f2c3
fix: reduce progress bar flickering (#30349) Also goes back to showing a single line instead of 3 lines.
[ { "path": "cli/factory.rs", "patch": "@@ -736,6 +736,7 @@ impl CliFactory {\n self.npm_installer_if_managed().await?.cloned(),\n self.npm_resolver().await?.clone(),\n self.resolver_factory()?.parsed_source_cache().clone(),\n+ self.text_only_progress_bar().clone...
2025-08-07T15:13:29
vuejs/vue
cb1bb75b5827f7335bce9d097f995226235ecf2b
4b8eb75c7a5544a1f65ebd679fd89639208d5976
fix global mixin props (fix #3957)
[ { "path": "src/core/instance/init.js", "patch": "@@ -24,7 +24,7 @@ export function initMixin (Vue: Class<Component>) {\n initInternalComponent(vm, options)\n } else {\n vm.$options = mergeOptions(\n- resolveConstructorOptions(vm),\n+ resolveConstructorOptions(vm.constructor),\n...
2016-11-02T19:50:57
golang/go
465b85eb760bfdb114f6b6ebccf374aba3977929
909704b85e64b156f81e78bcfd1fbd9b032c089a
runtime: fix CheckScavengedBitsCleared with randomized heap base We cannot easily determine the base address of the arena we added the random padding pages to, which can cause confusing TestScavengedBitsCleared failures when the arena we padded does not have the lowest address of all of the arenas. Instead of attempt...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -1122,8 +1122,6 @@ func CheckScavengedBitsCleared(mismatches []BitsMismatch) (n int, ok bool) {\n \t\t// Lock so that we can safely access the bitmap.\n \t\tlock(&mheap_.lock)\n \n-\t\theapBase := mheap_.pages.inUse.ranges[0].base.addr()\n-\t\tsecondArena...
2025-09-17T21:04:56
mrdoob/three.js
0286e813d01f8ba7e698d3aabf408fe748416f13
d951153e19bdf89a7c09990bd875b0811d8081e6
WebGPURenderer: Restore instanced multi-draw API and add WebGPU support (#28759) * WebGPURenderer: Restore instanced multi-draw API and WebGPU compatibility * fix firefox since gl_drawID is not mandatory for custom usage
[ { "path": "examples/jsm/renderers/webgl/WebGLBackend.js", "patch": "@@ -704,7 +704,11 @@ class WebGLBackend extends Backend {\n \n \t\tif ( object.isBatchedMesh ) {\n \n-\t\t\tif ( ! this.hasFeature( 'WEBGL_multi_draw' ) ) {\n+\t\t\tif ( object._multiDrawInstances !== null ) {\n+\n+\t\t\t\trenderer.renderMu...
2024-06-29T09:14:06
golang/go
909704b85e64b156f81e78bcfd1fbd9b032c089a
3db5979e8cc4cc86c4fefb4cecc5a2041b32404d
encoding/json/v2: fix typo in comment Use the correct spelling of the Gregorian calendar. Change-Id: I7e1d2974d38d5d3ded64f98852ee726c7b84be22 Reviewed-on: https://go-review.googlesource.com/c/go/+/704595 Reviewed-by: Joseph Tsai <joetsai@digital-static.net> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc...
[ { "path": "src/encoding/json/v2/arshal_time.go", "patch": "@@ -465,7 +465,7 @@ func appendDurationISO8601(b []byte, d time.Duration) []byte {\n }\n \n // daysPerYear is the exact average number of days in a year according to\n-// the Gregorian calender, which has an extra day each year that is\n+// the Greg...
2025-09-17T09:55:02
vuejs/vue
4b8eb75c7a5544a1f65ebd679fd89639208d5976
4314f45022c79dae11f46720b899c453abb1fc6f
fix coverage
[ { "path": "src/platforms/web/runtime/class-util.js", "patch": "@@ -1,14 +1,12 @@\n /* @flow */\n \n-import { warn } from 'core/util/index'\n-\n /**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\n export function addClass (el: Element, cls: ?strin...
2016-11-01T19:53:36
mrdoob/three.js
d951153e19bdf89a7c09990bd875b0811d8081e6
3b3c00165044b44b76a3d452fd4ed973348c680b
WebGPURenderer: BatchMesh support for Instanced rendering with sorting, frustum culling (#28753) * WebGPURenderer: Full BatchMesh Support in both backend * cleanup * fix circular deps * webgpu wip * cleanup webgup * webgpu * cleanup * cleanup * cleanup * add the ability to specify nodeType i...
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -11,7 +11,7 @@ export { default as BypassNode, bypass } from './core/BypassNode.js';\n export { default as CacheNode, cache } from './core/CacheNode.js';\n export { default as ConstNode } from './core/ConstNode.js';\n export { default as ContextNode, con...
2024-06-29T07:56:15
denoland/deno
53510f874c3e6450528dc5a02ca00525e9ac4ab5
e27d025dc85bdabfdbcec7649cc8cca86b2def2d
fix(io): do not autoClose stdin readable stream (#30345) Fixes https://github.com/denoland/deno/issues/28867
[ { "path": "ext/io/12_io.js", "patch": "@@ -167,7 +167,7 @@ class Stdin {\n \n get readable() {\n if (this.#readable === undefined) {\n- this.#readable = readableStreamForRid(this.#rid);\n+ this.#readable = readableStreamForRid(this.#rid, false);\n }\n return this.#readable;\n }", ...
2025-08-07T12:57:56
vuejs/vue
0cd1489e68891e4ca532ce7299d09e8af5ae3f52
4a3b4c4a43dedcd9460ebddd56488943df8fca4e
.number modifier should work with select, radio, checkbox (fix #4018) (#4022) * support number modifier in select, radio, checkbox * add test case * add ASTModifier type to specify modifiers type * fix typo * keep code consistent
[ { "path": "flow/compiler.js", "patch": "@@ -41,9 +41,11 @@ declare type ModuleOptions = {\n staticKeys?: Array<string>; // AST properties to be considered static\n }\n \n+declare type ASTModifiers = { [key: string]: boolean }\n+\n declare type ASTElementHandler = {\n value: string;\n- modifiers: ?{ [ke...
2016-11-01T15:50:22
golang/go
6a8dbbecbfc32650841e737271384ffaba433292
bffe7ad9f11b874429d6c2561b0383e931502164
path/filepath: fix EvalSymlinks to return ENOTDIR on plan9 CL 155597 added a test to check EvalSymlinks returns ENOTDIR for existing path which ends with a slash. CL 404954 added a separate evalSymlinks implementation for plan9, which has a kludge to ensure the ENOTDIR is returned in the above case. Apparently the a...
[ { "path": "src/path/filepath/symlink_plan9.go", "patch": "@@ -16,8 +16,8 @@ func evalSymlinks(path string) (string, error) {\n \t\t// Check validity of path\n \t\t_, err := os.Lstat(path)\n \t\tif err != nil {\n-\t\t\t// Return the same error value as on other operating systems\n-\t\t\tif strings.HasSuffix(...
2025-09-03T19:48:44
mrdoob/three.js
b4dfdf8e1674a3400d3e0bc1ec3c091d76640cc6
a262ec1a53a07c03b75ec54cd2845552faa67bc1
Node: Add `DotScreenNode` and `RGBShiftNode`. (#28755) * Node: Add `DotScreenNode` and `RGBShiftNode`. * Examples: Fix title in `webgpu_postprocessing`. * DotScreenNode: Simplify TSL. * E2E: Add example to exception list.
[ { "path": "examples/files.json", "patch": "@@ -371,6 +371,7 @@\n \t\t\"webgpu_postprocessing_anamorphic\",\n \t\t\"webgpu_postprocessing_dof\",\n \t\t\"webgpu_postprocessing_sobel\",\n+\t\t\"webgpu_postprocessing\",\n \t\t\"webgpu_reflection\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",", "addition...
2024-06-28T08:25:53
mrdoob/three.js
a262ec1a53a07c03b75ec54cd2845552faa67bc1
3defc7d7520ae249d62e7c3ce9fad1af042db94a
Fix small typo in Material.dispose docs (#28750) * fix: small typo on docs/Material/dispose * get back "of"
[ { "path": "docs/api/en/materials/Material.html", "patch": "@@ -407,7 +407,7 @@ <h3>[method:undefined dispose]()</h3>\n \t\t\tmethod whenever this instance is no longer used in your app.\n \t\t</p>\n \t\t<p>\n-\t\t\tMaterial textures must be be disposed of by the dispose() method of\n+\t\t\tMaterial textures...
2024-06-27T08:53:26
vuejs/vue
a632d601476d582c612de90dfcbade1b372012ce
84918577d246619c2786b65479e5dd8ed5c6a7ae
Check and warn for falsy class names (fixes #4050) (#4051) This commit adds a check for falsy names (null or empty string) before attempting to add or remove them, to prevent a DOM exception. A warning will also be triggered if in development env.
[ { "path": "src/platforms/web/runtime/class-util.js", "patch": "@@ -1,10 +1,17 @@\n /* @flow */\n \n+import { warn } from 'core/util/index'\n+\n /**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\n-export function addClass (el: Element, cls: string...
2016-11-01T15:30:43
golang/go
594deca981f0dd4a9351569e7c3e6999838148e3
9df1a289ac64451042f6f14b7229ae5cd2217352
cmd/link: simplify PE relocations mapping The code for mapping Windows PE relocations to Go relocations was difficult to follow and contains some duplicated code. Also, it was mapping IMAGE_REL_AMD64_ADDR32 to R_PCREL instead of R_ADDR. This CL commit simplifies the code and fixes the mapping. I haven't been able to ...
[ { "path": "src/cmd/link/internal/loadpe/ldpe.go", "patch": "@@ -17,6 +17,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"io\"\n+\t\"strconv\"\n \t\"strings\"\n )\n \n@@ -348,102 +349,65 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, input *bio.Read\n \t\t\t\treturn nil, fmt.Errorf(\"relo...
2025-05-13T09:24:30
denoland/deno
0f865b474b79d27ec88007943dbc6f0b22bb2708
2b5097034798d071fe075e785f7ef7c87befd55c
fix(publish): remove incorrect `relative-package-import` diagnostic when root of workspace is package (#30333)
[ { "path": "cli/tools/publish/mod.rs", "patch": "@@ -1123,7 +1123,6 @@ fn collect_excluded_module_diagnostics(\n }\n \n if !had_excluded_specifier {\n- let mut found_outside_specifier = false;\n // ensure no path being published references another package\n // via a relative import\n for p...
2025-08-07T08:25:57
mrdoob/three.js
b508f36fe7c598b4b14e283e5e29fbc1626b3c1e
6d29751817744b28774eb428beb4a12cd95619cc
TSL: Fix analyze in `varying()` (#28746)
[ { "path": "examples/jsm/nodes/core/VaryingNode.js", "patch": "@@ -64,6 +64,14 @@ class VaryingNode extends Node {\n \n \t}\n \n+\tanalyze( builder ) {\n+\n+\t\tthis.setupVarying( builder );\n+\n+\t\treturn this.node.analyze( builder );\n+\n+\t}\n+\n \tgenerate( builder ) {\n \n \t\tconst properties = builde...
2024-06-26T04:36:22
vuejs/vue
84918577d246619c2786b65479e5dd8ed5c6a7ae
2ac581bb7f34b1ef0f35c3e6945acd630a92453e
fix problematic use of 'deprecated' in warnings (#4043)
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -399,7 +399,7 @@ function processAttrs (el) {\n if (expression) {\n warn(\n `${name}=\"${value}\": ` +\n- 'Interpolation inside attributes has been deprecated. ' +\n+ 'Interpolation inside attributes h...
2016-11-01T15:17:25
golang/go
cbdad4fc3cecbdfcee4e9d30df04916a151bfc16
c2d85eb999fcd428a1cd71ed93805cbde0c16eaa
cmd/go: check pattern for utf8 validity before call regexp.MustCompile Do not panic if the package path or the package version contains invalid UTF-8 characters. Fixes #75251 Change-Id: Ib787e74277cf814253857b911d378ea5e53d8824 Reviewed-on: https://go-review.googlesource.com/c/go/+/700815 Reviewed-by: Michael Matloo...
[ { "path": "src/cmd/go/internal/modget/query.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"regexp\"\n \t\"strings\"\n \t\"sync\"\n+\t\"unicode/utf8\"\n \n \t\"cmd/go/internal/base\"\n \t\"cmd/go/internal/gover\"\n@@ -285,6 +286,11 @@ func reportError(q *query, err error) {\n \t// TODO(bcmills): Use errors....
2025-09-04T01:17:26
denoland/deno
ff8bdcd987cdc484c19d4b1fb611dbb4986b88d8
038d5a5331abbbdb1c951dc7c6e8e7400671f4e2
fix(compile): ensure `Deno.build.standalone` is set in workers (#30335) Closes https://github.com/denoland/deno/issues/30318
[ { "path": "runtime/js/99_main.js", "patch": "@@ -1025,7 +1025,11 @@ function bootstrapWorkerRuntime(\n 6: argv0,\n 7: nodeDebug,\n 13: otelConfig,\n+ 15: standalone,\n } = runtimeOptions;\n+\n+ denoNs.build.standalone = standalone;\n+\n closeOnIdle = runtimeOptions[14];\n \...
2025-08-06T14:12:57
mrdoob/three.js
6d29751817744b28774eb428beb4a12cd95619cc
6f40b10aa4170c6c43d5d3ef2418a3bc04561f61
WebGPURenderer: Fix Light+NormalMaterial (#28747) * fix lights=false * cleanup
[ { "path": "examples/jsm/nodes/materials/MeshMatcapNodeMaterial.js", "patch": "@@ -14,10 +14,10 @@ class MeshMatcapNodeMaterial extends NodeMaterial {\n \n \t\tsuper();\n \n-\t\tthis.isMeshMatcapNodeMaterial = true;\n-\n \t\tthis.lights = false;\n \n+\t\tthis.isMeshMatcapNodeMaterial = true;\n+\n \t\tthis.se...
2024-06-26T04:36:03
vuejs/vue
2ac581bb7f34b1ef0f35c3e6945acd630a92453e
b51b9eae4d427d0a909aff8c5f08575c450711a1
SSR: eliminate closure in render.js implementation eliminate closure fix multiple render instances and memory leakage fix eslint magically fix flow typing add multiple render stream test
[ { "path": "flow/options.js", "patch": "@@ -57,7 +57,9 @@ declare type ComponentOptions = {\n _propKeys?: Array<string>;\n _parentVnode?: VNode;\n _parentListeners?: ?Object;\n- _renderChildren?: ?VNodeChildren\n+ _renderChildren?: ?VNodeChildren;\n+ _componentTag: ?string;\n+ _scopeId: ?string;\n ...
2016-10-20T17:34:06
golang/go
c2d85eb999fcd428a1cd71ed93805cbde0c16eaa
ac82fe68aaec797a9677171b00241fba57f057bc
cmd/go: disable cgo by default if CC unset and DefaultCC doesn't exist CL 621995 disrupted the behavior introduced by CL 450739, now restore it. Fixes #75340 Change-Id: Icd1a0eb970876995f9446e0547ceb9e78990f6ed Reviewed-on: https://go-review.googlesource.com/c/go/+/703555 LUCI-TryBot-Result: Go LUCI <golang-scoped@...
[ { "path": "src/cmd/go/internal/cfg/cfg.go", "patch": "@@ -145,7 +145,8 @@ func defaultContext() build.Context {\n \tif buildcfg.DefaultCGO_ENABLED == \"1\" {\n \t\tdefaultCgoEnabled = true\n \t} else if buildcfg.DefaultCGO_ENABLED == \"0\" {\n-\t} else if runtime.GOARCH == ctxt.GOARCH && runtime.GOOS == ctx...
2025-09-13T18:32:24
mrdoob/three.js
0d5e6d68526fe9be394e09e248a2b2feca08db2f
eac2954d5a2e9c66f693c0cc554d9fb5232dc5e9
WebGPURenderer: Read/Write Only Storage Buffer Creation (#28435) * add writable * sketch * changes * Working solution * run linter * syntax fix * fixed formatting * add writable * sketch * changes * Working solution * run linter * syntax fix * fixed formatting * re-add storage...
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -103,7 +103,7 @@ export { default as SceneNode, backgroundBlurriness, backgroundIntensity } from\n export { default as StorageBufferNode, storage, storageObject } from './accessors/StorageBufferNode.js';\n export * from './accessors/TangentNode.js';\n ex...
2024-06-25T19:06:17
vuejs/vue
3fef65c742ca6fa4773206ee26789d3ad3499cbe
cca4469c38325ed2ddd62f8705315ad8b8265677
fix vuejsjob links
[ { "path": "BACKERS.md", "patch": "@@ -48,7 +48,7 @@ You can join them in supporting Vue.js development by [pledging on Patreon](htt\n <img width=\"240px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/2mhost.png\">\n </a>\n \n-<a href=\"https://vuejobs.com/?ref_s...
2016-10-31T17:06:41
golang/go
ac82fe68aaec797a9677171b00241fba57f057bc
0b26678db2d042c6273c435df5cb5a37e7e04994
bytes,strings: remove reference to non-existent SplitFunc Fixes #75462 Updates #72841 Change-Id: Ie2cbbdb031578a3138ecc6e60c0025807f1990e6 Reviewed-on: https://go-review.googlesource.com/c/go/+/703675 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Alan Donovan <...
[ { "path": "src/bytes/bytes.go", "patch": "@@ -508,7 +508,7 @@ func Fields(s []byte) [][]byte {\n // It splits the slice s at each run of code points c satisfying f(c) and\n // returns a slice of subslices of s. If all code points in s satisfy f(c), or\n // len(s) == 0, an empty slice is returned. Every elem...
2025-09-14T15:24:57
denoland/deno
038d5a5331abbbdb1c951dc7c6e8e7400671f4e2
01710669785be537554d753c8a1bb1afa9d95758
fix(ext/node): avoid panic when `crypto.randomInt` has no arguments (#30314) Closes https://github.com/denoland/deno/issues/30313
[ { "path": "ext/node/polyfills/internal/crypto/_randomInt.ts", "patch": "@@ -2,6 +2,7 @@\n \n import { op_node_random_int } from \"ext:core/ops\";\n import { primordials } from \"ext:core/mod.js\";\n+import { ERR_INVALID_ARG_TYPE } from \"ext:deno_node/internal/errors.ts\";\n const {\n Error,\n MathCeil,...
2025-08-05T15:09:39
mrdoob/three.js
eac2954d5a2e9c66f693c0cc554d9fb5232dc5e9
eb6d44f5a201705d89c5e5917a80d904c4623b76
TSL: BufferAttributeNode - Fix setUsage on non-InterleavedBuffer (#28742) * TSL: Fix setUsage on non-interleavedBuffer attributes * test fix pup * cleanup ---------
[ { "path": "examples/jsm/nodes/accessors/BufferAttributeNode.js", "patch": "@@ -126,6 +126,12 @@ class BufferAttributeNode extends InputNode {\n \n \t\tthis.usage = value;\n \n+\t\tif ( this.attribute && this.attribute.isBufferAttribute === true ) {\n+\n+\t\t\tthis.attribute.usage = value;\n+\n+\t\t}\n+\n \t...
2024-06-25T18:28:48
vuejs/vue
0d35aa5f217ec612165a8e7e1b5f636d222a6e4e
defd45ccbadb7e0e347b1999d48fe354998ba37a
Fix links on vue-template-compiler README (#4021)
[ { "path": "packages/vue-template-compiler/README.md", "patch": "@@ -38,7 +38,7 @@ The optional `options` object can contain the following:\n \n - `modules`\n \n- An array of compiler modules. For details on compiler modules, refer to its [type definition](https://github.com/vuejs/vue/blob/dev/flow/compiler...
2016-10-24T12:52:11
mrdoob/three.js
4feb1372ea3bd32d33a9a03c2f58ff225a07f5d2
1d3c9bd0ac15d39b243b2f5aebfe85b3b33c033d
Addons: Add `DepthOfFieldNode`. (#28740) * Addons: Add `DepthOfFieldNode`. * DepthOfFieldNode: Fix runtime error. * E2E: Update screenshot. * Examples: Align code to previous demo. * Examples: Use instancing in DOF demo.
[ { "path": "examples/files.json", "patch": "@@ -369,6 +369,7 @@\n \t\t\"webgpu_portal\",\n \t\t\"webgpu_postprocessing_afterimage\",\n \t\t\"webgpu_postprocessing_anamorphic\",\n+\t\t\"webgpu_postprocessing_dof\",\n \t\t\"webgpu_postprocessing_sobel\",\n \t\t\"webgpu_reflection\",\n \t\t\"webgpu_rtt\",", ...
2024-06-25T08:11:05
golang/go
0b26678db2d042c6273c435df5cb5a37e7e04994
e2cfc1eb3affe8bcdfeca4a9f0a2d7902dbb940f
cmd/compile: fix mips zerorange implementation A +8 was missed when simplifying this code in CL 700936. Fixes #75477 Change-Id: Ic7b83322dc1373432b44f0b63607141195220380 Reviewed-on: https://go-review.googlesource.com/c/go/+/703937 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scope...
[ { "path": "src/cmd/compile/internal/mips/ggen.go", "patch": "@@ -5,6 +5,7 @@\n package mips\n \n import (\n+\t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/objw\"\n \t\"cmd/compile/internal/types\"\n \t\"cmd/internal/obj\"\n@@ -17,7 +18,7 @@ func zerorange(pp *objw.Progs, p *obj.Prog, off, cnt in...
2025-09-16T02:59:22
mrdoob/three.js
05b5c20b28b1d3f2781396e9696fe8ea9606c797
172f0c6642e18290c24f3f0abbe1ee9419ad4bcd
WebGPURenderer: Fix storage buffer example (#28729) * fix storage buffer webgpu * bind groups cache per renderer * Revert "bind groups cache per renderer" This reverts commit 6fe58cce68d5d7e7d5a21b027164954ecaf42302.
[ { "path": "examples/webgpu_storage_buffer.html", "patch": "@@ -78,11 +78,11 @@\n \n \t\t\t\t// texture\n \n-\t\t\t\tconst size = 1024; // non power of two buffer size is not well supported in WebGPU\n+\t\t\t\tconst size = 32; // non power of two buffer size is not well supported in WebGPU\n+\t\t\t\tconst ba...
2024-06-24T02:27:20
denoland/deno
01710669785be537554d753c8a1bb1afa9d95758
678d118bdcbad26a5bea5fdad09b40e0ada8e128
fix(lsp): use referrer compiler options for node_modules files (#30275)
[ { "path": "cli/lsp/completions.rs", "patch": "@@ -864,6 +864,7 @@ mod tests {\n use std::collections::HashMap;\n \n use deno_core::resolve_url;\n+ use deno_resolver::deno_json::CompilerOptionsKey;\n use pretty_assertions::assert_eq;\n use test_util::TempDir;\n \n@@ -907,7 +908,11 @@ mod tests {\n ...
2025-08-05T14:33:53
vuejs/vue
defd45ccbadb7e0e347b1999d48fe354998ba37a
7dc38dea27ba7b99d8cb56e1cbb9be0659e217f7
Typo fix: optimizier -> optimizer (#4015)
[ { "path": "src/compiler/optimizer.js", "patch": "@@ -8,7 +8,7 @@ let isPlatformReservedTag\n const genStaticKeysCached = cached(genStaticKeys)\n \n /**\n- * Goal of the optimizier: walk the generated template AST tree\n+ * Goal of the optimizer: walk the generated template AST tree\n * and detect sub-trees...
2016-10-24T12:25:07
golang/go
61dc7fe30d16b920888123390c6965614e491a66
ca0e03560df7279bc307da08db7237beb32b0d99
iter: document that calling yield after terminated range loop causes runtime panic The existing documentation isn't clear about the behaviour of when the iterator function ignores the value returned from the yield function. The changes here update the documentation, to explicitly explain that. Change-Id: I24a8198c3d...
[ { "path": "src/iter/iter.go", "patch": "@@ -28,6 +28,8 @@ or index-value pairs.\n Yield returns true if the iterator should continue with the next\n element in the sequence, false if it should stop.\n \n+Yield panics if called after it returns false.\n+\n For instance, [maps.Keys] returns an iterator that p...
2025-09-15T17:04:04
mrdoob/three.js
f6c9ce62a5374a9611afab04f03b059bf5fb4911
a519e0e76253e62905b691ce9fe03b5635293dfd
WebGPURenderer: Fix StorageBuffer fallback in WebGLBackend (#28722)
[ { "path": "examples/jsm/renderers/webgl/nodes/GLSLNodeBuilder.js", "patch": "@@ -1,4 +1,4 @@\n-import { MathNode, GLSLNodeParser, NodeBuilder, UniformNode, vectorComponents } from '../../../nodes/Nodes.js';\n+import { MathNode, GLSLNodeParser, NodeBuilder, TextureNode, vectorComponents } from '../../../node...
2024-06-22T12:44:05
denoland/deno
678d118bdcbad26a5bea5fdad09b40e0ada8e128
9a1ab9849ce449b77a3dae57384347e5e0be954a
feat(ext/kv): allow specifying default path and path prefix (#30320) The `Deno.openKv()` API now checks these env vars: - `DENO_KV_DEFAULT_PATH` - if set, when no database path is specified, use the provided path. - `DENO_KV_PATH_PREFIX` - if set, prepend this to the provided database path - e.g. if `DENO_KV_PATH_PRE...
[ { "path": "ext/kv/dynamic.rs", "patch": "@@ -61,8 +61,22 @@ impl DatabaseHandler for MultiBackendDbHandler {\n async fn open(\n &self,\n state: Rc<RefCell<OpState>>,\n- path: Option<String>,\n+ mut path: Option<String>,\n ) -> Result<Self::DB, JsErrorBox> {\n+ if path.is_none() {\n+ ...
2025-08-05T14:20:08
vuejs/vue
7dc38dea27ba7b99d8cb56e1cbb9be0659e217f7
31056616627cd5be14aa9cc75a71e7c5c433f9a0
fix SFC parsing pug templates that contains "<" (fix #3973)
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -44,7 +44,23 @@ let IS_REGEX_CAPTURING_BROKEN = false\n })\n \n // Special Elements (can contain anything)\n-const isSpecialTag = makeMap('script,style', true)\n+const isScriptOrStyle = makeMap('script,style', true)\n+const hasLang = attr => attr....
2016-10-22T08:27:35
mrdoob/three.js
a519e0e76253e62905b691ce9fe03b5635293dfd
4b9c621ff38154a631026c8eb996a2786a78a6c5
WebGPURenderer: NodeMaterial - Fix `fog=false` and snow example (#28718) * NodeMaterial: Fix `fog=false` * cleanup * update filter
[ { "path": "examples/jsm/nodes/materials/NodeMaterial.js", "patch": "@@ -437,9 +437,13 @@ class NodeMaterial extends Material {\n \n \t\t// FOG\n \n-\t\tconst fogNode = builder.fogNode;\n+\t\tif ( this.fog === true ) {\n \n-\t\tif ( fogNode ) outputNode = vec4( fogNode.mix( outputNode.rgb, fogNode.colorNode ...
2024-06-21T23:01:41
vuejs/vue
31056616627cd5be14aa9cc75a71e7c5c433f9a0
5f8ae401d468694d2476890eb5f0c021e9bf2720
v-model binding with array. (fix #3958,#3979) (#3988) * fix v-model with array binding * add mutli selects test case * add test case. v-bind with array * add comments * code refactor
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -2,6 +2,7 @@\n \n import { isIE } from 'core/util/env'\n import { addHandler, addProp, getBindingAttr } from 'compiler/helpers'\n+import parseModel from 'web/util/model'\n \n let warn\n \n@@ -79,7 +80,7 @@ function genRadioModel (el: A...
2016-10-22T06:57:32
denoland/deno
9a1ab9849ce449b77a3dae57384347e5e0be954a
3cba20f254076479eaa721f11e028066152178b0
fix(ext/node): use primordials in `ext/node/polyfills/internal_binding/buffer.ts` (#30287) Towards #24236. Replaces JS builtins with equivalent primordials.
[ { "path": "ext/node/polyfills/internal_binding/buffer.ts", "patch": "@@ -1,16 +1,25 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { Encodings } from \"ext:deno_node/...
2025-08-05T13:10:45
mrdoob/three.js
7e2f8864b5851b108fee6f7bb07e4df102025ae1
73982039c5260715955fb9ae0c426a71a74810d2
fix useragent issue on ios chrome (#28712)
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -2586,10 +2586,14 @@ class GLTFParser {\n \n \t\tif ( typeof navigator !== 'undefined' ) {\n \n-\t\t\tisSafari = /^((?!chrome|android).)*safari/i.test( navigator.userAgent ) === true;\n-\t\t\tsafariVersion = isSafari ? navigator.userAgent.match( /...
2024-06-21T08:19:06
denoland/deno
5b5141056b49269d5a4d0e3ea8fd0ade066234f1
fc8622032b6c23008c1de2f3a61d9bbb049ee175
fix(ext/node): use custom allocator for brotli (#30277) Fixes https://github.com/denoland/deno/issues/30259 Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/node/ops/zlib/alloc.rs", "patch": "@@ -62,3 +62,49 @@ pub extern \"C\" fn zfree(_ptr: *mut c_void, address: *mut c_void) {\n alloc::dealloc(ptr as *mut u8, layout)\n }\n }\n+\n+pub extern \"C\" fn brotli_alloc(\n+ _opaque: *mut brotli::ffi::broccoli::c_void,\n+ size: usize,\n+) -> *mu...
2025-08-05T09:33:56
vuejs/vue
9c91190b40dd8e5ec61992e97d476af28e754de9
1a8720d6ead500eed5d40457a3e7f59fe8972472
Fix typos. (#3956)
[ { "path": "build/config.js", "patch": "@@ -30,7 +30,7 @@ const builds = {\n env: 'production',\n banner\n },\n- // Runtime+compiler standalone developement build.\n+ // Runtime+compiler standalone development build.\n 'web-standalone-dev': {\n entry: path.resolve(__dirname, '../src/entries...
2016-10-19T15:21:22
denoland/deno
fc8622032b6c23008c1de2f3a61d9bbb049ee175
55f74e809b13194f84b32a6e40cc0867f998368f
fix: make unmet peer dep error message less verbose (#30312)
[ { "path": "libs/npm_installer/resolution.rs", "patch": "@@ -1,5 +1,8 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n+use std::cell::RefCell;\n+use std::collections::BTreeMap;\n+use std::rc::Rc;\n use std::sync::Arc;\n \n use capacity_builder::StringBuilder;\n@@ -14,6 +17,7 @@ use deno_npm::r...
2025-08-05T09:31:31
mrdoob/three.js
9c00c1c1f6570dbb2485a534fae321086b2e646b
01dc3d9e798215e1fac8eecd5932edf99c866946
support all texture formats and types in `DataTextureArray.setLayerUpdate` and `CompressedTextureArray.setLayerUpdate` (#28654) * create TextureUtils * docs * use tabs instead of spaces * fix lint * use a byte view * remove typo * ensure the unit8array adheres to the byteLength of the input data sour...
[ { "path": "docs/api/en/extras/TextureUtils.html", "patch": "@@ -0,0 +1,28 @@\n+<!DOCTYPE html>\n+<html lang=\"en\">\n+\t<head>\n+\t\t<meta charset=\"utf-8\" />\n+\t\t<base href=\"../../../\" />\n+\t\t<script src=\"page.js\"></script>\n+\t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"page.css\" />\n+\t...
2024-06-20T21:13:38
vuejs/vue
1a8720d6ead500eed5d40457a3e7f59fe8972472
6d31ed255df3e6b6f97270396c04c0eef0d2802b
Fix typo in 'component' (#3978)
[ { "path": "src/core/vdom/vnode.js", "patch": "@@ -12,7 +12,7 @@ export default class VNode {\n key: string | number | void;\n componentOptions: VNodeComponentOptions | void;\n child: Component | void; // component instance\n- parent: VNode | void; // compoennt placeholder node\n+ parent: VNode | voi...
2016-10-19T14:33:17
mrdoob/three.js
291f21035382770e1d519b806d03696e8a68862c
7a50693865be57bb9de78cfd541d7d0cd5313161
Examples: Fix onWindowResize (#28706)
[ { "path": "examples/webgpu_tsl_interoperability.html", "patch": "@@ -46,8 +46,6 @@\n \n \t\t\tfunction onWindowResize() {\n \n-\t\t\t\tcamera.aspect = window.innerWidth / window.innerHeight;\n-\t\t\t\tcamera.updateProjectionMatrix();\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n \n ...
2024-06-20T08:12:34
denoland/deno
55f74e809b13194f84b32a6e40cc0867f998368f
963bc4bd8a9319c2b88fe5c59a886c0b831d7640
fix(ext/node): parse fs open options correctly (#30300) Fixes #30299 I decided to build the `OpenOptions` on the Rust side, because it's cheaper to pass integers to the op function and we can enable the fast op call. Also the tests that I added to the `config.toml` were already passing before this PR.
[ { "path": "ext/node/ops/fs.rs", "patch": "@@ -138,6 +138,55 @@ where\n Ok(())\n }\n \n+fn get_open_options(mut flags: i32, mode: u32) -> OpenOptions {\n+ let mut options = OpenOptions {\n+ mode: Some(mode),\n+ ..Default::default()\n+ };\n+\n+ if (flags & libc::O_APPEND) == libc::O_APPEND {\n+ ...
2025-08-05T09:12:22
vuejs/vue
6d31ed255df3e6b6f97270396c04c0eef0d2802b
7c9575bffe47214f339a70ba9e52770b893b8d1e
typo fix (#3963)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -22,7 +22,7 @@ export const transitionProps = {\n }\n \n // in case the child is also an abstract component, e.g. <keep-alive>\n-// we want to recrusively retrieve the real component to be rendered\n+// we want to recursively retri...
2016-10-17T09:30:22
mrdoob/three.js
7a50693865be57bb9de78cfd541d7d0cd5313161
f7d15ad7a7ba77f32c6c8f61ba81e78abc3f78d1
WebGPURenderer: optimize interleaved buffer update (#28704) * optimize: remove useless interleavedBuffer update * fix: fix webgl instance error
[ { "path": "examples/jsm/renderers/common/Geometries.js", "patch": "@@ -76,7 +76,8 @@ class Geometries extends DataMap {\n \t\tthis.info = info;\n \n \t\tthis.wireframes = new WeakMap();\n-\t\tthis.attributeVersion = new WeakMap();\n+\n+\t\tthis.attributeCall = new WeakMap();\n \n \t}\n \n@@ -170,13 +171,35 ...
2024-06-20T02:04:07
vuejs/vue
341d0a03570f548c5a2962704a4de8cda0247710
8ba420c35975583486308a55d31c1df7b195574a
fixed #3942 (#3947) * fixed #3942 * fixed #3942
[ { "path": "src/core/observer/index.js", "patch": "@@ -186,6 +186,7 @@ export function defineReactive (\n */\n export function set (obj: Array<any> | Object, key: any, val: any) {\n if (Array.isArray(obj)) {\n+ obj.length = Math.max(obj.length, key)\n obj.splice(key, 1, val)\n return val\n }"...
2016-10-17T02:43:39
golang/go
c39abe065886f62791f41240eef6ca03d452a17b
e3ed0fbe6a4c7c5e91a4a82c1bcbc96b9ac37016
runtime: fix TestSehUnwind The various TestSehUnwind tests recently started to fail due an unrelated refactor (in CL 698098) that made the stack frames to not match the expected pattern. This CL updates the tests to be more robust to such changes. Fixes #75467 Change-Id: I7950332bb6ca54e4bf693d13e2490b3d9d901dde Rev...
[ { "path": "src/runtime/runtime-seh_windows_test.go", "patch": "@@ -65,14 +65,20 @@ func TestSehLookupFunctionEntry(t *testing.T) {\n \t}\n }\n \n-func sehCallers() []uintptr {\n-\t// We don't need a real context,\n-\t// RtlVirtualUnwind just needs a context with\n-\t// valid a pc, sp and fp (aka bp).\n+//go...
2025-09-15T14:02:22
mrdoob/three.js
a83652d2b5db800c925cb8c7925d69683d794adc
6ea0fb9ec4e2341549f2a7a35795731e5ab628fb
WebGPURenderer: Update attribute only when needed (#28701) * update attribute only when necessary * fix interleavedbuffers * fixing attribute updates might have changed puppeteer? * support instanceMatrix.needsUpdate * cleanup * instanceColor can be undefined
[ { "path": "examples/jsm/nodes/accessors/InstanceNode.js", "patch": "@@ -5,6 +5,7 @@ import { normalLocal } from './NormalNode.js';\n import { positionLocal } from './PositionNode.js';\n import { nodeProxy, vec3, mat3, mat4 } from '../shadernode/ShaderNode.js';\n import { DynamicDrawUsage, InstancedInterleav...
2024-06-19T15:31:53
denoland/deno
01bbe9c66ab6455b742adf8d50fa7de09b1cc292
efb5617d15c1a08e6fd684d2c6e8145c1545c204
fix(check): do not surface code resolution errors in declaration file dependencies (#30296)
[ { "path": "Cargo.lock", "patch": "@@ -2109,9 +2109,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_graph\"\n-version = \"0.98.0\"\n+version = \"0.98.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0985b39cb178c6828c0029b11c544b9dd596e9424b4b076ad156a01cc73314ee...
2025-08-05T08:35:20
vuejs/vue
8ba420c35975583486308a55d31c1df7b195574a
4f5a47d750d4d8b61fe3b5b2251a0a63b391ac27
Fix using one delay to control all transitions. (#3932) * Fix using one delay to control all transitions. Vue transitions have wrong timing when having CSS like the following: ``` .[transition-name]-enter-active, .[transition-name]-leave-active { transition: opacity 0.8s ease, transform 0.7s ease; transit...
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -131,6 +131,10 @@ export function getTransitionInfo (el: Element, expectedType?: ?string): {\n }\n \n function getTimeout (delays: Array<string>, durations: Array<string>): number {\n+ while (delays.length < durations.length) {\n+ de...
2016-10-17T02:36:22
golang/go
aa83aee7de1d69b207ab9669bb2b7dcdcbdf9383
b9e2977f1d62bba2df652a3b57b4fdd15a756601
net/http: clarify panic conditions in Handle, HandleFunc, AddInsecureBypassPattern Add explicit mention that these methods panic on both pattern conflict and invalid syntax. Fixes #75226 Change-Id: If7dbfc44e1ec4624ab156f0e5d7e66cee2c2fef3 GitHub-Last-Rev: acc9a9c3338373f5a9376ff2eb1decd30bbee04d GitHub-Pull-Request...
[ { "path": "src/net/http/csrf.go", "patch": "@@ -90,6 +90,10 @@ var sentinelHandler Handler = &noopHandler{}\n // would redirect to a pattern (e.g. after cleaning the path or adding a\n // trailing slash) are not.\n //\n+// AddInsecureBypassPattern panics if the pattern conflicts with one already\n+// regist...
2025-09-13T17:54:40
mrdoob/three.js
074afc11566fd50529abf25341302c68eb23a5a3
4601056b747486c77a6ef42ce156467df3ed3995
WebGPURenderer: Fix uniform update tests (#28698) * fix uniform update tests * cleanup
[ { "path": "examples/jsm/renderers/common/UniformsGroup.js", "patch": "@@ -9,6 +9,8 @@ class UniformsGroup extends UniformBuffer {\n \n \t\tthis.isUniformsGroup = true;\n \n+\t\tthis._values = null;\n+\n \t\t// the order of uniforms in this array must match the order of uniforms in the shader\n \n \t\tthis.u...
2024-06-19T01:47:58
denoland/deno
efb5617d15c1a08e6fd684d2c6e8145c1545c204
45f64df6c13b9e12732d2d090fd83d9933e6cf46
fix(ext/node): assign 'ERR_BUFFER_TOO_LARGE' to codes (#30311) Closes https://github.com/denoland/deno/issues/30310
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -2742,6 +2742,7 @@ export class NodeAggregateError extends AggregateError {\n }\n }\n \n+codes.ERR_BUFFER_TOO_LARGE = ERR_BUFFER_TOO_LARGE;\n codes.ERR_IPC_CHANNEL_CLOSED = ERR_IPC_CHANNEL_CLOSED;\n codes.ERR_METHOD_NOT_IMPLEMENTED = ERR_METH...
2025-08-04T16:19:46
vuejs/vue
4f5a47d750d4d8b61fe3b5b2251a0a63b391ac27
95bf0c000ef93418be366994b2ff846f3d7797fe
fix root v-else not rendering in prod and switched examples to minified vue for better prod coverage (#3943) * fix root v-else not rendering in production and switched examples to minified vue for better prod coverage * add dev build comment to examples * convert tabs to spaces in todomvc example for consistency
[ { "path": "examples/commits/index.html", "patch": "@@ -18,7 +18,8 @@\n font-weight: bold;\n }\n </style>\n- <script src=\"../../dist/vue.js\"></script>\n+ <!-- Delete \".min\" for console warnings in development -->\n+ <script src=\"../../dist/vue.min.js\"></script>\n </head>\n ...
2016-10-14T13:27:54
mrdoob/three.js
7ca25bd0b6d55ffa6f5c1cf52ae8e989eb2bd3dc
8b7a79357971149e40500c50772e5f9c3f008383
TSL: Fix WGSL Functions using wrong type (#28690) * fix wgslNodeFunction layout type overriding to float * Move outputType to WGSLNodeFunction --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeFunction.js", "patch": "@@ -1,7 +1,7 @@\n import NodeFunction from '../../../nodes/core/NodeFunction.js';\n import NodeFunctionInput from '../../../nodes/core/NodeFunctionInput.js';\n \n-const declarationRegexp = /^[fn]*\\s*([a-z_0-9]+)?\\s*\\(([\\s\\S]...
2024-06-18T17:14:13
golang/go
b9e2977f1d62bba2df652a3b57b4fdd15a756601
8105d0ccc273afa717ba536f4d42dac3920c017e
crypto/internal/cryptotest: use linux-amd64_avx512 builder for SHA-NI Updates #74772 Fixes #69592 Change-Id: I6a6a69647ab1785ed953f3ed2dfa04cd55576f2b Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_avx512 Reviewed-on: https://go-review.googlesource.com/c/go/+/701315 Reviewed-by: Daniel McCarney <daniel@binaryp...
[ { "path": "src/crypto/internal/cryptotest/implementations.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"internal/goarch\"\n \t\"internal/goos\"\n \t\"internal/testenv\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n@@ -38,22 +39,33 @@ func TestAllImplementations(t *testing.T, pkg string, f func(t *testing.T)) {...
2025-08-07T22:16:27
vuejs/vue
95bf0c000ef93418be366994b2ff846f3d7797fe
3bbac7e9f5beb86dbb023edbb043bdea501c98d3
Add guide for PR title (#3936) * update PR guide for a better release log * detail on pr title. and fix typo
[ { "path": ".github/CONTRIBUTING.md", "patch": "@@ -45,6 +45,7 @@ Hi! I’m really excited that you are interested in contributing to Vue.js. Befo\n - Provide convincing reason to add this feature. Ideally you should open a suggestion issue first and have it greenlighted before working on it.\n \n - If fixin...
2016-10-14T13:25:09
denoland/deno
45f64df6c13b9e12732d2d090fd83d9933e6cf46
94a953e62f924baf8760495cfdd42414bcd19a76
fix(ext/node): incorrect `ERR_INVALID_ARG_VALUE` constructor arguments position (#30309) This allows [parallel/test-fs-internal-assertencoding.js](https://github.com/nodejs/node/blob/v23.9.0/test/parallel/test-fs-internal-assertencoding.js) to pass. Towards #29972
[ { "path": "ext/node/polyfills/internal/fs/utils.mjs", "patch": "@@ -154,7 +154,7 @@ export const kMaxUserId = 2 ** 32 - 1;\n export function assertEncoding(encoding) {\n if (encoding && !Buffer.isEncoding(encoding)) {\n const reason = \"is invalid encoding\";\n- throw new ERR_INVALID_ARG_VALUE(enco...
2025-08-04T16:05:41
golang/go
8ace10dad2774a760b5028140a7d3f8140e6e1c0
3573227fe3fe8d141dbf06e257609a59871d5248
os: add (*Process).WithHandle Implement (*Process).WithHandle, add tests for all platforms. Fixes #70352 Change-Id: I7a8012fb4e1e1b4ce1e75a59403ff6e77504fc56 Reviewed-on: https://go-review.googlesource.com/c/go/+/699615 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewe...
[ { "path": "api/next/70352.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg os, method (*Process) WithHandle(func(uintptr)) error #70352\n+pkg os, var ErrNoHandle error #70352", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/os/70352.md", "patch...
2025-08-28T05:39:25
vuejs/vue
3f8fa43819b74e2ea03adb3ca9a04c36e72cf6b7
d362d64633f00f8cbf1613c424d8852fb45c7596
fix duplicate attribute test case in IE
[ { "path": "test/unit/modules/compiler/parser.spec.js", "patch": "@@ -1,6 +1,7 @@\n import { parse } from 'compiler/parser/index'\n import { extend } from 'shared/util'\n import { baseOptions } from 'web/compiler/index'\n+import { isIE } from 'core/util/env'\n \n describe('parser', () => {\n it('simple ele...
2016-10-13T09:19:51
golang/go
3573227fe3fe8d141dbf06e257609a59871d5248
68c6a73380e82a0ea9a93c1a75ab8a38f28f3a3d
os: add and use errProcessReleased This error is already used in three places, so let's define it. Change-Id: I73565d94aebcf3d5a278201d96839d82db85a2d4 Reviewed-on: https://go-review.googlesource.com/c/go/+/702436 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: M...
[ { "path": "src/os/exec.go", "patch": "@@ -14,8 +14,12 @@ import (\n \t\"time\"\n )\n \n-// ErrProcessDone indicates a [Process] has finished.\n-var ErrProcessDone = errors.New(\"os: process already finished\")\n+var (\n+\t// ErrProcessDone indicates a [Process] has finished.\n+\tErrProcessDone = errors.New(...
2025-09-11T02:00:19
denoland/deno
94a953e62f924baf8760495cfdd42414bcd19a76
c86e277fc1e0795f3602981e36c690e1abfbfe49
fix: improve handling of linked jsr packages in lockfile (#30289)
[ { "path": "Cargo.lock", "patch": "@@ -2296,9 +2296,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_lockfile\"\n-version = \"0.31.1\"\n+version = \"0.31.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"c2051c2aecfd7f287c2afdcee50d9e2ac1b8f1873bae2d3934d9a2e2762d7...
2025-08-04T09:30:48