diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -29,7 +29,7 @@ while [[ $is_rebasing == 1 ]]; do
done
if [[ $is_rebasing -eq 0 ]]; then
- git push "$base_brach" "$head_branch" --force-with-lease
+ git push origin "$head_branch" --force-with-lease
else
exit $exitcode
fi
| chore: fix error in rebase script | null | xing/hops | MIT License | Shell |
@@ -3,7 +3,7 @@ namespace DCL.Configuration
{
public static class ApplicationSettings
{
- public static float version = 0.1f;
+ public static float version = 0.2f;
}
public static class Environment
| chore: update build version to 0.2 | null | decentraland/explorer | Apache License 2.0 | C# |
@@ -64,11 +64,13 @@ open class LoadingCorePlugin: UICorePlugin {
fileprivate func startAnimating(_: EventUserInfo) {
spinningWheel.startAnimating()
+ isHidden = false
Logger.logDebug("started animating spinning wheel", scope: pluginName)
}
fileprivate func stopAnimating(_: EventUserInfo) {
spinningWheel.stopAnimating()... | chore: set the loader to hidden when start and stop spinner snimation | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -209,6 +209,11 @@ async fn exprs_to_datavalue(
schema: &DataSchemaRef,
ctx: Arc<QueryContext>,
) -> Result<Vec<DataValue>> {
+ if exprs.len() != schema.num_fields() {
+ return Err(ErrorCode::BadDataValueType(
+ "Expression size not match schema num of cols".to_string(),
+ ));
+ }
let mut expressions = Vec::with_capa... | chore(parser): check expr size | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -28,6 +28,8 @@ if ! $GHCLI_BIN auth status &> /dev/null; then
exit 1
fi
+echo "Finding merged pull requests between $BASE_TAG and $LATEST_TAG..."
+
# Compare $BASE_TAG branch with the latest tag
# Keep IDs of merged pull requests
PRs=$(git log --pretty=oneline "$BASE_TAG"..."$LATEST_TAG" | grep 'Merge pull request #... | chore: remove duplicates in array | null | cloudskiff/driftctl | Apache License 2.0 | Shell |
@@ -15,9 +15,13 @@ const Summary = ({ summary, hideTitle = false }) => (
<div className={summaryStyle.summary} id={summary.slug}>
{!hideTitle && (
<h3 className={summaryStyle.header}>
+ {summary.resources ? (
<Link to={`/about-data/data-summary/${summary.slug}`}>
{summary.title}
</Link>
+ ) : (
+ <>{summary.title}</>
+... | chore: Only link to pages with resources | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -214,16 +214,7 @@ fn polkadot_genesis(
developer_membership: circuit_parachain_runtime::DeveloperMembershipConfig {
members: vec![
root_key,
- get_account_id_from_adrs("5CAYyLZxG4oYQP8CGTYgPPhkoT42NyMvi2J3hKPCLGyKHAC4"),
- get_account_id_from_adrs("5GducktTqf8KKeatpex4kwkg1PZZimY1xUDUFoBZ2s5EDfVf"),
- get_account_id... | chore: slim down t3rn chainspec dev membership | null | t3rn/t3rn | Apache License 2.0 | Rust |
@@ -12,6 +12,7 @@ import (
"github.com/zeromicro/go-zero/zrpc/resolver"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
+ "google.golang.org/grpc/credentials/insecure"
)
const (
@@ -68,7 +69,7 @@ func (c *client) buildDialOptions(opts ...ClientOption) []grpc.DialOption {
var options []grpc.DialOption
if !... | chore: use grpc.WithTransportCredentials and insecure.NewCredentials() instead of grpc.WithInsecure | null | zeromicro/go-zero | MIT License | Go |
@@ -39,7 +39,8 @@ frappe.ui.form.ControlDate = frappe.ui.form.ControlData.extend({
// webformTODO:
let sysdefaults = frappe.boot.sysdefaults;
- let lang = frappe.boot.user.language || 'en';
+ let lang = 'en';
+ frappe.boot.user && (lang = frappe.boot.user.language);
if(!$.fn.datepicker.language[lang]) {
lang = 'en';
}
| chore: Added undefined check for frappe.boot.user in datepicker | null | frappe/frappe | MIT License | JavaScript |
@@ -111,24 +111,24 @@ def report_errors(x):
class DateRange(schema.DateRange):
def __init__(self, tMin, tMax):
- return super(DateRange, self).__init__( \
+ super(DateRange, self).__init__( \
t_min = tMin,
t_max = tMax)
class MitigationInterval(schema.MitigationInterval):
def __init__(self, name='Intervention', tMin=No... | chore: updated python classes to reflect new field names | null | neherlab/covid19_scenarios | MIT License | Python |
@@ -4,7 +4,24 @@ import "github.com/infracost/infracost/internal/schema"
var (
freeResourcesList []string = []string{
+ // Hashicorp
"null_resource",
+ "local_file",
+ "template_dir",
+ "random_id",
+ "random_integer",
+ "random_password",
+ "random_pet",
+ "random_shuffle",
+ "random_string",
+ "random_uuid",
+ "tls_l... | chore: add more free resources | null | infracost/infracost | Apache License 2.0 | Go |
@@ -44,7 +44,7 @@ internal final class FormCardNumberContainerItem: FormItem, AdyenObserver {
observe(numberItem.$isActive) { [weak self] _ in
guard let self = self else { return }
- // logo item should be visible when field is invalid
+ // logo item should be visible when field is invalid after active state changes
se... | chore: added clearer comment | null | adyen/adyen-ios | MIT License | Swift |
@@ -1530,15 +1530,11 @@ pub fn create_recovery_lmdb_database<P: AsRef<Path>>(path: P) -> Result<(), Chai
let _ = fs::create_dir_all(&new_path);
let data_file = path.as_ref().join("data.mdb");
- let lock_file = path.as_ref().join("lock.mdb");
let new_data_file = new_path.join("data.mdb");
- let new_lock_file = new_path.... | chore: remove moving lock.mdb | null | tari-project/tari | BSD 3-Clause New or Revised License | Rust |
@@ -18,7 +18,11 @@ import (
apierr "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
+ "k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
+ "k8s.io/client-go/kubernetes/fake"
+ batchfake "k8s.io/client-go/kubernetes/typed/ba... | chore: Added unittest for PVC exceed quota Closes | null | argoproj/argo-workflows | Apache License 2.0 | Go |
@@ -61,7 +61,13 @@ func (client *Client) initRevocation() {
speed := attrs.CredentialType().RevocationUpdateSpeed * 60 * 60
p := probability(cred.NonRevocationWitness.Updated, speed)
if r < p {
- irma.Logger.Debugf("scheduling nonrevocation witness remote update for %s-%s", id, attrs.Hash())
+ irma.Logger.WithFields(lo... | chore: irmaclient logs more revocation witness update parameters | null | privacybydesign/irmago | Apache License 2.0 | Go |
@@ -206,7 +206,7 @@ function Activity(props) {
on={convId ? 'click' : 'hover'}
trigger={(
<IconButton
- basic
+ // basic
icon='comments'
color='grey'
data-cy='conversation-viewer'
| chore: fix conversation popup look | null | botfront/botfront | Apache License 2.0 | JavaScript |
@@ -176,9 +176,9 @@ void registerReloadApp() {
}
typedef NativeAsyncCallback = Void Function(Pointer<Void> context);
-typedef NativeAsyncCallbackWithDouble = Void Function(Pointer<Void> context, Double data);
+typedef NativeRAFAsyncCallback = Void Function(Pointer<Void> context, Double data);
typedef DartAsyncCallback ... | chore: change raf callback typedef | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -291,4 +291,12 @@ enum Available {
return false
}
}
+
+ static var iOS13: Bool {
+ if #available(iOS 13.0, *) {
+ return true
+ } else {
+ return false
+ }
+ }
}
| chore: disables some unit tests on iOS 12 and below, since they are failing for weird reasons | null | adyen/adyen-ios | MIT License | Swift |
@@ -13,9 +13,10 @@ if (process.env.TRAVIS === 'true') {
shelljs.exec(`git config --global user.name "${userName}"`);
shelljs.exec(`git remote add ${docsOrigin} ${remoteUrl} > /dev/null 2>&1`);
} else {
- shelljs.exec(
- `git remote add ${docsOrigin} git@github.com:commercetools/ui-kit.git > /dev/null 2>&1`
- );
+ // Th... | chore(publish-script): add comment about fallback remote | null | commercetools/ui-kit | MIT License | JavaScript |
@@ -267,7 +267,7 @@ public class UserDatastoreController
User user = userService.getUserByUsername( username );
if ( user == null )
{
- throw new IllegalQueryException( "No user with username " + username + " does exist." );
+ throw new IllegalQueryException( "No user with username " + username + " exists." );
}
return... | chore: better error message wording | null | dhis2/dhis2-core | BSD 3-Clause New or Revised License | Java |
@@ -155,8 +155,8 @@ if [ -x "$(command -v curl)" ] || [ -x "$(command -v wget)" ]; then
filename="$tempdir/$file"
if [ -x "$(command -v curl)" ]; then
- log_debug "Using $(command -v curl)"
- log_debug "Downloading from $url"
+ log_debug "Using $(command -v curl) for requests"
+ log_debug "Downloading binary from $url"... | chore: make debug statements more explicit | null | dopplerhq/cli | Apache License 2.0 | Shell |
@@ -124,7 +124,7 @@ export const DataProtectionComplaintSchema = z.object({
(x) => x?.split(' ').length <= 500,
error.wordCountReached.defaultMessage,
),
- documents: z.array(FileSchema).nonempty(),
+ documents: z.array(FileSchema),
}),
overview: z.object({
termsAgreement: z.string().refine((x) => x === DefaultEvents.S... | chore(data-protection-complaint): Complaint Documents Optional | null | island-is/island.is | MIT License | TypeScript |
@@ -9,14 +9,13 @@ class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
+ player = Player(options: [:])
+ listenToPlayerEvents()
- let options = [
+ player.configure(options: [
kSourceUrl: "https://devstreaming-cdn.apple.com/videos/streaming/examples/img_bipbop_adv_example_ts/master... | chore: change example to be able to listen to all events | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -43,12 +43,17 @@ const getOverwritablePredicate = packageName => pathName => {
* from codegen, but maintain the newer dependency versions
* in existing package.json
*/
-const mergeManifest = (fromContent, toContent) => {
+const mergeManifest = (fromContent = {}, toContent) => {
const merged = {};
const fromNames = O... | chore: allow un-overwritable scripts and devDependencies in package.json | null | aws/aws-sdk-js-v3 | Apache License 2.0 | JavaScript |
@@ -27,6 +27,11 @@ defmodule Ash.Type do
utc_datetime: Ash.Type.UtcDatetime
]
+ @builtin_types Keyword.values(@short_names)
+
+ def builtin?(type) when type in @builtin_types, do: true
+ def builtin?(_), do: false
+
@doc_list_constraints Keyword.put(@list_constraints, :items,
type: :any,
doc:
| chore: add built_in? ash type helper | null | ash-project/ash | MIT License | Elixir |
@@ -27,10 +27,6 @@ impl CodecTrait for MdCodec {
from_path: cfg!(feature = "decode"),
to_string: cfg!(feature = "encode"),
to_path: cfg!(feature = "encode"),
- unsupported_types: vec_string![
- // TODO: Fix handling of table headers
- "Table"
- ],
..Default::default()
}
}
| chore(Markdown codec): Remove `unsupported_types` | null | stencila/stencila | Apache License 2.0 | Rust |
@@ -24,7 +24,7 @@ if [ "$TRAVIS_BRANCH" == "$PUBLISH_BRANCH" ]; then
echo "Push to master branch detected, signing the app..."
cp app-release-unsigned.apk app-release-unaligned.apk
jarsigner -verbose -tsa http://timestamp.comodoca.com/rfc3161 -sigalg SHA1withRSA -digestalg SHA1 -keystore ../scripts/key.jks -storepass $... | chore: Change build tools version in update apk script | null | fossasia/open-event-organizer-android | Apache License 2.0 | Shell |
@@ -18,7 +18,7 @@ package org.apache.rocketmq.common;
public class MQVersion {
- public static final int CURRENT_VERSION = Version.V4_8_0.ordinal();
+ public static final int CURRENT_VERSION = Version.V4_9_0.ordinal();
public static String getVersionDesc(int value) {
int length = Version.values().length;
| chore(release): prepare to release rocketmq 4.9.0 | null | apache/rocketmq | Apache License 2.0 | Java |
@@ -166,7 +166,8 @@ protected void startKnockbackTask() {
if (conf.validAndEnabled()) {
for (var position : this.signs.keySet()) {
var location = this.locationFromWorldPosition(position);
- if (location != null) {
+ // we check if the chunk at the position is loaded, but we skip empty chunks as they are not yet loaded
... | chore: add chunk loaded check to sponge signs as well | null | cloudnetservice/cloudnet-v3 | Apache License 2.0 | Java |
@@ -135,7 +135,14 @@ public class KubernetesSyncService extends AbstractService<KubernetesSyncService
event.setPayload(mapper.writeValueAsString(api));
apiSynchronizer
.processApiEvents(Flowable.just(event))
- .subscribe(s -> logger.info("Event processed"), t -> logger.error("An error occurred while processing event", ... | chore: improve kubernetes sync logging | null | gravitee-io/gravitee-api-management | Apache License 2.0 | Java |
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
-const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
+const TerserPlugin = require('terser-webpack-plugin');
+const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
+const pkg = require('./package.json');... | chore(uiw): Bundles a minified | null | uiwjs/uiw | MIT License | JavaScript |
+#!/usr/bin/env bash
+
+# carthage.sh
+# Make the script executable: chmod +x carthage.sh
+# Usage example: ./carthage.sh build --platform iOS
+
+set -euo pipefail
+
+xcconfig=$(mktemp /tmp/static.xcconfig.XXXXXX)
+trap 'rm -f "$xcconfig"' INT TERM HUP EXIT
+
+# For Xcode 12 make sure EXCLUDED_ARCHS is set to arm archi... | chore: Carthage script to fix the problem with the build to simulators in Intel Macbooks | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Shell |
@@ -22,7 +22,9 @@ import (
"os/exec"
"regexp"
"strings"
+ "time"
+ "github.com/DopplerHQ/cli/pkg/global"
"github.com/DopplerHQ/cli/pkg/http"
"github.com/DopplerHQ/cli/pkg/models"
"github.com/DopplerHQ/cli/pkg/utils"
@@ -43,11 +45,16 @@ func (e *Error) IsNil() bool { return e.Err == nil && e.Message == "" }
// RunInstal... | chore: capture additional analytics when performing update | null | dopplerhq/cli | Apache License 2.0 | Go |
@@ -75,11 +75,11 @@ public final class ThreeDS2Component: ActionComponent {
switch threeDS2Action {
case let .fingerprint(fingerprintAction):
threeDS2CompactFlowHandler.handle(fingerprintAction) { [weak self] result in
- self?.didReceive(result, paymentData: fingerprintAction.paymentData)
+ self?.didReceive(result, pay... | chore: not send the paymentData to merchants in case of the new 3DS flow | null | adyen/adyen-ios | MIT License | Swift |
@@ -120,9 +120,9 @@ if $en_mode_tun != 0 then
Value['tun']['stack']='$stack_type'
if ${20} == 1 then
Value['tun']['device']='utun'
+ end
Value['tun']['auto-route']=false
Value['tun']['auto-detect-interface']=false
- end
Value_2={'dns-hijack'=>['tcp://8.8.8.8:53','tcp://8.8.4.4:53']}
Value['tun'].merge!(Value_2)
else
| chore: disable auto-route&auto-detect-interface for tun core | null | vernesong/openclash | MIT License | Shell |
@@ -635,6 +635,7 @@ open class AVFoundationPlayback: Playback {
#endif
}
+ @discardableResult
open func applySubtitleStyle(with textStyle: [TextStyle]) -> Bool {
guard let currentItem = player?.currentItem else { return false }
currentItem.textStyle = textStyle
| chore: add to applySubtitleStyle function | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -10,8 +10,8 @@ class AwsSamCli < Formula
bottle do
root_url "https://github.com/awslabs/aws-sam-cli/releases/download/v0.22.0/"
cellar :any_skip_relocation
- sha256 "8bac2e390ec2deef82a8b9d3982e3263b1d85b4f20e8cdb31ace5e71fcdca5c2" => :sierra
- sha256 "e9ef89a87587a7c68e57219fe7a62620ff0e42510e7bde517d152ca6c6047971... | chore: Updated with v0.23.0 Bottles | null | aws/homebrew-tap | Apache License 2.0 | Ruby |
@@ -5,7 +5,11 @@ set -e
echo "################################################################################"
echo "# Stripping unhelpful, jenkins breaking logs from karma xml"
echo "################################################################################"
-for FILE in $(find ./reports/junit/karma -name *.xml... | chore(tooling): do not strip karma logs if no karma logs | null | webex/webex-js-sdk | MIT License | Shell |
@@ -6,6 +6,7 @@ set -e
BASEDIR=$(readlink -f "$(dirname "$0")"/..)
function python_test() {
+ pip3 install --upgrade pip
pushd "${BASEDIR}"/python_module >/dev/null
pip3 install -e '.[ci]'
export PYTHONPATH=.
| chore(pip): update pip version | null | megengine/megengine | Apache License 2.0 | Shell |
@@ -91,6 +91,87 @@ storiesOf('Watson IoT/TableCard', module)
},
}
)
+ .add(
+ 'With row specific link variables',
+ () => {
+ const size = select('size', [CARD_SIZES.LARGE, CARD_SIZES.LARGEWIDE], CARD_SIZES.LARGEWIDE);
+
+ const tableLinkColumns = [
+ ...tableColumns,
+ {
+ dataSourceId: 'deviceId',
+ label: 'deviceId'... | chore(table-card): move story | null | carbon-design-system/carbon-addons-iot-react | Apache License 2.0 | JavaScript |
@@ -73,32 +73,7 @@ where
}
}
-pub enum PrevOrResult<'a> {
- Prev(&'a AppliedState),
- Result(&'a AppliedState),
-}
-
-impl<'a> PrevOrResult<'a> {
- pub fn is_some(&self) -> bool {
- match self {
- PrevOrResult::Prev(state) => state.prev_is_some(),
- PrevOrResult::Result(state) => state.result_is_some(),
- }
- }
- pub f... | chore(meta): remove unused PrevOrResult | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -47,4 +47,4 @@ PWD=$(pwd)
configPath="$PWD"/scripts/couchdb-config/10-single-node.ini
docker run -p 5984:5984 -d --network AriesTestNetwork --name AriesCouchDBStorageTest -v "$configPath":/opt/couchdb/etc/local.d/config.ini -e COUCHDB_USER=admin -e COUCHDB_PASSWORD=password couchdb:3.1.0 >/dev/null
-docker run -p 80... | chore: Update EDV server version used in EDV REST Provider unit tests | null | hyperledger/aries-framework-go | Apache License 2.0 | Shell |
@@ -347,7 +347,6 @@ class SessionTests: XCTestCase {
let dropInComponent = DropInComponent(paymentMethods: expectedPaymentMethods,
context: context,
- configuration: .init(context: context),
title: nil)
UIApplication.shared.keyWindow?.rootViewController = dropInComponent.viewController
| chore: fix failing test after merge | null | adyen/adyen-ios | MIT License | Swift |
@@ -367,7 +367,7 @@ const TinaQueryInner = ({ children, ...props }: TinaQueryProps) => {
}
// TinaDataProvider can only manage one "request" object at a timee
-const TinaDataProvider = ({
+export const TinaDataProvider = ({
children,
formifyCallback,
}: {
| chore: Export data provider | null | tinacms/tinacms | Apache License 2.0 | TypeScript |
@@ -19,6 +19,7 @@ limitations under the License.
import React from "react"
// 1. import MdxForm
import { MdxForm } from "gatsby-tinacms-mdx"
+import { MDXRenderer } from "gatsby-plugin-mdx"
class TestMdxForm extends React.Component {
constructor(props) {
@@ -34,7 +35,12 @@ class TestMdxForm extends React.Component {
<M... | chore: adds mdx body to test-mdx-form example | null | tinacms/tinacms | Apache License 2.0 | JavaScript |
@@ -156,7 +156,7 @@ impl<T: Debug + Clone + PartialEq, E: Debug + Clone> SubscriptionRegistry<T, E>
// subscriptions.lock().unwrap().
drop(subscriptions);
- panic!(msg);
+ panic!("{}", msg);
}
trace!("Woke {} related subscription(s)", awoken);
| chore(clippy): panic should use fmt style | null | rs-ipfs/rust-ipfs | Apache License 2.0 | Rust |
@@ -113,11 +113,7 @@ if (existsSync(pkgFile) && existsSync(indexFile)) {
console.log()
ssrDetected = true
- // TODO upgrade to ESM when local CLI is also ESM
- import('module').then(({ createRequire }) => {
- const require = createRequire(import.meta.url)
- require(indexFile)
- })
+ import(indexFile)
}
}
| chore(cli): tweak the "serve" command | null | quasarframework/quasar | MIT License | JavaScript |
@@ -237,7 +237,7 @@ const actions = {
},
};
-storiesOf('Table Card (Experimental)', module).add('medium', () => {
+storiesOf('Table Card (Experimental)', module).add('basic', () => {
const size = select(
'size',
[CARD_SIZES.TALL, CARD_SIZES.LARGE, CARD_SIZES.XLARGE],
| chore(card): simple story name update | null | carbon-design-system/carbon-addons-iot-react | Apache License 2.0 | JavaScript |
@@ -9,13 +9,14 @@ class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
- player = Player(options: [:])
- listenToPlayerEvents()
- player.configure(options: [
+ let options = [
kSourceUrl: "https://devstreaming-cdn.apple.com/videos/streaming/examples/img_bipbop_adv_example_ts/master... | chore: revert previous commit | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -62,15 +62,8 @@ def get_modules_from_app(app):
return active_modules_list
-def show_onboard(module):
- return module.get("type") == "module"
-
-def is_domain(module):
- return module.get("category") == "Domains"
-
@frappe.whitelist()
def is_onboard_present(module):
- print(module["module_name"])
exists_cache = {}
de... | chore(modules): cleanup helper methods | null | frappe/frappe | MIT License | Python |
@@ -34,7 +34,7 @@ internal final class FormCardLogosItemView: FormItemView<FormCardLogosItem> {
collectionView.dataSource = self
observe(item.$cardLogos) { [weak self] _ in
- self?.collectionView.reloadData()
+ self?.collectionView.reloadSections([0])
}
}
| chore: reload card icons gracefully | null | adyen/adyen-ios | MIT License | Swift |
sudo systemctl stop node-agentd || exit 1
-export GOPATH=$(pwd)/gopath
-if $GOPATH/bin/dlv version; then
+if ./go/bin/dlv version; then
echo "Skipping Delve installation"
else
curl -O https://dl.google.com/go/go1.13.8.linux-amd64.tar.gz || exit 1
tar -xf go1.13.8.linux-amd64.tar.gz || exit 1
- mkdir -p gopath
sudo yum ... | chore: stop using GOPATH | null | caos/orbos | Apache License 2.0 | Shell |
@@ -7,10 +7,10 @@ class AwsSamCli < Formula
sha256 "2dd68800723c76f52980141ba704e105d77469b6ba465781fbc9120e8121e76c"
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.16.0/"
+ root_url "https://github.com/awslabs/aw... | chore(bottles): Add bottles for 0.16.1 release | null | aws/homebrew-tap | Apache License 2.0 | Ruby |
@@ -10,7 +10,14 @@ use OwenIt\Auditing\Tests\Stubs\AuditableModelStub;
class AuditModelTest extends TestCase
{
- private function setAuditAttributes(Audit $audit)
+ /**
+ * Set test attributes to an Audit instance
+ *
+ * @param Audit $audit
+ *
+ * @return void
+ */
+ private function setAuditTestAttributes(Audit $aud... | chore(AuditModelTest): rename test attribute method | null | owen-it/laravel-auditing | MIT License | PHP |
@@ -69,11 +69,6 @@ class TripletLoss(object):
per_fold : int, optional
If provided, sample triplets from groups of `per_fold` speakers at a
time. Defaults to sample triplets from the whole speaker set.
- trim : float, optional
- Do not use speech segments that are that close to the beginning/end of
- the annotated regi... | chore: remove "trim" optoin | null | pyannote/pyannote-audio | MIT License | Python |
{
public static class ApplicationSettings
{
- public static string version = "0.5.1";
+ public static string version = "0.5.2";
}
public static class Environment
| chore: update build version to 0.5.2 | null | decentraland/explorer | Apache License 2.0 | C# |
-const { join } = require('path');
-
-module.exports = {
- extends: join(__dirname, '../.eslintrc.js'),
- settings: {
- 'import/core-modules': ['vue-instantsearch'],
- },
-};
| chore(lint): remove old lint | null | algolia/instantsearch.js | MIT License | JavaScript |
@@ -264,8 +264,8 @@ public:
TypeBuilder& operator=(const TypeBuilder&) = delete;
TypeBuilder() : m_type{PyVarObject_HEAD_INIT(nullptr, 0)} {
- // static_assert(HAS_MEMBER(T, tp_name));
- if constexpr (HAS_MEMBER(T, tp_name)) {
+ constexpr auto has_tp_name = HAS_MEMBER(T, tp_name);
+ if constexpr (has_tp_name) {
m_type.... | chore(mge/imperative): workaround a gcc-7 bug | null | megengine/megengine | Apache License 2.0 | C |
@@ -14,7 +14,7 @@ export const resolvableExtensions = true
*
* @param {object} $0 See the [documentation for `Node API Helpers` for more details](/docs/node-api-helpers)
* @param {Actions} $0.actions See the [list of documented actions](/docs/actions)
- * @param {function} $0.actions.createPages [Documentation for this... | chore(docs): Fix typo in createPages doc | null | gatsbyjs/gatsby | MIT License | TypeScript |
@@ -439,10 +439,7 @@ impl<'a, 'i> TimelineEventHandler<'a, 'i> {
let msg = match &item.content {
TimelineItemContent::Message(msg) => msg,
TimelineItemContent::RedactedMessage => {
- info!(
- %event_id,
- "Edit event applies to a redacted message, discarding"
- );
+ info!(%event_id, "Edit event applies to a redacted me... | chore(sdk): Rewrap info! invocation | null | matrix-org/matrix-rust-sdk | Apache License 2.0 | Rust |
@@ -106,7 +106,7 @@ class UpdateSearchCommand extends Command
}
// if this is not a full run and the id is already in the array, skip!
- if ($isFullRun === false && in_array($id, $idsEs) === true) {
+ if (!$input->getOption('id') && $isFullRun === false && in_array($id, $idsEs) === true) {
$this->io->progressAdvance($c... | chore: better content id management in search import | null | xivapi/xivapi.com | MIT License | PHP |
@@ -15,7 +15,7 @@ func (e *Engine) NotifyAcks(ids []int64) {
e.mux.Unlock()
if !ok {
- e.log.Warn("Acknowledge callback not set", zap.Int64("msg_id", id))
+ e.log.Debug("Acknowledge callback not set", zap.Int64("msg_id", id))
continue
}
| chore(rpc): don't warn about unset callbacks | null | gotd/td | MIT License | Go |
use std::collections::{HashMap, BTreeMap};
-use std::io::{Read, Write};
-use std::error::Error;
use std::{fmt, u16};
use std::ops::BitOr;
use std::sync::Arc;
@@ -15,13 +13,13 @@ pub const RANKED: SchemaProps = SchemaProps { displayed: false, indexed: fals
#[derive(Debug, Copy, Clone, PartialEq, Eq, Serialize, Deseriali... | chore: set public SchemaProps values | null | meilisearch/meilisearch | MIT License | Rust |
@@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("application")
- id("com.apollographql.apollo") version "2.5.7"
+ id("com.apollographql.apollo") version "2.5.8"
id("com.github.johnrengelman.shadow") version "7.0.0"
kotlin("jvm") version "1.5.10"
}
@@ -47,14 +47,14 @@ repositories {
v... | chore: deps bump | null | toxicmushroom/melijn | MIT License | Kotlin |
@@ -15,7 +15,7 @@ use rpc::mayastor::{
PublishNexusRequest,
ShareProtocolNexus,
};
-use std::process::Command;
+use std::process::{Command, ExitStatus};
pub mod common;
use common::{compose::Builder, MayastorTest};
@@ -27,7 +27,11 @@ static HOSTNQN: &str = "nqn.2019-05.io.openebs";
static HOSTID0: &str = "53b35ce9-8e71... | chore(tests): a minor refactor of nexus tests | null | openebs/mayastor | Apache License 2.0 | Rust |
@@ -165,6 +165,40 @@ class DropInTests: XCTestCase {
waitForExpectations(timeout: 15, handler: nil)
}
+ func testGiftCard() {
+ let config = DropInComponent.Configuration(apiContext: Dummy.context)
+ config.payment = Payment(amount: Amount(value: 10000, currencyCode: "CNY"), countryCode: "CN")
+
+ var paymentMethods = ... | chore: add test for DropIn giftcard | null | adyen/adyen-ios | MIT License | Swift |
@@ -12,7 +12,7 @@ use std::os::unix::io::FromRawFd;
#[cfg(target_os = "wasi")]
use std::os::wasi::io::FromRawFd;
-use anyhow::{ensure, anyhow, Context, bail};
+use anyhow::{anyhow, bail, ensure, Context};
fn main() -> anyhow::Result<()> {
let fd_count: usize = env::var("FD_COUNT")
| chore: run `cargo fmt --all` | null | enarx/enarx | Apache License 2.0 | Rust |
@@ -268,7 +268,7 @@ export class AbcBindingCommand {
`;
const expected = `import * as __au2ViewDef from './foo-bar.haml';
import {Foo} from './foo';
-import { valueConverter, other, customElement, customAttribute, bindingBehavior } from '@aurelia/runtime';
+import { valueConverter, other, customElement, customAttribute... | chore: fix refactor slip-up | null | aurelia/aurelia | MIT License | TypeScript |
@@ -7,7 +7,7 @@ return array(
array(
'odm_default' =>
array(
- 'connectionString' => 'mongodb://localhost:27017/YAWIK',
+ 'connectionString' => 'mongodb://mongo:27017/YAWIK',
),
),
'configuration' =>
| chore: set database name to "mongo" | null | cross-solution/yawik | MIT License | PHP |
@@ -141,7 +141,7 @@ namespace Microsoft.Playwright.Tests
Assert.Equal(Math.Round(webBoundingBox.Height * 100), Math.Round(box.Height * 100));
}
- public static void AssertEqual(float X, float Y, float Width, float Height, ElementHandleBoundingBoxResult box)
+ private static void AssertEqual(float X, float Y, float Widt... | chore: make assert methods private | null | microsoft/playwright-dotnet | MIT License | C# |
@@ -34,7 +34,7 @@ if [ "$TRAVIS_BRANCH" == "$PUBLISH_BRANCH" ]; then
echo "Push to master branch detected, signing the app..."
cp app-playStore-release-unsigned.apk app-playStore-release-unaligned.apk
jarsigner -verbose -tsa http://timestamp.comodoca.com/rfc3161 -sigalg SHA1withRSA -digestalg SHA1 -keystore ../scripts/... | chore: Remove verbose zipalign | null | fossasia/open-event-organizer-android | Apache License 2.0 | Shell |
@@ -4,11 +4,13 @@ import { useConfirmDelete } from 'chakra-confirm';
import { Link } from 'chakra-next-link';
import { useRouter } from 'next/router';
import { Button } from '@chakra-ui/button';
+
import {
useDeleteMeMutation,
useUpdateMeMutation,
UpdateUserInputs,
} from '../../../generated/graphql';
+import { getName... | chore: use getNameText in profile | null | freecodecamp/chapter | BSD 3-Clause New or Revised License | TypeScript |
@@ -27,7 +27,7 @@ var (
validCurrentVersions = map[string]bool{
"1.0.0": true, "1.1.0": true, "1.2.0": true, "1.3.0": true,
"1.4.0": true, "1.5.0": true, "1.6.0": true, "1.7.0": true,
- "1.8.0": true, "1.9.0": true, "1.10.0": true,
+ "1.8.0": true, "1.9.0": true, "1.10.0": true, "1.11.0": true,
}
validDesiredVersion = ... | chore(upgrade): add support for upgrading to any custom tag within same | null | openebs/maya | Apache License 2.0 | Go |
@@ -44,8 +44,8 @@ class Toggle extends Checkbox
{
$classes = $this->classes([
'checked:translate-x-3 w-3 h-3' => $this->sm,
- 'checked:translate-x-4.5 w-3.5 h-3.5' => $this->md,
- 'checked:translate-x-5 w-4 h-4' => $this->lg,
+ 'checked:translate-x-3.5 left-0.5 w-3.5 h-3.5' => $this->md,
+ 'checked:translate-x-4 left-0... | chore: add spacing | null | wireui/wireui | MIT License | PHP |
@@ -56,7 +56,7 @@ export abstract class MLKitCameraView extends MLKitCameraViewBase {
// begin the session
this.captureSession = AVCaptureSession.new();
- this.captureSession.sessionPreset = AVCaptureSessionPreset1280x720;
+ this.captureSession.sessionPreset = AVCaptureSessionPreset960x540;
const captureDeviceInput = A... | chore(iOS): lower the recording resolution | null | eddyverbruggen/nativescript-plugin-firebase | MIT License | TypeScript |
@@ -91,7 +91,8 @@ function generatePkgCli {
if [[ "$CIRCLE_BRANCH" == "release" ]] || [[ "$CIRCLE_BRANCH" =~ ^run-e2e-with-rc\/.* ]] || [[ "$CIRCLE_BRANCH" =~ ^release_rc\/.* ]] || [[ "$CIRCLE_BRANCH" =~ ^tagged-release ]]; then
npx pkg -t node14-macos-x64,node14-linux-x64,node14-linux-arm64,node14-win-x64 ../build/nod... | chore: include macos binary when running pkg local | null | aws-amplify/amplify-cli | Apache License 2.0 | Shell |
@@ -78,7 +78,7 @@ pub unsafe extern "C" fn pactffi_init_with_log_level(level: *const c_char) {
builder.try_init().unwrap_or(());
}
-/// Enable ANSI coloured output on Windows.
+/// Enable ANSI coloured output on Windows. On non-Windows platforms, this function is a no-op.
///
/// # Safety
///
@@ -91,6 +91,15 @@ pub ext... | chore: add non-windows init ansi support function | null | pact-foundation/pact-reference | MIT License | Rust |
@@ -56,6 +56,8 @@ import javax.servlet.http.HttpServletResponse;
import org.apache.commons.io.FileUtils;
import org.hamcrest.CoreMatchers;
import org.hamcrest.Matchers;
+import org.jsoup.Jsoup;
+import org.jsoup.nodes.Document;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
@@ -555,6 +557,24 ... | chore: unit test for devmode-not-ready page contents and type | null | vaadin/flow | Apache License 2.0 | Java |
-let expect = require("chai").expect;
-let i18n = require("../dist/index.js").strings;
+import chai from "chai"
+import i18nAll from "../dist/index.js"
-let languages = [
+const expect = chai.expect
+const i18n = i18nAll.strings
+
+const languages = [
{
name: "English",
strings: i18n.en
@@ -25,18 +28,11 @@ let language... | chore(i18n): Ported tests to ESM | null | freesewing/freesewing | MIT License | JavaScript |
+import React from 'react'
+import renderer from 'react-test-renderer'
+import { useStaticQuery } from 'gatsby'
+import HeaderHero from '~components/pages/race/header-hero'
+
+beforeEach(() => {
+ useStaticQuery.mockImplementation(() => ({
+ file: {
+ relativePath: 'crdt-landing-header.png',
+ childImageSharp: {
+ flui... | chore(tests): add race header hero | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -17,7 +17,7 @@ defmodule Ash.DocIndex do
For example:
- `link:ash:guide:Topics/Attributes` -> `-> `<a href="/docs/guides/ash/topics/attributes.md">Attributes</a>`
+ `link:ash:guide:Topics/Attributes` -> `-> `\<a href="/docs/guides/ash/topics/attributes.md"\>Attributes\</a\>`
## Mix dependencies
| chore: try escaping html | null | ash-project/ash | MIT License | Elixir |
@@ -52,7 +52,7 @@ func (b *cmdSecretBuilder) cmdUpdate() *cobra.Command {
cmd := b.newCmd("update", b.cmdUpdateRunEFn)
cmd.Short = "Update secret"
cmd.Flags().StringVarP(&b.key, "key", "k", "", "The secret key (required)")
- cmd.Flags().StringVarP(&b.value, "value", "v", "", "Optional secret value for scripting conveni... | chore(cmd/influx): typo | null | influxdata/influxdb | MIT License | Go |
@@ -46,8 +46,13 @@ case "$JOB" in
grunt test:travis-protractor --specs="$TARGET_SPECS"
;;
"deploy")
+ # we never deploy on Pull requests, so it's safe to skip the build here
+ if [[ $TRAVIS_PULL_REQUEST != 'false' ]]; then
grunt package
grunt compress:firebaseCodeDeploy
+ else
+ echo "Skipping build because Travis has ... | chore(travis): skip build on deployment job when from Pull Request | null | angular/angular.js | MIT License | Shell |
@@ -23,7 +23,7 @@ bash ${WORKSPACE}/scripts/ci/setup-npm.sh
# if we came to that point we are ready for publish
# trigger lerna release
-${WORKSPACE}/node_modules/.bin/lerna publish preminor \
+${WORKSPACE}/node_modules/.bin/lerna publish prerelease \
--conventional-prerelease \
--create-release github \
--dist-tag nex... | chore: use prerelease for rc | null | sap/ui5-webcomponents-react | Apache License 2.0 | Shell |
@@ -1597,13 +1597,14 @@ func (t *TBtree) bulkInsert(kvts []*KVT) error {
return ErrIllegalArguments
}
- ts := t.root.ts()
+ currTs := t.root.ts()
+
+ // newTs will hold the greatest time, the minimun value will be currTs + 1
+ var newTs uint64
// validated immutable copy of input kv pairs
immutableKVTs := make([]*KVT, ... | chore(embedded/tbtree): minor code improvements | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -43,7 +43,7 @@ rm $CONNECT_DOWNLOAD
# SAUCE_ACCESS_KEY=`echo $SAUCE_ACCESS_KEY | rev`
-ARGS=""
+ARGS="-vv -l -"
# Set tunnel-id only on Travis, to make local testing easier.
if [ ! -z "$TRAVIS_JOB_NUMBER" ]; then
@@ -58,5 +58,4 @@ echo "Starting Sauce Connect in the background, logging into:"
echo " $CONNECT_LOG"
ec... | chore(logs): Trying verbose logging again | null | angular-ui/ui-grid | MIT License | Shell |
@@ -22,11 +22,11 @@ import { flattenFormData } from './flatten-form-data'
// persist pending changes to localStorage,
// and load from localstorage on boot
-export const useLocalStorageCache = (
+export function useLocalStorageCache(
path: string,
form: Form<any>,
editMode: boolean
-) => {
+) {
const cms = useCMS()
con... | chore: switch from lamda to function | null | tinacms/tinacms | Apache License 2.0 | TypeScript |
@@ -214,6 +214,10 @@ func OpenWith(pLog, dLog, cLog appendable.Appendable, opts *Options) (*AHtree, e
pOff := binary.BigEndian.Uint64(b[:])
pSize := binary.BigEndian.Uint32(b[offsetSize:])
+ // pOff denotes the latest payload
+ // pSize denotes the size of the latest payload
+ // as payloads are prefixed with the size ... | chore(embedded/ahtree): add inline comments | null | codenotary/immudb | Apache License 2.0 | Go |
+/* eslint-env jest */
+
+import { localeSubpathOptions } from '../../src/config/default-config'
+
+import { localeSubpathRequired } from '../../src/utils'
+
+describe('localeSubpathRequired utility function', () => {
+ let nextI18NextInternals
+
+ beforeEach(() => {
+ nextI18NextInternals = {
+ config: {
+ defaultLang... | chore: Add unit tests for locale-subpaths-required.js | null | i18next/next-i18next | MIT License | JavaScript |
+const fs = require('fs');
+const args = process.argv.slice(2);
+
+if (args.length != 1) {
+ console.error('Usage ./obfuscate [filepath]');
+ process.exit(1);
+}
+// TODO(eh-am): read from stdin if available
+const filename = args[0];
+const data = JSON.parse(fs.readFileSync(filename));
+
+function randomName() {
+ let... | chore: add a script to obfuscate json files | null | pyroscope-io/pyroscope | Apache License 2.0 | JavaScript |
@@ -163,8 +163,9 @@ impl<B: BlockchainBackend> TxConsensusValidator<B> {
for kernel in tx.body.kernels() {
if let Some((db_kernel, header_hash)) = self.db.fetch_kernel_by_excess_sig(kernel.excess_sig.to_owned())? {
let msg = format!(
- "Block contains kernel excess: {} which matches already existing excess signature in... | chore: fix log | null | tari-project/tari | BSD 3-Clause New or Revised License | Rust |
@@ -126,8 +126,11 @@ Devise.setup do |config|
# A period that the user is allowed to access the website even without
# confirming their account. For instance, if set to 2.days, the user will be
# able to access the website for two days without confirming their account,
- # access will be blocked just in the third day. ... | chore(docs): allow_unconfirmed_access_for = nil | null | heartcombo/devise | MIT License | Ruby |
@@ -152,14 +152,16 @@ class DataStoreScalarTests: SyncEngineIntegrationTestBase {
XCTAssertNil(emptyModel)
}
+ // TODO: Not sure how this was compiling and tested before, should be fixed with
+ // https://github.com/aws-amplify/amplify-ios/pull/1145
func testListContainerWithNil() throws {
try startAmplifyAndWaitForSyn... | chore(DataStore): fix non-compiling list nullability test | null | aws-amplify/amplify-ios | Apache License 2.0 | Swift |
@@ -229,7 +229,7 @@ class StoredCardComponentTests: XCTestCase {
textField.text = "1111"
textField?.sendActions(for: .editingChanged)
- XCTAssertEqual(textField.delegate!.textField!(textField, shouldChangeCharactersIn: NSRange(location: 3, length: 1), replacementString: "1"), true)
+ XCTAssertEqual(textField.delegate!.... | chore: Update StoredCardComponentTests | null | adyen/adyen-ios | MIT License | Swift |
@@ -256,7 +256,25 @@ class SMTPConnection:
"The hostname param contains prohibited newline characters"
)
- async def connect(self, **kwargs) -> SMTPResponse:
+ async def connect(
+ self,
+ hostname: Optional[Union[str, Default]] = _default,
+ port: Optional[Union[int, Default]] = _default,
+ username: Optional[Union[st... | chore: fix mypy error for connect | null | cole/aiosmtplib | MIT License | Python |
@@ -15,7 +15,7 @@ return [
[
'key' => 'web',
'name' => 'Web',
- 'version' => '10.0.0',
+ 'version' => '10.1.0',
'url' => 'https://github.com/appwrite/sdk-for-web',
'package' => 'https://www.npmjs.com/package/appwrite',
'enabled' => true,
@@ -63,7 +63,7 @@ return [
[
'key' => 'flutter',
'name' => 'Flutter',
- 'version' ... | chore: update sdk versions | null | appwrite/appwrite | BSD 3-Clause New or Revised License | PHP |
this.showPicker = true
this.search = ''
this.filteredTimes = this.times
+
+ if (window.innerWidth >= 1000) {
this.$nextTick(() => {
this.$refs.search.focus()
})
+ }
},
closePicker() { this.showPicker = false },
clearInput() {
| chore: prevent autofocus search on mobile | null | wireui/wireui | MIT License | PHP |
@@ -336,7 +336,7 @@ class AuditingTest extends AuditingTestCase
/**
* @test
*/
- public function itWillNotAuditDueToContractlessDriver()
+ public function itWillNotAuditDueToClassWithoutDriverInterface()
{
// We just pass a FQCN that does not implement the AuditDriver interface
$this->app['config']->set('audit.driver',... | chore(Tests): update test method name | null | owen-it/laravel-auditing | MIT License | PHP |
@@ -5,14 +5,14 @@ scriptdir=$(cd $(dirname $0) && pwd)
# Download (parts of) the cfn-lint repo that we use to enhance our model
intermediate="$(mktemp -d)/tmp.zip"
-url="https://github.com/aws-cloudformation/cfn-python-lint/archive/master.zip"
+url="https://github.com/aws-cloudformation/cfn-lint/archive/master.zip"
ech... | chore(cfnspec): update cfn-lint repo name | null | aws/aws-cdk | Apache License 2.0 | Shell |
@@ -14,7 +14,6 @@ package org.camunda.bpm.engine.test.concurrency;
import java.util.List;
import java.util.concurrent.atomic.AtomicInteger;
-
import org.camunda.bpm.engine.OptimisticLockingException;
import org.camunda.bpm.engine.ProcessEngineException;
import org.camunda.bpm.engine.delegate.DelegateExecution;
@@ -23,1... | chore(test): ignore test for H2 | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.