diff
stringlengths
12
9.3k
message
stringlengths
8
199
reasoning_trace
null
repo
stringlengths
6
68
license
stringclasses
3 values
language
stringclasses
16 values
@@ -92,11 +92,12 @@ abstract class OAuth * * @return array */ - protected function addScope(string $scope){ + protected function addScope(string $scope):OAuth{ // Add a scope to the scopes array if it isn't already present if (!in_array($scope, $this->scopes)){ $this->scopes[] = $scope; } + return $this; } /**
chore: support for chaining in addScope
null
appwrite/appwrite
BSD 3-Clause New or Revised License
PHP
import { addMigrationSteps } from './databaseMigration' import * as _ from 'underscore' -import { ShowStyleBases } from '../../lib/collections/ShowStyleBases' -import { Random } from 'meteor/random' +import { PeripheralDeviceAPI } from '../../lib/api/peripheralDevice' +import { setExpectedVersion } from './lib' // 0.22...
chore: upd expectedVersions
null
nrkno/tv-automation-server-core
MIT License
TypeScript
@@ -52,7 +52,7 @@ public interface ApplicationConfiguration extends AbstractConfiguration { + Lookup.class.getSimpleName() + " instance is not found in " + VaadinContext.class.getSimpleName() - + ". The instance is suppoed to be created by a ServletContainerInitializer. Issues known to cause this problem are:\n" + + "....
chore: Correct spelling mistake in `ApplicationConfiguration` exception message
null
vaadin/flow
Apache License 2.0
Java
@@ -393,6 +393,7 @@ const ValetudoAppBar: React.FunctionComponent<{ paletteMode: PaletteMode, setPal component="a" href="./swagger/" target="_blank" + rel="noopener" > <ListItemIcon> <SwaggerUIIcon/> @@ -405,6 +406,7 @@ const ValetudoAppBar: React.FunctionComponent<{ paletteMode: PaletteMode, setPal component="a" href=...
chore(ui): Add missing rel="noopener" tag to menu bar
null
hypfer/valetudo
Apache License 2.0
TypeScript
@@ -20,10 +20,12 @@ import {ReactEditor} from '@sanity/slate-react' import type {Patch} from '../types/patch' import {PortableTextEditor} from '../editor/PortableTextEditor' +/** @beta */ export interface EditableAPIDeleteOptions { mode?: 'blocks' | 'children' | 'selected' } +/** @beta */ export interface EditableAPI {...
chore(portable-text-editor): mark types with availablility status
null
sanity-io/sanity
MIT License
TypeScript
@@ -22,9 +22,17 @@ function log() { echo '\033[36m[post-release]\033[0m' "$@" } -log "Generating and committing changelog" +if [[ $(git diff --cached CHANGELOG.md) ]]; then + log "Found modified CHANGELOG; committing as-is" +else + if [[ $(git diff CHANGELOG.md) ]]; then + log "Found modified CHANGELOG; committing as-i...
chore: Support manually modifying changelog before post-release
null
material-components/material-components-web
MIT License
Shell
@@ -22,16 +22,13 @@ const String ENABLE_DEBUG = 'KRAKEN_ENABLE_DEBUG'; const String ENABLE_PERFORMANCE_OVERLAY = 'KRAKEN_ENABLE_PERFORMANCE_OVERLAY'; const String DEFAULT_URL = 'about:blank'; -const String _cssMimeType = 'text/css'; +final ContentType _cssContentType = ContentType('text', 'css', charset: 'utf-8'); // M...
chore: update bundle
null
openkraken/kraken
Apache License 2.0
Dart
@@ -17,7 +17,8 @@ interface MethodReturnTypeProviderInterface /** * @param array<PhpParser\Node\Arg> $call_args * @param ?array<Type\Union> $template_type_parameters - * + * @param lowercase-string $method_name_lowercase + * @param lowercase-string $called_method_name_lowercase * @return ?Type\Union */ public static fu...
chore: mark as lowercase string
null
vimeo/psalm
MIT License
PHP
@@ -26,19 +26,6 @@ fi CURRENT_BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi) -# Get commit diff -if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then - fileDiff=$(git diff --name-only $TRAVIS_COMMIT_RANGE) -else - fileDiff=$(git diff --name-only $TRAVIS...
chore(ci): remove diff check for next branch
null
akveo/nebular
MIT License
Shell
@@ -266,11 +266,15 @@ class BaseRecursiveDriver(BaseDriver): def _traverse_apply(self, docs, *args, **kwargs): """often useful when you delete a recursive structure """ - def post_traverse(_docs, recur_on, context_doc=None, depth_name='granularity', recur_start=0, recur_end=1): + def post_traverse(_docs, recur_on, cont...
chore: proper styling and add params to docstring
null
jina-ai/jina
Apache License 2.0
Python
@@ -660,8 +660,6 @@ void TopLevelWindow::SetMenu(v8::Isolate* isolate, v8::Local<v8::Value> value) { } void TopLevelWindow::RemoveMenu() { - mate::Handle<Menu> menu; - menu_.Reset(); window_->SetMenu(nullptr); }
chore: remove unused variable in removeWindow
null
electron/electron
MIT License
C++
@@ -755,7 +755,7 @@ class CardComponentTests: XCTestCase { let houseNumberItemView: FormTextInputItemView? = sut.viewController.view.findView(with: "Adyen.FormAddressItem.houseNumberOrName") let countryItemView: FormRegionPickerItemView? = sut.viewController.view.findView(with: "Adyen.FormAddressItem.country") let addr...
chore: Fix card component tests
null
adyen/adyen-ios
MIT License
Swift
@@ -40,7 +40,7 @@ export default function SimpleBar({ ...otherProps }) { const elRef = useRef(); - const scrollableNodeRef = scrollableNodeProps.ref || useRef(); + const scrollableNodeRef = useRef(); const contentNodeRef = useRef(); let options = {}; let rest = {}; @@ -66,11 +66,13 @@ export default function SimpleBar(...
chore(react): fix React Hook conditionally called
null
grsmto/simplebar
MIT License
JavaScript
@@ -53,17 +53,20 @@ export const TransactionConfirmationValuePanel = styled.div` min-width: 280px; height: 40px; background: white; - align-items: center; display: flex; color: #000000; border: 20px solid #f7f7f7; border-left: 10px solid transparent; border-right: 10px solid transparent; float: right; + position: relat...
chore: Update confirmation text position
null
nervosnetwork/ckb-explorer-frontend
MIT License
TypeScript
@@ -5,7 +5,7 @@ set -x sleep 15 -N_CONTAINERS_RUNNING=$(docker ps --filter "status=running" | grep vulas | awk '{print $1}' | wc -l) +N_CONTAINERS_RUNNING=$(docker ps --filter "status=running" | grep vulnerability-assessment-tool | awk '{print $1}' | wc -l) if [ ${N_CONTAINERS_RUNNING} -eq 7 ] then
chore(travis): update containers' liveliness check
null
eclipse/steady
Apache License 2.0
Shell
@@ -598,7 +598,7 @@ fn on_update_no_action_should_not_work_on_postgres_with_prisma_relation_mode() { "#}; let expected = expect![[r#" - error: Error validating: Invalid referential action: `NoAction`. Allowed values: (`Cascade`, `Restrict`, `SetNull`). `NoAction` is not implemented for Postgres when usin...
chore: updated error message in tests
null
prisma/prisma-engines
Apache License 2.0
Rust
@@ -289,12 +289,18 @@ class PreviewEnvironmentCodeEventListener( // update artifact reference if applicable to match the branch filter of the preview environment if (spec is ArtifactReferenceProvider) { + log.debug("Attempting to replace artifact reference for resource ${this.id}") previewResource = previewResource.wit...
chore(logs): Add more logging for preview resource handling
null
spinnaker/keel
Apache License 2.0
Kotlin
-import { useDeno } from 'aleph'; -import React, { useState } from 'react'; -import Logo from '../components/logo.tsx'; +import { useDeno } from 'aleph' +import React, { useState } from 'react' +import Logo from '../components/logo.tsx' export default function Home() { const [count, setCount] = useState(0) - const vers...
chore: update `hello-world` example
null
alephjs/aleph.js
MIT License
TypeScript
@@ -15,7 +15,10 @@ echo "Scan completed on . (root)" for folder in $packages; do echo "Starting scan on ./$folder ..." + echo "> ln -s yarn.lock ./$folder/yarn.lock" ln -s yarn.lock ./$folder/yarn.lock + ls -l ./$folder + echo "> ./srcclr.sh scan ./$folder" ./srcclr.sh scan ./$folder echo "Scan completed on ./$folder" ...
chore(ci): add logs in secu scan actions
null
talend/ui
Apache License 2.0
Shell
@@ -248,10 +248,12 @@ async def credential_definitions_send_credential_definition(request: web.BaseReq except (IndyIssuerError, LedgerError) as e: raise web.HTTPBadRequest(reason=e.message) from e + issuer_did = cred_def_id.split(":")[0] meta_data = { "context": { "schema_id": schema_id, "cred_def_id": cred_def_id, + "...
chore: consolidate cred_def metadata / cleanup
null
hyperledger/aries-cloudagent-python
Apache License 2.0
Python
@@ -3,6 +3,8 @@ set -e if [[ $CIRCLE_BRANCH != pull* ]] then + export PUBLISH_BRANCH=${PUBLISH_BRANCH:-master} + git config --global user.name "the-dagger" git config --global user.email "harshithdwivedi@gmail.com" @@ -12,6 +14,14 @@ then cp -r ${HOME}/${CIRCLE_PROJECT_REPONAME}/app/build/outputs/apk/app-release-unsign...
chore: Add fastlane integration
null
fossasia/susi_android
Apache License 2.0
Shell
@@ -33,12 +33,18 @@ fi PRs=$(git log --pretty=oneline "$BASE_TAG"..."$LATEST_TAG" | grep 'Merge pull request #' | grep -oE '#[0-9]+' | sed 's/#//') # Find fixed issues from $BASE_TAG to $LATEST_TAG +EXIT_CODE=0 ISSUES=() for pr in $PRs; do id=$($GHCLI_BIN pr view "$pr" --json body | grep -oE 'Related issues | (.*)?[0-9...
chore: skip invalid issues in issue tagging script
null
cloudskiff/driftctl
Apache License 2.0
Shell
@@ -32,7 +32,7 @@ tag_latest() { local base_image="$registry/cloudsql-docker/gce-proxy" if [ "$dry_run" != true ] then - gcloud container images add-tag "$base_image:$new_version" "$base_image:latest" + gcloud container images add-tag --quiet "$base_image:$new_version" "$base_image:latest" else echo [DRY RUN] gcloud co...
chore: Improve the tag_latest.sh kokoro script so that it doesn't prompt for confirmation while running
null
googlecloudplatform/cloud-sql-proxy
Apache License 2.0
Shell
@@ -9,6 +9,9 @@ import de.zalando.zally.util.getAllParameters import de.zalando.zally.util.getAllProperties import io.github.config4k.extract +/** + * Utility class for checking cases of strings against configured requirements. + */ class CaseChecker( val cases: Map<String, Regex>, val propertyNames: CaseCheck? = null,...
chore(server): Added doc comments to keep Codacy happy
null
zalando/zally
MIT License
Kotlin
/* - * Copyright 2011-2021 B2i Healthcare Pte Ltd, http://b2i.sg + * Copyright 2011-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. @@ -130,7 +130,7 @@ public class HashMapOptions extends Ha...
chore(common): remove unnecessary null checks and bump copyright
null
b2ihealthcare/snow-owl
Apache License 2.0
Java
@@ -77,9 +77,9 @@ async fn test_export() -> anyhow::Result<()> { r#"["test-29000-raft_log",{"Logs":{"key":0,"value":{"log_id":{"term":0,"index":0},"payload":{"Membership":{"configs":[[0]],"all_nodes":[0]}}}}}]"#, r#"["test-29000-raft_log",{"Logs":{"key":1,"value":{"log_id":{"term":1,"index":1},"payload":"Blank"}}}]"#, ...
chore: fixup export lint
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -27,7 +27,6 @@ const sortByPriceFunc = (quotes: QuoteBody[], direction) => (d1: DealerBody, d2: DealerBody) => { const d1Quote = quotes.find((quote) => quote.dealerId === d1.id) const d2Quote = quotes.find((quote) => quote.dealerId === d2.id) - console.log("direction: ", direction) if (!d2Quote) { return -1 } else i...
chore: highlight Adaptive row if present
null
adaptiveconsulting/reactivetradercloud
Apache License 2.0
TypeScript
@@ -64,7 +64,7 @@ public class FrontendTools { /** * This is the version that is installed if there is no node installed or * the installed version is older than {@link #SUPPORTED_NODE_VERSION}, i.e. - * {@value #SUPPORTED_NODE_VERSION}. + * {@value #SUPPORTED_NODE_MAJOR_VERSION}.{@value #SUPPORTED_NODE_MINOR_VERSION}....
chore: fix javadoc
null
vaadin/flow
Apache License 2.0
Java
@@ -72,6 +72,8 @@ internal final class QRCodeComponent: ActionComponent, Localizable, Cancellable let pollingComponent = pollingComponentBuilder.handler(for: action.paymentMethodType) pollingComponent.delegate = self + assert(presentationDelegate != nil) + presentationDelegate?.present( component: PresentableComponentW...
chore: Add assert to check if presentationDelegate is set for QRCodeComponent
null
adyen/adyen-ios
MIT License
Swift
@@ -58,10 +58,6 @@ public class FeatureFlags implements Serializable { "Use Webpack for front-end builds (Deprecated)", "webpackForFrontendBuild", "https://github.com/vaadin/flow/issues/13852", true, null); - public static final Feature SPREADSHEET_COMPONENT = new Feature( - "Spreadsheet component (Pro)", "spreadsheetC...
chore: remove spreadsheet feature flag
null
vaadin/flow
Apache License 2.0
Java
@@ -675,27 +675,7 @@ class CpuCompNodeImpl::CpuEventImpl final : public CpuDispatchableBase::EventImpl { #if MGB_HAVE_THREAD void host_wait_cv() override { - for (size_t i = 0, it = SCQueueSynchronizer::max_spin() / 20; i < it; - ++i) { - if (finished()) { - auto thread_pool = - static_cast<CpuCompNodeImpl*>(m_comp_nod...
chore(mbg/core): fix the repeat code
null
megengine/megengine
Apache License 2.0
C++
-import * as isCI from 'is-ci'; +// import * as isCI from 'is-ci'; -export const ignoredConnectors = isCI ? - ['chrome'] : - []; +export const ignoredConnectors = ['puppeteer'];
chore: Ignore tests in Puppeteer always
null
webhintio/hint
Apache License 2.0
TypeScript
@@ -11,7 +11,7 @@ import kotlin.math.max import kotlin.math.min /** - * Provides behavior to make the bottom navigation scroll down when the frame above it scrolls + * Provides behavior to make the bottom navigation scroll down when the frame above it scrolls. */ @Suppress("UNUSED") class BottomNavigationBehavior<V : V...
chore(detekt): fix some detekt issues in the bottom navigation class that was added
null
chesire/nekome
Apache License 2.0
Kotlin
@@ -43,6 +43,9 @@ for dir in $(find packages -name dist | grep -v node_modules | grep -v run-wrapp rsync -av $dir/ ${distdir}/ done +# Remove a JSII aggregate POM that may have snuk past +rm -rf dist/java/software/amazon/jsii + # Get version from lerna version="$(cat ${root}/lerna.json | grep version | cut -d '"' -f4)"...
chore: remove jsii aggreatepom from distribution artifacts
null
aws/aws-cdk
Apache License 2.0
Shell
@@ -53,7 +53,7 @@ extension CardViewController { let identifier = ViewIdentifierBuilder.build(scopeInstance: scope, postfix: "billingAddress") let initialCountry = shopperInformation?.billingAddress?.country ?? defaultCountryCode - let item = FormAddressItem(initialCountry: defaultCountryCode, + let item = FormAddressI...
chore: Restore country code prefilling
null
adyen/adyen-ios
MIT License
Swift
@@ -17,9 +17,6 @@ const xml2js = require("xml2js"); const period = process.argv[2] ? process.argv[2].split(":") : [,]; const changelog = { - // github issue URL - issueURL: "https://github.com/naver/billboard.js/issues", - // Commit log tag filtering types for changelog filterType: { feat: "Features", @@ -195,7 +192,7 ...
chore(changelog): use packages's bug url
null
naver/billboard.js
MIT License
JavaScript
+set -e + +if [[ -z $1 ]]; then + echo "Enter new version: " + read VERSION +else + VERSION=$1 +fi + +read -p "Releasing $VERSION - are you sure? (y/n) " -n 1 -r +echo +if [[ $REPLY =~ ^[Yy]$ ]]; then + echo "Releasing $VERSION ..." + + npm run test + + # build + npm run build + + # commit + git add -A + git add -f \ +...
chore: add release script to server-test-utils
null
vuejs/vue-test-utils
MIT License
Shell
@@ -22,20 +22,11 @@ func Trace() gin.HandlerFunc { opentracing.SetGlobalTracer(tracer) var sp opentracing.Span - clientSpanCtx, err := tracing.Extract(tracer, c.Request) - if err != nil { - // root span - sp = tracer.StartSpan(c.Request.URL.Path) - sp.SetTag("error", err) - } else { - // child span - sp = tracer.StartS...
chore: update trace
null
go-eagle/eagle
MIT License
Go
@@ -10,7 +10,9 @@ if [[ $COMPILER == xcode10 ]]; then elif [[ $COMPILER == xcode11 ]]; then XCODE_PATH="/Applications/Xcode_11.7.app" elif [[ $COMPILER == xcode12 ]]; then - XCODE_PATH="/Applications/Xcode_12.3.app" + XCODE_PATH="/Applications/Xcode_12.5.1.app" +elif [[ $COMPILER == xcode13 ]]; then + XCODE_PATH="/Appl...
chore: add support for XCode 12 and 13 through CI
null
nfrechette/acl
MIT License
Shell
@@ -3,7 +3,6 @@ import logging import os import sys - LOGGER = logging.getLogger(__name__) LOGGER.addHandler(logging.NullHandler()) @@ -40,6 +39,7 @@ MANIFEST = { MANIFEST_FILE_NAME = 'py.json' EXECUTORS_DIR_NAME = 'executors' + class ManifestManager: @staticmethod def user_dir():
chore: PEP8 linting
null
stencila/stencila
Apache License 2.0
Python
@@ -11,7 +11,6 @@ import Icon from "./Icon"; import Image from "./Image"; import SchemaFormUtil from "../utils/SchemaFormUtil"; import SchemaUtil from "../utils/SchemaUtil"; -import ScrollbarUtil from "../utils/ScrollbarUtil"; import TabForm from "./TabForm"; import Util from "../utils/Util"; @@ -61,24 +60,6 @@ class S...
chore: remove dead broken code
null
dcos/dcos-ui
Apache License 2.0
JavaScript
@@ -201,6 +201,7 @@ declare interface Context { getLayer: (type: LayerType, key: string) => string getConfigValue: (key: string, defaultValue?: any) => any getValueByPath: (sourceObject: object | undefined, pathToAttributeInObject: string, defaultValue?: any) => any + iterateDeeply: (obj: any, iteratee: (val: any, key?...
chore: added typing to editor
null
nrkno/tv-automation-server-core
MIT License
TypeScript
@@ -15,7 +15,6 @@ internal final class FormCardInstallmentsItemView: BaseFormPickerItemView<Instal stackView.axis = .vertical stackView.spacing = 8 addSubview(stackView) - stackView.translatesAutoresizingMaskIntoConstraints = false stackView.preservesSuperviewLayoutMargins = true stackView.isLayoutMarginsRelativeArrang...
chore: Unneeded mask translation in card installments
null
adyen/adyen-ios
MIT License
Swift
@@ -16,6 +16,7 @@ import StemmerUk from '@nlpjs/lang-uk/src/stemmer-uk' import { Locale, rootLocale } from './locales' import { StemmerPl } from './stemmers/polish-stemmer' import { StemmerHr } from './stemmers/stemmer-hr' +import { StemmerSk } from './stemmers/stemmer-sk' // see https://github.com/axa-group/nlp.js/blo...
chore(nlp): Slovak tokenizer (wip)
null
hubtype/botonic
MIT License
TypeScript
@@ -172,6 +172,10 @@ func (hdr *TxHeader) ReadFrom(b []byte) error { hdr.ID = binary.BigEndian.Uint64(b[i:]) i += txIDSize + if hdr.ID < 1 { + return fmt.Errorf("%w: invalid tx ID", ErrIllegalArguments) + } + copy(hdr.PrevAlh[:], b[i:]) i += sha256.Size @@ -219,6 +223,10 @@ func (hdr *TxHeader) ReadFrom(b []byte) error...
chore(embedded/store): tx parsing with sanity checks
null
codenotary/immudb
Apache License 2.0
Go
@@ -72,7 +72,7 @@ let package = Package( .package( name: \"Adyen3DS2\", url: \"https://github.com/Adyen/adyen-3ds2-ios\", - .exact(Version(2, 2, 5)) + .exact(Version(2, 3, 0)) ), .package( name: \"AdyenNetworking\",
chore: fixing the generate documentation script
null
adyen/adyen-ios
MIT License
Shell
@@ -7,8 +7,8 @@ import Error from '../../components/Error' import Content from '../../components/Content' import { useAppState, useDispatch } from '../../contexts/providers/index' import { PageActions, AppActions } from '../../contexts/actions' -import { getAddress, getTipBlockNumber } from '../../service/app/address' ...
chore: Remove tip number request
null
nervosnetwork/ckb-explorer-frontend
MIT License
TypeScript
@@ -8,6 +8,48 @@ import StateCombined from './state-combined' import statesStyle from './states.module.scss' +const generateStates = ( + separateStates, + combinedStates, + separateTestHosp, + combinedTestHosp, +) => { + const states = [] + + separateStates.forEach(state => { + let testHospData + separateTestHosp.every...
chore(crdt): refactor states data combination
null
covid19tracking/website
Apache License 2.0
JavaScript
@@ -619,7 +619,7 @@ mod tests { // update this test whenever there's a new sol // version. that's ok! good reminder to check the // patch notes. - (">=0.5.0", "0.8.10"), + (">=0.5.0", "0.8.11"), // range (">=0.4.0 <0.5.0", "0.4.26"), ]
chore(solc): bump latest solc version
null
gakonst/ethers-rs
Apache License 2.0
Rust
@@ -362,7 +362,6 @@ export function findByDateRange( const filterFn = Collection.and(...[getEventInDateRangeFilter(start, end)].concat(andFilters)); const uiModelColl = convertToUIModel(events.filter(filterFn)); - // @TODO @dotaitch need to test const group: Record<string, Collection<EventUIModel>> = uiModelColl.groupB...
chore: remove a comment
null
nhn/tui.calendar
MIT License
TypeScript
@@ -819,7 +819,7 @@ async def api_get_match( async def api_get_global_leaderboard( sort: Literal["tscore", "rscore", "pp", "acc", "plays", "playtime"] = "pp", mode_arg: int = Query(0, alias="mode", ge=0, le=11), - limit: int = Query(25, ge=1, le=100), + limit: int = Query(50, ge=1, le=100), offset: int = Query(0, min=0...
chore(api): change default player count on lb from 25 to 50
null
osuakatsuki/bancho.py
MIT License
Python
@@ -93,6 +93,31 @@ stories.add('wrapping a MultiInputText', () => ({ }, })); +stories.add('wrapping a MultiInputText with multi variable', () => ({ + template: ` + <div> + <MultiInputText + v-model="value" + :available-variables="availableVariables" + :multiVariable="true" + :variableDelimiters="variableDelimiters" /> ...
chore: add story book for multi variable input with multitext widget
null
toucantoco/weaverbird
BSD 3-Clause New or Revised License
JavaScript
@@ -32,7 +32,7 @@ internal final class StoredCardAlertManager: NSObject, UITextFieldDelegate, Adye // MARK: - CVC length - private var minCharactersCount: Int { + private var cvvLenght: Int { switch paymentMethod.brand { case .americanExpress: return 4 @@ -41,8 +41,6 @@ internal final class StoredCardAlertManager: NSOb...
chore: Fix max cvv length validation
null
adyen/adyen-ios
MIT License
Swift
@@ -330,20 +330,12 @@ JSValueRef requestAnimationFrame(JSContextRef ctx, JSObjectRef function, JSObjec return JSValueMakeNumber(ctx, requestId); } -JSValueRef reloadApp(JSContextRef ctx, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, - const JSValueRef *arguments, JSValueRef *exception) { - auto co...
chore: remove reload() in timer
null
openkraken/kraken
Apache License 2.0
C++
@@ -38,7 +38,9 @@ CURRENT_BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRA if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then fileDiff=$(git diff --name-only $TRAVIS_COMMIT_RANGE) else - fileDiff=$(git diff --name-only $TRAVIS_BRANCH...HEAD) + git remote set-branches --add origin $TRAVIS_BRANCH + gi...
chore(ci): change diff code for non pr branches
null
akveo/nebular
MIT License
Shell
@@ -7,7 +7,7 @@ import Entity from './Entity'; // import Relation from './Relation'; export default class EREditorDemo extends React.PureComponent<{}, {}> { - calReanderData = () => { + calRenderData = () => { const nodes: NodeConfig[] = mockEntityData.map( (entity: EntityCanvasModel) => { const { entityId, x, y, width...
chore: function name typo in ER example code
null
antvis/x6
MIT License
TypeScript
@@ -130,9 +130,7 @@ class _ProductQueryPageState extends State<ProductQueryPage> final Widget emptiness, { final List<Widget>? actions, }) => - // TODO(monsieurtanuki): remove the ScaffoldMessenger as we don't need it (but that will change the format) - ScaffoldMessenger( - child: SmoothScaffold( + SmoothScaffold( appB...
chore: productQueryPage - refactored without ScaffoldMessenger
null
openfoodfacts/smooth-app
Apache License 2.0
Dart
@@ -36,7 +36,7 @@ extension APIRequest { /// This bit of code is purposed to work with literal types that comes in ``Response`` in hexString type. /// Currently it's just `Data` and any kind of Integers `(U)Int`, `Big(U)Int`. - if Result.self == Data.self || Result.self == UInt.self || Result.self == Int.self || Result...
chore: removed String.self type from if statement parsing API responses
null
skywinder/web3swift
Apache License 2.0
Swift
@@ -441,7 +441,7 @@ class BaseDocument(object): key_name=%s AND Non_unique=0 - """, key_name)[0][4] + """, key_name, as_dict=True)[0].get("Column_name") def get_label_from_fieldname(self, fieldname): """Returns the associated label for fieldname
chore: use dict instead of index
null
frappe/frappe
MIT License
Python
@@ -18,7 +18,7 @@ defmodule Ash.Flow.Step.Validate do links: [] ], only_keys: [ - type: {:list_of, {:or, [:atom, {:list_of, :atom}]}}, + type: {:list, {:or, [:atom, {:list, :atom}]}}, doc: """ If the keys are set, the step will succeed as long as there are no errors for those specific fields. Additionally, only errors ...
chore: don't use `list_of` syntax
null
ash-project/ash
MIT License
Elixir
@@ -295,7 +295,7 @@ impl ShowCommand { } } -/// Currently, these commands just delegates to the `documents` module +/// Currently, these commands simply delegate to the `documents` module type ConvertCommand = documents::cli::Convert; type DiffCommand = documents::cli::Diff; type MergeCommand = documents::cli::Merge;
chore(CLI): Fix comment
null
stencila/stencila
Apache License 2.0
Rust
@@ -20,6 +20,7 @@ use Thunder\Shortcode\Shortcode\ShortcodeInterface; // Shortcode: php // Usage: (php) php code here (/php) +// (php) php code here parsers()->shortcodes()->addHandler('php', static function (ShortcodeInterface $s) { if (! registry()->get('flextype.settings.parsers.shortcodes.shortcodes.php.enabled')) ...
chore(shortcodes): doc update for `php` shortcode
null
flextype/flextype
MIT License
PHP
@@ -215,10 +215,14 @@ ffi_fn! { } ffi_fn! { - /// Set the provider state for the Pact verifier. - /// - /// `teardown` is a boolean value. Set it to greater than zero to turn the option on. - /// `body` is a boolean value. Set it to greater than zero to turn the option on. + /// Set the provider state URL for the Pact ...
chore: correct FFI function doc comments
null
pact-foundation/pact-reference
MIT License
Rust
@@ -28,7 +28,7 @@ questions() { title_msg "Welcome to the MoonCord Installer, as soon as you finished the answers the Installation will start." - if [ "$MCCONFIGPATH" == "/home/$(whoami)/klipper_config" ]; + if [ "$MCCONFIGPATH" == "/home/$(whoami)/printer_data/config" ]; then status_msg "Please enter your Klipper Conf...
chore: update install script to the new klipper storage location
null
eliteschwein/mooncord
MIT License
Shell
@@ -79,15 +79,6 @@ impl AnyEvent<'_> { pub fn verification_content(&self) -> Option<AnyVerificationContent<'_>> { match self { AnyEvent::Room(e) => match e { - AnyMessageLikeEvent::CallAnswer(_) - | AnyMessageLikeEvent::CallInvite(_) - | AnyMessageLikeEvent::CallHangup(_) - | AnyMessageLikeEvent::CallCandidates(_) - | ...
chore(crypto): Remove redundant match arms
null
matrix-org/matrix-rust-sdk
Apache License 2.0
Rust
'use strict'; // eslint-disable-next-line import/order -const semver = require('semver'); const environmentUtil = require('./environment'); const uninstrumented = require('./uninstrumentedHttp'); @@ -18,7 +17,6 @@ const layerExtensionPort = 7365; let useLambdaExtension = false; const timeoutEnvVar = 'INSTANA_TIMEOUT'; ...
chore: removed node version checks in serverless/src/backend_connector.js
null
instana/nodejs-sensor
MIT License
JavaScript
@@ -65,7 +65,7 @@ class AnalyzeTest extends LanguageTestCase $info = $result->info(); foreach ($expectedValues as $key => $expected) { - $this->assertEquals($expected, $info[$key]); + $this->assertEqualsWithDelta($expected, $info[$key], 0.2); } } @@ -147,17 +147,15 @@ class AnalyzeTest extends LanguageTestCase if ($ent...
chore(tests): migrate scores and assertEquals to assertEqualsWithDelta
null
googleapis/google-cloud-php
Apache License 2.0
PHP
@@ -38,7 +38,7 @@ public protocol TelemetryTrackerProtocol { /// : nodoc: extension AnalyticsProvider: TelemetryTrackerProtocol { - func trackTelemetryEvent(flavor: TelemetryFlavor) { + internal func trackTelemetryEvent(flavor: TelemetryFlavor) { guard configuration.isEnabled else { return } guard configuration.isTelem...
chore: Made trackTelemetryEvent method internal
null
adyen/adyen-ios
MIT License
Swift
@@ -21,7 +21,7 @@ function removeAutoFillBackground() { &:-webkit-autofill:hover, &:-webkit-autofill:focus, &:-webkit-autofill:active { - -webkit-transition: background-color 9999s ease-out; + transition: background-color 9999s ease-out; } filter: none; // Firefox
chore(TextInput): Remove unnecessary CSS property prefix
null
royal-navy/design-system
Apache License 2.0
TypeScript
@@ -40,7 +40,7 @@ const FAQ = () => ( </div> <div className='CTA'> - <Link to='/faq'>See complete FAQ</Link>, <a href='mailto:hello@syncano.com'>ask your own question</a>, <a href='https://syncano.github.io/syncano-node-cli/#/'>read the docs</a> to get instant answers. + <a href='https://syncano.github.io/syncano-node-...
chore(component): reformat text
null
syncano/website
MIT License
JavaScript
@@ -156,17 +156,17 @@ public class EsDocumentWriter implements Writer { final BulkProcessor processor = client.bulk(new BulkProcessor.Listener() { @Override public void beforeBulk(long executionId, BulkRequest request) { - admin.log().debug("Sending bulk request {}", request.numberOfActions()); + admin.log().debug("Sen...
chore(log): improve log trace messages when sending bulk requests to ES
null
b2ihealthcare/snow-owl
Apache License 2.0
Java
<div> <label for="{{ $id }}" class="flex items-center {{ $errors->has($name) ? 'text-negative-600':'' }}"> @if ($leftLabel) - <x-label class="mr-2" :label="$leftLabel" :has-error="$errors->has($name)" /> + <x-label class="mr-2" :for="$id" :label="$leftLabel" :has-error="$errors->has($name)" /> @endif <input {{ $attribu...
chore: add id on label to use focus
null
wireui/wireui
MIT License
PHP
@@ -7,7 +7,7 @@ import '../stories_lib/story.dart'; class SignInScreenStory extends StoryWidget { const SignInScreenStory({Key? key}) - : super(key: key, category: 'Screens', title: 'SignInSceen'); + : super(key: key, category: 'Screens', title: 'SignInScreen'); @override Widget build(StoryElement context) {
chore(flutterfire_ui): Fix a typo in the word "Screen" in storybook example
null
firebaseextended/flutterfire
BSD 3-Clause New or Revised License
Dart
@@ -28,12 +28,12 @@ var ( ) var commands = map[string]cmd.Cmd{ - "tns": cmd.Cmd{ + "tns": { Blurb: "run a tns daemon or client", Description: "allows running a tns daemon to manage a zone, or a client to query a dameon", ChildRequired: true, Children: map[string]cmd.Cmd{ - "daemon": cmd.Cmd{ + "daemon": { Blurb: "run t...
chore: satisfy gofmt
null
rtradeltd/temporal
MIT License
Go
@@ -14,6 +14,8 @@ INSTALL_REQUIRES = [ "scikit-learn;python_version>='3.5'", "scikit-learn==0.20.3;python_version<'3.5'", # The latest version which supports Python 2.7 "scipy==1.1.0", + "sklearn", + "matplotlib", ] setup( name="dbnd-examples",
chore: add sklearn and matplotlib to dbnd-examples requirements
null
databand-ai/dbnd
Apache License 2.0
Python
@@ -292,7 +292,7 @@ function removeMapping (mappingId: string): MigrationStepBase { if (!studio) return 'Studio not found' let dbMapping = studio.mappings[mappingId] - if (dbMapping) return `Mapping ${mappingId} exists` + if (dbMapping) return `Mapping ${mappingId} exists, but should be removed` return false }, @@ -841...
chore: migration steps for pharos
null
nrkno/tv-automation-server-core
MIT License
TypeScript
@@ -172,6 +172,15 @@ func (d *db) initSQLEngine() error { return err } + // Warn about existent SQL data + exists, err := d.st.ExistKeyWith(append([]byte{SQLPrefix}, []byte("ROW.")...), nil, false) + if err != nil { + return err + } + if exists { + d.Logger.Warningf("Existent SQL data won't be automatically migrated. P...
chore(pkg/database): warn about data migration needed
null
codenotary/immudb
Apache License 2.0
Go
@@ -40,7 +40,6 @@ internal final class WrapperViewController: UIViewController { guard let view = child.viewIfLoaded, let window = UIApplication.shared.keyWindow else { return } let finalFrame = child.finalPresentationFrame(in: window, keyboardRect: keyboardRect) topConstraint?.constant = finalFrame.origin.y - view.set...
chore: removed the unnecessary setNeedsLayout() in WrapperViewController
null
adyen/adyen-ios
MIT License
Swift
@@ -15,7 +15,7 @@ fi npm run build rm -rf deploy mkdir deploy -cp -R dist LICENSE package.json deploy +cp -R dist i18n LICENSE package.json deploy cp "build/README-$1.md" deploy/README.md node_modules/git-directory-deploy/bin/git-directory-deploy.sh -ddeploy -bmaster "-rgit@github.com:quasarframework/quasar-$1.git" rm ...
chore: Add i18n to quasar-future
null
quasarframework/quasar
MIT License
Shell
def make_required_install_packages(): return [ - # Explicity add google-api-core as a dependancy to avoid conflict - # between kfp & aiplatform. - "google-api-core<2dev,>=1.26.0", + # Pin google-api-core version for the bug fixing in 1.31.5 + # https://github.com/googleapis/python-api-core/releases/tag/v1.31.5 + "googl...
chore(components): bump google-api-core version to 2.0+
null
kubeflow/pipelines
Apache License 2.0
Python
@@ -498,7 +498,7 @@ export class ValidationController implements IValidationController { expression = (expression as AccessMemberExpression | AccessKeyedExpression).object; } if (expression === void 0) { - throw new Error(`Unable to parse binding expression: ${expression}`); // TODO use reporter/logger + throw new Erro...
chore(validation): correction
null
aurelia/aurelia
MIT License
TypeScript
@@ -7,8 +7,6 @@ export default ({children, opengraph}) => ( <link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700' rel='stylesheet' /> {children} - {console.log(opengraph === true)} - {opengraph === true ? ([ <meta key='og:image' property='og:image' content='https://www.syncano.io/static/img/og-ima...
chore(view): update landing content
null
syncano/website
MIT License
JavaScript
@@ -75,7 +75,7 @@ const writeThemesInDemoFolders = async themes => { }) const paths = await globby( [path.join(process.cwd(), 'demo', '**', '**'), '!**/node_modules/**'], - {onlyDirectories: true} + {onlyDirectories: true, cwd: process.cwd()} ) paths.filter(p => p.match(/\/demo\/\w+\/\w+$/)).forEach(async demo => { try...
chore(Root): add globby cwd option
null
sui-components/sui-components
MIT License
JavaScript
@@ -241,6 +241,7 @@ public class FetchAndLockHandlerTest { inOrder.verify(asyncResponse4).resume(Collections.emptyList()); } + @Ignore("CAM-8440") @Test public void shouldResumeRequestWithAvailableResultFirst() throws InterruptedException { // given @@ -300,6 +301,7 @@ public class FetchAndLockHandlerTest { } } + @Igno...
chore(engine-rest): ignore failing test case related to long-polling
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -23,7 +23,7 @@ func (e CsvLineError) Error() string { return fmt.Sprintf("%v", e.Err) } -// CreateRowColumnError creates adds row number and column name to the error supplied +// CreateRowColumnError wraps an existing error to add line and column coordinates func CreateRowColumnError(line int, columnLabel string, er...
chore(pkg/csv2lp): improve doc
null
influxdata/influxdb
MIT License
Go
@@ -9,16 +9,17 @@ pub(crate) struct ProfileChannelListener<T: TrustPolicy, P: ProfileTrait, V: XXV trust_policy: T, profile: P, vault: V, - listener_address: Option<Address>, + listener_address: Address, } impl<T: TrustPolicy, P: ProfileTrait, V: XXVault> ProfileChannelListener<T, P, V> { pub fn new(trust_policy: T, pr...
chore(rust): make listener_address in profile channel listener non optional
null
ockam-network/ockam
Apache License 2.0
Rust
@@ -11,14 +11,14 @@ use RuntimeException; class AuditableTest extends AbstractTestCase { /** - * Test the Auditable toAudit() method to FAIL (Invalid event). + * Test the Auditable toAudit() method to FAIL (Invalid audit event). * * @expectedException RuntimeException * @expectedExceptionMessage A valid audit event mus...
chore(Auditable): rename test methods
null
owen-it/laravel-auditing
MIT License
PHP
@@ -107,6 +107,9 @@ for DASHBOARD_VERSION in ${DASHBOARD_VERSIONS}; do CONTAINER_IMAGE="k8s.gcr.io/kubernetes-dashboard-amd64:v${DASHBOARD_VERSION}" pullContainerImage "docker" ${CONTAINER_IMAGE} echo " - ${CONTAINER_IMAGE}" >> ${VHD_LOGS_FILEPATH} + CONTAINER_IMAGE="mcr.microsoft.com/oss/kubernetes/kubernetes-dashboar...
chore: pre-pull addon images hosted in MCR
null
azure/aks-engine
MIT License
Shell
@@ -5,7 +5,7 @@ use crate::{ utils::id, }; -pub use ethabi::{Contract as Abi, *}; +pub use ethabi::{self, Contract as Abi, *}; mod tokens; pub use tokens::{Detokenize, InvalidOutputType, Tokenizable, TokenizableItem, Tokenize};
chore: reexport ethabi module
null
gakonst/ethers-rs
Apache License 2.0
Rust
@@ -37,7 +37,7 @@ function pub_pypi { clean_build cp extra-requirements.txt jina/resources/ python setup.py sdist -# twine upload dist/* + twine upload dist/* clean_build }
chore: fix release note script
null
jina-ai/jina
Apache License 2.0
Shell
@@ -11,6 +11,7 @@ module.exports = function(grunt, isCeEdition) { if (!isCeEdition) { libDir = '..'; + libs.push('../camunda-commons-ui/node_modules/camunda-bpm-sdk-js/vendor/fast-xml-parser'); libs.push('../camunda-commons-ui/node_modules/camunda-bpm-sdk-js/vendor/superagent'); libs.push('../camunda-bpm-sdk-js/vendor/...
chore(deps): add transpilation for fast-xml-parser
null
camunda/camunda-bpm-platform
Apache License 2.0
JavaScript
x-transition:leave="transition ease-in duration-75" x-transition:leave-start="transform opacity-100 scale-100" x-transition:leave-end="transform opacity-0 scale-95" - class="{{ $getAlign() }} absolute mt-2 w-56" + class="{{ $getAlign() }} z-30 absolute mt-2 w-56" style="display: none;" @unless($persistent) x-on:click="...
chore: add z-index
null
wireui/wireui
MIT License
PHP
@@ -18,7 +18,7 @@ use iox_catalog::interface::{Catalog, Transaction}; use iox_object_store::ParquetFilePath; use metric::{Attributes, Metric, U64Counter, U64Gauge, U64Histogram, U64HistogramOptions}; use object_store::DynObjectStore; -use observability_deps::tracing::{info, warn}; +use observability_deps::tracing::{deb...
chore: add compactor logs
null
influxdata/influxdb_iox
Apache License 2.0
Rust
@@ -4,9 +4,9 @@ import logging import random from io import BytesIO +from PIL import Image, ImageColor from discord import Embed, File from discord.ext import commands -from PIL import Image, ImageColor from rapidfuzz import process from bot.bot import Bot
chore: fix import order due to isort
null
python-discord/sir-lancebot
MIT License
Python
+#!/usr/bin/env bash + +TOOLCHAIN_VERSION="${1:-nightly-$(date +%Y-%m-%d)}" + +echo "Usage: $0 [-h [<TOOLCHAIN_VERSION>]" + +echo "Update to Nix rust toolchain version ${TOOLCHAIN_VERSION}" +set +e +NIX_TOOLCHAIN_HASH="$(nix-shell 2>&1 | grep 'got:' | cut -d: -f2 | tr -d '[:blank:]')" +set -e +if [[ $NIX_TOOLCHAIN_HASH...
chore(deps): add script to update nix rust toolchain
null
enarx/enarx
Apache License 2.0
Shell
@@ -1478,7 +1478,7 @@ public class HistoricProcessInstanceTest extends PluggableProcessEngineTestCase } @Test - public void testHistoricProcInstQueryWithActiveActivityIdsAndProcessDefinitionKey() { + public void testQueryByActiveActivityIdInAndProcessDefinitionKey() { // given deployment(ProcessModels.ONE_TASK_PROCESS)...
chore(test): rename test methods
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
*/ package com.ibm.watson.discovery.v2.model; +import com.google.gson.annotations.JsonAdapter; import com.ibm.cloud.sdk.core.service.model.GenericModel; +import com.ibm.watson.discovery.v2.query.AggregationDeserializer; /** * An abstract aggregation type produced by Discovery to analyze the input provided. */ +@JsonAda...
chore(Discovery v2): Apply manual changes
null
watson-developer-cloud/java-sdk
Apache License 2.0
Java
@@ -347,6 +347,7 @@ const enhance = ( new Enhancer(elements, format) // Add the data-ignore='global-h2-styling' attribute .removeGlobalH2Styles() + // Add styling to h3 tags .addH3Spacing() // Add item links .addItemLinks()
chore: Remove h3 enhancement fro numbered list
null
guardian/dotcom-rendering
Apache License 2.0
TypeScript
@@ -258,3 +258,13 @@ fn load_ocsp(filename: &Option<PathBuf>) -> anyhow::Result<Vec<u8>> { Ok(ret) } + +#[cfg(test)] +mod test { + use super::*; + + #[test] + fn test_valid_opt() { + assert!(Opt::try_parse_from(Some("")).is_ok()); + } +}
chore(http): add test for validity of cli
null
meilisearch/meilisearch
MIT License
Rust
@@ -22,8 +22,8 @@ var ( rootCmd = &cobra.Command{ Use: "eagle", - Short: "Eagle: A development framework for Go microservices.", - Long: `Eagle: A development framework for Go microservices.`, + Short: "Eagle: A microservice framework for Go", + Long: `Eagle: A microservice framework for Go`, Version: Version, } )
chore: modify description about eagle
null
go-eagle/eagle
MIT License
Go