repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | a00f0ed521f32c704b9a5bf8886848829dd13415 | eaa6475dbbf73c0efe6ba2b5e28ea126c22b7286 | runtime/cgo: remove clang mmap bug workaround
Clang 3.8 was released in 2016, that is 10 years ago. The issue that
the workaround was addressing (a bug in the memory sanitizer) is no
longer relevant.
Change-Id: I277ea94cf1bfbc6a9da63841be8ac990c839d7b7
Reviewed-on: https://go-review.googlesource.com/c/go/+/745662
LUC... | [
{
"path": "src/runtime/cgo/gcc_unix.c",
"patch": "@@ -4,9 +4,6 @@\n \n //go:build unix && !solaris\n \n-#include <signal.h>\n-#include <string.h>\n-#include <errno.h>\n #include \"libcgo.h\"\n #include \"libcgo_unix.h\"\n \n@@ -37,37 +34,9 @@ _cgo_set_stacklo(G *g)\n \t}\n }\n \n-static void\n-clang_init()\... | 2026-02-15T07:43:56 |
denoland/deno | cc53b5ff396a1d40f3f88712a506395356fb57bc | 9d90318a53cce7657d31e28814f5ab5d68f00d68 | fix(test): restart all tests on env file change (#32461)
Closes https://github.com/denoland/deno/issues/32222 | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -640,8 +640,16 @@ impl CliOptions {\n self.flags.no_legacy_abort()\n }\n \n- pub fn env_file_name(&self) -> Option<&Vec<String>> {\n- self.flags.env_file.as_ref()\n+ pub fn env_file_paths(\n+ &self,\n+ ) -> impl DoubleEndedIterator<Item = PathBuf> + '... | 2026-03-05T10:46:42 |
mrdoob/three.js | 3c023f2a131dac159c986d7637279d2419205ebf | 981732c6917af7e8164389e9e863646be9881f96 | Examples: fix bugs (#31842)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/physics_ammo_break.html",
"patch": "@@ -538,7 +538,7 @@\n \n \t\t\t\tif ( breakable0 && ! collided0 && maxImpulse > fractureImpulse ) {\n \n-\t\t\t\t\tconst debris = convexBreaker.subdivideByImpact( threeObject0, impactPoint, impactNormal, 1, 2, 1.5 );\n+\t\t\t\t\tconst debris = convexBr... | 2025-09-07T17:41:08 |
vuejs/vue | 2ef67f868dc4ca95453a091a589bab24e226f045 | fdc5f0363bf528ddd1eda73c313c860ea8cf5e7a | chore: fix typo in scheduler.js [ci skip] (#9425) | [
{
"path": "src/core/observer/scheduler.js",
"patch": "@@ -44,7 +44,7 @@ export let currentFlushTimestamp = 0\n let getNow: () => number = Date.now\n \n // Determine what event timestamp the browser is using. Annoyingly, the\n-// timestamp can either be hi-res ( relative to poge load) or low-res\n+// timesta... | 2019-02-05T16:34:16 |
golang/go | eaa6475dbbf73c0efe6ba2b5e28ea126c22b7286 | 2eb890bde31495cdd90423fcfbc789351ca56ec6 | internal/poll: readWriteLock should destroy the fd when there are no more references to it
The read lock in readWriteLock might be holding the last reference to
the fd. If the fd is closed while the read lock is still held, then the
fd will not be destroyed until the read lock is released and fd.destroy
is called.
Th... | [
{
"path": "src/internal/poll/fd_mutex.go",
"patch": "@@ -269,7 +269,9 @@ func (fd *FD) readWriteLock() error {\n \t\treturn errClosing(fd.isFile)\n \t}\n \tif !fd.fdmu.rwlock(writeLock, waitLock) {\n-\t\tfd.fdmu.rwunlock(readlock) // unlock read lock acquired above\n+\t\tif fd.fdmu.rwunlock(readlock) {\n+\t... | 2026-02-17T12:59:51 |
mrdoob/three.js | 839287d88275b085c06963d0b745eae84c29a8e5 | 852895046ac9f83f14911b88cdcbb3e46beaa011 | fix depth sensing (#31831) | [
{
"path": "src/renderers/webgl/WebGLTextures.js",
"patch": "@@ -554,6 +554,10 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils,\n \t\t\tuploadTexture( textureProperties, texture, slot );\n \t\t\treturn;\n \n+\t\t} else if ( texture.isExternalTexture ) {\n+\n+\t\t\ttexturePr... | 2025-09-05T20:48:35 |
denoland/deno | 9d90318a53cce7657d31e28814f5ab5d68f00d68 | 888568c66267ed957423937764e22081d526cc08 | fix(ext/node): use sync writes for TTY stdout/stderr WriteStream (#32488)
## Summary
- After #32343 switched `process.stdout`/`process.stderr` to
`tty.WriteStream` (extending `net.Socket`), writes became asynchronous
through the `LibuvStreamWrap` handle
- Since `console.log` in Deno writes synchronously via
`Deno.cor... | [
{
"path": "ext/node/polyfills/internal/tty.js",
"patch": "@@ -10,6 +10,7 @@ const {\n Error,\n ObjectEntries,\n ObjectPrototypeHasOwnProperty,\n+ ObjectPrototypeIsPrototypeOf,\n ObjectValues,\n RegExpPrototypeExec,\n SafeMap,\n@@ -22,6 +23,8 @@ const {\n SetPrototypeGetSize,\n StringPrototy... | 2026-03-05T10:44:46 |
mrdoob/three.js | 7668c5b8a97d396fec01f463e2905f4a1ba45431 | 2a9049ff431cf08eb539a4a3abd597e316395ccb | Examples: Fixed css3d_mixed recursion. | [
{
"path": "examples/css3d_mixed.html",
"patch": "@@ -86,7 +86,7 @@\n \t\t\t\tiframe.style.width = '1028px';\n \t\t\t\tiframe.style.height = '768px';\n \t\t\t\tiframe.style.border = '0px';\n-\t\t\t\tiframe.src = 'https://threejs.org/examples/#webgl_animation_keyframes';\n+\t\t\t\tiframe.src = '/examples/#web... | 2025-09-05T04:51:10 |
golang/go | f75c7ccaefe16a13be7ccc08731478976a6cc645 | 845b7b0e493c86dc2c97d157c931f8b6254e24b0 | cmd/covdata: update test expectations after coverage position change
CL 726800 changed cmd/cover to exclude brace tokens from coverage
ranges, shifting where coverage spans start (from the opening
brace to the first executable token inside the block).
Update the hardcoded position expectations in TestCovTool subtests... | [
{
"path": "src/cmd/covdata/tool_test.go",
"patch": "@@ -414,7 +414,7 @@ func testTextfmt(t *testing.T, s state) {\n \t\tdumplines(lines[0:10])\n \t\tt.Errorf(\"textfmt: want %s got %s\", want0, lines[0])\n \t}\n-\twant1 := mainPkgPath + \"/prog1.go:13.14,15.2 1 1\"\n+\twant1 := mainPkgPath + \"/prog1.go:14.... | 2026-02-16T08:16:46 |
denoland/deno | d143d7c16110debcf069fbd2b53e9287e1a495d3 | be569cf522240bf1b0ec4ebc906ca69415723891 | fix(ext/node): deep `assert` compatibility (#32434) | [
{
"path": "ext/crypto/00_crypto.js",
"patch": "@@ -90,6 +90,7 @@ const {\n import * as webidl from \"ext:deno_webidl/00_webidl.js\";\n import { createFilteredInspectProxy } from \"ext:deno_web/01_console.js\";\n import { DOMException } from \"ext:deno_web/01_dom_exception.js\";\n+import { kKeyObject } from ... | 2026-03-04T23:08:56 |
golang/go | 845b7b0e493c86dc2c97d157c931f8b6254e24b0 | f827b854254bec05b3a11d30886c1331a68efd7b | cmd/internal/obj: remove ARM64 prefix from encoding helpers
Remove the ARM64 prefix from encoding helper functions that were moved to
cmd/internal/obj to be used by both cmd/asm and cmd/compile. These
functions now use the package prefix and look like:
arm64.EncodeRegisterExtension and arm64.RegisterListOffset.
Chang... | [
{
"path": "src/cmd/asm/internal/asm/parse.go",
"patch": "@@ -775,7 +775,7 @@ func (p *Parser) registerExtension(a *obj.Addr, name string, prefix rune) {\n \n \tswitch p.arch.Family {\n \tcase sys.ARM64:\n-\t\terr := arm64.ARM64RegisterExtension(a, ext, reg, num, isAmount, isIndex)\n+\t\terr := arm64.EncodeR... | 2025-10-23T16:23:43 |
denoland/deno | be569cf522240bf1b0ec4ebc906ca69415723891 | 1e7a295613519a1f9aa87c0a3f0566039df944eb | fix(core): uv_compat cleanup and fixes (#32458)
- split uv_compat into multiple files
- move logic out of run_io into helpers
- avoid holding references across callbacks to prevent violating
aliasing
- add a test suite, this goes through the same JsRuntime event loop
infra as deno
- fix shutdown not waiting for write ... | [
{
"path": "libs/core/runtime/jsruntime.rs",
"patch": "@@ -2164,7 +2164,18 @@ impl JsRuntime {\n Self::dispatch_rejections(scope, context_state, exception_state)?;\n scope.perform_microtask_checkpoint();\n \n- // ===== Phase 3: I/O =====\n+ // ===== Phase 3: Idle / Prepare =====\n+ // In lib... | 2026-03-04T17:36:20 |
vuejs/vue | 44a4ca33b95070e9aa53c6924479519d86dd9b36 | 0129b0eb12a1f98a722f100892bfc5e60b0f51ce | fix: restore slot-scope + v-if behavior
fix #9422 | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -375,15 +375,18 @@ function genScopedSlot (\n el: ASTElement,\n state: CodegenState\n ): string {\n- if (el.if && !el.ifProcessed) {\n+ const isLegacySyntax = el.attrsMap['slot-scope']\n+ if (el.if && !el.ifProcessed && !isLegacySyntax) {\n ... | 2019-02-05T03:39:35 |
golang/go | f65692ea562bf24c21ae46854e98584dd4bcc201 | 3c8b5e673816c733f13a38b1ed1f53d7d49ea084 | cmd/compile: don't drop same register twice
For instructions that clobber both of their input registers, make
sure we don't clobber the same register twice when both input
registers are the same.
This is rare, but it can happen.
Fixes #77604
Change-Id: I794249cf43a8cc4ab3262055daef9193e2442f73
Reviewed-on: https://... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -1810,7 +1810,7 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\tif regspec.clobbersArg0 {\n \t\t\t\ts.freeReg(register(s.f.getHome(args[0].ID).(*Register).num))\n \t\t\t}\n-\t\t\tif regspec.clobbersArg1 {\n+\t\t\tif regspec.clobbersAr... | 2026-02-14T18:04:13 |
vuejs/vue | b034abf48e793189ce8796c259eed2fbfb79bcd0 | 1a6f7a576c5359d3f86ceaf080e4e72cbeba030a | fix: always set transformed model value on attrs | [
{
"path": "src/core/vdom/create-component.js",
"patch": "@@ -250,8 +250,7 @@ function mergeHook (f1: any, f2: any): Function {\n function transformModel (options, data: any) {\n const prop = (options.model && options.model.prop) || 'value'\n const event = (options.model && options.model.event) || 'input... | 2019-02-05T03:03:33 |
mrdoob/three.js | 1041321baf8eba68bda0ea63f52c45187d3fafe4 | b19bffdfdfbf4d8a3738d9e1212d61a2d767bead | fix-types (#31819)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/jsm/controls/ArcballControls.js",
"patch": "@@ -115,7 +115,7 @@ class ArcballControls extends Controls {\n \t * Constructs a new controls instance.\n \t *\n \t * @param {Camera} camera - The camera to be controlled. The camera must not be a child of another object, unless that object is ... | 2025-09-04T18:52:17 |
golang/go | 3c8b5e673816c733f13a38b1ed1f53d7d49ea084 | 6837583eec31bf197a8f16bcb431e3beb73b2aa5 | cmd/compile: avoid folding 64-bit integers into 32-bit constants
Folding a 64-bit integer into a 32-bit constant may result in a negative
integer if the value exceeds math.MaxInt32 (the maximum value of a 32-
bit signed integer). This negative value will be sign-extended to 64
bits at runtime, leading to unexpected re... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules",
"patch": "@@ -1578,7 +1578,8 @@\n \n (MOVBload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read8(sym, int64(off)))])\n (MOVWload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read16(sym, int64(off), config.ctxt.Arch.ByteOrder... | 2026-02-14T10:55:34 |
denoland/deno | 92ed54bba86a5e1fc6ee3c4d7eaa668a00978edd | 8426078dae05b031c13f37495dd78acb105c5583 | Reland refactor(core): move nextTick/immediate queues into core, replace ops with shared buffers (#32440) (#32465)
## Summary
- The nextTick rewrite (#32440) moved unhandled rejection processing
into `processTicksAndRejections` (JS-side `processPromiseRejections`),
but `rejectionhandled` events were still only dispatc... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -493,7 +493,6 @@ deno_core::extension!(deno_node,\n \"internal/errors/error_source.ts\",\n \"internal/event_target.mjs\",\n \"internal/events/abort_listener.mjs\",\n- \"internal/fixed_queue.ts\",\n \"internal/fs/streams.mjs\",\n \"internal/fs/... | 2026-03-04T16:46:52 |
vuejs/vue | 66fd3c8dd1577d4b634731adf4be4d3db5bf1df6 | 0fb03b7831693b4abc90dd0bfe971c36c02d82a6 | fix(v-model): add value to $attrs if not defined in props (#9331)
fix #9330 | [
{
"path": "src/core/vdom/create-component.js",
"patch": "@@ -250,7 +250,8 @@ function mergeHook (f1: any, f2: any): Function {\n function transformModel (options, data: any) {\n const prop = (options.model && options.model.prop) || 'value'\n const event = (options.model && options.model.event) || 'input... | 2019-02-04T22:43:48 |
mrdoob/three.js | b19bffdfdfbf4d8a3738d9e1212d61a2d767bead | 61f467b53d26e24ca36918e6bdc27f0f3db3f697 | fix-ts-ref (#31822)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/jsm/objects/ReflectorForSSRPass.js",
"patch": "@@ -387,6 +387,7 @@ ReflectorForSSRPass.ReflectorShader = {\n * @property {number} [clipBias=0] - The clip bias.\n * @property {Object} [shader] - Can be used to pass in a custom shader that defines how the reflective view is projected ont... | 2025-09-04T18:51:11 |
denoland/deno | 8426078dae05b031c13f37495dd78acb105c5583 | 9f02e0019c3741ebf295b5a9e062b0b66a6ef18c | ci: fix deno_core changes check in shallow clones (#32464)
## Summary
- The previous shell one-liner used `git diff` against the PR base SHA,
which often isn't available in the shallow clone (`fetch-depth: 5`).
When the base SHA is missing, `git diff` fails silently, `grep` gets no
input, and deno_core tests are incor... | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -480,11 +480,9 @@ const preBuildCheckStep = step({\n const denoCoreChangesCheckStep = step({\n id: \"deno_core_changes\",\n run: [\n- `DENO_CORE_CHANGED=$(git diff --name-only \\${{ github.event.pull_request.base.sha }}..HEAD | grep -qE '^(${... | 2026-03-04T16:43:58 |
vuejs/vue | 0fb03b7831693b4abc90dd0bfe971c36c02d82a6 | 55bfb94a33ecc9b33131ec0fb78bba2946e8fc75 | fix: avoid blocking first input event in IE when it shouldn't (#9297)
- the original bug in #7138 only happens for `<textarea>`
- the bug doesn't happen if placeholder has empty value
fix #9042, fix #9383 | [
{
"path": "src/platforms/web/runtime/modules/attrs.js",
"patch": "@@ -98,8 +98,8 @@ function baseSetAttr (el, key, value) {\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n- (el.tagName === 'TEXTAREA' || el.tagName === 'INPUT') &&\n- key === 'placeholder' && !el.__ieph\n+ ... | 2019-02-04T22:39:41 |
mrdoob/three.js | 61f467b53d26e24ca36918e6bdc27f0f3db3f697 | 787ba7ed0720de19d98fdcbd7a795bff05e3baef | WebGPURenderer: Fix shadow's `alphaTest` if used `material.map` (#31803)
* fix alphaTest using map
* improve names | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -30,6 +30,8 @@ import { Vector4 } from '../../math/Vector4.js';\n import { RenderTarget } from '../../core/RenderTarget.js';\n import { DoubleSide, BackSide, FrontSide, SRGBColorSpace, NoToneMapping, LinearFilter, HalfFloatType, RGBAFormat, PCFShado... | 2025-09-04T16:03:00 |
golang/go | 6837583eec31bf197a8f16bcb431e3beb73b2aa5 | c01d1f095bd8897b7bf4d9e07bd588134952e047 | cmd/internal/obj/loong64: improve ARNG type register name conversion
When resolving ARNG type names, the base value was not subtracted
when calculating the variable simd_type, causing its actual value
to not match the expected meaning after the base value adjustment.
Fixes #77414
Change-Id: I713bab849ecdb5610d2593ba... | [
{
"path": "src/cmd/asm/internal/arch/loong64.go",
"patch": "@@ -75,48 +75,51 @@ var loong64LasxArngExtMap = map[string]int16{\n // Loong64RegisterExtension constructs an Loong64 register with extension or arrangement.\n func Loong64RegisterExtension(a *obj.Addr, ext string, reg, num int16, isAmount, isIndex... | 2026-02-06T02:09:10 |
vuejs/vue | 55bfb94a33ecc9b33131ec0fb78bba2946e8fc75 | c27fe24dc6088b517ab17c799a1852f97c22c076 | fix(compiler): fix inline-template crashing (#9365)
fix #9361 | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -346,7 +346,7 @@ function genInlineTemplate (el: ASTElement, state: CodegenState): ?string {\n { start: el.start }\n )\n }\n- if (ast.type === 1) {\n+ if (ast && ast.type === 1) {\n const inlineRenderFns = generate(ast, state.options)... | 2019-02-04T21:49:27 |
denoland/deno | 91e84aeffcf4e3cd00ec90c93cdef1a4810da3c4 | e78a7fa8d86848a759e6743537cf90013c7160b1 | refactor(core): move nextTick/immediate queues into core, replace ops with shared buffers (#32440)
## Summary
Major refactoring of the nextTick/immediate queue infrastructure, moving
it from Node polyfills into deno_core and replacing op-based
communication with shared memory buffers.
### Move nextTick queue into co... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -493,7 +493,6 @@ deno_core::extension!(deno_node,\n \"internal/errors/error_source.ts\",\n \"internal/event_target.mjs\",\n \"internal/events/abort_listener.mjs\",\n- \"internal/fixed_queue.ts\",\n \"internal/fs/streams.mjs\",\n \"internal/fs/... | 2026-03-04T15:23:24 |
golang/go | c01d1f095bd8897b7bf4d9e07bd588134952e047 | c186fe87686819cdf4dea49e1c556e9bc6e12e23 | cmd/go: validate inferred module path for go mod init
Ensure `go mod init` validates the module path even when it is inferred from GOPATH.
Fixes #73121
Change-Id: I8b7785ff57eec17bba432f48c8e3a18a2f92aab5
GitHub-Last-Rev: 8ff1ca2d71bee2b948f114ad1f0a4706a4c0b152
GitHub-Pull-Request: golang/go#76432
Reviewed-on: http... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -1187,26 +1187,8 @@ func CreateModFile(loaderstate *State, ctx context.Context, modPath string) {\n \t\tif err != nil {\n \t\t\tbase.Fatal(err)\n \t\t}\n-\t} else if err := module.CheckImportPath(modPath); err != nil {\n-\t\tif pathErr, ok := err... | 2025-11-24T10:16:11 |
mrdoob/three.js | 27255fe9cb7631fc41e7f5ad6677d653a3104fc9 | 1e6ed3fd250b26f58d8474098925f3c05fd977ff | Renderers: Use internal `log`, `warn` and `error` functions instead of the system ones (#31790)
* use internal `log`, `warn` and `error` functions instead of the system
* automatic addition of the `THREE.` prefix
* automatic addition of the `THREE.` prefix (2)
* cleanup
* cleanup
* cleanup
* Update WebGPUPipelin... | [
{
"path": "src/Three.Core.js",
"patch": "@@ -1,4 +1,5 @@\n import { REVISION } from './constants.js';\n+import { warn } from './utils.js';\n \n export { WebGLArrayRenderTarget } from './renderers/WebGLArrayRenderTarget.js';\n export { WebGL3DRenderTarget } from './renderers/WebGL3DRenderTarget.js';\n@@ -157... | 2025-09-04T01:20:32 |
vuejs/vue | c27fe24dc6088b517ab17c799a1852f97c22c076 | 1922e7d4d99d0397223b3919a1643aacb7afbbab | fix: decode single quotes in html attributes (#9341) | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -36,10 +36,11 @@ const decodingMap = {\n '"': '\"',\n '&': '&',\n ' ': '\\n',\n- '	': '\\t'\n+ '	': '\\t',\n+ ''': \"'\"\n }\n-const encodedAttr = /&(?:lt|gt|quot|amp);/g\n-const encodedAttrWithNewLines = /&(?:lt|gt... | 2019-02-04T21:48:24 |
denoland/deno | f85c0caafaa7f44c1b14d10babdfa4daaab8738f | 739f9ae0056dd4f3e6e1fec81ed75cc55c77b7f1 | fix(deploy): dont use jsr api for deploy subcommand (#32441) | [
{
"path": "cli/registry.rs",
"patch": "@@ -53,12 +53,6 @@ pub struct PublishingTask {\n pub error: Option<PublishingTaskError>,\n }\n \n-#[derive(serde::Deserialize)]\n-#[serde(rename_all = \"camelCase\")]\n-pub struct Package {\n- pub latest_version: Option<String>,\n-}\n-\n #[derive(serde::Deserialize)... | 2026-03-04T12:33:37 |
golang/go | c186fe87686819cdf4dea49e1c556e9bc6e12e23 | 9c9412cbad09ed7fc253de3ccfeea9ca18d22943 | encoding/json/v2: allow streaming JSON methods to return errors.ErrUnsupported
Allow the MarshalJSONTo and UnmarshalJSONFrom methods
to return errors.ErrUnsupported to be skipped in a similar manner
to how the caller-specified functions can be skipped as well.
Note that the v1 MarshalJSON and UnmarshalJSON methods ma... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -55,6 +55,8 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n //\n // - If the value type implements [MarshalerTo],\n // then the MarshalJSONTo method is called to encode the value.\n+// If the method returns [errors.Err... | 2026-02-13T00:54:32 |
mrdoob/three.js | 1e6ed3fd250b26f58d8474098925f3c05fd977ff | bc8f19db71539c2e623b72fcf96b49cad371c3f4 | TSL: Fix coordinate types for `load()` on 3D texture nodes (#31775)
* Fix incorrect coordinate types for load()
* Fix null level, align the order of parameters with generateTexture | [
{
"path": "src/nodes/accessors/CubeTextureNode.js",
"patch": "@@ -123,7 +123,7 @@ class CubeTextureNode extends TextureNode {\n \t */\n \tgenerateUV( builder, cubeUV ) {\n \n-\t\treturn cubeUV.build( builder, 'vec3' );\n+\t\treturn cubeUV.build( builder, this.sampler === true ? 'vec3' : 'ivec3' );\n \n \t}\... | 2025-09-03T15:45:15 |
vuejs/vue | 1922e7d4d99d0397223b3919a1643aacb7afbbab | b6b42ca8c41963be292caa266ce4330603f4c4eb | fix(template-compiler): allow comments on the root node in templates (#9408)
In SFC templates, we are allowed to add comments to the root node. If parsing with comments flag
true, we are not anymore. This ignores the root comments in case they cannot be added.
fix #9407 | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -377,16 +377,20 @@ export function parse (\n }\n },\n comment (text: string, start, end) {\n- const child: ASTText = {\n- type: 3,\n- text,\n- isComment: true\n- }\n- if (process.env.NODE_ENV !== 'produc... | 2019-02-04T21:34:32 |
mrdoob/three.js | bc8f19db71539c2e623b72fcf96b49cad371c3f4 | 197f8d98fee17e6e042fcbe889a35be6bccd4adc | fix: use the same hand model clearing as used in OculusHandModel to prevent the hand models from looking inside out (#31634)
Co-authored-by: jorodi <jorodi@mpb16> | [
{
"path": "examples/jsm/webxr/XRHandModelFactory.js",
"patch": "@@ -179,16 +179,12 @@ class XRHandModelFactory {\n \n \t\t\t}\n \n-\t\t\tcontroller.visible = true;\n-\n \t\t} );\n \n \t\tcontroller.addEventListener( 'disconnected', () => {\n \n-\t\t\tcontroller.visible = false;\n-\t\t\t// handModel.motionCo... | 2025-09-03T15:24:55 |
denoland/deno | 739f9ae0056dd4f3e6e1fec81ed75cc55c77b7f1 | 7a5efce39115c24c652f1ffa74aca055352f3abd | fix(npm): don't panic when peer dep is not in snapshot (#32454)
Instead of panicking, create the missing node gracefully. | [
{
"path": "libs/npm/resolution/graph.rs",
"patch": "@@ -428,10 +428,10 @@ impl Graph {\n // package-b@1.0.0_package-c@1.0.0__package-b@1.0.0\n // ^ attempting to resolve this\n // In this case, we go up the ancestors to see if we can find a ... | 2026-03-04T11:51:56 |
golang/go | 770864f3b452dbd83e33e42b9659c387d03425b9 | 1a6c5448a7004fb7073494ffdbd9bac5f1b8be9e | encoding/json/v2: remove SkipFunc sentinel error
WARNING: This commit contains breaking changes
for those already using GOEXPERIMENT=jsonv2.
Existing users of SkipFunc should migrate to errors.ErrUnsupported,
for which support was added in at least one prior commit.
Updates #74324
Change-Id: Ifbdee39165a134a33ea000... | [
{
"path": "src/encoding/json/v2/arshal_funcs.go",
"patch": "@@ -19,17 +19,6 @@ import (\n \t\"encoding/json/jsontext\"\n )\n \n-// SkipFunc may be returned by [MarshalToFunc] and [UnmarshalFromFunc] functions.\n-//\n-// Any function that returns SkipFunc must not cause observable side effects\n-// on the pr... | 2026-02-12T18:42:52 |
vuejs/vue | b6b42ca8c41963be292caa266ce4330603f4c4eb | 85548310f19975745c83ac173f700f8b2f1e8e3e | fix: avoid isPromise check when handler return value is Vue instance
fix #9418 | [
{
"path": "src/core/util/error.js",
"patch": "@@ -35,7 +35,7 @@ export function invokeWithErrorHandling (\n let res\n try {\n res = args ? handler.apply(context, args) : handler.call(context)\n- if (isPromise(res)) {\n+ if (res && !res._isVue && isPromise(res)) {\n res.catch(e => handleE... | 2019-02-04T20:14:29 |
mrdoob/three.js | 1194f3ae20343ce4803aa8efe027ca3a8d4cea6a | b8cfbe28e137c5a302597a52058e62851eb18b70 | TSL: Minor fixes. (#31808)
* TSL: Minor fixes.
* TSL: Rename `PI` constants. | [
{
"path": "examples/webgpu_tsl_angular_slicing.html",
"patch": "@@ -28,7 +28,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three/webgpu';\n-\t\t\timport { If, PI2, atan, color, frontFacing, output, positionLocal, Fn, uniform, vec4 } from 'three/tsl';\n+\t\t\timport { If, TWO_PI, ata... | 2025-09-03T15:00:45 |
denoland/deno | 7a5efce39115c24c652f1ffa74aca055352f3abd | fce52fa2e9adcb236c4f01072e423601ec33b2f3 | fix(npm): regression where resolution was missing dependencies (#32453) | [
{
"path": "libs/npm/resolution/graph.rs",
"patch": "@@ -3225,7 +3225,9 @@ impl<'a, TNpmRegistryApi: NpmRegistryApi>\n .peer_dep_version_req\n .as_ref()\n .unwrap_or(&dep.version_req);\n- if versions.contains_key(effective_req) {\n+ if let Some(target_version) = ve... | 2026-03-04T11:48:20 |
golang/go | 1a6c5448a7004fb7073494ffdbd9bac5f1b8be9e | 58bc91a9671f3aec46a7e3c1e55d1d0e303dfe4e | cmd/go: document PATH behavior for `go run` and `go tool`
Fixes #77509
Change-Id: I1b6b38f86e4c8b18dd7638b4dd8246e2993e8307
Reviewed-on: https://go-review.googlesource.com/c/go/+/745100
Reviewed-by: Sean Liao <sean@liao.dev>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
Reviewed-by: Michael Matloob <matloob@gola... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1792,6 +1792,10 @@\n // used by debuggers, to reduce build time. To include debugger information in\n // the binary, use 'go build'.\n //\n+// The go command places $GOROOT/bin at the beginning of $PATH in the\n+// subprocess environment, so that subprocesses... | 2026-02-12T21:40:01 |
vuejs/vue | 44a17ba2cde7fb9a673486d44de7f29feb5c1882 | 539e481f38706a6202f0eacf54c579362fbd5bb4 | fix: fix child forceUpdate regression
close #9396 | [
{
"path": "src/core/vdom/helpers/normalize-scoped-slots.js",
"patch": "@@ -26,7 +26,7 @@ export function normalizeScopedSlots (\n }\n }\n res._normalized = true\n- res.$stable = slots && slots.$stable\n+ res.$stable = slots ? slots.$stable : true\n return res\n }\n ",
"additions": 1,
"de... | 2019-01-31T15:24:41 |
mrdoob/three.js | b8cfbe28e137c5a302597a52058e62851eb18b70 | 34fb7479e4e13e73b7b7457237abba290fc89d52 | WebGLBackend: Align `copyTextureToTexture` with `WebGLRenderer` (#31810)
* Align copyTextureToTexture with WebGLRenderer
* Rollback unintentional removal of isArrayTexture conditional
* Declare scratch framebuffers in constructor, delete them on disposal
* Fix formatting | [
{
"path": "src/renderers/webgl-fallback/WebGLBackend.js",
"patch": "@@ -2619,6 +2619,8 @@ class WebGLBackend extends Backend {\n \t */\n \tdispose() {\n \n+\t\tif ( this.textureUtils !== null ) this.textureUtils.dispose();\n+\n \t\tconst extension = this.extensions.get( 'WEBGL_lose_context' );\n \t\tif ( ex... | 2025-09-03T14:56:01 |
denoland/deno | fce52fa2e9adcb236c4f01072e423601ec33b2f3 | 148e8a0b1c773b0fb219bf834d004be62120ae20 | fix(ext/node): support HTTP over Windows named pipes in node:http (#32414)
Add Windows Named Pipe support to Deno's Node.js HTTP compatibility
layer, enabling libraries like `dockerode`/`docker-modem` that use
`http.request({socketPath: "//./pipe/docker_engine"})` to work on
Windows.
Add `WindowsPipe` variant to `Net... | [
{
"path": "ext/http/http_next.rs",
"patch": "@@ -1007,6 +1007,10 @@ where\n NetworkStream::Tunnel(conn) => {\n serve_http(conn, connection_properties, lifetime, tx, options)\n }\n+ #[cfg(windows)]\n+ NetworkStream::WindowsPipe(conn) => {\n+ serve_http(conn, connection_properties, li... | 2026-03-04T10:11:29 |
golang/go | 58bc91a9671f3aec46a7e3c1e55d1d0e303dfe4e | 4dca8b3e619a321de36b99b6b514d9c01ef76e5e | cmd/link: support PIE on linux/s390x without cgo
Enable PIE builds on linux/s390x when CGO is disabled by teaching
the linker to handle dynamic relocations against SDYNIMPORT
symbols.
This adds support for TLS_IE and handles R_CALL, R_PCRELDBL, and
R_ADDR relocations by generating the appropriate PLT/GOT entries
inst... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1243,7 +1243,7 @@ func (t *tester) internalLinkPIE() bool {\n \t}\n \tswitch goos + \"-\" + goarch {\n \tcase \"darwin-amd64\", \"darwin-arm64\",\n-\t\t\"linux-amd64\", \"linux-arm64\", \"linux-loong64\", \"linux-ppc64le\",\n+\t\t\"linux-amd64\", \"linux-arm64... | 2026-02-05T15:05:23 |
mrdoob/three.js | b83d9abed47408346ae1c8113360f818b0f0d084 | 43849031e1e521b18c76a061ab681db45a2b212d | Add FastHDR environment example page (#31749)
* add fasthdr example
* Remove unused variables
* Fix grey sphere
* add missing target blank
* add to tags.json
* add controls for FOV, hdri, backgroundBlurriness
* rename "hdri" to "image" | [
{
"path": "examples/files.json",
"patch": "@@ -142,6 +142,7 @@\n \t\t\"webgl_materials_envmaps_exr\",\n \t\t\"webgl_materials_envmaps_groundprojected\",\n \t\t\"webgl_materials_envmaps_hdr\",\n+\t\t\"webgl_materials_envmaps_fasthdr\",\n \t\t\"webgl_materials_matcap\",\n \t\t\"webgl_materials_normalmap\",\n ... | 2025-09-03T11:32:40 |
vuejs/vue | 539e481f38706a6202f0eacf54c579362fbd5bb4 | e1db2c5bf66fca3d219683682690cd33921dd5c5 | fix: fix v-bind:style for camelCase properties with !important (#9386) | [
{
"path": "src/platforms/web/runtime/modules/style.js",
"patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n import { getStyle, normalizeStyleBinding } from 'web/util/style'\n-import { cached, camelize, extend, isDef, isUndef } from 'shared/util'\n+import { cached, camelize, extend, isDef, isUndef, hyphenate } from... | 2019-01-31T15:08:35 |
denoland/deno | 2334e53e96613878baaeac8ae4847e84e7c2ec36 | 86a97b288d337e30ece2739a571e1a0c26f1664e | ci: fix npm publish (#32437) | [
{
"path": ".github/workflows/npm_publish.yml",
"patch": "@@ -36,10 +36,8 @@ jobs:\n - name: Install Node\n uses: actions/setup-node@v6\n with:\n- node-version: '22.x'\n+ node-version: '24.x'\n registry-url: 'https://registry.npmjs.org'\n \n - name: Pub... | 2026-03-03T16:41:49 |
golang/go | 4dca8b3e619a321de36b99b6b514d9c01ef76e5e | 4f5d5ddf7c79305cc49c777efa3c365dd58f34df | encoding/json/v2: dual support errors.ErrUnsupported and SkipFunc
This change supports both errors.ErrUnsupported and SkipFunc.
In a future change, we will remove SkipFunc entirely in favor
of using errors.ErrUnsupported, which exists for a similar pupose.
Updates #74324
Change-Id: I5f1ada8e3914513d7d23c504f5965ca8d... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -50,7 +50,7 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n //\n // - If any type-specific functions in a [WithMarshalers] option match\n // the value type, then those functions are called to encode the value.\n-// If ... | 2026-02-10T19:34:35 |
mrdoob/three.js | 43849031e1e521b18c76a061ab681db45a2b212d | 3655e9fa2644df36a07ab4f6aa42f28fd4ce1137 | Added CSS3D + WebGL example. (#31572)
* Added CSS3D + WebGL example.
* Potential fix for code scanning alert no. 3617: Semicolon insertion
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
---------
Co-authored-by: Copilot Autofix powered by AI <6231081... | [
{
"path": "examples/css3d_mixed.html",
"patch": "@@ -0,0 +1,201 @@\n+<!DOCTYPE html>\n+<html>\n+\t<head>\n+\t\t<title>three.js css3d - mixed</title>\n+\t\t<meta charset=\"utf-8\">\n+\t\t<meta name=\"viewport\" content=\"width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0\">\n+\t\t<lin... | 2025-09-03T10:56:59 |
vuejs/vue | e632e9a0759532e1d902871ca07b02c9ac267e7c | 6afd96f2fdb59b1fce8ee7bf1cef4c348294959b | fix: allow more enumerated values for contenteditable
close #9397 | [
{
"path": "src/platforms/web/runtime/modules/attrs.js",
"patch": "@@ -14,7 +14,8 @@ import {\n getXlinkProp,\n isBooleanAttr,\n isEnumeratedAttr,\n- isFalsyAttrValue\n+ isFalsyAttrValue,\n+ convertEnumeratedValue\n } from 'web/util/index'\n \n function updateAttrs (oldVnode: VNodeWithData, vnode: V... | 2019-01-31T14:56:18 |
denoland/deno | 86a97b288d337e30ece2739a571e1a0c26f1664e | 3fe843d26be8060735b067954f9686a818362173 | test: dgram.addMembership EINVAL error regression test (#32256)
Actually fixed in #32381
Closes #31059
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> | [
{
"path": "tests/unit_node/dgram_test.ts",
"patch": "@@ -58,6 +58,20 @@ Deno.test(\"[node/dgram] udp unref\", {\n assertEquals(statusCode, 0);\n });\n \n+Deno.test(\"[node/dgram] addMembership works\", async () => {\n+ const { promise, resolve } = Promise.withResolvers<void>();\n+ const socket = createS... | 2026-03-03T16:06:31 |
golang/go | 1915ea0f1e5965f982fcc9efd79076f707623c27 | cba008453e9535840ebfcf6a038a4172008ef1fc | net/netip: optimize Prefix.String
goos: linux
goarch: amd64
pkg: net/netip
cpu: Intel(R) Core(TM) Ultra 9 285K
│ /tmp/BenchmarkPrefixString_before.txt │ /tmp/BenchmarkPrefixString_after.txt │
│ sec/op │ sec/op vs base │
PrefixString-2... | [
{
"path": "src/net/netip/netip.go",
"patch": "@@ -1592,5 +1592,23 @@ func (p Prefix) String() string {\n \tif !p.IsValid() {\n \t\treturn \"invalid Prefix\"\n \t}\n-\treturn p.ip.String() + \"/\" + strconv.Itoa(p.Bits())\n+\tvar b []byte\n+\tswitch {\n+\tcase p.ip.z == z4:\n+\t\tconst maxCap = len(\"255.255... | 2026-02-11T10:33:35 |
mrdoob/three.js | 8e16eaf1c2a06264e4b9edc798ffd6031d53c822 | f28712f27acbeed8ab6cb78d825948f93381e51b | TSL: Add bitcast functions and transpiler support (#31781)
* add bitcast to wgsl/tsl encoders
* alias GLSL functions
* glsl aliasing, change outputType based on inputType
* fix bracket spacing ah-gain
* add js-doc
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "examples/jsm/transpiler/WGSLEncoder.js",
"patch": "@@ -80,6 +80,10 @@ const wgslLib = {\n \t'textureLod': 'textureSampleLevel',\n \t'texelFetch': 'textureLoad',\n \t'textureGrad': 'textureSampleGrad',\n+\t'floatBitsToInt': 'bitcast<i32>',\n+\t'floatBitsToUint': 'bitcast<u32>',\n+\t'intBitsToFloat... | 2025-09-02T23:01:55 |
vuejs/vue | 6afd96f2fdb59b1fce8ee7bf1cef4c348294959b | 3edb99920011d64516c30d45250988e39544e418 | chore: fix flow | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -149,7 +149,7 @@ export function parse (\n \n // final children cleanup\n // filter out scoped slots\n- element.children = element.children.filter(c => !c.slotScope)\n+ element.children = element.children.filter(c => !(c: any).slotScope)\n... | 2019-01-31T02:41:56 |
denoland/deno | 5d6b10607a0512f5bcac2158cefd110b259a9aac | 75c96382a90f7de074766d66112f17838aea7a6b | fix(ext/node): handle partial writes to process.stdout/stderr (#32433)
## Summary
- Fix silent data truncation when piping >64KB through `process.stdout`
in Node compat mode
- The `_write` handler in `createWritableStdioStream` discarded the
return value of `writer.writeSync()`, assuming all bytes were always
written... | [
{
"path": "ext/node/polyfills/_process/streams.mjs",
"patch": "@@ -47,11 +47,18 @@ export function createWritableStdioStream(writer, name, warmup = false) {\n // being created from a raw fd (new Socket({ fd: 1 })), process.stdout/stderr\n // should be switched to net.Socket for non-TTY cases and... | 2026-03-03T15:56:51 |
golang/go | cba008453e9535840ebfcf6a038a4172008ef1fc | 3e4143dd440ac2621ef03d394cdc2cc0ac34acd5 | cmd/cover: exclude commented-out code from coverage instrumentation
Add logic to exclude purely commented lines from coverage instrumentation.
When instrumenting Go code for coverage, the cover tool now identifies
and excludes lines that contain only comments from coverage blocks.
This prevents commented-out code fro... | [
{
"path": "src/cmd/cover/cover.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"fmt\"\n \t\"go/ast\"\n \t\"go/parser\"\n+\t\"go/scanner\"\n \t\"go/token\"\n \t\"internal/coverage\"\n \t\"internal/coverage/encodemeta\"\n@@ -266,6 +267,142 @@ type File struct {\n \tpkg *Package\n }\n \n+// Range represents... | 2026-02-13T09:00:43 |
mrdoob/three.js | f28712f27acbeed8ab6cb78d825948f93381e51b | fecefb5ef6b9f19ea2413d36c67a836213fbc517 | Types: fix missing properties (#31772)
* Types: fix missing properties
* Update SkeletonUtils.js
Revert changes to `getHelperFromSkeleton()`.
---------
Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/jsm/loaders/lwo/IFFParser.js",
"patch": "@@ -1013,7 +1013,7 @@ class DataViewReader {\n \n \tgetFloat64() {\n \n-\t\tconst value = this.dv.getFloat64( this.offset, this.littleEndian );\n+\t\tconst value = this.dv.getFloat64( this.offset );\n \t\tthis.offset += 8;\n \t\treturn value;\n ",... | 2025-09-02T13:00:54 |
vuejs/vue | 3edb99920011d64516c30d45250988e39544e418 | 2807fd24b0c17179336f84d1725b69cd3c7a0aca | polish: warn against incorrect nested v-slot usage | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -642,6 +642,13 @@ function processSlotContent (el) {\n el\n )\n }\n+ if (!maybeComponent(el.parent)) {\n+ warn(\n+ `<template v-slot> can only appear at the root level inside ` +\n+ ... | 2019-01-31T02:33:59 |
mrdoob/three.js | 27151c8325d1dba520d4abfb5a2e1077dd59de22 | 6c7d8077a36efe80e1bb4b42fa5c2846fcd965a4 | Docs: translation Line2 in zh (#31795)
* Docs: translation Line2 in zh
* Docs:Fixed translation of line2 for consistency.
---------
Co-authored-by: zhangjl23 <zhangjl23@asiainfo.com> | [
{
"path": "docs/examples/zh/lines/Line2.html",
"patch": "@@ -0,0 +1,65 @@\n+<!DOCTYPE html>\n+<html lang=\"zh\">\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</h... | 2025-09-01T08:36:21 |
golang/go | 3e4143dd440ac2621ef03d394cdc2cc0ac34acd5 | 8a0bc29bedd45324c52cfdc7717fabfc82673e4d | doc: document GODEBUG carve out for security releases
Fixes #63741
Change-Id: I9c40fff7d3ad67565205657c5d89934a3f1f576c
Reviewed-on: https://go-review.googlesource.com/c/go/+/723102
Auto-Submit: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "doc/godebug.md",
"patch": "@@ -85,6 +85,9 @@ if the work module's `go.mod` or the workspace's `go.work`\n says `go` `1.20`, then the program defaults to `panicnil=1`,\n matching Go 1.20 instead of Go 1.21.\n \n+As an exception, GODEBUGs introduced for security releases\n+will have the new behavio... | 2025-11-21T22:40:52 |
vuejs/vue | 2807fd24b0c17179336f84d1725b69cd3c7a0aca | 5851961ca320a423003bd32fecb488f230dcd854 | fix: template v-slot should work with v-else conditions | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -366,53 +366,27 @@ function genScopedSlots (\n })\n return `scopedSlots:_u([${\n Object.keys(slots).map(key => {\n- return genScopedSlot(key, slots[key], state)\n+ return genScopedSlot(slots[key], state)\n }).join(',')\n }]${has... | 2019-01-31T02:30:29 |
mrdoob/three.js | 049e5425e6b3c8913122f66eb8f38aebfa6ee39e | 47aaa5385ee9524bb6ab5a88e22206839da956bb | TSL: Fix primitive vector conversion, `vec*` with `ivec*` (#31793) | [
{
"path": "src/nodes/utils/JoinNode.js",
"patch": "@@ -95,7 +95,9 @@ class JoinNode extends TempNode {\n \n \t\t\tif ( inputPrimitiveType !== primitiveType ) {\n \n-\t\t\t\tinputSnippet = builder.format( inputSnippet, inputPrimitiveType, primitiveType );\n+\t\t\t\tconst targetType = builder.getTypeFromLengt... | 2025-08-31T12:52:15 |
golang/go | c9cbeb0a1b08a9830a3d2d4abe0c2108e52f7647 | 92c7fcf137848ad74f88f75fc21bcb159eb08104 | encoding/json/v2: remove `unknown` tag option and DiscardUnknownMembers
WARNING: This commit contains breaking changes
for those already using GOEXPERIMENT=jsonv2.
This removes support for the `unknown` tag option and
the DiscardUnknownMembers marshal option.
The `unknown` tag option semantics are a bit too subtle
e... | [
{
"path": "src/encoding/json/internal/jsonflags/flags.go",
"patch": "@@ -120,7 +120,6 @@ const (\n \tFormatNilSliceAsNull // marshal only\n \tOmitZeroStructFields // marshal only\n \tMatchCaseInsensitiveNames // marshal or unmarshal\n-\tDiscardUnknownMembers // marshal only\n \tRejectUnknownMe... | 2026-02-03T01:52:37 |
vuejs/vue | 2afa1d056e9c50376cb63763ab6815cd245b8d69 | c9e3a5d1d92500ac1e1d1eb6f3866a9df5eecf53 | build: fix feature flags for esm builds | [
{
"path": "scripts/config.js",
"patch": "@@ -68,8 +68,7 @@ const builds = {\n alias: { he: './entity-decoder' },\n banner\n },\n- // Runtime only (ES Modules). Used by bundlers that support ES Modules,\n- // e.g. Rollup & Webpack 2\n+ // Runtime only ES modules build (for bundlers)\n 'web-run... | 2019-01-30T14:47:31 |
mrdoob/three.js | 47aaa5385ee9524bb6ab5a88e22206839da956bb | 28b0bf1b1b67c8f9dd3b017cfbedf79d0cafb695 | WebGPURenderer: Reaaply align of `frontFace` and fix `FrontFacingNode` (#31784)
* Reapply https://github.com/mrdoob/three.js/pull/31769
* fix frontFace webgpu backend
* cleanup | [
{
"path": "src/nodes/display/FrontFacingNode.js",
"patch": "@@ -1,7 +1,7 @@\n import Node from '../core/Node.js';\n import { nodeImmutable, float, Fn } from '../tsl/TSLBase.js';\n \n-import { BackSide, DoubleSide, WebGLCoordinateSystem } from '../../constants.js';\n+import { BackSide, DoubleSide } from '../... | 2025-08-31T12:49:10 |
golang/go | 92c7fcf137848ad74f88f75fc21bcb159eb08104 | e5df06bc55f18ff92fb1c2fce2af69e80d9b3194 | time: document that Parse does not support leap seconds
Fixes #50888
Change-Id: I2691442d7fccd716cd19939cf3931317e21ee4ed
Reviewed-on: https://go-review.googlesource.com/c/go/+/743060
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-... | [
{
"path": "src/time/format.go",
"patch": "@@ -1002,6 +1002,9 @@ func skip(value, prefix string) (string, error) {\n // For layouts specifying the two-digit year 06, a value NN >= 69 will be treated\n // as 19NN and a value NN < 69 will be treated as 20NN.\n //\n+// Timestamps representing leap seconds (seco... | 2026-02-07T14:45:46 |
denoland/deno | d45142b6d82b26945a6b43e0e57355a3a8631888 | 83e374686079a2f067115e60ad91ec38f4f6118b | fix(ext/node): make UDP socket ops synchronous, implement missing dgram methods (#32381)
## Summary
- Creates a new `NodeUdpSocketResource` in `ext/node` that stores
`tokio::net::UdpSocket` directly (no `AsyncRefCell`), making all socket
config operations synchronous
- Replaces `udp_wrap.ts`'s dependency on `ext:deno... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -337,6 +337,20 @@ deno_core::extension!(deno_node,\n ops::inspector::op_inspector_disconnect,\n ops::inspector::op_inspector_emit_protocol_event,\n ops::inspector::op_inspector_enabled,\n+ ops::udp::op_node_udp_bind,\n+ ops::udp::op_node_udp_join_m... | 2026-03-03T14:55:23 |
mrdoob/three.js | c08ca65326d25c7fcbe93cfe392096d525c52e0d | efc8d3aabfd875abcf2260569db547ae344b34e6 | RenderObject: Fix cache key for instanced meshes. (#31783) | [
{
"path": "src/renderers/common/RenderObject.js",
"patch": "@@ -770,7 +770,7 @@ class RenderObject {\n \n \t\t}\n \n-\t\tif ( object.count > 1 ) {\n+\t\tif ( object.isInstancedMesh || object.count > 1 ) {\n \n \t\t\t// TODO: https://github.com/mrdoob/three.js/pull/29066#issuecomment-2269400850\n ",
"add... | 2025-08-29T20:31:34 |
vuejs/vue | 1868561442507690f07579c258f4db19a650fb9a | 8cb2069aa44f833259781f135c7b6cf9e21e15c8 | fix: fix checkbox event edge case in Firefox | [
{
"path": "src/platforms/web/runtime/modules/dom-props.js",
"patch": "@@ -45,7 +45,7 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n // In Chrome / Firefox, click event fires before change, thus having this problem.\n // In Safari / Edge, the order is opposite.\n /... | 2019-01-24T20:43:06 |
golang/go | e5df06bc55f18ff92fb1c2fce2af69e80d9b3194 | b464a924a9bdd00627cbc3baca86a0e042fccb8a | time: document that LoadLocation creates new Location instances
Fixes #77385
Change-Id: I7e7ddb1c71f0aebd893f640d476b273e229b059a
Reviewed-on: https://go-review.googlesource.com/c/go/+/743040
Reviewed-by: Ian Lance Taylor <iant@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea... | [
{
"path": "src/time/zoneinfo.go",
"patch": "@@ -645,12 +645,13 @@ var errLocation = errors.New(\"time: invalid location name\")\n var zoneinfo *string\n var zoneinfoOnce sync.Once\n \n-// LoadLocation returns the Location with the given name.\n+// LoadLocation returns a [Location] with the given name.\n //\... | 2026-02-07T14:38:05 |
denoland/deno | c15deead44dcc7208a045ba0503e2bf8e9cf05cf | 3f459413b2d18458268024d1ce0dad715240c2ce | fix(npm): NPM_CONFIG_REGISTRY correctly overrides .npmrc (#32394)
Co-authored-by: David Sherret <dsherret@gmail.com> | [
{
"path": "Cargo.lock",
"patch": "@@ -2779,6 +2779,7 @@ dependencies = [\n \"serde\",\n \"serde_json\",\n \"sha2\",\n+ \"sys_traits\",\n \"thiserror 2.0.12\",\n \"tokio\",\n \"url\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/lsp/npm.rs",
"patch":... | 2026-03-03T12:13:11 |
mrdoob/three.js | 9eaea731fd9197ef4c74751a45eff6afc6e6032b | cde2d20d6277d3e3426b76959b808a8b122fdcd7 | Maunal: Fix double open hyperlink by open in new tab (#31780)
* Add target blank to open new tab
* Add back zh and fix ru link | [
{
"path": "manual/en/lights.html",
"patch": "@@ -42,14 +42,14 @@ <h1>Lights</h1>\n const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);\n +camera.position.set(0, 10, 20);\n </pre>\n-<p>Next let's add <a href=\"/docs/#examples/en/controls/OrbitControls\"><code class=\"notranslate\" translate=\... | 2025-08-29T08:19:46 |
mrdoob/three.js | cde2d20d6277d3e3426b76959b808a8b122fdcd7 | 5271d639618eb5b8d791132b679e7832cb3006b1 | WebGPURenderer: Fix scissor value bound check (#31782) | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -1399,20 +1399,6 @@ class Renderer {\n \t\trenderContext.scissorValue.width >>= activeMipmapLevel;\n \t\trenderContext.scissorValue.height >>= activeMipmapLevel;\n \n-\t\trenderContext.scissorValue.max( _vector4.set( 0, 0, 0, 0 ) );\n-\n-\t\tif ( re... | 2025-08-29T05:24:30 |
vuejs/vue | 8cb2069aa44f833259781f135c7b6cf9e21e15c8 | 32072e8a8853584b1f8763f42cd845fbc55f4dc2 | test: fix tests in IE/Edge | [
{
"path": "test/unit/features/component/component-scoped-slot.spec.js",
"patch": "@@ -458,7 +458,7 @@ describe('Component scoped slot', () => {\n // new in 2.6, unifying all slots as functions\n it('non-scoped slots should also be available on $scopedSlots', () => {\n const vm = new Vue({\n- te... | 2019-01-24T15:05:39 |
denoland/deno | 74cc882fe924caeaea9abc7604dca76e4e83b980 | 0cfe40a82c91b3dfb8a3b4a818dbf190156bbbf7 | fix(ext/node): gracefully exit on invalid NODE_CHANNEL_FD instead of panicking (#32421)
## Summary
- When process managers like PM2 set `NODE_CHANNEL_FD` to a file
descriptor that isn't a valid IPC pipe, Deno would panic during
bootstrap with "Bootstrap exception"
- Now it prints a clear error message and exits with c... | [
{
"path": "ext/node/ops/ipc.rs",
"patch": "@@ -186,18 +186,28 @@ mod impl_ {\n log::debug!(\"op_node_child_ipc_pipe: {:?}, {:?}\", fd, serialization);\n let ref_tracker = IpcRefTracker::new(state.external_ops_tracker.clone());\n match serialization {\n- ChildIpcSerialization::Json => Ok(Som... | 2026-03-03T10:46:09 |
golang/go | b464a924a9bdd00627cbc3baca86a0e042fccb8a | 30d5c1b0572f7d021def277097df6a21f300995e | cmd/go: do not collect build information for test packages when not needed
When build information is not needed for go list output (when -export=false and Stale and StaleReason fields are not printed), the "SuppressBuildInfo" option is set to true, so that cmd/go/internal/load does not collect it (in particular VCS in... | [
{
"path": "src/cmd/go/internal/load/test.go",
"patch": "@@ -294,7 +294,7 @@ func TestPackagesAndErrors(loaderstate *modload.State, ctx context.Context, done\n \n \tpb := p.Internal.Build\n \tpmain.DefaultGODEBUG = defaultGODEBUG(loaderstate, pmain, pb.Directives, pb.TestDirectives, pb.XTestDirectives)\n-\ti... | 2026-02-03T13:25:23 |
vuejs/vue | ba0ebd4771ddb5c56c1261f82c842b57ca7163a6 | ba9907c73c01b1b52afdf9486c178238a4a68169 | fix: async edge case fix should apply to more browsers
also optimize fix performance by avoiding calls to performance.now() | [
{
"path": "src/core/observer/scheduler.js",
"patch": "@@ -7,7 +7,8 @@ import { callHook, activateChildComponent } from '../instance/lifecycle'\n import {\n warn,\n nextTick,\n- devtools\n+ devtools,\n+ inBrowser\n } from '../util/index'\n \n export const MAX_UPDATE_COUNT = 100\n@@ -32,10 +33,35 @@ fu... | 2019-01-23T23:41:50 |
golang/go | 30d5c1b0572f7d021def277097df6a21f300995e | a44ed023f600de1b8fbeb2be514ec20c964b3330 | net: always set the servers field to defaultNS
When the field is parsed from a file, it would never
have len(servers) == 0, lets enforce that and update
test cases where we had it wrong.
Change-Id: I7fa6ebcf63b9fe20fbbf791113ca948d6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/743020
Auto-Submit: Mic... | [
{
"path": "src/net/conf_test.go",
"patch": "@@ -142,7 +142,7 @@ func TestConfHostLookupOrder(t *testing.T) {\n \t\t\tc: &conf{\n \t\t\t\tgoos: \"openbsd\",\n \t\t\t},\n-\t\t\tresolv: &dnsConfig{lookup: []string{\"bind\", \"file\"}},\n+\t\t\tresolv: &dnsConfig{servers: defaultNS, lookup: []string{\"bind\", \... | 2026-02-07T10:03:17 |
denoland/deno | 25dbe4c8b95a1c7bc6cee5880d63f6e73c117a78 | 28ec7c0ecdaf2648a8796f8766adac9ab09231e6 | fix(ext/node): support SEC1 EC private key import/export in `node:crypto` (#32401)
## Summary
- Fix SEC1 EC private key import failing with "malformed or missing
named curve in ec parameters" when the optional `parameters` field is
absent
- Fix SEC1 EC private key export to include the curve OID in the
`parameters` f... | [
{
"path": "ext/node_crypto/keys.rs",
"patch": "@@ -719,6 +719,50 @@ pub enum AsymmetricPublicKeyError {\n UnsupportedPrivateKeyOid,\n }\n \n+/// Parse an EC private key from SEC1 DER bytes using the named curve OID.\n+/// The curve OID is required — inferring from key length is unreliable\n+/// (e.g. P-25... | 2026-03-03T10:01:35 |
mrdoob/three.js | 5271d639618eb5b8d791132b679e7832cb3006b1 | b59b2d6d0a0850e6de88ce89fbb68206bf3c9d98 | Examples: Add TSL Procedural Wood Material (#31640)
* Added webgpu_procedural_wood
(cherry picked from commit fb0d8832c2e703e01998e235b8604504e909dd3c)
* Robustness
(cherry picked from commit 5711d8f977e8d737a0c5c17f3c6dc74b4548c979)
* Fixed Cedar
(cherry picked from commit d1813a26467f64a5bb4340e20f2d24823648b41... | [
{
"path": "examples/files.json",
"patch": "@@ -461,6 +461,7 @@\n \t\t\"webgpu_tsl_vfx_flames\",\n \t\t\"webgpu_tsl_vfx_linkedparticles\",\n \t\t\"webgpu_tsl_vfx_tornado\",\n+\t\t\"webgpu_tsl_wood\",\n \t\t\"webgpu_video_frame\",\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_volume_caustics\",",
"addit... | 2025-08-29T03:11:04 |
vuejs/vue | b0f2f830e62b21a93f22d12ac6402e70354e849c | 42fdf3f8378e5dc379808a4fa67b39c4a74ae191 | chore: fix flow | [
{
"path": "flow/options.js",
"patch": "@@ -44,7 +44,7 @@ declare type ComponentOptions = {\n beforeDestroy?: Function;\n destroyed?: Function;\n errorCaptured?: () => boolean | void;\n- ssrPrefetch?: Function;\n+ serverPrefetch?: Function;\n \n // assets\n directives?: { [key: string]: Object };... | 2019-01-18T21:46:49 |
golang/go | a44ed023f600de1b8fbeb2be514ec20c964b3330 | 31768104cbe710d2358d5da34b4c223ad3ff2c6f | cmd/go: fix panic in 'go run -C'
Fixes #77483
Change-Id: Ie772ce1619beadc1a6db87aaf28a8d9c31f7d1b8
Reviewed-on: https://go-review.googlesource.com/c/go/+/742860
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Ian... | [
{
"path": "src/cmd/go/internal/toolchain/select.go",
"patch": "@@ -658,6 +658,9 @@ func maybeSwitchForGoInstallVersion(loaderstate *modload.State, minVers string)\n \t\t}\n \n \t\tif bf, ok := f.Value.(interface{ IsBoolFlag() bool }); !ok || !bf.IsBoolFlag() {\n+\t\t\tif len(args) == 0 {\n+\t\t\t\treturn\n+... | 2026-02-06T18:52:22 |
mrdoob/three.js | 5b6f5ebb44853f252a860094f737942895d6b05f | 4ac4e3ee9799457163a58566d35240cbe27e91b4 | Types: fix generic types (#31773)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/jsm/math/Lut.js",
"patch": "@@ -45,7 +45,7 @@ class Lut {\n \t\t/**\n \t\t * The currently selected color map.\n \t\t *\n-\t\t * @type {Array}\n+\t\t * @type {Array<Array<number>>}\n \t\t */\n \t\tthis.map = [];\n \n@@ -219,7 +219,7 @@ class Lut {\n \t * Adds a color map to this Lut inst... | 2025-08-29T02:57:36 |
denoland/deno | 5b5f84c8488dab766e8687c649c0a11b89b4006a | 01f99e8133a4efd351e65cbaa8a6b7eb1e5b49eb | fix(ext/crypto): fix P-521 EC key export for all formats (#32412)
## Summary
- **Fixed P-521 key generation** to output PKCS8 DER (matching
P-256/P-384 behavior) instead of raw scalar bytes, which broke JWK
private, JWK public (from private handle), and SPKI exports
- **Added P-521 JWK private export arm** in the `ex... | [
{
"path": "ext/crypto/export_key.rs",
"patch": "@@ -410,7 +410,23 @@ fn export_key_ec(\n Err(SharedError::ExpectedValidPublicECKey.into())\n }\n }\n- _ => Err(ExportKeyError::UnsupportedNamedCurve),\n+ EcNamedCurve::P521 => {\n+ let ec_key = p521::SecretK... | 2026-03-03T09:50:53 |
vuejs/vue | a47a0ee287116df7f2b89b956fdb3a3ea6c6330c | 732bf878c1f8b60e075990ec490977758d4fb886 | workflow: fix release script [ci skip] | [
{
"path": "scripts/release.sh",
"patch": "@@ -57,10 +57,12 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then\n git add -f \\\n dist/*.js \\\n packages/vue-server-renderer/basic.js \\\n- packages/vue-server-renderer/build.js \\\n+ packages/vue-server-renderer/build.dev.js \\\n+ packages/vue-server-render... | 2019-01-16T16:22:02 |
mrdoob/three.js | 4d69cdce0a02c7996171389ea0979f8fe238cb96 | cf60b969c46b0b27e1262b1e24dff908480a89cf | GLSLNodeBuilder: Fix `texture()` code generation for depth texture (#31770)
* Fix texture() code generation
* Simplify conditionals | [
{
"path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js",
"patch": "@@ -457,31 +457,19 @@ ${ flowData.code }\n \t */\n \tgenerateTexture( texture, textureProperty, uvSnippet, depthSnippet, offsetSnippet ) {\n \n-\t\tif ( texture.isDepthTexture ) {\n-\n-\t\t\tif ( depthSnippet ) uvSnippet = `vec4( $... | 2025-08-28T19:50:41 |
golang/go | 71232268768eab3002d2ae473b49f74b74e89cdf | a6c48f2ca9efdf6c45d434767a30b9d25824497d | cmd/go/internal/bug: sync go bug headings with GitHub form
Keep the issue body generated by go bug in the same order as the
GitHub bug form: what happened first, then what was expected.
This updates the footer headings and replaces the old
"What did you see instead?" wording.
Fixes #77488.
Change-Id: Id20d68c1e109a... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -76,11 +76,11 @@ A link on go.dev/play is best.\n \n \n \n-### What did you expect to see?\n+### What did you see happen?\n \n \n \n-### What did you see instead?\n+### What did you expect to see?\n \n `\n ",
"additions": 2,
"deletions": 2,
... | 2026-02-09T05:01:56 |
denoland/deno | 01f99e8133a4efd351e65cbaa8a6b7eb1e5b49eb | 88bd1bc158d4e9860afc16429ceeee6bd4440eb6 | fix: validate cron schedule when using cron socket (#32406) | [
{
"path": "ext/cron/socket.rs",
"patch": "@@ -490,6 +490,11 @@ impl CronHandler for SocketCronHandler {\n return Err(CronError::RejectedError(reason.clone()));\n }\n \n+ spec\n+ .cron_schedule\n+ .parse::<saffron::Cron>()\n+ .map_err(|_| CronError::InvalidCron)?;\n+\n let (in... | 2026-03-03T09:50:33 |
mrdoob/three.js | cf60b969c46b0b27e1262b1e24dff908480a89cf | 3714bd11e6dd956b062a111a7d4de1dba382daf3 | WebGPUTextureUtils: Fix readback buffer size. (#31765) | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -540,7 +540,7 @@ class WebGPUTextureUtils {\n \n \t\tconst readBuffer = device.createBuffer(\n \t\t\t{\n-\t\t\t\tsize: width * height * bytesPerTexel,\n+\t\t\t\tsize: ( height - 1 ) * bytesPerRow + width * bytesPerTexel, // see https... | 2025-08-28T08:50:39 |
vuejs/vue | aef5b4e47811cb842315bd27d6919650da45279b | 584e89da4ab17e1ebdae0ae10be77ef9d230c7a0 | fix(ssr): should render 0 as valid value for style property with unit | [
{
"path": "src/platforms/web/server/modules/style.js",
"patch": "@@ -23,7 +23,8 @@ export function genStyle (style: Object): string {\n function normalizeValue(key: string, value: any): string {\n if (\n typeof value === 'string' ||\n- (typeof value === 'number' && noUnitNumericStyleProps[key])\n+ ... | 2019-01-12T07:07:17 |
golang/go | 2a1d605e7f5a0f8870abb9cc26edf27db3ad5452 | f745645e58d8c2da47da402871d92eab4c498187 | cmd/compile: fix slice bounds check elimination after function inlining
When creating a dynamically-sized slice, the compiler attempts to use a
stack-allocated buffer if the slice does not escape and its buffer size
is ≤ 32 bytes.
In this case, the SSA will contain a (OpPhi (OpSliceMake) (OpSliceMake))
value: one OpS... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1017,6 +1017,8 @@\n (ConstNil <v.Type.Elem().PtrTo()>)\n (Const64 <typ.Int> [0])\n (Const64 <typ.Int> [0]))\n+(SliceLen (Phi (SliceMake _ x _) (SliceMake _ x _))) => x\n+(SliceCap (Phi (SliceMake _ _ x) (SliceMake _ _ x))... | 2026-01-31T03:23:41 |
denoland/deno | 291532f0e5723c2498afc50e19a906ba9a5e0ee2 | f6d5b957cb5d5ad398bd580e44c963588c5b36e3 | fix(ext/node): support RSA PSS padding option in crypto sign/verify (#32269)
## Summary
- Pass the `padding` option from `crypto.createSign().sign()` /
`crypto.createVerify().verify()` through to the Rust signing ops
- Handle `RSA_PKCS1_PSS_PADDING` (6) for regular RSA keys by using PSS
signing/verification instead of... | [
{
"path": "ext/node/polyfills/internal/crypto/sig.ts",
"patch": "@@ -66,6 +66,10 @@ export interface VerifyKeyObjectInput extends SigningOptions {\n key: KeyObject;\n }\n \n+function getPadding(options) {\n+ return getIntOption(\"padding\", options);\n+}\n+\n function getSaltLength(options) {\n return ... | 2026-03-03T09:28:52 |
mrdoob/three.js | 3714bd11e6dd956b062a111a7d4de1dba382daf3 | 0cd49e34da71c480b7864ac260b2661601244971 | WebGPURenderer: Fix timestamp query conflict (#31762)
* fix timestamp conflict
* cleanup
* cleanup | [
{
"path": "src/renderers/common/Backend.js",
"patch": "@@ -439,6 +439,24 @@ class Backend {\n \n \t// utils\n \n+\t/**\n+\t * Returns a unique identifier for the given render context that can be used\n+\t * to allocate resources like occlusion queries or timestamp queries.\n+\t *\n+\t * @param {RenderContex... | 2025-08-27T19:44:13 |
vuejs/vue | 4f61d5b73b2e96b9570959dd2a540bc439d0f3bd | bc97ff956e373be14b67da4c57db207c1c889706 | chore: fix flow | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -27,7 +27,7 @@ export class CodegenState {\n this.dataGenFns = pluckModuleFunction(options.modules, 'genData')\n this.directives = extend(extend({}, baseDirectives), options.directives)\n const isReservedTag = options.isReservedTag || no\n-... | 2019-01-12T05:42:09 |
denoland/deno | f6d5b957cb5d5ad398bd580e44c963588c5b36e3 | 984300a647b6a6f663c3c14708fa60b818205e82 | perf(install): split tarball extraction into decompress + write, limit write concurrency (#32408)
Split tarball extraction into a CPU-bound decompression phase and an
I/O-bound filesystem write phase. Gate the write phase with a semaphore
to reduce fs contention.
This is on a create-next-app project.
```
❯ hyperfine ... | [
{
"path": "Cargo.lock",
"patch": "@@ -2812,6 +2812,7 @@ dependencies = [\n \"tar\",\n \"tempfile\",\n \"thiserror 2.0.12\",\n+ \"tokio\",\n \"url\",\n ]\n ",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "libs/npm_cache/Cargo.toml",
"patch": "@@ -40,6 +40,7 @... | 2026-03-03T09:23:38 |
mrdoob/three.js | 0cd49e34da71c480b7864ac260b2661601244971 | b261c86ba5c6a31603c15ddbcf091e5bb339629f | Manual: Fix missed href parameters for manual/#xx/lights (#31763)
* Fix missed url parameters
* Assign en for non-exist OrbitControls | [
{
"path": "manual/en/lights.html",
"patch": "@@ -42,14 +42,14 @@ <h1>Lights</h1>\n const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);\n +camera.position.set(0, 10, 20);\n </pre>\n-<p>Next let's add <a href=\"/docs/#examples/controls/OrbitControls\"><code class=\"notranslate\" translate=\"no... | 2025-08-27T18:31:39 |
golang/go | f745645e58d8c2da47da402871d92eab4c498187 | b45c59c443a0aac0abed3f35e8e307ec5e1c587b | cmd/compile/internal/bitvec: remove 2GB allocation limit in NewBulk
Remove the "NewBulk too big" check that prevented bulk bit vector
allocations exceeding ~2GB. This limit was overly restrictive and
caused compilation failures for large generated code.
The actual constraint is in the runtime's stackmap reader, which... | [
{
"path": "src/cmd/compile/internal/bitvec/bv.go",
"patch": "@@ -8,7 +8,6 @@ import (\n \t\"math/bits\"\n \n \t\"cmd/compile/internal/base\"\n-\t\"cmd/internal/src\"\n )\n \n const (\n@@ -34,12 +33,9 @@ type Bulk struct {\n \tnword int32\n }\n \n-func NewBulk(nbit int32, count int32, pos src.XPos) Bulk {\n+... | 2026-01-13T22:27:32 |
vuejs/vue | 0d2e9c46f16e9ec5bd0f3eebd2aa31c7f7493856 | 743edacdb6fa0bb711e860b68373274f50c8baa5 | fix(core): dedupe lifecycle hooks during options merge
The fix landed in #9199 causes further extended constructors used as
mixins to drop options from its inheritance chain, so a different fix
is needed. | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -117,32 +117,12 @@ export function resolveConstructorOptions (Ctor: Class<Component>) {\n function resolveModifiedOptions (Ctor: Class<Component>): ?Object {\n let modified\n const latest = Ctor.options\n- const extended = Ctor.extendOptions\n const... | 2019-01-11T22:51:45 |
denoland/deno | 984300a647b6a6f663c3c14708fa60b818205e82 | f5f84cd58b7ae4602d82016a0e58cfeff010564e | fix(ext/node): CBC decipher setAutoPadding(false) incorrectly strips bytes (#32403)
## Summary
- `Decipheriv.final()` unconditionally stripped PKCS7 padding from
decrypted output regardless of the `#autoPadding` flag, corrupting data
when `setAutoPadding(false)` was used
- Made the PKCS7 padding stripping conditional... | [
{
"path": "ext/node/polyfills/internal/crypto/cipher.ts",
"patch": "@@ -485,7 +485,13 @@ export class Decipheriv extends Transform implements Cipher {\n throw new Error(\"Invalid final block size\");\n }\n \n- buf = buf.subarray(0, 16 - buf.at(-1)); // Padded in Pkcs7 mode\n+ if (this.#autoP... | 2026-03-03T09:09:00 |
mrdoob/three.js | b261c86ba5c6a31603c15ddbcf091e5bb339629f | 4047f2e8bfe92ed947eebdb532dc38d22b0c3a0e | TSL: Fix `bitcast` type resolver (#31746)
* fix bitcast on WebGPU
* remove comments
* simpler method
* remove extraneous conditional
* allow for possibility of future MathNode operations whose b and ctypes are not necessarily of type node
* fix spacing
* add bitcast node
* add bitcastNode
* use NodeProxyIntent... | [
{
"path": "src/nodes/Nodes.js",
"patch": "@@ -57,6 +57,9 @@ export { default as MemberNode } from './utils/MemberNode.js';\n export { default as DebugNode } from './utils/DebugNode.js';\n export { default as EventNode } from './utils/EventNode.js';\n \n+// math\n+export { default as BitcastNode } from './ma... | 2025-08-27T17:43:02 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.