diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -304,6 +304,10 @@ impl ClientBuilder {
"https://testnet.explorer.emerald.oasis.dev/api",
"https://testnet.explorer.emerald.oasis.dev/",
),
+ Chain::Aurora => urls("https://api.aurorascan.dev/api", "https://aurorascan.dev"),
+ Chain::AuroraTestnet => {
+ urls("https://testnet.aurorascan.dev/api", "https://testnet.aur... | chore: add aurora etherscan endpoints | null | gakonst/ethers-rs | Apache License 2.0 | Rust |
@@ -1466,7 +1466,7 @@ mod tests {
use super::{IndexeddbStore, Result};
async fn get_store() -> Result<IndexeddbStore> {
- let db_name = format!("test-state-plain-{}", Uuid::new_v4().as_hyphenated().to_string());
+ let db_name = format!("test-state-plain-{}", Uuid::new_v4().as_hyphenated());
Ok(IndexeddbStore::open_help... | chore(indexeddb): Remove unnecessary .to_string() call in test code | null | matrix-org/matrix-rust-sdk | Apache License 2.0 | Rust |
@@ -5,15 +5,21 @@ use crate::AttributeDiscription;
macro_rules! trait_methods {
(
@base
+
+ $(#[$trait_attr:meta])*
+ $trait:ident;
$(
$(#[$attr:meta])*
$name:ident $(: $($arg:literal),*)*;
)+
) => {
+ $(#[$trait_attr])*
+ pub trait $trait {
$(
$(#[$attr])*
const $name: AttributeDiscription = trait_methods! { $name $(:... | chore: adjust attribute macro | null | dioxuslabs/dioxus | Apache License 2.0 | Rust |
import Foundation
+print(CommandLine.arguments)
+
+if CommandLine.arguments[1] == "--help" || CommandLine.arguments[1] == "-h" {
+ print(
+"""
+OVERVIEW: Generates localization keys as constants.
+
+USAGE: ./generate_localization_keys.swift <path-to-localizable.strings> <path-to-output-file>
+
+ARGUMENTS:
+ <path-to-lo... | chore: Add --help option to generate_localization_keys script | null | adyen/adyen-ios | MIT License | Swift |
@@ -2,12 +2,15 @@ package endpoint_test
import (
"encoding/json"
+ "fmt"
"net/http"
+ "net/url"
"testing"
"time"
"github.com/google/go-cmp/cmp"
"github.com/influxdata/influxdb/v2"
+ "github.com/influxdata/influxdb/v2/kit/errors"
"github.com/influxdata/influxdb/v2/mock"
"github.com/influxdata/influxdb/v2/notification/en... | chore: Format of url.Error message has changed | null | influxdata/influxdb | MIT License | Go |
@@ -3,6 +3,8 @@ package telegram
import (
"context"
+ "golang.org/x/xerrors"
+
"github.com/gotd/td/tg"
)
@@ -16,5 +18,9 @@ func (c *Client) AuthBot(ctx context.Context, token string) (*tg.User, error) {
if err != nil {
return nil, err
}
- return checkAuthResult(auth)
+ user, err := checkAuthResult(auth)
+ if err != nil... | chore: also wrap error in AuthBot | null | gotd/td | MIT License | Go |
@@ -203,7 +203,7 @@ func (txr *TxReplicator) replicateSingleTx(data []byte) bool {
// replication must be retried as many times as necessary
for {
- _, err := txr.db.ReplicateTx(context.Background(), data)
+ _, err := txr.db.ReplicateTx(txr.context, data)
if err == nil {
break // transaction successfully replicated
}
| chore(pkg/replication): context propagation | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -717,9 +717,9 @@ spec:
Then().
ExpectWorkflow(func(t *testing.T, md *metav1.ObjectMeta, status *wfv1.WorkflowStatus) {
assert.Equal(t, wfv1.WorkflowFailed, status.Phase)
- if node := status.Nodes.FindByDisplayName(md.Name); assert.NotNil(t, node) {
- assert.Contains(t, node.Message, "Pod was active on the node longe... | chore: address flakey e2e test ("TestParametrizableAds") | null | argoproj/argo-workflows | Apache License 2.0 | Go |
@@ -1375,23 +1375,23 @@ export default class DataFrame extends NDframe implements DataFrameInterface {
* ```
* const df = new DataFrame([[1, 2, 3, 4, 5, 6], [1, 1, 2, 3, 5, 8], [1, 4, 9, 16, 25, 36]], { columns: ['A', 'B', 'C'] })
*
- * // Difference with previous row
+ * // Percentage difference with previous row
* co... | chore(docs): Update docstring to be more explicit | null | javascriptdata/danfojs | MIT License | TypeScript |
@@ -981,12 +981,19 @@ public class LineTcpReceiverTest extends AbstractLineTcpReceiverTest {
}
}).start();
- finished.await(20_000_000_000L);
+ // this will wait until the writer is returned into the pool
+ finished.await();
engine.setPoolListener((factoryType, thread, name, event, segment, position) -> {
});
try (Tabl... | chore(ilp): ILP flapping test fix | null | questdb/questdb | Apache License 2.0 | Java |
@@ -5,6 +5,7 @@ import (
"context"
"encoding/json"
"errors"
+ "fmt"
"net/http"
"net/url"
"path"
@@ -48,6 +49,7 @@ func NewTaskHandler(mappingService platform.UserResourceMappingService, logger *
h := &TaskHandler{
logger: logger,
Router: httprouter.New(),
+
UserResourceMappingService: mappingService,
}
@@ -76,6 +78,69 ... | chore(http): add links to tasks and runs responses | null | influxdata/influxdb | MIT License | Go |
@@ -210,6 +210,7 @@ defmodule Logflare.Mixfile do
start: "cmd PORT=4000 iex --sname orange --cookie monster -S mix phx.server",
test: ["ecto.create --quiet", "ecto.migrate", "test"],
"test.compile": ["compile --warnings-as-errors"],
+ "test.format": ["format --check-formatted"],
"ecto.setup": ["ecto.create", "ecto.migr... | chore: add mix alias for checking formatting | null | logflare/logflare | Apache License 2.0 | Elixir |
@@ -125,6 +125,7 @@ public class OpenIdClient<C extends AppConfiguration, L extends AppConfiguration
final OpenIdConfigurationClient openIdConfigurationClient = new OpenIdConfigurationClient(openIdProvider);
final OpenIdConfigurationResponse response = openIdConfigurationClient.execOpenIdConfiguration();
if ((response ... | chore: added logging to OpenIdClient | null | gluufederation/oxtrust | MIT License | Java |
@@ -31,31 +31,30 @@ fi
# ;;
# esac
-# if [[ ${BUILDKITE_BRANCH:-} ]]; then
-# cd $root
-
-# git config --global url."https://github.com".insteadOf git://github.com
-# git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
-# git config --global user.email ${GIT_EMAIL... | chore(build): looks like we actually need that bit | null | flood-io/element | Apache License 2.0 | Shell |
@@ -380,8 +380,17 @@ func (d *db) Consistency(index *schema.Index) (*schema.DualProof, error) {
// ByIndex ...
func (d *db) ByIndex(index *schema.Index) (*schema.Tx, error) {
- //return d.Store.ByIndex(*index)
- return nil, fmt.Errorf("Functionality not yet supported: %s", "ByIndex")
+ if index == nil {
+ return nil, s... | chore(database): implements ByIndex operation | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -27,7 +27,8 @@ term_reset() {
get_parameters() {
[ "$#" -eq 1 ] || die "Usage: $0 <n.n.n>"
- echo "$1" | grep -E -q '^[0-9]+\.[0-9]+\.[0-9]+$' || die "'$1' is not a valid semantic version"
+ [[ "$1" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-(beta|alpha)\.[0-9]+)?$ ]] || \
+ die "'$1' is not a valid semantic version"
export NEW_DF... | chore: allow prereleases in the release script | null | dfinity/sdk | Apache License 2.0 | Shell |
@@ -366,9 +366,9 @@ def _SpaceRequiredBetween(left, right, is_line_disabled):
if lval == '**' or rval == '**':
# Space around the "power" operator.
return style.Get('SPACES_AROUND_POWER_OPERATOR')
- # Enforce spaces around binary operators except the blacklisted ones.
- blacklist = style.Get('NO_SPACES_AROUND_SELECTED_... | chore: replace blacklist with block_list | null | google/yapf | Apache License 2.0 | Python |
@@ -11,11 +11,16 @@ import path from 'path'
const dest = path.join(__dirname, '..', 'shared', 'styles', 'mathjax.css')
+interface Result {
+ css?: string
+ errors?: string[]
+}
+
MathJax.typeset(
{
css: true
},
- (result: any) => {
+ (result: Result) => {
const { errors, css } = result
if (errors) errors.map(console.er... | chore(Lint): Add minimal result interface | null | stencila/stencila | Apache License 2.0 | TypeScript |
@@ -54,8 +54,8 @@ extension GraphQLAuthDirectiveIntegrationTests {
version: Int) -> Result<MutationSyncResult, GraphQLResponseError<MutationSyncResult>> {
let deleteNoteInvoked = expectation(description: "note was deleted")
var resultOptional: Result<MutationSyncResult, GraphQLResponseError<MutationSyncResult>>?
- let ... | chore: fix integ tests | null | aws-amplify/amplify-ios | Apache License 2.0 | Swift |
@@ -27,4 +27,8 @@ function addCustomExtension(\Twig_Environment &$env, $config) {
// `{{ foo }}` => `bar`
// $env->addGlobal('foo', 'bar');
+
+ // example of enabling the Twig debug mode extension (ex. {{ dump(my_variable) }} to check out the template's available data) -- comment out to disable
+ $env->addExtension(new... | chore: add example of the Twig debug extension to alter-twig.php to show how to toggle on/off Twig debuggin | null | pattern-lab/patternlab-node | MIT License | PHP |
@@ -544,11 +544,11 @@ def console(context, autoreload=False):
terminal()
-@click.command('transform-database')
-@click.option('--table', required=True)
-@click.option('--engine', default=None, type=click.Choice(["InnoDB", "MyISAM"]))
-@click.option('--row_format', default=None, type=click.Choice(["DYNAMIC", "COMPACT", ... | chore: Add help for bench transform-database | null | frappe/frappe | MIT License | Python |
@@ -2,8 +2,10 @@ package com.chesire.malime.flow.settings
import android.os.Bundle
import androidx.preference.PreferenceFragmentCompat
+import com.chesire.lifecyklelog.LogLifecykle
import com.chesire.malime.R
+@LogLifecykle
class SettingsFragment : PreferenceFragmentCompat() {
override fun onCreatePreferences(savedInst... | chore: add lifecykle logging for settings | null | chesire/nekome | Apache License 2.0 | Kotlin |
@@ -32,9 +32,7 @@ import (
"github.com/kong/kubernetes-ingress-controller/internal/ingress/store"
"github.com/kong/kubernetes-ingress-controller/internal/ingress/task"
"github.com/kong/kubernetes-ingress-controller/internal/ingress/utils"
- configurationv1 "github.com/kong/kubernetes-ingress-controller/pkg/apis/configu... | chore(controller): delete KongCredential support | null | kong/kubernetes-ingress-controller | Apache License 2.0 | Go |
@@ -23,27 +23,11 @@ public class KrakenSDKPlugin implements FlutterPlugin, MethodCallHandler {
@Override
public void onAttachedToEngine(@NonNull FlutterPluginBinding flutterPluginBinding) {
- channel = new MethodChannel(flutterPluginBinding.getFlutterEngine().getDartExecutor(), "kraken_sdk");
+ channel = new MethodChan... | chore: remove kraken app | null | openkraken/kraken | Apache License 2.0 | Java |
@@ -65,6 +65,7 @@ Please ensure the content folder has correct permissions and try again.`));
return reject(new errors.GhostError(msg.error));
}
+ /* istanbul ignore else */
if (msg.started) {
cp.disconnect();
cp.unref();
@@ -123,6 +124,7 @@ Please ensure the content folder has correct permissions and try again.`));
* ... | chore(tests): Ignore noop local process branches | null | tryghost/ghost-cli | MIT License | JavaScript |
@@ -3946,9 +3946,8 @@ void SuperMediaPlayer::ProcessUpdateView()
//TODO set widevine level by user
videoTag |= VideoTag::VIDEO_TAG_WIDEVINE_L1;
}
-#endif
-
mUpdateViewCB(videoTag, mUpdateViewCBUserData);
+#endif
}
bool SuperMediaPlayer::isWideVineVideo(const Stream_meta *meta) const
| chore(supermediaplayer): fix crash on the platform that not Android | null | alibaba/cicadaplayer | MIT License | C++ |
@@ -28,6 +28,7 @@ import (
"github.com/aws/copilot-cli/internal/pkg/deploy/cloudformation"
"github.com/aws/copilot-cli/internal/pkg/deploy/cloudformation/stack"
"github.com/aws/copilot-cli/internal/pkg/deploy/upload/customresource"
+ "github.com/aws/copilot-cli/internal/pkg/manifest"
"github.com/aws/copilot-cli/interna... | chore(test): use manifest for env integration test | null | aws/copilot-cli | Apache License 2.0 | Go |
@@ -3,30 +3,7 @@ package org.fossasia.openevent.app.common.di.component;
import org.fossasia.openevent.app.OrgaApplication;
import org.fossasia.openevent.app.common.di.module.AppModule;
import org.fossasia.openevent.app.common.di.module.android.ActivityBuildersModule;
-import org.fossasia.openevent.app.core.attendee.ch... | chore: Remove inject methods for components | null | fossasia/open-event-organizer-android | Apache License 2.0 | Java |
@@ -99,8 +99,8 @@ declare module 'mongoose' {
*/
export function isValidObjectId(v: any): boolean;
- export function model<T extends Document, TQueryHelpers = {}>(name: string, schema?: Schema<any>, collection?: string, skipInit?: boolean): Model<T, TQueryHelpers>;
- export function model<T extends Document, U extends ... | chore(typescript): re-order Schema generics for query helpers type | null | automattic/mongoose | MIT License | TypeScript |
@@ -23,7 +23,7 @@ export interface Field<F extends Field = AnyField> {
label?: string
description?: string
component: React.FC<any> | string | null
- inlineComponent?: React.FC<F['name']>
+ inlineComponent?: React.FC<any>
parse?: (value: any, name: string, field: F) => any
format?: (value: any, name: string, field: F) ... | chore(@tinacms/fields): fix + relax inlineComponent typedef | null | tinacms/tinacms | Apache License 2.0 | TypeScript |
M=$1
PKG=$2
-if [ -z $M ]; then
- echo "Please run \"pnpm run release -- M PKG\" where M=minor|major, PKG=package"
- exit 1
-fi
-if [ -z $PKG ]; then
+if [[ -z $M ]] || [[ -z $PKG ]] || [[ $M != "minor" && $M != "major" ]]; then
echo "Please run \"pnpm run release -- M PKG\" where M=minor|major, PKG=package"
exit 1
fi
| chore(META): check arguments to release.sh, avoid swapping | null | cyclejs/cyclejs | MIT License | Shell |
@@ -8,10 +8,10 @@ class AwsSamCli < Formula
sha256 "ab5978e9c4973145533e47b9e5b80e3d56dcc7a8d58c3c9fb3de4ce1681582e5"
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.18.0/"
+ root_url "https://github.com/awslabs/aw... | chore: v0.19.0 mac and linux bottles | null | aws/homebrew-tap | Apache License 2.0 | Ruby |
@@ -10,6 +10,7 @@ export const packagesWeCareAbout = [
'@nrwl/angular',
'@nrwl/cli',
'@nrwl/cypress',
+ '@nrwl/devkit',
'@nrwl/eslint-plugin-nx',
'@nrwl/express',
'@nrwl/jest',
@@ -47,7 +48,7 @@ function reportHandler() {
const bodyLines = [
`Node : ${process.versions.node}`,
`OS : ${process.platform} ${process.arch}`,... | chore(repo): add `@nrwl/devkit` in report | null | nrwl/nx | MIT License | TypeScript |
@@ -225,7 +225,7 @@ const gitCommitChanges = async (commitMessage: string, skipCI: boolean = false)
}
// Otherwise commit the changes.
- await exec(`git commit -m "${commitMessage}${skipCI ? '\n\n[skip ci]' : ''}"`);
+ await exec(`git commit -m "${commitMessage}${skipCI ? ' [skip ci]' : ''}"`);
};
const gitCommitBuildC... | chore: Make release script add `[skip ci]` on first line | null | webhintio/hint | Apache License 2.0 | TypeScript |
@@ -49,7 +49,7 @@ class AuditableObserverTest extends AuditingTestCase
/**
* @return array
*/
- public function auditableObserverTestProvider()
+ public function auditableObserverTestProvider(): array
{
return [
[
| chore(Auditable): add data provider method return type | null | owen-it/laravel-auditing | MIT License | PHP |
@@ -23,15 +23,22 @@ void lv_test_key_press(uint32_t k);
void lv_test_key_release(void);
void lv_test_key_hit(uint32_t k);
-
+/* encoder read callback */
void lv_test_encoder_read_cb(lv_indev_drv_t * drv, lv_indev_data_t * data) ;
+/* Simulate encoder rotation, use positive parameter to rotate to the right
+ * and negat... | chore(tests_indev): Add comments to encoder helper | null | lvgl/lvgl | MIT License | C |
@@ -308,33 +308,41 @@ impl BaseRoomInfo {
.and_then(|ev| Some(ev.as_original()?.content.room_version.to_owned()))
.unwrap_or(RoomVersionId::V1);
- // This sometimes does more event_id comparisons than necessary, but the
- // alternatives are a lot of verbosity, and a macro
- redact_if_match(&mut self.avatar, &event.red... | chore(base): Rewrite BaseRoomInfo::handle_redaction | null | matrix-org/matrix-rust-sdk | Apache License 2.0 | Rust |
@@ -69,6 +69,10 @@ integ_under_test=${integdir}/cli-backwards-tests-${sanitized_version}
rm -rf ${integ_under_test}
echo "Copying integration tests of version ${VERSION_UNDER_TEST} to ${integ_under_test} (dont worry, its gitignored)"
cp -r ${temp_dir}/packages/aws-cdk/test/integ/cli ${integ_under_test}
+echo "Copying t... | chore(cli): fix regression tests execution wrapping | null | aws/aws-cdk | Apache License 2.0 | Shell |
@@ -187,8 +187,8 @@ export function transformMiddleware(
}
} catch (e) {
if (e?.code === ERR_OPTIMIZE_DEPS_PROCESSING_ERROR) {
+ // Skip if response has already been sent
if (!res.writableEnded) {
- // Don't do anything if response has already been sent
res.statusCode = 504 // status code request timeout
res.end()
}
@@... | chore: clarify writableEnded guard comment | null | vitejs/vite | MIT License | TypeScript |
@@ -14,8 +14,14 @@ default=$(echo -en "\e[39m")
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
MCPATH="$( pwd -P )"
MCCONFIGPATH="/home/$(whoami)/klipper_config"
+MCLOGPATH="/home/$(whoami)/klipper_logs"
MCSERVICENAME="MoonCord"
+MCTOKEN=""
+MCWEBTOKEN=""
+MCURL="http://127.0.0.1"
MCMOONRAKERSERVICE="m... | chore: migrate service generation script | null | eliteschwein/mooncord | MIT License | Shell |
@@ -132,9 +132,8 @@ impl<Method: HashMethod + PolymorphicKeysHelper<Method> + Send> Aggregator
let aggregate_functions = &self.params.aggregate_functions;
let offsets_aggregate_states = &self.params.offsets_aggregate_states;
- let temp_place = self.state.alloc_layout2(&self.params);
-
for (row, place) in places.iter().... | chore(query): improve temp_place | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -83,6 +83,6 @@ export { Span } from './text-base/span';
export { TextField } from './text-field';
export { TextView } from './text-view';
export { TimePicker } from './time-picker';
-export { Transition } from './transition';
+export { Transition, AndroidTransitionType } from './transition';
export { WebView } from ... | chore: add export AndroidTransitionType | null | nativescript/nativescript | MIT License | TypeScript |
@@ -19,6 +19,9 @@ import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
import com.b2international.commons.exceptions.ForbiddenException;
import com.b2international.snowowl.core.identity.Permission;
import com.b2international.snowow... | chore(authz): add logger and fix javadoc in AuthorizationService type | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -59,7 +59,7 @@ export async function injectSourcesContent(
}
}
-export function genSourceMapUrl(map: SourceMap | string | undefined): string {
+export function genSourceMapUrl(map: SourceMap | string): string {
if (typeof map !== 'string') {
map = JSON.stringify(map)
}
@@ -69,16 +69,16 @@ export function genSourceMa... | chore: shrink genSourceMapUrl type | null | vitejs/vite | MIT License | TypeScript |
#include <assert.h>
#include "discord.h"
+#include "discord-internal.h"
#include "cee-utils.h"
#define THREADPOOL_SIZE "4"
@@ -95,7 +96,19 @@ void on_force_error(
struct discord_create_message_params params = {
.content = (char *)discord_strerror(code, client)
};
+ discord_create_message(client, msg->channel_id, ¶m... | chore(test-discord-ws.c): trigger a callback for sending the ping | null | cee-studio/orca | MIT License | C |
@@ -13,7 +13,12 @@ module.exports = {
{{#each events}}
<div class="row {{checkEven @index}}">
<div class="cell api-table-content-cell api-table-content-cell-bold">{{this.name}}</div>
- <div class="cell api-table-content-cell api-table-content-cell-description">{{{this.description}}}</div>
+ <div class="cell api-table-c... | chore: visualize events since info | null | sap/ui5-webcomponents | Apache License 2.0 | JavaScript |
@@ -19,16 +19,7 @@ import {
GetContainer,
renderToContainer,
} from '../../utils/render-to-container'
-import {
- arrow,
- computePosition,
- flip,
- offset,
- autoUpdate,
- hide,
- shift,
- limitShift,
-} from './temp-floating-ui.min.js'
+import * as tfu from './temp-floating-ui.min.js'
import { Wrapper } from './wrap... | chore: bundle build error | null | ant-design/ant-design-mobile | MIT License | TypeScript |
@@ -206,7 +206,6 @@ export {
TwoWayBindingBehavior
} from './resources/binding-behaviors/binding-mode';
export {
- DebounceableBinding,
DebounceBindingBehavior
} from './resources/binding-behaviors/debounce';
export {
@@ -214,7 +213,6 @@ export {
SignalBindingBehavior
} from './resources/binding-behaviors/signals';
exp... | chore(runtime): fix exports | null | aurelia/aurelia | MIT License | TypeScript |
defmodule Extensions.PostgresCdcStream.Supervisor do
@moduledoc """
- Supervisor to spin up the Postgres CDC Sream tree.
+ Supervisor to spin up the Postgres CDC Stream tree.
"""
use Supervisor
| chore: update moduledoc typo to Stream | null | supabase/realtime | Apache License 2.0 | Elixir |
@@ -9,7 +9,7 @@ import (
var _ platform.MacroService = &MacroService{}
type MacroService struct {
- FindMacrosF func(context.Context) ([]*platform.Macro, error)
+ FindMacrosF func(context.Context, platform.MacroFilter, ...platform.FindOptions) ([]*platform.Macro, error)
FindMacroByIDF func(context.Context, platform.ID)... | chore(mock): macro mock is a macro service again | null | influxdata/influxdb | MIT License | Go |
@@ -1355,6 +1355,8 @@ func TestReplaceMappedLocations(t *testing.T) {
{Pwd: "/f/g/h/e", Expected: "^/e"},
{Pwd: "/a/b/c/d", Expected: "#"},
{Pwd: "/a/b/c/d/e", Expected: "#/e"},
+ {Pwd: "/a/b/c/d/e", Expected: "#/e"},
+ {Pwd: "/a/b/k/j/e", Expected: "e"},
}
for _, tc := range cases {
@@ -1363,6 +1365,7 @@ func TestRepl... | chore(path): add home tests for mapped locations | null | jandedobbeleer/oh-my-posh | MIT License | Go |
@@ -49,7 +49,7 @@ function processTouches (touches) {
return []
}
-function isPCEvent (name) {
+function isMouseEvent (name) {
return name.startsWith('mouse') || ['contextmenu'].includes(name)
}
@@ -94,7 +94,7 @@ export function processEvent (name, $event = {}, detail = {}, target = {}, curre
stopPropagation () {}
})
-... | chore: isPCEvent -> isMouseEvent | null | dcloudio/uni-app | Apache License 2.0 | JavaScript |
-import {Metadata, Type} from "@tsed/core";
+import {Deprecated, Metadata, Type} from "@tsed/core";
import {ParamMetadata} from "../class/ParamMetadata";
import {PARAM_METADATA} from "../constants";
import {IInjectableParamSettings} from "../interfaces";
@@ -92,6 +92,7 @@ export class ParamRegistry {
* @returns {Functi... | chore: Deprecated ParamRegistry.decorate() method | null | typedproject/tsed | MIT License | TypeScript |
import { addMigrationSteps } from './databaseMigration'
-import { ensureCollectionProperty } from './lib'
+import { ensureCollectionProperty, setExpectedVersion } from './lib'
import { getCoreSystem } from '../../lib/collections/CoreSystem'
import { dropDeprecatedDatabases, getDeprecatedDatabases } from './deprecatedDa... | chore: update expectedVersions for Release 32 | null | nrkno/tv-automation-server-core | MIT License | TypeScript |
@@ -191,7 +191,6 @@ def enum_mock():
@pytest.fixture
def schema_mock(scalar_mock, enum_mock):
-
schema = Mock()
field = Mock()
field.gql_type = "aType"
@@ -232,7 +231,6 @@ def test_resovler_factory__is_an_enum_not():
from tartiflette.utils.coercer import _is_an_enum
from tartiflette.utils.coercer import CoercerWay
-
sc... | chore(format): Fix format errors | null | tartiflette/tartiflette | MIT License | Python |
@@ -48,8 +48,8 @@ function testCli(argv) {
return new Promise(resolve =>
cli(
argv,
- data => (log = data),
- data => (error = data),
+ (data) => { log = data; },
+ (data) => { error = data; },
exitCode => resolve({
log,
error,
@@ -216,6 +216,6 @@ describe('depcheck command line', () => {
exitCode.should.equal(-1);
}))... | chore: fix lint errors in test/cli | null | depcheck/depcheck | MIT License | JavaScript |
@@ -32,9 +32,9 @@ matched=`grep "apisix-dashboard-v[0-9][0-9.]*" -r docs/`
expected=`grep "apisix-dashboard-v$ver" -r docs/`
if [ "$matched" = "$expected" ]; then
- echo -e "${green}passed: (doc) apisix $ver ${NC}"
+ echo -e "${green}passed: (doc) apisix-dashboard $ver ${NC}"
else
- echo -e "${RED}failed: (doc) apisix ... | chore: update echo description to apisix-dashboard | null | apache/apisix-dashboard | Apache License 2.0 | Shell |
@@ -10,34 +10,39 @@ import BigInt
public struct Utilities {
- /// Convert a public key to the corresponding EthereumAddress. Accepts public keys in compressed (33 bytes), non-compressed (65 bytes)
- /// or raw concat(X, Y) (64 bytes) format.
+ /// Convert a public key to the corresponding ``EthereumAddress``. Accepts p... | chore: refactoring of func publicToAddressData and docs | null | skywinder/web3swift | Apache License 2.0 | Swift |
@@ -9,9 +9,9 @@ import UIKit
internal final class QRCodeViewController: UIViewController {
- private let qrCodeView: UIView
+ private let qrCodeView: QRCodeView
- internal init(qrCodeView: UIView) {
+ internal init(qrCodeView: QRCodeView) {
self.qrCodeView = qrCodeView
super.init(nibName: nil, bundle: nil)
}
| chore: Change QRCodeViewController to work only with QRCodeView | null | adyen/adyen-ios | MIT License | Swift |
@@ -33,8 +33,8 @@ class Exception extends GoogleException
* @param string $message
* @param int $code
* @param Exception|null $previous
- * @param array<array<string,string>> $errors List of errors returned in an HTTP
- * response. Defaults to [].
+ * @param array<array<string,string>>|null $errors List of errors retur... | chore(docs): add null type to Service\Exception errors | null | googleapis/google-api-php-client | Apache License 2.0 | PHP |
@@ -152,19 +152,7 @@ public class AppShellRegistry implements Serializable {
*/
public boolean isShell(Class<?> clz) {
assert clz != null;
- try {
- // first try to check without loading class via the {@code clz}
- // classloader
- if (AppShellConfigurator.class.isAssignableFrom(clz)) {
- return true;
- }
- // Use the ... | chore: remove broken code | null | vaadin/flow | Apache License 2.0 | Java |
//! | $.item1 | $(2).item1(2) | 4 |
//! | $.item2 | $(2).item2(0) | 0 |
//! | $.item1.level | $(2).item1(2).level(2) | 8 |
-//! | $.item1.level[1] | $(2).item1(2).level(2)[1(2)] | 16 |
-//! | $.item1.level[1].id | $(2).item1(2).level(2)[1(2)].id(2) | 32 |
-//! | $.item1.level[1].name | $(2).item1(2).level(2)[1(2)].name... | chore: cleanup rustdoc warnings | null | pact-foundation/pact-reference | MIT License | Rust |
@@ -137,16 +137,11 @@ class DropInTests: XCTestCase {
UIApplication.shared.keyWindow?.rootViewController = root
root.present(sut.viewController, animated: true, completion: nil)
- let waitExpectation = expectation(description: "Expect DropIn to open")
- DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + .seco... | chore: improve test code | null | adyen/adyen-ios | MIT License | Swift |
object Versions {
// internal versions
- const val cloudNet = "4.0.0-RC5-SNAPSHOT"
+ const val cloudNet = "4.0.0-RC5"
const val cloudNetCodeName = "Blizzard"
// external tools
| chore: release version 4.0.0-RC5 | null | cloudnetservice/cloudnet-v3 | Apache License 2.0 | Kotlin |
@@ -5,8 +5,6 @@ import (
"context"
"errors"
"time"
-
- log "github.com/sirupsen/logrus"
)
// BatchMode enables the Events client to accept, queue, and post
@@ -34,7 +32,7 @@ func (e *Events) BatchMode(ctx context.Context, accountID int, opts ...BatchConf
go func() {
err := e.watchdog(ctx)
if err != nil {
- log.Errorf("... | chore(entities): use the instance logger | null | newrelic/newrelic-client-go | Apache License 2.0 | Go |
@@ -288,6 +288,8 @@ def foundation_lessons
is_project: true,
url: '/foundations/html_css/html-foundations/project-recipes.md',
identifier_uuid: '3c8ad955-4f4e-4555-86bc-98503e1b785d',
+ accepts_submission: true,
+ has_live_preview: true,
},
'CSS Foundations' => {
title: 'CSS Foundations',
@@ -350,6 +352,8 @@ def founda... | chore: Allow Submissions on New HTML & CSS Projects | null | theodinproject/theodinproject | MIT License | Ruby |
@@ -72,4 +72,38 @@ function sendStoredFile(request, response) {
}
}
+function deleteOldSnapshotZip(event) {
+ const object = event.data;
+
+ const bucketId = object.bucket;
+ const filePath = object.name;
+ const contentType = object.contentType;
+
+ const bucket = gcs.bucket(bucketId);
+
+ if (event.eventType === 'pro... | chore(code.angularjs): delete old zip files on snapshot | null | angular/angular.js | MIT License | JavaScript |
@@ -3,12 +3,7 @@ import PropTypes from 'prop-types'
import Paragraph from '../../../../packages/Paragraph/Paragraph'
-const PackageVersion = ({ version }) => (
- <Paragraph>
- Version:
- {version}
- </Paragraph>
-)
+const PackageVersion = ({ version }) => <Paragraph>Version: {version}</Paragraph>
PackageVersion.propTyp... | chore(docs): add space between version string | null | telus/tds-core | MIT License | JavaScript |
object Versions {
// internal versions
- const val cloudNet = "4.0.0-RC7-SNAPSHOT"
+ const val cloudNet = "4.0.0-RC7"
const val cloudNetCodeName = "Blizzard"
// external tools
| chore: release version 4.0.0-RC7 | null | cloudnetservice/cloudnet-v3 | Apache License 2.0 | Kotlin |
@@ -32,6 +32,7 @@ import com.b2international.index.mapping.DocumentMapping;
import com.b2international.index.query.Expressions;
import com.b2international.index.query.Expressions.ExpressionBuilder;
import com.b2international.index.query.Query;
+import com.b2international.index.query.Query.AfterWhereBuilder;
import com.... | chore(index): use real-time scrolling instead of scroll API.. | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -7,10 +7,10 @@ import {
StyleSheet,
TouchableOpacity,
View,
- SyntheticEvent,
} from 'react-native'
import { SafeAreaView } from 'react-native-safe-area-context'
import { WebView } from 'react-native-webview'
+import { WebViewNavigationEvent } from 'react-native-webview/lib/WebViewTypes'
import { BackIcon, ExternalL... | chore(app): fix type for modal onLoad | null | kolplattformen/skolplattformen | Apache License 2.0 | TypeScript |
@@ -62,6 +62,8 @@ case $RUNNING_ON in
"CFPages")
if [ "$CF_PAGES_BRANCH" = "master" ] || [ "$CF_PAGES_BRANCH" = "main" ]; then
CONTEXT="production"
+ else
+ URL=$CF_PAGES_URL
fi
;;
"Render")
| chore: (script) add CF Pages URL for preview | null | cecilapp/cecil | MIT License | Shell |
@@ -25,16 +25,11 @@ class CacheKey:
return hash((self.operation_name, self.location))
-_VALIDATORS_CACHE = {}
-
-
-def get_validator(schema: Schema, operation_name: str, location: str) -> jsonschema.Draft4Validator:
+@lru_cache()
+def get_validator(cache_key: CacheKey) -> jsonschema.Draft4Validator:
"""Get JSON Schema ... | chore: Bound validators caching during negative testing | null | schemathesis/schemathesis | MIT License | Python |
@@ -44,7 +44,8 @@ if [[ "${SCAN_BUILD}" == "yes" ]]; then
fi
echo
-echo "${COLOR_YELLOW}Starting docker build $(date) with ${NCPU} cores${COLOR_RESET}"
+echo "${COLOR_YELLOW}Starting docker build $(date) with ${NCPU}"\
+ "cores${COLOR_RESET}"
echo
echo "${COLOR_YELLOW}Started CMake config at: $(date)${COLOR_RESET}"
@@ ... | chore: reformat for 80 columns; fix spacing | null | googleapis/google-cloud-cpp | Apache License 2.0 | Shell |
@@ -819,7 +819,7 @@ function (_Transform) {
if (skip_lines_with_empty_values === true) {
if (record.every(function (field) {
- return field.trim() === '';
+ return field.toString().trim() === '';
})) {
this.__resetRow();
| chore(csv-parse): Update index.js | null | adaltas/node-csv | MIT License | JavaScript |
@@ -46,7 +46,7 @@ export const Error = (): React.Node => {
const required = boolean("required", true);
return (
- <Stack>
+ <Stack direction="column">
<InputField
size={size}
error={<TextLink tabIndex={0}>{error}</TextLink>}
| chore(ErrorForms): fix stories gap | null | kiwicom/orbit | MIT License | JavaScript |
@@ -18,7 +18,6 @@ package com.vaadin.flow.server.communication;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
-import java.io.UnsupportedEncodingException;
import java.io.Writer;
import java.lang.annotation.Annotation;
import java.net.URI;
@@ -379,10 +378,8 @@ public clas... | chore: Remove redundant UnsupportedEncodingException | null | vaadin/flow | Apache License 2.0 | Java |
@@ -8,10 +8,12 @@ use std::path::PathBuf;
use expectest::prelude::*;
use pact_models::pact::ReadWritePact;
use pact_models::sync_pact::RequestResponsePact;
+use pact_models::v4::pact::V4Pact;
use rand::prelude::*;
use reqwest::Client;
+use serde_json::json;
-use pact_consumer::{json_pattern, json_pattern_internal};
+us... | chore: add a test with two near identical interactions | null | pact-foundation/pact-reference | MIT License | Rust |
@@ -25,7 +25,7 @@ git pull "$remote_name" dev
git checkout -B dev-main-merge
git fetch "$remote_name" main
set +e
-git merge "$remote_name"/main -m "Merge release commit from main to dev"
+git merge "$remote_name"/main -m "chore: merge release commit from main to dev"
merge_exit_code=$?
set -e
if [[ $merge_exit_code !=... | chore: fix merge commit message | null | aws-amplify/amplify-cli | Apache License 2.0 | Shell |
@@ -1502,10 +1502,12 @@ pub fn matchers_to_json(matchers: &MatchingRules, spec_version: &PactSpecificati
/// Macro to ease constructing matching rules
/// Example usage:
-/// ```ignore
+/// ```
+/// # use pact_models::matchingrules;
+/// # use pact_models::matchingrules::MatchingRule;
/// matchingrules! {
-/// "query" ... | chore: update the doc comments on matchingrules! macro | null | pact-foundation/pact-reference | MIT License | Rust |
@@ -71,7 +71,7 @@ func TestBasicAuthHandler_handleSignin(t *testing.T) {
h.SessionService = tt.fields.SessionService
w := httptest.NewRecorder()
- r := httptest.NewRequest("POST", "http://localhost:9999/signin", nil)
+ r := httptest.NewRequest("POST", "http://localhost:9999/api/v2/signin", nil)
r.SetBasicAuth(tt.args.u... | chore(http): update signin route for session test | null | influxdata/influxdb | MIT License | Go |
@@ -141,8 +141,10 @@ export interface MethodDeploymentOptions {
readonly loggingLevel?: MethodLoggingLevel;
/**
- * Specifies whether data trace logging is enabled for this method, which
- * effects the log entries pushed to Amazon CloudWatch Logs.
+ * Specifies whether data trace logging is enabled for this method.
+ ... | chore(apigateway): clarified the intent of `dataTraceEnabled` | null | aws/aws-cdk | Apache License 2.0 | TypeScript |
@php
- $hasError = false;
- if ($name) { $hasError = $errors->has($name) && !$errorless; }
+ $hasError = !$errorless && $name && $errors->has($name);
@endphp
<div class="@if($disabled) opacity-60 @endif">
| chore: enhance error verification | null | wireui/wireui | MIT License | PHP |
@@ -1862,14 +1862,17 @@ fn cafile_bundle_remote_exports() {
#[test]
fn test_permissions_with_allow() {
for permission in &util::PERMISSION_VARIANTS {
- let (_, err) = util::run_and_collect_output(
- true,
- &format!("run --allow-{0} permission_test.ts {0}Required", permission),
- None,
- None,
- false,
- );
- assert!(!... | chore(integration_tests): stop collecting unnecessary output in permissions tests | null | denoland/deno | MIT License | Rust |
@@ -388,7 +388,7 @@ public abstract class NodeUpdater implements FallibleCommand {
final String WORKBOX_VERSION = "6.2.0";
if (featureFlags.isEnabled(FeatureFlags.VITE)) {
- defaults.put("vite", "v2.7.0-beta.5");
+ defaults.put("vite", "v2.7.0-beta.7");
defaults.put("rollup-plugin-brotli", "3.1.0");
defaults.put("vite-... | chore: Upgrade to vite 2.7.0 beta7 | null | vaadin/flow | Apache License 2.0 | Java |
@@ -56,7 +56,8 @@ public class DbSchemaPrefixTestHelper implements InitializingBean, DisposableBea
ProcessEngineConfigurationImpl config1 = createCustomProcessEngineConfiguration()
.setProcessEngineName("DatabaseTablePrefixTest-engine1")
.setDataSource(dataSource)
- .setDatabaseSchemaUpdate("NO_CHECK"); // disable auto... | chore(tests): disable metrics for database prefox profile | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
-import { WorkerOptions, Processor } from '@src/interfaces/worker-options';
-import { QueueBase } from './queue-base';
-import { Job } from './job';
-import { Scripts } from './scripts';
-
+import { Processor, WorkerOptions } from '@src/interfaces/worker-options';
import * as Bluebird from 'bluebird';
-import IORedis f... | chore: ordered dependencies | null | taskforcesh/bullmq | MIT License | TypeScript |
namespace Podlove\Api;
-use function Podlove\Api\Episodes\chapters;
+use Podlove\NormalPlayTime;
+
class Validation
{
public static function timestamp( $param, $request, $key )
{
- if (preg_match('/\d\d:[0-5]\d:[0-5]\d?.?\d?\d?\d/', $param)) {
- return true;
- }
-
+ $npt = NormalPlayTime\Parser::parse($param, 'ms');
+ ... | chore: validate timestamp use NormalPlayTime::Parser | null | podlove/podlove-publisher | MIT License | PHP |
@@ -412,9 +412,9 @@ export class AlarmsFacade {
private applyFishEyes(alarm: Partial<Alarm>): Partial<Alarm>[] {
const patch = this.lazyData.data.itemPatch[alarm.itemId];
const expansion = this.lazyData.patches.find(p => p.ID === patch)?.ExVersion;
- const isBigFish = this.lazyData.data.legendaryFish[alarm.itemId];
+ c... | chore: small renaming mistake | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -16,7 +16,7 @@ class Ping(commands.Cog):
embed = Embed(
title=":ping_pong: Pong!",
colour=Colours.bright_green,
- description=f"WS Latency: {round(self.bot.latency * 1000)}ms",
+ description=f"Gateway Latency: {round(self.bot.latency * 1000)}ms",
)
await ctx.send(embed=embed)
| chore: use discord terminology | null | python-discord/sir-lancebot | MIT License | Python |
@@ -579,22 +579,21 @@ public class Filesystem extends Plugin {
toObject.delete();
assert fromObject != null;
- boolean modified = false;
if (doRename) {
- modified = fromObject.renameTo(toObject);
+ boolean modified = fromObject.renameTo(toObject);
+ if (!modified) {
+ call.error("Unable to rename, unknown reason");
+ ... | chore(android): improve error message when Filesystem.copy fails | null | ionic-team/capacitor | MIT License | Java |
@@ -4,7 +4,19 @@ import { indexOf } from 'lodash'
import { useRouter } from 'next/router'
import { AutoField } from 'uniforms-bootstrap4'
import { observer, useLocalObservable } from 'mobx-react-lite'
-import { Typography, Input, IconAlertCircle, Modal, IconKey } from '@supabase/ui'
+import {
+ Typography,
+ Input,
+ I... | chore: re-enable updates to JWT secret | null | supabase/supabase | Apache License 2.0 | TypeScript |
@@ -62,6 +62,10 @@ func (b *Builder) Complete() (string, []tg.MessageEntityClass) {
return msg, entities
}
+// computeLength returns length of s encoded as UTF-16 string.
+//
+// While Telegram API docs state that they expect the number of UTF-8
+// code points, in fact they are talking about UTF-16 code units.
func co... | chore(entity): added doc for computeLength | null | gotd/td | MIT License | Go |
@@ -74,47 +74,56 @@ fi
# npm publish - both packages should publish unless there's eg an intermitted network problem
# do the brew publish - can only do this once packages have been published
+echo '--- building @flood/element'
+cd $root/packages/element
+./scripts/build.sh
+
+echo '--- publishing @flood/element-cli'
+... | chore(release): revert to previous custom release process | null | flood-io/element | Apache License 2.0 | Shell |
@@ -156,8 +156,6 @@ type TfServiceDefinitionV1 struct {
Examples []broker.ServiceExample `yaml:"examples"`
PlanUpdateable bool `yaml:"plan_updateable"`
- // Internal SHOULD be set to true for Google maintained services.
- Internal bool `yaml:"-"`
RequiredEnvVars []string
}
| chore: refactor, removed unusd Internal flag on tfdefination | null | cloudfoundry-incubator/cloud-service-broker | Apache License 2.0 | Go |
@@ -109,6 +109,12 @@ pub struct Config {
/// {"timestamp":"Oct 24 13:00:00.875","level":"ERROR","fields":{"message":"failed to shave yak","yak":3,"error":"missing yak"},"target":"fmt_json::yak_shave","spans":[{"yaks":3,"name":"shaving_yaks"}]}
/// {"timestamp":"Oct 24 13:00:00.875","level":"TRACE","fields":{"yaks_shave... | chore: add logfmt to help for flag --log-format | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -6,8 +6,11 @@ set -exo pipefail
git fetch --all
git checkout -B v2-main origin/v2-main
+git merge origin/master --no-edit
+
# Some package rules differ between v1 and v2, most notably which packages can be public vs private.
# These differences are fixable via 'pkglint', so we run that and commit the delta (if any).... | chore: backporting changes to merge-forward job from v2 branch | null | aws/aws-cdk | Apache License 2.0 | Shell |
export const patchNotes = `### Bug Fixes
-* **db:** fixed bait filter in fishing-spot page's bite time graph.
-* **desktop:** fixed merge from different inventory panels counting for autofill.
-* **favorites:** fixed infinite loading for workshops.
-* **gearset:** fixed search input for minimum ilvl not being updated p... | chore: patch notes update for 7.2.1 | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -222,7 +222,6 @@ func (t *CsvTable) recomputeIndexes() {
t.cachedFieldName = &col
case col.Label == labelFieldValue:
t.cachedFieldValue = &col
- case col.Label[0] == '_':
case col.LinePart == linePartTag:
col.escapedLabel = escapeTag(col.Label)
t.cachedTags = append(t.cachedTags, col)
| chore(cmd/influx/write): allow tags and fields starting with _ | null | influxdata/influxdb | MIT License | Go |
@@ -475,7 +475,7 @@ impl VirtualDom {
h1.cmp(&h2).reverse()
});
- log::debug!("dirty_scopes: {:?}", self.dirty_scopes);
+ log::trace!("dirty_scopes: {:?}", self.dirty_scopes);
if let Some(scopeid) = self.dirty_scopes.pop() {
if !ran_scopes.contains(&scopeid) {
@@ -487,7 +487,7 @@ impl VirtualDom {
let DiffState { mutat... | chore: convert debug to trace | null | dioxuslabs/dioxus | Apache License 2.0 | Rust |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.