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
0ab1b75dbc70efc9efd5bec58a1fd4422132d8ef
diff --git a/lib/base.js b/lib/base.js index <HASH>..<HASH> 100644 --- a/lib/base.js +++ b/lib/base.js @@ -584,9 +584,11 @@ class WebpackBaseBuilder { this.config.proxy = proxy; } - setDevMode(port, proxy = false) { + setDevMode(port, proxy) { this.config.port = port || 9000; - this.config.proxy = p...
fix: server side render, egg local dev mode , proxy static resource proxy to <I> address
easy-team_easywebpack
train
js
8634745a9794022c3dcf6d0cfdaa8d1310a27041
diff --git a/lib/boot/parse/order-boot-sequence.js b/lib/boot/parse/order-boot-sequence.js index <HASH>..<HASH> 100644 --- a/lib/boot/parse/order-boot-sequence.js +++ b/lib/boot/parse/order-boot-sequence.js @@ -19,7 +19,7 @@ class Sequencer { this.orderedServiceNames = _.uniq(this.orderedServiceNames) } // cons...
style: lint fix - added a space :o
wmfs_tymly-core
train
js
ec8d16b3e86e799ff88e0763b54b6671d8164f82
diff --git a/anytemplate/__init__.py b/anytemplate/__init__.py index <HASH>..<HASH> 100644 --- a/anytemplate/__init__.py +++ b/anytemplate/__init__.py @@ -81,8 +81,10 @@ see its help; see the output of 'help(anytemplate.render)', etc. """ from __future__ import absolute_import from .globals import AUTHOR, VERSION, L...
refactor: enclose imported objects instead of breaking lines with '\'
ssato_python-anytemplate
train
py
3589dbd0d40f1a9a48fa2aa3d706b28c7875f616
diff --git a/src/component/association-select.js b/src/component/association-select.js index <HASH>..<HASH> 100644 --- a/src/component/association-select.js +++ b/src/component/association-select.js @@ -1,11 +1,8 @@ import getProp from 'get-prop'; -import {logger} from '../aurelia-orm'; import {inject} from 'aurelia-...
refactor(association-select): need to import from the later concated aurelia-orm
SpoonX_aurelia-orm
train
js
d54347391f196134394169059f63bb28bc773773
diff --git a/connection/pool.js b/connection/pool.js index <HASH>..<HASH> 100644 --- a/connection/pool.js +++ b/connection/pool.js @@ -951,7 +951,7 @@ Pool.prototype.destroy = function(force) { while (self.queue.length > 0) { var workItem = self.queue.shift(); if (typeof workItem.cb === 'function') {...
fix(pool): ensure that errors are propagated on force destroy NODE-<I>
mongodb_node-mongodb-native
train
js
c9bf5abe089a790195e04ac689a15e237f885077
diff --git a/packages/blueprint-gatekeeper/app/services/session.js b/packages/blueprint-gatekeeper/app/services/session.js index <HASH>..<HASH> 100644 --- a/packages/blueprint-gatekeeper/app/services/session.js +++ b/packages/blueprint-gatekeeper/app/services/session.js @@ -75,7 +75,7 @@ module.exports = Service.extend...
feat: Added tags attribute to access token
onehilltech_blueprint
train
js
b883b051c2f19601cd33a0f4cae3c3a0c1de3b26
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -108,7 +108,7 @@ module.exports = class Bundler { return this._fileReader(packageConfig).then(fileReader => { const reader = new PackageReader(fileReader); this._readersMap[packageConfig.name...
fix: lazily resolve package main When dumber-gist introduces initial lazy package configs, some package readers may not be needed at runtime. This can happen when a npm package has dependencies in package.json, but some deps are not required (based on code tracing) at runtime. This fix avoids some unnecessary remote f...
dumberjs_dumber
train
js
6af436f0c216cc0d2077e8ffd3b91d34fc71e3d2
diff --git a/src/View.js b/src/View.js index <HASH>..<HASH> 100644 --- a/src/View.js +++ b/src/View.js @@ -306,7 +306,7 @@ var View = createClass( set: actionSet }, options.actions); } - else if(this.parentView == null || this._isolated) + else if((this.parentView == null || this._isolated )&& !options._c...
fix(View): do not add default set action to cloned views
karfcz_kff
train
js
bf087f17fece87032b90bd4eaa5e72ed613385aa
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -527,17 +527,8 @@ function parseString(str) { if (!str) { return ''; } - var data = readFileText(str); - if (data) { - return data; - } - try { - data = JSON.parse(str); - if (typeof...
refactor: refine shadowRules
avwo_whistle
train
js
2a5b20021243160755449bd1905f0f47b5521a26
diff --git a/test/client.test.js b/test/client.test.js index <HASH>..<HASH> 100644 --- a/test/client.test.js +++ b/test/client.test.js @@ -177,11 +177,19 @@ test('GH-388 GET json, but really HTML', function (t) { test('GH-115 GET path with spaces', function (t) { - JSON_CLIENT.get('/json/foo bar', function ...
test: update client malformed test for node <I> The 'spaces in path' error is now caught early in the client, since it's never valid HTTP. Update the test to handle this.
restify_plugins
train
js
9c7293827ffc05da59cc8b0c1a7b78f4df1b96cb
diff --git a/algoliasearch/types_index.go b/algoliasearch/types_index.go index <HASH>..<HASH> 100644 --- a/algoliasearch/types_index.go +++ b/algoliasearch/types_index.go @@ -1,15 +1,15 @@ package algoliasearch type IndexRes struct { - CreatedAt string `json:"createdAt"` - DataSize int `json...
fix: Add missing trailing S to IndexRes' NumberOfPendingTasks (closes #<I>)
algolia_algoliasearch-client-go
train
go
a2c1acf97c8c7b8a00cdd26fc35de25d6844fe4a
diff --git a/lib/topology_lib_ip/library.py b/lib/topology_lib_ip/library.py index <HASH>..<HASH> 100644 --- a/lib/topology_lib_ip/library.py +++ b/lib/topology_lib_ip/library.py @@ -160,5 +160,6 @@ def ping(enode, count, destination): __all__ = [ 'interface', 'add_route', + 'add_6_route', 'ping' ]
fix: dev: Forgot to add to public interface.
HPENetworking_topology_lib_ip
train
py
d63a77d8b1607d299d836b126c8e8bf81bcc2c68
diff --git a/build.go b/build.go index <HASH>..<HASH> 100644 --- a/build.go +++ b/build.go @@ -210,7 +210,7 @@ func createPackage(options linuxPackageOptions) { // copy sample ini file to /etc/grafana runPrint("cp", "conf/sample.ini", filepath.Join(packageRoot, options.configFilePath)) // copy sample ldap toml co...
fix(build): fixed ldap config file sample issue and build script
grafana_grafana
train
go
73b71844bdbe17659c7baaec5fd41a7eeadb0da6
diff --git a/tabula/file_util.py b/tabula/file_util.py index <HASH>..<HASH> 100644 --- a/tabula/file_util.py +++ b/tabula/file_util.py @@ -1,5 +1,6 @@ import os import shutil +import uuid from urllib.parse import quote, urlparse, uses_netloc, uses_params, uses_relative from urllib.request import Request, urlopen ...
fix: create unique file name for temporaly file Since creating pid based file name causes multi thread issue, i.e., temporary file will be removed with concurrent task. Use uuid instead of pid to prevent unintended removal with io.BytesIO. close #<I>
chezou_tabula-py
train
py
001a8ead021f7454db999609b1fd4981008efaa9
diff --git a/src/Select.js b/src/Select.js index <HASH>..<HASH> 100644 --- a/src/Select.js +++ b/src/Select.js @@ -830,6 +830,7 @@ class Select extends React.Component { onRemove={this.removeValue} placeholder={this.props.placeholder} value={value} + values={valueArray} > {renderL...
feat: add `values` to `ValueComponent` in multi-select (#<I>)
JedWatson_react-select
train
js
e5a89cce196f84bcacf98ec22d35b48002915766
diff --git a/lib/decorate.js b/lib/decorate.js index <HASH>..<HASH> 100644 --- a/lib/decorate.js +++ b/lib/decorate.js @@ -9,7 +9,8 @@ function decorate (callSpec, decorator) { return function decoratedAssert () { var context, message, hasMessage = false; - // https://github.com/petkaantonov/blue...
chore(empower-core): leave comments on optimization points
twada_empower-core
train
js,js
184e5302cf006f13b5863720183c1cd8c78b0f6c
diff --git a/packages/VSTouchable/index.js b/packages/VSTouchable/index.js index <HASH>..<HASH> 100644 --- a/packages/VSTouchable/index.js +++ b/packages/VSTouchable/index.js @@ -33,19 +33,19 @@ export default class VSTouchable extends React.Component { render() { if (TouchableComponent === TouchableNativeFee...
fix: pass down testID & other stuff with other props
vivintsolar-oss_react-native-components
train
js
38cb5ec2d037626fab93aca2d6400eb950a2bec6
diff --git a/config/webpack.loaders.js b/config/webpack.loaders.js index <HASH>..<HASH> 100644 --- a/config/webpack.loaders.js +++ b/config/webpack.loaders.js @@ -15,7 +15,6 @@ module.exports = [ loader: 'url-loader?limit=8192', },{ test: /\.css$/, - include: /node_modules/, loade...
fix(Loaders): Make css loader rule work on *all* css files.
Kitware_paraviewweb
train
js
2c5349a448217ad5fe74573ae92840d0e9177518
diff --git a/src/Leevel/Log/Console/Clear.php b/src/Leevel/Log/Console/Clear.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Log/Console/Clear.php +++ b/src/Leevel/Log/Console/Clear.php @@ -27,8 +27,6 @@ use Leevel\Kernel\IApp; /** * log 文件缓存清理. - * - * @codeCoverageIgnore */ class Clear extends Command { @@ ...
refactor(log): remove @codeCoverageIgnore and rename $cachePath to $cacheDir
hunzhiwange_framework
train
php
49c5e4fa9ba1ba586eb3b218e67437250d0ef9ad
diff --git a/scripts/webpack/cssBundler.js b/scripts/webpack/cssBundler.js index <HASH>..<HASH> 100644 --- a/scripts/webpack/cssBundler.js +++ b/scripts/webpack/cssBundler.js @@ -82,11 +82,11 @@ function cssBundler() { devtool: 'source-map', module: { rules: [ + ...rules, { - ...
chore(scripts): cssBundler Add new property to options object to add additonal rules to bundler.
trend-community_trend-components
train
js
46642b2748312f8c8924408b031c82c79eb18a3c
diff --git a/views/js/layout/search.js b/views/js/layout/search.js index <HASH>..<HASH> 100644 --- a/views/js/layout/search.js +++ b/views/js/layout/search.js @@ -49,7 +49,8 @@ define(['jquery', 'layout/actions', 'ui/searchModal', 'core/store', 'context', ' }; /** - * Sets events to init searchModal ins...
chore(keyboard-navigation): implemented opening search modal by ctrl + k shortcut
oat-sa_tao-core
train
js
f6421b0bb9cb4b588285574097db9f2d58719db8
diff --git a/lib/config/file.js b/lib/config/file.js index <HASH>..<HASH> 100644 --- a/lib/config/file.js +++ b/lib/config/file.js @@ -1,13 +1,13 @@ const logger = require('winston'); +const path = require('path'); module.exports = { getConfig, - isPathAbsolute, }; function getConfig(env) { let configFil...
fix(file): use path.isAbsolute for Windows compatibility (#<I>) Use Node's built-in `path.isAbsolute` for compatibility with Window's file paths.
renovatebot_renovate
train
js
eed047b83b4181310b7a72b13aaec970e8ab2895
diff --git a/builder/osc/common/access_config.go b/builder/osc/common/access_config.go index <HASH>..<HASH> 100644 --- a/builder/osc/common/access_config.go +++ b/builder/osc/common/access_config.go @@ -103,7 +103,8 @@ func (c *AccessConfig) GetRegion() string { func (c *AccessConfig) NewOSCClientByRegion(region strin...
feat: add proxy support to osc builder
hashicorp_packer
train
go
8fb5946eda7d9609b2aff27dcdeac04960665983
diff --git a/flow_control.js b/flow_control.js index <HASH>..<HASH> 100644 --- a/flow_control.js +++ b/flow_control.js @@ -48,7 +48,7 @@ const flowControlStep = Object.assign({}, require('kronos-step').Step, { case 'start': flow.start().then(f => { step.info(`${flow} started`); - }) + ...
style(semicolon): Added a missing semicolon
Kronos-Integration_kronos-flow-control-step
train
js
da1360ad601618ea8f8b45da6769a935d4de73cf
diff --git a/pyethereum/processblock.py b/pyethereum/processblock.py index <HASH>..<HASH> 100644 --- a/pyethereum/processblock.py +++ b/pyethereum/processblock.py @@ -128,7 +128,7 @@ class Log(object): def bloomables(self): return [self.address.decode('hex')] + \ - [utils.encode_int(x) for x ...
fix: zpad topics for bloom
ethereum_pyethereum
train
py
83994354e687ff6ffc95762ca3972ea81f577ddd
diff --git a/packages/node_modules/cerebral/src/View.js b/packages/node_modules/cerebral/src/View.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/cerebral/src/View.js +++ b/packages/node_modules/cerebral/src/View.js @@ -246,9 +246,13 @@ class View extends Watch { Creates a reaction */ createReacti...
fix(cerebral): correctly remove reactions on unmount
cerebral_cerebral
train
js
76f2d3bb0c92ef7b9107ed27d0403282f54469f8
diff --git a/src/Leevel/Log/Manager.php b/src/Leevel/Log/Manager.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Log/Manager.php +++ b/src/Leevel/Log/Manager.php @@ -58,10 +58,10 @@ class Manager extends Managers * * @return \Leevel\Log\File */ - protected function makeConnectFile(array $options =...
refactor(log): manager connect only support string
hunzhiwange_framework
train
php
8cb720717d659b165e5ff95b80bf58dc5bf39abb
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -16,6 +16,9 @@ module.exports = function (options, pkg, argv, env, cb) { if (env.BUILD_LEADER === 'YES') { if (env.BUILD_AGGREGATE_STATUS !== 'others_succeeded') return cb(new SRError('Not publishing ...
feat(condition-travis): tries to delete travis_after_all artifacts
semantic-release_condition-travis
train
js
27dbf2a096f109939f59472f24c92991db6d2f82
diff --git a/test/build/streams.js b/test/build/streams.js index <HASH>..<HASH> 100644 --- a/test/build/streams.js +++ b/test/build/streams.js @@ -26,7 +26,7 @@ describe( 'yielding streams', function() { var res = yield (0, _fs.createReadStream)( 'index.js' ); (0, _assert2.default)( Buffer.i...
test: Fix streams test for old node builds
novacrazy_bluebird-co
train
js,js
e6afce17a96f269a5b8a1ec65fdba9fea0bef31a
diff --git a/engine/src/main/java/org/camunda/bpm/application/impl/event/ProcessApplicationEventListenerDelegate.java b/engine/src/main/java/org/camunda/bpm/application/impl/event/ProcessApplicationEventListenerDelegate.java index <HASH>..<HASH> 100644 --- a/engine/src/main/java/org/camunda/bpm/application/impl/event/P...
chore(engine): add InvocationContext to ProcessApplicationEventListenerDelegate related to #CAM-<I>
camunda_camunda-bpm-platform
train
java
fdc8ecbc0c1d8a4b76ec653602c5ab06a9659c98
diff --git a/git/remote.py b/git/remote.py index <HASH>..<HASH> 100644 --- a/git/remote.py +++ b/git/remote.py @@ -706,8 +706,8 @@ class Remote(LazyMixin, Iterable): if config.get_value('fetch', default=unset) is unset: msg = "Remote '%s' has no refspec set.\n" msg += "You...
fix(remote): assemble exception message completely ... before trying to substitute values in. Fixes #<I>
gitpython-developers_GitPython
train
py
f830571fc32f4f21f87c128f40b9e382ece15ba8
diff --git a/target/target.go b/target/target.go index <HASH>..<HASH> 100644 --- a/target/target.go +++ b/target/target.go @@ -47,9 +47,8 @@ func (t *Target) GetJobs() map[string]job.Job { jobs := make(map[string]job.Job, len(names)) for _, name := range names { - payload := job.NewJobPayload(readUnit(name)) ...
refactor(target): Drop init of JobPayload in Target.GetJobs The JobPayload objects are not used by anything that calls Target.GetJobs, so we can just stop populating it.
coreos_fleet
train
go
95b77d10af83925489f260c167bb1503e3ca0131
diff --git a/invenio_config/__init__.py b/invenio_config/__init__.py index <HASH>..<HASH> 100644 --- a/invenio_config/__init__.py +++ b/invenio_config/__init__.py @@ -48,13 +48,12 @@ a temporary directory. >>> import tempfile >>> tmppath = tempfile.mkdtemp() -In order to make sure that there are no files left in ca...
docs: usage example fix * Hides part of documentation specific to doctest environment.
inveniosoftware_invenio-config
train
py
27b805f3483e27e2e829d2e44f8684e7bdb6200b
diff --git a/wikitextparser/_wikitext.py b/wikitextparser/_wikitext.py index <HASH>..<HASH> 100644 --- a/wikitextparser/_wikitext.py +++ b/wikitextparser/_wikitext.py @@ -62,7 +62,7 @@ TABLES_FINDITER = regex_compile( rb'^([ :]*+){\|' # Table contents # Any character, as long as it is not indicating anot...
fix(TABLES_FINDITER): (*PRUNE) before recursion TBH I'm cannot fully grasp why this works. I'm just hoping that it won't cause any unexpected failures. Maybe I'll rewrite the whole pattern later or revert back to use the old table-matching algorithm. closes #<I>
5j9_wikitextparser
train
py
309807c676262b55df53c8b03914580d5ac98064
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -31,7 +31,7 @@ function Account (options) { update: require('./lib/update').bind(null, state), profile: { get: require('./lib/profile-get').bind(null, state), - fetch: require('./lib/profile-fetch').bind(...
fix: account.profile.fetch() resolves with profile properties
hoodiehq_hoodie-account-client
train
js
face07e900a73f4f8bf833a9bd6434e28052ccf5
diff --git a/packages/example-phone/test/automation/spec/call.js b/packages/example-phone/test/automation/spec/call.js index <HASH>..<HASH> 100644 --- a/packages/example-phone/test/automation/spec/call.js +++ b/packages/example-phone/test/automation/spec/call.js @@ -106,7 +106,8 @@ describe(`example-phone`, () => { ...
chore(example-phone): disable test to continue pipeline work
webex_spark-js-sdk
train
js
acd04cbc77c914af56db8b83734d187cc926f4e4
diff --git a/packages/pob/lib/generators/common/babel/CommonBabelGenerator.js b/packages/pob/lib/generators/common/babel/CommonBabelGenerator.js index <HASH>..<HASH> 100644 --- a/packages/pob/lib/generators/common/babel/CommonBabelGenerator.js +++ b/packages/pob/lib/generators/common/babel/CommonBabelGenerator.js @@ -3...
fix(pob): add @babel/core when pkg has peer dependency
christophehurpeau_pob-lerna
train
js
efe8425e621a52465f6a8b01a352a3e2a80bced2
diff --git a/packages/components/bolt-animate/animate.schema.js b/packages/components/bolt-animate/animate.schema.js index <HASH>..<HASH> 100644 --- a/packages/components/bolt-animate/animate.schema.js +++ b/packages/components/bolt-animate/animate.schema.js @@ -69,7 +69,7 @@ module.exports = { type: 'number', ...
feat: speed up default exit animation to create a smoother experience
bolt-design-system_bolt
train
js
f0d2b8aafd8eb13ecb52e688bf34f846d51a2dab
diff --git a/shinken/daemons/arbiterdaemon.py b/shinken/daemons/arbiterdaemon.py index <HASH>..<HASH> 100644 --- a/shinken/daemons/arbiterdaemon.py +++ b/shinken/daemons/arbiterdaemon.py @@ -398,9 +398,9 @@ class Arbiter(Daemon): for arb in self.conf.arbiterlinks: if (arb.address, arb.port) == (se...
fix: bad lambda for is_me + previous commit was missing a bit.
Alignak-monitoring_alignak
train
py,py
d556cf2751498c86460202cc8928764404c62269
diff --git a/packages/xod-project/src/index.js b/packages/xod-project/src/index.js index <HASH>..<HASH> 100644 --- a/packages/xod-project/src/index.js +++ b/packages/xod-project/src/index.js @@ -30,6 +30,7 @@ export { canBindToOutputs, renumberNodes, getTopology, + assocInitialPinValues, } from './patch'; e...
fix(xod-project): add missing exports
xodio_xod
train
js
330b8c0ad7cafba49f4f6d5f3b6c55ea95a13e60
diff --git a/packages/lingui-cli/src/api/formats/lingui.js b/packages/lingui-cli/src/api/formats/lingui.js index <HASH>..<HASH> 100644 --- a/packages/lingui-cli/src/api/formats/lingui.js +++ b/packages/lingui-cli/src/api/formats/lingui.js @@ -8,8 +8,8 @@ import R from 'ramda' import type { LinguiConfig, CatalogFormat ...
fix: Fix lingui extract command on Windows
lingui_js-lingui
train
js
8229e216836a5033653341abbefea01e45618693
diff --git a/lib/utils.js b/lib/utils.js index <HASH>..<HASH> 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -207,7 +207,7 @@ export function isIOS() { 'iPod', ].includes(navigator.platform) // iPad on iOS 13 detection - || (navigator.userAgent.includes('Mac') && 'ontouchend' in document); + || (navigator...
fix: main thread is blocked on Mac device fix #<I>
Donaldcwl_browser-image-compression
train
js
b001e194f117ca8cfc9bcc9eb62dd7aab07988f7
diff --git a/src/structures/MessageReaction.js b/src/structures/MessageReaction.js index <HASH>..<HASH> 100644 --- a/src/structures/MessageReaction.js +++ b/src/structures/MessageReaction.js @@ -34,7 +34,7 @@ class MessageReaction { * A manager of the users that have given this reaction * @type {ReactionUse...
fix(MessageReaction): Cache myself when `MessageReaction#me` is `true`. (#<I>)
discordjs_discord.js
train
js
55620ade4739308cc95b4193d4c429694b220957
diff --git a/static/autofill.js b/static/autofill.js index <HASH>..<HASH> 100644 --- a/static/autofill.js +++ b/static/autofill.js @@ -19,7 +19,7 @@ $(document).ready(function() { search: function (term, callback) { var usernames; if (!term) { - usernames = localUserList.concat(groupList).filter(funct...
feat: update autofill logic - Only local topic users will show up if there is no search term - Group matches now show up in the search results (whereas before they only showed up in the list with no search term). They will only show up in seach results, and not when there is just the naked "@" sign. - Results ar...
julianlam_nodebb-plugin-mentions
train
js
4435e53901df4d64992a540694fbd3d5489c2220
diff --git a/superset/migrations/versions/a9422eeaae74_new_dataset_models_take_2.py b/superset/migrations/versions/a9422eeaae74_new_dataset_models_take_2.py index <HASH>..<HASH> 100644 --- a/superset/migrations/versions/a9422eeaae74_new_dataset_models_take_2.py +++ b/superset/migrations/versions/a9422eeaae74_new_datase...
fix(dataset): handle missing sqla uri in migration (#<I>)
apache_incubator-superset
train
py
f61d28cd684912ec034d50750897459b76932f77
diff --git a/httprunner/cli.py b/httprunner/cli.py index <HASH>..<HASH> 100644 --- a/httprunner/cli.py +++ b/httprunner/cli.py @@ -44,7 +44,7 @@ def main_run(extra_args): sys.exit(1) extra_args_new.extend(testcase_path_list) - pytest.main(extra_args_new) + sys.exit(pytest.main(extra_args_new)) ...
fix: missing exit code from pytest
HttpRunner_HttpRunner
train
py
618fb8416a1445c067fbaff7a0310c6db15e3913
diff --git a/tests/FrontControllerTest.php b/tests/FrontControllerTest.php index <HASH>..<HASH> 100644 --- a/tests/FrontControllerTest.php +++ b/tests/FrontControllerTest.php @@ -429,7 +429,7 @@ class FrontControllerTest extends TestCase $this->config->stream = true; $this->assertRequestIsOk( ...
fix: Use a different RTMP provider canalc2.tv does not use RTMP anymore Fixes #<I>
Rudloff_alltube
train
php,php
859debe4416abbaacb551c9b19887fdf23d47048
diff --git a/tests/test_derived_spatial_point.py b/tests/test_derived_spatial_point.py index <HASH>..<HASH> 100644 --- a/tests/test_derived_spatial_point.py +++ b/tests/test_derived_spatial_point.py @@ -60,7 +60,7 @@ def test_derived_tag(): assert result["valid"] == True -def test_derived_tag(): +def test_deri...
fix(test): fix name of derived numeric test
seung-lab_EMAnnotationSchemas
train
py
d0a9591c25631d3f47ffcdb3ab5f280ae447a15b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -37,9 +37,11 @@ function getCredentialsByURI (uri, config) { // Handle the old-style _auth=<base64> style for the default // registry, if set. - const authDef = config['_auth'] - const userDef = config['username'] - ...
refactor: use destructuring
pnpm_credentials-by-uri
train
js
8a9b64e735f85c38f0776f9b4abd8dfde16fc96f
diff --git a/test/test_weather.py b/test/test_weather.py index <HASH>..<HASH> 100644 --- a/test/test_weather.py +++ b/test/test_weather.py @@ -6,8 +6,8 @@ import os import pytest from hypothesis import given, strategies as st, example -from emiz import Miz, set_weather_from_icao -from emiz.weather import build_meta...
fix: dev: fix weather tests
etcher-be_emiz
train
py
64b8724c53829f20c38a5c780eb0759ae50ab09f
diff --git a/packages/elements/src/index.js b/packages/elements/src/index.js index <HASH>..<HASH> 100644 --- a/packages/elements/src/index.js +++ b/packages/elements/src/index.js @@ -162,4 +162,13 @@ export { spacing, } from '@carbon/layout'; export * from '@carbon/themes'; -export * from '@carbon/motion'; +export...
fix(elements): use explicit exports from motion to prevent duplicates (#<I>)
carbon-design-system_carbon-components
train
js
ea8537f8cdd5fc4d4bd2246c7f0f149dd6ee5f95
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -130,5 +130,5 @@ module.exports = { path: (path) => (isIpfs(path, pathPattern) || isIpns(path, pathPattern)), pathPattern: pathPattern, urlOrPath: (x) => (isIpfs(x, urlPattern) || isIpns(x, urlPattern)...
refactor: use isIpfs to reuse path validation License: MIT
ipfs_is-ipfs
train
js
79bbab7a97480a3952b52c62ca2160cebf14053b
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -202,8 +202,18 @@ function umdWebpack() { }, externals: [ { - 'react': 'React', - 'react-dom': 'ReactDOM', + react: { + commo...
fix: adjust umd external config for stackblitz (#<I>)
ant-design_ant-design-mobile
train
js
c4ce40e57c672113757a8ef1fe5a2e8eae8bcf13
diff --git a/vyper/ast/pre_parser.py b/vyper/ast/pre_parser.py index <HASH>..<HASH> 100644 --- a/vyper/ast/pre_parser.py +++ b/vyper/ast/pre_parser.py @@ -104,9 +104,10 @@ def pre_parse(code: str) -> Tuple[ModificationOffsets, str]: try: code_bytes = code.encode("utf-8") - token_generator = token...
feat: give more expressive error on old use of `log`
ethereum_vyper
train
py
2e346fff7bddcb5c093a5a54bb764b344da4692c
diff --git a/test.js b/test.js index <HASH>..<HASH> 100644 --- a/test.js +++ b/test.js @@ -1,15 +1,9 @@ #!/usr/bin/env node var spawn = require('cross-spawn-async') -var findNearestFile = require('find-nearest-file') -var path = require('path') -var userHome = require('user-home') -var pathExists = require('path-ex...
test: always run saucelabs test locally (#<I>) I think this is a simpler approach for #<I>. Always run the sauce labs tests locally. If users lack the right sauce labs credentials, they’ll get an error and hopefully set up zuul correctly before sending a PR.
webtorrent_webtorrent-cli
train
js
ddb74721fe3df89d84fd79f6603aafd8bc488090
diff --git a/webpack.config.dev.js b/webpack.config.dev.js index <HASH>..<HASH> 100644 --- a/webpack.config.dev.js +++ b/webpack.config.dev.js @@ -13,24 +13,23 @@ config.plugins = [ new HtmlWebpackPlugin({ template: 'src/index.html' }), - new webpack.HotModuleReplacementPlugin(), - new webpack....
fix: update to get webpack 2 to work
loryjs_lory
train
js
efcc32e8159fe1d120a70b17afded00552b37aa0
diff --git a/wdio.conf.js b/wdio.conf.js index <HASH>..<HASH> 100644 --- a/wdio.conf.js +++ b/wdio.conf.js @@ -75,7 +75,7 @@ exports.config = { // // If CI && Safari run Safari + Edge // If just Safari run Safari + Chrome - // If not Safari run Firefox + Chrome + // IF not Safari run Firefox + Chrome capa...
chore(samples): test against Safari
webex_spark-js-sdk
train
js
cfa28ebe01b77877b3089a17e8ab533b5f62e0f1
diff --git a/packages/bonde-admin-canary/src/scenes/Logged/scenes/Home/components/MobilizationsGadget/query.graphql.js b/packages/bonde-admin-canary/src/scenes/Logged/scenes/Home/components/MobilizationsGadget/query.graphql.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin-canary/src/scenes/Logged/scenes/Home/c...
chore(admin-canary): add attrs on community query
nossas_bonde-client
train
js
dc054a2be95490b0b8c0008b3f5909a1e7d1a831
diff --git a/src/geshi/php.php b/src/geshi/php.php index <HASH>..<HASH> 100644 --- a/src/geshi/php.php +++ b/src/geshi/php.php @@ -1114,4 +1114,4 @@ $language_data = array( 'TAB_WIDTH' => 4 ); -?> \ No newline at end of file +?>
fix: Improve highlighting of single-line comments in PHP
GeSHi_geshi-1.0
train
php
7b75f001ba453f134e4bc649e85f697608c08697
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -306,12 +306,16 @@ interface Dom { * The singleton instance of the Dom API. */ export const DOM: Dom = {}; - +export let isInitialized = false; /** * Enables initializing a specific implementation of the P...
feat(index): move isInitialized to aurelia-pal
aurelia_pal
train
js
1a37c31720cd78ba06a1602c2e7eb274402c9df9
diff --git a/libtmux/test.py b/libtmux/test.py index <HASH>..<HASH> 100644 --- a/libtmux/test.py +++ b/libtmux/test.py @@ -4,6 +4,7 @@ import logging import os import tempfile import time +from typing import Optional from .exc import WaitTimeout @@ -19,13 +20,13 @@ example_dir = os.path.abspath(os.path.join(cur...
chore(retry): Type annotation
tmux-python_libtmux
train
py
f2f2bd6475a034b3febbfac5f9a35c0acc43051f
diff --git a/tests/spec/header-submenu_spec.js b/tests/spec/header-submenu_spec.js index <HASH>..<HASH> 100644 --- a/tests/spec/header-submenu_spec.js +++ b/tests/spec/header-submenu_spec.js @@ -345,10 +345,12 @@ describe('Header Submenu', function() { headerSubmenu = new HeaderSubmenu(element); document....
test(header-submenu): reset submenu attributes before each test (#<I>) define custom mock event properties
carbon-design-system_carbon-components
train
js
ddd82297f4f7b345a01baf8e010b29854b45f585
diff --git a/api/models.py b/api/models.py index <HASH>..<HASH> 100644 --- a/api/models.py +++ b/api/models.py @@ -406,7 +406,7 @@ class Container(UuidAuditedModel): return '' try: # ensure they cannot break out and run commands on the host - return "bash -c '{}'".format(se...
fix(scheduler): send environment to the process
deis_controller-sdk-go
train
py,py
db136dd40739e9e2f54e0a18e18a077b826dfb31
diff --git a/packages/core/renderers/renderer-hyperhtml.js b/packages/core/renderers/renderer-hyperhtml.js index <HASH>..<HASH> 100644 --- a/packages/core/renderers/renderer-hyperhtml.js +++ b/packages/core/renderers/renderer-hyperhtml.js @@ -88,7 +88,7 @@ export function BoltComponent(Base = HTMLElement) { //...
fix: fixing double quotes lint error
bolt-design-system_bolt
train
js
b61287523db92d5cc79c47ee0f8c4a6e9129a205
diff --git a/classes/streams/YoutubeChunkStream.php b/classes/streams/YoutubeChunkStream.php index <HASH>..<HASH> 100644 --- a/classes/streams/YoutubeChunkStream.php +++ b/classes/streams/YoutubeChunkStream.php @@ -60,11 +60,11 @@ class YoutubeChunkStream implements StreamInterface /** * Closes the stream an...
refactor: StreamInterface::close() should not return anything
Rudloff_alltube
train
php
fdb31b7b44728b11593c4d5c489a172f98209fce
diff --git a/src/Transactions/Builder/DelegateRegistration.php b/src/Transactions/Builder/DelegateRegistration.php index <HASH>..<HASH> 100644 --- a/src/Transactions/Builder/DelegateRegistration.php +++ b/src/Transactions/Builder/DelegateRegistration.php @@ -13,7 +13,7 @@ declare(strict_types=1); namespace ArkEcosys...
fix: missing ID from delegate registration
ArkEcosystem_php-crypto
train
php
0263e97a490c916915ee1db91c45346d6590068e
diff --git a/src/playbacks/no_op/no_op.js b/src/playbacks/no_op/no_op.js index <HASH>..<HASH> 100644 --- a/src/playbacks/no_op/no_op.js +++ b/src/playbacks/no_op/no_op.js @@ -15,7 +15,6 @@ export default class NoOp extends Playback { constructor(...args) { super(...args) this._noiseFrameNum = -1 - this....
fix(no_op): avoid using play to start animation The NoOp playback shouldn’t trigger the ‘play’ event when shown. It leaves it in an inconsistent state.
clappr_clappr
train
js
fb4fa9e29cdf14060b97e532abde5bbbb3c62f3c
diff --git a/packages/dna-idom/src/lib/idom.js b/packages/dna-idom/src/lib/idom.js index <HASH>..<HASH> 100644 --- a/packages/dna-idom/src/lib/idom.js +++ b/packages/dna-idom/src/lib/idom.js @@ -36,14 +36,16 @@ function interpolate(template, data) { export function h(element, props, ...children) { return () => ...
feat: handle keys in dna idom
chialab_dna
train
js
1277e2414f5d2082777e7fe9b3549d4c6f4b68d9
diff --git a/src/components/Slider/Slider.js b/src/components/Slider/Slider.js index <HASH>..<HASH> 100644 --- a/src/components/Slider/Slider.js +++ b/src/components/Slider/Slider.js @@ -152,9 +152,12 @@ export default class Slider extends PureComponent { requestAnimationFrame(() => { this.setState((prevS...
fix(Slider): fix JS error by dragging out of browser viewport (#<I>) Fixes #<I>.
carbon-design-system_carbon-components-react
train
js
119f1b3cd213c0c7e2d403b66539a9b92f2497b0
diff --git a/test/helpers/kubectl.go b/test/helpers/kubectl.go index <HASH>..<HASH> 100644 --- a/test/helpers/kubectl.go +++ b/test/helpers/kubectl.go @@ -137,6 +137,7 @@ var ( } microk8sHelmOverrides = map[string]string{ + "global.ipv6.enabled": "false", "global.cni.confPath": "/var/snap/microk8s/current...
test: Disable ipv6 for microk8s integration Commit ced4ad0bcaa8 ("ipam: Add "kubernetes" IPAM mode") autoenabled --k8s-require-ipv6-pod-cidr if --enable-ipv6 is enabled, which causes a Cilium to get stuck waiting for the IPv6 pod CIDR to be populated in the node. Fix it by disabling ipv6 for microk8s CI.
cilium_cilium
train
go
d74752fccd88d9ea30c46d0afcfd1b23a557341b
diff --git a/watson_developer_cloud/__init__.py b/watson_developer_cloud/__init__.py index <HASH>..<HASH> 100755 --- a/watson_developer_cloud/__init__.py +++ b/watson_developer_cloud/__init__.py @@ -27,9 +27,9 @@ from .natural_language_classifier_v1 import NaturalLanguageClassifierV1 from .natural_language_understandi...
refactor(adapters): Move all adapters to the bottom of the init file
watson-developer-cloud_python-sdk
train
py
7d44c002d52a705db80e3b4f69c0ed6c06184a09
diff --git a/lib/tinker.js b/lib/tinker.js index <HASH>..<HASH> 100644 --- a/lib/tinker.js +++ b/lib/tinker.js @@ -11,6 +11,7 @@ const eslint = './node_modules/.bin/eslint --fix'; module.exports = function tinker(filePath, eslintrc) { let file = fs.readFileSync(filePath).toString(); + let updatedFlag = false; ...
feat: only rewrite file when it has Errors
benjycui_eslint-tinker
train
js
7ca10fb770934f78f3df1cc3f47a6613c4c62c13
diff --git a/superset/utils/cache_manager.py b/superset/utils/cache_manager.py index <HASH>..<HASH> 100644 --- a/superset/utils/cache_manager.py +++ b/superset/utils/cache_manager.py @@ -41,7 +41,7 @@ class CacheManager: cache_config = app.config[cache_config_key] cache_type = cache_config.get("CACHE_...
fix(cache): only warn about fallback cache for non-debug mode (#<I>)
apache_incubator-superset
train
py
3d5bd874ea19c34d33a7aa45f1409bddfafc248b
diff --git a/spec/suitesConf.js b/spec/suitesConf.js index <HASH>..<HASH> 100644 --- a/spec/suitesConf.js +++ b/spec/suitesConf.js @@ -7,7 +7,7 @@ exports.config = { okspec: 'suites/ok_spec.js', okmany: ['suites/ok_spec.js', 'suites/ok_2_spec.js'], failingtest: 'suites/always_fail_spec.js' - } + }, ...
chore(tests): fix missing comma in suite tests
angular_protractor
train
js
188b61bf1bd68c7e2504334d38c335370cd961f7
diff --git a/cypress/integration/datatable_spec.js b/cypress/integration/datatable_spec.js index <HASH>..<HASH> 100644 --- a/cypress/integration/datatable_spec.js +++ b/cypress/integration/datatable_spec.js @@ -222,4 +222,20 @@ describe('DataTable', function () { cy.get('.dt-row[data-row-index=1]').should(...
test: 💍 Add test for filters with sorting
frappe_datatable
train
js
79109829edc62ef7132b983de75832e71f57e17c
diff --git a/test/reducers/projectSpec.js b/test/reducers/projectSpec.js index <HASH>..<HASH> 100644 --- a/test/reducers/projectSpec.js +++ b/test/reducers/projectSpec.js @@ -9,6 +9,9 @@ import Selectors from '../../app/selectors'; import * as PIN_DIRECTION from '../../app/constants/pinDirection'; const mockStore =...
fix(test): fix deleting node with links
xodio_xod
train
js
6e64a46fd369c75a7c6e386aa587689d75bff0b5
diff --git a/packages/build/css/postcss-compile.js b/packages/build/css/postcss-compile.js index <HASH>..<HASH> 100644 --- a/packages/build/css/postcss-compile.js +++ b/packages/build/css/postcss-compile.js @@ -4,7 +4,7 @@ const path = require('path') const { mkdir } = require('../fs') module.exports = async functi...
refactor(build): dynamic dir setup for postcss compile
pluralsight_design-system
train
js
22d546012c877773595c9d3c88c0be766f02fbbe
diff --git a/flask_appbuilder/tests/test_api.py b/flask_appbuilder/tests/test_api.py index <HASH>..<HASH> 100644 --- a/flask_appbuilder/tests/test_api.py +++ b/flask_appbuilder/tests/test_api.py @@ -2537,7 +2537,7 @@ class APITestCase(FABTestCase): """ client = self.app.test_client() self.bro...
fix: swagger test (#<I>)
dpgaspar_Flask-AppBuilder
train
py
e68631cacc73b0b54da7b64730c168d95055516f
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -63,10 +63,10 @@ module.exports = function( grunt ) { }, exec: { ormRebase: { - cmd: "NODE_PATH=" + [ './lib/', './modules/' ].join( isWin ? ';' : ':' ) + "; node m...
fix(grunt): No longer need NODE_PATH set when running db commands
CleverStack_clever-orm
train
js
8b6b060409360abef9806e4028167494374e8ae6
diff --git a/packages/app-admin/src/components/SplitView/SplitView.js b/packages/app-admin/src/components/SplitView/SplitView.js index <HASH>..<HASH> 100644 --- a/packages/app-admin/src/components/SplitView/SplitView.js +++ b/packages/app-admin/src/components/SplitView/SplitView.js @@ -64,7 +64,7 @@ const RightPanel = ...
fix: update element ID naming.
Webiny_webiny-js
train
js
b95088b17b6855bb65098bba70b818f1edb865ef
diff --git a/webapps/ui/cockpit/plugin.js b/webapps/ui/cockpit/plugin.js index <HASH>..<HASH> 100644 --- a/webapps/ui/cockpit/plugin.js +++ b/webapps/ui/cockpit/plugin.js @@ -14,3 +14,5 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + +export default [...
chore(ce-build): export empty plugin related to CAM-<I>
camunda_camunda-bpm-platform
train
js
c72b71cce977eee461ddc0cfd0c096ec6aea7cf2
diff --git a/src/Console/Console.js b/src/Console/Console.js index <HASH>..<HASH> 100644 --- a/src/Console/Console.js +++ b/src/Console/Console.js @@ -9,7 +9,8 @@ import { trim, upperFirst, isHidden, - lowerCase + lowerCase, + isNull } from '../lib/util' import evalCss from '../lib/evalCss' import emitte...
fix(console): unable to clear filter
liriliri_eruda
train
js
679ac77ec69cb7fc756449c7a27fb9c03d4bff19
diff --git a/lib/utils/couch.js b/lib/utils/couch.js index <HASH>..<HASH> 100644 --- a/lib/utils/couch.js +++ b/lib/utils/couch.js @@ -11,10 +11,9 @@ var util = require('./index') */ exports.isAdminParty = function (env_config, callback) { - request({ - url: env_config.couch.url + '/_users/_all_docs', - met...
fix(utils): change method to GET to support more couchdb vendors (e.g. pouchdb-server) * * * This commit was sponsored by The Hoodie Firm. You can hire The Hoodie Firm: <URL>
hoodiehq_hoodie-server
train
js
6c0fcf04954af9ce2c0d10b421c6aabffcf9aba0
diff --git a/go/vt/vttablet/tabletmanager/rpc_replication.go b/go/vt/vttablet/tabletmanager/rpc_replication.go index <HASH>..<HASH> 100644 --- a/go/vt/vttablet/tabletmanager/rpc_replication.go +++ b/go/vt/vttablet/tabletmanager/rpc_replication.go @@ -250,7 +250,7 @@ func (tm *TabletManager) InitPrimary(ctx context.Cont...
feat: initPrimary should be using the reset functionality instead of setting the replication to stopped
vitessio_vitess
train
go
1555a55406264fbadb79ac97760501907e88e91b
diff --git a/tests/iam/test_iam_construct.py b/tests/iam/test_iam_construct.py index <HASH>..<HASH> 100644 --- a/tests/iam/test_iam_construct.py +++ b/tests/iam/test_iam_construct.py @@ -44,10 +44,12 @@ def test_iam_construct_policy(requests_get): @mock.patch('foremast.utils.credentials.API_URL', 'http://test.com') ...
test: Check cloudwatchlogs specifically See also: #<I>
foremast_foremast
train
py
f0b11ad22ee0a3f98436f816de88a20c631d7c75
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -389,6 +389,9 @@ describe('Page', function() { const result = await page.evaluate((a, b) => Object.is(a, undefined) && Object.is(b, 'foo'), undefined, 'foo'); expect(result).toBe(true); }); +...
test: verify serialization of "undefined" fields (#<I>) Fixes #<I>.
GoogleChrome_puppeteer
train
js
519ba54162a366e13c59a5fc3ee5b7fca105e142
diff --git a/packages/xod-client/src/project/reducer.js b/packages/xod-client/src/project/reducer.js index <HASH>..<HASH> 100644 --- a/packages/xod-client/src/project/reducer.js +++ b/packages/xod-client/src/project/reducer.js @@ -21,7 +21,7 @@ import { import { NODE_PROPERTY_KIND, NODE_PROPERTY_KEY } from './consta...
chore(xod-client): remove mentions of xod-core
xodio_xod
train
js
4d7f2ecb6e819dcfbb853ceddccfaaf7fb2c1950
diff --git a/packages/ui-scripts/lib/utils/git.js b/packages/ui-scripts/lib/utils/git.js index <HASH>..<HASH> 100644 --- a/packages/ui-scripts/lib/utils/git.js +++ b/packages/ui-scripts/lib/utils/git.js @@ -41,7 +41,10 @@ exports.isReleaseCommit = (version) => { info(formattedResult) - return !!formattedRes...
chore(ui-scripts): fix review issues
instructure_instructure-ui
train
js
a19ebffa8d93af3ef92a7500815e80a2494cedfa
diff --git a/src/lib/util/assertString.js b/src/lib/util/assertString.js index <HASH>..<HASH> 100644 --- a/src/lib/util/assertString.js +++ b/src/lib/util/assertString.js @@ -1,18 +1,11 @@ export default function assertString(input) { - const isString = (typeof input === 'string' || input instanceof String); + const...
refactor: refactor assertString fn (#<I>)
chriso_validator.js
train
js
efb09264ef10ab2343fdf2e735b85162bfa3edcb
diff --git a/packages/file-collections/src/node/getFileDownloadHandler/getFileDownloadHandler.js b/packages/file-collections/src/node/getFileDownloadHandler/getFileDownloadHandler.js index <HASH>..<HASH> 100644 --- a/packages/file-collections/src/node/getFileDownloadHandler/getFileDownloadHandler.js +++ b/packages/file...
fix: path parser Breaking change introduced: Path is a named export rather than the default export.
reactioncommerce_reaction-file-collections
train
js
47fdb2a8f8fc6142e9879869402401a65b04cb0a
diff --git a/src/network.js b/src/network.js index <HASH>..<HASH> 100644 --- a/src/network.js +++ b/src/network.js @@ -240,7 +240,7 @@ class Network { /** * Connects to another peer * - * @param {PeerId|Multiaddr|Provider} peer + * @param {PeerId|Multiaddr} peer * @param {Object} [options] * @par...
fix: fix wrong type signature (#<I>)
ipfs_js-ipfs-bitswap
train
js
6809cfc75a7cf9fc76a99e6ddb951c7f4afe7f1f
diff --git a/alot/command.py b/alot/command.py index <HASH>..<HASH> 100644 --- a/alot/command.py +++ b/alot/command.py @@ -699,10 +699,10 @@ class OpenAttachmentCommand(Command): def apply(self, ui): logging.info('open attachment') - path = self.attachment.save(tempfile.gettempdir()) mim...
fix: don't save files if not opened anyway
pazz_alot
train
py,py
0f958edbe31c36ab22b8edc123f8dc19c8ec2966
diff --git a/memote/suite/tests/test_basic.py b/memote/suite/tests/test_basic.py index <HASH>..<HASH> 100644 --- a/memote/suite/tests/test_basic.py +++ b/memote/suite/tests/test_basic.py @@ -340,7 +340,7 @@ def test_find_pure_metabolic_reactions(model): biomass reactions are removed and the remainder assumed to be...
docs: correct reference to Biomass Reactions Identified
opencobra_memote
train
py
44bd77588b5f62ce31330ac7844065c598001ab9
diff --git a/function/liftA.js b/function/liftA.js index <HASH>..<HASH> 100644 --- a/function/liftA.js +++ b/function/liftA.js @@ -1,4 +1,5 @@ -const { map, ap } = require('..') +const ap = require('../list/ap') +const map = require('../list/map') const liftA = arity => { if (arity < 1) throw new Error('arity mus...
fix: 🐛 remove circular reference in function/liftA.js
joelnet_MojiScript
train
js
c3ae67c5fe2b0ad3fe045e94d83ee5450e81924c
diff --git a/packages/taro-cli/src/weapp.js b/packages/taro-cli/src/weapp.js index <HASH>..<HASH> 100644 --- a/packages/taro-cli/src/weapp.js +++ b/packages/taro-cli/src/weapp.js @@ -911,8 +911,8 @@ function copyFilesFromSrcToOutput (files) { } async function compileScriptFile (filePath, content) { - const babelCo...
fix(cli): fix the order of merge external babel config before compile script
NervJS_taro
train
js
02da7d6804489a985d65b2d6281ecca01e9f08ee
diff --git a/test/timestamp.spec.js b/test/timestamp.spec.js index <HASH>..<HASH> 100644 --- a/test/timestamp.spec.js +++ b/test/timestamp.spec.js @@ -30,7 +30,7 @@ describe('timestamp support', function() { describe(method, function() { it('inserts data with timestamp', function() { ...
test: increase the timeouts in the timestamp / ttl tests
demmer_node-cassandra-native-driver
train
js
6de4687a6b002238248c56e499af7eaf1edbea02
diff --git a/src/anyconfig/backend/base/dumpers.py b/src/anyconfig/backend/base/dumpers.py index <HASH>..<HASH> 100644 --- a/src/anyconfig/backend/base/dumpers.py +++ b/src/anyconfig/backend/base/dumpers.py @@ -7,7 +7,6 @@ r"""Abstract and basic dumpes. import io from ... import utils -from .mixins import TextFiles...
fix: remove an import of .mixins.TextFilesMixin not used
ssato_python-anyconfig
train
py
123b6aa30eb32261b4be8c819c7aac3a0c88d085
diff --git a/modules/utils.js b/modules/utils.js index <HASH>..<HASH> 100755 --- a/modules/utils.js +++ b/modules/utils.js @@ -129,15 +129,15 @@ export function getCleanedHistory( if ( history.action === 'REPLACE' && tabsEntries[currentTabIndex] && - (arr.length - 1) === index &&...
fix(getCleanedHistory): update missingEntries condition
winoteam_react-router-navigation
train
js
8b6fbbe42991f4a92fea3543d394d6365299b162
diff --git a/packages/d3fc-webgl/src/series/area.js b/packages/d3fc-webgl/src/series/area.js index <HASH>..<HASH> 100644 --- a/packages/d3fc-webgl/src/series/area.js +++ b/packages/d3fc-webgl/src/series/area.js @@ -4,7 +4,6 @@ import drawModes from '../program/drawModes'; import areaShader from '../shaders/area/shader...
refactor: use array-based rendering for area
d3fc_d3fc
train
js
27e9e39861f13e141f37bb9db5601921b4e40ee2
diff --git a/service.js b/service.js index <HASH>..<HASH> 100755 --- a/service.js +++ b/service.js @@ -176,7 +176,7 @@ class ServiceConsul extends service.Service { name: name, id: u.href, address: u.hostname, - port: u.port, + port: parseInt(u.port, 10), tags: options.tags };
fix: use parseInt for port from url
Kronos-Integration_kronos-service-consul
train
js