diff
stringlengths
12
9.3k
message
stringlengths
8
199
reasoning_trace
null
repo
stringlengths
6
68
license
stringclasses
3 values
language
stringclasses
16 values
@@ -12,7 +12,7 @@ import TableUtil from '../../../../../src/js/utils/TableUtil'; import TimeAgo from '../../../../../src/js/components/TimeAgo'; import Units from '../../../../../src/js/utils/Units'; -class RejectedOffersTable extends React.Component { +class DeclinedOffersTable extends React.Component { areResourcesUn...
chore(DeclinedOffersTable): rename react component to match filename
null
dcos/dcos-ui
Apache License 2.0
JavaScript
@@ -29,6 +29,7 @@ from pathlib import Path import requests +from feast import flags_helper from feast.constants import DEFAULT_FEAST_USAGE_VALUE, FEAST_USAGE from feast.version import get_version @@ -172,7 +173,8 @@ def _export(event: typing.Dict[str, typing.Any]): def _produce_event(ctx: UsageContext): - is_test = boo...
chore: Fix error where all calls register as test calls because typeguard imports unittest
null
feast-dev/feast
Apache License 2.0
Python
@@ -292,10 +292,15 @@ def display_statistic(context: ExecutionContext, event: events.Finished) -> None click.echo() category = click.style("Report", bold=True) click.secho(f"{category}: {context.report.filename}") - - if isinstance(context.report, ServiceReportContext): + elif isinstance(context.report, ServiceReportCo...
chore: Display a hint for visualizing test results
null
schemathesis/schemathesis
MIT License
Python
@@ -554,7 +554,9 @@ export function injectIntoGlobalHook(globalObject: any): void { if (alternate !== null) { const wasMounted = alternate.memoizedState != null && - alternate.memoizedState.element != null; + alternate.memoizedState.element != null && + mountedRoots.has(root); + const isMounted = current.memoizedState ...
chore(fast-refresh): double check wasMounted
null
facebook/react
MIT License
JavaScript
@@ -240,8 +240,8 @@ class DavisKingScheduler(object): self._reduce_lr() self.losses_.clear() - return {'steps_without_decrease': count, - 'steps_without_decrease_robust': count_robust, + return {'steps_without_decrease': count / self.patience, + 'steps_without_decrease_robust': count_robust / self.patience, 'increasing...
chore: normalize steps counts by "patience" parameter
null
pyannote/pyannote-audio
MIT License
Python
@@ -21,13 +21,16 @@ public final class DokuComponent: AbstractPersonalInformationComponent { /// - Parameters: /// - paymentMethod: The Doku Wallet, Doku Alfamart, or Doku Indomaret payment method. /// - apiContext: The component's UI style. + /// - adyenContext: The Adyen context. /// - configuration: The component's ...
chore: AdyenContext in DokuComponent
null
adyen/adyen-ios
MIT License
Swift
@@ -77,75 +77,10 @@ pub struct TransactionServiceSqliteDatabase { impl TransactionServiceSqliteDatabase { pub fn new(database_connection: WalletDbConnection, cipher: Option<Aes256Gcm>) -> Self { - let mut new_self = Self { + Self { database_connection, cipher: Arc::new(RwLock::new(cipher)), - }; - - // TODO: Remove thi...
chore: remove testnet reset todo in wallet
null
tari-project/tari
BSD 3-Clause New or Revised License
Rust
@@ -53,14 +53,13 @@ build() { } push() { - #git config --global user.email "alberto.park@gmail.com" - #git config --global user.name "Jae Sung Park" - - # Remove existing remote - # git remote rm ${DEST_REMOTE} - # Add new remote with access token in the git URL for authentication - #git remote add ${DEST_REMOTE} https...
chore(deploy): fix deploy error
null
naver/billboard.js
MIT License
Shell
@@ -117,6 +117,12 @@ impl Client { Self::new(chain, api_key) } + /// Sets the root to the cache dir and the ttl to use + pub fn set_cache(&mut self, root: impl Into<PathBuf>, ttl: Duration) -> &mut Self { + self.cache = Some(Cache { root: root.into(), ttl }); + self + } + pub fn etherscan_api_url(&self) -> &Url { &self...
chore(etherscan): add set cache helper
null
gakonst/ethers-rs
Apache License 2.0
Rust
@@ -3,13 +3,12 @@ const { dirname } = require('path'); const copyPackageJson = async () => { const outPaths = 'build/package.json'; const pack = await readJSON('package.json'); - - let package = {}; - - package.name = `@gpn-design/${pack.name.replace(/@/g, '').replace(/\W|_/g, '-')}-stand`; - package.version = pack.ver...
chore(storybook): add automatization for publish stand
null
gazprom-neft/consta-uikit
MIT License
JavaScript
@@ -138,8 +138,13 @@ impl Network { self } - pub fn backoff(&self) -> ExponentialBackoff { - self.back_off_policy.backoff() + pub(crate) fn backoff( + &self, + ) -> std::iter::Chain<ExponentialBackoff, std::vec::IntoIter<Duration>> { + // the last period of back off should be zero + // so the longest backoff will not b...
chore: add a zero sleep time to not waste the longest back off
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -35,12 +35,9 @@ class BeMyValentine(commands.Cog): @commands.command(name="lovefest", help=f"NOTE: This command has been moved to {MOVED_COMMAND}") async def lovefest_role(self, ctx: commands.Context) -> None: """ - Subscribe or unsubscribe from the lovefest role. + Deprecated lovefest role command. - The lovefest r...
chore: update lovefest docstring to reflect deprecation
null
python-discord/sir-lancebot
MIT License
Python
@@ -211,17 +211,17 @@ pub fn polkadot_config() -> ChainSpec { // Invulnerable collators FIXME: these are NOT the right collators vec![ ( - // Collator 1: t3W7yG2pkGdLogoX6KJm5KtPMMWBQygvcZArcjtjo5AsJPad2 - hex!("5232d5d6b3904523020c08addf5b648f5ecb1e3481c04fe46d2d82efb193b674") + // Collator 1: t3XXX7FGKAsG3pwE188CP91z...
chore: update t3rn collators in shell chain_spec
null
t3rn/t3rn
Apache License 2.0
Rust
@@ -39,7 +39,6 @@ impl TransactionBuilder { } /// Build the transaction - #[cfg(feature = "appservice")] pub fn build_json_transaction(&self) -> Value { let body = serde_json::json! { {
chore: Remove redundant cfg attribute
null
matrix-org/matrix-rust-sdk
Apache License 2.0
Rust
-// Copyright 2019 The Tari Project -// -// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the -// following conditions are met: -// -// 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following -// d...
chore: remove dead code file bullet_rangeproofs
null
tari-project/tari
BSD 3-Clause New or Revised License
Rust
@@ -76,56 +76,43 @@ impl BaseRoomInfo { match content { AnyStateEventContent::RoomEncryption(encryption) => { self.encryption = Some(encryption.clone()); - true } AnyStateEventContent::RoomAvatar(a) => { self.avatar_url = a.url.clone(); - true } AnyStateEventContent::RoomName(n) => { self.name = n.name.as_ref().map(|n|...
chore(base): Simplify BaseRoomInfo::handle_state_event
null
matrix-org/matrix-rust-sdk
Apache License 2.0
Rust
@@ -104,3 +104,17 @@ echo ln -s /sumologic/vagrant/scripts/sumo-make.sh /usr/local/bin/sumo-make ln -s /sumologic/vagrant/scripts/sumo-make-completion.sh /etc/bash_completion.d/sumo-make + +# Install Go +GO_VERSION=1.17 +curl -LJ "https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz" -o go.linux-amd64.tar.gz \ + &&...
chore(vagrant): add Go and Kind to vagrant environment
null
sumologic/sumologic-kubernetes-collection
Apache License 2.0
Shell
@@ -5,7 +5,7 @@ private object ModuleNames { private const val solvePrefix = "2p-solve" - const val classic = "${solvePrefix}-classic" + const val classic = "$solvePrefix-classic" private fun withOptionalPrefix(orgPrefix: Boolean = false, module: String, klass: String): String = (if (orgPrefix) "$tuprolog/" else "") + ...
chore(style): format SolverExtensionsJs.kt
null
tuprolog/2p-kt
Apache License 2.0
Kotlin
@@ -471,19 +471,16 @@ public class HibernateDataApprovalStore ")"; } - String readyBelowSubquery = "true"; // Ready below if this is the lowest - // (highest number) approval orgUnit - // level. + // Ready below if this is the lowest (highest number) approval level + String readyBelowSubquery = "true"; if ( approvalLev...
chore: HibernateDataApprovalStore comment fixes
null
dhis2/dhis2-core
BSD 3-Clause New or Revised License
Java
@@ -173,6 +173,11 @@ open class AVFoundationPlayback: Playback { } } + open override func render() { + super.render() + trigger(.ready) + } + fileprivate func setupPlayer() { if let asset = self.asset { let item: AVPlayerItem = AVPlayerItem(asset: asset) @@ -181,7 +186,6 @@ open class AVFoundationPlayback: Playback { p...
chore: trigger ready event on render of AVFoundationPlayback
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -64,7 +64,7 @@ public class JobExecutorLogger extends ProcessEngineLogger { } public void debugAddingNewExclusiveJobToJobExecutorCOntext(String jobId) { - logInfo( + logDebug( "008", "Adding new exclusive job to job executor context. Job Id='{}'", jobId); }
chore(engine): adjust log severity of job executor command
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -9,7 +9,7 @@ import Foundation import AWSClientRuntime public class AmplifyAWSServiceConfiguration { - public static let amplifyVersion = "2.3.0" + public static let amplifyVersion = "2.3.1" public static let platformName = "amplify-ios" public static func frameworkMetaData() -> FrameworkMetadata {
chore: release 2.3.1 [skip ci]
null
aws-amplify/amplify-ios
Apache License 2.0
Swift
@@ -32,7 +32,6 @@ import java.io.FileNotFoundException; import java.io.InputStream; import static org.hamcrest.CoreMatchers.containsString; -import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertThat; import static org.junit.Assert.fail; @@ -74,7 ...
chore(test): remove unused variable and import
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -15,14 +15,13 @@ import ( "google.golang.org/grpc" - "github.com/1024casts/snake/internal/server" - "github.com/gin-gonic/gin" "github.com/prometheus/client_golang/prometheus/promhttp" "github.com/spf13/pflag" "github.com/spf13/viper" "github.com/1024casts/snake/app/api" + rpc "github.com/1024casts/snake/internal/se...
chore: using alias rpc for server
null
go-eagle/eagle
MIT License
Go
@@ -48,7 +48,7 @@ extension ApplePayComponent { /// Determine whether to disable editing of the shipping contact field before displaying the payment sheet. /// The default is true. - public let allowShippingContactEditing: Bool = true + public var allowShippingContactEditing: Bool = true /// An array of shipping method...
chore: make `allowShippingContactEditing` a var
null
adyen/adyen-ios
MIT License
Swift
@@ -9,13 +9,13 @@ const istanbulDiff = require('istanbul-diff') const before = { minified: parseInt(readFileSync(`${__dirname}/.diff/size-before-minified`, 'utf8').trim()), gzipped: parseInt(readFileSync(`${__dirname}/.diff/size-before-gzipped`, 'utf8').trim()), - coverage: JSON.parse(readFileSync(`${__dirname}/.diff/c...
chore: do not print raw diff output
null
bugsnag/bugsnag-js
MIT License
JavaScript
@@ -13,7 +13,7 @@ class AmazonOAuth2Adapter(OAuth2Adapter): provider_id = AmazonProvider.id access_token_url = 'https://api.amazon.com/auth/o2/token' authorize_url = 'http://www.amazon.com/ap/oa' - profile_url = 'https://www.amazon.com/ap/user/profile' + profile_url = 'https://api.amazon.com/user/profile' supports_stat...
chore(amazon): Update API profile URL
null
pennersr/django-allauth
MIT License
Python
/* - * Copyright 2021 B2i Healthcare Pte Ltd, http://b2i.sg + * Copyright 2021-2022 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. @@ -53,7 +53,8 @@ public final class TerminologyResourceRequest...
chore(api): improve error message when using API that does not support.
null
b2ihealthcare/snow-owl
Apache License 2.0
Java
@@ -32,6 +32,15 @@ class AvoidLateKeywordRule extends CommonRule { includes: readIncludes(config), ); + @override + Map<String, Object?> toJson() { + final json = super.toJson(); + json[_ConfigParser._allowInitializedConfig] = _allowInitialized; + json[_ConfigParser._ignoredTypesConfig] = _ignoredTypes.toList(); + + re...
chore: add missing toJson implementation
null
dart-code-checker/dart-code-metrics
MIT License
Dart
@@ -388,9 +388,9 @@ static void usage() " Print the name of the files opened by cat\n" " $ sysdig -p\"%%evt.arg.name\" proc.name=cat and evt.type=open\n\n" " Register any found plugin and use dummy as input source passing to it open params\n" -" $ sysdig -I dummy:'{\"start\":1,\"maxEvents\":10}'\n\n" +" $ sysdig -I dum...
chore: updated helper examples
null
draios/sysdig
Apache License 2.0
C++
if [ $TRAVIS_PULL_REQUEST == "false" ] then + # Print connect log to let us know what is going on + cat $CONNECT_LOG # Wait for Connect to be ready before exiting while [ ! -f $SAUCE_CONNECT_READY_FILE ]; do sleep .5
chore(sauce_connect_block.sh): Priting the connect log while sauce labs is not connected
null
angular-ui/ui-grid
MIT License
Shell
@@ -171,9 +171,12 @@ defmodule Logflare.LqlParserTest do operator: :=, path: "timestamp", shorthand: "now", - value: now_ndt() + value: now_out } - ]} == Parser.parse("timestamp:now", @default_schema) + ]} = Parser.parse("timestamp:now", @default_schema) + + # use diff to reduce test flakiness + assert DateTime.diff(no...
chore: update timestamp comparison tests to reduce flakiness
null
logflare/logflare
Apache License 2.0
Elixir
@@ -83,7 +83,7 @@ public class ClientAPIGenerator { String generatedDefaultClientTs = getDefaultClientTsTemplate() .replace("{{PREFIX}}", endpointPrefix); try { - logger.info("writing file {}", outputFilePath); + logger.debug("writing file {}", outputFilePath); FileUtils.writeStringToFile(outputFilePath.toFile(), gener...
chore: log file writing debug info using debug level
null
vaadin/flow
Apache License 2.0
Java
-use rpc::mayastor::{ - CreatePoolRequest, - CreateReplicaRequest, - DestroyPoolRequest, - DestroyReplicaRequest, - Null, - ShareReplicaRequest, -}; - -pub mod common; -use common::compose::Builder; - -#[tokio::test] -async fn lvs_pool_rpc() { - let test = Builder::new() - .name("lvs-pool-grpc") - .with_clean(true) - ....
chore(test): remove rust test for pool rpc
null
openebs/mayastor
Apache License 2.0
Rust
@@ -40,7 +40,6 @@ open class LoadingCorePlugin: UICorePlugin { open override func render() { setupConstraints() - layer.zPosition = 1 } fileprivate func setupConstraints() {
chore: remove zPosition of LoadingPlugin
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -3,7 +3,7 @@ import { FormSwitcher } from "Components/Authentication/FormSwitcher" import { ModalOptions, ModalType } from "Components/Authentication/Types" import { ModalHeader } from "Components/Modal/ModalHeader" import { handleSubmit } from "Apps/Authentication/Utils/helpers" -import { Flex, BoxProps } from "@ar...
chore: change static signup form copy
null
artsy/force
MIT License
TypeScript
@@ -46,7 +46,68 @@ defmodule Logflare.LogEvent do field :make_from, :string end - def mapper(params, source) do + @doc """ + Used to generate log events from bigquery rows. + """ + @spec make_from_db(map(), %{source: Source.t()}) :: LE.t() + def make_from_db(params, %{source: %Source{} = source}) do + params = + params...
chore: reorganize file, add inline comments, docs, set certain functions to private
null
logflare/logflare
Apache License 2.0
Elixir
@@ -193,6 +193,7 @@ public class RuntimeServiceTest { assertEquals(1, runtimeService.createProcessInstanceQuery().processDefinitionKey("oneTaskProcess").count()); } + @Test @Deployment(resources={ "org/camunda/bpm/engine/test/api/oneTaskProcess.bpmn20.xml"}) public void startProcessInstanceWithBusinessKey() { @@ -208,7...
chore(engine): adjust RuntimeServiceTest case
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -12,23 +12,18 @@ const output = [ format: 'cjs', sourcemap: true, exports: rollup.exports, - } + }, ] if (typeof module !== 'undefined') output.push({ banner, file: module, format: 'es', - sourcemap: true + sourcemap: true, }) export default { input: 'src/index.js', output, - plugins: [ - peerDepsExternal(), - resol...
chore: Linter changes
null
freesewing/freesewing
MIT License
JavaScript
@@ -3203,7 +3203,6 @@ export class Scene extends AbstractScene implements IAnimatable { return null; } - /** * Gets a morph target using a given name (if many are found, this function will pick the first one) * @param name defines the name to search for
chore(whitespace): Removed unneeded whitespace
null
babylonjs/babylon.js
Apache License 2.0
TypeScript
@@ -18,6 +18,7 @@ package org.camunda.bpm.engine.impl.jobexecutor; import java.util.Collection; +import org.camunda.bpm.engine.OptimisticLockingException; import org.camunda.bpm.engine.ProcessEngineException; import org.camunda.bpm.engine.impl.ProcessEngineLogger; import org.camunda.bpm.engine.impl.persistence.entity.E...
chore(engine): log stacktrace of OptimisticLockingException only on DEBUG
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
-require "yaml" - -class Object - - def blank? - respond_to?(:empty?) ? empty? : !self - end - - def present? - !blank? - end - -end - -class String - - def is_plugin_file? - open(self).grep(/plugin name/i).length > 0 - end - -end - -# TODO: write all commit messages since last release in svn message -class Wprelease -...
chore: remove now obsolete release script
null
podlove/podlove-publisher
MIT License
Ruby
@@ -296,12 +296,9 @@ class PactVerificationExtension( override fun afterTestExecution(context: ExtensionContext) { val store = context.getStore(ExtensionContext.Namespace.create("pact-jvm")) val testContext = store.get("interactionContext") as PactVerificationContext - if (pact is FilteredPact) { - testResultAccumulato...
chore: simplify code a bit
null
pact-foundation/pact-jvm
Apache License 2.0
Kotlin
@@ -44,9 +44,9 @@ func (r TerminalStatusReporter) ReportRecipesAvailable(status *StatusRollup, rec }).Debug("found available integration") if r.DisplayName != "" { - fmt.Printf("\t%s\n", r.DisplayName) + fmt.Printf(" %s\n", r.DisplayName) } else { - fmt.Printf("\t%s\n", r.Name) + fmt.Printf(" %s\n", r.Name) } } @@ -76,...
chore(install): use spaces instead of tabs for information output
null
newrelic/newrelic-cli
Apache License 2.0
Go
@@ -33,7 +33,8 @@ const TextFields: CollectionConfig = { }, }, { - name: 'Override the 40k text length default (This one has 50k max length)', + label: 'Override the 40k text length default', + name: 'overrideLength', type: 'text', maxLength: 50000, },
chore: fixes bad field name
null
payloadcms/payload
MIT License
TypeScript
@@ -181,7 +181,6 @@ exit: ockam_error_t socket_udp_write(void* ctx, uint8_t* buffer, size_t buffer_length) { - // TODO: Check buffer_length can fit in ssize_t? ockam_error_t error = OCKAM_ERROR_NONE; if (buffer_length > (SIZE_MAX >> 1u)) {
chore(c): remove obsolete todo
null
ockam-network/ockam
Apache License 2.0
C
//! Encode a `BlockContent` nodes to HTML use super::{ - attr, attr_id, attr_itemprop, attr_itemtype, attr_prop, concat, elem, elem_empty, json, - EncodeContext, ToHtml, + attr, attr_id, attr_itemprop, attr_itemtype, attr_prop, attr_slot, concat, elem, elem_empty, + elem_meta, json, nothing, EncodeContext, ToHtml, }; u...
chore(HTML encoding): Revise encoding of code chunks
null
stencila/stencila
Apache License 2.0
Rust
#include "third_party/crashpad/crashpad/client/annotation.h" #include "gin/wrappable.h" +#include "shell/browser/api/electron_api_app.h" +#include "shell/browser/api/electron_api_auto_updater.h" #include "shell/browser/api/electron_api_browser_view.h" #include "shell/browser/api/electron_api_cookies.h" +#include "shell...
chore: more crash-keys for gin::Wrappable debugging
null
electron/electron
MIT License
C++
-use crate::node::util::delete_embedded_node; use crate::node::NodeOpts; use crate::util::output::Output; use crate::util::{extract_address_value, node_rpc, Rpc}; @@ -39,7 +38,6 @@ async fn run_impl( rpc.request(req).await?; rpc.parse_and_print_response::<ShortIdentityResponse>()?; } - delete_embedded_node(&opts.config...
chore(rust): identity show do not run on embedded node
null
ockam-network/ockam
Apache License 2.0
Rust
@@ -52,7 +52,6 @@ public class SpringTransactionsProcessEngineConfiguration extends ProcessEngineC protected String deploymentName = "SpringAutoDeployment"; protected Resource[] deploymentResources = new Resource[0]; protected String deploymentTenantId; - protected ApplicationContext applicationContext; public SpringTr...
chore(spring): remove applicationContext field form configuration
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -119,7 +119,7 @@ const captionPadding = css` padding-right: 8px; `; -const mobileCaptionPadding = css` +const tabletCaptionPadding = css` ${until.desktop} { ${captionPadding} } @@ -258,7 +258,7 @@ export const Caption = ({ shouldLimitWidth && limitedWidth, !isOverlayed && bottomMargin, isOverlayed && overlayedStyles...
chore: Rename mobileCaptionPadding to tabletCaptionPadding
null
guardian/dotcom-rendering
Apache License 2.0
TypeScript
@@ -52,7 +52,7 @@ func main() { panic(err) } - original := strings.TrimSpace(string(out)) + original := trimBranch(string(out)) testFunc := run if graphiteURL != "" { @@ -81,7 +81,7 @@ func main() { } }() - out, err = exec.Command("git", "for-each-ref", "--sort", "creatordate", "--format", "%(refname)", "refs/tags", "-...
chore: trim branch
null
caos/orbos
Apache License 2.0
Go
@@ -6,7 +6,7 @@ import VolunteersList from '~components/common/volunteers-list' export default ({ data }) => ( <Layout - title="About us" + title="About Us" path="/about-project" narrow textHeavy
chore(about): refactor 'About us' -> 'About Us'
null
covid19tracking/website
Apache License 2.0
JavaScript
@@ -9,7 +9,6 @@ let dependencies: [Package.Dependency] = [ .package(url: "https://github.com/stephencelis/SQLite.swift.git", exact: "0.13.2"), .package(url: "https://github.com/mattgallagher/CwlPreconditionTesting.git", from: "2.1.0") ] -let swiftSettings: [SwiftSetting]? = [.define("DEV_PREVIEW_BUILD")] let amplifyTar...
chore: Remove unused flag from package.swift
null
aws-amplify/amplify-ios
Apache License 2.0
Swift
@@ -903,6 +903,11 @@ export class PostgresEngineVersion { /** Version "13.5". */ public static readonly VER_13_5 = PostgresEngineVersion.of('13.5', '13', { s3Import: true, s3Export: true }); + /** Version "14" (only a major version, without a specific minor version). */ + public static readonly VER_14 = PostgresEngineV...
chore(rds): add support for PostgreSQL 14
null
aws/aws-cdk
Apache License 2.0
TypeScript
@@ -154,9 +154,11 @@ function AuthPage() { // !! Update this example !! <ExampleCard type={'example'} - products={['database']} + products={['database', 'auth', 'storage']} title={'Profile managment example'} - description={'NextJS Slack clone app using Supabase realtime subscriptions'} + description={ + 'Update a user...
chore: update example app text
null
supabase/supabase
Apache License 2.0
TypeScript
@@ -40,7 +40,7 @@ for PACKAGE in ${PACKAGES}; do continue fi - CONTAINER_NAME="${PACKAGE}-${BUILD_NUMBER}" + CONTAINER_NAME="$(echo ${PACKAGE} | awk -F '/' '{ print $NF }')-${BUILD_NUMBER}" if [ -n "${CONCURRENCY}" ]; then echo "Keeping concurrent job count below ${CONCURRENCY}"
chore(tooling): avoid special chars in docker container name
null
webex/webex-js-sdk
MIT License
Shell
@@ -10,7 +10,7 @@ const getBoldedText = text => '**$1 $2$3**', ) -const StateNotes = ({ stateName, notes }) => { +const StateNotes = ({ notes }) => { const highlightedNotes = getBoldedText(notes) const notesArray = highlightedNotes .split('\n') @@ -18,12 +18,6 @@ const StateNotes = ({ stateName, notes }) => { return ( ...
chore: Remove LTC historic page lede
null
covid19tracking/website
Apache License 2.0
JavaScript
@@ -65,9 +65,13 @@ internal class BACSDirectDebitPresenter: BACSDirectDebitPresenterProtocol { view.add(item: bankAccountNumberItem) view.add(item: sortCodeItem) view.add(item: emailItem) + view.add(item: FormSpacerItem(numberOfSpaces: 2)) view.add(item: amountTermsToggleItem) + view.add(item: FormSpacerItem(numberOfSp...
chore: Add spacing on form items
null
adyen/adyen-ios
MIT License
Swift
@@ -89,10 +89,8 @@ const RaceEthnicityStateTemplate = ({ pageContext, path, data }) => { <Layout title={`${state.name}: All Race & Ethnicity Data`} returnLinks={[ - { - link: '/race/dashboard/', - title: 'Racial Data Dashboard', - }, + { link: '/data' }, + { link: `/data/state/${slug}`, title: state.name }, ]} path={pa...
chore(crdt-breakouts): update breadcrumb
null
covid19tracking/website
Apache License 2.0
JavaScript
@@ -66,8 +66,7 @@ func NewFinder(getter storage.Getter, feed *feeds.Feed) feeds.Lookup { return &finder{feeds.NewGetter(getter, feed)} } -// At looks up the version valid at time `at` -// after is a unix time hint of the latest known update +// At looks for incremental feed updates from 0 upwards, if it does not find o...
chore(feeds): improve code comment
null
ethersphere/bee
BSD 3-Clause New or Revised License
Go
@@ -2516,13 +2516,7 @@ template<typename Comment = TOML11_DEFAULT_COMMENT_STRATEGY, template<typename ...> class Array = std::vector> basic_value<Comment, Table, Array> parse(const std::filesystem::path& fpath) { - std::ifstream ifs(fpath, std::ios_base::binary); - if(!ifs.good()) - { - throw std::runtime_error("toml::...
chore: De-duplicate code for parse(std::filesystem::path)
null
toruniina/toml11
MIT License
C++
@@ -198,11 +198,11 @@ mixin DimensionMixin on Node { double bottom = 0.0; if (style != null) { - if (style['margin'] == 0) { - return Padding(0, 0, 0, 0); + var margin = style['margin']; + if (margin is int) { + margin = margin.toString(); } - String margin = style['margin']; double marginLeft; double marginTop; double...
chore: refactor margin:0 implementation
null
openkraken/kraken
Apache License 2.0
Dart
#include <queue> /// for queue data structure /** - * @namespace data_strcutres + * @namespace data_structures * @brief Data structures algorithms */ namespace data_structures {
chore(fix): `data_strcutres` -> `data_structures`
null
thealgorithms/c-plus-plus
MIT License
C++
@@ -35,7 +35,7 @@ class InstallCommand extends Command * * @return void */ - public function fire() + public function handle() { $this->info('Publishing the config files'); Artisan::call('vendor:publish', [
chore(Commands): rename method to handle()
null
owen-it/laravel-auditing
MIT License
PHP
namespace Deployer; require 'recipe/zend_framework.php'; -require 'recipe/cachetool.php'; +#require 'recipe/cachetool.php'; // Project name @@ -40,7 +40,7 @@ host('staging.yawik.org') ->multiplexing(false) ->set('deploy_path', '/var/www/staging'); -after('deploy:symlink', 'cachetool:clear:opcache'); +#after('deploy:sym...
chore: remove cachetool
null
cross-solution/yawik
MIT License
PHP
@@ -36,10 +36,6 @@ public void AppliedPrereleaseTagCausesBump() [Test] public void CanUseCommitMessagesToBumpVersion() { - var configuration = new Config - { - VersioningMode = GitVersion.VersionCalculation.VersioningMode.Mainline - }; using var fixture = new EmptyRepositoryFixture(); fixture.Repository.MakeACommit(); ...
chore: Remove unnecessary code
null
gittools/gitversion
MIT License
C#
*/ package org.camunda.bpm.engine.cdi.annotation; +import java.io.Serializable; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @@ -23,14 +24,15 @@ import java.lang.annotation.Target; import javax.enterprise.context.ConversationScoped; import ...
chore(engine-cdi): fix javadocs of BusinessProcessScoped annotation
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -27,7 +27,7 @@ if [[ -z "${CLIENT_ENCRYPTION}" ]]; then unset AWS_ACCESS_KEY_ID; unset AWS_SECRET_ACCESS_KEY; else - npm install mongodb-client-encryption@1.0.0 + npm install mongodb-client-encryption fi MONGODB_UNIFIED_TOPOLOGY=${UNIFIED} MONGODB_URI=${MONGODB_URI} npm test
chore: don't install explicit version of client encryption module
null
mongodb/node-mongodb-native
Apache License 2.0
Shell
@@ -21,11 +21,6 @@ registerModule('chromecastButton', ChromecastButton); registerPlaybackAdapter(HLSAdapter); registerPlaybackAdapter(DASHAdapter); -let currentStoryId: string = ''; -let prevPlayerProps = {}; -let rootContainer: any; -let player: any; - const processProps = (props: StoryProps, playerInstance: IPlayerIn...
chore(storybook): improve types
null
wix/playable
MIT License
TypeScript
@@ -54,7 +54,7 @@ fi for SUITE_ITERATION in $(seq 1 "${MAX_TEST_SUITE_RETRIES}"); do if [[ -z "${SAUCE_IS_DOWN}" && ! -e "${SC_PID_FILE}" ]]; then for SC_ITERATION in $(seq 1 "${MAX_SAUCE_CONNECT_RETRIES}"); do - export SC_TUNNEL_IDENTIFIER=$(cat /proc/sys/kernel/random/uuid) + export SC_TUNNEL_IDENTIFIER="${PACKAGE}-$...
chore(tooling): add package name to sauce tunnel name
null
webex/webex-js-sdk
MIT License
Shell
@@ -106,11 +106,10 @@ impl From<serde_json::Error> for Error { impl From<io::Error> for Error { fn from(error: io::Error) -> Self { - match error { - x if x.kind() == ErrorKind::BrokenPipe => return Error::new_ignored(), - _ => (), + match error.kind() { + ErrorKind::BrokenPipe => Error::new_ignored(), + _ => Error::ne...
chore(cli): Panic on broken pipe; stylistic fix
null
tree-sitter/tree-sitter
MIT License
Rust
@@ -28,7 +28,6 @@ open class NoOpPlayback: Playback { open override func render() { addSubviewMatchingConstraints(errorLabel) - trigger(.ready) } fileprivate func setupLabel() {
chore: remove trigger ready event on render
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
#define GOOGLE_CLOUD_CPP_SPANNER_GOOGLE_CLOUD_SPANNER_VERSION_INFO_H_ #define SPANNER_CLIENT_VERSION_MAJOR 0 -#define SPANNER_CLIENT_VERSION_MINOR 5 +#define SPANNER_CLIENT_VERSION_MINOR 6 #define SPANNER_CLIENT_VERSION_PATCH 0 #endif // GOOGLE_CLOUD_CPP_SPANNER_GOOGLE_CLOUD_SPANNER_VERSION_INFO_H_
chore: version bump after v0.5 (Beta) release (googleapis/google-cloud-cpp-spanner#1180)
null
googleapis/google-cloud-cpp
Apache License 2.0
C
@@ -2666,6 +2666,9 @@ func TestService(t *testing.T) { sum := newPkg.Summary() teles := sum.TelegrafConfigs + sort.Slice(teles, func(i, j int) bool { + return teles[i].TelegrafConfig.Name < teles[j].TelegrafConfig.Name + }) require.Len(t, teles, len(resourcesToClone)) for i := range resourcesToClone {
chore(pkger): make export test assertions deterministic
null
influxdata/influxdb
MIT License
Go
@@ -91,7 +91,7 @@ public class SecurityToken: ISecurityToken, ERC20BaseProperties { func tokenDetails() async throws -> [UInt32] { transaction.callOnBlock = .latest - let result = try await contract.createReadOperation("tokenDetails", parameters: [] as [AnyObject])!.callContractMethod() + let result = try await contrac...
chore: removed empty array argument - empty array is the default value already
null
skywinder/web3swift
Apache License 2.0
Swift
@@ -74,7 +74,16 @@ pub(crate) fn read_config_file( "y" | "" => match File::create(&config_path) { Ok(mut output) => match write!(output, "{}", config_file) { Ok(_) => { - println!("Config file created at: {}", config_path.to_string_lossy()) + let config_type = if is_env_config { + "Environment config" + } else { + "Con...
chore: make the config setup messages consistent
null
nushell/nushell
MIT License
Rust
@@ -225,8 +225,7 @@ function rawOrFn(value, method, builder, client, bindingHolder) { compileCallback(value, method, client, bindingHolder), undefined, builder, - client, - bindingHolder + client ); } return unwrapRaw(value, undefined, builder, client, bindingHolder) || '';
chore: remove bindingHolder for proper scoping
null
knex/knex
MIT License
JavaScript
@@ -1213,9 +1213,10 @@ func (t *TBtree) IncreaseTs(ts uint64) error { t.root = root - t.insertionCount++ + t.insertionCountSinceFlush++ + t.insertionCountSinceSync++ - if t.insertionCount >= t.flushThld { + if t.insertionCountSinceFlush >= t.flushThld { _, _, err := t.flushTree(false) return err } @@ -1732,7 +1733,7 @@...
chore(embedded/tbtree): rebase non-indexed on kv syncthreshold
null
codenotary/immudb
Apache License 2.0
Go
@@ -353,6 +353,8 @@ public abstract class NodeUpdater implements FallibleCommand { // polyfill needed for FireFox et.al. at the moment defaults.put("construct-style-sheets-polyfill", "2.4.16"); + defaults.put("@vaadin/common-frontend", "0.0.16"); + return defaults; } @@ -381,7 +383,6 @@ public abstract class NodeUpdate...
chore: move to default deps
null
vaadin/flow
Apache License 2.0
Java
@@ -61,7 +61,7 @@ for SUITE_ITERATION in $(seq 1 "${MAX_TEST_SUITE_RETRIES}"); do set +e daemon -U --name sauce_connect -- ${SC_BINARY} \ - -B mercury-connection-a.wbx2.com,mercury-connection-intb.ciscospark.com \ + -B *.wbx2.com,*.ciscospark.com,idbroker.webex.com,127.0.0.1,localhost \ -t internal-testing-services.wbx...
chore: add domains to list of domains with no ssl bump
null
webex/webex-js-sdk
MIT License
Shell
@@ -13,9 +13,9 @@ internal enum ConfigurationConstants { // swiftlint:disable line_length /// Please use your own web server between your app and adyen checkout API. - static let demoServerEnvironment = DemoServerEnvironment.local + static let demoServerEnvironment = DemoServerEnvironment.test - static let componentsEn...
chore: revert environment to test in ConfigurationConstants
null
adyen/adyen-ios
MIT License
Swift
@@ -144,6 +144,7 @@ export class Intrinsics { public readonly '*': $String<'*'>; public readonly '*default*': $String<'*default*'>; public readonly 'default': $String<'default'>; + public readonly 'length': $String<'length'>; public readonly '@@asyncIterator': $Symbol<$String<'Symbol.asyncIterator'>>; public readonly '...
chore(intrinsics): add reusable length property string
null
aurelia/aurelia
MIT License
TypeScript
@@ -945,11 +945,16 @@ func (s *ImmuStore) DualProof(sourceTx, targetTx *Tx) (proof *DualProof, err err proof.BinaryInclusionProof = binInclusionProof } + if sourceTx.BlTxID > targetTx.BlTxID { + return nil, ErrorCorruptedTxData + } + if sourceTx.BlTxID > 0 { binConsistencyProof, err := s.aht.ConsistencyProof(sourceTx.B...
chore(embedded/store): add data consistency validation during dual proof construction
null
codenotary/immudb
Apache License 2.0
Go
@@ -7,17 +7,37 @@ export DEVELOPMENT_BRANCH=${DEVELOPMENT_BRANCH:-development} # #setup git git config --global user.email "noreply@travis.com" git config --global user.name "Travis CI" +apt install tree + +echo "Before building; inside app folder" +ls app +tree app +echo "-------" +ls app/build/outputs +echo "-------"...
chore: updating upload apk script
null
fossasia/pslab-android
Apache License 2.0
Shell
@@ -27,12 +27,6 @@ public final class AffirmComponent: AbstractPersonalInformationComponent, Observ /// :nodoc: internal let deliveryAddressItem: FormAddressItem - // MARK: - Properties - - private var isDeliveryAddressEnabled: Bool { - deliveryAddressToggleItem.value - } - // MARK: - Initializers /// Initializes the A...
chore: Use toggle value directly
null
adyen/adyen-ios
MIT License
Swift
@@ -22,7 +22,7 @@ export default class RoutingStore { @observable query = {}; /** - * + * The query params as a URL string. (i.e. `sortby=minPrice-asc&limit=60`) * * @type String */ @@ -41,13 +41,6 @@ export default class RoutingStore { @action updateRoute({ pathname, query }) { this.pathname = pathname; this.query = q...
chore: cleaning up routingStore code
null
reactioncommerce/example-storefront
Apache License 2.0
JavaScript
@@ -282,9 +282,10 @@ protected function installRootPackage(IOInterface $io, Config $config, $packageN // if no directory was specified, use the 2nd part of the package name if (null === $directory) { $parts = explode("/", $name, 2); - $directory = getcwd() . DIRECTORY_SEPARATOR . array_pop($parts); + $directory = array...
chore: Use consistent directory path
null
composer/composer
MIT License
PHP
@@ -6,7 +6,7 @@ pub type Selector = [u8; 4]; pub use ethabi::ethereum_types::H256 as TxHash; pub use ethabi::ethereum_types::{ - Address, Bloom, H128, H160, H256, H32, H512, H64, U128, U256, U64, + Address, BigEndianHash, Bloom, H128, H160, H256, H32, H512, H64, U128, U256, U64, }; pub mod transaction;
chore: reexport BigEndianHash
null
gakonst/ethers-rs
Apache License 2.0
Rust
@@ -435,6 +435,54 @@ export class $Object< this.propertyKeys.splice(idx, 1) } + public setDataProperty( + name: $String, + value: $AnyNonEmpty, + writable: boolean = true, + enumerable: boolean = false, + configurable: boolean = true, + ): void { + const realm = this.realm; + const intrinsics = realm['[[Intrinsics]]'];...
chore(aot): add some helper functions to $Object for intrinsics
null
aurelia/aurelia
MIT License
TypeScript
@@ -18,11 +18,8 @@ from bot.constants import ( Emojis, NEGATIVE_REPLIES, Tokens, - WHITELISTED_CHANNELS ) from bot.exts.core.extensions import invoke_help_command -from bot.utils.decorators import whitelist_override - log = logging.getLogger(__name__) GITHUB_API_URL = "https://api.github.com" @@ -195,40 +192,6 @@ class...
chore: Remove the .issue command
null
python-discord/sir-lancebot
MIT License
Python
@@ -18,7 +18,7 @@ import 'package:kraken/gesture.dart'; import 'package:kraken_websocket/kraken_websocket.dart'; import 'package:kraken_animation_player/kraken_animation_player.dart'; import 'package:kraken_video_player/kraken_video_player.dart'; -import 'package:kraken_webview/kraken_webview.dart'; +// import 'package...
chore: temp disable kraken_webview plugin
null
openkraken/kraken
Apache License 2.0
Dart
declare global { // eslint-disable-next-line @typescript-eslint/no-unused-vars interface Window { - __TAURI_IPC__: (message: any) => void, + __TAURI_IPC__: (message: any) => void ipc: { postMessage: (args: string) => void } @@ -76,14 +76,12 @@ async function invoke<T>(cmd: string, args: InvokeArgs = {}): Promise<T> { R...
chore(api): fix formatting
null
tauri-apps/tauri
Apache License 2.0
TypeScript
@@ -9,6 +9,12 @@ namespace PeanutButter.Utils #if BUILD_PEANUTBUTTER_INTERNAL internal #else + /// <summary> + /// Provides extension methods to set and retrieve metadata on any object. + /// Under the hood, these methods use a ConditionalWeakTable to store your + /// metadata, so the metadata is garbage-collected when...
chore: xml-doc for metadata extensions
null
fluffynuts/peanutbutter
BSD 3-Clause New or Revised License
C#
@@ -8,10 +8,10 @@ class AwsSamCli < Formula sha256 "a72c8c8fabab69478592a6cc7ebaafff32709353c291d45841413564ebcf9d28" head "https://github.com/awslabs/aws-sam-cli.git", :branch => "develop" bottle do - root_url "https://github.com/awslabs/aws-sam-cli/releases/download/v0.19.0/" + root_url "https://github.com/awslabs/aw...
chore: bottles for 0.21.0 release of AWS SAM CLI
null
aws/homebrew-tap
Apache License 2.0
Ruby
@@ -49,3 +49,9 @@ public enum TextStyle { } } } + +extension TextStyle: Equatable { + public static func == (lhs: TextStyle, rhs: TextStyle) -> Bool { + lhs.key == rhs.key && lhs.value == rhs.value + } +}
chore: add equatable function on TextStyle
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -14,8 +14,8 @@ module.exports = { ecmaVersion: 2017, // async is from ecma2017. Supported in node >=7.10 sourceType: 'module', // Allows for the use of imports ecmaFeatures: { - jsx: true // Allows for the parsing of JSX - } + jsx: true, // Allows for the parsing of JSX + }, }, // npm run lint runs eslint with --qui...
chore: increase maximum allowed complexity to 19 temporarily
null
hubtype/botonic
MIT License
JavaScript
@@ -73,7 +73,26 @@ Default.story = { parameters: { info: { - text: 'TODO', + propTables: [HotspotTextStyleTab], + text: `This is an example of the <HotspotTextStyleTab> HotSpot sub component. The state needs to be managed by the consuming application. + + ~~~js + const [formValues, setFormValues] = useState({}); + + re...
chore(hotspot-text-style-tab): updated documentation
null
carbon-design-system/carbon-addons-iot-react
Apache License 2.0
JavaScript
@@ -12,5 +12,5 @@ func Test(p *platform.Platform, test *console.TestResults) { } client, _ := p.GetClientset() - kommons.TestNamespace(client, Namespace, test) + kommons.TestDeploy(client, Namespace, "git-operator-controller-manager", test) }
chore: reduce scope of git operator test
null
flanksource/karina
Apache License 2.0
Go
@@ -58,10 +58,10 @@ EOF # poll for influx service ready set +e -result=$(ssh ubuntu@$ec2_ip "influx ping") -while [ "$result" != "OK" ]; do +result=$(ssh ubuntu@$ec2_ip "curl -s -o /dev/null http://localhost:8086/ready -w %{http_code}") +while [ "$result" != "200" ]; do sleep 2 - result=$(ssh ubuntu@$ec2_ip "influx pin...
chore: perftests should use API now that `influx` cmd is gone
null
influxdata/influxdb
MIT License
Shell