hash
stringlengths
40
40
diff
stringlengths
172
2.63k
message
stringlengths
12
593
project
stringlengths
7
65
split
stringclasses
1 value
diff_languages
stringclasses
54 values
f5d666f20441f961577b94a55a6dace7f36d8378
diff --git a/packages/react/src/components/Tag/Tag.js b/packages/react/src/components/Tag/Tag.js index <HASH>..<HASH> 100644 --- a/packages/react/src/components/Tag/Tag.js +++ b/packages/react/src/components/Tag/Tag.js @@ -67,6 +67,7 @@ const Tag = ({ {children !== null && children !== undefined ? children : T...
fix(Tag): set button type to avoid form submissions (#<I>)
carbon-design-system_carbon-components
train
js
c3badd5b06880ec0ff06cccf574e4f02b836b84c
diff --git a/models/AccountModel.js b/models/AccountModel.js index <HASH>..<HASH> 100644 --- a/models/AccountModel.js +++ b/models/AccountModel.js @@ -1,9 +1,17 @@ -module.exports = function(Model, config) { +module.exports = function(Model, config, utils, UserModel) { return Model.extend('Account', { type ...
feat(model): Include Account in the query for Users
CleverStack_clever-accounts
train
js
656d71a0235453b951b0ce27c78076c79cf06d89
diff --git a/src/bootstrap.js b/src/bootstrap.js index <HASH>..<HASH> 100644 --- a/src/bootstrap.js +++ b/src/bootstrap.js @@ -1,5 +1,5 @@ import { loadScript, onAnalyticsReady, hasGoogleScript } from './helpers' -import config, { update } from './config' +import config from './config' import createTrackers from './c...
fix(bootstrap): config.id not updated when id is a function
MatteoGabriele_vue-analytics
train
js
7112d008d0c1ebae37fd6a76ebfa8b0fb1092e7b
diff --git a/shims_for_IE.js b/shims_for_IE.js index <HASH>..<HASH> 100644 --- a/shims_for_IE.js +++ b/shims_for_IE.js @@ -3,7 +3,7 @@ if (!Object.hasOwnProperty('name')) { Object.defineProperty(Function.prototype, 'name', { get: function() { - var matches = this.toString().match(/^\s*function\s*(\S*)\s*\...
fix(IE): make shim work with instrumented code Closes #<I>
angular_angular
train
js
788dc03dbae9495179af90f9a399b90ab3c8f809
diff --git a/__tests__/base.js b/__tests__/base.js index <HASH>..<HASH> 100644 --- a/__tests__/base.js +++ b/__tests__/base.js @@ -1389,6 +1389,21 @@ function runBaseTest(name, useProxies, autoFreeze, useListener) { expect(next.y).toBe(externalData) }) + it("does not create new state unnecessary, #491", () =>...
chore: added test for #<I>
immerjs_immer
train
js
feafea812a95db05e9b52beaced0def611bba5c8
diff --git a/src/utils.js b/src/utils.js index <HASH>..<HASH> 100644 --- a/src/utils.js +++ b/src/utils.js @@ -29,7 +29,10 @@ function stringifyRequest(loaderContext, request) { typeof loaderContext.utils.contextify === "function" ) { return JSON.stringify( - loaderContext.utils.contextify(loaderConte...
fix: runtime path generation (#<I>)
webpack-contrib_css-loader
train
js
6a1285a0eb8d9ba7d121e986403033de1d492b9c
diff --git a/models/classes/featureFlag/FeatureFlagChecker.php b/models/classes/featureFlag/FeatureFlagChecker.php index <HASH>..<HASH> 100644 --- a/models/classes/featureFlag/FeatureFlagChecker.php +++ b/models/classes/featureFlag/FeatureFlagChecker.php @@ -51,10 +51,12 @@ class FeatureFlagChecker extends Configurable...
fix: only delete cache for feature flag
oat-sa_tao-core
train
php
f64e58af28dd05e145807e867fec300b130943e8
diff --git a/test/spec/client/persist.js b/test/spec/client/persist.js index <HASH>..<HASH> 100644 --- a/test/spec/client/persist.js +++ b/test/spec/client/persist.js @@ -30,7 +30,8 @@ describe('persist', function () { var client2 = null, found = false, - task = tasks.doc(); + task = tasks.doc()...
test(persist): prevent race condition
delta-db_deltadb-server
train
js
b306f4b67eb4e61d1c65b6d462c83ed5673defae
diff --git a/python/lib/sequence.py b/python/lib/sequence.py index <HASH>..<HASH> 100644 --- a/python/lib/sequence.py +++ b/python/lib/sequence.py @@ -238,7 +238,7 @@ class Sequence(object): updated_time = t + s time_dict[t]["pointer"] += 1 timestamps.append(updated_ti...
fix(sequence): Fix ordering of timestamps
mapillary_mapillary_tools
train
py,py
ff73ac333b046936eb74273f07736514197cb5b3
diff --git a/packages/uikit-workshop/src/scripts/components/base-component.js b/packages/uikit-workshop/src/scripts/components/base-component.js index <HASH>..<HASH> 100755 --- a/packages/uikit-workshop/src/scripts/components/base-component.js +++ b/packages/uikit-workshop/src/scripts/components/base-component.js @@ -1...
refactor: make sure the base component's unsubscribe method exists before trying to run it
bolt-design-system_bolt
train
js
7943b1bd30aa5688699c9db1d7a10b15c4d10079
diff --git a/src/dev.js b/src/dev.js index <HASH>..<HASH> 100644 --- a/src/dev.js +++ b/src/dev.js @@ -76,8 +76,14 @@ module.exports = { }).forEach(function(value){ mkdir(value[0]); exec("git clone " + value[1] + " " + value[0]); - exec("(cd " + value[0] + " && exec npm install)"); - ...
fix(dev): use normalized cwd when executing build commands fixes #7
aurelia_tools
train
js
3043d261be90980b78d6c1e54b0a003353e279f4
diff --git a/lib/cli/src/detect.js b/lib/cli/src/detect.js index <HASH>..<HASH> 100644 --- a/lib/cli/src/detect.js +++ b/lib/cli/src/detect.js @@ -71,10 +71,6 @@ export function isStorybookInstalled(dependencies, force) { } export function detect(options = {}) { - if (options.html) { - return types.HTML; - } -...
fix(cli): move html check down in detection - this way it first checks if storybook is installed
storybooks_storybook
train
js
0a1b905b0e6cdb5a392bd6c071b8689056118735
diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js index <HASH>..<HASH> 100644 --- a/lib/platform/github/index.js +++ b/lib/platform/github/index.js @@ -693,7 +693,7 @@ async function getPr(prNo) { // Check if only one author of all commits logger.debug('Checking all commits'); ...
fix: forking mode should check commits on parent repo
renovatebot_renovate
train
js
af6fac9fdff843393831dd4a0bc7d7c14d2c53ca
diff --git a/cmd/influx/main.go b/cmd/influx/main.go index <HASH>..<HASH> 100644 --- a/cmd/influx/main.go +++ b/cmd/influx/main.go @@ -64,6 +64,7 @@ type genericCLIOpts struct { func (o genericCLIOpts) newCmd(use string, runE func(*cobra.Command, []string) error) *cobra.Command { cmd := &cobra.Command{ + Args: co...
chore(pkg): remove ambiguity in wrong cmd calls within influx pkg cmd there was an issue where you could call, `influx pkg summarize` and the influx cli would actually prescribe that to `influx pkg` cmd and pass summarize as an arg. This removes that ambiguity
influxdata_influxdb
train
go
12a43ef46535db286cf244ca46c860083ee52ac9
diff --git a/test/scripts/filters/backtick_code_block.js b/test/scripts/filters/backtick_code_block.js index <HASH>..<HASH> 100644 --- a/test/scripts/filters/backtick_code_block.js +++ b/test/scripts/filters/backtick_code_block.js @@ -1,7 +1,6 @@ 'use strict'; const util = require('hexo-util'); -const cloneDeep = r...
refactor(backtick_code): replace cloneDeep with Object.assign()
hexojs_hexo
train
js
d1790d5547f82efffa1c7f1699b9ec23c8efb579
diff --git a/src/foremast/app/__main__.py b/src/foremast/app/__main__.py index <HASH>..<HASH> 100644 --- a/src/foremast/app/__main__.py +++ b/src/foremast/app/__main__.py @@ -23,7 +23,7 @@ import pathlib import gogoutils -from ..args import add_app, add_debug, add_properties +from ..args import add_app, add_debug,...
refactor: Use provider argument when creating app
foremast_foremast
train
py
be92f06798072c9b2f9cc1969048e99444f28443
diff --git a/src/cli.test.js b/src/cli.test.js index <HASH>..<HASH> 100644 --- a/src/cli.test.js +++ b/src/cli.test.js @@ -45,7 +45,7 @@ test("errors when more than one package is provided", t => { // We should be able to do t.equal(code, 1), but earlier Node versions // handle uncaught exceptions differently...
test: add custom test message to show exit code in cli.test.js
nathanhleung_install-peerdeps
train
js
8eb2fd78769d0d61adb5ad0f078539e7d7fdb425
diff --git a/test/spec/bindings/bindings_parser_spec.js b/test/spec/bindings/bindings_parser_spec.js index <HASH>..<HASH> 100644 --- a/test/spec/bindings/bindings_parser_spec.js +++ b/test/spec/bindings/bindings_parser_spec.js @@ -27,7 +27,7 @@ describe('Bindings parser', () => { it('should parse inner content and...
chore: Fix linting errors
matreshkajs_matreshka
train
js
bfc62c5f91433c5252a0a2d580f19d2b9d534756
diff --git a/aws/resource_aws_macie2_custom_data_identifier.go b/aws/resource_aws_macie2_custom_data_identifier.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_macie2_custom_data_identifier.go +++ b/aws/resource_aws_macie2_custom_data_identifier.go @@ -192,7 +192,8 @@ func resourceMacie2CustomDataIdentifierDelete...
refactor: changed the validation in delete function
terraform-providers_terraform-provider-aws
train
go
654379cc9dc283cf347695fdf326c9b0e8b3f175
diff --git a/lib/evalhook/tree_processor.rb b/lib/evalhook/tree_processor.rb index <HASH>..<HASH> 100644 --- a/lib/evalhook/tree_processor.rb +++ b/lib/evalhook/tree_processor.rb @@ -45,7 +45,15 @@ module EvalHook end def hook_handler_reference - s(:call, s(:const, :ObjectSpace), :_id2ref, s(:arglist, ...
refactor: using global variable for "harcoded" hook_handler reference instead of _id2ref
tario_evalhook
train
rb
ac5df7061ee11232346b3d0eb3aa5b43eebc847d
diff --git a/smmap/__init__.py b/smmap/__init__.py index <HASH>..<HASH> 100644 --- a/smmap/__init__.py +++ b/smmap/__init__.py @@ -3,7 +3,7 @@ __author__ = "Sebastian Thiel" __contact__ = "byronimo@gmail.com" __homepage__ = "https://github.com/Byron/smmap" -version_info = (0, 9, 0) +version_info = (2, 0, 0) __versi...
chore(version): set version to <I> Just to match the name a bit better. [skip ci]
gitpython-developers_smmap
train
py
103f5590745280c2144ab2633bfb7b50a56feb19
diff --git a/src/components/alert/QAlert.js b/src/components/alert/QAlert.js index <HASH>..<HASH> 100644 --- a/src/components/alert/QAlert.js +++ b/src/components/alert/QAlert.js @@ -54,7 +54,7 @@ export default { 'class': this.classes }, [ side.length - ? h('div', { staticClass: 'q-al...
chore: Updates for QAlert
quasarframework_quasar
train
js
960eb64dd5878d4cf2316f0d86e3d63a42ea6336
diff --git a/components/AppContainer.js b/components/AppContainer.js index <HASH>..<HASH> 100644 --- a/components/AppContainer.js +++ b/components/AppContainer.js @@ -1,7 +1,7 @@ import {hot} from 'react-hot-loader/root'; import React from 'react'; import App from "./App"; -import configs from 'data/configs/app'; +i...
refactor: data => storage,兼容 laravel 的目录结构
miaoxing_app
train
js
e7fffd8bc60e8101d2a2c209be9bc26f3531ee6f
diff --git a/packages/node_modules/@ciscospark/plugin-phone/test/integration/spec/events-model.js b/packages/node_modules/@ciscospark/plugin-phone/test/integration/spec/events-model.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@ciscospark/plugin-phone/test/integration/spec/events-model.js +++ b/packages/n...
test(plugin-phone): reduce the # of test users Integration environment removes notifications for spaces bigger than <I>.
webex_spark-js-sdk
train
js
0467fa7d24391157ab28d6ba61a14b1a61095c72
diff --git a/lib/core/public/cleanup-plugins.js b/lib/core/public/cleanup-plugins.js index <HASH>..<HASH> 100644 --- a/lib/core/public/cleanup-plugins.js +++ b/lib/core/public/cleanup-plugins.js @@ -23,7 +23,7 @@ function cleanupPlugins(resolve, reject) { }); }); - var flattenedTree = axe.utils.getFlatten...
chore: Fix lint problem in cleanup-plugin
dequelabs_axe-core
train
js
b14419701b8b8d837a6846662943bb3f6686d9cc
diff --git a/framework/views/lazyRepeat.js b/framework/views/lazyRepeat.js index <HASH>..<HASH> 100644 --- a/framework/views/lazyRepeat.js +++ b/framework/views/lazyRepeat.js @@ -53,7 +53,6 @@ limitations under the License. if (typeof oldReload === 'function') { userDelegate.reload = function() { ...
fix(ons-lazy-repeat): Remove debug print.
OnsenUI_OnsenUI
train
js
d3a014766d55d71406069a257066274b1c1f18c8
diff --git a/src/Cursor.js b/src/Cursor.js index <HASH>..<HASH> 100644 --- a/src/Cursor.js +++ b/src/Cursor.js @@ -1,6 +1,5 @@ var createClass = require('./functions/createClass'); -var evalObjectPath = require('./functions/evalObjectPath'); var compareArrays = require('./functions/compareArrays'); var arrayConcat...
chore(Cursor): remove commented code
karfcz_kff
train
js
f1e99dcc70026ab6e52391078588ef28cf484ca8
diff --git a/packages/cozy-client/src/CozyClient.js b/packages/cozy-client/src/CozyClient.js index <HASH>..<HASH> 100644 --- a/packages/cozy-client/src/CozyClient.js +++ b/packages/cozy-client/src/CozyClient.js @@ -18,6 +18,19 @@ import { import { chain } from './CozyLink' import ObservableQuery from './ObservableQue...
refactor(associations): extract associationsFromModel
cozy_cozy-client
train
js
84381fed0152af6feec3c42c791c7d46c83408ba
diff --git a/Jakefile.js b/Jakefile.js index <HASH>..<HASH> 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -159,7 +159,7 @@ task('html-docs', ['build-rimu-min'], {async: true}, function() { desc(`Validate HTML documents.`) task('validate-html', {async: true}, function() { - let commands = HTML.map(file => 'nu-html-...
chore: Jakefile: nu-html-checker formatter back to `stylish` as is now working again.
srackham_rimu
train
js
5449044919b8440c1129d9cbf1ec650f4f5a993d
diff --git a/packages/ipfs/src/cli/commands/key.js b/packages/ipfs/src/cli/commands/key.js index <HASH>..<HASH> 100644 --- a/packages/ipfs/src/cli/commands/key.js +++ b/packages/ipfs/src/cli/commands/key.js @@ -1,7 +1,7 @@ 'use strict' module.exports = { - command: 'key', + command: 'key <command>', descript...
fix: require command for key and pin subcommands (#<I>) Without specifying that we require a sub-sub command, these commands exit with a non-zero code and no output when you just run the subcommand E.g: ```console $ jsipfs key $ echo $? 0 ``` Now becomes ```console $ jsipfs key ....help text appears...
ipfs_js-ipfs
train
js,js
5b12a74a539c54210b89009a75a5bee432dfb3ba
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -92,8 +92,9 @@ class kmsSecretsPlugin { .then((inited) => { myModule.serverless.environment = inited.environment; const vars = new myModule.serverless.classes.Variables(myModule.serverless); - vars.popu...
fix: Waiting for populateService to finish before continuing operation
nordcloud_serverless-kms-secrets
train
js
9089cc4773db69f71b284d24f75d5db12eac1be2
diff --git a/src/cdumay_error/__init__.py b/src/cdumay_error/__init__.py index <HASH>..<HASH> 100644 --- a/src/cdumay_error/__init__.py +++ b/src/cdumay_error/__init__.py @@ -19,6 +19,7 @@ class Error(Exception): """Mother class for all errors""" MSGID = "Err-00000" CODE = 1 + MESSAGE = None de...
feat: added Error.MESSAGE to allow to overwrite class docstring (useful for translation)
cdumay_cdumay-error
train
py
16059adf98f46c7f62f24d78aa68b62a1d34815d
diff --git a/src/react/params-list.js b/src/react/params-list.js index <HASH>..<HASH> 100644 --- a/src/react/params-list.js +++ b/src/react/params-list.js @@ -96,7 +96,7 @@ const paramsList = [ // modules 'a11y', - 'autoplay', + '_autoplay', '_controller', 'coverflowEffect', 'cubeEffect',
fix(react): add autoplay to watched modules (#<I>)
nolimits4web_swiper
train
js
64b1c534b6507c11e35574dc1224d76986110f62
diff --git a/packages/d3fc-data-join/src/dataJoin.js b/packages/d3fc-data-join/src/dataJoin.js index <HASH>..<HASH> 100644 --- a/packages/d3fc-data-join/src/dataJoin.js +++ b/packages/d3fc-data-join/src/dataJoin.js @@ -23,7 +23,10 @@ export default (element, className) => { const dataJoin = function(container, dat...
fix: post-filter childNodes to prevent inevitable bug (#<I>)
d3fc_d3fc
train
js
ac78c24806e030ddd3551859a8b74929e88449ca
diff --git a/website/gatsby-config.js b/website/gatsby-config.js index <HASH>..<HASH> 100644 --- a/website/gatsby-config.js +++ b/website/gatsby-config.js @@ -10,6 +10,7 @@ module.exports = { description: 'Transforms SVG into React Components.', siteUrl: 'https://react-svgr.com', githubReposi...
docs: fix edit in GitHub links (#<I>) Fix #<I>
smooth-code_svgr
train
js
a477f69f3c2abaf4646680bdc3a65d5172a6566e
diff --git a/benchmark_test.go b/benchmark_test.go index <HASH>..<HASH> 100644 --- a/benchmark_test.go +++ b/benchmark_test.go @@ -314,7 +314,7 @@ func BenchmarkExecContext(b *testing.B) { defer db.Close() for _, p := range []int{1, 2, 3, 4} { b.Run(fmt.Sprintf("%d", p), func(b *testing.B) { - benchmarkQueryCo...
fix: benchmarkExecContext is unused (#<I>)
go-sql-driver_mysql
train
go
8533fbbb8a9e7cf906a68b902f81da95b1bba9cb
diff --git a/test/integration/features/step_definitions/npm-steps.js b/test/integration/features/step_definitions/npm-steps.js index <HASH>..<HASH> 100644 --- a/test/integration/features/step_definitions/npm-steps.js +++ b/test/integration/features/step_definitions/npm-steps.js @@ -49,7 +49,7 @@ export async function a...
test(package-name): fixed the test for cli projects
travi_javascript-scaffolder
train
js
f81c79d676989d772a8cb15916969d6eb029a332
diff --git a/charm/repo_test.go b/charm/repo_test.go index <HASH>..<HASH> 100644 --- a/charm/repo_test.go +++ b/charm/repo_test.go @@ -28,6 +28,8 @@ var _ = gc.Suite(&StoreSuite{}) func (s *StoreSuite) SetUpSuite(c *gc.C) { s.LoggingSuite.SetUpSuite(c) + s.PatchEnvironment("http-proxy", "") + s.PatchEnvironment("h...
fix: charm: gccgo test failure When network is down, http-proxy returns an error in html format, hence the leading '<'. Isolate test by patching the http proxy environment variables.
juju_juju
train
go
bce30a77c273d3dc2d4c5ed424da890fe7c67d87
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -37,9 +37,10 @@ export default function parse(buffer, callback = () => {}) { } function exec(mediaPath, callback = () => {}) { - childProcess.exec(`mediainfo --Full --Output=XML "${mediaPath}"`, (stderr, s...
fix(exec): move to spawn to support bigger xml input
mgcrea_node-mediainfo-parser
train
js
d83f6e3d807261e278d138cd02324541049b4396
diff --git a/config/app_queue.php b/config/app_queue.php index <HASH>..<HASH> 100644 --- a/config/app_queue.php +++ b/config/app_queue.php @@ -14,10 +14,8 @@ */ $connection = 'default'; -$exitwhennothingtodo = true; if (php_sapi_name() == 'cli' && $_SERVER['argv'][0] && preg_match('/phpunit/', $_SERVER['argv'][0]...
chore: queues are now deleted if older than <I> days
foodcoopshop_foodcoopshop
train
php
b6b6d83d65fa84fc7db7cd2d84e1246960a6cc27
diff --git a/lib/cli.js b/lib/cli.js index <HASH>..<HASH> 100644 --- a/lib/cli.js +++ b/lib/cli.js @@ -70,13 +70,17 @@ var Pane = require('./ui/Pane'); module.exports = function (options) { opts = _.merge(opts, options); return Slap.getUserDir().catch(Promise.resolve()).then(function (userDir) { - var loggerO...
fix(logging): pass screen opts
slap-editor_slap
train
js
3179434000a6dca5ac864a0f43636abb79c7c020
diff --git a/packages/midway-init/bin/midway-init.js b/packages/midway-init/bin/midway-init.js index <HASH>..<HASH> 100755 --- a/packages/midway-init/bin/midway-init.js +++ b/packages/midway-init/bin/midway-init.js @@ -40,7 +40,10 @@ co(function* () { // 判断是否处于内网环境 function isInternal() { try { - const { stdout...
fix(midway-init): Internal employees can not use the external network midway
midwayjs_midway
train
js
3dbde654cd4fefdfd3660f6043b4bbf345801db9
diff --git a/packages/server/test/e2e/5_screenshots_spec.js b/packages/server/test/e2e/5_screenshots_spec.js index <HASH>..<HASH> 100644 --- a/packages/server/test/e2e/5_screenshots_spec.js +++ b/packages/server/test/e2e/5_screenshots_spec.js @@ -99,8 +99,8 @@ describe('e2e screenshots', () => { // make sure...
chore(tests): [internal] fix flake e2e screenshot spec (firefox) (#<I>)
cypress-io_cypress
train
js
8b9d1603acecea1d654ac121c04772401906fc33
diff --git a/consul/server_test.go b/consul/server_test.go index <HASH>..<HASH> 100644 --- a/consul/server_test.go +++ b/consul/server_test.go @@ -2,10 +2,10 @@ package consul import ( "fmt" + "math/rand" "net" "os" "strings" - "sync/atomic" "testing" "time" @@ -17,10 +17,8 @@ import ( "github.com/ha...
test: use random ports for consul tests
hashicorp_consul
train
go
9a066fedb548dc5e4f1d408ccca0c6dcd200a793
diff --git a/core/src/elements/ons-switch.js b/core/src/elements/ons-switch.js index <HASH>..<HASH> 100755 --- a/core/src/elements/ons-switch.js +++ b/core/src/elements/ons-switch.js @@ -113,6 +113,7 @@ export default class SwitchElement extends BaseCheckboxElement { _onChange(event) { if (event && event.stopPr...
fix(ons-switch): Implement consume-gesture API.
OnsenUI_OnsenUI
train
js
9dde5ab2ef5b978126688e3ae5ff4bb4088fbabb
diff --git a/src/foremast/utils/tasks.py b/src/foremast/utils/tasks.py index <HASH>..<HASH> 100644 --- a/src/foremast/utils/tasks.py +++ b/src/foremast/utils/tasks.py @@ -13,6 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. """POST a new task or che...
fix: Error when getting task status Sending the content-type header seems to cause a <I> bad request. Removing this should not cause a problem as we are doing a GET request.
foremast_foremast
train
py
42b9da77f8278deee71b3cb32742ec08e5dedb28
diff --git a/root_numpy/tmva/_factory.py b/root_numpy/tmva/_factory.py index <HASH>..<HASH> 100644 --- a/root_numpy/tmva/_factory.py +++ b/root_numpy/tmva/_factory.py @@ -37,8 +37,19 @@ def add_classification_events(factory, events, labels, signal_label=None, Notes ----- - A TMVA::Factory requires you to...
docs: note about MethodCuts requiring signal to be added first
scikit-hep_root_numpy
train
py
6348f9736521cc67e93d0e9aaa927103afa366e1
diff --git a/src/utils/buildTaggedTemplate.js b/src/utils/buildTaggedTemplate.js index <HASH>..<HASH> 100644 --- a/src/utils/buildTaggedTemplate.js +++ b/src/utils/buildTaggedTemplate.js @@ -14,7 +14,7 @@ const rUnit = new RegExp(`^(${cssUnits.join('|')})(;|,|\n| |\\))`); function defaultResolveDependency({ request ...
fix: pass correct object to resolve (#<I>)
4Catalyzer_astroturf
train
js
15b5a11ecd7cf4b83442ca0df161d74c9bdbc8e2
diff --git a/lib/classes/PluginManager.js b/lib/classes/PluginManager.js index <HASH>..<HASH> 100644 --- a/lib/classes/PluginManager.js +++ b/lib/classes/PluginManager.js @@ -510,7 +510,7 @@ class PluginManager { return _.flatMap([].concat(events), (event) => this.hooks[event] || []); } - invoke(commandsArra...
refactor: Refactor `pluginManager.invoke` to async/await
serverless_serverless
train
js
98d5dde9b2c8414fae5498ff9657bae82df2aede
diff --git a/lnd_test.go b/lnd_test.go index <HASH>..<HASH> 100644 --- a/lnd_test.go +++ b/lnd_test.go @@ -353,7 +353,7 @@ func testChannelFundingPersistence(net *networkHarness, t *harnessTest) { // The following block ensures that after both nodes have restarted, // they have reconnected before the execution of...
test: expand timeout for peer restart+reconnect in persistent funding test
lightningnetwork_lnd
train
go
fa6b1ff613221f98f134773cbc5152092a51e285
diff --git a/src/clappr-dash-shaka-playback.js b/src/clappr-dash-shaka-playback.js index <HASH>..<HASH> 100644 --- a/src/clappr-dash-shaka-playback.js +++ b/src/clappr-dash-shaka-playback.js @@ -59,8 +59,6 @@ class DashShakaPlayback extends HTML5Video { this._levels = [] this._pendingAdaptationEvent = false ...
fix: rename setupSrc to _setupSrc and remove duplicated autoplay handling code
clappr_dash-shaka-playback
train
js
de6254a314a5dc2fbeba5ab6e9913a76b6562518
diff --git a/packages/xod-client-electron/src/arduinoDependencies/messages.js b/packages/xod-client-electron/src/arduinoDependencies/messages.js index <HASH>..<HASH> 100644 --- a/packages/xod-client-electron/src/arduinoDependencies/messages.js +++ b/packages/xod-client-electron/src/arduinoDependencies/messages.js @@ -3...
chore(xod-client-electron): change messages about successful installation of arduino dependencies
xodio_xod
train
js
b5c083e492b37063170f74a43df7ee6550f45764
diff --git a/test/k8sT/DatapathConfiguration.go b/test/k8sT/DatapathConfiguration.go index <HASH>..<HASH> 100644 --- a/test/k8sT/DatapathConfiguration.go +++ b/test/k8sT/DatapathConfiguration.go @@ -281,6 +281,7 @@ var _ = Describe("K8sDatapathConfig", func() { deployCilium(append(directRoutingOptions, "--se...
test: Disable IPv6 for per endpoint routes It seems that per endpoint routes does not work for IPv6, and kube-proxy was hiding that fact.
cilium_cilium
train
go
deea284237ba46d9490b0407519b2479c71a0161
diff --git a/src/FieldArray.js b/src/FieldArray.js index <HASH>..<HASH> 100644 --- a/src/FieldArray.js +++ b/src/FieldArray.js @@ -44,12 +44,12 @@ function filter(errors, baseName) { * <Form.FieldArray name="friends" events="blur"> * {({ value, arrayHelpers }) => ( * <ul> - * {value.map((value, ...
docs: don't shadow variable and exemplify arrayHelpers.add (#<I>) `.add` is more intuitive in the UI example and probably more common.
jquense_react-formal
train
js
07ad80fa2cb78cb44b888ad7140c98e6768fc124
diff --git a/scripts/chromatic.js b/scripts/chromatic.js index <HASH>..<HASH> 100644 --- a/scripts/chromatic.js +++ b/scripts/chromatic.js @@ -1,6 +1,6 @@ const ci = require('env-ci')(); const chalk = require('chalk'); -const runBin = require('../lib/runBin'); +const { runBin } = require('../lib/runBin'); const { st...
fix(chromatic): Fix Chromatic script (#<I>)
seek-oss_sku
train
js
e5622f4501c26badb8ec49a18992e855ca63baa3
diff --git a/src/request-handlers/dashboard-handler.js b/src/request-handlers/dashboard-handler.js index <HASH>..<HASH> 100644 --- a/src/request-handlers/dashboard-handler.js +++ b/src/request-handlers/dashboard-handler.js @@ -19,8 +19,7 @@ 'use strict'; -var psUtil = require('../misc/pagespace-util'), - consts...
refactor: tidy up dashboard handler
pagespace_pagespace
train
js
c73275bad688e6156c1013878fab7ec8740521a4
diff --git a/src/dav.js b/src/dav.js index <HASH>..<HASH> 100644 --- a/src/dav.js +++ b/src/dav.js @@ -69,6 +69,11 @@ davJS.prototype.needs = function () { let dav = this; return { forType: (needType, region) => { + if (!region.global){ + if (!region.latitude) throw new Error('region latitude is ...
chore: throws error when region isn't global and region params aren't set
DAVFoundation_dav-js
train
js
b8b1922b9ba8a6cf4d99d456560d2e4f589f6d75
diff --git a/command/agent/job_endpoint_test.go b/command/agent/job_endpoint_test.go index <HASH>..<HASH> 100644 --- a/command/agent/job_endpoint_test.go +++ b/command/agent/job_endpoint_test.go @@ -942,8 +942,7 @@ func TestHTTP_JobDispatch(t *testing.T) { t.Parallel() httpTest(t, nil, func(s *TestAgent) { // Cr...
test: fix by using mock.BatchJob
hashicorp_nomad
train
go
828c15c966448cbefaf8f5bb6c2316ca29206192
diff --git a/test/unit/parser.spec.js b/test/unit/parser.spec.js index <HASH>..<HASH> 100644 --- a/test/unit/parser.spec.js +++ b/test/unit/parser.spec.js @@ -305,7 +305,7 @@ describe('Unit: parser.js', function () { const stream = { _columnsPositions: [19, 25, 38, 51, 52] } const r = matchBodyList(stream...
test: Fix failing test due to date construction
quentinrossetti_node-7z
train
js
31d1b3d568c05440c881ea3e268918079da839f2
diff --git a/source/rafcon/gui/helpers/installation.py b/source/rafcon/gui/helpers/installation.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/helpers/installation.py +++ b/source/rafcon/gui/helpers/installation.py @@ -98,7 +98,7 @@ def install_gtk_source_view_styles(logger=None): user_data_folder = GL...
fix(installation): Copy sourceview style into correct GTK 3 folder
DLR-RM_RAFCON
train
py
ab15b2da4495068998850868fe72a324ea8d4433
diff --git a/lib/validator.js b/lib/validator.js index <HASH>..<HASH> 100644 --- a/lib/validator.js +++ b/lib/validator.js @@ -251,7 +251,7 @@ function postCast(value, parameterDefinition, validationResult) { if (validationResult && validationResult.errors.length === 0 && parameterDefinition.type === 'string' &...
fix: use correct date-time type format
DriveTimeInc_gangplank
train
js,js
9e5b7acaf377902e4dc1fa9954414cd38d70f119
diff --git a/.toys/batch-review.rb b/.toys/batch-review.rb index <HASH>..<HASH> 100644 --- a/.toys/batch-review.rb +++ b/.toys/batch-review.rb @@ -60,6 +60,7 @@ CONFIGS = { } REPO = "googleapis/google-cloud-ruby" +BOT_USERS = ["yoshi-code-bot", "yoshi-automation"] desc "Interactive mass code review" @@ -120,7 ...
chore: Apply batch-review only to bot-opened PRs (#<I>)
googleapis_google-cloud-ruby
train
rb
5bec3fb6044892d6511c1b444cd4afac4a290a2a
diff --git a/ui/src/components/popup-edit/QPopupEdit.js b/ui/src/components/popup-edit/QPopupEdit.js index <HASH>..<HASH> 100644 --- a/ui/src/components/popup-edit/QPopupEdit.js +++ b/ui/src/components/popup-edit/QPopupEdit.js @@ -149,12 +149,14 @@ export default Vue.extend({ contentClass: this.classes ...
fix(QPopupEdit): quick edit after open sticks even when cancelled #<I>
quasarframework_quasar
train
js
aabd716b42ebac8b75135db8575725ee66867850
diff --git a/packages/oas-resolver/index.js b/packages/oas-resolver/index.js index <HASH>..<HASH> 100644 --- a/packages/oas-resolver/index.js +++ b/packages/oas-resolver/index.js @@ -97,7 +97,6 @@ function resolveAllFragment(obj, context, src, parentPath, base, options) { recurse(obj,{},function(obj,key,state){ ...
fix: defer optional removal of x-miro to end of resolution steps, refs #<I>
Mermade_oas-kit
train
js
1848287e8e8f49e6d4afc6c281d965e612a7ea34
diff --git a/test/components/AccountLoginForm.spec.js b/test/components/AccountLoginForm.spec.js index <HASH>..<HASH> 100644 --- a/test/components/AccountLoginForm.spec.js +++ b/test/components/AccountLoginForm.spec.js @@ -13,7 +13,13 @@ describe('AccountLoginForm component', () => { it('should enable connection b...
test: update tests :green_heart:
cozy_cozy-home
train
js
a0418eee6dea14e9d6112a84f8afb0c6c5528931
diff --git a/index.js b/index.js index <HASH>..<HASH> 100755 --- a/index.js +++ b/index.js @@ -50,12 +50,12 @@ export default { } Vue.directive('preview', { - bind: function (el) { + bind: function (el, binding) { var previewItem = { - title:...
fix: set correct src & title in bind hook
xLogic92_vue-picture-preview
train
js
c6fa96d688ccd8f1dea68361cf45543ff4eb4dce
diff --git a/samples/createHttpTask.js b/samples/createHttpTask.js index <HASH>..<HASH> 100644 --- a/samples/createHttpTask.js +++ b/samples/createHttpTask.js @@ -66,18 +66,12 @@ async function createHttpTask( }; } - const request = { - parent: parent, - task: task, - }; - + // Send create task reque...
feat: simplify Node sample (#<I>)
googleapis_nodejs-tasks
train
js
303cc4613b488186fd221a72d38b32b825102080
diff --git a/server/server.go b/server/server.go index <HASH>..<HASH> 100644 --- a/server/server.go +++ b/server/server.go @@ -772,7 +772,7 @@ func (a *ArgoCDServer) newHTTPServer(ctx context.Context, port int, grpcWebHandl // registerDexHandlers will register dex HTTP handlers, creating the the OAuth client app fu...
chore: Run dex reverse proxy only when dex is configured (#<I>)
argoproj_argo-cd
train
go
e13dbd1c9dd1da73dd87ad7e7b31a3acef58bf6c
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -640,10 +640,7 @@ * @param {boolean?} options.force 是否强制刷新 */ Router.prototype.push = function (url, options) { - url = stringifyURL(url); - if (url) { - this.locator.redirect(url, opt...
fix: router.push, when no path and empty query object, querystring has not been removed from location
baidu_san-router
train
js
d19ac8b666a5d09fb802de125a9e3596c7444904
diff --git a/lib/platform/github/gh-got-wrapper.js b/lib/platform/github/gh-got-wrapper.js index <HASH>..<HASH> 100644 --- a/lib/platform/github/gh-got-wrapper.js +++ b/lib/platform/github/gh-got-wrapper.js @@ -108,7 +108,7 @@ async function get(path, options, retries = 5) { err.message && err.message.inc...
refactor: log err.headers when rate limit exceeded
renovatebot_renovate
train
js
5f43da0e5dae3db8df51bd3179cb0896b1d0ce4f
diff --git a/src/render/index.js b/src/render/index.js index <HASH>..<HASH> 100644 --- a/src/render/index.js +++ b/src/render/index.js @@ -99,14 +99,11 @@ export function renderToProgram( } } - expression = expr` - React.createElement(DocumentContext, {context: {metadata, model}}, - ${expression}) - ...
feat(render): pass style and className to Root element Fixes #<I>
andreypopp_reactdown
train
js
22d231cfc9d4415fa692fdf2ed41ebef246216e8
diff --git a/src/reorderable-repeat.js b/src/reorderable-repeat.js index <HASH>..<HASH> 100644 --- a/src/reorderable-repeat.js +++ b/src/reorderable-repeat.js @@ -224,7 +224,7 @@ export class ReorderableRepeat extends AbstractRepeater { this._subsribers.forEach(s => s.dispose()); this._subsribers = []; - ...
chore: following original repeat, skip view animation in unbind
buttonwoodcx_bcx-aurelia-reorderable-repeat
train
js
889af3791c4e718e3c301a94b2b2a67d62e70752
diff --git a/web/src/main/webapp/my-app/layout/services.js b/web/src/main/webapp/my-app/layout/services.js index <HASH>..<HASH> 100644 --- a/web/src/main/webapp/my-app/layout/services.js +++ b/web/src/main/webapp/my-app/layout/services.js @@ -42,7 +42,7 @@ define(['angular', 'jquery'], function(angular, $) { *...
style: delimit strings with single quote rather than double quote
uPortal-Project_uportal-home
train
js
c95467ce33e70abad128b9e0d98879b997360e0e
diff --git a/packages/flyout/src/Flyout.js b/packages/flyout/src/Flyout.js index <HASH>..<HASH> 100644 --- a/packages/flyout/src/Flyout.js +++ b/packages/flyout/src/Flyout.js @@ -36,7 +36,7 @@ class Flyout extends Component { /** Manipulate flyout coordinates before rendering */ alterCoordinates: PropTypes.fu...
refactor: remove unnecessary prop-type requirement
Autodesk_hig
train
js
c6a8e2d5001f993711f8ecb105daddc423e5fcaa
diff --git a/src/select/select.js b/src/select/select.js index <HASH>..<HASH> 100644 --- a/src/select/select.js +++ b/src/select/select.js @@ -34,7 +34,6 @@ export class MdSelect { } handleChangeFromNativeSelect() { - this.log.debug('handleChangeFromNativeSelect', this.element.value, $(this.element).val()); ...
chore(md-select): move logging to if block to avoid log spam
aurelia-ui-toolkits_aurelia-materialize-bridge
train
js
a0a61d9b090a5fd5b58cfdd1ca9f55306c373cbc
diff --git a/packages/jsdoc2spec/src/cli.js b/packages/jsdoc2spec/src/cli.js index <HASH>..<HASH> 100755 --- a/packages/jsdoc2spec/src/cli.js +++ b/packages/jsdoc2spec/src/cli.js @@ -99,7 +99,7 @@ const runWithJSDoc = (files) => { const temp = path.join(__dirname, 'temp.conf.json'); fs.writeFileSync(temp, JSON.st...
fix: run jsdoc from PATH
miralemd_scriptappy
train
js
6be42fcdaeb72e72d4a56402701806189b51b87e
diff --git a/tests/test.py b/tests/test.py index <HASH>..<HASH> 100644 --- a/tests/test.py +++ b/tests/test.py @@ -18,8 +18,8 @@ def tmpdir(): def test(): - assert_raises(ValueError, lambda: Archive('blabla').extractall('/tmp')) - assert_raises(PatoolError, lambda: Archive(__file__).extractall('/tmp')) + ...
test: replace /tmp with gettempdir()
ponty_pyunpack
train
py
bdd2a12aa931e87f66271d5c1132e952ae8d9d32
diff --git a/src/components/number-input/number-input.config.js b/src/components/number-input/number-input.config.js index <HASH>..<HASH> 100644 --- a/src/components/number-input/number-input.config.js +++ b/src/components/number-input/number-input.config.js @@ -32,24 +32,26 @@ module.exports = { light: true, ...
fix(number-input): replace ternary operator with theme switcher options (#<I>)
carbon-design-system_carbon-components
train
js
3ca09b8e08d8c409d5d42a2b6d42016302fd8122
diff --git a/varlink/tests/__init__.py b/varlink/tests/__init__.py index <HASH>..<HASH> 100644 --- a/varlink/tests/__init__.py +++ b/varlink/tests/__init__.py @@ -8,6 +8,9 @@ loader = unittest.defaultTestLoader def suite(): suite = unittest.TestSuite() for fn in os.listdir(here): + if fn.startswith("t...
fix(tests): skip test_mocks for python < 3
varlink_python
train
py
73dbf12b7b687d37ad06ed4e69ce17c653348224
diff --git a/src/notebook/epics/github-publish.js b/src/notebook/epics/github-publish.js index <HASH>..<HASH> 100644 --- a/src/notebook/epics/github-publish.js +++ b/src/notebook/epics/github-publish.js @@ -64,6 +64,8 @@ export function createGistCallback(firstTimePublish, observer, filename, notific notifyUser(fi...
fix(gh-publish): Ensure that next is called on observable
nteract_nteract
train
js
659783e6dd8ab9c01bbb47ccaa24c36a3471e8d4
diff --git a/tasks/files.js b/tasks/files.js index <HASH>..<HASH> 100644 --- a/tasks/files.js +++ b/tasks/files.js @@ -19,7 +19,7 @@ var files = { partialsDir: 'src/partials', allHTML: '*.html', allPartials: 'src/partials/*.html', - allPartialsCombined: 'test/e2e/env/all-partials.js', + allPartialsCombined: ...
chore(files): move allPartials.js to .tmp folder
Jimdo_angular-draggabilly
train
js
12a75aaf39ea67d9b9f1108f5925064eae3f6bda
diff --git a/test/setup.js b/test/setup.js index <HASH>..<HASH> 100644 --- a/test/setup.js +++ b/test/setup.js @@ -1,7 +1,4 @@ 'use strict'; -if (require('semver').lt(process.version, '4.0.0')) { - require('babel-register'); -} - +require('babel-register'); require('coffee-script/register');
chore: Always transpile all code when running unit tests. When we initially migrated back to ES6+, i added a check here to make sure that no future JavaScript syntax was being used that was not also supported by the current Node LTS (4.x at the time). After having this around for some while, I no longer believe this ...
tediousjs_tedious
train
js
5356deeb20c9537adc3a13a02f3c56b0e286b8d7
diff --git a/tasks/nice_package.js b/tasks/nice_package.js index <HASH>..<HASH> 100644 --- a/tasks/nice_package.js +++ b/tasks/nice_package.js @@ -71,10 +71,12 @@ function findFixpack() { var choices = [ join(cwd, 'fixpack/bin/fixpack'), join(cwd, 'node_modules/fixpack/bin/fixpack'), - join(cwd, '../fix...
fix(fixpack): better search for fixpack
bahmutov_grunt-nice-package
train
js
9d1606d3a64744c4d09e29b45b5d803c93fd3577
diff --git a/scripts/check-pkg-for-release.js b/scripts/check-pkg-for-release.js index <HASH>..<HASH> 100644 --- a/scripts/check-pkg-for-release.js +++ b/scripts/check-pkg-for-release.js @@ -51,8 +51,12 @@ function main() { checkPublicConfigForNewComponent(); if (pkg.name !== MASTER_PKG.name) { checkNameIsPr...
chore: Skip both package and webpack checks for private packages (#<I>)
material-components_material-components-web
train
js
e38fa85599917881edbd3f442ac7b3bbd31dc214
diff --git a/lib/core/connection/apm.js b/lib/core/connection/apm.js index <HASH>..<HASH> 100644 --- a/lib/core/connection/apm.js +++ b/lib/core/connection/apm.js @@ -23,7 +23,7 @@ const namespace = command => command.ns; const databaseName = command => command.ns.split('.')[0]; const collectionName = command => comm...
refactor: use the connection's address for monitoring events
mongodb_node-mongodb-native
train
js
1a9963f8e98513aff90207856cc9d35e82e20306
diff --git a/lib/shields-list.js b/lib/shields-list.js index <HASH>..<HASH> 100644 --- a/lib/shields-list.js +++ b/lib/shields-list.js @@ -41,21 +41,18 @@ module.exports = { path: 'david/{repo}', link: 'https://david-dm.org/{repo}', branchLink: 'https://david-dm.org/{repo}/{branch}', - hasBranchVersio...
fix: david currently does not support branches (#5)
zkochan_shieldman
train
js
ff9afbe9a2d4d07a03cc40b7096fdb59eeb9c6d0
diff --git a/src/bots/worker.js b/src/bots/worker.js index <HASH>..<HASH> 100644 --- a/src/bots/worker.js +++ b/src/bots/worker.js @@ -125,18 +125,6 @@ function endTask (task) { logger.write(configEndTask(task), 'TASK.END'); } -// Prepare the navigation task. -var taskNavigate = { - type: 'navigate', - it...
feat(worker): remove the prepended task of navigate - WARNING, you'll have to be explicit to navigate to the wanted url on the first task
damonjs_damon
train
js
17daa0a2a2f5600e7d72ae441a01d70fd536c71a
diff --git a/src/creators/MarkerCreator.js b/src/creators/MarkerCreator.js index <HASH>..<HASH> 100644 --- a/src/creators/MarkerCreator.js +++ b/src/creators/MarkerCreator.js @@ -110,7 +110,7 @@ export default class MarkerCreator extends Component { if (0 < Children.count(children)) { return ( <div...
fix(Marker): allow null and undefined as children * Original commit: f<I>c6f<I>f3beb<I>d<I>e1a<I>fef<I>d<I>bf<I>a * Original
tomchentw_react-google-maps
train
js
d3a9a9244d3632953f93ffc19c106980fa9de83c
diff --git a/docs/_ext/aafig.py b/docs/_ext/aafig.py index <HASH>..<HASH> 100644 --- a/docs/_ext/aafig.py +++ b/docs/_ext/aafig.py @@ -10,6 +10,7 @@ :author: Leandro Lucarella <llucax@gmail.com> :license: BOLA, see LICENSE for details """ +import logging import posixpath from hashlib import sha1 as sha fr...
chore(aafig): Import from logging from standard library
tmux-python_tmuxp
train
py
b6074322b985e13eda5916d497751a815291c0ba
diff --git a/tests/unit/sign-in-test.js b/tests/unit/sign-in-test.js index <HASH>..<HASH> 100644 --- a/tests/unit/sign-in-test.js +++ b/tests/unit/sign-in-test.js @@ -64,7 +64,7 @@ test('successful account.signIn(options)', function (t) { password: 'secret' }) - .then(function (session) { + .then(function (...
test: sign in resolves with account
hoodiehq_hoodie-account-client
train
js
d302c5503f789e457e44c1173ca43c90a02d30ba
diff --git a/packages/cli-plugin-deploy-pulumi/utils/login.js b/packages/cli-plugin-deploy-pulumi/utils/login.js index <HASH>..<HASH> 100644 --- a/packages/cli-plugin-deploy-pulumi/utils/login.js +++ b/packages/cli-plugin-deploy-pulumi/utils/login.js @@ -62,9 +62,6 @@ module.exports = async projectApplication => { ...
fix: remove testing-related logs
Webiny_webiny-js
train
js
1983e2bb47707c2802c8a92bf77302e03ed8afc3
diff --git a/lib/service/extract-saz.js b/lib/service/extract-saz.js index <HASH>..<HASH> 100644 --- a/lib/service/extract-saz.js +++ b/lib/service/extract-saz.js @@ -119,7 +119,7 @@ module.exports = function(buffer, cb) { var result = sessions[index] = sessions[index] || {}; ++count; if (filename === 'c...
refactor: Auto decode req&res body
avwo_whistle
train
js
1797dd7fd2edb741fdd8b091405ace8e8308df18
diff --git a/model/portableElement/storage/PortableElementRegistry.php b/model/portableElement/storage/PortableElementRegistry.php index <HASH>..<HASH> 100644 --- a/model/portableElement/storage/PortableElementRegistry.php +++ b/model/portableElement/storage/PortableElementRegistry.php @@ -514,11 +514,9 @@ abstract cla...
fix: missing files in exported pci zip
oat-sa_extension-tao-itemqti
train
php
3fce7287047c76c03e512ce2d4727fc251bd96bd
diff --git a/lib/__internal/EngineClient.js b/lib/__internal/EngineClient.js index <HASH>..<HASH> 100644 --- a/lib/__internal/EngineClient.js +++ b/lib/__internal/EngineClient.js @@ -3,7 +3,7 @@ const got = require('got'); class EngineClient { constructor({ workerId, path, interceptors }) { this.workerId = wor...
fix(path): make path expect only base engine url Related to CAM-<I>
camunda_camunda-external-task-client-js
train
js,js
d4c07955c3a71637e2cda46803bd168b43605f33
diff --git a/packages/input-currency/src/CurrencyInput.js b/packages/input-currency/src/CurrencyInput.js index <HASH>..<HASH> 100644 --- a/packages/input-currency/src/CurrencyInput.js +++ b/packages/input-currency/src/CurrencyInput.js @@ -20,7 +20,8 @@ EnhancedCurrencyInput.defaultProps = { thousandSeparator: ",", ...
feat(CurrencyInput): set default allowNegative to false affects: @crave/farmblocks-input-currency
CraveFood_farmblocks
train
js
d839311af3e22876650e7c942ac3dd808b0893f8
diff --git a/elements/Image.js b/elements/Image.js index <HASH>..<HASH> 100644 --- a/elements/Image.js +++ b/elements/Image.js @@ -1,7 +1,7 @@ import React from "react"; import PropTypes from "prop-types"; -import { Image } from "react-native"; -import { requireNativeComponent } from "react-native"; +import { Image, ...
chore(Image): Update image prop type to ImageSourcePropType
react-native-community_react-native-svg
train
js
b520494977239270f1b1df04b24c6c36abd33fbb
diff --git a/src/Col/index.js b/src/Col/index.js index <HASH>..<HASH> 100644 --- a/src/Col/index.js +++ b/src/Col/index.js @@ -130,6 +130,7 @@ class ColUnstyled extends React.Component { // eslint-disable-line react/prefer- return ( <Tag className={mapToCssModules(cn( + 'col', c...
fix(col): adding missing classname .col to <Col /> component
bootstrap-styled_v4
train
js
781fb70d43909979d17729e486b9c873a8f13368
diff --git a/lib/foreman_fog_proxmox/engine.rb b/lib/foreman_fog_proxmox/engine.rb index <HASH>..<HASH> 100644 --- a/lib/foreman_fog_proxmox/engine.rb +++ b/lib/foreman_fog_proxmox/engine.rb @@ -46,7 +46,7 @@ module ForemanFogProxmox widget 'foreman_fog_proxmox_widget', name: N_('Foreman Fog Proxmox widget'), ...
fix: :bug: fixes routes permissions renamed
theforeman_foreman_fog_proxmox
train
rb
9619144a2fb96a3283bd05acfee2c9338e2926b8
diff --git a/ui/src/plugins/Cookies.js b/ui/src/plugins/Cookies.js index <HASH>..<HASH> 100644 --- a/ui/src/plugins/Cookies.js +++ b/ui/src/plugins/Cookies.js @@ -26,7 +26,11 @@ function read (string) { string = decode(string.replace(/\+/g, ' ')) try { - string = JSON.parse(string) + const parsed = JSON.p...
fix(Cookies): MAX_SAFE_INTEGER rounding when doing JSON.parse on a string cont… (#<I>) * fix: MAX_SAFE_INTEGER rounding when doing JSON.parse on a string containing a number greater than MAX_SAFE_INTEGER * Update Cookies.js * Update Cookies.js
quasarframework_quasar
train
js
30610cf1f5f42af5568ec3dd38e0e5da72a4db1e
diff --git a/src/React/Renderers/VtkRenderer/index.js b/src/React/Renderers/VtkRenderer/index.js index <HASH>..<HASH> 100644 --- a/src/React/Renderers/VtkRenderer/index.js +++ b/src/React/Renderers/VtkRenderer/index.js @@ -12,6 +12,8 @@ export default React.createClass({ propTypes: { className: React.PropTypes....
fix(VtkRenderer): Clear cache and render after user interaction This make sure the client will not receive a compressed image once its interaction is done
Kitware_paraviewweb
train
js