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 |
|---|---|---|---|---|---|
mrdoob/three.js | 791f845b9fa35c5d1393a4bcd341cdacc28e1b84 | 1ae6d2d57afb6ff2d73afd35dba10bf672254913 | ColorManagement: Add Display P3 transforms (#25520)
* ColorManagement: Add Display P3 transforms.
* Clean up
* Update color.getStyle(), add non-passing unit test.
* Clean up test
* Clean up
* Clean up
* Fix math and tests. | [
{
"path": "src/constants.js",
"patch": "@@ -150,6 +150,7 @@ export const ObjectSpaceNormalMap = 1;\n export const NoColorSpace = '';\n export const SRGBColorSpace = 'srgb';\n export const LinearSRGBColorSpace = 'srgb-linear';\n+export const DisplayP3ColorSpace = 'display-p3';\n \n export const ZeroStencilOp... | 2023-02-17T06:37:49 |
denoland/deno | f62fc9e81f69375cf9266ea4cd66e331b23d43e6 | 3747d2759aa2caaad4ed971b1cceebb7e9319575 | fix(check): npm resolution errors to tsc diagnostics (#28174)
Closes https://github.com/denoland/deno/issues/27188 | [
{
"path": "cli/graph_util.rs",
"patch": "@@ -40,6 +40,7 @@ use deno_runtime::deno_permissions::PermissionsContainer;\n use deno_semver::jsr::JsrDepPackageReq;\n use deno_semver::package::PackageNv;\n use deno_semver::SmallStackString;\n+use sys_traits::FsMetadata;\n \n use crate::args::config_to_deno_graph_... | 2025-02-18T21:44:49 |
golang/go | d60a684c87104ed7836403eab74eb2be1e4a97cb | 7a82b6a9e1ad6ace91e53011744ffefdbf5843bc | cmd/internal/obj/wasm: use i64 for large return addr
Use i64 to avoid overflow when getting PC_F from the return addr.
Fixes #73246
Change-Id: I5683dccf7eada4b8536edf53e2e83116a2f6d943
GitHub-Last-Rev: 267d9a1a031868430d0af530de14229ee1ae8609
GitHub-Pull-Request: golang/go#73277
Reviewed-on: https://go-review.google... | [
{
"path": "src/cmd/internal/obj/wasm/wasmobj.go",
"patch": "@@ -1006,9 +1006,10 @@ func genWasmExportWrapper(s *obj.LSym, appendp func(p *obj.Prog, as obj.As, args\n \t// In the unwinding case, we call wasm_pc_f_loop_export to handle stack switch and rewinding,\n \t// until a normal return (non-unwinding) b... | 2025-04-09T12:17:21 |
mrdoob/three.js | b08cbcd82d97589491e4826572b90b3987c57372 | f10a59a68f69b5f1f002d0898d5faca9c8013d20 | Puppeteer E2E test: Fix Chromium revision (#25511)
* Puppeteer E2E test: Fix Chromium revision
* Remove fetch | [
{
"path": "package-lock.json",
"patch": "@@ -20,9 +20,8 @@\n \"eslint-plugin-import\": \"^2.27.5\",\n \"failonlyreporter\": \"^1.0.0\",\n \"jimp\": \"^0.16.0\",\n- \"node-fetch\": \"^3.2.6\",\n \"pixelmatch\": \"^5.3.0\",\n- \"puppeteer-core\": \"^19.6.2\",\n+ ... | 2023-02-15T09:19:37 |
golang/go | cac276f81a5ff11ae3c9027c45d14469f2b7fb70 | 7007dfcd0c32c1be83c921b0859dd48464c7c5aa | internal/poll: fix race in Close
There is a potential race between a concurrent call to FD.initIO, which
calls FD.pd.init, and a call to FD.Close, which calls FD.pd.evict.
This is solved by calling FD.initIO in FD.Close, as that will block
until the concurrent FD.initIO has completed. Note that FD.initIO is
no-op if ... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -336,6 +336,10 @@ func (fd *FD) initIO() error {\n \t\treturn nil\n \t}\n \tfd.initIOOnce.Do(func() {\n+\t\tif fd.closing() {\n+\t\t\t// Closing, nothing to do.\n+\t\t\treturn\n+\t\t}\n \t\t// The runtime poller will ignore I/O completion\n \t\t// no... | 2025-04-08T13:31:02 |
golang/go | ecc06f0db79193a4fe16138148c7eb26d9af96f1 | 0909bcd9e4acb01089d588d608d669d69710e50a | cmd/compile: fix the test for ABI specification so it works right w/ generics
Change-Id: I09ef615bfe69a30fa8f7eef5f0a8ff94a244c920
Reviewed-on: https://go-review.googlesource.com/c/go/+/663776
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-sc... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -317,7 +317,7 @@ func buildssa(fn *ir.Func, worker int, isPgoHot bool) *ssa.Func {\n \t// optionally allows an ABI suffix specification in the GOSSAHASH, e.g. \"(*Reader).Reset<0>\" etc\n \tif strings.Contains(ssaDump, name) { // in all the ca... | 2025-04-08T01:38:01 |
golang/go | 0909bcd9e4acb01089d588d608d669d69710e50a | 53badd4836f88c45e686c60712ac3c9d6364e505 | syscall: remove unused windows function
It's causing the dependency test to fail.
Fixes #73274
Change-Id: I7d80ea4872e360c16ac3b77acf15fa2660d117b3
Reviewed-on: https://go-review.googlesource.com/c/go/+/663975
Auto-Submit: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account... | [
{
"path": "src/syscall/zsyscall_windows.go",
"patch": "@@ -948,15 +948,6 @@ func LocalFree(hmem Handle) (handle Handle, err error) {\n \treturn\n }\n \n-func localFree(hmem Handle) (handle Handle, err error) {\n-\tr0, _, e1 := Syscall(procLocalFree.Addr(), 1, uintptr(hmem), 0, 0)\n-\thandle = Handle(r0)\n-\... | 2025-04-08T22:16:50 |
mrdoob/three.js | 3a83365073d7b72f9171b1a8a4846f1a52f661d8 | 8f82d0698556153ee307a60ce5d839d6803131db | Examples: Fix typo in CSG example (#25507) | [
{
"path": "examples/webgl_geometry_csg.html",
"patch": "@@ -90,7 +90,7 @@\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio );\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n \t\t\t\trenderer.shadowMap.enabled = true;\n-\t\t\t\trenderer.shadowMap.type = THREE.PCFSoftShadow;\n+... | 2023-02-14T14:44:40 |
denoland/deno | 9b9eeabcc8958800c8f2ea13c03fca0be83dc186 | 6206343b54a96150d1cefa13604a27fd26317a9e | fix(node/sqlite): sqlite named parameters (#28154)
This PR introduces support for named parameters in SQLite queries, as
outlined in #28134 | [
{
"path": "ext/node/ops/sqlite/statement.rs",
"patch": "@@ -6,6 +6,7 @@ use std::rc::Rc;\n \n use deno_core::op2;\n use deno_core::v8;\n+use deno_core::v8::GetPropertyNamesArgs;\n use deno_core::GarbageCollected;\n use libsqlite3_sys as ffi;\n use serde::Serialize;\n@@ -217,6 +218,7 @@ impl StatementSync {\... | 2025-02-18T16:33:39 |
golang/go | 53badd4836f88c45e686c60712ac3c9d6364e505 | ec4a9fb3211e1b7bd4035af7d70f17a21cd26508 | net/http: push roundTrip panic higher in the stack
If Transport is a non-nil interface pointing to a nil implementer,
then a panic inside of roundTrip further obsfucates the issue.
Change-Id: I47664b8e6185c5f56b5e529f49022484b5ea1d94
Reviewed-on: https://go-review.googlesource.com/c/go/+/661897
LUCI-TryBot-Result: Go... | [
{
"path": "src/net/http/roundtrip.go",
"patch": "@@ -27,5 +27,8 @@ func badRoundTrip(*Transport, *Request) (*Response, error)\n // Like the RoundTripper interface, the error types returned\n // by RoundTrip are unspecified.\n func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n+\tif t == nil {... | 2025-04-01T21:04:29 |
mrdoob/three.js | 0a0cd31364d6033aa5d5f759e69766ee670159ea | 170323283ee44f99b41dc3d2825d92fe5e3d8300 | Docs: CompressedTexture and CompressedArrayTexture image property, Unit test Readme. (#25492)
* Update CompressedTexture.html
image property record type
* Update CompressedArrayTexture.html
image property record type
* Update README.md
fix typo
* Update README.md
Add common troubleshooting informa... | [
{
"path": "docs/api/en/textures/CompressedArrayTexture.html",
"patch": "@@ -39,7 +39,6 @@ <h3>[name]( [param:Array mipmaps], [param:Number width], [param:Number height],\n \n \t\t[page:Constant type] -- Default is [page:Textures THREE.UnsignedByteType].\n \t\tSee [page:Textures type constants] for other cho... | 2023-02-13T13:45:08 |
denoland/deno | 6206343b54a96150d1cefa13604a27fd26317a9e | 4ab380e0a7002bfd02633e9fcc9aab13f24aa55a | fix: handle all values for buffers in turbocall codegen (#28170)
Now that ArrayBuffer/ArrayBufferView is a generic Value type, we have to
handle it being passed any value. To do this, thread
FastApiCallbackOptions through the function, and add error raising
logic.
If we run conversion and the value is not valid, we r... | [
{
"path": "cli/lib/util/logger.rs",
"patch": "@@ -95,6 +95,8 @@ pub fn init<\n .filter_module(\"opentelemetry_sdk\", log::LevelFilter::Off)\n // for deno_compile, this is too verbose\n .filter_module(\"editpe\", log::LevelFilter::Error)\n+ // too verbose\n+ .filter_module(\"cranelift_codegen\", log:... | 2025-02-18T16:24:25 |
golang/go | ec4a9fb3211e1b7bd4035af7d70f17a21cd26508 | 3acd4402195aadc581aa68977154ac3b3403f8af | context: don't return a nil Cause for a canceled custom context
Avoid a case where Cause(ctx) could return nil for a canceled context,
when ctx is a custom context implementation and descends from a
cancellable-but-not-canceled first-party Context.
Fixes #73258
Change-Id: Idbd81ccddea82ecabece4373d718baae6ca4b58e
Re... | [
{
"path": "src/context/context.go",
"patch": "@@ -288,11 +288,17 @@ func withCancel(parent Context) *cancelCtx {\n func Cause(c Context) error {\n \tif cc, ok := c.Value(&cancelCtxKey).(*cancelCtx); ok {\n \t\tcc.mu.Lock()\n-\t\tdefer cc.mu.Unlock()\n-\t\treturn cc.cause\n+\t\tcause := cc.cause\n+\t\tcc.mu.... | 2025-04-08T20:39:08 |
mrdoob/three.js | 4da6d4ea9f5c32d5dcb7752bc732542ba90220ee | 8fab13b240999d157459f0caefbc5ee4357fd45d | docs: fix `Ray.set` param name (#25487) | [
{
"path": "docs/api/en/math/Ray.html",
"patch": "@@ -196,7 +196,7 @@ <h3>[method:this recast]( [param:Float t] )</h3>\n \t\t<h3>[method:this set]( [param:Vector3 origin], [param:Vector3 direction] )</h3>\n \t\t<p>\n \t\t[page:Vector3 origin] - the [page:.origin origin] of the [page:Ray].<br />\n-\t\t[page:V... | 2023-02-12T10:05:40 |
denoland/deno | 4ab380e0a7002bfd02633e9fcc9aab13f24aa55a | 2f4527562cf8ae79f5076501cee2217c976edd0c | fix(ext/node): implement StatementSync#iterate (#28168)
Fixes https://github.com/denoland/deno/issues/28130 | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -205,6 +205,7 @@ impl DatabaseSync {\n inner: raw_stmt,\n db: self.conn.clone(),\n use_big_ints: Cell::new(false),\n+ is_iter_finished: false,\n })\n }\n ",
"additions": 1,
"deletions": 0,
"language": "Rust"
... | 2025-02-18T15:56:17 |
mrdoob/three.js | a2a1711269f93e37f4f69f06f4e5c7ed3818f57d | 367ff8a196ea4c65ddabd24fd3bc40aa7b0042d2 | OrbitControls: Add `stopListenToKeyEvents()`. (#25418)
* Add OrbitControls.removeKeyEvents()
If I called listenToKeyEvents(), sometimes I want to remove this event
listener, temporary or otherwise.
* Update OrbitControls.js
Fix DOM element reference.
* Update OrbitControls.js
* Update OrbitControls.js
... | [
{
"path": "examples/jsm/controls/OrbitControls.js",
"patch": "@@ -124,6 +124,13 @@ class OrbitControls extends EventDispatcher {\n \n \t\t};\n \n+\t\tthis.stopListenToKeyEvents = function () {\n+\n+\t\t\tthis._domElementKeyEvents.removeEventListener( 'keydown', onKeyDown );\n+\t\t\tthis._domElementKeyEvents... | 2023-02-11T14:53:56 |
golang/go | 559b5d814f63bbeee626778c41ab4ee4fd48030a | 3a4f077710b96ee72fcd4214280a41a7c355205b | go/types, types2: fix failing error message test for s390x
Fixes #73206.
Change-Id: If27ce5fe7aa71415b6e2d525c78b1f04b88a308b
Reviewed-on: https://go-review.googlesource.com/c/go/+/663635
TryBot-Result: Gopher Robot <gobot@golang.org>
TryBot-Bypass: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Robert Griesemer... | [
{
"path": "src/internal/types/testdata/fixedbugs/issue70549.go",
"patch": "@@ -7,9 +7,9 @@ package p\n import \"math\"\n \n var (\n-\t_ = math.Sin\n-\t_ = math.SIn /* ERROR \"undefined: math.SIn (but have Sin)\" */\n-\t_ = math.sin /* ERROR \"name sin not exported by package math\" */\n-\t_ = math.Foo /* ER... | 2025-04-07T21:28:47 |
denoland/deno | 2f4527562cf8ae79f5076501cee2217c976edd0c | 45777b8eca5d527b59b9a714f77b878cc038df1f | fix(init): force --reload if npm or jsr package (#28150)
Ref
https://github.com/denoland/deno/issues/28148#issuecomment-2663189433 | [
{
"path": "cli/tools/init/mod.rs",
"patch": "@@ -334,6 +334,7 @@ async fn init_npm(name: &str, args: Vec<String>) -> Result<i32, AnyError> {\n script: script_name,\n ..Default::default()\n }),\n+ reload: true,\n ..Default::default()\n };\n crate::tools::run::run_script(",
"add... | 2025-02-18T12:43:32 |
mrdoob/three.js | 367ff8a196ea4c65ddabd24fd3bc40aa7b0042d2 | 9d29a42cc59dfa8a56903c6655d5d1b04fc14dc8 | KTX2Loader: Fix mipmaps width and height. (#25375)
* KTX2Loader exmaple - Transcode wrong mipmaps size #25339
* KTX2Loader exmaple - Transcode wrong mipmaps size #25339
* Update KTX2Loader.js
---------
Co-authored-by: Radek Zajkowski <rzajkowski@seemymodel.com>
Co-authored-by: Michael Herzog <michael.her... | [
{
"path": "examples/jsm/loaders/KTX2Loader.js",
"patch": "@@ -475,8 +475,8 @@ KTX2Loader.BasisWorker = function () {\n \t\t\tfor ( let layer = 0; layer < layers; layer ++ ) {\n \n \t\t\t\tconst levelInfo = ktx2File.getImageLevelInfo( mip, layer, 0 );\n-\t\t\t\tmipWidth = levelInfo.origWidth;\n-\t\t\t\tmipHe... | 2023-02-10T16:42:57 |
golang/go | 3a4f077710b96ee72fcd4214280a41a7c355205b | 58b6891108fa75f5856750e13dff3fa980987f07 | syscall: fix dangling pointers in Windows' process attributes
Windows' _PROC_THREAD_ATTRIBUTE_LIST can contain pointers to memory
owned by Go, but the GC is not aware of this. This can lead to the
memory being freed while the _PROC_THREAD_ATTRIBUTE_LIST is still in
use.
This CL uses the same approach as in x/sys/wind... | [
{
"path": "src/syscall/exec_windows.go",
"patch": "@@ -332,20 +332,20 @@ func StartProcess(argv0 string, argv []string, attr *ProcAttr) (pid int, handle\n \t\t\tdefer DuplicateHandle(parentProcess, fd[i], 0, nil, 0, false, DUPLICATE_CLOSE_SOURCE)\n \t\t}\n \t}\n-\tsi := new(_STARTUPINFOEXW)\n-\tsi.ProcThrea... | 2025-04-08T09:19:57 |
mrdoob/three.js | 9f214bc799ac9fb4ee20153555bfc5e305338872 | df9f1a1e522d392ca72a1bc3f7196ee7cee1780c | Manual: fixed link error for editor.html (#25461) | [
{
"path": "manual/examples/resources/editor.html",
"patch": "@@ -277,7 +277,7 @@\n </div>\n </div>\n </body>\n-<script src=\"/manual/3rdparty/monaco-editor/min/vs/loader.js\"></script>\n+<script src=\"https://unpkg.com/monaco-editor@0.34.1/min/vs/loader.js\"></script>\n <script src=\"editor-settings.js\">... | 2023-02-07T06:25:48 |
denoland/deno | 45777b8eca5d527b59b9a714f77b878cc038df1f | f2a8c300d48f3d85be14d10b2a497567195f080f | fix(ext/node): use primordials in `ext/node/polyfills/path/common.ts` (#28164)
Related to https://github.com/denoland/deno/issues/24236 | [
{
"path": "ext/node/polyfills/path/common.ts",
"patch": "@@ -1,9 +1,16 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // This module is browser compatible.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n+import { primor... | 2025-02-18T11:51:14 |
golang/go | 58b6891108fa75f5856750e13dff3fa980987f07 | 38a2a3c7ce156e01f8980cb97912b7067709aaa3 | go/ast: don't MergeLine in SortImports when last import on the same line as RParen
Fixes #69183
Change-Id: I8b78dadaa8ba91e74ea2bfc21abd6abe72b7e38b
GitHub-Last-Rev: 1a41f9e8e3bef9926993813568902d1a77c991c1
GitHub-Pull-Request: golang/go#69187
Reviewed-on: https://go-review.googlesource.com/c/go/+/610035
Reviewed-by:... | [
{
"path": "src/go/ast/import.go",
"patch": "@@ -33,11 +33,11 @@ func SortImports(fset *token.FileSet, f *File) {\n \t\tfor j, s := range d.Specs {\n \t\t\tif j > i && lineAt(fset, s.Pos()) > 1+lineAt(fset, d.Specs[j-1].End()) {\n \t\t\t\t// j begins a new run. End this one.\n-\t\t\t\tspecs = append(specs, s... | 2025-04-08T06:43:33 |
mrdoob/three.js | df9f1a1e522d392ca72a1bc3f7196ee7cee1780c | 0bf38ce547c71d7157c89d35ee50c5e141c13c3c | Puppeteer E2E test: Enable usage of MacOS ARM (#25459)
* Puppeteer: Enable using MacOS ARM
* Also fix screenshots uploading | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -79,6 +79,7 @@ jobs:\n run: npm run test-e2e\n - name: Upload output screenshots\n uses: actions/upload-artifact@v3\n+ if: always()\n with:\n name: Output screenshots\n path: test/e2e/output-screensho... | 2023-02-07T06:10:12 |
denoland/deno | 1f169f4b09a18edd67adee348e718d89a9ff3912 | 70d775c57d30c71b4857fc1892773e2a3eafb7af | fix(lint): don't mark plugin diagnostic as fixable, if it's not (#28147)
A vector with fixes was always created, even if there were no
applicable fixes. | [
{
"path": "cli/ops/lint.rs",
"patch": "@@ -146,10 +146,14 @@ impl LintPluginContainer {\n })\n .collect::<Result<Vec<LintFixChange>, LintReportError>>()?;\n \n- let fixes = vec![LintFix {\n- changes,\n- description: format!(\"Fix this {} problem\", id).into(),\n- }];\n+ let mu... | 2025-02-17T14:46:55 |
golang/go | 14b15a2beaed423ba6b6c97fa5983bd57999038e | af278bfb1f07b9f8f84d325a84b3891a3ab0dbf1 | internal/runtime/maps: pass proper func PC to race.WritePC/race.ReadPC
Fixes #73191
Change-Id: I0f8a5a19faa745943a98476c7caf4c97ccdce184
Reviewed-on: https://go-review.googlesource.com/c/go/+/663175
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <m... | [
{
"path": "src/internal/runtime/maps/runtime_fast32_swiss.go",
"patch": "@@ -17,7 +17,7 @@ import (\n func runtime_mapaccess1_fast32(typ *abi.SwissMapType, m *Map, key uint32) unsafe.Pointer {\n \tif race.Enabled && m != nil {\n \t\tcallerpc := sys.GetCallerPC()\n-\t\tpc := abi.FuncPCABIInternal(runtime_map... | 2025-04-05T17:29:49 |
mrdoob/three.js | 61a06c454b2b01806c12b0558ecf93a806b97281 | 2340c11d882e4bc52fd0ddc19b865cfa49de1d46 | Puppeteer E2E test: Show actual and difference screenshots (#25410)
* Puppeteer: Show actual and diff screenshots
* Semicolons
* Fix warning | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -77,6 +77,12 @@ jobs:\n \n - name: === E2E testing ===\n run: npm run test-e2e\n+ - name: Upload output screenshots\n+ uses: actions/upload-artifact@v3\n+ with:\n+ name: Output screenshots\n+ path: test/e2e... | 2023-02-06T11:17:40 |
denoland/deno | 70d775c57d30c71b4857fc1892773e2a3eafb7af | 36933fb0b88e2279c889704b00b62892d1e9c061 | fix(unstable/temporal): implement `Temporal.ZonedDateTime.getTimeZoneTransition` (#27770)
This patches Temporal to support the `getTimeZoneTransition` method on
`ZonedDateTime`.
See https://github.com/denoland/deno/issues/27731.
Co-authored-by: printfn <printfn@users.noreply.github.com> | [
{
"path": "runtime/js/99_main.js",
"patch": "@@ -42,6 +42,7 @@ const {\n ObjectSetPrototypeOf,\n PromisePrototypeThen,\n PromiseResolve,\n+ RangeError,\n StringPrototypePadEnd,\n Symbol,\n SymbolIterator,\n@@ -473,6 +474,136 @@ function exposeUnstableFeaturesForWindowOrWorkerGlobalScope(unstabl... | 2025-02-17T14:02:34 |
golang/go | af278bfb1f07b9f8f84d325a84b3891a3ab0dbf1 | 92309ff771be5daa113acb85ad22e8783188ca67 | cmd/compile: add additional flag constant folding rules
Fixes #73200
Change-Id: I77518d37acd838acf79ed113194bac5e2c30897f
Reviewed-on: https://go-review.googlesource.com/c/go/+/663535
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules",
"patch": "@@ -1385,16 +1385,18 @@\n (CSNEG [cc] x y (InvertFlags cmp)) => (CSNEG [arm64Invert(cc)] x y cmp)\n \n // absorb flag constants into boolean values\n-(Equal (FlagConstant [fc])) => (MOVDconst [b2i(fc.eq())])\n-(NotEqual (FlagC... | 2025-04-07T17:33:31 |
mrdoob/three.js | 8ec4ab780e3c3d36837a30c5992a946dcc8f626d | 49eccbb9e0cb79ad4fd6a1eb608393ac2a012fc2 | Puppeteer: Bug fix (#25447) | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -81,6 +81,7 @@ const exceptionList = [\n \t'webgl_loader_texture_lottie',\n \t'webgl_loader_texture_pvrtc',\n \t'webgl_materials_blending',\n+\t'webgl_mirror',\n \t'webgl_morphtargets_face',\n \t'webgl_nodes_materials_standard',\n \t'webgl_postprocessing_cross... | 2023-02-06T10:55:59 |
denoland/deno | 4ff629bb2aa97084ca9cf334fe64405cb7476f23 | 56f67b58511d59c5da4b62aec1dced30a17b5de4 | chore: fix dts file for DefinitelyTyped linting (#28114)
Added this so that we only export exports from `Deno.lint`. Required to
pass DefinitelyTyped's linting. | [
{
"path": "cli/tsc/dts/lib.deno.unstable.d.ts",
"patch": "@@ -3957,6 +3957,8 @@ declare namespace Deno {\n | TSTypeAnnotation\n | TSTypeParameterDeclaration\n | TSTypeParameter;\n+\n+ export {}; // only export exports\n }\n \n export {}; // only export exports",
"additions": 2,
... | 2025-02-16T18:56:17 |
mrdoob/three.js | 49eccbb9e0cb79ad4fd6a1eb608393ac2a012fc2 | b64399b789a6b9a534da4c1894438eeefcb5d750 | Puppeteer E2E test: Multi-page in-browser parallelism (#25386)
* Puppeteer: Multi-page parallelism
* Remove CI parallelism
* Some fixes
* Fix the 'Execution context was destroyed' error
* Update logging
* Restore CI parallelism in 2 threads
* More exceptions
* Oops
* Add Mac's own exception lis... | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -58,8 +58,8 @@ jobs:\n strategy:\n fail-fast: false\n matrix:\n- os: [ windows-latest, ubuntu-latest ]\n- CI: [ 0, 1, 2, 3, 4, 5, 6, 7 ]\n+ os: [ windows-latest, ubuntu-latest, macos-latest ]\n+ CI: [ 0, 1, 2, 3 ]... | 2023-02-06T10:43:04 |
mrdoob/three.js | 780feac0f3d749561c49c00ae1fe84d3030962d2 | 1ad78ef3dd5f7bb55a4849f2d60e076513d44d49 | Puppeteer E2E test: Regenerate high-differenсe screenshots and decrease threshold (#25403)
* Puppeteer: Regenerate high-differene screenshots
* Update exceptions
* Fix | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -18,21 +18,38 @@ const exceptionList = [\n \t'css3d_youtube',\n \t'webgl_video_kinect',\n \t'webgl_video_panorama_equirectangular',\n+\t'webxr_vr_video',\n \n \t'webaudio_visualizer', // audio can't be analyzed without proper audio hook\n \n-\t'webgl_effects_a... | 2023-02-06T09:50:41 |
denoland/deno | 979e2f715836c037316b7f29e96493f46a534b3d | c08a4b61ac9fc6ebbb2f9ab026720ab72293f669 | feat: Upgrade V8 to 13.4 (#28080)
- upgrade v8 to 13.4
- turbocall conversion for arraybuffers is now much more complex, so use
cranelift
- misc updates for deprecated fns
- v8 default stack size is too small now, causing stack overflow
exceptions in some tests
- add syscall shim to support new syscall in old sysroot | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -102,6 +102,8 @@ ${installPkgsCommand} || echo 'Failed. Trying again.' && sudo apt-get clean && s\n # Fix alternatives\n (yes '' | sudo update-alternatives --force --all) > /dev/null 2> /dev/null || true\n \n+clang-${llvmVersion} -c -o /tmp/memfd_cr... | 2025-02-14T11:26:47 |
denoland/deno | c08a4b61ac9fc6ebbb2f9ab026720ab72293f669 | 02ded3b1f6ca6388027bea2297ebf7e12f8860e6 | fix(workspace): diagnostic for imports in member with importMap at root (#28116)
Closes https://github.com/denoland/deno/issues/28110 | [
{
"path": "Cargo.lock",
"patch": "@@ -1599,9 +1599,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_config\"\n-version = \"0.46.0\"\n+version = \"0.48.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"08fe512a72c4300bd997c6849450a1f050da0c909a2a4fbdc44891647392bac... | 2025-02-14T11:04:25 |
golang/go | 92309ff771be5daa113acb85ad22e8783188ca67 | 8054d2da5bdbaf154b258d8d2fd24025a809b0de | doc/next: fix link
It was rendering incorrectly at https://tip.golang.org/doc/go1.25
Change-Id: I2f66c95414ac5d71b9b02b91bcdc0d0a87b3f605
Reviewed-on: https://go-review.googlesource.com/c/go/+/662436
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Brad Fitzpatric... | [
{
"path": "doc/next/6-stdlib/99-minor/net/56025.md",
"patch": "@@ -1,4 +1,4 @@\n-[LookupMX] and [(*Resolver).LookupMX] now return DNS names that look\n+[LookupMX] and [*Resolver.LookupMX] now return DNS names that look\n like valid IP address, as well as valid domain names.\n Previously if a name server ret... | 2025-04-02T23:12:37 |
mrdoob/three.js | 1ad78ef3dd5f7bb55a4849f2d60e076513d44d49 | 9e9466d0cb8bc387bfff51ce9f050bbe662783a0 | Tests: Post Update Review (#25417)
* Update AudioContext.tests.js
Use Qunit hooks to provision and cleanup global mocks.
* Update AudioListener.tests.js
Use Qunit hooks to provision and cleanup global mocks.
* Update WebGL1Renderer.tests.js
Explicit block scope for variables used in tests.
* Update W... | [
{
"path": "test/unit/src/audio/AudioContext.tests.js",
"patch": "@@ -4,37 +4,47 @@ import { AudioContext } from '../../../../src/audio/AudioContext.js';\n \n export default QUnit.module( 'Audios', () => {\n \n-\tQUnit.module( 'AudioContext', () => {\n+\tQUnit.module( 'AudioContext', ( hooks ) => {\n \n \t\t... | 2023-02-06T08:58:48 |
denoland/deno | 02ded3b1f6ca6388027bea2297ebf7e12f8860e6 | 6c368c246915805f57441db31639f7ed6993744a | fix(lint): react-rules-of-hooks works with destructuring (#28113) | [
{
"path": "Cargo.lock",
"patch": "@@ -2031,9 +2031,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_lint\"\n-version = \"0.72.0\"\n+version = \"0.72.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ff1057c63ef31a7b3a8426bac62c3d3b31049383e044928432238b79aba2b1c4\... | 2025-02-14T09:30:48 |
mrdoob/three.js | 9e9466d0cb8bc387bfff51ce9f050bbe662783a0 | 0288ea17be81fe9e258a42af5ed816bae0315c5c | Fix GLTFExporter MAT3 accessor support (#25426) | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -1095,6 +1095,7 @@ class GLTFWriter {\n \t\t\t2: 'VEC2',\n \t\t\t3: 'VEC3',\n \t\t\t4: 'VEC4',\n+\t\t\t9: 'MAT3',\n \t\t\t16: 'MAT4'\n \n \t\t};",
"additions": 1,
"deletions": 0,
"language": "JavaScript"
}
] | 2023-02-06T08:47:26 |
golang/go | 8054d2da5bdbaf154b258d8d2fd24025a809b0de | b2819d13dbe19343426e688da4ddfeb57c8589fc | strconv: use switch for '+'/'-' prefix handling
Follow the approach used in strconv's readFloat, decimal.set, and Atoi,
where leading '+' and '-' are handled using a switch for clarity and
consistency.
Change-Id: I41eff34ce90b5ac43fcdbc0bb88910d6d5fb4d39
GitHub-Last-Rev: 0c9d2efb5a828515fa00afdba8c436aa31fb0e53
GitHu... | [
{
"path": "src/strconv/atof.go",
"patch": "@@ -77,12 +77,12 @@ func (b *decimal) set(s string) (ok bool) {\n \tif i >= len(s) {\n \t\treturn\n \t}\n-\tswitch {\n-\tcase s[i] == '+':\n+\tswitch s[i] {\n+\tcase '+':\n \t\ti++\n-\tcase s[i] == '-':\n-\t\tb.neg = true\n+\tcase '-':\n \t\ti++\n+\t\tb.neg = true\... | 2025-04-06T13:08:57 |
mrdoob/three.js | e37fbc7bbb9aeff6143b545624df22384ccba5c3 | 82bd9a35dc22aaccfca897bdd008024c4b1bd722 | Docs: fix shadertoy titles (#25439) | [
{
"path": "manual/en/shadertoy.html",
"patch": "@@ -1,6 +1,6 @@\n <!DOCTYPE html><html lang=\"en\"><head>\n <meta charset=\"utf-8\">\n- <title>and Shadertoy</title>\n+ <title>Three.js and Shadertoy</title>\n <meta name=\"viewport\" content=\"width=device-width, user-scalable=no, minimum-scale=... | 2023-02-05T22:43:28 |
denoland/deno | 6c368c246915805f57441db31639f7ed6993744a | a2fafd3e3146674bb7d41d41770223366e1e38fe | fix(unstable): align js lint context API with eslint (#28066)
This PR aligns the `RuleContext` of JS plugins with ESLint.
---------
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "cli/js/40_lint.js",
"patch": "@@ -277,7 +277,8 @@ export class SourceCode {\n */\n export class Context {\n id;\n- fileName;\n+ // ESLint uses lowercase\n+ filename;\n sourceCode;\n \n /**\n@@ -287,10 +288,18 @@ export class Context {\n */\n constructor(ctx, id, fileName) {\n t... | 2025-02-13T14:01:57 |
golang/go | d584d2b3dda9ab88a51a3e9cffe8ecd140479cef | a08d2db6d1b8a46d2fc909b848da20ef1b8f5e8f | cmd/go: fix version stamping for v2 modules and subdirectories
We were not passing the module path to newCodeRepo which caused it to
incorrectly parse the major version. This allowed v0 and v1 modules to
work because an empty major version is allowed in that case.
Additionally we need to pass the root module path to ... | [
{
"path": "src/cmd/go/internal/load/pkg.go",
"patch": "@@ -2577,7 +2577,16 @@ func (p *Package) setBuildInfo(ctx context.Context, autoVCS bool) {\n \t\t}\n \t\tappendSetting(\"vcs.modified\", strconv.FormatBool(st.Uncommitted))\n \t\t// Determine the correct version of this module at the current revision an... | 2025-03-31T19:06:43 |
mrdoob/three.js | 68d4bd96cd6fd02324dcaff5a583ac35ecddd841 | 311f46493b2132c8aba1c0b046f8fecf2fecf1b7 | GLTFLoader: Fix node parse (#25377)
* GLTFLoader: Fix node parse
This commit fixes a GLTFLoader node parse bug that
can cause an infinite loop in node parse - skin
parse - node parse.
The solution is adding ._loadNode() that parses a
single node without child nodes or skin to the parser.
.loadNode() and .loa... | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -2344,6 +2344,9 @@ class GLTFParser {\n \t\t// BufferGeometry caching\n \t\tthis.primitiveCache = {};\n \n+\t\t// Node cache\n+\t\tthis.nodeCache = {};\n+\n \t\t// Object3D instance caches\n \t\tthis.meshCache = { refs: {}, uses: {} };\n \t\tthis.... | 2023-02-02T03:10:05 |
denoland/deno | a2fafd3e3146674bb7d41d41770223366e1e38fe | adf461f0dfc62112bec98ba39c5a5f7f8384b2f3 | fix: cache bust http cache on lockfile integrity mismatch (#28087)
Cache busts the http cache when the lockfile integrity doesn't match
what's in the cache. This will help when someone's lockfile is in line
with the remote server, but their local cache isn't. | [
{
"path": "Cargo.lock",
"patch": "@@ -1868,9 +1868,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_graph\"\n-version = \"0.87.2\"\n+version = \"0.87.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"e4766f426e4258c481c3af019fb4bba31e3108e80b8b2a48bbeb68bfadcc8c18... | 2025-02-13T12:23:24 |
golang/go | adb29670fcf704e1b76db4d31331aaecd0db7118 | 20a924fe877b70af75d26d0e7fa86b3310851f76 | runtime: protect plan9 time_now function with !faketime build tag
The introduction of monotonic time support for Plan 9 in CL 656755
causes a build error with multiple declaration of time_now when
built with tag faketime. Correct this by moving function time_now
into its own source file with !faketime build tag.
Fixe... | [
{
"path": "src/runtime/os_plan9.go",
"patch": "@@ -222,6 +222,7 @@ func unminit() {\n // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.\n //\n // This always runs without a P, so //go:nowritebarrierrec is required.\n+//\n //go:nowritebarrierrec\n func mdestroy(mp *m) {\n... | 2025-04-04T19:48:18 |
mrdoob/three.js | aeb44442203dd5b57fd6934575f877567e3a5418 | df181a2086474b5ba60cdf20b8b3cfb0592452ff | Examples: Fixed NodeMaterial not import error. (#25400) | [
{
"path": "examples/webgl_nodes_loader_gltf_sheen.html",
"patch": "@@ -36,6 +36,8 @@\n \n \t\t\timport * as THREE from 'three';\n \n+\t\t\timport { NodeMaterial, uv, mul, mix, color, checker } from 'three/nodes';\n+\n \t\t\timport { nodeFrame } from 'three/addons/renderers/webgl/nodes/WebGLNodes.js';\n \n \... | 2023-02-01T16:22:48 |
denoland/deno | adf461f0dfc62112bec98ba39c5a5f7f8384b2f3 | e1871e5291eed3a961c310a90bcaa6627597ef6d | fix(task): support --frozen flag (#28094)
Supports `deno task --frozen=false some_task`, which is necessary
because with `"nodeModulesDir": "auto"` or `"global"` (the default with
no package.json) we do an auto-install of npm packages.
Closes https://github.com/denoland/deno/issues/28070 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -3026,6 +3026,7 @@ Evaluate a task from string\n .allow_external_subcommands(true)\n .subcommand_value_name(\"TASK\")\n .arg(config_arg())\n+ .arg(frozen_lockfile_arg())\n .arg(\n Arg::new(\"cwd\")\n .long(\"cwd\")\n@... | 2025-02-13T12:22:15 |
golang/go | 20a924fe877b70af75d26d0e7fa86b3310851f76 | 3046b499918929944cbce1c0ed14c14d0b431adf | log/slog: make examples playable
Fixes #69246
Change-Id: I8e59132980404ee58ba2ca8718dd9f68404fdf8d
GitHub-Last-Rev: f59d3fad2002cda69a24789f2fdd4e9753cede9c
GitHub-Pull-Request: golang/go#69249
Reviewed-on: https://go-review.googlesource.com/c/go/+/610535
Reviewed-by: Sean Liao <sean@liao.dev>
Auto-Submit: Sean Liao ... | [
{
"path": "src/log/slog/example_discard_test.go",
"patch": "@@ -6,15 +6,20 @@ package slog_test\n \n import (\n \t\"log/slog\"\n-\t\"log/slog/internal/slogtest\"\n \t\"os\"\n )\n \n func Example_discardHandler() {\n+\tremoveTime := func(groups []string, a slog.Attr) slog.Attr {\n+\t\tif a.Key == slog.TimeKe... | 2025-04-06T16:29:46 |
mrdoob/three.js | 88c3d4d014d2d3ab14eae002468ca1941c1c35d8 | d5456c92b9c2241e23c01397c37ca4fa013a5501 | GLTFLoader: Add `EXT_texture_avif` support. (#25173)
* GLTFLoader EXT_texture_avif support
* add missing ctor for GLTFTextureAVIFExtension
* add avif example
* add screenshot and fix formatting on files.json
* Update webgl_loader_gltf_avif.html
Improve code style.
* added new familiar demo
-------... | [
{
"path": "examples/files.json",
"patch": "@@ -92,6 +92,7 @@\n \t\t\"webgl_loader_gltf_sheen\",\n \t\t\"webgl_loader_gltf_transmission\",\n \t\t\"webgl_loader_gltf_variants\",\n+\t\t\"webgl_loader_gltf_avif\",\n \t\t\"webgl_loader_ifc\",\n \t\t\"webgl_loader_imagebitmap\",\n \t\t\"webgl_loader_kmz\",",
... | 2023-01-31T21:31:29 |
denoland/deno | e1871e5291eed3a961c310a90bcaa6627597ef6d | bb4ee0cb17e9f7ed2f4da5ec249689b87aab9e66 | feat(unstable): add js lint plugin source code helpers (#28065)
This PR adds a part of the `SourceCode` API in eslint (see
https://eslint.org/docs/latest/extend/custom-rules#applying-fixes) .
It's used to get the text of the current node, etc. | [
{
"path": "cli/js/40_lint.js",
"patch": "@@ -192,32 +192,103 @@ class Fixer {\n }\n }\n \n+/**\n+ * @implements {Deno.lint.SourceCode}\n+ */\n+export class SourceCode {\n+ /** @type {string | null} */\n+ #source = null;\n+\n+ /** @type {AstContext} */\n+ #ctx;\n+\n+ /**\n+ * @param {AstContext} ctx... | 2025-02-13T12:19:55 |
golang/go | 3046b499918929944cbce1c0ed14c14d0b431adf | a6e74454577c68ea96ce6512e3e92beffbe15c5c | crypto/tls: add offered cipher suites to the handshake error
This change makes debugging easier if the server handshake fails because
the client only offers unsupported algorithms.
Change-Id: I7daac173a16af2e073aec3d9b59709560f540c6f
Reviewed-on: https://go-review.googlesource.com/c/go/+/631555
Reviewed-by: Dmitri Sh... | [
{
"path": "src/crypto/tls/handshake_server.go",
"patch": "@@ -378,7 +378,8 @@ func (hs *serverHandshakeState) pickCipherSuite() error {\n \ths.suite = selectCipherSuite(preferenceList, hs.clientHello.cipherSuites, hs.cipherSuiteOk)\n \tif hs.suite == nil {\n \t\tc.sendAlert(alertHandshakeFailure)\n-\t\tretu... | 2024-11-24T14:28:34 |
mrdoob/three.js | be7a33dfc1abcb699e36dc5fcfbc1e70fcd46315 | dd998eb3c842d90e367b14aaf191e068cb804cf9 | Puppeteer E2E test: Bug fix (#25389)
* Puppeteer: Bug fix
* Disable MacOS until a proper solution in #25386 | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -58,8 +58,8 @@ jobs:\n strategy:\n fail-fast: false\n matrix:\n+ os: [ windows-latest, ubuntu-latest ]\n CI: [ 0, 1, 2, 3, 4, 5, 6, 7 ]\n- os: [ windows-latest, ubuntu-latest, macos-latest ]\n env:\n CI: ${{ m... | 2023-01-31T21:16:25 |
denoland/deno | d7203c9522a91582e7e361053d0cf16e2f934273 | 7946906ac50f9a5ccae61ca90985150be0b0b9b0 | fix(completions): remove problematic character for powershell (#28102)
Untested because I am not on a windows machine atm.
Closes #28092 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -1772,7 +1772,7 @@ If you specify a directory instead of a file, the path is expanded to all contai\n }\n \n fn bundle_subcommand() -> Command {\n- command(\"bundle\", \"⚠️ `deno bundle` was removed in Deno 2.\n+ command(\"bundle\", \"`deno bundle` was removed... | 2025-02-13T11:32:14 |
mrdoob/three.js | dd998eb3c842d90e367b14aaf191e068cb804cf9 | ab772203d5d5f3b81451430fe35c76151a537264 | Update threejs-primitives.js
Fix regression. | [
{
"path": "manual/resources/threejs-primitives.js",
"patch": "@@ -900,9 +900,9 @@ const geometry = new THREE.WireframeGeometry(\n \t\tfunction makeExample( elem, createFn, src ) {\n \n \t\t\tconst rawLines = createFn.toString().replace( /return (new THREE\\.[a-zA-Z]+Geometry)/, 'const geometry = $1' ).split... | 2023-01-31T12:25:36 |
golang/go | a6e74454577c68ea96ce6512e3e92beffbe15c5c | e8adc393327c92525902d38a34af7f2a24e78e25 | cmd/go/internal/load: join incompatible and dirty build specifiers with .
Change "+incompatible+dirty" version to be "+incompatible.dirty" such
that it is SemVer spec compatible.
Fixes #71971
Change-Id: I714ffb3f1ad88c793656c3652367db34739a2144
Reviewed-on: https://go-review.googlesource.com/c/go/+/652955
LUCI-TryBo... | [
{
"path": "src/cmd/go/internal/load/pkg.go",
"patch": "@@ -2585,7 +2585,12 @@ func (p *Package) setBuildInfo(ctx context.Context, autoVCS bool) {\n \t\tvers := revInfo.Version\n \t\tif vers != \"\" {\n \t\t\tif st.Uncommitted {\n-\t\t\t\tvers += \"+dirty\"\n+\t\t\t\t// SemVer build metadata is dot-separated... | 2022-07-19T15:07:00 |
mrdoob/three.js | ab772203d5d5f3b81451430fe35c76151a537264 | 5921c7cab6cbf9bd42648e01c0c7939711b3fc88 | fixed: Consider marking event handler as 'passive' to make the page more responsive (#25374)
* Update Viewport.js
* Update EditorControls.js
* Update EditorControls.js
* Update codemirror.js
* Update ui.js | [
{
"path": "editor/js/EditorControls.js",
"patch": "@@ -258,7 +258,7 @@ class EditorControls extends THREE.EventDispatcher {\n \n \t\tdomElement.addEventListener( 'contextmenu', contextmenu );\n \t\tdomElement.addEventListener( 'dblclick', onMouseUp );\n-\t\tdomElement.addEventListener( 'wheel', onMouseWheel... | 2023-01-31T09:49:41 |
denoland/deno | 7946906ac50f9a5ccae61ca90985150be0b0b9b0 | 4921411bb2d010458b1193c25f98c5fab2925c02 | fix: add hint to run with `--no-check` when type checking fails (#28091) | [
{
"path": "cli/tools/check.rs",
"patch": "@@ -28,6 +28,7 @@ use regex::Regex;\n use crate::args::deno_json::TsConfigResolver;\n use crate::args::CheckFlags;\n use crate::args::CliOptions;\n+use crate::args::DenoSubcommand;\n use crate::args::Flags;\n use crate::args::TsConfig;\n use crate::args::TsTypeLib;\... | 2025-02-13T10:54:52 |
golang/go | e8adc393327c92525902d38a34af7f2a24e78e25 | 16dbd2be3969f4658ced59ddb89871d9f00cf3a5 | cmd/go: fix GOAUTH parsing for trailing slash
We were treating a url with a trailing slash differently than one
without. This CL treats them the same.
Additionally this fixes a bug in the way we iteratively try different
prefixes. We were only trying the host url but this change now tries all
different prefixes.
Fix... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2618,7 +2618,7 @@\n //\t\tBlankLine = '\\n' .\n //\n //\tExample:\n-//\t\thttps://example.com/\n+//\t\thttps://example.com\n //\t\thttps://example.net/api/\n //\n //\t\tAuthorization: Basic <token>",
"additions": 1,
"deletions": 1,
"language":... | 2025-04-02T20:30:37 |
denoland/deno | 555a4ac0c4f368686a7d10fc770c2c0cf576db91 | cda0c5b3ae75b751e79e2ff467b64c5166e231c3 | fix(lsp): include description for auto-import completions (#28088) | [
{
"path": "cli/lsp/tsc.rs",
"patch": "@@ -1,5 +1,6 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n+use std::borrow::Cow;\n use std::cell::RefCell;\n use std::cmp;\n use std::collections::BTreeMap;\n@@ -3612,7 +3613,26 @@ impl CompletionEntryDetails {\n None\n };\n let mut text_... | 2025-02-12T15:59:18 |
golang/go | 16dbd2be3969f4658ced59ddb89871d9f00cf3a5 | 6fd9ee3da9dc5570f66735e835cac2d66a0f6244 | cmd/compile: be more conservative about arm64 insns that can take zero register
It's really only needed for stores and store-like instructions
(atomic exchange, compare-and-swap, ...).
Fixes #73180
Change-Id: I8ecd833a301355adf0fa4bff43250091640c6226
Reviewed-on: https://go-review.googlesource.com/c/go/+/663155
Revi... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/ARM64Ops.go",
"patch": "@@ -138,17 +138,17 @@ func init() {\n \t// Common individual register masks\n \tvar (\n \t\tgp = buildReg(\"R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 R30\")\n-\t\tgpg = gp ... | 2025-04-05T15:34:12 |
denoland/deno | cda0c5b3ae75b751e79e2ff467b64c5166e231c3 | 7253820764735290acf147e499a61d23daabc03e | fix: do special file permission check for `check_read_path` (#27989)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "Cargo.lock",
"patch": "@@ -1785,6 +1785,7 @@ dependencies = [\n \"data-url\",\n \"deno_core\",\n \"deno_error\",\n+ \"deno_fs\",\n \"deno_path_util\",\n \"deno_permissions\",\n \"deno_tls\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "ext/fetch/... | 2025-02-12T15:46:21 |
golang/go | 1647896aa227d8546de3dbe70a5049eecee964e3 | e373771490bab84449c7981a6be84e995de1ae80 | cmd/compile: on 32-bit, bump up align for values that may contain 64-bit fields
On 32-bit systems, these need to be aligned to 8 bytes, even though the
typechecker doesn't tell us that.
The 64-bit allocations might be the target of atomic operations
that require 64-bit alignment.
Fixes 386 longtest builder.
Fixes #... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -701,20 +701,42 @@ func (s *state) paramsToHeap() {\n \tdo(typ.Results())\n }\n \n+// allocSizeAndAlign returns the size and alignment of t.\n+// Normally just t.Size() and t.Alignment(), but there\n+// is a special case to handle 64-bit atomi... | 2025-04-04T20:05:23 |
golang/go | 6839e71d82e0f2c93e043820db6c0238a65ae0fa | 7a427143b6ff296125359084a8959bf0c9d23e78 | internal/syscall/windows: use unsafe.Pointer instead of uintptr
Some functions accept a uintptr when they should accept an
unsafe.Pointer, else the compiler won't know that the pointer should
be kept alive across the call, potentially causing undefined behavior.
Fixes #73156 (potentially)
Change-Id: I29c847eb8ffbb78... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -116,7 +116,7 @@ func Openat(dirfd syscall.Handle, name string, flag uint64, perm uint32) (_ sysc\n \t\tFILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,\n \t\tdisposition,\n \t\tFILE_SYNCHRONOUS_IO_NONALERT|FILE_OPEN_FOR_BACKUP_INTENT|o... | 2025-04-04T10:16:09 |
mrdoob/three.js | 5921c7cab6cbf9bd42648e01c0c7939711b3fc88 | 3221e436c5628618a3b96db865eb4c574e6128c6 | AnimationClipCreator: Fix CreateMaterialColorAnimation(). (#25376) | [
{
"path": "examples/jsm/animation/AnimationClipCreator.js",
"patch": "@@ -94,14 +94,16 @@ class AnimationClipCreator {\n \t\tconst times = [], values = [],\n \t\t\ttimeStep = duration / colors.length;\n \n-\t\tfor ( let i = 0; i <= colors.length; i ++ ) {\n+\t\tfor ( let i = 0; i < colors.length; i ++ ) {\n... | 2023-01-31T09:44:04 |
denoland/deno | 7253820764735290acf147e499a61d23daabc03e | 7a112643f5dd9930ffe319e74775348786f914bb | refactor: object wrap WebGPU (#27665)
Fixes #25874
Fixes #26760
Fixes #24288
Fixes #24798
Fixes #25627
Fixes #25915
Fixes #26769 | [
{
"path": "Cargo.lock",
"patch": "@@ -212,11 +212,11 @@ dependencies = [\n \n [[package]]\n name = \"ash\"\n-version = \"0.37.3+1.3.251\"\n+version = \"0.38.0+1.3.281\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b1235... | 2025-02-12T13:45:41 |
golang/go | 16a6b71f18a5d05dde1a208a317a75fd652597f0 | 822031dffc43567b4c60e12e77afe48a00028c0e | cmd/compile: improve store-to-load forwarding with compatible types
Improve the compiler's store-to-load forwarding optimization by relaxing the
type comparison condition. Instead of requiring exact type equality (CMPeq),
we now use copyCompatibleType which allows forwarding between compatible
types where safe.
Fix s... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -736,26 +736,26 @@\n // Load of store of same address, with compatibly typed value and same size\n (Load <t1> p1 (Store {t2} p2 x _))\n \t&& isSamePtr(p1, p2)\n-\t&& t1.Compare(x.Type) == types.CMPeq\n+\t&& copyCompatibleType(t1, x.Ty... | 2025-04-01T15:43:38 |
mrdoob/three.js | 3221e436c5628618a3b96db865eb4c574e6128c6 | f24db3d78678055d1edccdfc7a5222dc1e63a715 | Tests: Unit Tests for Math (#25385)
* Move Shared Math Utils to Utils
A test fixture, 'math/Constants.tests.js' wasnt a test file but a set of fixures used by:
animation/AnimationMixer.tests.js
core/BufferGeometry.tests.js
core/Object3D.tests.js
core/Uniform.tests.js
math/Box2.tests.js
math/Box3.tests.js
m... | [
{
"path": "test/unit/src/animation/AnimationMixer.tests.js",
"patch": "@@ -4,7 +4,7 @@ import { AnimationMixer } from '../../../../src/animation/AnimationMixer.js';\n import { AnimationClip } from '../../../../src/animation/AnimationClip.js';\n import { VectorKeyframeTrack } from '../../../../src/animation/... | 2023-01-31T07:36:51 |
denoland/deno | d29f9f99dd51ea1cac5cf28dc1444e0f416e6957 | 3ff9ca253310a05bc41742b6f01f7de83d4b73ee | fix(lint): `Deno.lint.runPlugin` throws in `deno run` (#28063)
This commit changes `Deno.lint.runPlugin` to throw
in non-`deno test` subcommand, instead of returning
`undefined`. | [
{
"path": "cli/tsc/dts/lib.deno.unstable.d.ts",
"patch": "@@ -1487,7 +1487,9 @@ declare namespace Deno {\n }\n \n /**\n- * This API is a noop in `deno run`...\n+ * This API is useful for testing lint plugins.\n+ *\n+ * It throws an error if it's not used in `deno test` subcommand.\n ... | 2025-02-12T09:18:55 |
mrdoob/three.js | f24db3d78678055d1edccdfc7a5222dc1e63a715 | 2cc1b02ab5051c3cd8130522414cc31ed73ae75c | NRRDLoader: Fix loading 16-bits file with custom axes. (#25367)
* reset code format style
* Update NRRDLoader.js
Clean up code style.
* Update NRRDLoader.js
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
Co-authored-by: mrdoob <info@mrdoob.com> | [
{
"path": "examples/jsm/loaders/NRRDLoader.js",
"patch": "@@ -50,6 +50,16 @@ class NRRDLoader extends Loader {\n \n \t}\n \n+\t/**\n+\t *\n+\t * @param {boolean} segmentation is a option for user to choose\n+ \t */\n+\tsetSegmentation( segmentation ) {\n+\n+\t this.segmentation = segmentation;\n+\n+\t}... | 2023-01-31T05:46:53 |
golang/go | 822031dffc43567b4c60e12e77afe48a00028c0e | d164776615f75105c6f988900d798a0f476c4668 | sync: add WaitGroup.Go
Fixes #63796
Change-Id: I2a941275dd64ef858cbf02d31a759fdc5c082ceb
Reviewed-on: https://go-review.googlesource.com/c/go/+/662635
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit: Carlos Amedee <c... | [
{
"path": "api/next/63796.txt",
"patch": "@@ -0,0 +1 @@\n+pkg sync, method (*WaitGroup) Go(func()) #63769",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/sync/63769.md",
"patch": "@@ -0,0 +1,2 @@\n+[WaitGroup] has added a new method... | 2025-04-03T15:10:16 |
mrdoob/three.js | 73b3f248016fb73f2fe71da8616cdd7e20386f81 | f82a77296cb601660ca39ec16b449771f3231f33 | Puppeteer E2E test: Auto-download browser (#25380)
* Make Puppeteer autodownload browser
* Update CONTRIBUTING.md
* Fix indentation
* Fix merge | [
{
"path": ".github/CONTRIBUTING.md",
"patch": "@@ -1,7 +1,7 @@\n # Contribution\n ## Introduction\n \n-It is assumed that you know a little about node.js and git. If not, [here's some help to get started with git](https://help.github.com/en/github/using-git) and [here’s some help to get started with node.js... | 2023-01-31T05:40:12 |
denoland/deno | c1a0d637533a01d2388f8bb3340ed3000fafdcfa | a2afae46b616e9ca087ce09539a56c2fc159f49d | fix(streams): handle Resource stream error (#27975)
Fixes #27715 | [
{
"path": "ext/web/06_streams.js",
"patch": "@@ -779,37 +779,35 @@ class ResourceStreamResourceSink {\n * @param {any} sink\n * @param {Uint8Array} chunk\n */\n-function readableStreamWriteChunkFn(reader, sink, chunk) {\n+async function readableStreamWriteChunkFn(reader, sink, chunk) {\n // Empty chunk... | 2025-02-11T17:27:52 |
golang/go | d164776615f75105c6f988900d798a0f476c4668 | 8969771cc3ceed634844dd6c911f3a5439424a97 | internal/poll: simplify execIO
execIO has multiple return paths and multiple places where error is
mangled. This CL simplifies the function by just having one return
path.
Some more tests have been added to ensure that the error handling
is done correctly.
Updates #19098.
Change-Id: Ida0b1e85d4d123914054306e5bef8da... | [
{
"path": "src/internal/poll/export_windows_test.go",
"patch": "@@ -1,17 +0,0 @@\n-// Copyright 2017 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-// Export guts for testing on windows.\n-// Since testing... | 2025-04-02T08:43:47 |
mrdoob/three.js | 892dbbae3db22c3a69beca1efcda68e7f3564ecf | 45ce26de7db38a6fc7d5b17ec2dd9f8897e390cf | Puppeteer E2E test: Log console output (#25382)
* Puppeteer: Log console output
* Don't error that camera is not available | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -145,8 +145,10 @@ async function main() {\n \n \t/* Prepare page */\n \n+\tconst errorMessagesCache = [];\n+\n \tconst page = ( await browser.pages() )[ 0 ];\n-\tawait preparePage( page, injection, build );\n+\tawait preparePage( page, injection, build, errorM... | 2023-01-31T05:01:37 |
denoland/deno | a2afae46b616e9ca087ce09539a56c2fc159f49d | 23540c2825ddf838444279a394909d0888bd3dcb | fix(unstable): add missing rule context types (#28014) | [
{
"path": "cli/tsc/dts/lib.deno.unstable.d.ts",
"patch": "@@ -1396,7 +1396,21 @@ declare namespace Deno {\n * @experimental\n */\n export interface RuleContext {\n+ /**\n+ * The running rule id: `<plugin-name>/<rule-name>`\n+ */\n id: string;\n+ /**\n+ * Name ... | 2025-02-11T15:35:16 |
mrdoob/three.js | d9de7bf9fefd85eb8717f26d714fa41ab4e8db84 | 47f79757def36e4189d482c2d6a3ba9768d7a2d0 | Tests: Unit Tests for Renderers (#25369)
* Update WebGLRenderer.tests.js
Remove constant definitions comment, add missing member test stubs. In the current test framework, this needs to keep "-webonly" test module suffix.
* Update WebGLRenderTarget.tests.js
WebGLRenderTarget extends from EventDispatcher. Ad... | [
{
"path": "test/unit/src/renderers/WebGL1Renderer.tests.js",
"patch": "@@ -0,0 +1,36 @@\n+/* global QUnit */\n+\n+import { WebGL1Renderer } from '../../../../src/renderers/WebGL1Renderer.js';\n+\n+import { WebGLRenderer } from '../../../../src/renderers/WebGLRenderer.js';\n+\n+export default QUnit.module( '... | 2023-01-30T08:09:11 |
denoland/deno | b9183c737ffe727b24c141bb0ffb13df39ed126b | aead459fb2d84f116b6905d1c88a9f268f61d8d9 | fix: allow creating TSC host without a snapshot (#28058) | [
{
"path": "Cargo.lock",
"patch": "@@ -1614,9 +1614,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.333.0\"\n+version = \"0.336.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2e67f6f874401f3b8fb3e851743c40ee14014648db6685b233b34f783f6959e... | 2025-02-11T14:34:59 |
golang/go | 8969771cc3ceed634844dd6c911f3a5439424a97 | 5eaeb7b455d0bb6a39dacb4317ea177cbe0358de | runtime: add thread exit plus vgetrandom stress test
Add a regression test similar to the reproducer from #73141 to try to
help catch future issues with vgetrandom and thread exit. Though the
test isn't very precise, it just hammers thread exit.
When the test reproduces #73141, it simply crashes with a SIGSEGV and no... | [
{
"path": "src/runtime/proc_test.go",
"patch": "@@ -1026,6 +1026,17 @@ func TestLockOSThreadTemplateThreadRace(t *testing.T) {\n \t}\n }\n \n+func TestLockOSThreadVgetrandom(t *testing.T) {\n+\tif runtime.GOOS != \"linux\" {\n+\t\tt.Skipf(\"vgetrandom only relevant on Linux\")\n+\t}\n+\toutput := runTestPro... | 2025-04-03T15:16:36 |
mrdoob/three.js | 18ef296f2a197dc9d8b25ef5273e4730aac66f5c | 832b8fb0155eccecc1eca88106f410eb016f3da8 | Examples: Add GLTFExporter example for KHR_mesh_quantization (#25354)
* Examples: Add GLTFExporter example for KHR_mesh_quantization.
* Update misc_exporter_gltf.html
Fix CodeQL issue.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/misc_exporter_gltf.html",
"patch": "@@ -28,8 +28,8 @@\n \n \t\t\timport * as THREE from 'three';\n \n-\t\t\timport { OBJLoader } from 'three/addons/loaders/OBJLoader.js';\n \t\t\timport { GLTFExporter } from 'three/addons/exporters/GLTFExporter.js';\n+\t\t\timport { GLTFLoader } from 'th... | 2023-01-29T10:22:43 |
golang/go | 5eaeb7b455d0bb6a39dacb4317ea177cbe0358de | ab2926291ba7003dcec7f46824d5f58c344ca849 | go/types, types2: better error messages for invalid qualified identifiers
This change borrows code from CL 631356 by Emmanuel Odeke (thanks!).
Fixes #70549.
Change-Id: Id6f794ea2a95b4297999456f22c6e02890fce13b
Reviewed-on: https://go-review.googlesource.com/c/go/+/662775
LUCI-TryBot-Result: Go LUCI <golang-scoped@lu... | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -720,7 +720,14 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName\n \t\t\t\texp = pkg.scope.Lookup(sel)\n \t\t\t\tif exp == nil {\n \t\t\t\t\tif !pkg.fake && isValidName(sel) {\n-\t\t\t\t\t\tcheck.errorf(e.Sel... | 2025-04-03T21:26:55 |
denoland/deno | aead459fb2d84f116b6905d1c88a9f268f61d8d9 | 196ceb76bb3a7a1f00f4accad6dad9e7d074371c | feat(unstable): support multiple fixes from lint plugins (#28040)
This PR supports returning multiple changes from a lint fix. It works
the same way as eslint, see
https://eslint.org/docs/latest/extend/custom-rules#applying-fixes .
- Return a single fix
- Return an array of fixes
- Return a generator function w... | [
{
"path": "cli/js/40_lint.js",
"patch": "@@ -234,11 +234,20 @@ export class Context {\n const start = range[0];\n const end = range[1];\n \n- let fix;\n+ /** @type {Deno.lint.FixData[]} */\n+ const fixes = [];\n \n if (typeof data.fix === \"function\") {\n const fixer = new Fixer(... | 2025-02-11T14:24:28 |
mrdoob/three.js | 5da06be6561a9ced52e98641c141b9c4f82c0b80 | 596a98774d288db545a0ab21dc394c347ebea97c | fix: property binding should not fall back to root node on incorrect path names (#25329) | [
{
"path": "src/animation/PropertyBinding.js",
"patch": "@@ -107,7 +107,7 @@ class PropertyBinding {\n \t\tthis.path = path;\n \t\tthis.parsedPath = parsedPath || PropertyBinding.parseTrackName( path );\n \n-\t\tthis.node = PropertyBinding.findNode( rootNode, this.parsedPath.nodeName ) || rootNode;\n+\t\tthi... | 2023-01-27T09:31:33 |
golang/go | ce94e916fe262a51c398153b03dd9a657418bbe8 | 9302a57134a698b62576cd3b849017a02c731c98 | internal/syscall/windows: define NtQueryInformationFile buffer as unsafe.Pointer
The unsafe.Pointer -> uintptr conversion must happen when calling
syscall.Syscall, not when calling the auto-generated wrapper function,
else the Go compiler doesn't know that it has to keep the pointer alive.
This can cause undefined be... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -365,7 +365,7 @@ func (fd *FD) initIO() error {\n \t\t\t// Handle opened for overlapped I/O (aka non-blocking) that are not added\n \t\t\t// to the runtime poller need special handling when reading and writing.\n \t\t\tvar info windows.FILE_MODE_INFO... | 2025-04-03T12:55:21 |
denoland/deno | 196ceb76bb3a7a1f00f4accad6dad9e7d074371c | acdc7dcdcfa2cce02bafaa5ce5192ce5a4436dea | fix(ext/node): `DatabaseSync#exec` should execute batch statements (#28053)
Fixes https://github.com/denoland/deno/issues/28050 | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -166,8 +166,7 @@ impl DatabaseSync {\n let db = self.conn.borrow();\n let db = db.as_ref().ok_or(SqliteError::InUse)?;\n \n- let mut stmt = db.prepare_cached(sql)?;\n- stmt.raw_execute()?;\n+ db.execute_batch(sql)?;\n \n Ok(())\n... | 2025-02-11T14:22:33 |
mrdoob/three.js | 596a98774d288db545a0ab21dc394c347ebea97c | 4503ef10b81a00f5c6c64fe9a856881ee31fe6a3 | Fix Audio stop() (#25336)
* Fix Audio stop()
Fix stop()
When source is null, the method will throw an Exception
* Update Audio.js
Co-authored-by: mrdoob <info@mrdoob.com> | [
{
"path": "src/audio/Audio.js",
"patch": "@@ -169,8 +169,13 @@ class Audio extends Object3D {\n \n \t\tthis._progress = 0;\n \n-\t\tthis.source.stop();\n-\t\tthis.source.onended = null;\n+\t\tif ( this.source !== null ) {\n+\n+\t\t\tthis.source.stop();\n+\t\t\tthis.source.onended = null;\n+\n+\t\t}\n+\n \t\... | 2023-01-27T04:00:50 |
golang/go | 9326d9d01231a1834458810c3cb01701bf7293a9 | fd8f6cec213a6eaf862998073ea3c4ee52b182ba | make.bat: fix GOROOT_BOOTSTRAP detection
Due to a flaw in the %GOROOT_BOOTSTRAP% detection logic, the last Go
executable found by `where go` was taking precedence over the first one.
In batch scripts, environment variable expansion happens when each line
of the script is read, not when it is executed. Thus, the check... | [
{
"path": "src/make.bat",
"patch": "@@ -60,14 +60,13 @@ if not exist ..\\bin\\tool mkdir ..\\bin\\tool\n :: Calculating GOROOT_BOOTSTRAP\r\n if not \"x%GOROOT_BOOTSTRAP%\"==\"x\" goto bootstrapset\r\n for /f \"tokens=*\" %%g in ('where go 2^>nul') do (\r\n-\tif \"x%GOROOT_BOOTSTRAP%\"==\"x\" (\r\n-\t\tsetlo... | 2025-02-28T09:05:52 |
denoland/deno | acdc7dcdcfa2cce02bafaa5ce5192ce5a4436dea | 09456341272984a2b41c9d39d8cd331d33109362 | Revert "refactor: remove tsc snapshot (#27987)" (#28052)
This reverts commit 174e496847e45f0e84a094c9dddedea74d216019.
That commit caused panic on startup like
https://github.com/denoland/deno/issues/28047
or https://github.com/denoland/deno/issues/28044.
Reverting for now, until we figure out what's going wro... | [
{
"path": "cli/build.rs",
"patch": "@@ -1,183 +1,318 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n use std::env;\n-use std::io::Write;\n-use std::path::Path;\n+use std::path::PathBuf;\n \n+use deno_core::snapshot::*;\n use deno_runtime::*;\n \n-fn compress_decls(out_dir: &Path) {\n- let d... | 2025-02-11T11:18:32 |
mrdoob/three.js | ee74ac2886a69c7855a3ca9a08d5c6edcbebe416 | 4a6cf23c5f69ecde00e79171be7235deb39dff79 | docs: Fix inconsistencies of Object3D.html (#25324)
- Default value of `matrixWorldAutoUpdate` is `DEFAULT_MATRIX_WORLD_AUTO_UPDATE` instead of `true`
- `DEFAULT_MATRIX_WORLD_AUTO_UPDATE` is not documented while
`DEFAULT_MATRIX_AUTO_UPDATE` is | [
{
"path": "docs/api/en/core/Object3D.html",
"patch": "@@ -86,8 +86,9 @@ <h3>[property:Matrix4 matrixWorld]</h3>\n \n \t\t<h3>[property:Boolean matrixWorldAutoUpdate]</h3>\n \t\t<p>\n-\t\tDefault is true. If set, then the renderer checks every frame if the object and its children need matrix updates.\n+\t\tI... | 2023-01-24T10:28:05 |
golang/go | fd8f6cec213a6eaf862998073ea3c4ee52b182ba | 06f82af1837bf77dfb2f337f5bb15b6c3f85a454 | api: move go1.25 to next/70250
My CL 645115 added the new entries in the wrong place,
prematurely creating the go1.25 file.
Also, add the missing release note.
Change-Id: Ib5b5ccfb42757a9ea9dc93e33b3e3ed8e8bd7d3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/662615
Auto-Submit: Alan Donovan <adonovan@google... | [
{
"path": "doc/next/6-stdlib/99-minor/go/types/70250.md",
"patch": "@@ -0,0 +1,3 @@\n+[Var] now has a [Var.Kind] method that classifies the variable as one\n+of: package-level, receiver, parameter, result, or local variable, or\n+a struct field.",
"additions": 3,
"deletions": 0,
"language": "Mar... | 2025-04-03T14:04:02 |
mrdoob/three.js | 320caefbf5b86cf53eaa42f86cd1d17495ea9fec | d10ce505d46e2a72eae662952d6a2d0cf8d8d9e6 | Expand `lint-fix` script (#25276)
* Expand lint test
* Revert `lint` script changes | [
{
"path": "package.json",
"patch": "@@ -110,7 +110,7 @@\n \"lint-test\": \"eslint test --ignore-pattern vendor\",\n \"lint-utils\": \"eslint utils\",\n \"lint\": \"npm run lint-core\",\n- \"lint-fix\": \"npm run lint-core -- --fix && npm run lint-addons -- --fix && npm run lint-docs -- --fix\... | 2023-01-20T09:34:06 |
denoland/deno | 7bd210f9e836e726f797cb4261abcc3d5739a339 | f6300572433b528cece6a8819eb7a946fbb7e09f | fix(lint): don't show docs URLs for plugins (#28033)
This commit removes the docs URL for diagnostics coming
from JS plugins. Before, we mistakenly printed
URLs pointing to `docs.deno.com`, even though they did not
exist.
An ability to actually specify a custom URL for plugin rules,
will be added in a follow up... | [
{
"path": "Cargo.lock",
"patch": "@@ -2011,9 +2011,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_lint\"\n-version = \"0.71.0\"\n+version = \"0.72.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"810d0f4b19cd44061bbe7252ad37cf7a81753540f97f88e1548ac9f03b3a18cc\... | 2025-02-10T16:32:31 |
golang/go | 0b31e6d4cc804ab76ae8ced151ee2f50657aec14 | 13b1261175efde5aac7c4c7f6f66ae3b2c609a2d | runtime: cleanup M vgetrandom state before dropping P
When an M is destroyed, we put its vgetrandom state back on the shared
list for another M to reuse. This list is simply a slice, so appending
to the slice may allocate. Currently this operation is performed in
mdestroy, after the P is released, meaning allocation i... | [
{
"path": "src/runtime/os3_solaris.go",
"patch": "@@ -234,8 +234,11 @@ func unminit() {\n \tgetg().m.procid = 0\n }\n \n-// Called from exitm, but not from drop, to undo the effect of thread-owned\n+// Called from mexit, but not from dropm, to undo the effect of thread-owned\n // resources in minit, semacre... | 2025-04-03T03:26:25 |
mrdoob/three.js | 565f878708aaa2595621021770fde8c6fe58deb4 | 6cb753cd06b8f16238de23d4943eaf19e6a5a366 | CSM: Avoid circular dependency in camera computations. (#25265)
* Avoid circular dependency in CSM camera computations
* Screenshot after the fix (artifact line disappeared)
* Simplify (remove _lightTarget) | [
{
"path": "examples/jsm/csm/CSM.js",
"patch": "@@ -16,6 +16,9 @@ const _center = new Vector3();\n const _bbox = new Box3();\n const _uniformArray = [];\n const _logArray = [];\n+const _lightOrientationMatrix = new Matrix4()\n+const _lightOrientationMatrixInverse = new Matrix4()\n+const _up = new Vector3( 0,... | 2023-01-19T17:26:42 |
denoland/deno | ad9429afbddb50a04179cb8a2e69a14b8acb4390 | d29d367e177558038f44930f86fe87fafed32edf | fix(lint): disable incremental caching if JS plugins are used (#28026)
Ref https://github.com/denoland/deno/issues/28025 | [
{
"path": "cli/tools/lint/mod.rs",
"patch": "@@ -295,8 +295,9 @@ impl WorkspaceLinter {\n )?;\n let mut maybe_incremental_cache = None;\n \n- // TODO(bartlomieju): how do we decide if plugins support incremental cache?\n- if lint_rules.supports_incremental_cache() {\n+ // TODO(bartlomieju):... | 2025-02-10T14:40:10 |
mrdoob/three.js | 6c86066b5d6f82e7be9f9946645a92229c3259ec | a605ed2dfba3ccb562fc418727a448bceb004044 | PMREMGenerator: Fix replacing render targets with different heights (#25301) | [
{
"path": "src/extras/PMREMGenerator.js",
"patch": "@@ -261,7 +261,7 @@ class PMREMGenerator {\n \n \t\tconst cubeUVRenderTarget = _createRenderTarget( width, height, params );\n \n-\t\tif ( this._pingPongRenderTarget === null || this._pingPongRenderTarget.width !== width ) {\n+\t\tif ( this._pingPongRender... | 2023-01-19T02:30:11 |
mrdoob/three.js | 291280b6a55b2e17526352745e84b62a66140055 | 99cc9afd4d8b5ffa9ab6f9251b0cf56cbe9415c9 | WebGPUTextureUtils: Fix `copyTextureToBuffer()` dispose buffer (#33366) | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -692,7 +692,9 @@ class WebGPUTextureUtils {\n \n \t\tawait readBuffer.mapAsync( GPUMapMode.READ );\n \n-\t\tconst buffer = readBuffer.getMappedRange();\n+\t\tconst buffer = readBuffer.getMappedRange().slice();\n+\n+\t\treadBuffer.des... | 2026-04-11T03:18:26 |
golang/go | 6299ca285a0a6bf7d2b1bfbb03b6c3288b846bdf | 4a9e479d06754923aad320c53ab02371266f6b57 | net/http: fix data race in TestClientRedirectUseResponse
There is a data race between the assignment of ts, and the access of
ts.URL in the server handler. The data race seems to be more common when
running the test against our HTTP/3 implementation.
Fix the issue by deriving ts.URL via the given Request in the serve... | [
{
"path": "src/net/http/client_test.go",
"patch": "@@ -484,7 +484,11 @@ func testClientRedirectUseResponse(t *testing.T, mode testMode) {\n \t\tif strings.Contains(r.URL.Path, \"/other\") {\n \t\t\tio.WriteString(w, \"wrong body\")\n \t\t} else {\n-\t\t\tw.Header().Set(\"Location\", ts.URL+\"/other\")\n+\t\... | 2026-04-10T17:48:35 |
tensorflow/tensorflow | 0192a1332b70f03d74319934f356ae75b7f23a25 | a79c787eb1db9e00c4a0088b1e17be28b822dfd1 | Add integer overflow checks and improve error handling in SimpleMemoryArena.
PiperOrigin-RevId: 898028308 | [
{
"path": "tensorflow/lite/simple_memory_arena.cc",
"patch": "@@ -22,6 +22,7 @@ limitations under the License.\n #include <cstring>\n #include <limits>\n #include <string>\n+#include <type_traits>\n #include <vector>\n \n #include \"tensorflow/lite/core/c/common.h\"\n@@ -51,11 +52,32 @@ limitations under th... | 2026-04-11T04:19:26 |
denoland/deno | 1cffda520b4b3562a265b1ecb3ccf619cbcb5843 | 825d2647dd0728723623623b6c7b00da7ddad10d | feat(ext/node): implement node:repl module (#32799)
## Summary
- Replaces the stub `node:repl` implementation with a working
`REPLServer` that extends readline's `Interface`
- Supports TTY-based REPL usage with eval via
`vm.Script`/`vm.createContext`, built-in commands (`.break`, `.clear`,
`.exit`, `.help`, `.save`, `... | [
{
"path": "ext/node/polyfills/repl.ts",
"patch": "@@ -1,18 +1,1478 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n+// TODO(petamoriken): enable prefer-primordials for node polyfills\n+// deno-lint-ignore-file pref... | 2026-04-11T07:48:46 |
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.