diff
stringlengths
12
9.3k
message
stringlengths
8
199
reasoning_trace
null
repo
stringlengths
6
68
license
stringclasses
3 values
language
stringclasses
16 values
{ public static class ApplicationSettings { - public static string version = "0.7.6"; + public static string version = "0.7.7"; } public static class Environment
chore: change version number 0.7.7
null
decentraland/explorer
Apache License 2.0
C#
@@ -11,15 +11,6 @@ class PrefFragment : PreferenceFragmentCompat() { addPreferencesFromResource(R.xml.preferences) } - override fun onCreate(savedInstanceState: Bundle?) { - super.onCreate(savedInstanceState) - - //findPreference(getString(R.string.key_view_licenses)).setOnPreferenceClickListener { - // startActivity(I...
chore: remove unused method override
null
chesire/nekome
Apache License 2.0
Kotlin
@@ -31,6 +31,7 @@ func RegisterLegacyMsgInterfaces(registry cdctypes.InterfaceRegistry) { } r.RegisterCustomTypeURL((*sdk.Msg)(nil), "/axelar.evm.v1beta1.CreateTransferOwnershipRequest", &evmtypes.CreateTransferOwnershipRequest{}) + r.RegisterCustomTypeURL((*sdk.Msg)(nil), "/axelar.axelarnet.v1beta1.RegisterIBCPathRequ...
chore: register legacy msg
null
axelarnetwork/axelar-core
Apache License 2.0
Go
+#!/usr/bin/env node + +/** + * This script is used for autoMerging PR for flow repo. + * To run this script: + * 1.collect PR branch info from the flow PR validation build in TC + * 2.Check the criteria for auto-merging : + * - created by Vaadin-bot + * - has +0.0.1 label + * - PR is in the `open` state + * 3.auto rev...
chore: enable merging the auto CP pull request
null
vaadin/flow
Apache License 2.0
JavaScript
@@ -11,6 +11,11 @@ class Github extends OAuth */ protected $user = []; + /** + * @var array + */ + protected $scopes = ['user:email']; + /** * @return string */ @@ -24,7 +29,13 @@ class Github extends OAuth */ public function getLoginURL():string { - return 'https://github.com/login/oauth/authorize?client_id='.urlencod...
chore: github adapter changes
null
appwrite/appwrite
BSD 3-Clause New or Revised License
PHP
@@ -178,7 +178,7 @@ func ReadTemplateFile(filePath string) string { func RenderSecretsTemplate(templateBody string, secretsMap map[string]string) string { funcs := map[string]interface{}{ - "tojson": func(value string) (string, error) { + "tojson": func(value interface{}) (string, error) { body, err := json.Marshal(val...
chore: Allow tojson to operate on any value
null
dopplerhq/cli
Apache License 2.0
Go
@@ -21,6 +21,7 @@ exports.last = async function last() { .filter((p) => p !== `@ciscospark/eslint-config`) .map(getDistTag))) .sort() + .filter() .map((v) => v.trim()) // TODO stop omitting v2 packages once the last once is unpublished .filter((v) => !v.startsWith(`2.`))
chore(tooling): handle packages without disttags
null
webex/webex-js-sdk
MIT License
JavaScript
@@ -206,6 +206,7 @@ API.prototype.setControllerName = function setControllerName(name, action) { /** * Deprecated. Please use `addCustomAttribute` instead. + * TODO: remove in v4 */ API.prototype.addCustomParameter = util.deprecate( addCustomParameter, [ @@ -321,6 +322,7 @@ API.prototype.addCustomAttribute = function a...
chore(api): add v4 TODOs
null
newrelic/node-newrelic
Apache License 2.0
JavaScript
@@ -602,16 +602,18 @@ func (t *txDataReader) readEntry(entry *TxEntry) error { } func (t *txDataReader) buildAndValidateHtree(htree *htree.HTree) error { - if t.skipIntegrityCheck { - return nil - } - + // it's better to consume alh from appendable even if it's not validated + // as seuqential tx reading can be done va...
chore(embedded/store): consume all tx content even if integrity checks are disabled
null
codenotary/immudb
Apache License 2.0
Go
@@ -153,6 +153,7 @@ if (process.env.SAUCE) { exports.config = Object.assign(exports.config, { user: process.env.SAUCE_USERNAME, key: process.env.SAUCE_ACCESS_KEY, + build: process.env.BUILD_NUMBER, sauceConnect: true, sauceConnectOpts: { noSslBumpDomains: [
chore(tooling): Add build number to webdriver config
null
webex/react-widgets
MIT License
JavaScript
@@ -173,7 +173,7 @@ pub enum RuntimeToken { RestoreToSurchargeCodeSize{caller_code: u32, tombstone_code: u32}, /// Weight of calling `seal_random`. It includes the weight for copying the subject. Random, - /// Weight of calling `seal_reposit_event` with the given number of topics and event size. + /// Weight of calling...
chore: fix typos for contract
null
paritytech/substrate
Apache License 2.0
Rust
@@ -101,7 +101,8 @@ create_or_update_lesson( section_id: section.id, is_project: true, url: '/javascript/organizing-js/library-project.md', - repo: 'curriculum' + repo: 'curriculum', + accepts_submission: true ) lesson_position += 1 @@ -162,7 +163,8 @@ create_or_update_lesson( section_id: section.id, is_project: true, ...
chore: Roll Submissions Feature Out to Organizing JS Section
null
theodinproject/theodinproject
MIT License
Ruby
@@ -24,6 +24,7 @@ use common_ast::ast::TimeTravelPoint; use common_ast::parser::parse_sql; use common_ast::parser::tokenize_sql; use common_ast::Backtrace; +use common_ast::Dialect; use common_ast::DisplayError; use common_catalog::catalog::CATALOG_DEFAULT; use common_datavalues::prelude::*; @@ -135,11 +136,9 @@ impl<'...
chore(planner): view query use PostgreSQL dialect
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -626,7 +626,10 @@ public final class SyncProcessorTest { // Act: Call hydrate, and await its completion - assert it completed without error TestObserver<ModelWithMetadata<? extends Model>> hydrationObserver = TestObserver.create(); syncProcessor.hydrate().subscribe(hydrationObserver); - assertTrue(hydrationObserver....
chore: fix transient syncCanHandle1000Pages test by increasing timeout
null
aws-amplify/amplify-android
Apache License 2.0
Java
class Rack::Attack - Rack::Attack.blocklist('block 223.229.172.105') do |req| - # Requests are blocked if the return value is truthy - '223.229.172.105' == req.ip + Rack::Attack.cache.store = ActiveSupport::Cache::MemoryStore.new + + Rack::Attack.throttle('report_ip', limit: 3, period: 60) do |request| + request.ip if ...
chore: Throttle Creating Reports
null
theodinproject/theodinproject
MIT License
Ruby
@@ -764,6 +764,11 @@ func (t *TBtree) CompactIndex() (uint64, error) { return 0, err } + err = t.hLog.Sync() + if err != nil { + return 0, err + } + indexID := snapshot.Ts() metadata := appendable.NewMetadata(nil)
chore(embedded/tbtree): sync key-history log during compaction
null
codenotary/immudb
Apache License 2.0
Go
@@ -14,9 +14,6 @@ fi if [[ $TRAVIS_BRANCH == 'master' ]]; then npm run semantic-release - echo "[DEBUG] NPM DEBUG" - cat /home/travis/build/jan-molak/serenity-js/npm-debug.log - echo "[DEBUG] CHANGELOG" find packages -maxdepth 2 -name 'CHANGELOG.md' -print0 | xargs -0 -I % sh -c 'echo %; cat %'
chore(ci): removed debug output
null
serenity-js/serenity-js
Apache License 2.0
Shell
@@ -22,9 +22,8 @@ import java.util.Arrays; import java.util.List; import org.camunda.bpm.engine.impl.context.Context; +import org.camunda.bpm.engine.impl.history.event.HistoryEvent; import org.camunda.bpm.engine.impl.persistence.entity.ExecutionEntity; -import org.camunda.bpm.engine.impl.persistence.entity.HistoricCase...
chore(engine): squash log context methods for historic entities
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -38,6 +38,7 @@ import com.vaadin.flow.uitest.servlet.ProductionModeTimingDataViewTestServlet; import com.vaadin.flow.uitest.servlet.ProductionModeViewTestServlet; import com.vaadin.flow.uitest.servlet.RouterTestServlet; import com.vaadin.flow.uitest.servlet.ViewTestServlet; +import com.vaadin.flow.uitest.ui.LogoutWi...
chore: Activate LogoutWithNotificationServlet for OSGi environment
null
vaadin/flow
Apache License 2.0
Java
@@ -226,7 +226,7 @@ func loadExistingProject(sys checkmarx.System, initialProjectName, pullRequestNa func zipWorkspaceFiles(filterPattern string, utils checkmarxExecuteScanUtils) (*os.File, error) { zipFileName := filepath.Join(utils.GetWorkspace(), "workspace.zip") - patterns := strings.Split(strings.ReplaceAll(string...
chore(checkmarxExecuteScan): split and trim filterPattern
null
sap/jenkins-library
Apache License 2.0
Go
import message from '../content/flash.json' const Flash = () => ( - <div className="bg-pink-100 border-t-4 border-teal-500 rounded-b text-teal-900 px-4 py-3 shadow-md" role="alert"> - <div className="flex"> - <div className="py-1"><svg className="fill-current h-6 w-6 text-teal-500 mr-4" xmlns="http://www.w3.org/2000/sv...
chore: update flash styling
null
kolplattformen/skolplattformen
Apache License 2.0
JavaScript
@@ -251,7 +251,7 @@ class SpeechSegmentGenerator(object): batch_size = self.per_label * len(self.data_) for batch in batchify(generator, signature, batch_size=batch_size, - prefetch=1): + prefetch=2): yield batch @@ -383,7 +383,7 @@ class SpeechTurnSubSegmentGenerator(SpeechSegmentGenerator): 'extra': signature_extra} ...
chore: increase prefetch to 2
null
pyannote/pyannote-audio
MIT License
Python
@@ -55,7 +55,6 @@ var deprecatedCommands map[string]deprecationInfo = map[string]deprecationInfo{ }, "create step": { date: "Feb 1 2020", - info: fmt.Sprintf("This will be renamed to %s command.", util.ColorStatus("edit pipeline")), }, "create archetype": { replacement: "jx create quickstart",
chore: edit jx create step deprecation warning
null
jenkins-x/jx
Apache License 2.0
Go
@@ -36,7 +36,7 @@ Can be sourced as such ` var ( - completion_shells = map[string]func(out io.Writer, cmd *cobra.Command) error{ + completionShells = map[string]func(out io.Writer, cmd *cobra.Command) error{ "bash": runCompletionBash, "zsh": runCompletionZsh, } @@ -44,7 +44,7 @@ var ( func newCompletionCmd(out io.Write...
chore(helm): fix go style issues in completion.go
null
helm/helm
Apache License 2.0
Go
@@ -460,7 +460,7 @@ impl Identity { .context("Failed during wallet creation.") } else { Err(anyhow!( - "Could not find wallet for \"{}\" on \"{}\" network.", + "Could not find wallet for \"{}\" on \"{}\" network. Please set a wallet using \"dfx identity set-wallet\" command or use an identity with a wallet.", name, net...
chore: update missing wallet error message
null
dfinity/sdk
Apache License 2.0
Rust
@@ -157,9 +157,7 @@ public class FirestoreConverters { @Deprecated void setDatastoreWriteProjectId(ValueProvider<String> datstoreWriteProjectId); - /** - * @deprecated Please use getFirestoreWriteEntityKind() instead. - */ + /** @deprecated Please use getFirestoreWriteEntityKind() instead. */ @TemplateParameter.Text( o...
chore: Run spotless:apply over the project
null
googlecloudplatform/dataflowtemplates
Apache License 2.0
Java
@@ -4,7 +4,7 @@ defmodule Andi.MixProject do def project do [ app: :andi, - version: "2.3.8", + version: "2.3.9", build_path: "../../_build", config_path: "../../config/config.exs", deps_path: "../../deps",
chore(789): version bump
null
urbanos-public/smartcitiesdata
Apache License 2.0
Elixir
#include "segment_decrypt/SegDecryptorFactory.h" //#define NOLOGD #include "../../utils/frame_work_log.h" -#include <data_source/dataSourcePrototype.h> #include "../IDemuxer.h" +#include <cstdlib> +#include <data_source/dataSourcePrototype.h> #include <utils/af_string.h> // TODO support active and no active mode
chore(hlsstream): fix android build error
null
alibaba/cicadaplayer
MIT License
C++
@@ -21,6 +21,7 @@ import ( "crypto/sha256" "fmt" "log" + "net" "os" "sync" "sync/atomic" @@ -30,7 +31,6 @@ import ( "github.com/codenotary/immudb/pkg/client" "github.com/codenotary/immudb/pkg/logger" "github.com/codenotary/immudb/pkg/server" - "github.com/codenotary/immudb/pkg/server/servertest" "github.com/codenotary/...
chore(test/performance-test-suite): changed server concrete implementation
null
codenotary/immudb
Apache License 2.0
Go
@@ -376,9 +376,7 @@ describe('Launcher specs', function () { // This might throw. See https://github.com/puppeteer/puppeteer/issues/2778 await rmAsync(userDataDir).catch(() => {}); }); - // This mysteriously fails on Windows on AppVeyor. See - // https://github.com/puppeteer/puppeteer/issues/4111 - xit('userDataDir opt...
chore: enable cookie restoration test
null
puppeteer/puppeteer
Apache License 2.0
TypeScript
@@ -20,7 +20,6 @@ import jadx.core.xmlgen.ResTableParser; public class ValuesParser extends ParserConstants { private static final Logger LOG = LoggerFactory.getLogger(ValuesParser.class); - private static String[] androidStrings; private static Map<Integer, String> androidResMap; private final String[] strings; @@ -30...
chore: remove unused static strings array
null
skylot/jadx
Apache License 2.0
Java
@@ -25,10 +25,11 @@ use stencila_schema::{self, Node, Object, Primitive}; pub fn coerce(value: JsonValue, type_: Option<String>) -> Result<Node> { let type_ = if type_.is_some() { type_ - } else if let Some(type_) = value.get("type").and_then(|value| value.as_str()) { - Some(type_.to_string()) } else { - None + value +...
chore(Coerce): Linting
null
stencila/stencila
Apache License 2.0
Rust
@@ -130,6 +130,7 @@ pub fn process_object( } /// Builds a `MatchingRule` from a `Value` struct used by language integrations +#[deprecated(note = "Replace with MatchingRule::create")] pub fn matcher_from_integration_json(m: &Map<String, Value>) -> Option<MatchingRule> { match m.get("pact:matcher:type") { Some(value) =>...
chore(FFI): add deprecation notice to matcher_from_integration_json
null
pact-foundation/pact-reference
MIT License
Rust
@@ -104,17 +104,6 @@ public interface MiniMessage extends ComponentSerializer<Component, Component, S */ @NotNull String stripTokens(final @NotNull String input, final @NotNull PlaceholderResolver placeholders); - /** - * Parses a string into an component. - * - * @param input the input string - * @return the output co...
chore: Remove parse method
null
kyoripowered/adventure
MIT License
Java
@@ -65,11 +65,9 @@ pub static GLOBAL_MEM_STAT: MemStat = MemStat::empty(); #[thread_local] static mut TRACKER: ThreadTracker = ThreadTracker::empty(); -/// Flag indicating an exceeding limit panic is happening and allocating memory by panic handler is allowed. -/// -/// Flag will be reset when `panic!()` returns. +/// ...
chore(base): use thread panicking to replace panicking flag
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -138,6 +138,8 @@ public final class DropInComponent: NSObject, PresentableComponent { case let component as PresentableComponent where component.requiresModalPresentation: navigationController.present(asModal: component) case let component as PresentableComponent where component.viewController is UIAlertController: ...
chore: Presentable components with UIAlertViewController should be presented, not pushed
null
adyen/adyen-ios
MIT License
Swift
@@ -463,6 +463,12 @@ export class MosHandler { deviceOptions = JSON.parse(JSON.stringify(deviceOptions)) // deep clone + // Note: This is useful to do when debugging locally, and running a mos-server on localhost: + // deviceOptions.primary.ports = { + // lower: 11540, + // upper: 11541, + // query: 11542, + // } devic...
chore: leave useful code snippet for future
null
nrkno/tv-automation-server-core
MIT License
TypeScript
@@ -85,7 +85,7 @@ pub unsafe extern "C" fn pactffi_init_with_log_level(level: *const c_char) { /// This function is safe. #[no_mangle] #[cfg(windows)] -pub extern "C" fn enable_ansi_support() { +pub extern "C" fn pactffi_enable_ansi_support() { if let Err(err) = ansi_term::enable_ansi_support() { warn!("Could not enabl...
chore: ANSI support function was missing pactffi prefix
null
pact-foundation/pact-reference
MIT License
Rust
@@ -27,6 +27,8 @@ fi # work from the git root directory pushd $(dirname "$0")/../../ +root_dir=$(pwd) + python3 --version # install docuploader package @@ -66,8 +68,8 @@ for module in "${modules[@]}"; do pushd $module # Extract Cloud RAD module name from `distribution_name` in .repo-metadata.json NAME=$(grep -o '"distr...
chore: Use root versions.txt file
null
googleapis/google-cloud-java
Apache License 2.0
Shell
@@ -26,6 +26,7 @@ import org.camunda.bpm.engine.impl.javax.el.CompositeELResolver; import org.camunda.bpm.engine.impl.javax.el.ELResolver; import org.camunda.bpm.engine.impl.javax.el.ListELResolver; import org.camunda.bpm.engine.impl.javax.el.MapELResolver; +import org.camunda.bpm.engine.test.mock.MockElResolver; impor...
chore(spring): enable mocked expression resolution
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -20,7 +20,7 @@ fi # Command to push the packages CMD_PREPARE="yarn prepare" -CMD_PUBLISH_PACKAGES="lerna publish --exact --force-publish=* --registry='https://npm.lwcjs.org' --skip-git --yes ${CANARY} --repo-version ${PACKAGE_VERSION} --new-version ${PACKAGE_VERSION} --non-interactive" +CMD_PUBLISH_PACKAGES="lerna p...
chore: missing lerna ci comand
null
salesforce/lwc
MIT License
Shell
@@ -73,8 +73,7 @@ public static boolean endsWithIgnoreCase(@NotNull String s, @NotNull String suff * @return {@code true} if the given string starts with the given prefix. */ public static boolean startsWithIgnoreCase(@NotNull String s, @NotNull String prefix) { - int suffixLength = prefix.length(); - return s.regionMa...
chore(common): fix copy-paste spelling mistake in StringUtil
null
cloudnetservice/cloudnet-v3
Apache License 2.0
Java
@@ -377,7 +377,7 @@ func (s *ImmuServer) ChangePermission(ctx context.Context, r *schema.ChangePermi //do not allow to change own permissions, user can lock itsself out if r.Username == user.Username { - return nil, status.Errorf(codes.InvalidArgument, "changing you own permissions is not allowed") + return nil, status...
chore(pkg/server): fix typo in error message
null
codenotary/immudb
Apache License 2.0
Go
@@ -21,13 +21,22 @@ func TestTemplate_ParseScheduledJob(t *testing.T) { }{ "renders a valid template by default": { opts: template.WorkloadOpts{ - ServiceDiscoveryEndpoint: "test.app.local"}, + ServiceDiscoveryEndpoint: "test.app.local", + Network: template.NetworkOpts{ + AssignPublicIP: template.EnablePublicIP, + Subn...
chore: fix template integ test
null
aws/copilot-cli
Apache License 2.0
Go
package aws import ( - "fmt" "github.com/infracost/infracost/internal/schema" "github.com/shopspring/decimal" ) @@ -18,7 +17,7 @@ type GlobalAccelerator struct { func (r *GlobalAccelerator) BuildResource() *schema.Resource { var costComponents []*schema.CostComponent costComponent := &schema.CostComponent{ - Name: fmt....
chore: updated test and labels
null
infracost/infracost
Apache License 2.0
Go
@@ -27,7 +27,7 @@ interface Source<T = null> extends Package { actions: { source: { fetch: Action<T extends null ? Source : T, PathOrObj>; - init?: Action<Source>; + init?: Action<T extends null ? Source : T>; }; }; libraries: {
chore(source): fix generic
null
frontity/frontity
Apache License 2.0
TypeScript
@@ -23,7 +23,7 @@ const base: Configuration = { rules: [ { test: /\.tsx?$/, - exclude: /node_modules/, + exclude: /(node_modules|tests|mocks)/, loader: 'ts-loader', }, {
chore: update exclude for ts
null
sprout2000/elephicon
MIT License
TypeScript
@@ -478,7 +478,7 @@ def test_response_schema_conformance_references_invalid(complex_schema): schema = schemathesis.from_path(complex_schema) @given(case=schema["/teapot"]["POST"].as_strategy()) - @settings(max_examples=3) + @settings(max_examples=3, deadline=None) def test(case): response = make_response(json.dumps({"f...
chore(test): Disable deadline for some flaky tests
null
schemathesis/schemathesis
MIT License
Python
@@ -54,9 +54,7 @@ export const spacing = () => ( {spacerItems.map(spacer => ( <div className={spacers.key} key={spacer.size}> <div className={spacers.wrap}> - <div - className={classnames(spacers.spacer, spacers[spacer.class])} - ></div> + <div className={classnames(spacers.spacer, spacers[spacer.class])} /> </div> <co...
chore: linting layout story
null
covid19tracking/website
Apache License 2.0
JavaScript
@@ -12,7 +12,7 @@ pub struct ConnectResponse { strings: Vec<String>, } -pub async fn connect(query: ConnectQuery) -> Result<impl warp::Reply, std::convert::Infallible> { +pub async fn connect(_query: ConnectQuery) -> Result<impl warp::Reply, std::convert::Infallible> { let response = ConnectResponse { strings: vec![] }...
chore: remove unused arg warnings
null
rs-ipfs/rust-ipfs
Apache License 2.0
Rust
'use strict'; const path = require('path'); -const semver = require('semver'); const expect = require('chai').expect; const constants = require('@instana/core').tracing.constants; @@ -16,8 +15,7 @@ const testUtils = require('../../../../../core/test/test_util'); const ProcessControls = require('../../../test_util/Proce...
chore: removed node version check in collector/test/tracing/frameworks/koa/test.js
null
instana/nodejs-sensor
MIT License
JavaScript
@@ -6,7 +6,8 @@ import { fetchStatisticsChart } from '../../http/fetcher' import { StatisticsChartWrapper } from '../../http/response/StatisticsChart' const ChartPanel = styled.div` - margin: 30px 10% 30px 10%; + margin: 20px 10% 30px 10%; + background: white; ` interface StatisticsData { @@ -19,8 +20,8 @@ const scale ...
chore: update chart color
null
nervosnetwork/ckb-explorer-frontend
MIT License
TypeScript
@@ -91,6 +91,7 @@ EOT nvm use "$NODE_VERSION" which node || echo "node not found, PATH=$PATH" which npm || echo "npm not found, PATH=$PATH" + npm cache clear --force # Fixes: Cannot read properties of null (reading 'pickAlgorithm') error on windows npm config set msvs_version ${MSVS_VERSION} npm config set scripts-prep...
chore(NODE-4500): fix npm issue on windows
null
mongodb/node-mongodb-native
Apache License 2.0
Shell
@@ -57,7 +57,7 @@ public class SendAndReceiveRequestBuilder { "\r\n"; private static final Log LOG = LogFactory.getLog(SendAndReceiveRequestBuilder.class); - private final int maxWaitTimeoutMs = 2000; + private final int maxWaitTimeoutMs = 30_000; private int clientLingerSeconds = -1; private int compareLength = -1; pr...
chore(http): fix flapping test by increasing timeout
null
questdb/questdb
Apache License 2.0
Java
@@ -64,8 +64,12 @@ class ServerMessages: def print_server_ready_message(pod, host, port): + try: home_doc = pod.get_home_doc() root_path = home_doc.url.path if home_doc and home_doc.exists else '/' + except: + root_path = '/' + pod.logger.exception('Failed to determine root URL path.') url_base = 'http://{}:{}/'.format...
chore: make server startup more error-tolerant
null
grow/grow
MIT License
Python
-#!/bin/sh - -name=jquery -version=3.4.1 -target=../../dev - -cd node_modules -# rm -rf $name -# git clone https://github.com/jquery/jquery $name - -cd $name -git checkout tags/$version -b $version -yarn -rm -rf $target -grunt custom:-ajax,-callbacks,-css/showHide,-data,-deprecated,-effects,-event/alias,-event/trigger,...
chore: rm build custom JQuery scripts
null
antvis/x6
MIT License
Shell
@@ -31,7 +31,9 @@ class ComponentManagerTests: XCTestCase { weChatWebDictionary, weChatMiniProgramDictionary, bcmcMobileQR, - mbway + mbway, + blik, + qiwiWallet ] ] @@ -49,10 +51,50 @@ class ComponentManagerTests: XCTestCase { style: DropInComponent.Style()) XCTAssertEqual(sut.components.stored.count, 4) - XCTAssertEq...
chore: increased ComponentManagerTests coverage
null
adyen/adyen-ios
MIT License
Swift
@@ -45,7 +45,6 @@ import com.fasterxml.jackson.annotation.*; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder; import com.google.common.base.MoreObjects.ToStringHelper; -import com.google.common.base.Strings; import com.google.common.coll...
chore(snomed): Consolidate String emptiness-checking methods
null
b2ihealthcare/snow-owl
Apache License 2.0
Java
@@ -201,6 +201,7 @@ func newInitOpts(vars initVars) (*initOpts, error) { init: wlInitializer, sel: sel, prompt: prompt, + dockerEngineValidator: exec.NewDockerCommand(), } o.initWlCmd = &opts o.schedule = &opts.schedule // Surfaced via pointer for logging @@ -217,6 +218,7 @@ func newInitOpts(vars initVars) (*initOpts, ...
chore: add dockerEngineValidator in init
null
aws/copilot-cli
Apache License 2.0
Go
@@ -62,7 +62,7 @@ const main: Configuration = { ...base, target: 'electron-main', entry: { - main: path.join(__dirname, 'src', 'main.ts'), + main: './src/main.ts', }, }; @@ -70,7 +70,7 @@ const preload: Configuration = { ...base, target: 'electron-preload', entry: { - preload: path.join(__dirname, 'src', 'preload.ts'),...
chore: lint webpack.config.ts
null
sprout2000/elephicon
MIT License
TypeScript
+COMPONENT=$1 +SESSION="$COMPONENTdev" +tmux new-session -d -s $SESSION + +# start site +tmux new-window -t $SESSION:1 -n "site" +tmux select-window -t $SESSION:1 +tmux send-keys "npm start" C-m + +# start build +tmux new-window -t $SESSION:2 -n "build" +tmux select-window -t $SESSION:2 +tmux send-keys "cd packages/$CO...
chore: add tmux script for component dev
null
pluralsight/design-system
Apache License 2.0
Shell
@@ -10,12 +10,12 @@ namespace LanguageExt; /// </summary> /// <remarks> /// Used heavily by `repeat`, `retry`, and `fold` with the `Aff` and `Eff` types. Use the static methods to create parts -/// of schedulers and then union them using `|` or intersect them using `&amp;`. Union will take the minimum of the two +/// o...
chore: change documentation to not use xml literal substitutions [ci]
null
louthy/language-ext
MIT License
C#
@@ -58,10 +58,9 @@ public class BoxAPIRequestTest { @Test public void requestRetriesTheDefaultNumberOfTimesWhenServerReturnsInvalidGrantInErrorField() - throws MalformedURLException - { - String body = "{\"error\":\"invalid_grant\",\"error_description\":\"Current date" + - "\\/time MUST be before the expiration date\\/...
chore: Fix linter problems in test file
null
box/box-java-sdk
Apache License 2.0
Java
@@ -193,43 +193,42 @@ func (db *DB) replayFunction() func(Entry, valuePointer) error { } } -// Open returns a new DB object. -func Open(opt Options) (db *DB, err error) { +func checkAndSetOptions(opt *Options) error { // It's okay to have zero compactors which will disable all compactions but // we cannot have just one...
chore(options): Log warning if blockcache is missing
null
dgraph-io/badger
Apache License 2.0
Go
@@ -252,8 +252,8 @@ mod tests { // The tokio runtime is now out of tasks drop(manager); - let ten_millis = time::Duration::from_millis(200); - thread::sleep(ten_millis); + let millis = time::Duration::from_millis(500); + thread::sleep(millis); // Server should be down assert!(TcpStream::connect(("127.0.0.1", server_por...
chore: add longer sleep for test failing on windows
null
pact-foundation/pact-reference
MIT License
Rust
@@ -15,10 +15,6 @@ public class FragmentLinkIT extends ChromeBrowserTest { public void testInsidePageNavigation_noRouterLinkHandling() { open(); - if (hasClientIssue("8236")) { - return; - } - clickScrollerLink2(); verifyInsideServletLocation(
chore: removed hasClientIssue(8236) guard
null
vaadin/flow
Apache License 2.0
Java
-import React, { useLayoutEffect, useState } from 'react' +import React, { useLayoutEffect, useState, Dispatch, SetStateAction } from 'react' import styled from 'styled-components' import CopyIcon from '../../assets/copy.png' import i18n from '../../utils/i18n' @@ -76,13 +76,9 @@ const AddressHashCardPanel = styled.div...
chore: Add handleHashText to AddressHashCard component
null
nervosnetwork/ckb-explorer-frontend
MIT License
TypeScript
@@ -1049,7 +1049,7 @@ func (b *cmdPkgBuilder) printPkgSummary(sum pkger.Summary) error { } if dashes := sum.Dashboards; len(dashes) > 0 { - headers := []string{"Package Name", "ID", "Resource Name", "Description"} + headers := append(commonHeaders, "Description") tablePrintFn("DASHBOARDS", headers, len(dashes), func(i ...
chore(influx): tidy up print summary statements to include pkg names
null
influxdata/influxdb
MIT License
Go
import React from 'react' +import { graphql } from 'gatsby' +import Container from '~components/common/container' +import LongContent from '~components/common/long-content' +import Paragraph from '~components/common/landing-page/paragraph' +import ContentfulContent from '~components/common/contentful-content' import Ta...
chore: Add content and copy
null
covid19tracking/website
Apache License 2.0
JavaScript
$testDir = getcwd(); if (!file_exists($testDir . '/phpunit.xml.dist')) { - throw new Exception('You are not in a test directory'); + throw new Exception('You are not in a sample directory'); } if (file_exists($testDir . '/composer.json')) {
chore: Minor error msg change in testing/bootstrap.php
null
googlecloudplatform/php-docs-samples
Apache License 2.0
PHP
@@ -85,9 +85,7 @@ pub enum Error { source: parquet_file::metadata::Error, }, - #[snafu(display( - "Cannot compact chunks because of error computing max partition checkpoint" - ))] + #[snafu(display("Cannot compact chunks because of error computing max partition checkpoint"))] ComparePartitionCheckpoint {}, #[snafu(disp...
chore: rerun fmt after merging
null
influxdata/influxdb_iox
Apache License 2.0
Rust
@@ -17,7 +17,7 @@ func IsIgnoredStructField(field reflect.StructField) bool { if t.Kind() == reflect.Ptr { t = t.Elem() } - if !field.IsExported() && t.Kind() != reflect.Struct { + if t.Kind() != reflect.Struct { return true } } else {
chore: remove IsExported
null
goccy/go-json
MIT License
Go
import classNames from 'classnames'; -import React, { useMemo } from 'react'; +import React from 'react'; import PropTypes from 'prop-types'; import { useBootstrapPrefix } from './ThemeProvider'; @@ -44,15 +44,11 @@ const Image = React.forwardRef( ) => { bsPrefix = useBootstrapPrefix(bsPrefix, 'img'); - const classes =...
chore(image): revert changes to classnames implementation
null
react-bootstrap/react-bootstrap
MIT License
JavaScript
@@ -170,7 +170,10 @@ public interface IOSMobileCapabilityType extends CapabilityType { /** * The desired capability to specify a length for tapping, if the regular * tap is too long for the app under test. The XCUITest specific capability. + * + * @deprecated This capability is not being used. */ + @Deprecated String T...
chore: deprecate tapWithShortPressDuration cap
null
appium/java-client
Apache License 2.0
Java
@@ -66,6 +66,15 @@ mkdir -p dist mkdir -p declarations echo -e $LINECLEAR$BASENAME$CHECK${DIM}"Cleaning output directories"$RESET +# Bundle Typescript declaration files (.d.ts). +# Even though we only generate declaration files, the target must be set +# high-enough to prevent `tsc` from complaining (!) +printf "$BASEN...
chore: fail early
null
arnog/mathlive
MIT License
Shell
@@ -394,7 +394,7 @@ public abstract class NodeUpdater implements FallibleCommand { final String WORKBOX_VERSION = "6.4.2"; if (featureFlags.isEnabled(FeatureFlags.VITE)) { - defaults.put("vite", "v2.8.0-beta.5"); + defaults.put("vite", "v2.8.0-beta.7"); defaults.put("rollup-plugin-brotli", "3.1.0"); defaults.put("vite-...
chore: Upgrade to Vite 2.8 beta7
null
vaadin/flow
Apache License 2.0
Java
@@ -433,7 +433,7 @@ func (ps *PushSync) pushToClosest(ctx context.Context, ch swarm.Chunk, origin bo } ps.metrics.TotalFailedSendAttempts.Inc() - logger.Debugf("pushsync: could not push to peer %s: %v", result.peer, result.err) + logger.Debugf("pushsync: could not push to peer: %v", result.err) // pushPeer returned ear...
chore: reduce pushsync logged message
null
ethersphere/bee
BSD 3-Clause New or Revised License
Go
@@ -34,6 +34,7 @@ public class MainApplication extends Application implements ReactApplication { List<ReactPackage> packages = new PackageList(this).getPackages(); // Packages that cannot be autolinked yet can be added manually here, for example: // packages.add(new MyReactNativePackage()); + packages.add(new CrashyPac...
chore: fix RN 0.63 example app setup
null
bugsnag/bugsnag-js
MIT License
Java
+// @reference: https://github.com/ant-design/ant-design/blob/master/components/_util/wave.tsx import {Component, TypeDefs, findDomFromVNode, VNode} from 'intact'; import {isArray} from 'intact-shared'; import {bind} from '../utils';
chore: respect
null
ksc-fe/kpc
MIT License
TypeScript
@@ -66,11 +66,11 @@ public class FrontendTools { * the installed version is older than {@link #SUPPORTED_NODE_VERSION}, i.e. * {@value #SUPPORTED_NODE_MAJOR_VERSION}.{@value #SUPPORTED_NODE_MINOR_VERSION}. */ - public static final String DEFAULT_NODE_VERSION = "v16.16.0"; + public static final String DEFAULT_NODE_VERSI...
chore: Upgrade to Node 16.17
null
vaadin/flow
Apache License 2.0
Java
@@ -169,7 +169,7 @@ function setup_deps { ###################################################################### # Install SDK dependencies. - local toolsfile=sdk-tools-linux-3859397.zip + local toolsfile=sdk-tools-linux-4333796.zip local sdkmanager="$SDK_DIR/tools/bin/sdkmanager" # Reuse downloaded SDK stuff from old ...
chore(scripts/build-android): SDK tools: =>
null
equalitie/ouinet
MIT License
Shell
@@ -29,7 +29,7 @@ import { NoteEnum } from "../Common/DataObjects/Pitch"; * After the constructor, use load() and render() to load and render a MusicXML file. */ export class OpenSheetMusicDisplay { - protected version: string = "1.7.2-release"; // getter: this.Version + protected version: string = "1.7.2-dev"; // gett...
chore: set osmd.Version to 1.7.2-dev
null
opensheetmusicdisplay/opensheetmusicdisplay
BSD 3-Clause New or Revised License
TypeScript
@@ -162,6 +162,7 @@ public class RequestExecutor { protected void initHttpClient(RequestInterceptorHandler requestInterceptorHandler) { HttpClientBuilder httpClientBuilder = HttpClients.custom() + .useSystemProperties() .addInterceptorLast(requestInterceptorHandler); this.httpClient = httpClientBuilder.build();
chore(ext-client): use system properties when constructing HttpClient
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -172,9 +172,10 @@ init_replica_set() { if [[ ${mongo_state: -1} -eq 1 ]]; then echo "Mongodb cloud Replica Set is enabled" else - echo -e "\033[0;31m********************************************************************\033[0m" + echo -e "\033[0;31m**********************************************************************...
chore: Add role details in replica set error message
null
appsmithorg/appsmith
Apache License 2.0
Shell
@@ -202,6 +202,12 @@ open class MediaControl: UICorePlugin, UIGestureRecognizerDelegate { self.bindFrameToSuperviewBounds() } + private func loadDefaultPlugins() { + defaultPlugins.forEach { plugin in + plugins.append(plugin.init(context: core!)) + } + } + private func loadPlugins() { guard let mediaControlPlugins = op...
chore: adding default plugin list on media control
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -213,8 +213,12 @@ public class OptimizeManager extends AbstractManager { .includeInputs() .includeOutputs(); + List<List<HistoricDecisionInstance>> partitions = CollectionUtil.partition(decisionInstances, DbSqlSessionFactory.MAXIMUM_NUMBER_PARAMS); + + for (List<HistoricDecisionInstance> partition : partitions) { ge...
chore(fix): partition historicProcessInstances input/output lookup
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -97,7 +97,7 @@ func NewSync(localPath string, options Options) (*Sync, error) { } // We exclude the sync log to prevent an endless loop in upstream - options.ExcludePaths = append(options.ExcludePaths, ".devspace/") + options.ExcludePaths = append(options.ExcludePaths, ".devspace/logs/") // Initialize log if options...
chore: only exclude .devspace/logs from sync
null
loft-sh/devspace
Apache License 2.0
Go
@@ -259,6 +259,9 @@ $(if [[ $use_https == 1 ]]; then echo " proxy_set_header X-Forwarded-Host \$host; proxy_set_header Accept-Encoding ''; + # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/frame-ancestors + add_header Content-Security-Policy \"frame-ancestors ${APPSMITH_ALLOWED_FRAME...
chore: Add frame-ancestors CSP during dev time
null
appsmithorg/appsmith
Apache License 2.0
Shell
@@ -99,6 +99,12 @@ struct InnerSchema { } impl Schema { + fn to_builder(&self) -> SchemaBuilder { + let identifier = self.inner.identifier.clone(); + let attributes = self.attributes_ordered(); + SchemaBuilder { identifier, attributes } + } + pub fn from_toml<R: Read>(mut reader: R) -> Result<Schema, Box<dyn Error>> { ...
chore: Create an internal Schema::to_builder method
null
meilisearch/meilisearch
MIT License
Rust
@@ -324,10 +324,7 @@ fn exec(files: &[PathBuf], settings: &Settings) -> UResult<()> { match link(&files[0], &files[1], settings) { Ok(_) => Ok(()), - Err(e) => { - // show_error!("{}", e); - Err(LnError::FailedToLink(e.to_string().into()).into()) - } + Err(e) => Err(LnError::FailedToLink(e.to_string().into()).into()), ...
chore(ln): delete comment
null
uutils/coreutils
MIT License
Rust
@@ -20,6 +20,7 @@ type HTTPClientOpts struct { // MakeHTTPClient returns an HTTP client with the specified mTLS/headers configuration. // BUG: This function overwrites the default transport and client in package http! // This problem is being left as-is during refactoring to avoid regression of untested code. +// https...
chore: add GH issue link
null
kong/kubernetes-ingress-controller
Apache License 2.0
Go
@@ -23,7 +23,7 @@ import com.b2international.snowowl.core.jobs.RemoteJobEntry; */ public final class SnomedRf2Requests { - public static final String SNOMED_IMPORT_PREFIX = "snomed-import-"; + public static final String SNOMED_IMPORT_PREFIX = "import-"; public SnomedRf2ExportRequestBuilder prepareExport() { return new ...
chore(snomed): change `snomed-import` job prefix to just `import`
null
b2ihealthcare/snow-owl
Apache License 2.0
Java
@@ -46,8 +46,7 @@ const sauceLabsLaunchers = { base: 'SauceLabs', browserName: 'Safari', version: 'latest', - // TODO(@limonte): remove this line, the current latest 10.14 doesn't work (#1349) - platform: 'macOS 10.13' + platform: 'macOS 10.15' }, // TODO(@limonte): doesn't work, revisit // edge: {
chore(ci): test in Safari on macOS 10.15
null
sweetalert2/sweetalert2
MIT License
JavaScript
@@ -2,9 +2,28 @@ export interface Locales { [id: string]: string | string[] | Locales } +interface PluginConstructor<T> { + new (arg: T): Plugin +} + +export interface PluginConfig<T> { + id: string + resolve: { default: PluginConstructor<T> } + options?: T +} + +export type InputType = + | 'text' + | 'postback' + | 'a...
chore(core): add types for input type, plugin constructor and config
null
hubtype/botonic
MIT License
TypeScript
@@ -49,6 +49,7 @@ limitations under the License. #include "statsfilewriter.h" #include "webserver.h" #include "grpc_server.h" +#include "falco_output_queue.h" typedef function<void(sinsp* inspector)> open_t; @@ -230,7 +231,6 @@ uint64_t do_inspect(falco_engine *engine, string &stats_filename, uint64_t stats_interval, b...
chore(userspace/falco): cleanup boot logic for grpc server
null
falcosecurity/falco
Apache License 2.0
C++
@@ -23,7 +23,7 @@ return [ 'imagecreatefromavif' => ['false|GdImage', 'filename'=>'string'], 'mysqli_fetch_column' => ['null|int|float|string|false', 'result'=>'mysqli_result', 'column='=>'int'], 'mysqli_result::fetch_column' => ['null|int|float|string|false', 'column='=>'int'], - 'CURLStringFile::__construct' => ['voi...
chore: make mime field optional
null
vimeo/psalm
MIT License
PHP
@@ -2,6 +2,16 @@ import React, { useState } from 'react' import { Table, Th, Td } from '~components/common/table' import { Form, Input } from '~components/common/form' +const getNumber = number => { + if (!number) { + return 0 + } + if (number.search('<') > -1) { + return 0 + } + return parseInt(number, 10) +} + const ...
chore: Handle cast numbers as strings
null
covid19tracking/website
Apache License 2.0
JavaScript
@@ -99,10 +99,12 @@ export class LazyDataEffects { if (path.startsWith('http')) { url = path; } else { - if (this.platformService.isDesktop() || isPlatformServer(this.platform) || IS_HEADLESS) { + if (this.platformService.isDesktop() || !environment.production || isPlatformServer(this.platform) || IS_HEADLESS) { url = ...
chore: hotfix for full lazy data rows loading
null
ffxiv-teamcraft/ffxiv-teamcraft
MIT License
TypeScript
/* - * Copyright 2011-2020 B2i Healthcare Pte Ltd, http://b2i.sg + * Copyright 2011-2021 B2i Healthcare Pte Ltd, http://b2i.sg * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. */ package com.b2international.snowowl.core.request; -impo...
chore(api): change `filterByIds` method type to `Iterable`
null
b2ihealthcare/snow-owl
Apache License 2.0
Java
@@ -71,9 +71,7 @@ dependencies { // implementation("com.github.Melijn:lavaplayer:18000a1479") // https://jitpack.io/#ToxicMushroom/Lavalink-Klient - implementation("com.github.ToxicMushroom:Lavalink-Klient:2.0-a5") - // implementation("me.melijn.llklient:Lavalink-Klient:1.0.4-okhttp") - + implementation("com.github.Tox...
chore(deps): bump minor: ktor, ll-klient, spotify and jackson
null
toxicmushroom/melijn
MIT License
Kotlin