repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vuejs/vue | 2b588b754e5d9c2eea31c56eb735afd6ce37ec5c | 43211fd519f462af2530556d905b38d942f61294 | Update ComponentOptions (#3651)
* Update ComponentOptions
* Make ComponentOptions as a Generic Interface
* Update some interfaces and types related to ComponentOptions
* Update tests
* Fix | [
{
"path": "types/index.d.ts",
"patch": "@@ -6,12 +6,12 @@ import * as VNode from \"./vnode\";\n // `Vue` in `export = Vue` must be a namespace\n // All available types are exported via this namespace\n declare namespace Vue {\n- export type ComponentOptions = Options.ComponentOptions;\n+ export type Compo... | 2016-09-13T23:59:14 |
denoland/deno | 86456d321b329295efabd6a53fe0cba8c1b3e990 | 874cb8e1ae068859ebecf11aaa34b4235e2040d9 | fix: upgrade deno_core to 0.352.1 (#30119) | [
{
"path": "Cargo.lock",
"patch": "@@ -1851,9 +1851,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.352.0\"\n+version = \"0.352.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"f79c49675a4356068f4dfae6513f7e0097e1ee8548c098a68f5bbf9a93330c5... | 2025-07-16T09:39:56 |
golang/go | 00b8474e47a1f0381170734604a7ce8123d7146d | e36c5aead681d8264f1fac725f2a15c1ca2b895a | cmd/trace: don't filter events for profile by whether they have stack
Right now the profile-from-trace code blindly discards events that don't
have a stack, but this means it can discard 'end' events for goroutine
time ranges that don't have stacks, like when a goroutine exits a
syscall. This means we drop stack sampl... | [
{
"path": "src/cmd/trace/pprof.go",
"patch": "@@ -153,10 +153,6 @@ func makeComputePprofFunc(state trace.GoState, trackReason func(string) bool) co\n \t\t\tif ev.Kind() != trace.EventStateTransition {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tstack := ev.Stack()\n-\t\t\tif stack == trace.NoStack {\n-\t\t\t\tcont... | 2025-08-07T18:53:00 |
mrdoob/three.js | bac3cc70d3c7c387098e2713d512a8a4303e021c | cb24e42a65172ec475ff23a4abe520b724076a24 | BatchedMesh: fix radix sort stability (#28401)
* return z based on the the camera forward z value
* Fix sort in example
* Remove unused argument | [
{
"path": "examples/webgl_mesh_batch.html",
"patch": "@@ -282,7 +282,7 @@\n \n \t\t//\n \n-\t\tfunction sortFunction( list, camera ) {\n+\t\tfunction sortFunction( list ) {\n \n \t\t\t// initialize options\n \t\t\tthis._options = this._options || {\n@@ -293,10 +293,22 @@\n \t\t\tconst options = this._option... | 2024-05-18T07:57:04 |
denoland/deno | 141e6aec4ba778933277d83af238effb625986e0 | 2dd8e085e29d6d03000732dd214769aa91bc846c | fix: remove unused functions from jsdocs (#30016)
Fixes #30004 | [
{
"path": "ext/web/06_streams.js",
"patch": "@@ -926,10 +926,9 @@ const RESOURCE_REGISTRY = new SafeFinalizationRegistry((rid) => {\n const _readAll = Symbol(\"[[readAll]]\");\n const _original = Symbol(\"[[original]]\");\n /**\n- * Create a new ReadableStream object that is backed by a Resource that\n- * i... | 2025-07-15T07:35:18 |
vuejs/vue | 45ff6218c15f118d926a27ac90e274f3c999d77f | d0c13c7e6672d5f36e88179ca75d8c04b9eb0115 | handle multiline atribute value parsing in IE (fix #3663) | [
{
"path": "flow/compiler.js",
"patch": "@@ -14,6 +14,7 @@ declare type CompilerOptions = {\n preserveWhitespace?: boolean;\n isFromDOM?: boolean;\n shouldDecodeTags?: boolean;\n+ shouldDecodeNewlines?: boolean;\n \n // runtime user-configurable\n delimiters?: [string, string]; // template delimit... | 2016-09-13T12:43:25 |
mrdoob/three.js | b392786007245148206faf142c75dda5c6886306 | 013e93d5b572ea28d59056798954fccdbd53d24f | Editor: Fix serialization of commands. (#28405)
* Editor: Fix serialization of commands.
* Editor: Restore order in `fromJSON()`.
* Editor: Fix regression when adding/removing scripts. | [
{
"path": "editor/js/Sidebar.Scene.js",
"patch": "@@ -522,13 +522,13 @@ function SidebarScene( editor ) {\n \n \tsignals.scriptAdded.add( function () {\n \n-\t\tsignals.objectChanged.dispatch( editor.selected );\n+\t\tif ( editor.selected !== null ) signals.objectChanged.dispatch( editor.selected );\n \n \t... | 2024-05-17T17:10:32 |
golang/go | e36c5aead681d8264f1fac725f2a15c1ca2b895a | 150fae714eb2bcf0a5fb216ac0e5c7fd76f37e02 | log/slog: add multiple handlers support for logger
Fixes #65954
Change-Id: Ib01c6f47126ce290108b20c07479c82ef17c427c
GitHub-Last-Rev: 34a36ea4bf099b2ad30f35e639155853ff73ef46
GitHub-Pull-Request: golang/go#74840
Reviewed-on: https://go-review.googlesource.com/c/go/+/692237
LUCI-TryBot-Result: Go LUCI <golang-scoped@l... | [
{
"path": "api/next/65954.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg log/slog, func NewMultiHandler(...Handler) *MultiHandler #65954\n+pkg log/slog, method (*MultiHandler) Enabled(context.Context, Level) bool #65954\n+pkg log/slog, method (*MultiHandler) Handle(context.Context, Record) error #65954\n+pkg log/slo... | 2025-08-27T14:27:31 |
denoland/deno | 2dd8e085e29d6d03000732dd214769aa91bc846c | 489d9bbdcf382bb9a07ba64a9792de6e84033f1b | fix(lint): do not panic for many overlapping lint fixes (#30104) | [
{
"path": "cli/tools/lint/linter.rs",
"patch": "@@ -329,7 +329,7 @@ fn apply_lint_fixes(\n }\n \n let file_start = text_info.range().start;\n- let mut quick_fixes = diagnostics\n+ let quick_fixes = diagnostics\n .iter()\n // use the first quick fix\n .filter_map(|d| d.details.fixes.first()... | 2025-07-14T18:16:44 |
mrdoob/three.js | 013e93d5b572ea28d59056798954fccdbd53d24f | 5f21c50af209937a22d25ef991316f783c18a8bd | TSL: Fix `tslFn()` output type called before build (#28409) | [
{
"path": "examples/jsm/nodes/shadernode/ShaderNode.js",
"patch": "@@ -251,9 +251,15 @@ class ShaderCallNodeInternal extends Node {\n \n \tgetNodeType( builder ) {\n \n-\t\tconst { outputNode } = builder.getNodeProperties( this );\n+\t\tconst properties = builder.getNodeProperties( this );\n+\n+\t\tif ( pro... | 2024-05-17T17:01:21 |
golang/go | b8cc907425c4b851d2b941cf689cf8177ea8a153 | 8c27a808905b0611b0a7b7bbff08819206be3b86 | cmd/internal/obj/loong64: fix the usage of offset in the instructions [X]VLDREPL.{B/H/W/D}
The previously defined usage of offset was ambiguous and not easy to understand.
For example, to fetch 4 bytes of data from the address base+8 and
broadcast it to each word element of vector register V5, the assembly
implementat... | [
{
"path": "src/cmd/asm/internal/asm/testdata/loong64enc1.s",
"patch": "@@ -538,13 +538,29 @@ lable2:\n \n \t// Load data from memory and broadcast to each element of a vector register: VMOVQ offset(Rj), <Vd>.<T>\n \tVMOVQ\t\t(R4), V0.B16\t// 80008030\n-\tVMOVQ\t\t1(R4), V1.H8\t// 81044030\n-\tVMOVQ\t\t2(... | 2025-08-29T08:20:16 |
vuejs/vue | 6f8316fe8f8e0a0697af9a625004097ad59eadc9 | 673dec6040bcfc510866761b38439b9d34dd91f7 | toObject should not mutate original objects (fix #3657) | [
{
"path": "src/shared/util.js",
"patch": "@@ -170,8 +170,8 @@ export function isPlainObject (obj: any): boolean {\n * Merge an Array of Objects into a single Object.\n */\n export function toObject (arr: Array<any>): Object {\n- const res = arr[0] || {}\n- for (let i = 1; i < arr.length; i++) {\n+ cons... | 2016-09-11T10:17:59 |
denoland/deno | fc2d149ab4d6568a423ba38653eb05b67829bfbf | e6ffdcb4e9a95c449bd1c74a3246912ffefbc048 | fix(bundle): default "jsxImportSource" to "react" (#30082) | [
{
"path": "Cargo.lock",
"patch": "@@ -1683,9 +1683,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_ast\"\n-version = \"0.48.1\"\n+version = \"0.48.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0ced09fdb8884e29716cc0691e8510f9c655762bbb9da3111dacc0a2ef6e8960\"... | 2025-07-11T16:57:07 |
mrdoob/three.js | 5f21c50af209937a22d25ef991316f783c18a8bd | f127bdd31190658e762d6456b366f8a6528b6eda | Nodes: NormalNode - Improve tree shaking using TSL (#28408)
* NormalNode: Improve tree shaking using TSL
* fix attribute default value | [
{
"path": "examples/jsm/nodes/Nodes.js",
"patch": "@@ -92,7 +92,7 @@ export { default as MorphNode, morphReference } from './accessors/MorphNode.js';\n export { default as TextureBicubicNode, textureBicubic } from './accessors/TextureBicubicNode.js';\n export { default as ModelNode, modelDirection, modelVie... | 2024-05-17T16:39:27 |
golang/go | b7c20413c5b78b7dfc7f7de52f333a8ca85cd55b | df290384864c0b3cbb557ef11fc95a29d52f6aca | runtime: remove obsolete osArchInit function
The osArchInit function was introduced as a workaround for a Linux kernel bug
that corrupted vector registers on x86 CPUs during signal delivery.
The bug was introduced in Linux 5.2 and fixed in 5.3.15, 5.4.2, and all 5.5 and later kernels.
The fix was also back-ported by m... | [
{
"path": "src/runtime/os_freebsd_riscv64.go",
"patch": "@@ -1,7 +0,0 @@\n-// Copyright 2022 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-package runtime\n-\n-func osArchInit() {}",
"additions": 0,
... | 2025-09-03T14:15:06 |
vuejs/vue | 673dec6040bcfc510866761b38439b9d34dd91f7 | b47d773c58de077e40edd54a3f5bde2bdfa5fd3d | fix duplicate slot warning spelling | [
{
"path": "src/core/instance/render.js",
"patch": "@@ -164,7 +164,7 @@ export function renderMixin (Vue: Class<Component>) {\n // warn duplicate slot usage\n if (slotNodes && process.env.NODE_ENV !== 'production') {\n slotNodes._rendered && warn(\n- `Duplicate presense of slot \"${name}... | 2016-09-10T08:41:12 |
mrdoob/three.js | 3b28707d40be3cc77274ff76c1a81414a96644a7 | de367cb2e866d4ffc9bd4b23dddd137a93ee65ba | BatchedMesh: add getColorAt and setColorAt (#28255)
* BatchedMesh: add getColorAt and setColorAt
* pr fixes and suggestions
* bring back previous condition to recompile shader
* add colorSpace to DataTexture
* change instance to geometry in docs | [
{
"path": "docs/api/en/objects/BatchedMesh.html",
"patch": "@@ -129,6 +129,19 @@ <h3>[method:this setCustomSort]( [param:Function sortFunction] )</h3>\n \t\t\tin the list include a \"z\" field to perform a depth-ordered sort with.\n \t\t</p>\n \n+\t\t<h3>\n+\t\t\t[method:undefined getColorAt]( [param:Intege... | 2024-05-17T08:33:14 |
denoland/deno | 0a01d63080e98d61f03ee3e922ab10e116ac6916 | 76ce7768ab047f4b2c248f619c1db014cee5e785 | fix(ext/node): validate path parameters on `link` and `linkSync` (#30061) | [
{
"path": "ext/node/polyfills/_fs/_fs_link.ts",
"patch": "@@ -1,50 +1,46 @@\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 type { Buffer } from \"node:buffer\";\n import... | 2025-07-11T02:35:43 |
vuejs/vue | 179ec92019dd098487c720ba8d1667bbedb9c380 | 100a2969aa5c64bd71758c79881cf4531e9907be | fix lint | [
{
"path": "src/core/instance/render.js",
"patch": "@@ -36,11 +36,11 @@ export function renderMixin (Vue: Class<Component>) {\n _parentVnode\n } = vm.$options\n \n- if (vm._isMounted) { \n- // clone slot nodes on re-renders \n- for (const key in vm.$slots) { \n- vm.$slot... | 2016-09-08T11:55:45 |
mrdoob/three.js | 097d95940fa48c19bd6370934265bf68d64d2891 | b3e3724eb0b77111da689a585601b156185b2d83 | E2E: Adding `webgpu_texturegrad` to exception list. (#28385) | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -144,6 +144,7 @@ const exceptionList = [\n \t'webgpu_custom_fog',\n \t'webgpu_instancing_morph',\n \t'webgpu_mesh_batch',\n+\t'webgpu_texturegrad',\n \n \t// WebGPU idleTime and parseTime too low\n \t'webgpu_compute_particles',",
"additions": 1,
"delet... | 2024-05-15T09:39:44 |
golang/go | df290384864c0b3cbb557ef11fc95a29d52f6aca | 4373754bc990fc13b27ae823f977bc6328cc331e | cmd/compile/internal/ssa: load constant values from abi.PtrType.Elem
This CL makes the generated code for reflect.TypeFor as simple as an
intrinsic function.
Fixes #75203
Change-Id: I7bb48787101f07e77ab5c583292e834c28a028d6
Reviewed-on: https://go-review.googlesource.com/c/go/+/700336
LUCI-TryBot-Result: Go LUCI <go... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -2767,6 +2767,22 @@\n (Load <typ.Uintptr> (OffPtr [off] (ITab (IMake (Addr {s} sb) _))) _) && isFixedSym(s, off) => (Addr {fixedSym(b.Func, s, off)} sb)\n (Load <typ.Uintptr> (OffPtr [off] (ITab (IMake (Convert (Addr {s} ... | 2025-09-01T10:31:29 |
denoland/deno | cf441584a411d7dc4626f11396835767d511bc64 | a046f2c1bfa26ed1ca023a14e1598096bee85fc1 | fix(unstable): support importing files in npm packages as bytes and text (#30065) | [
{
"path": "cli/factory.rs",
"patch": "@@ -18,7 +18,6 @@ use deno_error::JsErrorBox;\n use deno_lib::args::CaData;\n use deno_lib::args::get_root_cert_store;\n use deno_lib::args::npm_process_state;\n-use deno_lib::loader::NpmModuleLoader;\n use deno_lib::npm::NpmRegistryReadPermissionChecker;\n use deno_lib... | 2025-07-10T19:06:33 |
vuejs/vue | 1c4ca4bc08b0faf1b457aa02d8a96749e232fb16 | 7a2c986722447f270354221c13a84deea2e100fd | fix lint | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -82,7 +82,7 @@ export function createPatchFunction (backend) {\n }\n \n function createElm (vnode, insertedVnodeQueue, nested) {\n- let i, elm\n+ let i\n const data = vnode.data\n vnode.isRootInsert = !nested\n if (isDef(data)) {\n@@ -11... | 2016-09-08T11:17:30 |
mrdoob/three.js | b3e3724eb0b77111da689a585601b156185b2d83 | ce4536ab00e94f49d8c94dbc1bcd73d27b85f813 | Editor: Avoid `SetSceneCommnd` when importing file (#28339)
* avoid SetSceneCommand when importing
* Update Loader.js
Fix formatting.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "editor/js/Loader.js",
"patch": "@@ -3,7 +3,6 @@ import * as THREE from 'three';\n import { TGALoader } from 'three/addons/loaders/TGALoader.js';\n \n import { AddObjectCommand } from './commands/AddObjectCommand.js';\n-import { SetSceneCommand } from './commands/SetSceneCommand.js';\n \n import {... | 2024-05-15T09:23:11 |
golang/go | 80038586ed2814a03dcb95cd6f130766f8d803c3 | 91e76a513bdfa4159ea0aa65a01f89e006e6ead3 | cmd/compile: export to DWARF types only referenced through interfaces
Delve and viewcore use DWARF type DIEs to display and explore the
runtime value of interface variables.
This has always been slightly problematic since the runtime type of an
interface variable might only be reachable through interfaces and thus
be ... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -128,14 +128,29 @@ func Info(ctxt *obj.Link, fnsym *obj.LSym, infosym *obj.LSym, curfn obj.Func) (s\n \t// already referenced by a dwarf var, attach an R_USETYPE relocation to\n \t// the function symbol to insure that the type included in ... | 2025-08-18T13:49:50 |
denoland/deno | a046f2c1bfa26ed1ca023a14e1598096bee85fc1 | 6c736b1345f9c518b0d5e9d52dbd22114be7c02e | fix(tsconfig): prioritize deno.json if it has compiler options (#30056) | [
{
"path": "libs/resolver/deno_json.rs",
"patch": "@@ -1114,32 +1114,49 @@ impl CompilerOptionsResolver {\n }\n \n pub fn for_specifier(&self, specifier: &Url) -> &CompilerOptionsData {\n- if let Ok(path) = url_to_file_path(specifier) {\n- for ts_config in &self.ts_configs {\n- if ts_confi... | 2025-07-10T18:46:34 |
vuejs/vue | 4afccc8eece43956f6f84189923a60d9a5a45e36 | f25482dd93a367b1b5ac4c52fb103015279c87cb | proper slot duplication warning (fix #3595) | [
{
"path": "flow/component.js",
"patch": "@@ -93,6 +93,8 @@ declare interface Component {\n _f: (id: string) => Function;\n // renderList\n _l: (val: any, render: Function) => ?Array<VNode>;\n+ // renderSlot\n+ _t: (name: string, fallback: ?Array<VNode>) => ?Array<VNode>;\n // apply v-bind object\n... | 2016-09-08T09:47:22 |
mrdoob/three.js | 362e4dc73fd296287fe3a9862461ff1bbb46622a | 148f9b139a19e5ea2000ab411ee2339bdf86e042 | propagate onerror (#28383) | [
{
"path": "examples/jsm/loaders/DRACOLoader.js",
"patch": "@@ -85,7 +85,7 @@ class DRACOLoader extends Loader {\n \n \tparse( buffer, onLoad, onError = ()=>{} ) {\n \n-\t\tthis.decodeDracoFile( buffer, onLoad, null, null, SRGBColorSpace ).catch( onError );\n+\t\tthis.decodeDracoFile( buffer, onLoad, null, n... | 2024-05-14T21:14:28 |
denoland/deno | 8464115f262359d6172d7bfaba3c7450f52a0877 | fad86ad20ce8a37c17ab4cc3f784d4dd0bd73a59 | fix(tsconfig): use tsc defaults for 'strict' and 'noImplicitOverride' (#30045) | [
{
"path": "libs/resolver/deno_json.rs",
"patch": "@@ -295,10 +295,16 @@ pub fn get_base_compiler_options_for_emit(\n \"moduleResolution\": \"NodeNext\",\n \"moduleDetection\": \"force\",\n \"noEmit\": true,\n- \"noImplicitOverride\": true,\n+ \"noImplicitOverride\": match default... | 2025-07-09T22:15:56 |
golang/go | e8f9127d1f47ea9cf252237d387ea61d17651c3e | 731e54616686889146c579317c7d1715c85a8505 | net/netip: export Prefix.Compare, fix ordering
Fixes #61642
Co-authored-by: David Anderson <dave@natulte.net>
Change-Id: I54795763bdc5f62da469c2ae20618c36b64396f3
Reviewed-on: https://go-review.googlesource.com/c/go/+/700355
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Rev... | [
{
"path": "api/next/61642.txt",
"patch": "@@ -0,0 +1 @@\n+pkg net/netip, method (Prefix) Compare(Prefix) int #61642",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/net/netip/61642.md",
"patch": "@@ -0,0 +1 @@\n+The new [Prefix.Compa... | 2025-09-02T07:44:42 |
vuejs/vue | f25482dd93a367b1b5ac4c52fb103015279c87cb | f541097486c18f7778cc4d12490bc9a46cd0faf1 | tiny comment fix | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -332,7 +332,7 @@ export function createPatchFunction (backend) {\n // reuse element for static trees.\n // note we only do this if the vnode is cloned -\n // if the new node is not cloned it means the render functions have been\n- // reset by t... | 2016-09-08T09:11:39 |
mrdoob/three.js | 148f9b139a19e5ea2000ab411ee2339bdf86e042 | f682d5b5eb3a230ce4d0885e0d0e0f1a2c3410a6 | Examples: Remove need for manually assigning Line2 material resolution (#28343)
* Remove need for assigning line2 material resolution
* Move use to `Line2` object
* Fix wireframe mesh
* Move callback from `Line2` to `LineSegments2`
* Remove another use of "resolution"
* Remove comments
* Multiply out... | [
{
"path": "examples/jsm/lines/LineMaterial.js",
"patch": "@@ -1,25 +1,11 @@\n-/**\n- * parameters = {\n- * color: <hex>,\n- * linewidth: <float>,\n- * dashed: <boolean>,\n- * dashScale: <float>,\n- * dashSize: <float>,\n- * dashOffset: <float>,\n- * gapSize: <float>,\n- * resolution: <Vector2>, // t... | 2024-05-14T21:11:15 |
denoland/deno | fad86ad20ce8a37c17ab4cc3f784d4dd0bd73a59 | 2617b4ec6bcee5184e49354cb22b149b99ac9e7e | chore(internal): fix source_map_base override not being applied (#30051) | [
{
"path": "libs/resolver/deno_json.rs",
"patch": "@@ -1321,7 +1321,7 @@ fn compiler_options_to_transpile_and_emit_options(\n inline_sources: options.inline_sources,\n remove_comments: false,\n source_map,\n- source_map_base: None,\n+ source_map_base: overrides.source_map_base.clone(),\n ... | 2025-07-09T21:55:07 |
mrdoob/three.js | f682d5b5eb3a230ce4d0885e0d0e0f1a2c3410a6 | c5a62895b9eefd1680bfaf082ecb97213685eeb2 | accepts onerror callback when parse (#28382) | [
{
"path": "examples/jsm/loaders/LDrawLoader.js",
"patch": "@@ -1974,7 +1974,7 @@ class LDrawLoader extends Loader {\n \n \t}\n \n-\tparse( text, onLoad ) {\n+\tparse( text, onLoad, onError ) {\n \n \t\tthis.partsCache\n \t\t\t.parseModel( text, this.materialLibrary )\n@@ -1985,7 +1985,8 @@ class LDrawLoader... | 2024-05-14T21:07:34 |
vuejs/vue | f541097486c18f7778cc4d12490bc9a46cd0faf1 | 63e4757fbd7e17babe4e9bd4cb0af7d84e3f2a5f | Expose all types via index.d.ts (#3608)
* expose all types via index.d.ts
* Fix typo | [
{
"path": "types/index.d.ts",
"patch": "@@ -1,6 +1,33 @@\n import {Vue as _Vue} from \"./vue\";\n+import * as Options from \"./options\";\n+import * as Plugin from \"./plugin\";\n+import * as VNode from \"./vnode\";\n+\n // `Vue` in `export = Vue` must be a namespace\n-declare namespace Vue {}\n+// All avai... | 2016-09-08T08:26:01 |
denoland/deno | 88f16236b14e66ac951707c0cbf5b2bc41c6610f | c65a48a488201c6cc6ca977e8e44a5e946277a97 | fix: new signal handling (#30029)
Set up a new centralized signal handling path, which emulates the
default unless something is explicitly registered to prevent it.
Fixes: https://github.com/denoland/deno/issues/29590
---------
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "Cargo.lock",
"patch": "@@ -2366,6 +2366,7 @@ dependencies = [\n \"deno_error\",\n \"deno_features\",\n \"deno_permissions\",\n+ \"deno_signals\",\n \"deno_tls\",\n \"hickory-proto\",\n \"hickory-resolver\",\n@@ -2609,14 +2610,12 @@ dependencies = [\n \"deno_error\",\n \"deno_path_util\",\... | 2025-07-09T07:01:27 |
mrdoob/three.js | c5a62895b9eefd1680bfaf082ecb97213685eeb2 | 01aa489a7b15438003316b9c9fd7ade745f74909 | fix typo: project, not porject (#28384) | [
{
"path": "editor/js/Menubar.File.js",
"patch": "@@ -27,20 +27,20 @@ function MenubarFile( editor ) {\n \n \t\tconst { top, right } = this.dom.getBoundingClientRect();\n \t\tconst { paddingTop } = getComputedStyle( this.dom );\n-\t\tnewPorjectSubmenu.setLeft( right + 'px' );\n-\t\tnewPorjectSubmenu.setTop( ... | 2024-05-14T21:01:19 |
vuejs/vue | 63e4757fbd7e17babe4e9bd4cb0af7d84e3f2a5f | d2337dfc3fd4b03b01204efa0256a517c4b78697 | key nested children by default (fix #3611) | [
{
"path": "src/core/vdom/helpers.js",
"patch": "@@ -5,7 +5,8 @@ import VNode from './vnode'\n \n export function normalizeChildren (\n children: any,\n- ns: string | void\n+ ns: string | void,\n+ nestedIndex: number | void\n ): Array<VNode> | void {\n if (isPrimitive(children)) {\n return [create... | 2016-09-08T07:54:53 |
golang/go | 4c4cefc19a16924f3aa7135d3fdc6d1687fe26c7 | 925a3cdcd13472c8f78d51c9ce99a59e77d46eb4 | cmd/gofmt: simplify logic to process arguments
Rather than stat-ing each argument and taking different code paths
depending on whether it's a directory or not, we can leverage
the fact that filepath.WalkDir works on regular files and already
has to figure out whether each file it walks is a directory or not.
We can t... | [
{
"path": "src/cmd/gofmt/gofmt.go",
"patch": "@@ -87,10 +87,8 @@ func initParserMode() {\n \t}\n }\n \n-func isGoFile(f fs.DirEntry) bool {\n-\t// ignore non-Go files\n-\tname := f.Name()\n-\treturn !strings.HasPrefix(name, \".\") && strings.HasSuffix(name, \".go\") && !f.IsDir()\n+func isGoFilename(name st... | 2025-08-30T17:54:43 |
mrdoob/three.js | a13bb0504102aeeb39c961da3a02590f0ef5b20d | a2f0682268790cbd5ed09e29c640b13b9d5afafa | CSS2DRenderer: Just traverse visible object (#28330)
* add cache empty check and set a default value
* Update CSS2DRenderer.js
* Update CSS2DRenderer.js
Fix code style.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/jsm/renderers/CSS2DRenderer.js",
"patch": "@@ -124,6 +124,7 @@ class CSS2DRenderer {\n \t\t\t\thideObject( object.children[ i ] );\n \n \t\t\t}\n+\n \t\t}\n \n \t\tfunction renderObject( object, scene, camera ) {\n@@ -186,7 +187,7 @@ class CSS2DRenderer {\n \n \t\t\tconst result = [];\n ... | 2024-05-10T10:38:11 |
vuejs/vue | 8f4aab201b4f1b6293029aa251f9b9c2bdc13c0a | 4061c42748bcf374d2ad54c0a5f46bf258db06da | Fix definitons (#3591)
* Fix types
* add “FunctionalComponentOptions” and “ContextObject”
* fix and update types
* Rename
* Update vue.d.ts
* Update options-test.ts | [
{
"path": "types/options.d.ts",
"patch": "@@ -1,10 +1,12 @@\n import { Vue } from \"./vue.d\";\n-import { VNode, VNodeDirective } from \"./vnode.d\";\n+import { VNode, VNodeData, VNodeDirective } from \"./vnode.d\";\n \n type Constructor = {\n new (...args: any[]): any;\n }\n \n+type $createElement = type... | 2016-09-05T10:53:34 |
denoland/deno | c65a48a488201c6cc6ca977e8e44a5e946277a97 | 6f11608daadbf93339e93c1eed480e827dc997ec | fix(lsp): tsconfig features for 'deno check' parity (#30007) | [
{
"path": "Cargo.lock",
"patch": "@@ -1833,8 +1833,6 @@ dependencies = [\n \"indexmap 2.9.0\",\n \"jsonc-parser\",\n \"log\",\n- \"percent-encoding\",\n- \"phf\",\n \"pretty_assertions\",\n \"serde\",\n \"serde_json\",\n@@ -2752,6 +2750,7 @@ dependencies = [\n \"node_resolver\",\n \"once_cell\",\n ... | 2025-07-08T22:22:13 |
golang/go | 925a3cdcd13472c8f78d51c9ce99a59e77d46eb4 | 3e596d448fb6b9668d144cffaa65e1d12a5fdce8 | unicode/utf8: make DecodeRune{,InString} inlineable
This change makes the fast path for ASCII characters inlineable in
DecodeRune and DecodeRuneInString and removes most instances of manual
inlining at call sites.
Here are some benchmark results (no change to allocations):
goos: darwin
goarch: amd64
pkg: unicode/utf... | [
{
"path": "src/bufio/bufio.go",
"patch": "@@ -311,10 +311,7 @@ func (b *Reader) ReadRune() (r rune, size int, err error) {\n \tif b.r == b.w {\n \t\treturn 0, 0, b.readErr()\n \t}\n-\tr, size = rune(b.buf[b.r]), 1\n-\tif r >= utf8.RuneSelf {\n-\t\tr, size = utf8.DecodeRune(b.buf[b.r:b.w])\n-\t}\n+\tr, size ... | 2025-09-02T22:10:40 |
mrdoob/three.js | fc2b4a476b96e2d2ae2168000a799813953a0a4d | 94da2af3f0f545e8b8a1ba2a6144dfdec3c67fe2 | CI: Next try fixing E2E. (#28323)
* CI: Next try fixing E2E.
* Examples: Update screenshots.
* CI: Go back to actions/upload-artifact@v4. | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -69,7 +69,7 @@ jobs:\n strategy:\n fail-fast: false\n matrix:\n- os: [ macos-latest ]\n+ os: [ windows-latest ]\n CI: [ 0, 1, 2, 3 ]\n env:\n CI: ${{ matrix.CI }}\n@@ -104,7 +104,7 @@ jobs:\n uses: act... | 2024-05-09T10:03:20 |
vuejs/vue | 4061c42748bcf374d2ad54c0a5f46bf258db06da | 5a03f52b105788ab92b7f38893d47b46a1515f2b | adapt index.d.ts for end users (#3582)
* adapt index.d.ts for end users
* fix extend return type | [
{
"path": "package.json",
"patch": "@@ -3,7 +3,7 @@\n \"version\": \"2.0.0-rc.4\",\n \"description\": \"Reactive, component-oriented view layer for modern web interfaces.\",\n \"main\": \"dist/vue.common.js\",\n- \"typings\": \"index.d.ts\",\n+ \"typings\": \"types/index.d.ts\",\n \"files\": [\n ... | 2016-09-04T09:33:25 |
denoland/deno | 6f11608daadbf93339e93c1eed480e827dc997ec | 6a30592c11f57bae530ec8c20a9f0f90bda8e689 | fix(check): temporarily ignore ERR_TYPES_NOT_FOUND (#29926)
Currently, importing a module only for its side effect results in an
`ERR_TYPES_NOT_FOUND` error with `nodeModulesDir=manual`.
---------
Co-authored-by: David Sherret <dsherret@gmail.com> | [
{
"path": "cli/graph_util.rs",
"patch": "@@ -31,6 +31,7 @@ use deno_graph::source::ResolveError;\n use deno_npm_installer::PackageCaching;\n use deno_npm_installer::graph::NpmCachingStrategy;\n use deno_path_util::url_to_file_path;\n+use deno_resolver::DenoResolveErrorKind;\n use deno_resolver::cache::Parse... | 2025-07-08T17:23:37 |
golang/go | 2a7f1d47b0650c92b47f0cd5bc3536d438e4bbbe | b09068041a20ed3cd44685a1d7f4dccbabfc2e94 | runtime: use one more address bit for tagged pointers
We use one extra bit to placate systems which simulate amd64 binaries on
an arm64 host. Allocated arm64 addresses could be as high as 1<<48-1,
which would be invalid if we assumed 48-bit sign-extended addresses.
(Note that this does not help the other way around, ... | [
{
"path": "src/runtime/tagptr_64bit.go",
"patch": "@@ -22,10 +22,17 @@ const (\n \t// On AMD64, virtual addresses are 48-bit (or 57-bit) sign-extended.\n \t// Other archs are 48-bit zero-extended.\n \t//\n+\t// We use one extra bit to placate systems which simulate amd64 binaries on\n+\t// an arm64 host. Al... | 2025-09-02T22:46:11 |
mrdoob/three.js | 2ab4c8875862d2f7651d540841fad900a991f784 | a6fba0fc3d5e3146600e3c5fb615003a5227f87a | WebGPURenderer: Fix SampledTexture not correctly bound (#28289)
* Update texture when binding is updated
* better fix
* fix
* needsBinding cleanup | [
{
"path": "examples/jsm/renderers/common/Bindings.js",
"patch": "@@ -128,18 +128,18 @@ class Bindings extends DataMap {\n \n \t\t\t} else if ( binding.isSampledTexture ) {\n \n-\t\t\t\tconst texture = binding.texture;\n-\n-\t\t\t\tif ( binding.needsBindingsUpdate ) needsBindingsUpdate = true;\n-\n \t\t\t\tc... | 2024-05-08T16:21:25 |
vuejs/vue | 04eb32e4f06cbff7daab3024d93b8109c0a70786 | 9727f87e3fe754ef8920ae1154f0d7d69ff061b6 | fix typo (#3578) | [
{
"path": "packages/vue-template-compiler/README.md",
"patch": "@@ -32,7 +32,7 @@ Note the returned function code uses `with` and thus cannot be used in strict mo\n \n #### Options\n \n-It's possible to hook into the compilation process to support custom template features. **However, beware that by injectin... | 2016-09-01T02:27:49 |
denoland/deno | 6a30592c11f57bae530ec8c20a9f0f90bda8e689 | 2d6a670af9d3b4a6034fc4f5cd5772860f2673f6 | fix: early init logging (#30034)
use a swappable logging impl so we can get data right from the process
start | [
{
"path": "Cargo.lock",
"patch": "@@ -206,6 +206,12 @@ dependencies = [\n \"derive_arbitrary\",\n ]\n \n+[[package]]\n+name = \"arc-swap\"\n+version = \"1.7.1\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a34... | 2025-07-08T16:17:33 |
mrdoob/three.js | 885c2dbab575e6528464e096784680d19914c3f3 | db4f94bd97494faf59d91fc9b6791a6ef1767de0 | Editor: Fixed assets lost when importing zipped OBJ/MTL (#28292)
* imports OBJ with textures
* set map.name to filename
* no filename needed in UITexture | [
{
"path": "editor/js/Loader.js",
"patch": "@@ -858,16 +858,36 @@ function Loader( editor ) {\n \n \t\tconst zip = unzipSync( new Uint8Array( contents ) );\n \n+\t\tconst manager = new THREE.LoadingManager();\n+\t\tmanager.setURLModifier( function ( url ) {\n+\n+\t\t\tconst file = zip[ url ];\n+\n+\t\t\tif (... | 2024-05-08T10:55:20 |
golang/go | 1eec830f545ae9c75f143d7d5c757013d6d229be | 7bba745820b771307593b7278ce17464eeda2f3d | go/doc: linkify interface methods
Create doc links for references to interface methods,
such as "[Context.Err]".
This does not attempt to handle embedded interfaces:
The linked-to method must be declared within the named type.
Fixes #54033
Change-Id: I4d7a132affe682c85958ca785bcc96571404e6c1
Reviewed-on: https://go... | [
{
"path": "src/go/doc/comment_test.go",
"patch": "@@ -24,12 +24,12 @@ func TestComment(t *testing.T) {\n \tpkg := New(pkgs[\"pkgdoc\"], \"testdata/pkgdoc\", 0)\n \n \tvar (\n-\t\tinput = \"[T] and [U] are types, and [T.M] is a method, but [V] is a broken link. [rand.Int] and [crand.Reader] are thi... | 2025-07-10T22:43:43 |
vuejs/vue | dfc64e8a110d63177869528e2f9cdc103cf514b4 | 2998bbfae9c618b49d48152a078e14ecf74607f8 | Add TypeScript definitions
Add TypeScript definition
Remove unnecessary definition
Update definitions
* separate files
* remove unnecessary `{[key: string]: any}`
* from singular to plural
Update definitions
* Add more definitions
* Rename filename and interface
* Sort definitions
* Fix indent
Fix
Add test
* a... | [
{
"path": "package.json",
"patch": "@@ -17,12 +17,13 @@\n \"dev:compiler\": \"TARGET=web-compiler rollup -w -c build/config.js\",\n \"build\": \"node build/build.js\",\n \"build:ssr\": \"npm run build -- vue.common.js,vue-server-renderer\",\n- \"test\": \"npm run lint && flow check && npm run... | 2016-08-23T19:01:30 |
mrdoob/three.js | 65c4c2704ad9382f4788d771595ec6446cad28f9 | 346814524d163119af2473a399c9b7f864c9f604 | Editor: Fixed menubar/add/light japanese. | [
{
"path": "editor/js/Strings.js",
"patch": "@@ -1222,12 +1222,12 @@ function Strings( config ) {\n \t\t\t'menubar/add/mesh/lathe': '旋盤形',\n \t\t\t'menubar/add/mesh/sprite': 'スプライト',\n \n-\t\t\t'menubar/add/light': 'Light',\n-\t\t\t'menubar/add/light/ambient': 'アンビエントライト',\n-\t\t\t'menubar/add/light/directio... | 2024-05-08T00:03:03 |
denoland/deno | 2d6a670af9d3b4a6034fc4f5cd5772860f2673f6 | 1c16fde60fe9e67c3ea1f62bfdec41e43d3ed199 | fix: `global` global should be writeable (#30032)
Closes https://github.com/denoland/deno/issues/30012
Makes `global` global a writeable property. | [
{
"path": "runtime/js/98_global_scope_shared.js",
"patch": "@@ -145,11 +145,7 @@ const windowOrWorkerGlobalScope = {\n setImmediate: core.propWritable(setImmediate),\n clearImmediate: core.propWritable(clearImmediate),\n Buffer: core.propWritable(Buffer),\n- global: {\n- enumerable: true,\n- co... | 2025-07-08T11:18:44 |
golang/go | d4b17f58695337c7eefa9d066cc51a425842e491 | 6a08e80399bd65b95e60e3c74b7e1f86754752a7 | internal/runtime/atomic: reset wrong jump target in Cas{,64} on loong64
The implementation here needs to be consistent with ssa.OpLOONG64LoweredAtomicCas{32,64},
which was ignored in CL 613396.
Change-Id: I72e8d2318e0c1935cc3a35ab5098f8a84e48bcd5
Reviewed-on: https://go-review.googlesource.com/c/go/+/699395
Reviewed-... | [
{
"path": "src/internal/runtime/atomic/atomic_loong64.s",
"patch": "@@ -19,7 +19,7 @@ TEXT ·Cas(SB), NOSPLIT, $0-17\n \tMOVW\tnew+12(FP), R6\n \n \tMOVBU\tinternal∕cpu·Loong64+const_offsetLOONG64HasLAMCAS(SB), R8\n-\tBEQ\tR8, cas_again\n+\tBEQ\tR8, ll_sc\n \tMOVV\tR5, R7 // backup old value\n \tAMCASDBW\tR... | 2025-08-27T06:45:58 |
vuejs/vue | a00170cbb932e589ac243622385274a659019930 | ada90e5e37c53cb56b76702dc0d223951523e7d6 | remove unnecessary appear check in v-show (fix #3559) | [
{
"path": "src/platforms/web/runtime/directives/show.js",
"patch": "@@ -14,7 +14,7 @@ export default {\n bind (el: any, { value }: VNodeDirective, vnode: VNodeWithData) {\n vnode = locateNode(vnode)\n const transition = vnode.data && vnode.data.transition\n- if (value && transition && transitio... | 2016-08-30T14:45:38 |
mrdoob/three.js | 241a542e902988955a0ecad91925feacb29b5887 | 0e01940a39fab5d8d1fac0e8b10f0397fd665082 | Editor: Fixed camera name is always 'Camera' when recovering from indexedDB (#28309)
* recover camera name from IDB
* update | [
{
"path": "editor/js/Viewport.Controls.js",
"patch": "@@ -77,6 +77,8 @@ function ViewportControls( editor ) {\n \n \t} );\n \n+\tsignals.cameraResetted.add( update );\n+\n \tupdate();\n \n \t//",
"additions": 2,
"deletions": 0,
"language": "JavaScript"
}
] | 2024-05-07T21:20:55 |
denoland/deno | 1c16fde60fe9e67c3ea1f62bfdec41e43d3ed199 | c03199ea1e4e22d44aad0deafc634be82e5b841b | fix(ext/node): don't throw error on invalid path input on `exists` and `existsSync` (#29971)
Currently `fs.exists` and `fs.existsSync` throws error when invalid path
is given to the input.
The expected behavior is to:
- Call the callback with false on `fs.exists`.
- Return false on `fs.existsSync`.
Towards #29972, #... | [
{
"path": "ext/node/polyfills/_fs/_fs_common.ts",
"patch": "@@ -253,9 +253,9 @@ export function maybeCallback(cb: unknown) {\n // Ensure that callbacks run in the global context. Only use this function\n // for callbacks that are passed to the binding layer, callbacks that are\n // invoked from JS already r... | 2025-07-08T10:30:45 |
golang/go | 6a08e80399bd65b95e60e3c74b7e1f86754752a7 | 8bcda6c79d40f49363cd04cdaf5bd7909de8f94f | net/http: skip redirecting in ServeMux when URL path for CONNECT is empty
In 1.21 ServeMux, we had a special-case to skip redirection when a given
path is empty for CONNECT requests:
https://go.googlesource.com/go/+/refs/tags/go1.24.4/src/net/http/servemux121.go#205.
This special case seems to not have been carried o... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -2759,9 +2759,12 @@ func (mux *ServeMux) matchOrRedirect(host, method, path string, u *url.URL) (_ *\n \tdefer mux.mu.RUnlock()\n \n \tn, matches := mux.tree.match(host, method, path)\n-\t// If we have an exact match, or we were asked not to try trailing-slas... | 2025-08-29T14:34:10 |
vuejs/vue | 32971d85884b2a5460183a158d069b4280b54631 | 8c427f7f18d34bca8e2860788d0849bee26d4bb9 | fix v-on patching for cloned slot nodes (fix #3556) | [
{
"path": "src/core/vdom/helpers.js",
"patch": "@@ -104,13 +104,15 @@ export function updateListeners (\n }\n add(event, cur.invoker, capture)\n }\n- } else if (Array.isArray(old)) {\n- old.length = cur.length\n- for (let i = 0; i < old.length; i++) old[i] = cur[i]\n- ... | 2016-08-29T22:45:07 |
mrdoob/three.js | 0e01940a39fab5d8d1fac0e8b10f0397fd665082 | 6d53d239bd9e2e669949f8ed58a86356b959546f | Update WebGLRenderer.js
Fix comment. | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -2452,7 +2452,7 @@ class WebGLRenderer {\n \n \t\tthis.copyTextureToTexture = function ( srcTexture, dstTexture, srcRegion = null, dstPosition = null, level = 0 ) {\n \n-\t\t\t// support previous signature with source box first\n+\t\t\t// support prev... | 2024-05-07T14:23:17 |
denoland/deno | 9d88fb74d6d626c86d332b525005b0bfb327bf6b | 50e5c69f18ba11bf06852647ebd0b69f728ee3e9 | fix(bundle): don't use createRequire when targeting browser, make hack not depend on variable names (#30023)
Fixes https://github.com/denoland/deno/issues/29998.
Also fixes an issue reported on discord | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -45,6 +45,7 @@ use sys_traits::EnvCurrentDir;\n \n use crate::args::BundleFlags;\n use crate::args::BundleFormat;\n+use crate::args::BundlePlatform;\n use crate::args::Flags;\n use crate::args::PackageHandling;\n use crate::args::SourceMapType;\n@@ -154,15 +... | 2025-07-07T22:01:59 |
golang/go | 8bcda6c79d40f49363cd04cdaf5bd7909de8f94f | 8377adafc548a0d9dab831477923d25ce4b10710 | runtime/race: add race detector support for linux/riscv64
This enables support for the race detector on linux/riscv64.
Fixes #64345
Cq-Include-Trybots: luci.golang.try:gotip-linux-riscv64
Change-Id: I98962827e91455404858549b0f9691ee438f104b
Reviewed-on: https://go-review.googlesource.com/c/go/+/690497
Reviewed-by: C... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1698,7 +1698,7 @@ func (t *tester) makeGOROOTUnwritable() (undo func()) {\n func raceDetectorSupported(goos, goarch string) bool {\n \tswitch goos {\n \tcase \"linux\":\n-\t\treturn goarch == \"amd64\" || goarch == \"ppc64le\" || goarch == \"arm64\" || goarch ... | 2025-07-25T10:41:51 |
mrdoob/three.js | c3741d2f5d0acdfb747328b068d1cf082d8d9189 | 3bc0cc71548aad53c1b6c3450c7fe657d2f799f5 | WebGLRenderer: Add initRenderTarget function (#28285)
* align WebGLRenderer.copyTextureToTexture with copyTextureToTexture3D
* Make the function backwards compatible
* Add import statement
* Fix example
* Update init texture to support render target, support copy to render target
* Add initRenderTarget | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -2672,6 +2672,16 @@ class WebGLRenderer {\n \n \t\t};\n \n+\t\tthis.initRenderTarget = function ( target ) {\n+\n+\t\t\tif ( properties.get( target ).__webglFramebuffer === undefined ) {\n+\n+\t\t\t\ttextures.setupRenderTarget( target );\n+\n+\t\t\t}\... | 2024-05-07T10:51:40 |
vuejs/vue | a3314c8610a199cc2882f69b22da918b222c6329 | f6b1a51729f705bc49c6eaaf32ec095efd97401c | Fixed "delcare" typo error (#3552)
* Fixed "delcare" typo error
* Revert "Fixed "delcare" typo error"
This reverts commit 14c3563c48fe9fc68b413e468db221ea4430ade4.
* Typo fixed on src folder only | [
{
"path": "src/core/observer/index.js",
"patch": "@@ -200,7 +200,7 @@ export function set (obj: Array<any> | Object, key: any, val: any) {\n if (obj._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root ... | 2016-08-29T15:45:33 |
denoland/deno | 478121e1181edaace850f238415725eed861383b | 5ee005c2b55c00d100f45613d52255c26129800f | Revert "fix(ext/napi): ensure the finalizer callback will be called (… (#30018)
…#29710)"
This reverts commit 3c3af1011a582398e4e9cadf705f06b4e9cfa69b.
Going to revert this one, because there are multiple issues reported
that cause panics. We are working on a proper fix, but for the time
being it's better to revert.... | [
{
"path": "ext/napi/js_native_api.rs",
"patch": "@@ -111,11 +111,12 @@ impl Reference {\n fn set_weak(&mut self) {\n let reference = self as *mut Reference;\n if let ReferenceState::Strong(g) = &self.state {\n- let cb = Box::new(move || Reference::weak_callback(reference));\n+ let cb = B... | 2025-07-07T12:44:21 |
mrdoob/three.js | 3bc0cc71548aad53c1b6c3450c7fe657d2f799f5 | 7a02475928a0f6e0b7f37c5db6bc6de48f358d2d | WebGLRenderer: Enable subframe upload in copyTextureToTexture, align API to 3d version (#28281)
* align WebGLRenderer.copyTextureToTexture with copyTextureToTexture3D
* Make the function backwards compatible
* Add import statement
* Fix example
* rename local state variables
* Add deprecation comment
... | [
{
"path": "docs/api/en/renderers/WebGLRenderer.html",
"patch": "@@ -376,19 +376,20 @@ <h3>\n \t\t</p>\n \n \t\t<h3>\n-\t\t\t[method:undefined copyTextureToTexture]( [param:Vector2 position], [param:Texture srcTexture], [param:Texture dstTexture], [param:Number level] )\n+\t\t\t[method:undefined copyTextureT... | 2024-05-07T10:17:22 |
golang/go | 8377adafc548a0d9dab831477923d25ce4b10710 | a7d9d5a80ae799f54e323060df0dfbccc83d3759 | cmd/cgo: split loadDWARF into two parts
The first part runs gcc to get the debug information, and the second
part processes the debug information. The first part doesn't touch the
global and package level information that's computed so we can run it
earlier and concurrently in a later CL.
For #75167
Change-Id: I6a6a... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -213,7 +213,8 @@ func (p *Package) Translate(f *File) {\n \t\t}\n \t\tneedType := p.guessKinds(f)\n \t\tif len(needType) > 0 {\n-\t\t\tp.loadDWARF(f, &ft, &conv, needType)\n+\t\t\td := p.loadDWARF(f, &ft, needType)\n+\t\t\tp.recordTypes(f, d, &conv)\n \t\t}\n \n ... | 2025-08-25T21:07:41 |
vuejs/vue | f6b1a51729f705bc49c6eaaf32ec095efd97401c | 22b3645ebb7ce1feb83c33cdc37f4cc30b03ad75 | fix hot-reload not updating static nodes | [
{
"path": "src/core/instance/render.js",
"patch": "@@ -102,7 +102,7 @@ export function renderMixin (Vue: Class<Component>) {\n ): VNode | Array<VNode> {\n let tree = this._staticTrees[index]\n // if has already-rendered static tree and not inside v-for,\n- // we can reuse the same tree by inden... | 2016-08-29T15:45:08 |
denoland/deno | 5ee005c2b55c00d100f45613d52255c26129800f | 90058d6732d6e02dc7bea53d333d0957519c15d9 | Revert "fix(otel): flush data when terminating signal is received (#2… (#30019)
…9515)"
This reverts commit 248d038ef65cca43e2728246fbca15db8c3dc9a9.
Reverting for now as it causes programs to not exit properly, see
https://github.com/denoland/deno/issues/29590.
While we are working on a proper fix it's better to r... | [
{
"path": "ext/telemetry/lib.rs",
"patch": "@@ -770,87 +770,9 @@ pub fn init(\n })\n .map_err(|_| deno_core::anyhow::anyhow!(\"failed to set otel globals\"))?;\n \n- setup_signal_handlers();\n Ok(())\n }\n \n-#[cfg(unix)]\n-fn setup_signal_handlers() {\n- use tokio::signal::unix::SignalKind;\n-\... | 2025-07-07T12:44:05 |
mrdoob/three.js | 7a02475928a0f6e0b7f37c5db6bc6de48f358d2d | bff37d74e68039c721dafc6ecb1caee763625f7b | WebGLRenderer: Add "readRenderTargetPixelsAsync" function (#28291)
* Copy to async implementation from #24466
* probeSync cleanup
* More simplification
* Simplification
* Remove tangential functions
* More simplification
* Convert to thrown errors
* Remove comma
* Update docs, probe frequency | [
{
"path": "docs/api/en/renderers/WebGLRenderer.html",
"patch": "@@ -511,16 +511,23 @@ <h3>\n \t\t\tThis is a wrapper around\n \t\t\t[link:https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/readPixels WebGLRenderingContext.readPixels]().\n \t\t</p>\n-\t\t<p>\n-\t\t\tSee the [example:webgl... | 2024-05-07T09:02:48 |
golang/go | fe42628dae69c907bc579219a38fce6bc8f18c6c | 94b7d519bda29adad90766aaa5d2297708129a39 | internal/cpu: inline DebugOptions
internal/cpu.DebugOptions is only ever set in runtime.cpuinit on
unix-like platforms. DebugOptions itself is only used in
MustHaveDebugOptionsSupport, so inline the GOOS check there.
Change-Id: I6a35d6b8afcdadfc59585258002f53c20026116c
Reviewed-on: https://go-review.googlesource.com/... | [
{
"path": "src/internal/cpu/cpu.go",
"patch": "@@ -8,11 +8,6 @@ package cpu\n \n import _ \"unsafe\" // for linkname\n \n-// DebugOptions is set to true by the runtime if the OS supports reading\n-// GODEBUG early in runtime startup.\n-// This should not be changed after it is initialized.\n-var DebugOption... | 2025-08-28T14:50:12 |
vuejs/vue | c44f68d25e16feba9bb2868fd378173856c9f819 | 72710db4f4ce220f7f8f8a6b400e48d0fc747dcc | fix dev scripts | [
{
"path": "package.json",
"patch": "@@ -10,10 +10,10 @@\n \"src\"\n ],\n \"scripts\": {\n- \"dev\": \"TARGET=web-standalone-dev rollup --w --c build/config.js\",\n+ \"dev\": \"TARGET=web-standalone-dev rollup -w -c build/config.js\",\n \"dev:test\": \"karma start build/karma.dev.config.js\... | 2016-08-28T14:43:19 |
mrdoob/three.js | 37e1cb53c2e6abbd603539263eadb21483c51366 | 153cc13f76b856ed9895458dd531a82c94cf2938 | Update ci.yml
Try fix. | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -89,13 +89,23 @@ jobs:\n - name: === E2E testing ===\n run: npm run test-e2e\n - name: Upload output screenshots\n- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4\n+ uses: actions/upload-artifac... | 2024-05-07T08:38:23 |
denoland/deno | 51c43ce8b409895d86406850b314813380206631 | b7cb8a7d978b28533f5570cf855de73be782773e | fix(bundle): make the "dynamic require" hack work on minified output (#29997)
It's terrible and I hate it but it works | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -154,14 +154,15 @@ pub async fn bundle(\n let response = bundler.build().await?;\n \n if bundle_flags.watch {\n- return bundle_watch(flags, bundler).await;\n+ return bundle_watch(flags, bundler, bundle_flags.minify).await;\n }\n \n handle_esbui... | 2025-07-04T02:11:09 |
golang/go | 94b7d519bda29adad90766aaa5d2297708129a39 | ba9e1ddccfe55e711ac3987f74109393dfb736af | net: update document on limitation of iprawsock on Windows
Fixed: #23209
Change-Id: I3bfe9f5192cbacf387386efda72f04eeec5ff3be
GitHub-Last-Rev: 660a62d139dda21fcaea1e95394ca38521c7f00a
GitHub-Pull-Request: golang/go#74857
Reviewed-on: https://go-review.googlesource.com/c/go/+/692895
LUCI-TryBot-Result: Go LUCI <golang... | [
{
"path": "src/net/iprawsock.go",
"patch": "@@ -25,6 +25,12 @@ import (\n // BUG(mikio): On JS and Plan 9, methods and functions related\n // to IPConn are not implemented.\n \n+// BUG: On Windows, raw IP sockets are restricted by the operating system.\n+// Sending TCP data, sending UDP data with invalid so... | 2025-08-12T12:36:54 |
vuejs/vue | 98876f008b4e2ce0864c72a77e251cd8c5f5c2d4 | 4d640ce4d9fd638bcd0e4a61a8bb346458046ced | ensure transition end detection only count events triggered on target element (fix #3506) | [
{
"path": "src/platforms/web/runtime/transition-util.js",
"patch": "@@ -60,9 +60,11 @@ export function whenTransitionEnds (\n el.removeEventListener(event, onEnd)\n cb()\n }\n- const onEnd = () => {\n- if (++ended >= propCount) {\n- end()\n+ const onEnd = e => {\n+ if (e.target === el... | 2016-08-27T21:14:25 |
mrdoob/three.js | a638cdc0163b70564fcd98771c552db81fcdadfc | f17e2622e64178cb408558ef54c84d0de6169f83 | Update ci.yml
Try upload-artifact fix. | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -61,3 +61,54 @@ jobs:\n \n - name: === Circular dependencies testing ===\n run: npm run test-circular-deps\n+\n+ e2e:\n+ name: E2E testing\n+ runs-on: ${{ matrix.os }}\n+ timeout-minutes: 20\n+ strategy:\n+ fail-fast: false\n... | 2024-05-06T14:17:21 |
denoland/deno | dc95c566d6cc1d46ebacc460a64338095ac53c59 | c5d06179a13cd3293fc5b133fde2598394d41972 | fix(unstable): bytes and text imports from npm dependencies should require `--allow-read` (#29990)
npm dependencies doing a bytes/text import should require read
permissions because it's not possible to use `deno info` to inspect
them. | [
{
"path": "cli/module_loader.rs",
"patch": "@@ -624,12 +624,7 @@ impl<TGraphContainer: ModuleGraphContainer>\n requested_module_type: &RequestedModuleType,\n ) -> Result<ModuleSource, CliModuleLoaderError> {\n let code_source = self\n- .load_code_source(\n- specifier,\n- maybe_r... | 2025-07-03T20:33:13 |
golang/go | ba9e1ddccfe55e711ac3987f74109393dfb736af | 9f6936b8da81672cebcfa7ac3d6edddf9f1a5d65 | testing: allow specify temp dir by GOTMPDIR environment variable
Allow change the default temp directory returned by t.TempDir()
by environment variable GOTMPDIR.
Fixes #61585
Change-Id: Iba969bb02744e106cf15d80e0eda0245a55fc290
GitHub-Last-Rev: aeacea00952b11990b49a0fde6a0ce4fe910b777
GitHub-Pull-Request: golang/go... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2407,8 +2407,10 @@\n //\t\tThe name of checksum database to use and optionally its public key and\n //\t\tURL. See https://golang.org/ref/mod#authenticating.\n //\tGOTMPDIR\n-//\t\tThe directory where the go command will write\n-//\t\ttemporary source files, ... | 2025-08-12T14:06:53 |
vuejs/vue | 014d2f8599f9afc0754e603b1528a12e74bd209a | ed2085974b2a385ca1fd8cd696917d6cda8322e7 | fix vdom patch edge case for static nodes being reused and as insertion reference node (fix #3533) | [
{
"path": "src/core/instance/render.js",
"patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n import config from '../config'\n-import VNode, { emptyVNode } from '../vdom/vnode'\n+import VNode, { emptyVNode, cloneVNode, cloneVNodes } from '../vdom/vnode'\n import { normalizeChildren } from '../vdom/helpers'\n import... | 2016-08-27T20:29:07 |
mrdoob/three.js | f17e2622e64178cb408558ef54c84d0de6169f83 | 79c34909e6af9250c38182665e3bd4896149f0ea | Editor: Fixed ghost viewport camera (#28277)
* fixed viewport camera selector
* set viewport camera to editor.camera
* uses editor.camera as default camera | [
{
"path": "editor/js/Viewport.Controls.js",
"patch": "@@ -61,6 +61,8 @@ function ViewportControls( editor ) {\n \n \tsignals.editorCleared.add( function () {\n \n+\t\teditor.setViewportCamera( editor.camera.uuid );\n+\n \t\tshadingSelect.setValue( 'solid' );\n \t\teditor.setViewportShading( shadingSelect.ge... | 2024-05-06T12:46:38 |
denoland/deno | c5d06179a13cd3293fc5b133fde2598394d41972 | c1751d7ef4b0052c098b75392ad1f4434089419c | fix(bundle): resolve "sloppy imports" in npm packages when bundling (#29989)
Fixes a case reported in discord. At runtime node (and us) would fail on
this, but all major bundlers permit this. So as a fix, just allow it
during bundling only. | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -730,7 +730,7 @@ impl DenoPluginHandler {\n Position::new(0, 0),\n ResolveWithGraphOptions {\n mode: import_kind_to_resolution_mode(kind),\n- kind: NodeResolutionKind::Execution,\n+ kind: NodeResolutionKind::Bundling,\n ... | 2025-07-03T19:46:45 |
golang/go | 9f6936b8da81672cebcfa7ac3d6edddf9f1a5d65 | 89d41d254a758f9b5e554761c92508220f4342a5 | cmd/link: disallow linkname of runtime.addmoduledata
Although a comment on addmoduledata warns that it should not be
called from Go code, the linker still allow it to be accessed via
go:linkname. Using linkname on this function will cause a linker
crash when building with buildmode=plugin.
Fixes #75180
Change-Id: Ib... | [
{
"path": "src/cmd/link/internal/loader/loader.go",
"patch": "@@ -2440,6 +2440,7 @@ var blockedLinknames = map[string][]string{\n \t// Others\n \t\"net.newWindowsFile\": {\"net\"}, // pushed from os\n \t\"testing/synctest.testingSynctestTest\": {\"testing/synctest\"}, // pushe... | 2025-08-28T09:32:09 |
vuejs/vue | 44128f2ac745d84f12e20b73d2f9336510b23c9b | 3fa4076d05c6de7c7d3485376182323401bea375 | remove forgotten debugger statement | [
{
"path": "src/core/vdom/helpers.js",
"patch": "@@ -129,7 +129,6 @@ function arrInvoker (arr: Array<Function>): Function {\n function fnInvoker (o: { fn: Function }): Function {\n return function (ev) {\n const single = arguments.length === 1\n- if (typeof o.fn !== 'function') debugger\n single... | 2016-08-26T23:11:45 |
golang/go | 38204e087267a3408e36aa23d2b5ac36f22feef3 | 252c9011255872e21284480754400f9be7d48bf9 | testing/synctest: call out common issues with tests
While each point is explained their respective sections for Time,
Blocking, and Isolation, these appear to be the most common
issues worth calling out up front.
Fixes #75052
Change-Id: I916b559075ee4d1d23810a08459e037e21690193
Reviewed-on: https://go-review.googles... | [
{
"path": "src/testing/synctest/synctest.go",
"patch": "@@ -7,6 +7,14 @@\n // The [Test] function runs a function in an isolated \"bubble\".\n // Any goroutines started within the bubble are also part of the bubble.\n //\n+// Each test should be entirely self-contained:\n+// The following guidelines should ... | 2025-08-17T11:29:48 |
vuejs/vue | 3fa4076d05c6de7c7d3485376182323401bea375 | 3627a27179e2fc4c16d3d0eedc2cd89cfd7d77a2 | fix text parser regex for multiline tags (fix #3526) | [
{
"path": "src/compiler/parser/text-parser.js",
"patch": "@@ -3,7 +3,7 @@\n import { cached } from 'shared/util'\n import { parseFilters } from './filter-parser'\n \n-const defaultTagRE = /\\{\\{((?:.|\\\\n)+?)\\}\\}/g\n+const defaultTagRE = /\\{\\{((?:.|\\n)+?)\\}\\}/g\n const regexEscapeRE = /[-.*+?^${}()... | 2016-08-26T22:56:33 |
golang/go | 252c9011255872e21284480754400f9be7d48bf9 | 53515fb0a9e267d6040c1d8785fe51b1367e8d4d | os,syscall: pass file flags to CreateFile on Windows
Add support for FILE_FLAG_* constants in the flag argument of
os.OpenFile and syscall.Open on Windows.
Passing invalid flags will result in an error.
Updates #73676
Change-Id: Ie215a3dd14f0d74141533f0a07865a02a67a3846
Reviewed-on: https://go-review.googlesource.c... | [
{
"path": "doc/next/6-stdlib/99-minor/os/73676.md",
"patch": "@@ -0,0 +1,4 @@\n+On Windows, the [OpenFile] `flag` parameter can now contain any combination of\r\n+Windows-specific file flags, such as `FILE_FLAG_OVERLAPPED` and\r\n+`FILE_FLAG_SEQUENTIAL_SCAN`, for control of file or device caching behavior,\... | 2025-08-27T09:18:47 |
vuejs/vue | a152fe0e98b621010e6d9bd71c07e1120b7fbea0 | e6c5f21f86c3d2de4821c99566dba364c18b4c19 | only gen checkbox/radio model on input tags (fix #3516) | [
{
"path": "src/platforms/web/compiler/directives/model.js",
"patch": "@@ -13,19 +13,16 @@ export default function model (\n warn = _warn\n const value = dir.value\n const modifiers = dir.modifiers\n- if (el.tag === 'select') {\n+ const tag = el.tag\n+ const type = el.attrsMap.type\n+ if (tag === '... | 2016-08-26T22:28:58 |
mrdoob/three.js | 6990d5ff0225e534ef45b460f831c06b341cba0f | 1784e50b9a2eb2f03a538843ff43a0626f361b36 | Editor: Fixed non-localized history entries (#28275)
* localize commands
* adds space after colon
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "editor/js/Sidebar.Material.js",
"patch": "@@ -500,7 +500,7 @@ function SidebarMaterial( editor ) {\n \n \t\t\t\t}\n \n-\t\t\t\teditor.execute( new SetMaterialCommand( editor, currentObject, material, currentMaterialSlot ), 'New Material: ' + materialClass.getValue() );\n+\t\t\t\teditor.execute( n... | 2024-05-04T10:27:42 |
denoland/deno | 0470cb3ada68b0ad341be267c6676564374dab72 | 3a94adf95657bfd386459576f98b559fd1d7dda1 | fix(serve): actually wire up resolving main module with import map for deno serve (#29974)
Closes https://github.com/denoland/deno/issues/29897 | [
{
"path": "cli/tools/serve.rs",
"patch": "@@ -17,6 +17,7 @@ use crate::args::parallelism_count;\n use crate::args::Flags;\n use crate::args::ServeFlags;\n use crate::args::WatchFlagsWithPaths;\n+use crate::args::WorkspaceMainModuleResolver;\n use crate::factory::CliFactory;\n use crate::util::file_watcher::... | 2025-07-02T18:29:23 |
golang/go | 13bb48e6fbc35419a28747688426eb3684242fbc | ba1109feb515c2eb013399f53be5f17cfe1f189f | go/constant: fix complex != unknown comparison
By the contract of Compare, if one operand is Unknown, the result must be
false.
Fixes #75137
Change-Id: I56420fae808395f89769f5e5d448f9e1df9a622f
GitHub-Last-Rev: 858ba89a91bf966223975541af739ab0ab977075
GitHub-Pull-Request: golang/go#75140
Reviewed-on: https://go-revi... | [
{
"path": "src/go/constant/value.go",
"patch": "@@ -1083,7 +1083,10 @@ func match0(x, y Value) (_, _ Value) {\n \t\t\treturn rtof(x1), y\n \t\t}\n \tcase complexVal:\n-\t\treturn vtoc(x), y\n+\t\tswitch x1 := x.(type) {\n+\t\tcase int64Val, intVal, ratVal, floatVal:\n+\t\t\treturn vtoc(x1), y\n+\t\t}\n \t}\... | 2025-08-25T15:41:53 |
vuejs/vue | e6c5f21f86c3d2de4821c99566dba364c18b4c19 | 067450919377254bd194d7aa172ff53a7c97adbb | fix event initialization on reused slot nodes (fix #3518) | [
{
"path": "src/core/vdom/helpers.js",
"patch": "@@ -92,10 +92,13 @@ export function updateListeners (\n if (Array.isArray(cur)) {\n add(event, (cur.invoker = arrInvoker(cur)), capture)\n } else {\n- fn = cur\n- cur = on[name] = {}\n- cur.fn = fn\n- add(event, ... | 2016-08-26T22:23:18 |
mrdoob/three.js | b98f98a7b82de322a19a912c4ce2ea0b047aefae | 83a058b51492dcca971e69fd0a83249d8a7561aa | support updating only dirty `CompressedArrayTexture` layers (#27972)
* support CompressedArrayTexture
* docs
* address feedback
* s/length/size
* data array texture
* precompute texel size
* fix lint
* fix missing break statements
* s/dirty/update | [
{
"path": "docs/api/en/textures/CompressedArrayTexture.html",
"patch": "@@ -61,11 +61,32 @@ <h3>[property:number wrapR]</h3>\n \t\t<h3>[property:Object image]</h3>\n \t\t<p>Overridden with a object containing width, height, and depth.</p>\n \n+\t\t<h3>[property:Set layerUpdates]</h3>\n+\t\t<p>\n+\t\t\tA set... | 2024-05-04T08:52:42 |
denoland/deno | 3a94adf95657bfd386459576f98b559fd1d7dda1 | 7a1e949c476a3b55d6fb8a1141f74bc96c9da8fb | fix(ext/http2): fix oob buffer reads in http2 requests (#29969) | [
{
"path": "ext/node/polyfills/http2.ts",
"patch": "@@ -1041,7 +1041,7 @@ export class ClientHttp2Stream extends Duplex {\n data = ENCODER.encode(chunk);\n } else if (encoding === \"buffer\") {\n this.#encoding = encoding;\n- data = chunk.buffer;\n+ data = new Uint8Array(chunk.buffe... | 2025-07-02T16:28:50 |
golang/go | e47d88beae126387647348810b728ed12c8a0d61 | 6b837a64dbe6264035037d61c56ab94b55b2844d | os: return nil slice when ReadDir is used with a file on file_windows
ReadDir should return (nil, ENOTDIR) when the path points to a file
instead of a directory. That's the behavior on Unix systems, and it also
used to be the behavior on Windows. However, Windows currently returns
([]DirEntry{}, ENOTDIR).
We should c... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -11,6 +11,11 @@ import (\n \t\"unsafe\"\n )\n \n+// Openat flags supported by syscall.Open.\n+const (\n+\tO_DIRECTORY = 0x04000 // target must be a directory\n+)\n+\n // Openat flags not supported by syscall.Open.\n //\n // These are inven... | 2025-08-27T07:12:29 |
vuejs/vue | 067450919377254bd194d7aa172ff53a7c97adbb | eef040ebd0c459a9ee7ed930b0b9a530803687ba | avoid triggering select reset when selectedIndex has not changed (fix #3504) | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -64,9 +64,7 @@ export default {\n function setSelected (el, binding, vm) {\n const value = binding.value\n const isMultiple = el.multiple\n- if (!isMultiple) {\n- el.selectedIndex = -1\n- } else if (!Array.isArray(value)) {\n+ ... | 2016-08-23T14:30:40 |
mrdoob/three.js | 83a058b51492dcca971e69fd0a83249d8a7561aa | cc774f107f9baf5c82833a166e84d0f9dcbdc14a | fix mismatch .type (#28276) | [
{
"path": "editor/js/commands/SetMaterialVectorCommand.js",
"patch": "@@ -6,7 +6,7 @@ class SetMaterialVectorCommand extends Command {\n \n \t\tsuper( editor );\n \n-\t\tthis.type = 'SetMaterialColorCommand';\n+\t\tthis.type = 'SetMaterialVectorCommand';\n \t\tthis.name = `Set Material.${attributeName}`;\n ... | 2024-05-04T08:41:06 |
denoland/deno | 3ae11d889ad54d981aa5630b2835ee5f62fc0cd6 | 8150e761c943c327cf0dbc4daf44926a76b91c67 | fix(publish): disallow publishing with bytes or text imports (#29954) | [
{
"path": "cli/tools/publish/diagnostics.rs",
"patch": "@@ -123,6 +123,10 @@ pub enum PublishDiagnostic {\n text_info: SourceTextInfo,\n range: SourceRange,\n },\n+ UnstableRawImport {\n+ text_info: SourceTextInfo,\n+ referrer: deno_graph::Range,\n+ },\n SyntaxError(ParseDiagnostic),\n ... | 2025-07-01T15:47:54 |
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.