Repository Name stringlengths 1 28 | Git URL stringlengths 26 64 | SHA stringlengths 40 40 | Author stringlengths 2 37 | Commit Date stringdate 2016-01-02 05:39:51 2025-03-25 12:39:56 | Description stringlengths 13 160 | Body stringlengths 8 30.2k | Full Commit Message stringlengths 36 42.6k | Git Diff stringlengths 22 22.6M ⌀ |
|---|---|---|---|---|---|---|---|---|
unleash | https://github.com/Unleash/unleash | 8f1900f32bb1af5d057d18c534bbcc8ccce4e31a | olav | 2022-04-26 14:23:46 | feat: generate an OpenAPI client (2) (#875) | * feat: add a script that generates an OpenAPI client
* feat: generate an OpenAPI client
* feat: use the generated OpenAPI client
* refactor: add an OpenAPI section to the readme
* refactor: fix missing interface prefixes
* refactor: regenerate OpenAPI client | feat: generate an OpenAPI client (2) (#875)
* feat: add a script that generates an OpenAPI client
* feat: generate an OpenAPI client
* feat: use the generated OpenAPI client
* refactor: add an OpenAPI section to the readme
* refactor: fix missing interface prefixes
* refactor: regenerate OpenAPI client | diff --git a/frontend/.prettierignore b/frontend/.prettierignore
index 20ab352d5b50..a06b11e1a727 100644
--- a/frontend/.prettierignore
+++ b/frontend/.prettierignore
@@ -1,2 +1,3 @@
+.github/*
+/src/openapi
CHANGELOG.md
-.github/*
\ No newline at end of file
diff --git a/frontend/README.md b/frontend/README.md
index ... |
puppeteer | https://github.com/puppeteer/puppeteer | 5ff698ec98497da0f95a4fbbe852f77bf33b59a1 | Jack Franklin | 2020-06-19 18:44:54 | chore: move `index.js` into `src` and TS-ify (#6049) | It was causing some infra issues when trying to migrate tests to
TypeScript (that's WIP in another branch that I'll have up soon). It's
unusual to have the entire src in TS except for the main file, which
then reaches into the compiled `lib` directory for the files it needs.
Much better is to move the entry point into... | chore: move `index.js` into `src` and TS-ify (#6049)
It was causing some infra issues when trying to migrate tests to
TypeScript (that's WIP in another branch that I'll have up soon). It's
unusual to have the entire src in TS except for the main file, which
then reaches into the compiled `lib` directory for the files ... | diff --git a/index.js b/index.js
deleted file mode 100644
index 2960a9db62d76..0000000000000
--- a/index.js
+++ /dev/null
@@ -1,24 +0,0 @@
-/**
- * Copyright 2017 Google Inc. All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance w... |
turborepo | https://github.com/vercel/turborepo | a52e66b091d104371676ec4b301b62e1e0288305 | OJ Kwon | 2023-03-21 05:03:18 | feat(ecmascript): support jsximport/runtime options (#4198) | ### Description
First part of WEB-719 implementation. PR expands enable_jsx option to
accept few more configuration point to jsx transforms, mainly its import
source. We'll likely to expand options more in the future.
One thing I noted in the code but didn't make change is
`enable_react_refresh`, if it needs to be un... | feat(ecmascript): support jsximport/runtime options (#4198)
### Description
First part of WEB-719 implementation. PR expands enable_jsx option to
accept few more configuration point to jsx transforms, mainly its import
source. We'll likely to expand options more in the future.
One thing I noted in the code but didn'... | diff --git a/crates/turbopack-ecmascript/src/transform/mod.rs b/crates/turbopack-ecmascript/src/transform/mod.rs
index 3a62ae2417edb..48d4e4719e52d 100644
--- a/crates/turbopack-ecmascript/src/transform/mod.rs
+++ b/crates/turbopack-ecmascript/src/transform/mod.rs
@@ -16,7 +16,7 @@ use swc_core::{
visit::{Fold... |
sentry | https://github.com/getsentry/sentry | 31ae2c762dccf5d1101b0ccad891cdb5b7b7a0c4 | Snigdha Sharma | 2024-03-28 22:33:39 | feat(priority-alerts): Add a ratelimit to severity service calls (#67713) | Adding a ratelimit of 5 requests per second to the Seer severity
service. We can adjust this if we see the ratelimit kick in as we're
rolling out the service.
Refactored a bit to only call the service for python/js projects and
check the conditions before checking the ratelimit. | feat(priority-alerts): Add a ratelimit to severity service calls (#67713)
Adding a ratelimit of 5 requests per second to the Seer severity
service. We can adjust this if we see the ratelimit kick in as we're
rolling out the service.
Refactored a bit to only call the service for python/js projects and
check the condit... | diff --git a/src/sentry/event_manager.py b/src/sentry/event_manager.py
index bb02cd792b743e..ee967d8acc41d4 100644
--- a/src/sentry/event_manager.py
+++ b/src/sentry/event_manager.py
@@ -1829,13 +1829,10 @@ def _create_group(project: Project, event: Event, **group_creation_kwargs: Any)
# add sdk tag to metadata
... |
deno | https://github.com/denoland/deno | 186f7484da3116aeda474f7f529d417ee542b450 | Yoshiya Hinosawa | 2024-09-05 10:00:18 | fix(ext/node): close upgraded socket when the underlying http connection is closed (#25387) | This change fixes the handling of upgraded socket from `node:http` module.
In `op_node_http_fetch_response_upgrade`, we create DuplexStream paired
with `hyper::upgrade::Upgraded`. When the connection is closed from the
server, the read result from `Upgraded` becomes 0. However because we
don't close the paired DuplexS... | fix(ext/node): close upgraded socket when the underlying http connection is closed (#25387)
This change fixes the handling of upgraded socket from `node:http` module.
In `op_node_http_fetch_response_upgrade`, we create DuplexStream paired
with `hyper::upgrade::Upgraded`. When the connection is closed from the
server,... | diff --git a/ext/node/ops/http.rs b/ext/node/ops/http.rs
index 4b1f99ec045fe9..773902dedfdc28 100644
--- a/ext/node/ops/http.rs
+++ b/ext/node/ops/http.rs
@@ -272,6 +272,7 @@ pub async fn op_node_http_fetch_response_upgrade(
loop {
let read = upgraded_rx.read(&mut buf).await?;
if read == 0 {
+ ... |
metersphere | https://github.com/metersphere/metersphere | d02b4273ecac69be9318a67dfe2e1c1033ed8e14 | WangXu10 | 2024-02-18 12:32:38 | fix(系统管理): 组织日志按操作类型查询数据 | --bug=1035355 --user=王旭 【系统管理】组织-日志,操作类型中除了增删改查部分类型无数据 https://www.tapd.cn/55049933/s/1461803 | fix(系统管理): 组织日志按操作类型查询数据
--bug=1035355 --user=王旭 【系统管理】组织-日志,操作类型中除了增删改查部分类型无数据 https://www.tapd.cn/55049933/s/1461803 | diff --git a/backend/services/case-management/src/main/java/io/metersphere/functional/mapper/ExtCaseReviewHistoryMapper.xml b/backend/services/case-management/src/main/java/io/metersphere/functional/mapper/ExtCaseReviewHistoryMapper.xml
index 3cf081e714ac..243867ae82f7 100644
--- a/backend/services/case-management/src/... |
firecracker | https://github.com/firecracker-microvm/firecracker | 87b93cb7093657c21f8c0165e995c4187ccd505b | Diana Popa | 2020-12-23 17:57:51 | docs: mention virtualization design decision for ARM | Talk about the architectural decision of allowing guest
access to the host physical counter. | docs: mention virtualization design decision for ARM
Talk about the architectural decision of allowing guest
access to the host physical counter.
Signed-off-by: Diana Popa <dpopa@amazon.com> | diff --git a/docs/prod-host-setup.md b/docs/prod-host-setup.md
index d6601af9ad4..bc9ffef99b7 100644
--- a/docs/prod-host-setup.md
+++ b/docs/prod-host-setup.md
@@ -316,3 +316,14 @@ The fix was integrated in the mainline kernel and in 4.19.103, 5.4.19, 5.5.3
stable kernel releases. Please follow [kernel.org](https://w... |
metamask-extension | https://github.com/MetaMask/metamask-extension | bef5b8f9cd3df4e1a1ff7c60f403895faa72ef41 | Pedro Figueiredo | 2024-08-14 20:15:08 | fix: Flaky contract interaction test (#26420) | <!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->
## **Description**
On https://github.com/MetaMask/metamask-extension/pull/26234,
`scrollAndConfirmAndAssertConfirm` was modified ... | fix: Flaky contract interaction test (#26420)
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->
## **Description**
On https://github.com/MetaMask/metamask-extension/pull/26234,
`... | diff --git a/test/e2e/tests/confirmations/transactions/shared.ts b/test/e2e/tests/confirmations/transactions/shared.ts
index b699e9c0d61a..bf3063e3809a 100644
--- a/test/e2e/tests/confirmations/transactions/shared.ts
+++ b/test/e2e/tests/confirmations/transactions/shared.ts
@@ -1,8 +1,9 @@
/* eslint-disable @typescrip... |
buildah | https://github.com/containers/buildah | 484c53e6b4ca2ebf89228fbd922e5a6f6658ba01 | dependabot[bot] | 2022-01-06 15:04:51 | build(deps): bump github.com/containerd/containerd from 1.5.8 to 1.5.9 | Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.5.8 to 1.5.9.
- [Release notes](https://github.com/containerd/containerd/releases)
- [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md)
- [Commits](https://github.com/containerd/containerd/compare/v1.5.8..... | build(deps): bump github.com/containerd/containerd from 1.5.8 to 1.5.9
Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.5.8 to 1.5.9.
- [Release notes](https://github.com/containerd/containerd/releases)
- [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.m... | diff --git a/go.mod b/go.mod
index f81b69a4039..ea21646a17d 100644
--- a/go.mod
+++ b/go.mod
@@ -3,7 +3,7 @@ module github.com/containers/buildah
go 1.13
require (
- github.com/containerd/containerd v1.5.8
+ github.com/containerd/containerd v1.5.9
github.com/containernetworking/cni v1.0.1
github.com/containers/... |
infisical | https://github.com/Infisical/infisical | a87dc2fcb93fb929ef01244b33520fe13940caf8 | João Victor | 2023-01-06 07:03:05 | refactor: add new sentences | I would add it in the Korean folder, but I don't know it :( | refactor: add new sentences
I would add it in the Korean folder, but I don't know it :( | diff --git a/frontend/public/locales/en/dashboard.json b/frontend/public/locales/en/dashboard.json
index b64fdbd64d..99e6d9faa0 100644
--- a/frontend/public/locales/en/dashboard.json
+++ b/frontend/public/locales/en/dashboard.json
@@ -25,6 +25,11 @@
"comments": "Comments & Notes",
"personal-explanation": "Thi... |
kratos | https://github.com/go-kratos/kratos | b339ae89567dbadff6b665bf218a63b79845d01a | dependabot[bot] | 2022-11-10 08:59:33 | build(deps): bump github.com/apolloconfig/agollo/v4 (#2421) | Bumps [github.com/apolloconfig/agollo/v4](https://github.com/apolloconfig/agollo) from 4.2.0 to 4.2.1.
- [Release notes](https://github.com/apolloconfig/agollo/releases)
- [Commits](https://github.com/apolloconfig/agollo/compare/v4.2.0...v4.2.1)
--- | build(deps): bump github.com/apolloconfig/agollo/v4 (#2421)
Bumps [github.com/apolloconfig/agollo/v4](https://github.com/apolloconfig/agollo) from 4.2.0 to 4.2.1.
- [Release notes](https://github.com/apolloconfig/agollo/releases)
- [Commits](https://github.com/apolloconfig/agollo/compare/v4.2.0...v4.2.1)
---
updated-... | diff --git a/contrib/config/apollo/go.mod b/contrib/config/apollo/go.mod
index 236b4ed3c69..17ecbf85e36 100644
--- a/contrib/config/apollo/go.mod
+++ b/contrib/config/apollo/go.mod
@@ -3,7 +3,7 @@ module github.com/go-kratos/kratos/contrib/config/apollo/v2
go 1.16
require (
- github.com/apolloconfig/agollo/v4 v4.2.... |
next.js | https://github.com/vercel/next.js | 02dd1e55f0790a1562e3460da106640be2cae3ee | Donny/강동윤 | 2024-04-11 05:39:18 | build: Update `swc_core` to `v0.90.30` (#63790) | # Turbopack
* https://github.com/vercel/turbo/pull/7409 <!-- hrmny - chore: add
parallel rust frontend and remove unused rust dependencies -->
* https://github.com/vercel/turbo/pull/7920 <!-- Tobias Koppers - remove
warning when there is no PostCSS config -->
* https://github.com/vercel/turbo/pull/7929 <!-- Tim Neutk... | build: Update `swc_core` to `v0.90.30` (#63790)
# Turbopack
* https://github.com/vercel/turbo/pull/7409 <!-- hrmny - chore: add
parallel rust frontend and remove unused rust dependencies -->
* https://github.com/vercel/turbo/pull/7920 <!-- Tobias Koppers - remove
warning when there is no PostCSS config -->
* https:/... | diff --git a/Cargo.lock b/Cargo.lock
index e4830c0760280..bc4ed22446014 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -190,9 +190,9 @@ checksum = "70033777eb8b5124a81a1889416543dddef2de240019b674c81285a2635a7e1e"
[[package]]
name = "anyhow"
-version = "1.0.75"
+version = "1.0.82"
source = "registry+https://github.co... |
RSSHub | https://github.com/DIYgod/RSSHub | 6d9f9f89182243bb4bbd34e5bf9ff06e10ca53c8 | dependabot[bot] | 2024-06-20 14:04:01 | chore(deps-dev): bump @stylistic/eslint-plugin from 2.2.1 to 2.2.2 (#15949) | * chore(deps-dev): bump @stylistic/eslint-plugin from 2.2.1 to 2.2.2
Bumps [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) from 2.2.1 to 2.2.2.
- [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases)
- [Changelog](https://github... | chore(deps-dev): bump @stylistic/eslint-plugin from 2.2.1 to 2.2.2 (#15949)
* chore(deps-dev): bump @stylistic/eslint-plugin from 2.2.1 to 2.2.2
Bumps [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) from 2.2.1 to 2.2.2.
- [Release notes](https://github... | diff --git a/package.json b/package.json
index 41f3d98ba4cc9d..77076bab64cadd 100644
--- a/package.json
+++ b/package.json
@@ -130,7 +130,7 @@
"@babel/preset-env": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@microsoft/eslint-formatter-sarif": "3.1.0",
- "@stylistic/eslint-plugin"... |
azerothcore-wotlk | https://github.com/azerothcore/azerothcore-wotlk | 407ee3045e111d380725fda21edf15858fe2ebb6 | AzerothCoreBot | 2021-10-19 22:33:38 | chore(DB): import pending files | Referenced commit(s): 17edf34617a64bdec7c3dcb7b18112d11ab34e75 | chore(DB): import pending files
Referenced commit(s): 17edf34617a64bdec7c3dcb7b18112d11ab34e75 | diff --git a/data/sql/updates/pending_db_world/rev_1634222360045886500.sql b/data/sql/updates/db_world/2021_10_19_01.sql
similarity index 52%
rename from data/sql/updates/pending_db_world/rev_1634222360045886500.sql
rename to data/sql/updates/db_world/2021_10_19_01.sql
index 6ded5609bee0a3..6e91db677c64d7 100644
--- a/... |
TDengine | https://github.com/taosdata/TDengine | d22a791125ce5b7e55904fe88d0f80380ce8779c | Ganlin Zhao | 2022-04-27 18:01:15 | refactor(query): divide by 0 optimization | TD-15058
TD-15059 | refactor(query): divide by 0 optimization
TD-15058
TD-15059 | diff --git a/source/libs/scalar/src/sclvector.c b/source/libs/scalar/src/sclvector.c
index 4fcebedc98d6..a75b2521bdde 100644
--- a/source/libs/scalar/src/sclvector.c
+++ b/source/libs/scalar/src/sclvector.c
@@ -1058,36 +1058,36 @@ void vectorMathDivide(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *p
_getD... |
amplication | https://github.com/amplication/amplication | 1da7c9529a977c3b36b4a3bb56aec8f7f2238f61 | dependabot[bot] | 2023-07-13 23:56:48 | chore(deps-dev): bump type-fest from 3.11.0 to 3.13.0 | Bumps [type-fest](https://github.com/sindresorhus/type-fest) from 3.11.0 to 3.13.0.
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](https://github.com/sindresorhus/type-fest/compare/v3.11.0...v3.13.0)
--- | chore(deps-dev): bump type-fest from 3.11.0 to 3.13.0
Bumps [type-fest](https://github.com/sindresorhus/type-fest) from 3.11.0 to 3.13.0.
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](https://github.com/sindresorhus/type-fest/compare/v3.11.0...v3.13.0)
---
updated-dependencies:
- d... | diff --git a/package-lock.json b/package-lock.json
index 27d63be2ce..d1337782b0 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -159,7 +159,7 @@
"tar-stream": "^2.2.0",
"ts-morph": "^17.0.1",
"tslib": "^2.5.0",
- "type-fest": "^3.11.0",
+ "type-fest": "^3.13.0",
... |
outline | https://github.com/outline/outline | 400e32da7089f5b34f0ddbefd9c6f6f762d48929 | Tom Moor | 2021-09-14 06:06:26 | fix: Various fixes for collaborative editing beta (#2561) | * fix: Remove Saving… message when collab enabled
* chore: Add tracing extension to collaboration server
* fix: Incorrect debounce behavior due to missing timestamps on events, fixes abundence of notifications when editing in realtime collab mode
* fix: Reload document prompt when collab editing | fix: Various fixes for collaborative editing beta (#2561)
* fix: Remove Saving… message when collab enabled
* chore: Add tracing extension to collaboration server
* fix: Incorrect debounce behavior due to missing timestamps on events, fixes abundence of notifications when editing in realtime collab mode
* fix: Relo... | diff --git a/app/components/Collaborators.js b/app/components/Collaborators.js
index 384e20f81500..d817e9a21f40 100644
--- a/app/components/Collaborators.js
+++ b/app/components/Collaborators.js
@@ -12,17 +12,19 @@ import DocumentViews from "components/DocumentViews";
import Facepile from "components/Facepile";
impor... |
angular | https://github.com/angular/angular | b521b5eb39a43dc1d65b5b91eef8c1c5ae0877ed | George Kalpakas | 2020-11-19 05:19:17 | build(docs-infra): update @angular/material to 11.0.0 (#39600) | This commit updates `@angular/cdk` and `@angular/material` to version
11.0.0.
PR Close #39600 | build(docs-infra): update @angular/material to 11.0.0 (#39600)
This commit updates `@angular/cdk` and `@angular/material` to version
11.0.0.
PR Close #39600 | diff --git a/aio/package.json b/aio/package.json
index 48f7ca4171c47..8f1454cfa0e38 100644
--- a/aio/package.json
+++ b/aio/package.json
@@ -89,13 +89,13 @@
"private": true,
"dependencies": {
"@angular/animations": "11.0.0",
- "@angular/cdk": "11.0.0-rc.1",
+ "@angular/cdk": "11.0.0",
"@angular/co... |
umi | https://github.com/umijs/umi | 3dc78a3f10b4e094f326f0b292fbd1795c924b8c | zombieJ | 2019-06-14 13:56:14 | chore: update `umi-test` deps (#2605) | * updat deps
* update typescript
* adjust it | chore: update `umi-test` deps (#2605)
* updat deps
* update typescript
* adjust it | diff --git a/packages/umi-test/package.json b/packages/umi-test/package.json
index 7856956f9e84..af1fa57b23d2 100644
--- a/packages/umi-test/package.json
+++ b/packages/umi-test/package.json
@@ -27,20 +27,20 @@
"@babel/polyfill": "7.2.5",
"@babel/preset-typescript": "7.3.3",
"babel-core": "7.0.0-bridge.0... |
angular | https://github.com/angular/angular | a9904c2d2e70e53a10d708d9abb6e2333788bbee | Matthieu Riegler | 2023-03-09 05:09:02 | docs: Remove `RenderComponentType` from the depreciation list. (#49363) | `RenderComponentType` was removed by #33019
PR Close #49363 | docs: Remove `RenderComponentType` from the depreciation list. (#49363)
`RenderComponentType` was removed by #33019
PR Close #49363 | diff --git a/aio/content/guide/deprecations.md b/aio/content/guide/deprecations.md
index ca57c112818408..fcc3bf33fc96b8 100644
--- a/aio/content/guide/deprecations.md
+++ b/aio/content/guide/deprecations.md
@@ -45,7 +45,6 @@ v15 - v18
| `@angular/common` | [`ReflectiveInjector`](#reflectiveinjector) ... |
node | https://github.com/nodejs/node | 09e9e2bd82d5b82747100ab9163ebadba4cb3972 | Rich Trott | 2017-12-08 11:43:35 | test: fix flaky test-benchmark-querystring | Allow zero iterations for short benchmark in test. | test: fix flaky test-benchmark-querystring
Allow zero iterations for short benchmark in test.
PR-URL: https://github.com/nodejs/node/pull/17517
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Refael Ackermann <r... | diff --git a/test/parallel/test-benchmark-querystring.js b/test/parallel/test-benchmark-querystring.js
index 9daa165bf82a09..77d0ac99ff97d8 100644
--- a/test/parallel/test-benchmark-querystring.js
+++ b/test/parallel/test-benchmark-querystring.js
@@ -4,8 +4,9 @@ require('../common');
const runBenchmark = require('..... |
coc.nvim | https://github.com/neoclide/coc.nvim | 9fbbb30098e5a436c64a23b94610cabec3cffa5a | Qiming Zhao | 2021-06-23 16:41:47 | refactor(handler): rework codeActions related | - Add handler/codeActions module.
- Add codeActions related tests.
- Use WeakMap instead of clientId property of codeAction.
- Support codeActions resolve.
- Support disabled field of codeActions. | refactor(handler): rework codeActions related
- Add handler/codeActions module.
- Add codeActions related tests.
- Use WeakMap instead of clientId property of codeAction.
- Support codeActions resolve.
- Support disabled field of codeActions. | diff --git a/doc/coc.txt b/doc/coc.txt
index 5fe23026a22..85ff6bf3fc4 100644
--- a/doc/coc.txt
+++ b/doc/coc.txt
@@ -2195,8 +2195,9 @@ Acceptable {action} names for |CocAction()| and |CocActionAsync|.
"doQuickfix" *coc-action-doQuickfix*
- Do the first quickfix action for the current line.
- Return `v:false` ... |
endless-sky | https://github.com/endless-sky/endless-sky | fb9a6fc0d413282c5e149e31aa341e46cb9019b2 | tatami4 | 2021-01-03 19:10:49 | feat(mechanics): Display a dialog when changing VSync manually fails (#5600) | since otherwise the UI seems unresponsive.
* add a dialog 'unable to switch vsync state' to settings
* update dialog message with a possible reason | feat(mechanics): Display a dialog when changing VSync manually fails (#5600)
since otherwise the UI seems unresponsive.
* add a dialog 'unable to switch vsync state' to settings
* update dialog message with a possible reason | diff --git a/source/Preferences.cpp b/source/Preferences.cpp
index f7b66a3ef4d8..0f991cb0b8b2 100644
--- a/source/Preferences.cpp
+++ b/source/Preferences.cpp
@@ -181,7 +181,7 @@ bool Preferences::ZoomViewOut()
-void Preferences::ToggleVSync()
+bool Preferences::ToggleVSync()
{
int targetIndex = vsyncIndex + 1... |
label-studio | https://github.com/HumanSignal/label-studio | 2ba8d3d509ae8dae4c9a3d24d2d2b758d33972b3 | Max Tkachenko | 2023-03-24 18:57:41 | fix: LSDV-4855: UnboundLocalError: local variable '_class' referenced before assignment (#3896) | * fix: LSDV-4855: UnboundLocalError: local variable '_class' referenced before assignment
* Add tests | fix: LSDV-4855: UnboundLocalError: local variable '_class' referenced before assignment (#3896)
* fix: LSDV-4855: UnboundLocalError: local variable '_class' referenced before assignment
* Add tests | diff --git a/label_studio/data_manager/managers.py b/label_studio/data_manager/managers.py
index 5c82b24b9467..685cea5ce917 100644
--- a/label_studio/data_manager/managers.py
+++ b/label_studio/data_manager/managers.py
@@ -163,16 +163,18 @@ def add_result_filter(field_name, _filter, filter_expressions, project):
f... |
nock | https://github.com/nock/nock | c2baa09b3589cdee601efec7813ef6881e770cd5 | dependabot[bot] | 2023-08-05 03:46:00 | chore(deps-dev): bump semantic-release from 21.0.6 to 21.0.7 | Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 21.0.6 to 21.0.7.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](https://github.com/semantic-release/semantic-release/compare/v21.0.6...v21.0.7)
--- | chore(deps-dev): bump semantic-release from 21.0.6 to 21.0.7
Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 21.0.6 to 21.0.7.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](https://github.com/semantic-release/semantic-release/compare/v2... | diff --git a/package-lock.json b/package-lock.json
index c518fc546..d47a4dd79 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -11954,9 +11954,9 @@
"dev": true
},
"node_modules/semantic-release": {
- "version": "21.0.6",
- "resolved": "https://registry.npmjs.org/semantic-release/-/se... |
metamask-extension | https://github.com/MetaMask/metamask-extension | d887c79d1fd740b488dfef5637db932560df12da | David Walsh | 2024-11-12 03:29:12 | fix: Add metric trait for privacy mode (#28335) | ## **Description**
Adds a user trait for if privacy mode is enabled.
[](https://codespaces.new/MetaMask/metamask-extension/pull/28335?quickstart=1)
## **Related issues** | fix: Add metric trait for privacy mode (#28335)
## **Description**
Adds a user trait for if privacy mode is enabled.
[](https://codespaces.new/MetaMask/metamask-extension/pull/28335?quickstart=1)
## **Related issues**
Fixes:
## **Manual testing ... | diff --git a/app/scripts/controllers/metametrics-controller.test.ts b/app/scripts/controllers/metametrics-controller.test.ts
index 4d12c06d0fd1..58fad403fdab 100644
--- a/app/scripts/controllers/metametrics-controller.test.ts
+++ b/app/scripts/controllers/metametrics-controller.test.ts
@@ -1453,6 +1453,7 @@ describe('M... |
dagger | https://github.com/dagger/dagger | 632becfda6cd13a68fbfa6ef8e71f285df3c39b2 | Thanabodee Charoenpiriyakij | 2023-08-10 00:41:57 | feat: add Elixir to sdk:all task (#5561) | Make `sdk:all` to run `sdk:elixir` tasks. | feat: add Elixir to sdk:all task (#5561)
Make `sdk:all` to run `sdk:elixir` tasks.
Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com> | diff --git a/internal/mage/sdk/all.go b/internal/mage/sdk/all.go
index 7ff418dee13..375d7c6cc7c 100644
--- a/internal/mage/sdk/all.go
+++ b/internal/mage/sdk/all.go
@@ -25,6 +25,7 @@ var availableSDKs = []SDK{
&Go{},
&Python{},
&Nodejs{},
+ &Elixir{},
}
var _ SDK = All{} |
endless-sky | https://github.com/endless-sky/endless-sky | db3571fb5de00ee70d0dc05963656dc4b4ad9d3c | bobrobbow | 2020-10-23 16:09:41 | fix(motion blur): Set the velocity of destroyed ships to 0 (#5464) | This stops the motion blur effect if the player's flagship dies while in motion. | fix(motion blur): Set the velocity of destroyed ships to 0 (#5464)
This stops the motion blur effect if the player's flagship dies while in motion. | diff --git a/source/Ship.cpp b/source/Ship.cpp
index 219874b8b007..a8f5de576ff2 100644
--- a/source/Ship.cpp
+++ b/source/Ship.cpp
@@ -1292,6 +1292,7 @@ void Ship::Move(vector<Visual> &visuals, list<shared_ptr<Flotsam>> &flotsam)
heat = 0.;
ionization = 0.;
fuel = 0.;
+ velocity = Point();
MarkForRemo... |
haproxy | https://github.com/haproxy/haproxy | 874c907a2e5ffae50599b1f368e0488d8eb2fe4f | Ilya Shipitsin | 2022-01-03 19:12:12 | CI: github actions: update OpenSSL to 3.0.1 | OpenSSL-3.0.1 was released on 14 Dec 2021, let's switch to it | CI: github actions: update OpenSSL to 3.0.1
OpenSSL-3.0.1 was released on 14 Dec 2021, let's switch to it | diff --git a/.github/matrix.py b/.github/matrix.py
index 53b5e0f88fcd0..34a78ace42b77 100755
--- a/.github/matrix.py
+++ b/.github/matrix.py
@@ -110,7 +110,7 @@ def get_asan_flags(cc):
for ssl in [
"stock",
"OPENSSL_VERSION=1.0.2u",
- "OPENSSL_VERSION=3.0.0",
+ "OPENSSL_VERSION=3.0.... |
infracost | https://github.com/infracost/infracost | ea2bda3b23eba0c566f0a5190b66ec61d2fd5ec4 | Vadim Golub | 2021-12-16 00:49:19 | fix(azure): update golden file output for Azure Storage Account (#1205) | The Cloud Pricing API update brought new changes for the StorageV2
pricing. | fix(azure): update golden file output for Azure Storage Account (#1205)
The Cloud Pricing API update brought new changes for the StorageV2
pricing. | diff --git a/internal/providers/terraform/azure/testdata/storage_account_test/storage_account_test.golden b/internal/providers/terraform/azure/testdata/storage_account_test/storage_account_test.golden
index 529efbf13d3..f37a28b1fe4 100644
--- a/internal/providers/terraform/azure/testdata/storage_account_test/storage_ac... |
label-studio | https://github.com/HumanSignal/label-studio | 9da997f7d180d7bf8c76b5d01b2b58d1ea00082c | Nikita Belonogov | 2023-02-23 20:28:05 | docs: Add release notes for 2.4.2 (#3728) | * docs: Add release notes for 2.4.2
* Update 2.4.2.md
--------- | docs: Add release notes for 2.4.2 (#3728)
* docs: Add release notes for 2.4.2
* Update 2.4.2.md
---------
Co-authored-by: Max Tkachenko <makseq@gmail.com> | diff --git a/docs/source/release_notes/2.4.2.md b/docs/source/release_notes/2.4.2.md
new file mode 100644
index 000000000000..3e865976c277
--- /dev/null
+++ b/docs/source/release_notes/2.4.2.md
@@ -0,0 +1,35 @@
+### New Feature
+- Labels are not displayed inside the regions [LSDV-1142](https://labelstudio.aha.io/featur... |
fluentui | https://github.com/microsoft/fluentui | 033af48f49f83c79d61cdc3cfb1a86c28ebda9ef | Harish Gautam | 2023-11-23 22:14:03 | fix: react-charting VBC - RTL mode mouseover on bar chart shows incorrect data (#29876) | * fix: react-charting VBC - RTL mode mouseover on bar chart the data is not displaying correctly
* yarn change
* rtl mode range changed | fix: react-charting VBC - RTL mode mouseover on bar chart shows incorrect data (#29876)
* fix: react-charting VBC - RTL mode mouseover on bar chart the data is not displaying correctly
* yarn change
* rtl mode range changed | diff --git a/change/@fluentui-react-charting-b1c51226-7ca4-40eb-9521-2b53b639045e.json b/change/@fluentui-react-charting-b1c51226-7ca4-40eb-9521-2b53b639045e.json
new file mode 100644
index 00000000000000..500da2677b38e8
--- /dev/null
+++ b/change/@fluentui-react-charting-b1c51226-7ca4-40eb-9521-2b53b639045e.json
@@ -0... |
vuetify | https://github.com/vuetifyjs/vuetify | 0c6175f9b27495fcc31595070efa04b7e530b9db | Kael | 2019-11-07 18:42:11 | fix(VMenu): only use the activator slot in getActivator if it exists | see baeb7bab | fix(VMenu): only use the activator slot in getActivator if it exists
see baeb7bab | diff --git a/packages/vuetify/src/mixins/activatable/index.ts b/packages/vuetify/src/mixins/activatable/index.ts
index f2962133b89..5c83faf8e52 100644
--- a/packages/vuetify/src/mixins/activatable/index.ts
+++ b/packages/vuetify/src/mixins/activatable/index.ts
@@ -135,7 +135,7 @@ export default baseMixins.extend({
... |
charts | https://github.com/frappe/charts | 256649fbccd457d93745c9cfefb237658c2b5300 | Arjun Choudhary | 2022-12-14 18:15:51 | fix: Partial fix for #404 needs more work. | Better null value handling. Add option for filling zero/null values to
maintain backwards compat. | fix: Partial fix for #404 needs more work.
Better null value handling. Add option for filling zero/null values to
maintain backwards compat. | diff --git a/src/js/charts/BaseChart.js b/src/js/charts/BaseChart.js
index 5a63c7d5..08b9f572 100644
--- a/src/js/charts/BaseChart.js
+++ b/src/js/charts/BaseChart.js
@@ -1,26 +1,26 @@
import SvgTip from "../objects/SvgTip";
import {
- $,
- isElementInViewport,
- getElementContentWidth,
- isHidden,
+ $,
+ isEleme... |
table | https://github.com/TanStack/table | c09d214c0bf98bcd953375d25b7407825fb6809d | Lachlan Collins | 2024-06-28 12:53:47 | ci: Update TanStack Config to v0.8 (#5627) | * ci: Update tanstack/config
* Update | ci: Update TanStack Config to v0.8 (#5627)
* ci: Update tanstack/config
* Update | diff --git a/package.json b/package.json
index 4352f159bb..a085e76844 100644
--- a/package.json
+++ b/package.json
@@ -54,7 +54,7 @@
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@size-limit/preset-small-lib": "^11.1.2",
- "@tanstack/config": "^0.7.6",
+ "@tanstack/config"... |
appsmith | https://github.com/appsmithorg/appsmith | 7301c8538f320556b87fbe86f5ce842bb7a0d583 | albinAppsmith | 2022-10-10 09:24:41 | feat: Change dialogue component import to design system repository (#17302) | * feat: Change dialogue component import to design system repository
* design system version changed | feat: Change dialogue component import to design system repository (#17302)
* feat: Change dialogue component import to design system repository
* design system version changed | diff --git a/app/client/src/components/ads/DialogComponent.tsx b/app/client/src/components/ads/DialogComponent.tsx
deleted file mode 100644
index 8641bfef7709..000000000000
--- a/app/client/src/components/ads/DialogComponent.tsx
+++ /dev/null
@@ -1,200 +0,0 @@
-import React, { ReactNode, useState, useEffect } from "rea... |
Anki-Android | https://github.com/ankidroid/Anki-Android | d5419984184c630de1423a8f2754a4949a671e59 | David Allison | 2023-11-06 22:55:01 | refactor: extract TTS Voices out of ReadText | * We are going to use this in {{tts-voices:}} and this
ideally should require the same functionality
* We remove the dependency on Context => TTSEngine => | refactor: extract TTS Voices out of ReadText
* We are going to use this in {{tts-voices:}} and this
ideally should require the same functionality
* We remove the dependency on Context => TTSEngine =>
TTSEngine::OnInitListener => Language list (~1 second on my phone)
* This moves the slow instance creation to Applicati... | diff --git a/AnkiDroid/src/main/java/com/ichi2/anki/AnkiDroidApp.kt b/AnkiDroid/src/main/java/com/ichi2/anki/AnkiDroidApp.kt
index 005e18bdca2e..63731e96be70 100644
--- a/AnkiDroid/src/main/java/com/ichi2/anki/AnkiDroidApp.kt
+++ b/AnkiDroid/src/main/java/com/ichi2/anki/AnkiDroidApp.kt
@@ -49,6 +49,9 @@ import com.ichi... |
halo | https://github.com/halo-dev/halo | 16e4e46e4041be5689842173d5911cefed738db6 | guqing | 2022-11-24 20:23:06 | fix: cannot be published successfully after post or single page unpublished (#2762) | #### What type of PR is this?
/kind bug
/area core
/milestone 2.0.0-rc.1
#### What this PR does / why we need it:
修复文章和自定义页面取消发布后无法再继续发布的问题
#### Special notes for yourd reviewer:
how to test it?
1. create a post and publsih it
2. unpublish it then republish
3. excepted to b published successfully
/cc @halo-dev/sig-h... | fix: cannot be published successfully after post or single page unpublished (#2762)
#### What type of PR is this?
/kind bug
/area core
/milestone 2.0.0-rc.1
#### What this PR does / why we need it:
修复文章和自定义页面取消发布后无法再继续发布的问题
#### Special notes for yourd reviewer:
how to test it?
1. create a post and publsih it
2. unp... | diff --git a/src/main/java/run/halo/app/core/extension/reconciler/PostReconciler.java b/src/main/java/run/halo/app/core/extension/reconciler/PostReconciler.java
index e79ecea72a..595552bfe8 100644
--- a/src/main/java/run/halo/app/core/extension/reconciler/PostReconciler.java
+++ b/src/main/java/run/halo/app/core/extens... |
node | https://github.com/nodejs/node | b968d584af9e569aeb1fdbc4399ff9752378b41f | vperezma | 2017-04-24 23:01:28 | test: improve test-process-chdir | remove typeError constructor and replace with regex string
to match typeError message | test: improve test-process-chdir
remove typeError constructor and replace with regex string
to match typeError message
PR-URL: https://github.com/nodejs/node/pull/12589
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By:... | diff --git a/test/parallel/test-process-chdir.js b/test/parallel/test-process-chdir.js
index abf06b3c523cb4..f54026467eb6cd 100644
--- a/test/parallel/test-process-chdir.js
+++ b/test/parallel/test-process-chdir.js
@@ -30,7 +30,9 @@ process.chdir('..');
assert.strictEqual(process.cwd().normalize(),
... |
cilium | https://github.com/cilium/cilium | a749f2ed7ef97b48c9ee96de028b1173dba24f4f | Paul Chaignon | 2022-03-10 23:35:01 | test: Disable sockops tests on 4.19 | The sockops tests have been broken for a long time on 4.19. As seen
in [1], the loading of sockops BPF programs has been failing for a
while. The test was still passing because we don't fatal in that case
and we don't check that sockops is actually used during the test itself.
The previous commit changed this behavior... | test: Disable sockops tests on 4.19
The sockops tests have been broken for a long time on 4.19. As seen
in [1], the loading of sockops BPF programs has been failing for a
while. The test was still passing because we don't fatal in that case
and we don't check that sockops is actually used during the test itself.
The ... | diff --git a/test/k8s/datapath_configuration.go b/test/k8s/datapath_configuration.go
index 93899b72d178f..0498c51df780b 100644
--- a/test/k8s/datapath_configuration.go
+++ b/test/k8s/datapath_configuration.go
@@ -214,13 +214,8 @@ var _ = Describe("K8sDatapathConfig", func() {
Expect(testPodConnectivityAcrossNodes(k... |
angular | https://github.com/angular/angular | b72dbc843faf8a39b829b0d0c9e63079d627c2ab | Sarun Intaralawan | 2018-07-06 22:40:01 | docs(router): add `paramsInheritanceStrategy` documentation (#22590) | PR Close #22590 | docs(router): add `paramsInheritanceStrategy` documentation (#22590)
PR Close #22590 | diff --git a/packages/router/src/router_module.ts b/packages/router/src/router_module.ts
index b4a7eca8bd7fab..22ed2210a3db4a 100644
--- a/packages/router/src/router_module.ts
+++ b/packages/router/src/router_module.ts
@@ -152,6 +152,8 @@ export class RouterModule {
* * `preloadingStrategy` configures a preloading ... |
risingwave | https://github.com/risingwavelabs/risingwave | 17c04179f49e601e603ab3ae7887b747aaa95484 | Yuhao Su | 2022-07-08 11:55:09 | refactor(streaming): use table catalog in hash join (#3707) | * use tablecatalog
* fix infer_internal_table_catalog
* cargo fix
* fix tests
* keys -> key
* fix build executor
* minor
* fix incorrect order keys
* fix comments
* fix typo
* add comment | refactor(streaming): use table catalog in hash join (#3707)
* use tablecatalog
* fix infer_internal_table_catalog
* cargo fix
* fix tests
* keys -> key
* fix build executor
* minor
* fix incorrect order keys
* fix comments
* fix typo
* add comment | diff --git a/proto/stream_plan.proto b/proto/stream_plan.proto
index ac5ae56210302..ff4a502791569 100644
--- a/proto/stream_plan.proto
+++ b/proto/stream_plan.proto
@@ -106,13 +106,11 @@ message HashJoinNode {
catalog.Table left_table = 6;
// Used for internal table states.
catalog.Table right_table = 7;
- re... |
angular | https://github.com/angular/angular | 7c57293bee14d5a248094a3fbde1aed35a43fd70 | WilliamKoza | 2019-03-05 23:16:45 | refactor(language-service): clean up imports language-service and misspellings in public API (#29097) | PR Close #29097 | refactor(language-service): clean up imports language-service and misspellings in public API (#29097)
PR Close #29097 | diff --git a/packages/language-service/src/completions.ts b/packages/language-service/src/completions.ts
index 22941debd2e22..5a663bd045a0e 100644
--- a/packages/language-service/src/completions.ts
+++ b/packages/language-service/src/completions.ts
@@ -6,13 +6,13 @@
* found in the LICENSE file at https://angular.io/l... |
github-readme-stats | https://github.com/anuraghazra/github-readme-stats | 91889a3319778fbaaa1d23cf5bba353f6d4723bf | dependabot[bot] | 2023-12-05 00:40:33 | build(deps-dev): Bump eslint-config-prettier from 9.0.0 to 9.1.0 (#3523) | Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 9.0.0 to 9.1.0.
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/eslint-config-prettier/compare/v9.0.0...v9.1.0)
--- | build(deps-dev): Bump eslint-config-prettier from 9.0.0 to 9.1.0 (#3523)
Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 9.0.0 to 9.1.0.
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/eslint-config... | diff --git a/package-lock.json b/package-lock.json
index 9733dd83b5a21..d21ac433f631e 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -25,7 +25,7 @@
"axios-mock-adapter": "^1.22.0",
"color-contrast-checker": "^2.1.0",
"eslint": "^8.55.0",
- "eslint-config-prettier": "^9.0.0",... |
camel | https://github.com/apache/camel | b4cb1acd2979fcbacf5c2e9415f3715836ae78d0 | dependabot[bot] | 2024-12-13 13:29:07 | chore(deps): Bump org.l2x6.cq:cq-alias-fastinstall-quickly-extension (#16558) | Bumps [org.l2x6.cq:cq-alias-fastinstall-quickly-extension](https://github.com/l2x6/cq-maven-plugin) from 4.16.0 to 4.16.1.
- [Commits](https://github.com/l2x6/cq-maven-plugin/compare/4.16.0...4.16.1)
--- | chore(deps): Bump org.l2x6.cq:cq-alias-fastinstall-quickly-extension (#16558)
Bumps [org.l2x6.cq:cq-alias-fastinstall-quickly-extension](https://github.com/l2x6/cq-maven-plugin) from 4.16.0 to 4.16.1.
- [Commits](https://github.com/l2x6/cq-maven-plugin/compare/4.16.0...4.16.1)
---
updated-dependencies:
- dependency-n... | diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
index 239d4b57a6c3d..5fd15e9ee1a8d 100644
--- a/.mvn/extensions.xml
+++ b/.mvn/extensions.xml
@@ -3,7 +3,7 @@
<extension>
<groupId>org.l2x6.cq</groupId>
<artifactId>cq-alias-fastinstall-quickly-extension</artifactId>
- <version>4.16.0<... |
node | https://github.com/nodejs/node | d3d54aa8ef6e4df04507f3d3a1b891c863eb497b | Daniel Bevenius | 2018-08-10 09:08:29 | build: extract common parts from addon .buildstamp | This commit extracts common parts from the targets
test/addons/.buildstamp, and test/addons-napi/.buildstamp to reduce some
duplication. | build: extract common parts from addon .buildstamp
This commit extracts common parts from the targets
test/addons/.buildstamp, and test/addons-napi/.buildstamp to reduce some
duplication.
PR-URL: https://github.com/nodejs/node/pull/22171
Reviewed-By: Jon Moss <me@jonathanmoss.me> | diff --git a/Makefile b/Makefile
index fc4a094656a452..f1242bbb30fc73 100644
--- a/Makefile
+++ b/Makefile
@@ -333,19 +333,26 @@ ADDONS_BINDING_SOURCES := \
$(filter-out test/addons/??_*/*.cc, $(wildcard test/addons/*/*.cc)) \
$(filter-out test/addons/??_*/*.h, $(wildcard test/addons/*/*.h))
+ADDONS_PREREQS := co... |
angular | https://github.com/angulardart/angular | 4526a0b262fd2f11654e709f6219c3395e2e90a1 | matanl | 2017-03-29 22:26:44 | fix(Core): Warn when using Dartium in unchecked mode while developing Angular. | Closes https://github.com/dart-lang/angular2/pull/315.
Closes https://github.com/dart-lang/angular2/issues/258.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=151494941 | fix(Core): Warn when using Dartium in unchecked mode while developing Angular.
Closes https://github.com/dart-lang/angular2/pull/315.
Closes https://github.com/dart-lang/angular2/issues/258.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=151494941 | diff --git a/lib/src/core/application_ref.dart b/lib/src/core/application_ref.dart
index 2c2340422a..b25ded54f1 100644
--- a/lib/src/core/application_ref.dart
+++ b/lib/src/core/application_ref.dart
@@ -8,7 +8,7 @@ import 'package:angular2/src/core/linker/app_view.dart'
import 'package:angular2/src/core/linker/view_re... |
quickemu | https://github.com/quickemu-project/quickemu | 50d124294c9ce018c51458b50b805380eaef99b8 | Martin Wimpress | 2024-04-30 15:08:47 | fix: do not override EDITION in get_*() functions | EDITION is set in the global scope by validate_release(), it should not be passed as an argument. | fix: do not override EDITION in get_*() functions
EDITION is set in the global scope by validate_release(), it should not be passed as an argument. | diff --git a/quickget b/quickget
index ce43ace3b2..7d29e4b2ea 100755
--- a/quickget
+++ b/quickget
@@ -415,9 +415,10 @@ function list_url_all() {
fi
for RELEASE in $("releases_${FUNC}" | sed -Ee 's/eol-\S+//g' ); do # hide eol releases
if [[ $(type -t "editions_${OS}") == function ]]; then
- ... |
smooth-app | https://github.com/openfoodfacts/smooth-app | d33c8062a24f1a2f526dde94ca289ee9b098e623 | monsieurtanuki | 2021-12-29 16:25:12 | fix: #771 - now using translated categories; fixed "category filter" label (#786) | Impacted files:
* `app_en.arb`: fixed `category` label; added `category_all`
* `app_fr.arb`: fixed `category` label; added `category_all`
* `product_query.dart`: removed now useless `CATEGORIES_TAGS` (now we use only `CATEGORIES_TAGS_IN_LANGUAGES`)
* `product_query_model.dart`: now using `categoriesTagsInLanguages` for... | fix: #771 - now using translated categories; fixed "category filter" label (#786)
Impacted files:
* `app_en.arb`: fixed `category` label; added `category_all`
* `app_fr.arb`: fixed `category` label; added `category_all`
* `product_query.dart`: removed now useless `CATEGORIES_TAGS` (now we use only `CATEGORIES_TAGS_IN_... | diff --git a/packages/smooth_app/lib/data_models/product_query_model.dart b/packages/smooth_app/lib/data_models/product_query_model.dart
index 188aa4696980..b02ba62174ba 100644
--- a/packages/smooth_app/lib/data_models/product_query_model.dart
+++ b/packages/smooth_app/lib/data_models/product_query_model.dart
@@ -1,7 +... |
metamask-extension | https://github.com/MetaMask/metamask-extension | f249b8ce8ea0ffa8fd71b343b1c881ba3e98cff6 | Hassan Malik | 2024-11-27 22:30:08 | feat: Integrate Snap notification services (#27975) | ## **Description**
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following | feat: Integrate Snap notification services (#27975)
## **Description**
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change? Snap notifications were moved into
the `NotificationS... | diff --git a/app/scripts/background.js b/app/scripts/background.js
index 6a047c79ac16..e39d96943d77 100644
--- a/app/scripts/background.js
+++ b/app/scripts/background.js
@@ -1046,11 +1046,6 @@ export function setupController(
updateBadge,
);
- controller.controllerMessenger.subscribe(
- METAMASK_CONTROLL... |
appsmith | https://github.com/appsmithorg/appsmith | d3ea54d6a2676950e05effae79710a47a921685b | subratadeypappu | 2024-12-24 11:27:21 | chore: Add code-split for injecting JIT pull in app CI/CD (#38270) | ## Description
EE counterpart PR: https://github.com/appsmithorg/appsmith-ee/pull/5780
Fixes #`Issue Number`
_or_
Fixes `Issue URL`
> [!WARNING]
> _If no issue exists, please create an issue first, and check with the
maintainers if the issue is valid._
## Automation
/ok-to-test tags="@tag.Sanity"
### :mag: Cypress... | chore: Add code-split for injecting JIT pull in app CI/CD (#38270)
## Description
EE counterpart PR: https://github.com/appsmithorg/appsmith-ee/pull/5780
Fixes #`Issue Number`
_or_
Fixes `Issue URL`
> [!WARNING]
> _If no issue exists, please create an issue first, and check with the
maintainers if the issue is... | diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/applications/git/GitApplicationHelperCEImpl.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/applications/git/GitApplicationHelperCEImpl.java
index e59d74b7ae67..c299137a10f7 100644
--- a/app/server/appsmith-server/src/main/jav... |
nuclei | https://github.com/projectdiscovery/nuclei | 0186d088c8c55eac2012ea4c578e831e612bdc2d | dependabot[bot] | 2024-12-09 10:50:01 | chore(deps): bump github.com/projectdiscovery/hmap from 0.0.69 to 0.0.70 | Bumps [github.com/projectdiscovery/hmap](https://github.com/projectdiscovery/hmap) from 0.0.69 to 0.0.70.
- [Release notes](https://github.com/projectdiscovery/hmap/releases)
- [Commits](https://github.com/projectdiscovery/hmap/compare/v0.0.69...v0.0.70)
--- | chore(deps): bump github.com/projectdiscovery/hmap from 0.0.69 to 0.0.70
Bumps [github.com/projectdiscovery/hmap](https://github.com/projectdiscovery/hmap) from 0.0.69 to 0.0.70.
- [Release notes](https://github.com/projectdiscovery/hmap/releases)
- [Commits](https://github.com/projectdiscovery/hmap/compare/v0.0.69...... | diff --git a/go.mod b/go.mod
index 333d9efde1..3940bb7dc3 100644
--- a/go.mod
+++ b/go.mod
@@ -21,7 +21,7 @@ require (
github.com/pkg/errors v0.9.1
github.com/projectdiscovery/clistats v0.1.1
github.com/projectdiscovery/fastdialer v0.2.10
- github.com/projectdiscovery/hmap v0.0.69
+ github.com/projectdiscovery/hm... |
cloud-hypervisor | https://github.com/cloud-hypervisor/cloud-hypervisor | 46f0e0d14ae5bdd92622640ae45343ab3ebd66ae | Bo Chen | 2024-12-02 20:41:24 | ci: Increase rate-limiter worker timeout | The rate-limiter worker was moved to use small Azure VMs (#6731) and now
requires more time to complete.
Increasing its timeout to stablize this worker. | ci: Increase rate-limiter worker timeout
The rate-limiter worker was moved to use small Azure VMs (#6731) and now
requires more time to complete.
Increasing its timeout to stablize this worker.
Signed-off-by: Bo Chen <bo.arvin.chen@gmail.com> | diff --git a/.github/workflows/integration-rate-limiter.yaml b/.github/workflows/integration-rate-limiter.yaml
index 6dd682eb57..0fe38257f1 100644
--- a/.github/workflows/integration-rate-limiter.yaml
+++ b/.github/workflows/integration-rate-limiter.yaml
@@ -28,7 +28,7 @@ jobs:
sudo apt install -y docker-ce ... |
ragflow | https://github.com/infiniflow/ragflow | b75115264dbfe451fbfce1d431c883b8dc876204 | balibabu | 2024-08-13 08:21:51 | fix: Error on chat api,<BadRequestKeyError '400: Bad Request'> #1918 (#1923) | ### What problem does this PR solve? | fix: Error on chat api,<BadRequestKeyError '400: Bad Request'> #1918 (#1923)
### What problem does this PR solve?
fix: Error on chat api,<BadRequestKeyError '400: Bad Request'> #1918
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue) | diff --git a/web/src/components/api-service/hooks.ts b/web/src/components/api-service/hooks.ts
index 4ca1b37a9a0..d93eab2dba8 100644
--- a/web/src/components/api-service/hooks.ts
+++ b/web/src/components/api-service/hooks.ts
@@ -1,6 +1,5 @@
import {
useCreateNextToken,
- useFetchNextStats,
useFetchTokenList,
... |
smooth-app | https://github.com/openfoodfacts/smooth-app | f0c26da28474380c2901ce3af3fd73b09f1e14cc | monsieurtanuki | 2023-12-08 22:21:18 | feat: 4674 - added the "other photos" section (#4866) | * feat: 4674 - added the "other photos" section
New files:
* `product_image_gallery_other_view.dart`: Display of the other pictures of a product.
* `product_image_other_page.dart`: Full page display of a raw product image.
Impacted file:
* `product_image_gallery_view.dart`: added the "other photos" section; fixed a "... | feat: 4674 - added the "other photos" section (#4866)
* feat: 4674 - added the "other photos" section
New files:
* `product_image_gallery_other_view.dart`: Display of the other pictures of a product.
* `product_image_other_page.dart`: Full page display of a raw product image.
Impacted file:
* `product_image_gallery_... | diff --git a/packages/smooth_app/lib/l10n/app_en.arb b/packages/smooth_app/lib/l10n/app_en.arb
index 6cbc494bb313..f57722199e75 100644
--- a/packages/smooth_app/lib/l10n/app_en.arb
+++ b/packages/smooth_app/lib/l10n/app_en.arb
@@ -714,6 +714,8 @@
"nutrition_page_update_done": "Product updated!",
"more_photos"... |
coder | https://github.com/coder/coder | 26ab0d37c18a56faa1dd3ee41cac3f0f6a457ccd | Mathias Fredriksson | 2022-11-09 19:01:24 | fix: Protect codersdk.Client SessionToken so it can be updated (#4965) | This feature is used by the coder agent to exchange a new token. By
protecting the SessionToken via mutex we ensure there are no data races
when accessing it. | fix: Protect codersdk.Client SessionToken so it can be updated (#4965)
This feature is used by the coder agent to exchange a new token. By
protecting the SessionToken via mutex we ensure there are no data races
when accessing it. | diff --git a/cli/agent.go b/cli/agent.go
index 2356050adce2b..0aa54a13b9416 100644
--- a/cli/agent.go
+++ b/cli/agent.go
@@ -97,7 +97,7 @@ func workspaceAgent() *cobra.Command {
if err != nil {
return xerrors.Errorf("CODER_AGENT_TOKEN must be set for token auth: %w", err)
}
- client.SessionToken = to... |
unleash | https://github.com/Unleash/unleash | bf5f38ba1eefdc2941636885b7118573e2bd2247 | andreas-unleash | 2024-03-11 14:01:24 | fix: chart xAxis and null values (#6472) | Changes the xAxis from 'week' to 'date' (timeline fix)
Replace null values with 0
--------- | fix: chart xAxis and null values (#6472)
Changes the xAxis from 'week' to 'date' (timeline fix)
Replace null values with 0
---------
Signed-off-by: andreas-unleash <andreas@getunleash.ai> | diff --git a/frontend/src/component/executiveDashboard/componentsChart/MetricsSummaryChart/MetricsChartTooltip/MetricsChartTooltip.tsx b/frontend/src/component/executiveDashboard/componentsChart/MetricsSummaryChart/MetricsChartTooltip/MetricsChartTooltip.tsx
index eeaf10850030..974f3b2dc654 100644
--- a/frontend/src/co... |
react-native-firebase | https://github.com/invertase/react-native-firebase | 2aed1f54fdd545b4e628e847997b56afc2995de6 | Mike Hardy | 2022-06-17 22:43:24 | test(emulator): port numbers as numbers not strings | quiets some firebase emulator startup warnings | test(emulator): port numbers as numbers not strings
quiets some firebase emulator startup warnings | diff --git a/.github/workflows/scripts/firebase.json b/.github/workflows/scripts/firebase.json
index 74d027b9bd..4beb161c35 100644
--- a/.github/workflows/scripts/firebase.json
+++ b/.github/workflows/scripts/firebase.json
@@ -18,19 +18,19 @@
},
"emulators": {
"auth": {
- "port": "9099"
+ "port": 9... |
vue-cli | https://github.com/vuejs/vue-cli | 67298808cdc47f0466faa3c37f30bcd7f57b8f0f | posrix | 2018-07-11 04:59:30 | feat: pages support title option (#1619) | * pages support title option
* docs: pages `title` option | feat: pages support title option (#1619)
* pages support title option
* docs: pages `title` option | diff --git a/docs/config/README.md b/docs/config/README.md
index fa3a56fd2f..b5b2f46dda 100644
--- a/docs/config/README.md
+++ b/docs/config/README.md
@@ -81,7 +81,7 @@ module.exports = {
Build the app in multi-page mode. Each "page" should have a corresponding JavaScript entry file. The value should be an object ... |
Python | https://github.com/geekcomputers/Python | 68fee52b31fd4d2cb6732592c1b8b0c869f13547 | dependabot[bot] | 2024-02-06 00:04:58 | build(deps): bump flask from 3.0.0 to 3.0.2 | Bumps [flask](https://github.com/pallets/flask) from 3.0.0 to 3.0.2.
- [Release notes](https://github.com/pallets/flask/releases)
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/flask/compare/3.0.0...3.0.2)
--- | build(deps): bump flask from 3.0.0 to 3.0.2
Bumps [flask](https://github.com/pallets/flask) from 3.0.0 to 3.0.2.
- [Release notes](https://github.com/pallets/flask/releases)
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/flask/compare/3.0.0...3.0.2)
---
up... | diff --git a/requirements_with_versions.txt b/requirements_with_versions.txt
index 4f668cdd30a..d9922a213fb 100644
--- a/requirements_with_versions.txt
+++ b/requirements_with_versions.txt
@@ -20,7 +20,7 @@ fileinfo==0.3.3
backend==0.2.4.1
win10toast==0.9
Counter==1.0.0
-Flask==3.0.0
+Flask==3.0.2
selenium==4.16.0
... |
greptimedb | https://github.com/GreptimeTeam/greptimedb | 20dcaa68972fecdb82a7241d04320145e0e88cee | discord9 | 2022-09-14 08:18:27 | feat: `interval`& None value for `prev`&`next (#252) | * test: for builtin functions
* test: expect fail for `datetime()`
* feat: add `interval()` fn(WIP)
* feat: `interval()` fn in builtin(UNTEST)
* refactor: move `py_vec_obj_to_array` to util.rs
* style: fmt
* test: simple `interval()` cases
* test: `interval()` with `last()`&`first()`
* doc: `ts` param of `inter... | feat: `interval`& None value for `prev`&`next (#252)
* test: for builtin functions
* test: expect fail for `datetime()`
* feat: add `interval()` fn(WIP)
* feat: `interval()` fn in builtin(UNTEST)
* refactor: move `py_vec_obj_to_array` to util.rs
* style: fmt
* test: simple `interval()` cases
* test: `interval()... | diff --git a/Cargo.lock b/Cargo.lock
index ca588da53b14..b5ac903dc32c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -838,12 +838,6 @@ dependencies = [
"once_cell",
"paste",
"ron",
- "rustpython-ast",
- "rustpython-bytecode",
- "rustpython-compiler",
- "rustpython-compiler-core",
- "rustpython-parser",
- "rustpython... |
angular.js | https://github.com/angular/angular.js | 762580ff347e733397c70cb192ca023e7d06f581 | BobChao87 | 2017-05-19 17:10:04 | fix(orderBy): guarantee stable sort | If a user-provided comparator fails to differentiate between two items, fall
back to the built-in comparator (using the tie-breaker predicate). | fix(orderBy): guarantee stable sort
If a user-provided comparator fails to differentiate between two items, fall
back to the built-in comparator (using the tie-breaker predicate).
Fixes #14881
Closes #15914 | diff --git a/src/ng/filter/orderBy.js b/src/ng/filter/orderBy.js
index 6b353b62d623..93e6424d804e 100644
--- a/src/ng/filter/orderBy.js
+++ b/src/ng/filter/orderBy.js
@@ -53,6 +53,9 @@
* dummy predicate that returns the item's index as `value`.
* (If you are using a custom comparator, make sure it can handle this p... |
metamask-extension | https://github.com/MetaMask/metamask-extension | 797c5f3ec18e39e456d827fcc9fae142811d9b31 | Brian Bergeron | 2024-05-29 21:23:12 | fix: Aurora RPC deprecation message (#24534) | ## **Description**
Fixes the Aurora deprecation message. It was suggesting MM no longer
supports Aurora, which is not true. It's just no longer a built-in
network due to Infura no longer supporting it.
Instead, we show a warning to users who previous added it when it was a
built-in network. And give them a 1 click mi... | fix: Aurora RPC deprecation message (#24534)
## **Description**
Fixes the Aurora deprecation message. It was suggesting MM no longer
supports Aurora, which is not true. It's just no longer a built-in
network due to Infura no longer supporting it.
Instead, we show a warning to users who previous added it when it was ... | diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json
index b597ac8ec628..f01f27c6ef21 100644
--- a/app/_locales/en/messages.json
+++ b/app/_locales/en/messages.json
@@ -530,9 +530,8 @@
"attributions": {
"message": "Attributions"
},
- "auroraDeprecationWarning": {
- "message": "MetaM... |
freeCodeCamp | https://github.com/freeCodeCamp/freeCodeCamp | 6d8baddec017be5f8ba4c2220947ce666a9fb1a7 | Mrugesh Mohapatra | 2021-05-18 22:39:26 | chore: update api deps, apply npm audit fix (#42179) | * chore(api): bump minor and patch
* chore: apply npm audit fix across deps | chore: update api deps, apply npm audit fix (#42179)
* chore(api): bump minor and patch
* chore: apply npm audit fix across deps | diff --git a/api-server/package-lock.json b/api-server/package-lock.json
index 825615b2b9508e..7a34733d8d2507 100644
--- a/api-server/package-lock.json
+++ b/api-server/package-lock.json
@@ -5,9 +5,9 @@
"requires": true,
"dependencies": {
"@babel/cli": {
- "version": "7.13.14",
- "resolved": "https... |
angular | https://github.com/angulardart/angular | 364ec4d405d1674104e010c6ff1a50f1909dc119 | matanl | 2017-12-02 03:27:06 | fix(Compiler): Normalize URLs that for any reason, are windows-specific. | Specifically because the asset/build system expects canonicalized asset URLs
that always have forward slashes. We had some legacy normalization anyway, so
this doesn't feel too bad until we have better automated testing for windows.
Fixes https://github.com/dart-lang/angular/issues/723.
See also https://github.com/da... | fix(Compiler): Normalize URLs that for any reason, are windows-specific.
Specifically because the asset/build system expects canonicalized asset URLs
that always have forward slashes. We had some legacy normalization anyway, so
this doesn't feel too bad until we have better automated testing for windows.
Fixes https:... | diff --git a/angular_compiler/lib/src/asset.dart b/angular_compiler/lib/src/asset.dart
index 518ad57bad..f73b4a33ff 100644
--- a/angular_compiler/lib/src/asset.dart
+++ b/angular_compiler/lib/src/asset.dart
@@ -25,8 +25,13 @@ abstract class NgAssetReader {
return asset.uri.toString();
}
- String _normalize(S... |
spaceship-prompt | https://github.com/spaceship-prompt/spaceship-prompt | 5dcce40e99e0595453133862b95720882ab07fe7 | Denys Dovhan | 2021-09-20 19:55:15 | feat(cli): CLI for inserting and removing sections | This PR introduces two commands for adding and removing sections in runtime without disturbing other
sections. | feat(cli): CLI for inserting and removing sections
This PR introduces two commands for adding and removing sections in runtime without disturbing other
sections.
Closes #318 | diff --git a/lib/cli.zsh b/lib/cli.zsh
index 25f806f79..931f9ecdd 100755
--- a/lib/cli.zsh
+++ b/lib/cli.zsh
@@ -148,18 +148,97 @@ _spaceship::cli::bug-report() {
echo "$short_url"
}
+_spaceship::cli::add() {
+ # Parse CLI options
+ zparseopts -E -D - \
+ A:=after_ -after:=after_ \
+ B:=before_ -before:=b... |
react-native-svg | https://github.com/software-mansion/react-native-svg | 54790cdea112fc7dd80584b5ae326f2bb7af64e2 | Jakub Grzywacz | 2024-09-17 18:08:09 | fix: exclude e2e from types in release (#2454) | # Summary
Hot fix for #2453 missing types. | fix: exclude e2e from types in release (#2454)
# Summary
Hot fix for #2453 missing types.
Closes #2453. | diff --git a/tsconfig.json b/tsconfig.json
index 062849b5f..e47cd8303 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -21,5 +21,5 @@
"resolveJsonModule": true,
"isolatedModules": true
},
- "include": ["src", "e2e", "__tests__/e2e/GeneralSvgRenderingTest.spec.tsx"]
+ "include": ["src"]
} |
talos | https://github.com/siderolabs/talos | 12c650457e66c1bef3b35d5a19863fa4e22bbefe | Andrew Rynhard | 2019-10-22 07:04:47 | docs: remove header animation | This makes the header a fixed height without animation. | docs: remove header animation
This makes the header a fixed height without animation.
Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com> | diff --git a/docs/website/assets/css/navigation.css b/docs/website/assets/css/navigation.css
index 501b29ee29b..b5d79011ed1 100644
--- a/docs/website/assets/css/navigation.css
+++ b/docs/website/assets/css/navigation.css
@@ -48,7 +48,6 @@ nav[aria-label='main'] {
}
header {
@apply sticky top-0;
- transiti... |
Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | 6e375f5cbcaebe46efdbe3caf70b38afeb136d67 | semantic-release-bot | 2025-01-06 23:22:26 | ci(release): 1.35.0-beta.4 [skip ci] | ## [1.35.0-beta.4](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.35.0-beta.3...v1.35.0-beta.4) (2025-01-06)
### Features
* ⏰added graph timeout and fixed model_tokens param ([#810](https://github.com/ScrapeGraphAI/Scrapegraph-ai/issues/810) [#856](https://github.com/ScrapeGraphAI/Scrapegraph-ai/issues/85... | ci(release): 1.35.0-beta.4 [skip ci]
## [1.35.0-beta.4](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.35.0-beta.3...v1.35.0-beta.4) (2025-01-06)
### Features
* ⏰added graph timeout and fixed model_tokens param ([#810](https://github.com/ScrapeGraphAI/Scrapegraph-ai/issues/810) [#856](https://github.com/... | diff --git a/CHANGELOG.md b/CHANGELOG.md
index fe77589d..25e51ee9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [1.35.0-beta.4](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.35.0-beta.3...v1.35.0-beta.4) (2025-01-06)
+
+
+### Features
+
+* ⏰added graph timeout and fixed model_tokens par... |
ant-design | https://github.com/ant-design/ant-design | 76f6ddc7e641de104fa3ff1e07574d2481e0bc28 | 二货爱吃白萝卜 | 2023-12-21 12:09:43 | fix: ColorPicker not support `prefixCls` (#46561) | * fix: ColorPicker should support prefixCls
* test: add test case | fix: ColorPicker not support `prefixCls` (#46561)
* fix: ColorPicker should support prefixCls
* test: add test case | diff --git a/components/color-picker/ColorPicker.tsx b/components/color-picker/ColorPicker.tsx
index 708608f4d323..dbdaf8921b9b 100644
--- a/components/color-picker/ColorPicker.tsx
+++ b/components/color-picker/ColorPicker.tsx
@@ -12,8 +12,8 @@ import { getStatusClassNames } from '../_util/statusUtils';
import { devUs... |
camel | https://github.com/apache/camel | b9dd999e1cd2bf967cd862f43109146197edb37b | dependabot[bot] | 2024-11-15 13:59:50 | chore(deps): Bump huaweicloud-sdk-version from 3.1.121 to 3.1.122 (#16285) | Bumps `huaweicloud-sdk-version` from 3.1.121 to 3.1.122.
Updates `com.huaweicloud.sdk:huaweicloud-sdk-core` from 3.1.121 to 3.1.122
- [Release notes](https://github.com/huaweicloud/huaweicloud-sdk-java-v3/releases)
- [Commits](https://github.com/huaweicloud/huaweicloud-sdk-java-v3/compare/v3.1.121...v3.1.122)
Updates... | chore(deps): Bump huaweicloud-sdk-version from 3.1.121 to 3.1.122 (#16285)
Bumps `huaweicloud-sdk-version` from 3.1.121 to 3.1.122.
Updates `com.huaweicloud.sdk:huaweicloud-sdk-core` from 3.1.121 to 3.1.122
- [Release notes](https://github.com/huaweicloud/huaweicloud-sdk-java-v3/releases)
- [Commits](https://github.c... | diff --git a/parent/pom.xml b/parent/pom.xml
index fdc1f9efdc3ca..0bb380b0216d5 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -224,7 +224,7 @@
<httpclient4-version>4.5.14</httpclient4-version>
<httpasyncclient-version>4.1.5</httpasyncclient-version>
<huaweicloud-obs-version>3.24.9</huaw... |
metersphere | https://github.com/metersphere/metersphere | 96190735b2c26598bba7e45d6796ed0e5a2d88b9 | song-cc-rock | 2024-08-15 15:41:05 | fix(消息通知): 计划执行失败通知的问题 | --bug=1045197 --user=宋昌昌 【消息通知】测试计划执行失败的消息通知i中分享报告链接打开是假数据 https://www.tapd.cn/55049933/s/1563420 | fix(消息通知): 计划执行失败通知的问题
--bug=1045197 --user=宋昌昌 【消息通知】测试计划执行失败的消息通知i中分享报告链接打开是假数据 https://www.tapd.cn/55049933/s/1563420 | diff --git a/backend/framework/sdk/src/main/resources/i18n/plan.properties b/backend/framework/sdk/src/main/resources/i18n/plan.properties
index 57a9c064da77..7d89aef4907b 100644
--- a/backend/framework/sdk/src/main/resources/i18n/plan.properties
+++ b/backend/framework/sdk/src/main/resources/i18n/plan.properties
@@ -1... |
appsmith | https://github.com/appsmithorg/appsmith | 7824a702ca7691fb1aefea4eca51e319ca540a32 | Aishwarya-U-R | 2024-02-02 18:01:05 | test: Cypress | Skip bug test from MultiSelect5_spec.ts (#30871) | ## Description
- This PR does below:
- Flaky fixes /ServerSide/GenerateCRUD/MongoURI_Spec.ts (no fix needed,
multiple runs passing, removed from skipped list)
-
cypress/e2e/Regression/ClientSide/Widgets/Multiselect/MultiSelect5_spec.ts
(skipped bug test & unskipping spec from CI runs)
#### Type of change
- Script fix ... | test: Cypress | Skip bug test from MultiSelect5_spec.ts (#30871)
## Description
- This PR does below:
- Flaky fixes /ServerSide/GenerateCRUD/MongoURI_Spec.ts (no fix needed,
multiple runs passing, removed from skipped list)
-
cypress/e2e/Regression/ClientSide/Widgets/Multiselect/MultiSelect5_spec.ts
(skipped bug test ... | diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/Multiselect/MultiSelect5_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Widgets/Multiselect/MultiSelect5_spec.ts
index 3bb4642ae510..d5d1f62a1aac 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/Multiselect/MultiSelect5_spec.ts
+... |
cheerio | https://github.com/cheeriojs/cheerio | 56fe586f82882ab7a5cd23d997518ee188198fc6 | dependabot[bot] | 2023-12-19 08:55:57 | build(deps-dev): bump @typescript-eslint/parser from 6.14.0 to 6.15.0 (#3553) | Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 6.14.0 to 6.15.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHA... | build(deps-dev): bump @typescript-eslint/parser from 6.14.0 to 6.15.0 (#3553)
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 6.14.0 to 6.15.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https... | diff --git a/package-lock.json b/package-lock.json
index 4e404c9692..ee6332b515 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -30,7 +30,7 @@
"@types/node": "^20.10.5",
"@types/whatwg-mimetype": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.15.0",
- "@typescript-eslint/p... |
html5-boilerplate | https://github.com/h5bp/html5-boilerplate | 3bb9b72319786ed93409b6ae59579246ff1e81b5 | Vlad Tansky | 2020-06-12 21:29:05 | CI: use GitHub Actions for Pull Requests / Push tests (#2271) | * ci: run tests with github actions
* ci: name
* ci: add nodejs 10
* ci: remove travis
* ci: nodejs 10 typo
* docs: replace travis build status badge with github actions
* docs: ci badge
* docs: use h5bp for ci badge
* ci: name
* ci: newline & remove comment | CI: use GitHub Actions for Pull Requests / Push tests (#2271)
* ci: run tests with github actions
* ci: name
* ci: add nodejs 10
* ci: remove travis
* ci: nodejs 10 typo
* docs: replace travis build status badge with github actions
* docs: ci badge
* docs: use h5bp for ci badge
* ci: name
* ci: newline & remo... | diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
new file mode 100644
index 0000000000..cabe34d55b
--- /dev/null
+++ b/.github/workflows/test.yaml
@@ -0,0 +1,32 @@
+name: Build status
+
+on:
+ push:
+ branches: [master]
+ pull_request:
+ branches: [master]
+
+jobs:
+ build:
+ runs-on: ... |
servo | https://github.com/servo/servo | 91586eea0e1748531eb010d2f1061eb834f384e5 | Cameron McCormack | 2019-04-12 15:49:40 | style: Allow references to static C++ URLExtraData objects from Rust UrlExtraData. | Each user agent style sheet has a unique URLExtraData object containing
its URL, but since they are refcounted objects, we can't share them
easily across processes. Rather than adding support for copying them
into a shared memory buffer like we will do with the Rust objects, here
we just set up a static array of URLEx... | style: Allow references to static C++ URLExtraData objects from Rust UrlExtraData.
Each user agent style sheet has a unique URLExtraData object containing
its URL, but since they are refcounted objects, we can't share them
easily across processes. Rather than adding support for copying them
into a shared memory buffe... | diff --git a/components/style/stylesheets/mod.rs b/components/style/stylesheets/mod.rs
index 58922187db242..8e4ec499a05da 100644
--- a/components/style/stylesheets/mod.rs
+++ b/components/style/stylesheets/mod.rs
@@ -23,6 +23,10 @@ mod stylesheet;
pub mod supports_rule;
pub mod viewport_rule;
+#[cfg(feature = "geck... |
httpx | https://github.com/projectdiscovery/httpx | 1372d322e13de2e055a9b806362a4b034bd6a96e | dependabot[bot] | 2023-03-06 16:31:31 | chore(deps): bump golang.org/x/net from 0.7.0 to 0.8.0 | Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.8.0.
- [Release notes](https://github.com/golang/net/releases)
- [Commits](https://github.com/golang/net/compare/v0.7.0...v0.8.0)
--- | chore(deps): bump golang.org/x/net from 0.7.0 to 0.8.0
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.8.0.
- [Release notes](https://github.com/golang/net/releases)
- [Commits](https://github.com/golang/net/compare/v0.7.0...v0.8.0)
---
updated-dependencies:
- dependency-name: golang.org/x/net... | diff --git a/go.mod b/go.mod
index 1aac4aeda..c53a6fec7 100644
--- a/go.mod
+++ b/go.mod
@@ -30,9 +30,9 @@ require (
github.com/rs/xid v1.4.0
go.etcd.io/bbolt v1.3.7 // indirect
go.uber.org/atomic v1.10.0 // indirect
- golang.org/x/net v0.7.0
- golang.org/x/sys v0.5.0 // indirect
- golang.org/x/text v0.7.0
+ gola... |
flutter_wechat_assets_picker | https://github.com/fluttercandies/flutter_wechat_assets_picker | 9b7227ce6b8d567fca8207221844f64ff84ee9f8 | allcontributors[bot] | 2021-05-01 13:25:15 | docs: add yanivshaked as a contributor (#112) | * docs: update README.md [skip ci]
* docs: update .all-contributorsrc [skip ci] | docs: add yanivshaked as a contributor (#112)
* docs: update README.md [skip ci]
* docs: update .all-contributorsrc [skip ci]
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> | diff --git a/.all-contributorsrc b/.all-contributorsrc
index 8269975a..b6c1425c 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -70,7 +70,8 @@
"profile": "https://github.com/yanivshaked",
"contributions": [
"translation",
- "code"
+ "code",
+ "bug"
]
... |
aws-cdk | https://github.com/aws/aws-cdk | 8a949dc24b13f8b7da17c102501050bac7323bf7 | Alex Johnson | 2021-04-17 00:39:35 | feat(appmesh): add Connection Pools for VirtualNode and VirtualGateway (#13917) | Adds connection pools to VirtualNodes and VirtualGateways. VirtualNodes support listeners for HTTP, HTTP2, gRPC and TPC. VirtualGateways support only HTTP, HTTP2 and gRPC (no TCP). There are connection pool configurations for each of these 7 node/protocol combinations.
* HTTP connection pools need these properties: ma... | feat(appmesh): add Connection Pools for VirtualNode and VirtualGateway (#13917)
Adds connection pools to VirtualNodes and VirtualGateways. VirtualNodes support listeners for HTTP, HTTP2, gRPC and TPC. VirtualGateways support only HTTP, HTTP2 and gRPC (no TCP). There are connection pool configurations for each of these... | diff --git a/packages/@aws-cdk/aws-appmesh/README.md b/packages/@aws-cdk/aws-appmesh/README.md
index fe3973e71149e..0adcc52901ba2 100644
--- a/packages/@aws-cdk/aws-appmesh/README.md
+++ b/packages/@aws-cdk/aws-appmesh/README.md
@@ -306,6 +306,38 @@ const node = mesh.addVirtualNode('virtual-node', {
});
```
+## Add... |
langflow | https://github.com/langflow-ai/langflow | cd2517f7e24cf9b19b768dccb680535bd5a42357 | anovazzi1 | 2024-11-19 03:39:24 | refactor: improve tests for group and keyBoardComponentSearch tests (#4621) | * refactor: Remove unnecessary wait in group.spec.ts
* refactor: Improve keyboard component search tests
Improve the keyboard component search tests by using waitForSelector instead of waitForTimeout for better reliability and stability. | refactor: improve tests for group and keyBoardComponentSearch tests (#4621)
* refactor: Remove unnecessary wait in group.spec.ts
* refactor: Improve keyboard component search tests
Improve the keyboard component search tests by using waitForSelector instead of waitForTimeout for better reliability and stability. | diff --git a/src/frontend/tests/core/features/group.spec.ts b/src/frontend/tests/core/features/group.spec.ts
index 04217fee415a..67f32ec292ab 100644
--- a/src/frontend/tests/core/features/group.spec.ts
+++ b/src/frontend/tests/core/features/group.spec.ts
@@ -25,7 +25,6 @@ test.describe("group node test", () => {
... |
next.js | https://github.com/vercel/next.js | 8952a10efdcbe0ecdfb58b26f50a1ab35924f109 | Donny/강동윤 | 2025-01-24 02:49:52 | refactor(turbopack): Remove `ReadRawVcFuture.turbo_task` (#75217) | ### Why?
`core::ptr::drop_in_place` of `ReadRawVcFuture.turbo_task` is consuming too much time. | refactor(turbopack): Remove `ReadRawVcFuture.turbo_task` (#75217)
### Why?
`core::ptr::drop_in_place` of `ReadRawVcFuture.turbo_task` is consuming too much time. | diff --git a/turbopack/crates/turbo-tasks/src/manager.rs b/turbopack/crates/turbo-tasks/src/manager.rs
index 0a6a76a7b0c49..9e035fdfbd66d 100644
--- a/turbopack/crates/turbo-tasks/src/manager.rs
+++ b/turbopack/crates/turbo-tasks/src/manager.rs
@@ -594,8 +594,11 @@ impl<B: Backend + 'static> TurboTasks<B> {
//... |
leetcode | https://github.com/doocs/leetcode | b905cca056317a052cdb636baa777edd883da6b4 | YangFong | 2022-03-07 06:29:12 | fix: display lc problem: No.0020 solutions | No.0020.Valid Parentheses | fix: display lc problem: No.0020 solutions
No.0020.Valid Parentheses | diff --git a/solution/0000-0099/0020.Valid Parentheses/README.md b/solution/0000-0099/0020.Valid Parentheses/README.md
index fdf35eb8fc296..6193b964e258b 100644
--- a/solution/0000-0099/0020.Valid Parentheses/README.md
+++ b/solution/0000-0099/0020.Valid Parentheses/README.md
@@ -133,6 +133,115 @@ private:
};
```
... |
solidity | https://github.com/ethereum/solidity | 6b64dc01101535668223cad2a74c1d5dac3dbfc5 | Noel Maersk | 2018-05-23 19:26:51 | docs: remove utils/SolidityLexer.py | Note that some features present in this local module have not been
included in the upstream package yet!.. | docs: remove utils/SolidityLexer.py
Note that some features present in this local module have not been
included in the upstream package yet!.. | diff --git a/docs/utils/SolidityLexer.py b/docs/utils/SolidityLexer.py
deleted file mode 100644
index 50f51cf4f109..000000000000
--- a/docs/utils/SolidityLexer.py
+++ /dev/null
@@ -1,82 +0,0 @@
-# -*- coding: utf-8 -*-
-
-import re
-import copy
-
-from pygments.lexer import RegexLexer, ExtendedRegexLexer, bygroups, usi... |
hugo | https://github.com/gohugoio/hugo | db7bc49690f8e274ce35b723a43c1b6f36922e76 | dependabot[bot] | 2023-08-14 15:16:23 | build(deps): bump github.com/evanw/esbuild from 0.18.17 to 0.19.2 | Bumps [github.com/evanw/esbuild](https://github.com/evanw/esbuild) from 0.18.17 to 0.19.2.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.18.17...v0.19.2)
--- | build(deps): bump github.com/evanw/esbuild from 0.18.17 to 0.19.2
Bumps [github.com/evanw/esbuild](https://github.com/evanw/esbuild) from 0.18.17 to 0.19.2.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com... | diff --git a/go.mod b/go.mod
index e4c873e508f..0562515c9d4 100644
--- a/go.mod
+++ b/go.mod
@@ -25,7 +25,7 @@ require (
github.com/cli/safeexec v1.0.1
github.com/disintegration/gift v1.2.1
github.com/dustin/go-humanize v1.0.1
- github.com/evanw/esbuild v0.18.17
+ github.com/evanw/esbuild v0.19.2
github.com/fat... |
node | https://github.com/nodejs/node | 5dd344a2a8a70d8c3b6e570c00b72f03d2801a84 | tyankatsu | 2020-10-31 17:17:12 | test: add test to fs/promises setImmediate | Add test pattern to setImmediate when ref's type is not boolean | test: add test to fs/promises setImmediate
Add test pattern to setImmediate when ref's type is not boolean
PR-URL: https://github.com/nodejs/node/pull/35852
Reviewed-By: Yosuke Furukawa <yosuke.furukawa@gmail.com>
Reviewed-By: Masashi Hirano <shisama07@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>... | diff --git a/test/parallel/test-timers-promisified.js b/test/parallel/test-timers-promisified.js
index 6cd932a2d169ff..bd52d2166cf88a 100644
--- a/test/parallel/test-timers-promisified.js
+++ b/test/parallel/test-timers-promisified.js
@@ -104,6 +104,12 @@ process.on('multipleResolves', common.mustNotCall());
c... |
superset | https://github.com/apache/superset | fc03549299d3ad9ec7b294414c326da5b6f675ba | adam-stasiak-polidea | 2020-10-15 04:42:01 | chore: Added data-test attributes for testing (#11254) | * Added data-test attributes for testing
* fixed incorrect naming change
* review changes | chore: Added data-test attributes for testing (#11254)
* Added data-test attributes for testing
* fixed incorrect naming change
* review changes | diff --git a/superset-frontend/spec/javascripts/views/CRUD/dashboard/DashboardList_spec.jsx b/superset-frontend/spec/javascripts/views/CRUD/dashboard/DashboardList_spec.jsx
index d493f3d4c9c58..bdbd50dd99335 100644
--- a/superset-frontend/spec/javascripts/views/CRUD/dashboard/DashboardList_spec.jsx
+++ b/superset-front... |
flame | https://github.com/flame-engine/flame | a3b7de0acd01249887c670ec6c5a6a9235ad537b | Erick | 2022-03-25 06:48:45 | feat: adding Component.lastChild and Component.firstChild (#1485) | * feat: adding Component.child
* fix: lint
* Update packages/flame/lib/src/components/component.dart
* fix: lint
* feat: renaming method
* Update packages/flame/lib/src/components/component.dart | feat: adding Component.lastChild and Component.firstChild (#1485)
* feat: adding Component.child
* fix: lint
* Update packages/flame/lib/src/components/component.dart
* fix: lint
* feat: renaming method
* Update packages/flame/lib/src/components/component.dart
Co-authored-by: Alejandro Santiago <dev@alestiago.co... | diff --git a/packages/flame/lib/src/components/component.dart b/packages/flame/lib/src/components/component.dart
index 6209a11acb5..8c607664801 100644
--- a/packages/flame/lib/src/components/component.dart
+++ b/packages/flame/lib/src/components/component.dart
@@ -44,6 +44,21 @@ class Component {
Component? get pare... |
fluentui | https://github.com/microsoft/fluentui | 3176741887b780b2b3557dee489f0c82f67bb7b5 | ling1726 | 2023-06-05 18:50:53 | chore: Rename Toast to ToastContainer (#28139) | * chore: Rename Toast to ToastContainer
Renames the internal Toast to ToastContainer
* update snapshot | chore: Rename Toast to ToastContainer (#28139)
* chore: Rename Toast to ToastContainer
Renames the internal Toast to ToastContainer
* update snapshot | diff --git a/packages/react-components/react-toast/src/Toast.ts b/packages/react-components/react-toast/src/Toast.ts
deleted file mode 100644
index a84c38a13fc605..00000000000000
--- a/packages/react-components/react-toast/src/Toast.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from './components/Toast/index';
diff --git a/... |
rclone | https://github.com/rclone/rclone | c08d48a50d10b4585d64adbbd392dbef0f431903 | Atílio Antônio | 2021-11-04 17:20:43 | docs: improve grammar and fix typos (#5361) | This alters some comments in source files, but is interested mainly in documentation files and help messages. | docs: improve grammar and fix typos (#5361)
This alters some comments in source files, but is interested mainly in documentation files and help messages. | diff --git a/.github/ISSUE_TEMPLATE/Bug.md b/.github/ISSUE_TEMPLATE/Bug.md
index 67241ef9ec88f..5aa049c3de87c 100644
--- a/.github/ISSUE_TEMPLATE/Bug.md
+++ b/.github/ISSUE_TEMPLATE/Bug.md
@@ -9,7 +9,7 @@ We understand you are having a problem with rclone; we want to help you with tha
**STOP and READ**
**YOUR POST ... |
reaction | https://github.com/reactioncommerce/reaction | a02ed38987e7aeda192a8322afe1306014706152 | Peter Lyons | 2020-11-18 03:23:49 | fix: Prevent error when cloning product variants | - See https://github.com/reactioncommerce/reaction/issues/6310 | fix: Prevent error when cloning product variants
- See https://github.com/reactioncommerce/reaction/issues/6310
Signed-off-by: Peter Lyons <pete.lyons@mailchimp.com> | diff --git a/packages/file-collections-sa-base/src/StorageAdapter.js b/packages/file-collections-sa-base/src/StorageAdapter.js
index 95377c9a1b7..c20970fdc48 100644
--- a/packages/file-collections-sa-base/src/StorageAdapter.js
+++ b/packages/file-collections-sa-base/src/StorageAdapter.js
@@ -84,6 +84,11 @@ export defau... |
AFFiNE | https://github.com/toeverything/AFFiNE | b8612f30719b52fc9f7d4dcaca0754ab9522164d | JimmFly | 2024-05-16 13:41:31 | refactor(core): replace the loading state written in useState with useDebouncedValue (#6925) | close TOV-856
refactor(core): replace the loading state written in useState with useDebouncedState
fix(core): cloudSvg obscures toggle button | refactor(core): replace the loading state written in useState with useDebouncedValue (#6925)
close TOV-856
refactor(core): replace the loading state written in useState with useDebouncedState
fix(core): cloudSvg obscures toggle button | diff --git a/packages/frontend/core/src/components/affine/create-workspace-modal/index.css.ts b/packages/frontend/core/src/components/affine/create-workspace-modal/index.css.ts
index 2c230552787c1..5b0ede3fe8cc2 100644
--- a/packages/frontend/core/src/components/affine/create-workspace-modal/index.css.ts
+++ b/packages... |
novu | https://github.com/novuhq/novu | cf94a96cdfd066df63a6b0425a2bdc023592b6ee | Joel Anton | 2024-06-27 14:04:58 | feat(web): Add Local Studio sidebar & add header items (#5844) | * feat: Add local sidebar based on workflows
* feat: Connect w/ Discover
* chore: Clean-up | feat(web): Add Local Studio sidebar & add header items (#5844)
* feat: Add local sidebar based on workflows
* feat: Connect w/ Discover
* chore: Clean-up | diff --git a/apps/web/src/components/layout/components/LocalStudioHeader.tsx b/apps/web/src/components/layout/components/LocalStudioHeader.tsx
index d570f669651..17775b1487b 100644
--- a/apps/web/src/components/layout/components/LocalStudioHeader.tsx
+++ b/apps/web/src/components/layout/components/LocalStudioHeader.tsx... |
aws-cdk | https://github.com/aws/aws-cdk | 06adb58f0d1b7c40c02eb9b7fc6d3c705b2b3fe5 | dependabot-preview[bot] | 2019-12-27 21:36:13 | chore(deps): bump nyc from 14.1.1 to 15.0.0 (#5520) | Bumps [nyc](https://github.com/istanbuljs/nyc) from 14.1.1 to 15.0.0.
- [Release notes](https://github.com/istanbuljs/nyc/releases)
- [Changelog](https://github.com/istanbuljs/nyc/blob/master/CHANGELOG.md)
- [Commits](https://github.com/istanbuljs/nyc/compare/v14.1.1...v15.0.0) | chore(deps): bump nyc from 14.1.1 to 15.0.0 (#5520)
Bumps [nyc](https://github.com/istanbuljs/nyc) from 14.1.1 to 15.0.0.
- [Release notes](https://github.com/istanbuljs/nyc/releases)
- [Changelog](https://github.com/istanbuljs/nyc/blob/master/CHANGELOG.md)
- [Commits](https://github.com/istanbuljs/nyc/compare/v14.1.1... | diff --git a/packages/@aws-cdk/alexa-ask/.gitignore b/packages/@aws-cdk/alexa-ask/.gitignore
index 7b20ed5f53385..95ee96981d6b4 100644
--- a/packages/@aws-cdk/alexa-ask/.gitignore
+++ b/packages/@aws-cdk/alexa-ask/.gitignore
@@ -6,7 +6,7 @@
.jsii
.LAST_BUILD
.LAST_PACKAGE
-.nycrc
+nyc.config.js
.nyc_output
coverag... |
influxdb | https://github.com/influxdata/influxdb | c465d0af8fbb8becc75c6a2a7236396d149668b6 | Marco Neumann | 2021-10-28 14:46:41 | refactor: abstract HTTP inteface for different run modes | First iteration of a common interface for the different server run
modes. This splits the existing HTTP server into a part that can be used
by all run modes (e.g. health checks, metrics endpoint, profiling) and a
part that is specific to the the database run mode.
Note that the interface is not final and might require... | refactor: abstract HTTP inteface for different run modes
First iteration of a common interface for the different server run
modes. This splits the existing HTTP server into a part that can be used
by all run modes (e.g. health checks, metrics endpoint, profiling) and a
part that is specific to the the database run mod... | diff --git a/Cargo.lock b/Cargo.lock
index 674068c8da5..a49cdc4568d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1585,6 +1585,7 @@ dependencies = [
"arrow-flight",
"arrow_util",
"assert_cmd",
+ "async-trait",
"backtrace",
"byteorder",
"bytes",
diff --git a/influxdb_iox/Cargo.toml b/influxdb_iox/Cargo.toml
i... |
ragflow | https://github.com/infiniflow/ragflow | 8eefc8b5fedfe96cbff34e9701edea1324b61da3 | liu an | 2025-03-21 16:46:30 | Test: Added test cases for Add Chunk HTTP API (#6408) | ### What problem does this PR solve?
cover [add
chunk](https://ragflow.io/docs/v0.17.2/http_api_reference#add-chunk)
endpoints
### Type of change
- [x] Add test cases | Test: Added test cases for Add Chunk HTTP API (#6408)
### What problem does this PR solve?
cover [add
chunk](https://ragflow.io/docs/v0.17.2/http_api_reference#add-chunk)
endpoints
### Type of change
- [x] Add test cases | diff --git a/sdk/python/test/test_http_api/common.py b/sdk/python/test/test_http_api/common.py
index 298e2f9c169..834a470d266 100644
--- a/sdk/python/test/test_http_api/common.py
+++ b/sdk/python/test/test_http_api/common.py
@@ -26,6 +26,7 @@
DATASETS_API_URL = "/api/v1/datasets"
FILE_API_URL = "/api/v1/datasets/{dat... |
gatsby | https://github.com/gatsbyjs/gatsby | 7f7696998e3587b8ff3280f0b07d7a7d7c4ad64a | Ryosuke | 2019-11-14 10:31:22 | chore(starters): add semantic-ui-docs-gatsby (#19162) | * chore(starters): add semantic-ui-docs-gatsby
Adding my Semantic UI documentation starter.
* Adding Semantic UI category to Starters
* Removing SUI category
* Removing SUI from categories | chore(starters): add semantic-ui-docs-gatsby (#19162)
* chore(starters): add semantic-ui-docs-gatsby
Adding my Semantic UI documentation starter.
* Adding Semantic UI category to Starters
* Removing SUI category
* Removing SUI from categories | diff --git a/docs/starters.yml b/docs/starters.yml
index e13d135fab188..ffacb85f5228a 100644
--- a/docs/starters.yml
+++ b/docs/starters.yml
@@ -4281,6 +4281,26 @@
- Storybook
- Jest and React Testing library for snapshots and unit tests.
- Styled-Components for all your styles.
+- url: https://semantic-... |
superset | https://github.com/apache/superset | 3d8f757ac8c963936dad2d0527055a2347f799b8 | Ville Brofeldt | 2020-09-20 15:52:55 | fix: simply is_adhoc_metric (#10964) | * fix: simply is_adhoc_metric
* address comment | fix: simply is_adhoc_metric (#10964)
* fix: simply is_adhoc_metric
* address comment | diff --git a/superset/utils/core.py b/superset/utils/core.py
index 5ccb74aa99fa1..86d7e9f7af6ca 100644
--- a/superset/utils/core.py
+++ b/superset/utils/core.py
@@ -1040,24 +1040,7 @@ def backend() -> str:
def is_adhoc_metric(metric: Metric) -> bool:
- if not isinstance(metric, dict):
- return False
- ... |
sentry | https://github.com/getsentry/sentry | c5ca5c227837f16acfc0a9062989f9a0af8b5bbb | George Gritsouk | 2024-06-06 23:47:45 | chore(insights): Remove `spans-first-ui` flag registration (#72255) | Not in use. In da bin. | chore(insights): Remove `spans-first-ui` flag registration (#72255)
Not in use. In da bin. | diff --git a/src/sentry/features/temporary.py b/src/sentry/features/temporary.py
index fb66e55e0f879e..3250eb38287589 100644
--- a/src/sentry/features/temporary.py
+++ b/src/sentry/features/temporary.py
@@ -403,8 +403,6 @@ def register_temporary_features(manager: FeatureManager):
manager.add("organizations:slack-e... |
C-Plus-Plus | https://github.com/TheAlgorithms/C-Plus-Plus | fddbf08f5a431a1de9b8766746f67cdcba81d3b7 | futoid | 2023-04-15 00:10:14 | feat: added log code for counting digits (#2234) | * added log code for counting digits
* one space removed
* fix: CI warnings (hopefully)
* fix: revert for now
* decoupled test functions
* Update math/finding_number_of_digits_in_a_number.cpp | feat: added log code for counting digits (#2234)
* added log code for counting digits
* one space removed
* fix: CI warnings (hopefully)
* fix: revert for now
* decoupled test functions
* Update math/finding_number_of_digits_in_a_number.cpp
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update math/finding_... | diff --git a/math/finding_number_of_digits_in_a_number.cpp b/math/finding_number_of_digits_in_a_number.cpp
index ecbd76b913a..32ddd649ec3 100644
--- a/math/finding_number_of_digits_in_a_number.cpp
+++ b/math/finding_number_of_digits_in_a_number.cpp
@@ -9,18 +9,21 @@
* number i.e, we can use it by inputting values whe... |
Anki-Android | https://github.com/ankidroid/Anki-Android | eae42be81f64de7be32f3e76b647826c86827995 | David Allison | 2024-12-05 05:51:16 | refactor(custom-study): remove 'jumpToReviewer' | always false | refactor(custom-study): remove 'jumpToReviewer'
always false | diff --git a/AnkiDroid/src/main/java/com/ichi2/anki/dialogs/customstudy/CustomStudyDialog.kt b/AnkiDroid/src/main/java/com/ichi2/anki/dialogs/customstudy/CustomStudyDialog.kt
index 88fb4571d14d..6a6787bce089 100644
--- a/AnkiDroid/src/main/java/com/ichi2/anki/dialogs/customstudy/CustomStudyDialog.kt
+++ b/AnkiDroid/src... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.