diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -24,7 +24,8 @@ module.exports = {
// turn back on if https://github.com/eslint/eslint/issues/11899 fixes false positives
'require-atomic-updates': 'off',
'react-hooks/rules-of-hooks': 'error',
- 'react-hooks/exhaustive-deps': 'warn',
+ // turn back on after addressing all violations
+ // 'react-hooks/exhaustive-deps... | chore(eslint-plugin): turn off react-hooks deps warning (for now) | null | spinnaker/deck | Apache License 2.0 | JavaScript |
LOG_OUT "Start Downloading The Chnroute Cidr List..."
if [ -z "$CHNR_CUSTOM_URL" ]; then
if pidof clash >/dev/null; then
- curl -sL --connect-timeout 10 --retry 2 https://ispip.clang.cn/all_cn.txt -o /tmp/china_ip_route.txt >/dev/null 2>&1
+ curl -sL --connect-timeout 5 --retry 2 https://ispip.clang.cn/all_cn.txt -o /t... | chore: increase timeout value for curl when downloading | null | vernesong/openclash | MIT License | Shell |
@@ -16,7 +16,7 @@ if [ "$BRANCH" = "master" ]; then
npx standard-version &&
- git push origin $BRANCH #--follow-tags
+ git push origin $BRANCH --follow-tags
else
git push origin $BRANCH
fi;
\ No newline at end of file
| chore: restore tags | null | millsp/ts-toolbelt | Apache License 2.0 | Shell |
@@ -109,7 +109,7 @@ public partial class MainContent
BorderCode.Child = new TabControl
{
- Style = ResourceHelper.GetResource<Style>("TabControlInLine"),
+ Style = ResourceHelper.GetResource<Style>("TabControl.PreviewCode"),
Items =
{
new TabItem
| chore: update MainContent | null | handyorg/handycontrol | MIT License | C# |
@@ -102,6 +102,7 @@ import com.google.cloud.storage.BlobInfo;
import com.google.cloud.storage.BucketInfo;
import com.google.cloud.storage.Storage;
import com.google.cloud.storage.testing.RemoteStorageHelper;
+import com.google.common.base.Optional;
import com.google.common.collect.ImmutableList;
import com.google.commo... | chore: add env var for changing cloud-samples-data bucket | null | googleapis/java-bigquery | Apache License 2.0 | Java |
import PropTypes from 'prop-types';
+import { Fab } from '@mui/material';
import Add from '@mui/icons-material/Add';
-import { Fab } from '@material-ui/core';
const styles = {
floatingButton: {
| chore(mui v5 upgrade): update mui fab component | null | coursemology/coursemology2 | MIT License | JavaScript |
@@ -14,7 +14,7 @@ public final class FullFormAddressItem: FormValueItem<AddressInfo, AddressStyle>
private var initialCountry: String
- private lazy var validationMessage = ADYLocalizedString("adyen.validationAlert.title", localizationParameters)
+ private lazy var validationMessage = localizedString(.validationAlertTi... | chore: fix broken build during merge | null | adyen/adyen-ios | MIT License | Swift |
@@ -13,7 +13,7 @@ if [ ! -z "$TRAVIS" ]; then
# Assert that Protagonist (the C++ dependency) was not installed
if [[ $output == *"protagonist"* || -d ./node_modules/protagonist ]]; then
- echo "ERROR: It looks like Dredd Transactions has tried to install "
+ echo "ERROR: It looks like Dredd Transactions has tried to in... | chore: fix multiline string in bash | null | apiaryio/dredd | MIT License | Shell |
@@ -32,13 +32,13 @@ import (
)
var (
- // ErrUnsupportedSystem appears if try to use service on system which is not supported by this release
+ // errUnsupportedSystem appears if try to use service on system which is not supported by this release
errUnsupportedSystem = errors.New("unsupported system")
- // ErrRootPrivi... | chore(cmd/immuadmin/commands): fix typo in error message and remove useless options | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -289,7 +289,7 @@ class SaintCoinachRedisCommand extends Command
// is this a repeater definition?
// If it's topicselect, don't handle the link or it'll break data
- if (!isset($definition->name) && $definition->type === 'repeat' && $definition->name !== 'TopicSelect') {
+ if (!isset($definition->name) && $definitio... | chore: syntax fix | null | xivapi/xivapi.com | MIT License | PHP |
@@ -39,6 +39,7 @@ export default class Demo extends React.Component {
? require('zarm/locale-provider/locale/en_US')
: require('zarm/locale-provider/locale/zh_CN');
value = value
+ .replace(/import\s+\{\s+(.*)\s+\}\s+from\s+'react';/, 'const { $1 } = React;')
.replace(/import\s+\{\s+(.*)\s+\}\s+from\s+'zarm';/, 'const ... | chore: demo support React Hooks | null | zhongantech/zarm | MIT License | JavaScript |
@@ -23,11 +23,6 @@ import (
"strings"
)
-var (
- cfg_programdata = windows.FOLDERID_ProgramData
- cfg_programfiles = windows.FOLDERID_ProgramFiles
-)
-
// ResolvePath
func ResolvePath(path string, quote bool) (finalPath string, err error) {
var toReplace string
| chore(cmd/helper): remove useless var | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -209,9 +209,8 @@ final class SubscriptionEndpoint {
private void notifyError(Throwable error) {
for (Subscription<?> dispatcher : new HashSet<>(subscriptions.values())) {
dispatcher.dispatchError(new ApiException(
- "Subscription failed.",
- error,
- AmplifyException.TODO_RECOVERY_SUGGESTION
+ "Subscription failed."... | chore: improve recovery suggestions during lost connectivity | null | aws-amplify/amplify-android | Apache License 2.0 | Java |
@@ -248,6 +248,7 @@ def create_topic_and_reply(web_page):
@frappe.whitelist()
def update_webform_to_multistep():
+ if not frappe.db.exists("Web Form", "update-profile-duplicate"):
doc = frappe.get_doc("Web Form", "edit-profile")
_doc = frappe.copy_doc(doc)
_doc.is_multi_step_form = 1
| chore: add exists check for web form ui test | null | frappe/frappe | MIT License | Python |
@@ -22,7 +22,7 @@ use std::sync::Arc;
use chrono::DateTime;
use chrono::Utc;
-use common_datavalues::prelude::*;
+use common_datavalues::DataSchema;
use common_meta_types::MatchSeq;
use common_storage::StorageParams;
use maplit::hashmap;
| chore(meta): use explicit import. avoid using prelude::*; | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -339,9 +339,7 @@ class AnalyticsUtil {
n.type = "text/javascript";
n.async = !0;
n.src =
- "https://a.appsmith.com/analytics.js/v1/" +
- t +
- "/analytics.min.js";
+ "https://a.appsmith.com/analytics.js/v1/" + t + "/analytics.min.js";
const a: any = document.getElementsByTagName("script")[0];
a.parentNode.insertBefo... | chore: Fixing prettier formatting for AnalyticsUtil.tsx | null | appsmithorg/appsmith | Apache License 2.0 | TypeScript |
@@ -8,7 +8,7 @@ nvm install
# clean out and install yarn
rm -rf ~/.yarn
-curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.21.3
+curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.3.2
export PATH="$HOME/.yarn/bin:$PATH"
# Ensure that we have the local dependencies installed
| chore(*): bump Yarn in Jenkins init-node script | null | angular/angular.js | MIT License | Shell |
@@ -36,7 +36,7 @@ export default () => {
number={<FormatNumber number={totals.posNeg} />}
/>
<Total
- label="Positive cases"
+ label="Cases"
number={<FormatNumber number={totals.positive} />}
/>
<Total
| chore: Change label on homepage | null | covid19tracking/website | Apache License 2.0 | JavaScript |
#!/bin/bash
FOLDER=$1
BASE=$(pwd)
+COMMIT_MESSAGE=$(git log -1 --pretty=%B)
for folder in $FOLDER/*; do
[ -d "$folder" ] || continue # only directories
@@ -9,12 +10,15 @@ for folder in $FOLDER/*; do
NAME=$(cat $folder/package.json | jq -r '.name')
CLONE_DIR="__${NAME}__clone__"
+ # clone, delete files in the clone, and... | chore: use top level (e.g. monorepo) commit message instead of starter | null | gatsbyjs/gatsby | MIT License | Shell |
@@ -160,6 +160,8 @@ protected void doStartProcess(
// we need to expose the port of the service we're starting as well
exposedPorts.add(new ExposedPort(this.serviceConfiguration.port(), InternetProtocol.TCP));
+ // only pull the image if we need to, remote pulls will always be slower than local imports
+ if (this.needs... | chore: only pull the docker images if they don't exist yet | null | cloudnetservice/cloudnet-v3 | Apache License 2.0 | Java |
@@ -30,6 +30,7 @@ use bollard::{
PortMap,
},
Docker,
+ API_DEFAULT_VERSION,
};
use futures::{StreamExt, TryStreamExt};
use ipnetwork::Ipv4Network;
@@ -558,7 +559,16 @@ impl Builder {
let path = std::path::PathBuf::from(std::env!("CARGO_MANIFEST_DIR"));
let srcdir = path.parent().unwrap().to_string_lossy().into();
- let... | chore: composer: workaround fussybeaver/bollard#166 | null | openebs/mayastor | Apache License 2.0 | Rust |
@@ -32,6 +32,7 @@ cd ovn
# kube-ovn related patches
curl https://github.com/alauda/ovn/commit/1aa47202c3e09f610ebefe00ab23a0723059bbf3.patch | git apply
curl https://github.com/alauda/ovn/commit/b75eb1f231da55d1b8a29f386dc56234e2eb9d35.patch | git apply
+curl https://github.com/alauda/ovn/commit/7fe4df711930ac827619fe8... | chore: add back lflow reduction optimization | null | kubeovn/kube-ovn | Apache License 2.0 | Shell |
@@ -205,7 +205,6 @@ export enum UserActionAPIMethods {
'forceResetAndActivate' = 'userAction.forceResetAndActivate',
'activate' = 'userAction.activate',
'deactivate' = 'userAction.deactivate',
- 'reloadData' = 'userAction.reloadData',
'unsyncRundown' = 'userAction.unsyncRundown',
'disableNextPiece' = 'userAction.disabl... | chore: remove removed method from enum | null | nrkno/tv-automation-server-core | MIT License | TypeScript |
-use super::*;
-use frame_support::parameter_types;
-use sp_runtime::{
- traits::{IdentifyAccount, Verify},
- MultiSignature,
-};
-
-/// An index to a block.
-pub type BlockNumber = u32;
-
-/// Alias to 512-bit hash when used in the context of a transaction signature on the chain.
-pub type Signature = MultiSignature;
... | chore: remove unneeded primitives module | null | t3rn/t3rn | Apache License 2.0 | Rust |
@@ -132,9 +132,7 @@ describe('3-runtime-html/decorator-watch.spec.ts', function () {
it('observes collection', function () {
let callCount = 0;
let latestDelivered: IDelivery[] = [];
- interface IDelivery {
- id: number; name: string; delivered: boolean;
- }
+
class PostOffice {
public storage: IDelivery[] = [
{ id: 1,... | chore: add more tests for decorating watch on both class and method | null | aurelia/aurelia | MIT License | TypeScript |
set -e
-VERSION="$(git rev-parse --abbrev-ref HEAD | sed -e "s/heads\///")"
+VERSION="$(git rev-parse --abbrev-ref HEAD | sed -e "s/heads\///" | rev | cut -d "/" -f 1 | rev)"
IMAGE="docker.pkg.github.com/caos/orbos/orbos:${VERSION}"
go run -race ./cmd/gen-executables/*.go --version "$VERSION" --commit $(git rev-parse H... | chore: enable slashes in dev release branches | null | caos/orbos | Apache License 2.0 | Shell |
@@ -19,12 +19,11 @@ type Dao struct {
}
// New new a Dao and return
-func New(db *gorm.DB) (d *Dao) {
- d = &Dao{
+func New(db *gorm.DB) *Dao {
+ return &Dao{
db: db,
userCache: cache.NewUserCache(),
}
- return
}
// Ping ping mysql
| chore: simplify New func | null | go-eagle/eagle | MIT License | Go |
@@ -396,6 +396,12 @@ something clever.",
if let Some(delta) = duration_since_production {
// Update the TTBR metric before potentially sleeping.
self.time_to_be_readable.set(delta);
+ trace!(
+ kafka_topic=%self.topic_name,
+ shard_index=%self.shard_index,
+ delta=%delta.as_millis(),
+ "reporting TTBR for shard (ms)"
+... | chore: add trace log to ingester to aid debugging | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -106,9 +106,9 @@ fun Project.configureAndroid() {
if (hasProperty("signingKeyId")) {
println("Getting signing info from protected source.")
- project.setProperty("signing.keyId", findProperty("signingKeyId"))
- project.setProperty("signing.password", findProperty("signingPassword"))
- project.setProperty("signing.in... | chore: Set the signing information in project extras | null | aws-amplify/amplify-android | Apache License 2.0 | Kotlin |
@@ -276,7 +276,7 @@ public class SnomedConceptSearchApiTest extends AbstractSnomedApiTest {
* Single nested module expand of definitionStatus results in status 500
*/
@Test
- public void epxandNestedModuleOnly() {
+ public void expandNestedModuleOnly() {
final String conceptExpand = "definitionStatus(expand(module()))"... | chore(test): fix typos in test method names | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -3,14 +3,17 @@ import argparse
import os
parser = argparse.ArgumentParser(description='Classify text with a model')
-parser.add_argument('--model', help='A classifier model', required=True, type=str)
-parser.add_argument('--text', help='raw value', type=str)
-parser.add_argument('--backend', help='backend', default=... | chore: add more specific explanation to classify-text.py help | null | dpressel/mead-baseline | Apache License 2.0 | Python |
@@ -64,7 +64,7 @@ function generate_modified_modules_list() {
# Filter for java modules and get all the unique elements
# grep returns 1 (error code) and exits the pipeline if there is no match
# If there is no match, it will return true so the rest of the commands can run
- modified_files=$(git diff --name-only "${KOK... | chore: Run on diffs only from PR branch | null | googleapis/google-cloud-java | Apache License 2.0 | Shell |
@@ -16,6 +16,7 @@ export function Center({
children,
bgColor,
style,
+ ...rest
}: {
width: number;
height: number;
@@ -35,6 +36,7 @@ export function Center({
},
style,
]}
+ {...rest}
>
{children}
</View>
@@ -45,6 +47,7 @@ export function Circle({
size = 50,
bgColor,
children,
+ ...rest
}: {
size: number;
bgColor: strin... | chore(layout): add rest | null | draftbit/react-native-jigsaw | MIT License | TypeScript |
@@ -37,7 +37,7 @@ create_or_update_lesson(
position: lesson_position,
section_id: section.id,
is_project: false,
- url: "/rails_programming/basic_rails/introduction.md",
+ url: "/rails_programming/introduction/introduction.md",
repo: 'curriculum'
)
@@ -49,7 +49,7 @@ create_or_update_lesson(
position: lesson_position,
s... | chore: Update Rails Introduction File Locations | null | theodinproject/theodinproject | MIT License | Ruby |
@@ -6,6 +6,7 @@ import (
"time"
"google.golang.org/grpc"
+ "google.golang.org/grpc/balancer/roundrobin"
grpcInsecure "google.golang.org/grpc/credentials/insecure"
)
@@ -62,7 +63,7 @@ func dial(ctx context.Context, insecure bool, opts ...ClientOption) (*grpc.Clien
// default client options
options := clientOptions{
time... | chore: use round_robin name from grpc-go | null | go-eagle/eagle | MIT License | Go |
@@ -13,7 +13,7 @@ public static class DependencyMapLoadHelper
{
static bool VERBOSE = false;
- private const string PERSISTENT_CACHE_KEY = "DepMapCache";
+ private const string PERSISTENT_CACHE_KEY = "DepMapCache_V2";
private const float MIN_TIME_BETWEEN_SAVING_PERSISTENT_CACHE = 300.0f;
private static bool persistentC... | chore: bump depmap cache key | null | decentraland/explorer | Apache License 2.0 | C# |
#!/bin/bash
-#rm -fr dt
-#
-#git clone --depth=1 https://github.com/DefinitelyTyped/DefinitelyTyped.git dt &&
-#
-#npx ts-node scr/tools/dt-update-version.ts &&
-#
-#cd dt &&
-#
-#git commit -am "dependents testing" &&
-#
-#npm i &&
-#
-#npm test
+rm -fr dt
+
+git clone --depth=1 https://github.com/DefinitelyTyped/Defi... | chore: restore dt tests | null | millsp/ts-toolbelt | Apache License 2.0 | Shell |
@@ -12,8 +12,6 @@ class ThrottlerTests: XCTestCase {
func test() {
let sut = Throttler(minimumDelay: 1)
- let startTimestamp = Date()
-
let xctExpectation = expectation(description: "wait for last block execution")
let triesCount = 25
@@ -22,9 +20,6 @@ class ThrottlerTests: XCTestCase {
(0..<triesCount).forEach { index... | chore: fixes ThrottlerTests falkiness | null | adyen/adyen-ios | MIT License | Swift |
@@ -806,7 +806,6 @@ open class ProviderVerifier @JvmOverloads constructor (
return when (val callback = pactLoadFailureMessage) {
is Closure<*> -> callback.call(consumer).toString()
is Function<*, *> -> (callback as Function<Any, Any>).apply(consumer).toString()
- is scala.Function1<*, *> -> (callback as scala.Function... | chore: Missed one place scala.Function was used | null | pact-foundation/pact-jvm | Apache License 2.0 | Kotlin |
class EksAnywhere < Formula
desc "CLI for managing EKS Anywhere Kubernetes clusters"
homepage "https://github.com/aws/eks-anywhere"
- version "0.8.1"
+ version "0.8.2"
if OS.mac?
- url "https://anywhere-assets.eks.amazonaws.com/releases/eks-a/9/artifacts/eks-a/v0.8.1/darwin/amd64/eksctl-anywhere-v0.8.1-darwin-amd64.tar... | chore: update eks-anywhere formula for v0.8.2 | null | aws/homebrew-tap | Apache License 2.0 | Ruby |
@@ -96,35 +96,27 @@ public class TaskUpdateImports extends NodeUpdater {
@Override
protected void writeImportLines(List<String> lines) {
- if (fallBackImports != null) {
- lines.add(
- "var scripts = document.getElementsByTagName('script');");
- lines.add("var thisScript;");
- lines.add(
- "var elements = document.getE... | chore: remove unused var, repace `var` with const/let | null | vaadin/flow | Apache License 2.0 | Java |
@@ -133,7 +133,6 @@ impl Wrapper {
let mut convert_column_new = String::new();
self.driver_type.stmt_convert(index + args.len(), &mut convert_column_new);
- println!("{},{}", convert_column, convert_column_new);
new_sql = new_sql.replace(
convert_column.as_str(),
convert_column_new.as_str(),
| chore: remove useless println! | null | rbatis/rbatis | Apache License 2.0 | Rust |
@@ -243,11 +243,20 @@ public boolean isOnAnyFallbackInstance(
@Nullable String virtualHost,
@NotNull Function<String, Boolean> permissionTester
) {
+ // get the currently applying fallback config
+ var config = Preconditions.checkNotNull(this.currentFallbackConfiguration);
// check if the current server of the player i... | chore(bridge): improve some messages | null | cloudnetservice/cloudnet-v3 | Apache License 2.0 | Java |
@@ -56,8 +56,7 @@ pub struct WorkerOptions {
pub user_agent: String,
pub seed: Option<u64>,
pub module_loader: Rc<dyn ModuleLoader>,
- // Callback that will be invoked when creating new instance
- // of WebWorker
+ // Callback invoked when creating new instance of WebWorker
pub create_web_worker_cb: Arc<ops::worker_hos... | chore(runtime): minor comment improvement | null | denoland/deno | MIT License | Rust |
@@ -82,8 +82,6 @@ class Plugins
// Get plugins list
$pluginsList = $this->getPluginsList();
- // $pluginsList = collection($pluginsList)->only(['twig', 'blueprints'])->toArray();
-
// Get plugins Cache ID
$pluginsCacheID = $this->getPluginsCacheID($pluginsList);
| chore(plugins): typo update | null | flextype/flextype | MIT License | PHP |
@@ -401,12 +401,7 @@ export class AssetManager implements AssetLoadHandler {
this._refCounts[assetId] = 1;
handler._onAssetLoad(audioAsset);
} else {
- let a: OneOfAsset;
- if (typeof assetIdOrConf === "string" || "uri" in assetIdOrConf) {
- a = this._createAssetFor(assetIdOrConf);
- } else {
- a = this._createDynamicG... | chore: integrate methods | null | akashic-games/akashic-engine | MIT License | TypeScript |
@@ -21,6 +21,8 @@ import {
IconArrowUpRight,
IconShuffle,
IconWifi,
+ IconChevronsRight,
+ IconCheckSquare,
} from '@supabase/ui'
import { createClient } from '@supabase/supabase-js'
import DefaultLayout from '~/components/Layouts/Default'
@@ -46,6 +48,7 @@ import TweetCard from '~/components/TweetCard'
import TableVie... | chore: added more content | null | supabase/supabase | Apache License 2.0 | TypeScript |
@@ -25,6 +25,7 @@ import org.camunda.bpm.engine.rest.exception.InvalidRequestException;
import org.camunda.bpm.engine.rest.helper.MockProvider;
import org.junit.After;
import org.junit.Before;
+import org.junit.Ignore;
import org.junit.Test;
import org.mockito.ArgumentCaptor;
@@ -46,6 +47,7 @@ import static org.mockito... | chore(engine-rest-jaxrs2): ignore concurrent test cases | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -73,8 +73,8 @@ public final class FileAssert {
final byte[] expectedDigest;
final byte[] actualDigest;
try {
- expectedDigest = calculateMD5Digest(expectedInputStream);
- actualDigest = calculateMD5Digest(actualInputStream);
+ expectedDigest = calculateDigest(expectedInputStream);
+ actualDigest = calculateDigest(ac... | chore: replace md5 with sha-256 for file data validation | null | aws-amplify/amplify-android | Apache License 2.0 | Java |
@@ -2,7 +2,7 @@ namespace DCL.Configuration
{
public static class ApplicationSettings
{
- public static string version = "0.4.3";
+ public static string version = "0.4.4";
}
public static class Environment
| chore: update unity build version to 0.4.4 | null | decentraland/explorer | Apache License 2.0 | C# |
@@ -13,19 +13,45 @@ const git = require(`./git`);
/* eslint-disable complexity */
+/**
+ * Recursive compareFunction for sorting version strings
+ * @param {number} l
+ * @param {Array<number>} left
+ * @param {number} r
+ * @param {Array<number>} right
+ * @returns {number}
+ */
+function compare([l, ...left], [r, ...... | chore(tooling): use proper collation for next-version detection | null | webex/webex-js-sdk | MIT License | JavaScript |
@@ -916,7 +916,7 @@ fn compile_subcommand<'a, 'b>() -> App<'a, 'b> {
.long("target")
.help("Target OS architecture")
.takes_value(true)
- .possible_values(&["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc", "x86_64-apple-darwin"])
+ .possible_values(&["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc", "x86_64-ap... | chore: add compile aarch64-apple-darwin target | null | denoland/deno | MIT License | Rust |
@@ -23,7 +23,7 @@ func bucketF(cmd *cobra.Command, args []string) {
cmd.Usage()
}
-// Create Command
+// BucketCreateFlags define the Create Command
type BucketCreateFlags struct {
name string
org string
@@ -41,7 +41,7 @@ func init() {
}
bucketCreateCmd.Flags().StringVarP(&bucketCreateFlags.name, "name", "n", "", "name... | chore(cmd/influx): add units to influx command | null | influxdata/influxdb | MIT License | Go |
@@ -9,7 +9,10 @@ import UIKit
/// :nodoc:
/// A component that wraps any `Component` to make it a `PresentableComponent`.
-public final class PresentableComponentWrapper: PresentableComponent, Cancellable {
+public final class PresentableComponentWrapper: PresentableComponent,
+ Cancellable,
+ FinalizableComponent,
+ L... | chore: small change to PresentableComponentWrapper to make it Cancellable, FinalizableComponent, and LoadingComponent | null | adyen/adyen-ios | MIT License | Swift |
mod mock;
-use currency::Amount;
use frame_support::traits::Currency;
-use mock::{assert_eq, replace_testing_utils::*, *};
+use mock::{assert_eq, *};
use primitives::VaultCurrencyPair;
-use refund::types::RefundRequestExt;
use sp_core::{Encode, H256};
#[test]
-fn integration_test_report_vault_theft() {
+fn integration_... | chore: fmt & rename | null | interlay/interbtc | Apache License 2.0 | Rust |
/* eslint-disable import/no-commonjs */
const fs = require('fs');
+const path = require('path');
const package = require('../package.json');
package.peerDependencies['react-instantsearch-dom'] = package.version;
-fs.writeFileSync('../package.json', JSON.stringify(package, null, 2));
+fs.writeFileSync(
+ path.resolve(__... | chore(scripts): right file written in Dom-maps version | null | algolia/instantsearch.js | MIT License | JavaScript |
import AdyenNetworking
import Foundation
-/// :nodoc:
/// Struct that defines the environment to retrieve resources from.
public struct Environment: AnyAPIEnvironment {
/// :nodoc:
public var baseURL: URL
- /// :nodoc:
/// Adyen's test environment.
public static let test = Environment(baseURL: URL(string: "https://chec... | chore: deprecate live environment | null | adyen/adyen-ios | MIT License | Swift |
@@ -47,9 +47,11 @@ export function useDNDBox(options: IOptions): IDNDBox {
const state = useObservableRef<IState>(() => ({
isOver: false,
canDrop: false,
+ context: null,
}), {
isOver: observable.ref,
canDrop: observable.ref,
+ context: observable.ref,
}, false);
const [, setTargetRef] = useDrop<IDataContextProvider, v... | chore: fix useDNDBox | null | dbeaver/cloudbeaver | Apache License 2.0 | TypeScript |
@@ -110,6 +110,10 @@ public class DeploymentHelper {
.addDependencies(
MavenDependencies.createDependency("org.camunda.bpm:camunda-engine-spring", ScopeType.COMPILE, false,
MavenDependencies.createExclusion("org.camunda.bpm:camunda-engine")),
+ MavenDependencies.createDependency("org.springframework:spring-context", Sc... | chore(integration-tests): add Spring dependencies to test applications | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -36,7 +36,6 @@ return [
'Fiber::getCurrent' => ['?self'],
'Fiber::suspend' => ['mixed', 'value='=>'null|mixed'],
'FiberError::__construct' => ['void'],
- 'FiberExit::__construct' => ['void'],
],
'changed' => [
| chore: remove FiberExit class | null | vimeo/psalm | MIT License | PHP |
@@ -22,12 +22,12 @@ const String ENABLE_DEBUG = 'KRAKEN_ENABLE_DEBUG';
const String ENABLE_PERFORMANCE_OVERLAY = 'KRAKEN_ENABLE_PERFORMANCE_OVERLAY';
const String DEFAULT_URL = 'about:blank';
-final ContentType css = ContentType('text', 'css', charset: 'utf-8');
+final ContentType _cssMimeType = ContentType('text', 'cs... | chore: update mime type variable identifier | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -18,12 +18,12 @@ export function pWeb( state = initialState, action ) {
const newVersionedUrls = { ...state.versionedUrls };
const newVersion = payload.version;
- const previousEntry = newVersionedUrls[payload.url];
+ const previousVersion = newVersionedUrls[payload.url];
// no entry, or prev version was higher...
i... | chore(refactor): Minor fix to store sites right latest version in state | null | maidsafe/sn_browser | BSD 3-Clause New or Revised License | TypeScript |
@@ -80,8 +80,11 @@ internal final class FormCardInstallmentsItem: BaseFormPickerItem<InstallmentEle
}
private func updatePickerContent() {
+ // if there is no installment for the current card type
+ // clear picker and hide the component
guard !additionalPickerElements.isEmpty else {
isHidden.wrappedValue = true
+ upda... | chore: fix resetting installment picker on card change | null | adyen/adyen-ios | MIT License | Swift |
@@ -123,6 +123,8 @@ public class SchemaLogQueryTest {
public void testSortedPagedQuery() {
// given (at least) two schema log entries
populateTable();
+ // in case of tests that upgrade the schema there are more than two entries we want to check the last page.
+ int count = (int) managementService.createSchemaLogQuery(... | chore(test): always use last page in paginated query for SchemaLog test | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -62,7 +62,7 @@ class Plugins
/**
* Init Plugins
*
- * @access private
+ * @access public
*/
public function init($flextype, $app) : void
{
@@ -196,7 +196,7 @@ class Plugins
*
* @param array $plugins_list Plugins list
*
- * @access protected
+ * @access private
*/
private function getPluginsDictionary(array $plugins_... | chore(plugins): typo fixes in phpdocs sections | null | flextype/flextype | MIT License | PHP |
*/
// Note: Only set this to release versions, (ie X.Y.Z), not pre-releases (ie X.Y.Z-0-pre-release)
-export const CURRENT_SYSTEM_VERSION = '1.37.0'
+export const CURRENT_SYSTEM_VERSION = '1.38.0'
| chore: fix CURRENT_SYSTEM_VERSION | null | nrkno/tv-automation-server-core | MIT License | TypeScript |
#!/usr/bin/env node
+// Usage notes
+// Nightwatch CLI options http://nightwatchjs.org/guide#command-line-options
+// Pass -u to update baseline images while running e2e tests
+// Pass the name of the package you wish to test such as `@tds/core-link`
+
const { spawnSync } = require('child_process')
const parseArgs = re... | chore(e2e): add usage notes | null | telus/tds-core | MIT License | JavaScript |
@@ -43,10 +43,10 @@ defmodule LogflareWeb.ConnCase do
end
setup tags do
- :ok = Ecto.Adapters.SQL.Sandbox.checkout(Logflare.Repo)
+ pid = Ecto.Adapters.SQL.Sandbox.start_owner!(Logflare.Repo, shared: not tags[:async])
+ on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end)
unless tags[:async] do
- Ecto.Adapters.... | chore: adjust sandboxing to match new phoenix generated code, reducing error verbosity | null | logflare/logflare | Apache License 2.0 | Elixir |
@@ -51,8 +51,8 @@ namespace Cicada {
typedef struct AssHeader_ {
SubtitleType Type = SubtitleTypeUnknown;
- int PlayResX = 0;
- int PlayResY = 0;
+ int PlayResX = 384;
+ int PlayResY = 288;
double Timer = 0;
int WrapStyle = 0;
int ScaledBorderAndShadow = 0;
| chore(ass): change default PlayResX and PlayResY value | null | alibaba/cicadaplayer | MIT License | C |
@@ -29,4 +29,4 @@ cd .site-generator-tmp
yarn install
# Avoid Jekyll step which requires Ruby setup, just run JS portion to catch link/metadata errors
sed -e 's/buildJekyll();//' -e "s/require(.*check-deps');//" scripts/build > scripts/build.nojekyll
-node scripts/build.nojekyll --apidocs ..
+node scripts/build.nojekyl... | chore: Remove unnecessary command-line argument | null | material-components/material-components-web | MIT License | Shell |
@@ -76,7 +76,7 @@ public class SingleConsumerConditionTest {
}
}
- @Test(timeout = 10000)
+ @Test(timeout = 100000)
public void conditionStressTest() throws InterruptedException {
final SingleConsumerCondition condition = new SingleConsumerCondition(Thread.currentThread());
| chore(engine): increase Timeout value for SingleConsumerConditionTest | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -24,6 +24,14 @@ if [[ -z "$TRAVIS" ]]; then
exit 1
fi
+if [[ "${MODE}" = docs ]]; then
+ npm run ci:docs
+elif [[ "${MODE}" = deploy_dev ]]; then
+ deploy_dev
+elif [[ "${MODE}" = publish_dev ]]; then
+ publish_dev
+fi
+
CURRENT_BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $... | chore: build docs and publish dev even on docs-only changes | null | akveo/nebular | MIT License | Shell |
@@ -31,16 +31,16 @@ import (
"github.com/codenotary/immudb/embedded/multierr"
)
-var ErrIllegalArguments = errors.New("illegal arguments")
+var ErrIllegalArguments = errors.New("ahtree: illegal arguments")
var ErrInvalidOptions = fmt.Errorf("%w: invalid options", ErrIllegalArguments)
-var ErrorPathIsNotADirectory = err... | chore(embedded/ahtree): improve error handling | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -31,7 +31,7 @@ internal final class ComponentManager {
internal let apiContext: APIContext
- internal let presentationDelegate: PresentationDelegate
+ internal weak var presentationDelegate: PresentationDelegate?
internal init(paymentMethods: PaymentMethods,
configuration: DropInComponent.Configuration,
| chore: Turn presentationDelegate into weak var | null | adyen/adyen-ios | MIT License | Swift |
@@ -29,7 +29,7 @@ type Dao struct {
func New(cfg *conf.Config, db *gorm.DB) *Dao {
return &Dao{
orm: db,
- db: sql.NewMySQL(cfg.MySQL),
+ //db: sql.NewMySQL(cfg.MySQL),
tracer: otel.Tracer("dao"),
userCache: cache.NewUserCache(),
}
| chore: fix docker start error | null | go-eagle/eagle | MIT License | Go |
@@ -22,15 +22,14 @@ void main() {
Completer<String> completer = Completer();
List allSpecsPayload = jsonDecode(payload);
- KrakenWidget main = KrakenWidget(
- 'main',
- 360, 640,
- bundleContent: 'console.log("starting main integration test")',);
+ List<String> runningWidgets = ['main'];
+ List<KrakenWidget> widgets = ... | chore: refactor multiWidget tests | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -77,8 +77,10 @@ import com.vaadin.flow.spring.security.stateless.VaadinStatelessSecurityConfigur
public class MySecurityConfigurerAdapter extends VaadinWebSecurityConfigurerAdapter {
}
- * @deprecated Use component-based security configuration {@link VaadinWebSecurity}
* </code>
+ *
+ * @deprecated Use component-bas... | chore: javadoc update | null | vaadin/flow | Apache License 2.0 | Java |
@@ -53,9 +53,13 @@ const (
)
const (
- msgFmtPkgReady = "%s is ready"
- msgFmtPkgNotReady = "%s is not ready"
- msgFmtPkgWaiting = "Waiting for the %s to be ready"
+ msgConfigurationReady = "Configuration is ready"
+ msgConfigurationNotReady = "Configuration is not ready"
+ msgConfigurationWaiting = "Waiting for the Co... | chore(crank): fix error and logs msgs and use getConditions | null | crossplane/crossplane | Apache License 2.0 | Go |
@@ -100,6 +100,17 @@ defmodule Ash.Actions.ManagedRelationships do
case match do
nil ->
case opts[:on_lookup] do
+ _ when is_nil(input) ->
+ create_belongs_to_record(
+ changeset,
+ instructions,
+ relationship,
+ input,
+ actor,
+ index,
+ opts
+ )
+
:ignore ->
create_belongs_to_record(
changeset,
| chore: proper case clause syntax | null | ash-project/ash | MIT License | Elixir |
@@ -2267,9 +2267,7 @@ fn handle_user_message<T: UserEvent>(
#[cfg(any(windows, target_os = "linux"))]
window.set_skip_taskbar(skip);
}
- #[allow(unused_variables)]
WindowMessage::SetCursorGrab(grab) => {
- #[cfg(any(windows, target_os = "macos"))]
let _ = window.set_cursor_grab(grab);
}
WindowMessage::SetCursorVisible(... | chore: prepare `set_cursor_grab` in Linux | null | tauri-apps/tauri | Apache License 2.0 | Rust |
const browsers = [
- 'Firefox >= 20', 'Chrome >=20', 'Android >= 4.0', 'Safari >= 7', 'iOS >= 5'
+ 'Firefox >= 55', 'Chrome >=55', 'Android >= 4.4', 'Safari >= 10', 'iOS >= 10',
];
const isCI = !!process.env.CI;
const isProduction = process.env.EMBER_ENV === 'production';
if (isCI || isProduction) {
- browsers.push('ie... | chore: Update brower targets | null | fossasia/open-event-frontend | Apache License 2.0 | JavaScript |
@@ -20,15 +20,15 @@ public struct RedirectDetails: AdditionalDetails, Decodable {
}
}
- internal var payload: String?
+ public private(set) var payload: String?
- internal var redirectResult: String?
+ public private(set) var redirectResult: String?
- internal var paymentResponse: String?
+ public private(set) var paym... | chore: made RedirectDetails property public because some merchants access them | null | adyen/adyen-ios | MIT License | Swift |
@@ -187,16 +187,19 @@ func TestListenAndServe(t *testing.T) {
require.Equal(t, ctx.Err(), err)
},
},
- {
- name: "TLS not enabled",
- setup: func() *ServerConfig {
- return nil
- },
- assertions: func(ctx context.Context, err error) {
- require.Error(t, err)
- require.Equal(t, ctx.Err(), err)
- },
- },
+ // TODO: re-en... | chore(server_test.go): disable flaky test | null | brigadecore/brigade | Apache License 2.0 | Go |
@@ -25,7 +25,6 @@ type Cache struct {
func NewUserCache() *Cache {
encoding := cache.JSONEncoding{}
cachePrefix := cache.PrefixCacheKey
- redis.Init()
return &Cache{
cache: cache.NewRedisCache(redis.RedisClient, cachePrefix, encoding, func() interface{} {
return &model.UserBaseModel{}
| chore: remove redis.Init | null | go-eagle/eagle | MIT License | Go |
@@ -415,7 +415,7 @@ public abstract class NodeUpdater implements FallibleCommand {
defaults.put("vite", "v2.9.13");
defaults.put("@rollup/plugin-replace", "3.1.0");
defaults.put("rollup-plugin-brotli", "3.1.0");
- defaults.put("vite-plugin-checker", "0.3.4");
+ defaults.put("vite-plugin-checker", "0.4.6");
defaults.put... | chore: Use latest vite-plugin-checker | null | vaadin/flow | Apache License 2.0 | Java |
@@ -30,7 +30,7 @@ export interface ITextProps {
critical?: boolean
dashed?: boolean
cropBottomRight?: boolean
- theme?: any;
+ theme?: any
}
export const uppercase = props =>
@@ -146,7 +146,10 @@ type TextProps = ITextProps & RebassTextProps
// TODO - incorporate custom css into rebass props to allow things like below ... | chore: fix minor lint error | null | onearmy/community-platform | MIT License | TypeScript |
@@ -562,15 +562,28 @@ func OpenWith(path string, vLogs []appendable.Appendable, txLog, cLog appendable
go func() {
for {
- store.commitStateRWMutex.Lock()
- committedTxID := store.committedTxID
- store.commitStateRWMutex.Unlock()
+ committedTxID := store.lastCommittedTxID()
// passive wait for one new transaction at le... | chore(embedded/store): avoid sync waiting if there are no new transactions | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -1206,6 +1206,7 @@ int falco_init(int argc, char **argv)
// gRPC server
if(config.m_grpc_enabled)
{
+ falco_logger::log(LOG_INFO, "gRPC server threadiness equals to " + to_string(config.m_grpc_threadiness) + "\n");
// TODO(fntlnz,leodido): when we want to spawn multiple threads we need to have a queue per thread, or... | chore(userspace): log the gRPC threadiness | null | falcosecurity/falco | Apache License 2.0 | C++ |
@@ -12,7 +12,7 @@ import {Wallet} from '../../wallet';
import {getChannelResultFor, getPayloadFor, ONE_DAY} from '../test-helpers';
const {AddressZero} = ethers.constants;
-
+jest.setTimeout(10_000);
const a = Wallet.create(
overwriteConfigWithDatabaseConnection(defaultTestConfig(), {database: 'TEST_A'})
);
| chore: increase timeout for failing test | null | statechannels/statechannels | MIT License | TypeScript |
@@ -39,16 +39,16 @@ func NewMemStore() Storer {
}
func (m *memStore) Depth() int {
- return int(len(m.data)) - 1
+ return len(m.data) - 1
}
func (m *memStore) Set(layer, index int, value [sha256.Size]byte) {
- for int(len(m.data)) <= layer {
+ for len(m.data) <= layer {
m.data = append(m.data, make([][sha256.Size]byte,... | chore(tree): remove unnecessary int conversion | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -53,7 +53,7 @@ repositories {
url = uri("https://m2.dv8tion.net/releases")
name = "m2-dv8tion"
}
- maven("https://duncte123.jfrog.io/artifactory/maven/")
+ maven("https://duncte123.jfrog.io/artifactory/maven")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven("https://jitpack.io")
mavenCentral(... | chore(deps): bumb weebJava | null | toxicmushroom/melijn | MIT License | Kotlin |
@@ -640,7 +640,7 @@ func OpenWith(path string, nLog, hLog, cLog appendable.Appendable, opts *Options
}
if validatedCLogEntry == nil {
- t.root = &leafNode{t: t, mut: true}
+ t.root = &leafNode{t: t, mut: false}
} else {
t.root, err = t.readNodeAt(validatedCLogEntry.finalNLogSize - int64(validatedCLogEntry.rootNodeSize)... | chore(embedded/tbtree): initialize tbtree with a non-mutated leaf | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -58,15 +58,29 @@ When("I corrupt all reports on disk") do
end
end
-Then("each event in the payload matches one of:") do |table|
+Then("each event in the payload for request {int} matches one of:") do |request_index, table|
# Checks string equality of event fields against values
- events = read_key_path(find_request(... | chore: Fix flaky tests | null | bugsnag/bugsnag-cocoa | MIT License | Ruby |
use std::{
fmt::{Display, Formatter},
marker::PhantomPinned,
+ mem::MaybeUninit,
os::raw::c_void,
pin::Pin,
- ptr::NonNull,
};
use crossbeam::atomic::AtomicCell;
@@ -56,7 +56,6 @@ use crate::{
};
use spdk_rs::{
- libspdk::spdk_bdev,
BdevIo,
BdevOps,
ChannelTraverseStatus,
@@ -459,7 +458,7 @@ pub struct Nexus<'n> {
/// ... | chore(nexus): fixing bdev accessor functions in nexus | null | openebs/mayastor | Apache License 2.0 | Rust |
@@ -223,6 +223,9 @@ func GetPodOutboundIP(cs clientset.Interface, podTemplate *v1.Pod, nsName string
}
if pod.Status.Phase != v1.PodSucceeded {
Logf("waiting for the pod to succeed, current status: %s", pod.Status.Phase)
+ if pod.Status.Phase == v1.PodFailed {
+ return false, wait.ErrWaitTimeout
+ }
return false, nil
}... | chore: describe and get pod log when it is failed | null | kubernetes-sigs/cloud-provider-azure | Apache License 2.0 | Go |
@@ -1959,7 +1959,7 @@ var Definitions = eventDefinitions{
ID32Bit: sys32mount,
Name: "mount",
Syscall: true,
- Sets: []string{"default", "syscalls", "fs"},
+ Sets: []string{"syscalls", "fs"},
Params: []trace.ArgMeta{
{Type: "const char*", Name: "source"},
{Type: "const char*", Name: "target"},
| chore: remove mount dup from default evts | null | aquasecurity/tracee | Apache License 2.0 | Go |
@@ -2376,7 +2376,7 @@ public class DatabaseChangelog2 {
return mongockTemplate.save(user);
}
- @ChangeSet(order = "034", id = "update-bad-theme-state", author = "", runAlways = true)
+ @ChangeSet(order = "034", id = "update-bad-theme-state", author = "")
public void updateBadThemeState(MongockTemplate mongockTemplate, ... | chore: update-bad-theme migration should only run once | null | appsmithorg/appsmith | Apache License 2.0 | Java |
namespace CodeIgniter\Database\OCI8;
+use CodeIgniter\Database\Query;
use CodeIgniter\Database\BaseConnection;
use CodeIgniter\Database\ConnectionInterface;
use CodeIgniter\Database\Exceptions\DatabaseException;
@@ -486,8 +487,7 @@ class Connection extends BaseConnection implements ConnectionInterface
* type yes the ty... | chore: composer cs-fix && ./vendor/bin/rector process system/Database/OCI8/Connection.php | null | codeigniter4/codeigniter4 | MIT License | PHP |
// Changes from https://github.com/tabatkins/parse-css
// - Tabs are replaced with two spaces.
+// - Universal Module Definition wrapper is removed.
// - Everything not related to tokenizing - below the first exports block - is removed.
// @ts-nocheck
-(function (root, factory) {
- // Universal Module Definition (UMD) ... | chore: remove UMD wrapper from cssTokenizer | null | microsoft/playwright | Apache License 2.0 | JavaScript |
@@ -10,6 +10,7 @@ if (import.meta.main) {
p.close()
const wasmData = await Deno.readFile('./pkg/aleph_compiler_bg.wasm')
+ const wpjsContent = await Deno.readTextFile('./pkg/aleph_compiler.js')
const data = brotli.compress(wasmData)
const data64 = base64.encode(data)
const hash = (new Sha1).update(data).hex()
@@ -26,5 ... | chore(compiler): update the build script | null | alephjs/aleph.js | MIT License | TypeScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.