diff
stringlengths
12
9.3k
message
stringlengths
8
199
reasoning_trace
null
repo
stringlengths
6
68
license
stringclasses
3 values
language
stringclasses
16 values
@@ -103,11 +103,11 @@ public extension SolanaSDK.Account { self.isWritable = isWritable } - public func readonly(publicKey: SolanaSDK.PublicKey, isSigner: Bool) -> Self { + public static func readonly(publicKey: SolanaSDK.PublicKey, isSigner: Bool) -> Self { .init(publicKey: publicKey, isSigner: isSigner, isWritable: f...
feat: readonly as static
null
p2p-org/solana-swift
MIT License
Swift
@@ -45,9 +45,6 @@ func sysBaseRouter(r *gin.RouterGroup) { r.GET("/", system.HelloWorld) - r.GET("/ws", ws.WebsocketManager.WsClient) - - r.GET("/info", handler.Ping) } @@ -127,6 +124,12 @@ func sysCheckRoleRouterInit(r *gin.RouterGroup, authMiddleware *jwt.GinJWTMiddle // Refresh time can be longer than token timeout ...
feat: log output in ws mode
null
go-admin-team/go-admin
MIT License
Go
@@ -105,84 +105,95 @@ trait Auditable } /** - * Set the old/new attributes corresponding to a retrieved event. + * Get the old/new attributes of a retrieved event. * - * @param array $old - * @param array $new - * - * @return void + * @return array */ - protected function auditRetrievedAttributes(array &$old, array &$n...
feat(Auditable): change the way the event handlers work
null
owen-it/laravel-auditing
MIT License
PHP
@@ -11,21 +11,27 @@ export default function runHooks(action, instance, plugins) { cache[action.type] = functions // TODO bust cache when enable/disable runs } - console.log('cache', cache) - console.log('functions', functions) + // console.log('cache', cache) + // console.log('functions', functions) + const state = ins...
feat(core): add debug to plugin action mods
null
davidwells/analytics
MIT License
JavaScript
@@ -38,8 +38,7 @@ class PaginationAdminQuery extends AbstractPaginationQuery */ if (isset($params['text']) && !empty($params['text'])) { - $search = strtolower($params['text']); - $queryBuilder->text($search); + $this->filterTextSearch($queryBuilder, $params['text']); } $queryBuilder->field('isDraft')->equals(false); @...
feat(Jobs): use search text for advanced querying
null
cross-solution/yawik
MIT License
PHP
@@ -6,7 +6,7 @@ export { FontStyle } from './stackElementMetadata' export { getHighlighter } from './highlighter' export { renderToHtml, HtmlRendererOptions } from './renderer' export { IThemedToken } from './themedTokenizer' -export { setCDN, setOnigasmWASM, fetchTheme as loadTheme } from './loader' +export { setCDN, ...
feat: export toShikiTheme
null
shikijs/shiki
MIT License
TypeScript
@@ -179,7 +179,22 @@ class _FlexShortHand { if (group.length == 0) return; if (group.length == 1) { + String flexValue = group[0]; + if (flexValue == 'initial') { + flexGrow = '0'; + flexShrink = '1'; + flexBasis = 'auto'; + } else if (flexValue == 'auto') { + flexGrow = '1'; + flexShrink = '1'; + flexBasis = 'auto'; +...
feat: support flex shorthand value
null
openkraken/kraken
Apache License 2.0
Dart
-/* - * The MIT License (MIT) - * - * Copyright (c) 2016-2022 Objectionary.com - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the ...
feat(#614): remove priority test
null
cqfn/eo
MIT License
Java
@@ -1055,7 +1055,11 @@ class Skeleton(object): return swc - def viewer(self, units='nm', draw_edges=True, draw_vertices=True): + def viewer( + self, units='nm', + draw_edges=True, draw_vertices=True, + color_by='radius' + ): """ View the skeleton with a radius heatmap. @@ -1065,6 +1069,12 @@ class Skeleton(object): uni...
feat: add coloring by connected component to skeleton viz
null
seung-lab/cloud-volume
BSD 3-Clause New or Revised License
Python
@@ -21,6 +21,10 @@ class V06 extends Filter { switch($model) { + case Response::MODEL_COLLECTION: + $parsedResponse = $this->parseCollection($content); + break; + case Response::MODEL_FILE : $parsedResponse = $this->parseFile($content); break; @@ -100,6 +104,13 @@ class V06 extends Filter { return $parsedResponse; } + ...
feat: parse collection
null
appwrite/appwrite
BSD 3-Clause New or Revised License
PHP
@@ -160,8 +160,8 @@ func NewTFBlueprintTest(t testing.TB, opts ...tftOption) *TFBlueprintTest { return tft } -// getTFOptions generates terraform.Options used by Terratest. -func (b *TFBlueprintTest) getTFOptions() *terraform.Options { +// GetTFOptions generates terraform.Options used by Terratest. +func (b *TFBlueprin...
feat: export GetTFOptions method for tft
null
googlecloudplatform/cloud-foundation-toolkit
Apache License 2.0
Go
@@ -31,6 +31,15 @@ func NewCmdUpdate(f *cmdutils.Factory) *cobra.Command { var ua *cmdutils.UserAssignments out := f.IO.StdOut + if cmd.Flags().Changed("unassign") { + if cmd.Flags().Changed("assignee") { + return &cmdutils.FlagError{Err: fmt.Errorf("--assignee and --unassign are mutually exclusive")} + } + ua = &cmdut...
feat(commands/issue/update): add --unassign flag
null
profclems/glab
MIT License
Go
@@ -76,7 +76,7 @@ function buildUnigraphEntityPart (rawPart: any, options: BuildEntityOptions, sch let predicate = "_value"; let noPredicate = false; const rawPartUnigraphType = getUnigraphType(rawPart, localSchema?.type?.['unigraph.id']); - if (!localSchema) console.log(localSchema, rawPart) + console.log(localSchema,...
feat: allow specifying target schema
null
unigraph-dev/unigraph-dev
MIT License
TypeScript
@@ -235,6 +235,9 @@ pub struct Db { /// Metric labels metric_labels: Vec<KeyValue>, + /// Metrics for tracking the number of errors that occur while ingesting data + ingest_errors: metrics::Counter, + /// Optionally connect to a write buffer for either buffering writes or reading buffered writes write_buffer: Option<Wr...
feat: Add metrics for when ingesting from the write buffer fails
null
influxdata/influxdb_iox
Apache License 2.0
Rust
@@ -7,6 +7,7 @@ use Utopia\Database\Document; use Appwrite\Network\Validator\Host; use Appwrite\Utopia\Request; use Appwrite\Utopia\Response; +use Appwrite\Utopia\Response\Model; use Utopia\App; use Utopia\Validator\ArrayList; use Utopia\Validator\Integer; @@ -395,6 +396,34 @@ App::get('/v1/mock/tests/general/empty') $...
feat: add new mock endpoint for sdk generator tests
null
appwrite/appwrite
BSD 3-Clause New or Revised License
PHP
@@ -83,6 +83,10 @@ public class PerTargetPropagater { /** Whether to break travel times down into walk, wait, and ride time. */ private boolean calculateComponents; + /** Whether to propagate only to one target that corresponds to the origin (e.g. in a travel time savings + * calculation) */ + private boolean matchedTa...
feat(points): support matched origin-destination travel time analyses
null
conveyal/r5
MIT License
Java
@@ -496,6 +496,26 @@ impl<'a> TypeChecker<'a> { self.resolve_date_add(span, date, interval, unit, required_type) .await? } + Expr::DateSub { + span, + date, + interval, + unit, + .. + } => { + self.resolve_date_add( + span, + date, + &Expr::UnaryOp { + span, + op: UnaryOperator::Minus, + expr: interval.clone(), + }, + ...
feat(planner): rewrite date_sub to date_add
null
datafuselabs/databend
Apache License 2.0
Rust
/* eslint-disable camelcase */ +/* eslint-disable no-unused-vars */ +/** + * Default Theme Colors + */ + +// grey scale +const black = "#000000"; +const black95 = "#0d0d0d"; +const black90 = "#1a1a1a"; +const black85 = "#262626"; +const black80 = "#333333"; +const black75 = "#404040"; +const black70 = "#4d4d4d"; +const...
feat: added all default theme color variables
null
reactioncommerce/reaction-component-library
Apache License 2.0
JavaScript
export default { menswear: [ 'ankleCircumference', + 'backSeat', + 'backWaist', 'bicepsCircumference', 'chestCircumference', + 'crossSeam', 'crotchDepth', + 'frontCrossSeam', 'headCircumference', 'hipsCircumference', 'hpsToBust', @@ -27,10 +31,14 @@ export default { ], womenswear: [ 'ankleCircumference', + 'backSeat', ...
feat(models): Added new measurements to models
null
freesewing/freesewing
MIT License
JavaScript
@@ -111,6 +111,13 @@ pub fn detect_release_name() -> Result<String, Error> { } } + // try CircleCI: https://circleci.com/docs/2.0/env-vars/ + if let Ok(release) = env::var("CIRCLE_SHA1") { + if !release.is_empty() { + return Ok(release); + } + } + // for now only execute this on macs. The reason is that this uses // xc...
feat: add support for CicleCI
null
getsentry/sentry-cli
BSD 3-Clause New or Revised License
Rust
@@ -10,6 +10,7 @@ import io.clappr.player.log.Logger import io.clappr.player.plugin.Loader import io.clappr.player.plugin.Plugin import io.clappr.player.plugin.core.UICorePlugin +import io.clappr.player.shared.SharedData import io.clappr.player.utils.Environment class Core(options: Options) : UIObject() { @@ -78,6 +79,...
feat: add sharedDate on core context
null
clappr/clappr-android
BSD 3-Clause New or Revised License
Kotlin
@@ -5,7 +5,7 @@ import flush from "styled-jsx/server"; import Helmet from "react-helmet"; import { Provider } from "mobx-react"; import jsHttpCookie from "cookie"; -import * as snippet from "@segment/snippet"; +import analyticsProviders from "analytics"; import rootMobxStores from "../lib/stores"; import getPageContext...
feat: render all provided analytics scripts
null
reactioncommerce/example-storefront
Apache License 2.0
JavaScript
@@ -29,7 +29,7 @@ import { FormControl } from '@angular/forms'; import { MatPaginator } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { merge, of, Subject } from 'rxjs'; -import { debounceTime, distinctUntilChanged, map, startWith, takeUntil } from 'rxjs/operators'; +impor...
feat: reset page to 1 when search term change
null
gravitee-io/gravitee-api-management
Apache License 2.0
TypeScript
@@ -24,6 +24,9 @@ class BotListApi(val httpClient: HttpClient, val settings: Settings) { val url = "$TOP_GG_URL/api/bots/${settings.botInfo.id}/stats" if (token.isBlank()) return TaskManager.asyncIgnoreEx { + val extra = serversArray.sum() + if (extra > 9999) return@asyncIgnoreEx + val body = DataObject.empty() .put("s...
feat: oopsie woopsie
null
toxicmushroom/melijn
MIT License
Kotlin
@@ -269,6 +269,12 @@ namespace Unity.Netcode /// </summary> public bool IsOwnedByServer => NetworkObject.IsOwnedByServer; + /// <summary> + /// Used to determine if it is safe to access NetworkObject and NetworkManager from within a NetworkBehaviour component + /// Primarily useful when checking NetworkObject/NetworkMa...
feat: NetworkBehaviour.IsSpawned
null
unity-technologies/com.unity.multiplayer.mlapi
MIT License
C#
@@ -24,8 +24,10 @@ emitter()->addListener('onEntriesFetchSingleDirectives', static function (): voi $field = entries()->registry()->get('methods.fetch.field'); - if (strings($field)->contains('@parser:shortcodes') && registry()->get('flextype.settings.entries.parsers.shortcodes.enabled') != false) { + if (strings($fiel...
feat(directives): update logic for `shortcodes` directive
null
flextype/flextype
MIT License
PHP
@@ -151,13 +151,17 @@ class Linkedin extends OAuth2 /** * Check if the OAuth email is verified * + * If present, the email is verified. This was verfied through a manual Linkedin sign up process + * * @param $accessToken * * @return bool */ public function isEmailVerified(string $accessToken): bool { - return false; + ...
feat: added check for Linkedin OAuth
null
appwrite/appwrite
BSD 3-Clause New or Revised License
PHP
@@ -8,6 +8,7 @@ import { EnlargedTextTooltip } from '../EnlargedTextTooltip'; import HelpOutlineIcon from '../../../../assets/icons/HelpOutlineIcon'; import ExpandMoreIcon from '../../../../assets/icons/ExpandMoreIcon'; import ExpandLessIcon from '../../../../assets/icons/ExpandLessIcon' +import ErrorOutlineIcon from '...
feat: Add object level error support for design configurator
null
layer5io/meshery
Apache License 2.0
JavaScript
@@ -8,6 +8,7 @@ case $1 in optvalue=`echo $arg | cut -d= -f2` case $optname in --conferences) CONFERENCES=$optvalue;; + --allow-insecure-certs) ALLOW_INSECURE_CERTS=$optvalue;; --participants) PARTICIPANTS=$optvalue;; --senders) SENDERS=$optvalue;; --audio-senders) AUDIO_SENDERS=$optvalue;; @@ -23,6 +24,10 @@ case $1 i...
feat: Allow malleus to test instances with self-signed certificates
null
jitsi/jitsi-meet-torture
Apache License 2.0
Shell
@@ -160,7 +160,7 @@ public class MetadataoracleInputFormat extends BaseMetadataInputFormat { @Override protected void init() throws SQLException { - StringBuilder stringBuilder = new StringBuilder(); + StringBuilder stringBuilder = new StringBuilder(2 * tableList.size()); for(int index=0;index<tableList.size();index++)...
feat: add interface doc, StringBuilder init capacity
null
dtstack/chunjun
Apache License 2.0
Java
@@ -53,12 +53,20 @@ class Pipeline: def objective(self, protocol, subset='development'): metric = self.get_tune_metric() + value, duration = [], [] for current_file in getattr(protocol, subset)(): reference = current_file['annotation'] uem = get_annotated(current_file) hypothesis = self.apply(current_file) - metric(ref...
feat: add support for non-pyannote.metrics metrics
null
pyannote/pyannote-audio
MIT License
Python
import path from 'path'; import fs from 'fs'; -import semver from 'semver'; import { retrievePackageJson, getVersionedPackages, @@ -44,14 +43,7 @@ export default async (npmOptions, { storyFormat = 'csf' }) => { writePackageJson(packageJson); - // When working with `create-react-app@>=2.0.0`, we know `babel-loader` is i...
feat(cli): make CLI works with Yarn 2 for React scripts projects
null
storybookjs/storybook
MIT License
JavaScript
@@ -10,6 +10,7 @@ import ( "github.com/influxdata/platform" "github.com/influxdata/platform/rand" "github.com/influxdata/platform/snowflake" + "go.uber.org/zap" ) const ( @@ -27,6 +28,7 @@ const ( type Client struct { Path string db *bolt.DB + Logger *zap.Logger IDGenerator platform.IDGenerator TokenGenerator platform....
feat(bolt): add zap logger to bolt client
null
influxdata/influxdb
MIT License
Go
@@ -6,7 +6,7 @@ frappe.quick_edit = function(doctype, name) { }); }; -frappe.ui.form.make_quick_entry = (doctype, after_insert, init_callback, doc) => { +frappe.ui.form.make_quick_entry = (doctype, after_insert, init_callback, doc, force) => { var trimmed_doctype = doctype.replace(/ /g, ''); var controller_name = "Quic...
feat: forcefully create quick entry
null
frappe/frappe
MIT License
JavaScript
@@ -79,7 +79,7 @@ class OrderSummary extends Component { } render() { - const { classes } = this.props; + const { classes, fulfillmentGroup } = this.props; return ( <div className={classes.summary}> @@ -89,7 +89,7 @@ class OrderSummary extends Component { <Typography variant="subheading">{"Payment Method"}</Typography>...
feat: add payment display name
null
reactioncommerce/example-storefront
Apache License 2.0
JavaScript
@@ -75,6 +75,10 @@ impl InputFormatTextBase for InputFormatNDJson { StageFileFormatType::NdJson } + fn is_splittable() -> bool { + true + } + fn get_format_settings(settings: &Arc<Settings>) -> Result<FormatSettings> { let timezone = get_time_zone(settings)?; Ok(FormatSettings {
feat(input_format): enable is_splittable form ndjson
null
datafuselabs/databend
Apache License 2.0
Rust
+import { Reporter } from '@aurelia/kernel'; +import { QueuedBrowserHistory } from './queued-browser-history'; +export interface INavigationEntry { + instruction: string; + fullStateInstruction: string; + index?: number; + firstEntry?: boolean; // Index might change to not require first === 0, firstEntry should be reli...
feat(router): add navigator
null
aurelia/aurelia
MIT License
TypeScript
@@ -55,11 +55,6 @@ public final class FakeMaven { */ private final Map<String, Object> attributes; - /** - * Path to a program in workspace. - */ - private Path prog; - /** * The main constructor. * @@ -116,8 +111,7 @@ public final class FakeMaven { final Tojo tojo = Catalogs.INSTANCE.make(this.foreignPath()) .add("foo...
feat(#1417): remove prog field at all
null
cqfn/eo
MIT License
Java
@@ -6,7 +6,7 @@ use ockam_node::Context; use tokio::{io::AsyncReadExt, net::tcp::OwnedReadHalf}; use tracing::{error, warn}; -const MAX_PAYLOAD_SIZE: usize = 256; +const MAX_PAYLOAD_SIZE: usize = 10 * 1024; /// A TCP Portal receiving message processor ///
feat(rust): use 10kb buffer for tcp portal
null
ockam-network/ockam
Apache License 2.0
Rust
+<?php + +use Faker\Generator as Faker; +use OwenIt\Auditing\Models\Audit; +use OwenIt\Auditing\Tests\Models\Article; +use OwenIt\Auditing\Tests\Models\User; +/* +|-------------------------------------------------------------------------- +| Audit Factories +|------------------------------------------------------------...
feat(Tests): implement Audit factory
null
owen-it/laravel-auditing
MIT License
PHP
@@ -21,8 +21,8 @@ func NewCmdSubscribe(f *cmdutils.Factory) *cobra.Command { $ glab mr subscribe 123 $ glab mr sub 123 $ glab mr subscribe branch + $ glab mr subscribe 123 branch # subscribe to multiple MRs `), - Args: cobra.MaximumNArgs(1), RunE: func(cmd *cobra.Command, args []string) error { var err error c := f.IO....
feat(commands/mr/subscribe): allow subscribing to multiple MRs
null
profclems/glab
MIT License
Go
# "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. from abc import ABCMeta, abstractmethod from collections.abc import Iterable -from contextlib import contextmanager from typing import Dict from typing import Iterable as Iter from typing import Union @@ -180,7 +179,7 @@ class Opti...
feat(mge/optimizer): save state's numpy value by default in `state_dict`
null
megengine/megengine
Apache License 2.0
Python
@@ -40,6 +40,14 @@ class CollectNukeInstances(pyblish.api.ContextPlugin): if avalon_knob_data["id"] != "pyblish.avalon.instance": continue + # establish families + family = avalon_knob_data["family"] + families = list() + + # except disabled nodes but exclude backdrops in test + if ("nukenodes" not in family) and (node...
feat(nuke): fixing family/class detection
null
pypeclub/openpype
MIT License
Python
static lv_res_t decoder_info(struct _lv_img_decoder_t * decoder, const void * src, lv_img_header_t * header); static lv_res_t decoder_open(lv_img_decoder_t * dec, lv_img_decoder_dsc_t * dsc); static void decoder_close(lv_img_decoder_t * dec, lv_img_decoder_dsc_t * dsc); -static void convert_color_depth(uint8_t * img, u...
feat(png): reallocate memory to reduce memory usage
null
lvgl/lvgl
MIT License
C
@@ -16,7 +16,6 @@ import { convertPx } from '../../utils/convert-px' const classPrefix = `adm-index-bar` export type IndexBarProps = { - className?: string sticky?: boolean stickyOffsetTop?: number children?: React.ReactNode @@ -83,7 +82,9 @@ export const IndexBar = forwardRef<IndexBarRef, IndexBarProps>((p, ref) => { ...
feat: (IndexBar) remove `any` type and remove duplicate className prop
null
ant-design/ant-design-mobile
MIT License
TypeScript
@@ -9,59 +9,56 @@ namespace Bit.BlazorUI.Tests.Lists; [TestClass] public class BitBasicListTests : BunitTestContext { - [DataTestMethod, - DataRow(true, 1000, 500, 50, null, 1), - DataRow(true, 1000, 500, 50, 50, 1), - DataRow(true, 1000, 500, 50, null, null), - DataRow(true, 1000, 500, 50, 50, null), - DataRow(true, 1...
feat(components): correct the test of the Virtualize parameter in the BitBasicList component
null
bitfoundation/bitframework
MIT License
C#
namespace Cicada { const static std::string FILTER_INVALID_PERFORMANCE = "filter stop due to poor device performance"; + const static std::string FILTER_INVALID_OVER_FPS = "filter stop due to fps is too big"; + const static std::string FILTER_VALID_RECOVERY = "filter recovery"; class DCACallback { protected: void *mUse...
feat(ivideofilter): add dca message
null
alibaba/cicadaplayer
MIT License
C
@@ -100,7 +100,7 @@ func (lu *ConsistentLookup) Map(vcursor VCursor, ids []sqltypes.Value) ([]key.De return out, nil } - results, err := lu.lkp.Lookup(vcursor, ids, vtgatepb.CommitOrder_PRE) + results, err := lu.lkp.Lookup(vcursor, ids, vcursor.LookupRowLockShardSession()) if err != nil { return nil, err }
feat: consistent lookup to use commit order based on the input query to vtgate instead of fixed pre commit order
null
vitessio/vitess
Apache License 2.0
Go
@@ -1125,7 +1125,7 @@ int SuperMediaPlayer::updateLoopGap() if (mVideoInterlaced == InterlacedType_YES) { fps *= 2; } - if (!mFilterManager->isInvalid(IVideoFilter::Feature::Buffer, "vfi")) { + if (mFilterManager != nullptr && !mFilterManager->isInvalid(IVideoFilter::Feature::Buffer, "vfi")) { fps *= 2; } return 1000 /...
feat(supermediaplayer): add filtermanager nullptr judgement
null
alibaba/cicadaplayer
MIT License
C++
@@ -80,11 +80,30 @@ impl<T: ArtifactOutput> ProjectCompileOutput<T> { /// let artifacts: BTreeMap<String, &ConfigurableContractArtifact> = project.compile().unwrap().artifacts().collect(); /// ``` pub fn artifacts(&self) -> impl Iterator<Item = (String, &T::Artifact)> { + self.versioned_artifacts().map(|(name, (artifac...
feat(solc): add versioned artifacts helper
null
gakonst/ethers-rs
Apache License 2.0
Rust
@@ -18,6 +18,11 @@ namespace Unity.Netcode /// </summary> private protected NetworkBehaviour m_NetworkBehaviour; + public NetworkBehaviour GetBehaviour() + { + return m_NetworkBehaviour; + } + /// <summary> /// Initializes the NetworkVariable /// </summary>
feat: providing a public accessor for the NetworkBehaviour of a NetworkVariableBase
null
unity-technologies/com.unity.multiplayer.mlapi
MIT License
C#
@@ -76,6 +76,42 @@ type Job struct { User *User `json:"user"` } +type Bridge struct { + Commit *Commit `json:"commit"` + Coverage float64 `json:"coverage"` + AllowFailure bool `json:"allow_failure"` + CreatedAt *time.Time `json:"created_at"` + StartedAt *time.Time `json:"started_at"` + FinishedAt *time.Time `json:"fini...
feat: add list pipeline bridges
null
xanzy/go-gitlab
Apache License 2.0
Go
@@ -17,7 +17,6 @@ use crate::{as_mut, ffi_fn, safe_str}; use crate::util::*; use crate::util::string::if_null; use serde::{Serialize, Deserialize}; -use std::any::Any; use clap::ArgSettings; mod args; @@ -344,7 +343,8 @@ ffi_fn! { } } -#[derive(Serialize, Deserialize)] +/// Contain the various attributes of an argument...
feat(ffi verifier cli): simplify duplicated conversion for default_value, env, possible_values
null
pact-foundation/pact-reference
MIT License
Rust
@@ -47,30 +47,30 @@ const MoleculeDataCounter = ({ const decrementDisabled = disabled || numInternalValue <= numMin const incrementDisabled = disabled || numInternalValue >= numMax + const assignValue = (e, {nValue}) => { + const value = String(nValue) + setInternalValue(value) + onChange(e, {value}) + } + const increm...
feat(molecule/dataCounter): improved code w/ function
null
sui-components/sui-components
MIT License
JavaScript
@@ -449,6 +449,21 @@ func EnsureOrbiterArtifacts( "memory": resource.MustParse("250Mi"), }, }, + LivenessProbe: &core.Probe{ + Handler: core.Handler{ + HTTPGet: &core.HTTPGetAction{ + Path: "/health", + Port: intstr.FromInt(9000), + Scheme: core.URISchemeHTTP, + HTTPHeaders: make([]core.HTTPHeader, 0, 0), + }, + }, + I...
feat: kill unhealthy ORBITER
null
caos/orbos
Apache License 2.0
Go
@@ -5,6 +5,7 @@ import ( "encoding/json" "errors" "fmt" + "math" "net/http" "sort" "time" @@ -315,6 +316,25 @@ func (bf *brewfather) getResult() (*Batch, error) { return &batch, nil } +// Unit conversion functions available to template. +func (bf *brewfather) DegCToF(degreesC float64) float64 { + return math.Round(10*(...
feat(brewfather): unit conversion routines
null
jandedobbeleer/oh-my-posh
MIT License
Go
@@ -27,6 +27,8 @@ Try these URLs to see if your environment is working: http://localhost:3030/admin/ <-- an admin interface, login with "admin@example.com" / "admin" http://localhost:3030/admin/test <-- a list of all charts in the db + http://localhost:8080/wp/wp-admin/ <-- the WordPress admin interface + http://localh...
feat: add :8080 and :8090 local urls to docker banner description
null
owid/owid-grapher
MIT License
Shell
@@ -5,7 +5,5 @@ function cssSupports (css) { export default { 'css.var': cssSupports('--a:0'), 'css.env': cssSupports('top:env(a)'), - 'css.constant': cssSupports('top:constant(a)'), - getLaunchOptionsSync: false, - getEnterOptionsSync: false + 'css.constant': cssSupports('top:constant(a)') }
feat: uni.canIUse
null
dcloudio/uni-app
Apache License 2.0
JavaScript
@@ -80,7 +80,9 @@ public class NaturalLanguageUnderstanding extends WatsonService { /** * Instantiates a new `NaturalLanguageUnderstanding` with IAM. Note that if the access token is specified in the * iamOptions, you accept responsibility for managing the access token yourself. You must set a new access token - * befo...
feat(natural language understanding): Add generated updates
null
watson-developer-cloud/java-sdk
Apache License 2.0
Java
@@ -119,6 +119,13 @@ const styles = theme => ({ '& .sidebarContainer': { transition: 'all 0.2s ease-out', width: 200 + }, + '& .divider': { + marginBottom: '30px', + marginLeft: 9, + paddingLeft: 0, + transition: 'all 0.2s ease-out', + width: 160 } }, closedDrawer: { @@ -129,6 +136,13 @@ const styles = theme => ({ '& ....
feat: width of opened and closed divider w/ transition
null
selfkeyfoundation/identity-wallet
MIT License
JavaScript
@@ -31,4 +31,10 @@ app // Register routes DocumentRoute(router) +try { app.listen(config.options.port, config.options.host) + + console.log(`Glue started on ${config.options.host}:${config.options.port}`) +} catch (err) { + throw new Error(err) +}
feat: wrap app.listen in try/catch
null
orca-group/spirit
Apache License 2.0
TypeScript
@@ -12,8 +12,9 @@ import Config # config :realtime, RealtimeWeb.Endpoint, # url: [host: "realtime.dev", port: 80] -# Do not print debug messages in production -config :logger, :warning, +log_level = System.get_env("LOG_LEVEL", "warning") |> String.to_atom() + +config :logger, log_level, format: "$time [$level] $message...
feat: add LOG_LEVEL env var for prod
null
supabase/realtime
Apache License 2.0
Elixir
@@ -69,7 +69,17 @@ func InjectDevSpaceHelper(client kubectl.Client, pod *v1.Pod, container string, localHelperName := "devspacehelper" + arch stdout, _, err := client.ExecBuffered(pod, container, []string{DevSpaceHelperContainerPath, "version"}, nil) if err != nil || version != string(stdout) { - log.Infof("Inject devs...
feat: download devspacehelper in contaner
null
loft-sh/devspace
Apache License 2.0
Go
@@ -62,10 +62,14 @@ module Solargraph def send_response return if id.nil? if host.cancel?(id) + # https://microsoft.github.io/language-server-protocol/specifications/specification-current/#cancelRequest + # cancel should send response RequestCancelled Solargraph::Logging.logger.info "Cancelled response to #{method}" - ...
feat: response REQUEST_CANCELLED, according to specification
null
castwide/solargraph
MIT License
Ruby
@@ -357,7 +357,7 @@ open class ExoPlayerPlayback( TYPE_HLS -> HlsMediaSource.Factory( dataSourceFactory ).createMediaSource(uri) - TYPE_OTHER -> ExtractorMediaSource.Factory( + TYPE_OTHER -> ProgressiveMediaSource.Factory( dataSourceFactory ).createMediaSource(uri) else -> throw IllegalStateException("Unsupported type:...
feat: replace deprecated api call to ProgressiveMediaSource.Factory
null
clappr/clappr-android
BSD 3-Clause New or Revised License
Kotlin
@@ -2315,6 +2315,31 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom trilist.SetSigTrueAction(joinMap.ShareOnlyMeeting.JoinNumber, StartSharingOnlyMeeting); trilist.SetSigTrueAction(joinMap.StartNormalMeetingFromSharingOnlyMeeting.JoinNumber, StartNormalMeetingFromSharingOnlyMeeting); + // TODO [ ]...
feat: added PasswordRequired event subscription to LinkToApi
null
pepperdash/essentials
MIT License
C#
@@ -47,11 +47,11 @@ enum class Event(val value: String) { /** * Media buffer percentage updated */ - DID_UPDATE_BUFFER("bufferUpdate"), + DID_UPDATE_BUFFER("didUpdateBuffer"), /** * Media position updated */ - DID_UPDATE_POSITION("positionUpdate"), + DID_UPDATE_POSITION("didUpdatePosition"), /**
feat(rename_events): Event value text updated
null
clappr/clappr-android
BSD 3-Clause New or Revised License
Kotlin
@@ -183,7 +183,17 @@ class Nlu extends Clonable { result.push(item); } const keys = Object.keys(this.intentFeatures); + this.featuresToIntent = {}; for (let i = 0; i < keys.length; i += 1) { + const intent = keys[i]; + const features = Object.keys(this.intentFeatures[intent]); + for (let j = 0; j < features.length; j +...
feat: better performance convert to array and whitelist
null
axa-group/nlp.js
MIT License
JavaScript
@@ -3097,6 +3097,17 @@ FORCE_INLINE __m64 _mm_max_pi16(__m64 a, __m64 b) vmax_s16(vreinterpret_s16_m64(a), vreinterpret_s16_m64(b))); } +// Compare packed signed 16-bit integers in a and b, and store packed maximum +// values in dst. +// +// FOR j := 0 to 3 +// i := j*16 +// dst[i+15:i] := MAX(a[i+15:i], b[i+15:i]) +//...
feat: Implement _m_p{min,max}{sw,ub} as macros
null
dltcollab/sse2neon
MIT License
C
@@ -9,6 +9,8 @@ public class Middlewares { public static void Use(IApplicationBuilder app, IHostEnvironment env, IConfiguration configuration) { + app.UseForwardedHeaders(); + if (env.IsDevelopment()) { app.UseDeveloperExceptionPage();
feat(template): use cdn hostname instead azure app hostname
null
bitfoundation/bitframework
MIT License
C#
@@ -291,7 +291,8 @@ class CommandClientBuilder(private val container: Container) { TakeCommand(), ContrastCommand(), KaleidoScopeCommand(), - CalculateCommand() + CalculateCommand(), + ChannelFlagsCommand() ) fun build(): CommandClient {
feat: register channelflags
null
toxicmushroom/melijn
MIT License
Kotlin
@@ -508,8 +508,51 @@ void BoatClose(BSINT32 sockfd, void* tlsContext, void* rsvd) static BOAT_RESULT sBoatPort_keyCreate_intern_generation( const BoatWalletPriKeyCtx_config* config, BoatWalletPriKeyCtx* pkCtx ) { + /* Valid private key value (as a UINT256) for Ethereum is [1, n-1], where n is + 0xFFFFFFFF FFFFFFFF FFFF...
feat: add prikey generation function for defaut crypto
null
aitos-io/boat-x-framework
Apache License 2.0
C
@@ -2,6 +2,7 @@ package platform import ( "context" + "fmt" ) type Error string @@ -18,10 +19,9 @@ const ( type SourceType string const ( - SelfSourceType = "self" V2SourceType = "v2" - V1OSSSourceType = "ossv1" - V1EnterpriseSourceType = "enterprisev1" + V1SourceType = "v1" + SelfSourceType = "self" ) // Source is an ...
feat(platform): add bucket service to source struct
null
influxdata/influxdb
MIT License
Go
@@ -911,14 +911,6 @@ async fn initialize_database(shared: &DatabaseShared) { // Already initialized DatabaseState::Initialized(_) => break, - // No active database found, was probably deleted - DatabaseState::NoActiveDatabase(_, _) => { - info!(%db_name, "no active database found"); - - // no exponential / jitter sleep...
feat: also recover from `NoActiveDatabase`
null
influxdata/influxdb_iox
Apache License 2.0
Rust
@@ -122,6 +122,13 @@ abstract public class GameManager<T extends AbstractPlayer> { referee.gameTurn(turn); registeredModules.forEach(Module::onAfterGameTurn); + // Create a frame if no player has been executed + if (players.stream().noneMatch(p -> p.hasBeenExecuted())) { + for (T player : players) { + execute(player, 0...
feat(sdk): creating a frame by default at the end of each gameTurn
null
codingame/codingame-game-engine
MIT License
Java
@@ -44,15 +44,13 @@ export async function lint(name: string, flags: ILintConfig, rulesetFile: Option }); const rulesetFiles = rulesetFile || (await getDefaultRulesetFile(process.cwd())); - const { functions, rules } = await (rulesetFiles - ? loadRulesets(process.cwd(), rulesetFiles) - : readRuleset('spectral:oas')); + ...
feat: use setRuleset
null
stoplightio/spectral
Apache License 2.0
TypeScript
import { Button, Text } from "@artsy/palette" import { SubmissionStepper } from "v2/Apps/Consign/Components/SubmissionStepper" import { Form, Formik } from "formik" -import { RouterLink } from "v2/System/Router/RouterLink" import { ArtworkDetailsForm, ArtworkDetailsFormModel, @@ -121,9 +120,13 @@ export const ArtworkDe...
feat: update learn more link and tst it
null
artsy/force
MIT License
TypeScript
@@ -307,3 +307,8 @@ func (mysqld *vtcomboMysqld) StartReplicationUntilAfter(ctx context.Context, pos func (mysqld *vtcomboMysqld) StopReplication(hookExtraEnv map[string]string) error { return nil } + +// SetSemiSyncEnabled implements the MysqlDaemon interface +func (mysqld *vtcomboMysqld) SetSemiSyncEnabled(source, re...
feat: also add semi-sync to list of things for vtcombo to not touch
null
vitessio/vitess
Apache License 2.0
Go
@@ -9,7 +9,7 @@ from frappe.utils import get_datetime_str from frappe.model.base_document import get_controller ignore_values = { - "Report": ["disabled", "prepared_report"], + "Report": ["disabled", "prepared_report", "add_total_row"], "Print Format": ["disabled"], "Notification": ["enabled"], "Print Style": ["disable...
feat: ignore add total when syncing fixtures
null
frappe/frappe
MIT License
Python
@@ -325,6 +325,7 @@ class ActionMenuComponent extends React.Component { onKeyDown={this.handleKeyDown} onKeyUp={this.handleKeyUp} origin={this.props.origin} + innerRef={this.props.ref} > {React.Children.map(this.props.children, (child, i) => React.cloneElement(child, {
feat(actionmenu): add ref support
null
pluralsight/design-system
Apache License 2.0
JavaScript
@@ -132,13 +132,17 @@ class Facebook extends OAuth2 /** * Check if the OAuth email is verified * + * If present, the email is verified. This was verfied through a manual Facebook sign up process + * * @param $accessToken * * @return bool */ public function isEmailVerified(string $accessToken): bool { - return false; + ...
feat: added check for Facebook OAuth
null
appwrite/appwrite
BSD 3-Clause New or Revised License
PHP
import { add, + addmN, direction, mixN, ReadonlyVec, @@ -42,8 +43,23 @@ export const closedCubicFromControlPoints = ( const segments: Vec[] = []; for (let i = 0, num = points.length; i < num; i++) { const q = points[(i + 1) % num]; - segments.push(mixN([], points[i], q, 0.5), set([], q)); + segments.push(addmN([], poin...
feat(geom-splines): add openCubicFromControlPoints(),
null
thi-ng/umbrella
Apache License 2.0
TypeScript
@@ -19,6 +19,7 @@ namespace Box.V2.Models public const string FieldAccess = "access"; public const string FieldPermissions = "permissions"; public const string FieldVanityName = "vanity_name"; + public const string FieldEffectiveAccess = "effective_access"; /// <summary> /// The Url of the shared link @@ -81,5 +82,11 @...
feat: expose `effective_access` in `BoxSharedLink`
null
box/box-windows-sdk-v2
Apache License 2.0
C#
@@ -406,7 +406,8 @@ x-init="function() { </div> <div class="w-full rounded-t-md border border-secondary-200 bg-white transform shadow-lg - transition-all relative max-h-96 overflow-y-auto p-3 sm:w-72 sm:rounded-xl" + dark:bg-secondary-800 dark:border-secondary-600 transition-all relative + max-h-96 overflow-y-auto p-3 ...
feat: add date time picker dark mode
null
wireui/wireui
MIT License
PHP
@@ -396,8 +396,8 @@ $utopia->get('/v1/auth/login/oauth/:provider') ->label('sdk.description', '/docs/references/auth/login-oauth.md') ->label('sdk.location', true) ->label('sdk.cookies', true) - // ->label('abuse-limit', 100) - // ->label('abuse-key', 'ip:{ip}') + ->label('abuse-limit', 50) + ->label('abuse-key', 'ip:{...
feat: added abuse checks as per review
null
appwrite/appwrite
BSD 3-Clause New or Revised License
PHP
@@ -79,8 +79,9 @@ Nevergonna let ${member} down.`, var bots = Cache.Bots.findByOwner(member.user.id); for(const bot of bots){ if(bot.added == false){ - Bots.findOne({id: bot.id}).then(d=>{ + Cache.Bots.findOne({id: bot.id}).then(d=>{ d.added = true; + d.status = member.presence.status || "online"; fetch("https://discor...
feat: update status of bot when added
null
rovelstars/discord-list
MIT License
JavaScript
@@ -8,7 +8,7 @@ from scipy.optimize import linear_sum_assignment @singledispatch -def permutate(y1, y2, cost_func: Optional[Callable] = None): +def permutate(y1, y2, cost_func: Optional[Callable] = None, returns_cost: bool = False): """Find cost-minimizing permutation Parameters @@ -20,13 +20,18 @@ def permutate(y1, y2...
feat: add returns_cost option to permutate
null
pyannote/pyannote-audio
MIT License
Python
@@ -398,9 +398,17 @@ class _DeployedContractBase(_ContractBase): def _save_deployment(self) -> None: path = self._deployment_path() + chainid = "dev" if CONFIG.network_type != "live" else CONFIG.active_network["chainid"] + deployment_build = self._build.copy() + + deployment_build["deployment"] = { + "address": self.ad...
feat: add deployment info to artifact
null
eth-brownie/brownie
MIT License
Python
@@ -10,6 +10,8 @@ namespace openloco string_id name; uint8_t pad_02[0x0E - 0x02]; uint32_t var_0E; + uint16_t var_12; + uint8_t pad_14[0x30 - 0x14]; }; #pragma pack(pop) }
feat(objects): Add additonal road object fields
null
openloco/openloco
MIT License
C
@@ -220,22 +220,22 @@ public class MLAPIEditor : EditorWindow { get { - return EditorPrefs.GetString("MLAPI_version", "None"); + return EditorPrefs.GetString(Application.productName + "/MLAPI_version", "None"); } set { - EditorPrefs.SetString("MLAPI_version", value); + EditorPrefs.SetString(Application.productName + "/...
feat(editor): Added support for multi projects
null
unity-technologies/com.unity.multiplayer.mlapi
MIT License
C#
@@ -164,9 +164,14 @@ impl Worker for TcpSendWorker { ctx.set_cluster(crate::CLUSTER_NAME).await?; if self.tx.is_none() { + debug!(addr = %self.peer, "Connecting"); let connection = match TcpStream::connect(self.peer).await { - Ok(c) => c, + Ok(c) => { + debug!(addr = %self.peer, "Connected"); + c + } Err(e) => { + debu...
feat(rust): add debug logs to tcp sender
null
ockam-network/ockam
Apache License 2.0
Rust
@@ -33,7 +33,7 @@ func NewEClient(host, userName, pwd string) (*EtcdClient, error) { cfg := client.Config{ Endpoints: machines, Transport: etcdTransport, - HeaderTimeoutPerRequest: time.Second, + HeaderTimeoutPerRequest: time.Second * 5, Username: userName, Password: pwd, }
feat: increase the timeout for etcd
null
youzan/nsq
MIT License
Go
open class Core: UIObject, UIGestureRecognizerDelegate { + + @objc public let playerId: String = UUID().uuidString + @objc open var options: Options { didSet { containers.forEach { $0.options = options }
feat: add playerId property in core
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -1322,8 +1322,10 @@ class RenderFlexItem extends RenderBox @override bool hitTest(BoxHitTestResult result, { @required Offset position }) { - hitTestChildren(result, position: position); + if (hitTestChildren(result, position: position) || hitTestSelf(position)) { result.add(BoxHitTestEntry(this, position)); return ...
feat: support tmall u xian slider click
null
openkraken/kraken
Apache License 2.0
Dart
@@ -5,15 +5,15 @@ namespace Auth\OAuth; use Auth\OAuth; // Reference Material -// https://developers.google.com/oauthplayground/ -// https://developers.google.com/identity/protocols/OAuth2 -// https://developers.google.com/identity/protocols/OAuth2WebServer -class Google extends OAuth +// https://api.stackexchange.com/...
feat: added stackoverflow reference
null
appwrite/appwrite
BSD 3-Clause New or Revised License
PHP
@@ -4,6 +4,7 @@ import io.ktor.client.request.* import kotlinx.coroutines.runBlocking import me.melijn.melijnbot.Container import me.melijn.melijnbot.internals.command.ICommandContext +import me.melijn.melijnbot.internals.models.PodInfo import me.melijn.melijnbot.internals.translation.getLanguage import me.melijn.melij...
feat: podid in exceptions
null
toxicmushroom/melijn
MIT License
Kotlin
@@ -126,6 +126,7 @@ namespace PepperDash.Essentials.Core public void SetEnableState(bool state) { + Debug.Console(2, this, "Sensor is {0}, SetEnableState: {1}", _partitionSensor == null ? "null" : "not null", state); if (_partitionSensor == null) return; @@ -134,6 +135,7 @@ namespace PepperDash.Essentials.Core public v...
feat: Added debug statements to sensor set and sensitivity methods
null
pepperdash/essentials
MIT License
C#
@@ -36,17 +36,15 @@ class Config * @param string $key The key of the config item to get. * @param mixed $default Default value * - * @return array + * @return mixed */ - public function get(string $config, $key, $default = null) : array + public function get(string $config, $key, $default = null) { $config_file = $this...
feat(core): update Config API
null
flextype/flextype
MIT License
PHP
@@ -44,6 +44,7 @@ public class UserOperationLogEntryDto { protected String property; protected String orgValue; protected String newValue; + protected Date removalTime; public static UserOperationLogEntryDto map(UserOperationLogEntry entry) { UserOperationLogEntryDto dto = new UserOperationLogEntryDto(); @@ -69,6 +70,7...
feat(rest): expose removal time to user operation log
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -33,10 +33,10 @@ class FrontmatterParser { $parts = preg_split('/^[\s\r\n]?---[\s\r\n]?$/sm', PHP_EOL . ltrim($content)); if (count($parts) < 3) { - return ['content' => $content]; + return ['content' => trim($content)]; } - return YamlParser::decode(trim($parts[1])) + ['content' => implode(PHP_EOL . '---' . PHP_EOL...
feat(core): add trim for FrontmatterParser content
null
flextype/flextype
MIT License
PHP