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
cc9ea967cdb4307cc231f6c1d67654a0c5ebd58c
diff --git a/packages/section/src/utils.js b/packages/section/src/utils.js index <HASH>..<HASH> 100644 --- a/packages/section/src/utils.js +++ b/packages/section/src/utils.js @@ -39,10 +39,16 @@ const buildSliceData = memoizeOne(data => } const currentSlice = newSlices[idx]; + let generatedId = currentSl...
fix: section slice keys were entirely based on index (#<I>)
newsuk_times-components
train
js
28e26e3b07f4899ee826b07633370f0993b21e58
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 @@ -40,9 +40,7 @@ limitations under the License. this._provider = new ons._internal.LazyRepeatProvider(element[0].parentNode, element[0]...
fix(onz-lazy-repeat): Support several components using same delegate.
OnsenUI_OnsenUI
train
js
b08a4e3a6067816729079dec3b46805708d01796
diff --git a/src/main/java/dtest/actor/TestActor.java b/src/main/java/dtest/actor/TestActor.java index <HASH>..<HASH> 100644 --- a/src/main/java/dtest/actor/TestActor.java +++ b/src/main/java/dtest/actor/TestActor.java @@ -547,8 +547,8 @@ public class TestActor implements ITestActor { }); try { -...
feat(TestActor): allow alternative name "actor" for the "actorType" property in test definitions
mcdcorp_opentest
train
java
c5c3bb19e287427421065c4ff1762fc190ef75fd
diff --git a/actor/base/src/main/java/org/getopentest/Main.java b/actor/base/src/main/java/org/getopentest/Main.java index <HASH>..<HASH> 100644 --- a/actor/base/src/main/java/org/getopentest/Main.java +++ b/actor/base/src/main/java/org/getopentest/Main.java @@ -50,9 +50,16 @@ public class Main { } ...
fix(actor): require the "password" CLI argument when the "encrypt" argument is used
mcdcorp_opentest
train
java
ef2bb12ae83d4f7afaf7b35a20da1681cd7cb8df
diff --git a/agent/agent.go b/agent/agent.go index <HASH>..<HASH> 100644 --- a/agent/agent.go +++ b/agent/agent.go @@ -573,11 +573,6 @@ func (a *Agent) JobScheduledLocally(jobName string) { return } - if !a.VerifyJob(j) { - log.Errorf("Failed to verify Job(%s)", j.Name) - return - } - if !a.AbleToRun(j) { ...
fix(agent): Drop unnecessary call to VerifyJob
coreos_fleet
train
go
44f02421571827d53494ff701b91aaa3485b4f6d
diff --git a/pkg/api/index.go b/pkg/api/index.go index <HASH>..<HASH> 100644 --- a/pkg/api/index.go +++ b/pkg/api/index.go @@ -57,7 +57,7 @@ func setIndexViewData(c *middleware.Context) (*dtos.IndexViewData, error) { data.MainNavLinks = append(data.MainNavLinks, &dtos.NavLink{ Text: "Playlists", Icon: "fa fa-fw...
fix(build): fixed issue after merge
grafana_grafana
train
go
c7223219457671de9a676d7e470842a317870623
diff --git a/code/MemberProfilePage.php b/code/MemberProfilePage.php index <HASH>..<HASH> 100644 --- a/code/MemberProfilePage.php +++ b/code/MemberProfilePage.php @@ -456,9 +456,14 @@ class MemberProfilePage_Controller extends Page_Controller { $form->loadDataFrom($member); if($password = $form->Fields()->field...
fix(MemberProfilePage): Fix setting Password to "Readonly" causing it to error on 'setCanBeEmpty' call. Will also fix cases where Password field is swapped out for something without a 'setCanBeEmpty' function.
symbiote_silverstripe-memberprofiles
train
php
22793f2dcd8ce21707db22f5e18852526b775236
diff --git a/test/test-command.rb b/test/test-command.rb index <HASH>..<HASH> 100644 --- a/test/test-command.rb +++ b/test/test-command.rb @@ -64,7 +64,7 @@ class CommandTest < Test::Unit::TestCase end # confirm import command - file = File.join(File.dirname(__FILE__), "fixtures", "subscriptions.xml") + ...
test: Extract a method for fixtures dir
feedcellar_feedcellar
train
rb
7b8c45a4d2794bc0a7663759dc568b8e2cc88068
diff --git a/src/utils/constants.js b/src/utils/constants.js index <HASH>..<HASH> 100644 --- a/src/utils/constants.js +++ b/src/utils/constants.js @@ -134,3 +134,9 @@ export const SEARCH_COMPONENTS_MODES = { SELECT: 'select', TAG: 'tag', }; + +export const searchComponentTypes = [ + componentTypes.dataSearch, + co...
feat: addded constant and helper moethod to check if component is of search type
appbaseio_reactivecore
train
js,js
3a065f53e80d56dbce94e501e523ffad15bae44b
diff --git a/journal/send.go b/journal/send.go index <HASH>..<HASH> 100644 --- a/journal/send.go +++ b/journal/send.go @@ -3,6 +3,7 @@ package journal import ( "bytes" + "encoding/binary" "errors" "fmt" "io" @@ -12,7 +13,6 @@ import ( "strconv" "strings" "syscall" - "encoding/binary" ) // Priority ...
fix(journal): check whether net.Dial succeeds otherwise we end up making a nil pointer on 'conn'
coreos_go-systemd
train
go
dfb0acdec2406a6beb5816fb5d96cbd328f2151e
diff --git a/trinary/trinary.go b/trinary/trinary.go index <HASH>..<HASH> 100644 --- a/trinary/trinary.go +++ b/trinary/trinary.go @@ -212,9 +212,9 @@ func MinTrits(value int64) int { // IntToTrits converts int64 to a slice of trits. func IntToTrits(value int64) Trits { - numTrits := int(MinTrits(value)) + numTrits...
fix: use MustTrytesToTrits as value is safe (#<I>)
iotaledger_iota.go
train
go
ff53797a68882940b4d239d11332005222a26058
diff --git a/src/vue/get-children.js b/src/vue/get-children.js index <HASH>..<HASH> 100644 --- a/src/vue/get-children.js +++ b/src/vue/get-children.js @@ -17,7 +17,10 @@ function getChildren(originalSlots = {}, slidesRef, oldSlidesRef) { if (slotName === 'default') slotName = 'container-end'; if (isFragme...
feat(vue): add support for use Swiper as async component fixes #<I>
nolimits4web_swiper
train
js
eb3a0598d4eaa66a58b5cb9f518810d2c07e8a83
diff --git a/src/fs.js b/src/fs.js index <HASH>..<HASH> 100644 --- a/src/fs.js +++ b/src/fs.js @@ -44,6 +44,7 @@ module.exports = { p.readSync = function () { if (!p.isCacheable || (p.isCacheable && !p._cachedContents)) { p._cachedContents = p.i...
fix(fs): stringify everything on read, not just non-binary files
frctl_fractal
train
js
f618f87542054fd05fba1303c90943fd8402f40a
diff --git a/packages/test-helper-test-users/src/index.js b/packages/test-helper-test-users/src/index.js index <HASH>..<HASH> 100644 --- a/packages/test-helper-test-users/src/index.js +++ b/packages/test-helper-test-users/src/index.js @@ -101,6 +101,9 @@ function _extractFromEnv(options) { function _remove(users) { ...
refactor(test-helper-test-users): minor adjust for new test users client
webex_spark-js-sdk
train
js
8bf7b5474555f0780b228386f27d48cbda3e3252
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -147,7 +147,10 @@ func (c *Client) Loop() bool { // return from routine to launch reconnect process return case blocking := <-chanBlocking: - c.blocking <- blocking + select { + case c.blocking <- bl...
fix(client): prevent blocking channel from breaking reconnection loop
assembla_cony
train
go
ef5bbbd327a99568613561d06ad41bec5ab00271
diff --git a/schedula/ext/dispatcher.py b/schedula/ext/dispatcher.py index <HASH>..<HASH> 100644 --- a/schedula/ext/dispatcher.py +++ b/schedula/ext/dispatcher.py @@ -252,7 +252,10 @@ class _Graphviz(Graphviz): allow_miss=True) if self.arguments: env = s...
fix(directive): Add exception on graphviz patch for sphinx <I>.
vinci1it2000_schedula
train
py
3d7cce2a8f7e185edfd86b137e13401dd561abcc
diff --git a/packages/cozy-client/src/models/file.js b/packages/cozy-client/src/models/file.js index <HASH>..<HASH> 100644 --- a/packages/cozy-client/src/models/file.js +++ b/packages/cozy-client/src/models/file.js @@ -415,15 +415,15 @@ export const overrideFileForPath = async (client, dirPath, file, metadata) => { *...
refactor: Use look-behind assertion
cozy_cozy-client
train
js
170a3d61d6f1469ec729b91a583841333b745bb8
diff --git a/src/components/Wizard/Wizard.js b/src/components/Wizard/Wizard.js index <HASH>..<HASH> 100644 --- a/src/components/Wizard/Wizard.js +++ b/src/components/Wizard/Wizard.js @@ -11,11 +11,13 @@ const Wizard = ({ dialogClassName, show, onClose, + onExited, ...rest }) => ( <Modal show={show...
fix(wizard): expose onExited callback (#<I>)
patternfly_patternfly-react
train
js
29280222040f1df27e76d388b8582f09730f4479
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 @@ -75,7 +75,12 @@ def install_fonts(logger=None, restart=False): if font_installed and rest...
fix(installation): Prevent RAFCON from endless restarts, fixes #<I>
DLR-RM_RAFCON
train
py
be8448f0af9a6bfbc5a774d9eca4466ae2091fba
diff --git a/pingouin/regression.py b/pingouin/regression.py index <HASH>..<HASH> 100644 --- a/pingouin/regression.py +++ b/pingouin/regression.py @@ -406,7 +406,7 @@ def linear_regression(X, y, add_intercept=True, weights=None, coef_only=False, calc_ss_res = False if rank < Xw.shape[1]: warnings.war...
fix: warning text and pytest warns match
raphaelvallat_pingouin
train
py,py
cad8e19f69f07d94a2f547f082363fd873625a4d
diff --git a/test/functional/shared.js b/test/functional/shared.js index <HASH>..<HASH> 100644 --- a/test/functional/shared.js +++ b/test/functional/shared.js @@ -41,6 +41,10 @@ var assert = { expect(a).to.eql(b); }, + strictEqual: function(a, b) { + expect(a).to.eql(b); + }, + notEqual: function(a, b...
feat(test-shared): add `strictEqual` assertion method
mongodb_node-mongodb-native
train
js
96695979cf0a5d866a97ff72a93b0b74528405c5
diff --git a/src/Model/Table/ProductsTable.php b/src/Model/Table/ProductsTable.php index <HASH>..<HASH> 100644 --- a/src/Model/Table/ProductsTable.php +++ b/src/Model/Table/ProductsTable.php @@ -719,7 +719,7 @@ class ProductsTable extends AppTable if (isset($name['is_declaration_ok'])) { ...
fix: do not set id_storage_location to 0 if logged in as manufacturer
foodcoopshop_foodcoopshop
train
php
524a5c0413e81a3d38df9cd28cd5547786a7ccef
diff --git a/src/closure-compiler-plugin.js b/src/closure-compiler-plugin.js index <HASH>..<HASH> 100644 --- a/src/closure-compiler-plugin.js +++ b/src/closure-compiler-plugin.js @@ -434,18 +434,12 @@ class ClosureCompilerPlugin { // Entrypoints are chunk groups with no parents if (primaryChunk && primary...
fix: handle cases where an entry module doesn't have a file path
webpack-contrib_closure-webpack-plugin
train
js
fdf0f55ba8f53777803b71d290e22e93234ddc54
diff --git a/lib/components/form/settings-selector-panel.js b/lib/components/form/settings-selector-panel.js index <HASH>..<HASH> 100644 --- a/lib/components/form/settings-selector-panel.js +++ b/lib/components/form/settings-selector-panel.js @@ -274,7 +274,6 @@ class SettingsSelectorPanel extends Component { ...
refactor(form): remove unneeded ModeButton prop
opentripplanner_otp-react-redux
train
js
17d540ca185ee541b874e6f32fb6e5fd43111b16
diff --git a/src/geshi.php b/src/geshi.php index <HASH>..<HASH> 100644 --- a/src/geshi.php +++ b/src/geshi.php @@ -1868,9 +1868,9 @@ class GeSHi { //All this formats are matched case-insensitively! static $numbers_format = array( GESHI_NUMBER_INT_BASIC => - ...
fix: The number 0 was not highlighted by INT_BASIC or INT_CSTYLE
GeSHi_geshi-1.0
train
php
db5dd3be8d21b8442a2974880b29dbd8b3b77774
diff --git a/.eslintrc.js b/.eslintrc.js index <HASH>..<HASH> 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -181,6 +181,7 @@ module.exports = { 'client/sections-helper.js', 'client/sections-middleware.js', 'client/sections-preloaders.js', + 'client/sections.js', 'packages/accessible-focus/**/*'...
chore: migrate client/sections.js to import/order (#<I>)
Automattic_wp-calypso
train
js,js
8456d11663129f592d2e73eea3716d8d6255053c
diff --git a/panels/panel.js b/panels/panel.js index <HASH>..<HASH> 100644 --- a/panels/panel.js +++ b/panels/panel.js @@ -24,7 +24,7 @@ class Panel extends Component { return { isActive: path => routeAfter && `${route.context}${path}` === routeAfter.context, - navigate: toUri => dispatch(navigate(`$...
fix: pass focus and context to the dispatched navigate
UXtemple_panels
train
js
1090399b61394bbb726fb821973a4c62da55c71c
diff --git a/config/webpack.common.js b/config/webpack.common.js index <HASH>..<HASH> 100644 --- a/config/webpack.common.js +++ b/config/webpack.common.js @@ -1,10 +1,10 @@ const webpack = require('webpack'); const helpers = require('./helpers'); -const CleanWebpackPlugin = require('clean-webpack-plugin'); const A...
fix(build): add CleanWebpackPlugin to webpack commons
fabric8-ui_fabric8-planner
train
js
05f9f3adbcdc1bb1db4464bae3253717748e0326
diff --git a/packages/@vue/cli-service/lib/commands/serve.js b/packages/@vue/cli-service/lib/commands/serve.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli-service/lib/commands/serve.js +++ b/packages/@vue/cli-service/lib/commands/serve.js @@ -13,7 +13,7 @@ const defaults = { module.exports = (api, options) => ...
feat(serve): support entry in `vue-cli-service serve` close #<I>
vuejs_vue-cli
train
js
f2e8d8e4bf64a7ff9a00c061bd96ef27442f48ac
diff --git a/packages/node_modules/@webex/internal-plugin-board/src/board.js b/packages/node_modules/@webex/internal-plugin-board/src/board.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/internal-plugin-board/src/board.js +++ b/packages/node_modules/@webex/internal-plugin-board/src/board.js @@ -97,8 ...
fix(internal-plugin-board): use full channel URL in setSnapshotImage() This allows the function to work correctly with boards from foreign regions.
webex_spark-js-sdk
train
js
de7ad3b9cb88be51098f62c89e116e90cf09edf7
diff --git a/jsmpp/src/main/java/org/jsmpp/bean/OptionalParameter.java b/jsmpp/src/main/java/org/jsmpp/bean/OptionalParameter.java index <HASH>..<HASH> 100644 --- a/jsmpp/src/main/java/org/jsmpp/bean/OptionalParameter.java +++ b/jsmpp/src/main/java/org/jsmpp/bean/OptionalParameter.java @@ -1542,7 +1542,7 @@ public abst...
fix: char-code fix for utf-8(text fix)
opentelecoms-org_jsmpp
train
java
52dfb1fbfaa856884d3a7000124b3fe99f5b065f
diff --git a/dirsync/options.py b/dirsync/options.py index <HASH>..<HASH> 100644 --- a/dirsync/options.py +++ b/dirsync/options.py @@ -142,7 +142,7 @@ class ArgParser(ArgumentParser): self.load_cfg(args[0] if args else sys.argv[1]) parsed = super(ArgParser, self).parse_args(args, namespace) -...
refactor(options): replace equality by identity check
tkhyn_dirsync
train
py
b4ea47e05dcfe3113f906b252736a18f0c90273c
diff --git a/workflow/cron/operator.go b/workflow/cron/operator.go index <HASH>..<HASH> 100644 --- a/workflow/cron/operator.go +++ b/workflow/cron/operator.go @@ -191,6 +191,10 @@ func (woc *cronWfOperationCtx) terminateOutstandingWorkflows(ctx context.Context woc.log.Infof("stopping '%s'", wfObjectRef.Name) err ...
fix: Skip the Workflow not found error in Concurrency policy (#<I>)
argoproj_argo
train
go
57edcb8628843e863245b6ae3442e2c9f8792040
diff --git a/src/components/component.js b/src/components/component.js index <HASH>..<HASH> 100644 --- a/src/components/component.js +++ b/src/components/component.js @@ -12,7 +12,7 @@ const md = require('../markdown'); module.exports = class Component { - constructor(props) { + constructor(props, asset...
feat(assets): give components access to their assets
frctl_fractal
train
js
f3c339b2d63d5ed04ebf9c75f6076146fad3bb33
diff --git a/lib/workers/repository/extract/index.js b/lib/workers/repository/extract/index.js index <HASH>..<HASH> 100644 --- a/lib/workers/repository/extract/index.js +++ b/lib/workers/repository/extract/index.js @@ -13,7 +13,7 @@ async function extractAllDependencies(config) { const managerConfig = getManagerCo...
fix: check packageFiles before length
renovatebot_renovate
train
js
514593fdc0ff4fa694b5e00a2e04c88e461eec5b
diff --git a/vyper/ast/nodes.py b/vyper/ast/nodes.py index <HASH>..<HASH> 100644 --- a/vyper/ast/nodes.py +++ b/vyper/ast/nodes.py @@ -1,4 +1,5 @@ import ast as python_ast +import copy import decimal import operator import sys @@ -55,6 +56,13 @@ def get_node( if not isinstance(ast_struct, dict): ast_s...
fix: ast.AST node corruption (#<I>) in IPython, if an exception is thrown, apparently certain AST nodes can get annotated with a `.parent` member. this later collides with the `parent=` kwargs when constructing vyper nodes.
ethereum_vyper
train
py
6f22d5ade48f0d97990cbe69d956da122f2f8358
diff --git a/lib/protractor.js b/lib/protractor.js index <HASH>..<HASH> 100644 --- a/lib/protractor.js +++ b/lib/protractor.js @@ -19,7 +19,6 @@ var ExpectedConditions = require('./expectedConditions').ExpectedConditions; /* global angular */ var DEFER_LABEL = 'NG_DEFER_BOOTSTRAP!'; -var ENABLE_DEBUG_INFO_LABEL = '...
fix(bootstrap): fix bootstrap for older versions of angular Trying to use the debug label for window.name fails for versions of angular older than <I>. See #<I>
angular_protractor
train
js
7b46359c724ecd65f3d6d5cf7b8e5a2b457b5905
diff --git a/dirsync/run.py b/dirsync/run.py index <HASH>..<HASH> 100644 --- a/dirsync/run.py +++ b/dirsync/run.py @@ -28,8 +28,8 @@ def from_cmdline(): user_cfg_file = os.path.expanduser(USER_CFG_FILE) if not os.path.isfile(user_cfg_file): print('Creating user config file "%s" ...' % user_cfg_file...
fix(options): fix initial options file write
tkhyn_dirsync
train
py
8937e1243f82dfac5b8f23653f8ceb81516ac3ea
diff --git a/packages/mdc-select/addon/components/mdc-select.js b/packages/mdc-select/addon/components/mdc-select.js index <HASH>..<HASH> 100644 --- a/packages/mdc-select/addon/components/mdc-select.js +++ b/packages/mdc-select/addon/components/mdc-select.js @@ -111,7 +111,7 @@ export default class MdcSelectComponent e...
fix: failed to update select if option was a scalar value
onehilltech_ember-cli-mdc
train
js
ce2baee4d66e1492266647931e308ffe2ed2a0b5
diff --git a/pkger/service_test.go b/pkger/service_test.go index <HASH>..<HASH> 100644 --- a/pkger/service_test.go +++ b/pkger/service_test.go @@ -2666,6 +2666,9 @@ func TestService(t *testing.T) { sum := newPkg.Summary() teles := sum.TelegrafConfigs + sort.Slice(teles, func(i, j int) bool { + re...
chore(pkger): make export test assertions deterministic
influxdata_influxdb
train
go
e817e61bf35c4563f217ee537068cd2baca7a23b
diff --git a/tests/test_barrier.py b/tests/test_barrier.py index <HASH>..<HASH> 100644 --- a/tests/test_barrier.py +++ b/tests/test_barrier.py @@ -11,7 +11,7 @@ def test_barrier(backend, rate_limiter_backends): backend = rate_limiter_backends[backend] # Given that I have a barrier of two parties - barrie...
fix(tests): drop _ from numbers for py<I>
Bogdanp_dramatiq
train
py
db1bba00bdd052ebc3cd8771489612be7ab58883
diff --git a/pkg/synthetictests/networking.go b/pkg/synthetictests/networking.go index <HASH>..<HASH> 100644 --- a/pkg/synthetictests/networking.go +++ b/pkg/synthetictests/networking.go @@ -38,6 +38,10 @@ func testPodSandboxCreation(events monitorapi.Intervals) []*ginkgo.JUnitTestCase if !strings.Contains(event.Mes...
test: Report FailedCreatePodSandBox for multus -> API as known issue Instead of failing, report the bug that corresponds to temporary failure to contact the API server (lack of resiliency).
openshift_origin
train
go
43a681cc3c0630526e59eac02d8ffa3c85f9516a
diff --git a/build/webpack.config.js b/build/webpack.config.js index <HASH>..<HASH> 100644 --- a/build/webpack.config.js +++ b/build/webpack.config.js @@ -5,7 +5,7 @@ const _ = require('lodash') const { argv } = require('yargs') const { paths } = config -const { __BASE__, __DEV__, __TEST__ } = config.compiler_globa...
fix(webpack): remove unused const
Semantic-Org_Semantic-UI-React
train
js
ca8485777dcf3fa67b287c6dd698af76f340537a
diff --git a/src/Dispatcher.php b/src/Dispatcher.php index <HASH>..<HASH> 100644 --- a/src/Dispatcher.php +++ b/src/Dispatcher.php @@ -56,7 +56,7 @@ class Dispatcher $this->rootEvent->getType()->getTree(), [], $route->getRealArgs(), - $route->cntRealArgs...
fix: max depth take into account routing dir is starting point
Koudela_eArc-router
train
php
07fdacde57218d635b3fa6eb6b5d5e28784d6c8a
diff --git a/lib/link.js b/lib/link.js index <HASH>..<HASH> 100644 --- a/lib/link.js +++ b/lib/link.js @@ -185,13 +185,12 @@ Link.prototype.addCredits = function(credits, flowOptions) { var self = this; return new Promise(function(resolve, reject) { + var onError = function(err) { reject(err); }; + self.o...
fix(link-addCredits): remove listener on resolve for addCredits
noodlefrenzy_node-amqp10
train
js
31125295a48ded450c74238a5afb25a4e4fadf98
diff --git a/pkg/test/fetcher.go b/pkg/test/fetcher.go index <HASH>..<HASH> 100644 --- a/pkg/test/fetcher.go +++ b/pkg/test/fetcher.go @@ -56,9 +56,12 @@ func (tf *Fetcher) AddBlob(b *Blob) { tf.m = make(map[string]*Blob) } key := b.BlobRef().String() + _, had := tf.m[key] tf.m[key] = b - tf.sorted = append(tf...
test: fix enumerate bug in in-memory storage when double-uploaded Change-Id: I7e6abb1c9dfc<I>f<I>fa9d<I>bf7aeb<I>b6b<I>
perkeep_perkeep
train
go
d366f7b4f755cb04c8ba70427110e7cecf092559
diff --git a/jest.config.js b/jest.config.js index <HASH>..<HASH> 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,3 +1,9 @@ module.exports = { testPathIgnorePatterns: ['/node_modules/', '/packages/'], + collectCoverageFrom: [ + 'src/**/*.{js,jsx,ts,tsx,vue}', + '!**/demo/**', + '!**/test/**', + ...
chore: should not collect coverage from lang config files
youzan_vant
train
js
79b13e764de4be0a48874b6274935720da859449
diff --git a/core/poi/lib/webpack/webpack.config.js b/core/poi/lib/webpack/webpack.config.js index <HASH>..<HASH> 100644 --- a/core/poi/lib/webpack/webpack.config.js +++ b/core/poi/lib/webpack/webpack.config.js @@ -45,7 +45,15 @@ module.exports = (config, api) => { config.merge({ entry: webpackEntry }) /** Set ...
fix: include .wasm .mjs in resolve.extensions, closes #<I>
egoist_poi
train
js
1cd87058d41eb9c1f4dd617ab652fe12bd05648f
diff --git a/deezer/client.py b/deezer/client.py index <HASH>..<HASH> 100644 --- a/deezer/client.py +++ b/deezer/client.py @@ -188,9 +188,7 @@ class Client: json = response.json() if "error" in json: raise ValueError( - "API request return error for object: {} id: {}".forma...
refactor: convert string formatting to f-strings
browniebroke_deezer-python
train
py
4db497b49696d4118f3cda06a244092c1a49fd17
diff --git a/packages/netlify-cms-core/src/components/Editor/EditorControlPane/Widget.js b/packages/netlify-cms-core/src/components/Editor/EditorControlPane/Widget.js index <HASH>..<HASH> 100644 --- a/packages/netlify-cms-core/src/components/Editor/EditorControlPane/Widget.js +++ b/packages/netlify-cms-core/src/compone...
fix: broken preview (#<I>)
netlify_netlify-cms
train
js
ee34ce23ca3b0e0849e612fde515344a4b47fa17
diff --git a/BigQuery/src/Connection/Rest.php b/BigQuery/src/Connection/Rest.php index <HASH>..<HASH> 100644 --- a/BigQuery/src/Connection/Rest.php +++ b/BigQuery/src/Connection/Rest.php @@ -41,7 +41,7 @@ class Rest implements ConnectionInterface */ const BASE_URI = 'https://www.googleapis.com/bigquery/v2/';...
feat: Update BigQuery's default endpoint (#<I>)
googleapis_google-cloud-php
train
php
80a11b19c85eefa684c0f2a037714a9991d7f0c9
diff --git a/test/common/run-e2e.js b/test/common/run-e2e.js index <HASH>..<HASH> 100644 --- a/test/common/run-e2e.js +++ b/test/common/run-e2e.js @@ -3,6 +3,8 @@ import util from 'util'; import child_process from 'child_process'; import { Hub } from '../../src'; +const MOCK_RESPONSE = '01234567'.repeat(256); + le...
test: enlarge mock server response length
blinksocks_blinksocks
train
js
750b03a22fad2f5efd0473a5235b3c0e1be31015
diff --git a/packages/babel-plugin-transform-optional-chaining/src/index.js b/packages/babel-plugin-transform-optional-chaining/src/index.js index <HASH>..<HASH> 100644 --- a/packages/babel-plugin-transform-optional-chaining/src/index.js +++ b/packages/babel-plugin-transform-optional-chaining/src/index.js @@ -1,14 +1,1...
refactor: use WeakSet to keep track of transformed nodes
babel_babel
train
js
5985942d474b0978746f52c94ca25116d314da68
diff --git a/scripts/start.js b/scripts/start.js index <HASH>..<HASH> 100644 --- a/scripts/start.js +++ b/scripts/start.js @@ -15,13 +15,14 @@ const devServer = new WebpackDevServer(compiler, { allowedHosts: hosts }); -devServer.listen(port, (err, result) => { +devServer.listen(port, '127.0.0.1', (err, result) =>...
fix(start): Fix dev server callback (#<I>) We were missing the hostname argument, which meant that the dev server callback wasn't running. This change has been tested with custom hostnames and it works, even though it's set to <I>, which they use in their example.
seek-oss_sku
train
js
3fe62fa789f5ac132c3b4c8fab22e2b3eec054ae
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -34,7 +34,9 @@ quest.stream = function(url, headers) { err.args = [url, headers] thru.error = err - const req = quest('GET', url, headers) + const req = url instanceof http.OutgoingMessage + ? url : quest('GET', u...
feat: support passing an http.OutgoingMessage to `stream`, `fetch`, or `json`
aleclarson_quest
train
js
aa4ed1b8c57d1149288f9cf5d131fc1b89dfe0e9
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -205,6 +205,7 @@ gulp.task('clean', function (done) { // Release gulp.task('release', function (done) { + gulp.src(['.git/**/*']).pipe(gulp.dest('dist/.git')); proc.exec('$(npm bin)/semantic-release', funct...
fix(release): copy over git repo in order for sem-rel to process
fabric8-ui_fabric8-planner
train
js
5b91b285291651d0b6a167a52ff09e9a3b5d431a
diff --git a/packages/xod-pm/test-func/fetch.spec.js b/packages/xod-pm/test-func/fetch.spec.js index <HASH>..<HASH> 100644 --- a/packages/xod-pm/test-func/fetch.spec.js +++ b/packages/xod-pm/test-func/fetch.spec.js @@ -80,16 +80,15 @@ describe('fetching data', () => { }); describe('fetchLibsWithDependencies()',...
chore(xod-pm): update expected deps list in func tests It changed after publishing stdlib for version <I>
xodio_xod
train
js
f9b63f850c945b53f1a1251ce794a0c80ec8dc70
diff --git a/integration/route_services_test.go b/integration/route_services_test.go index <HASH>..<HASH> 100644 --- a/integration/route_services_test.go +++ b/integration/route_services_test.go @@ -60,8 +60,8 @@ var _ = Describe("Route services", func() { req.Header.Add("X-Cf-Proxy-Signature", sigHeader) ...
fix: test * close body only if request was successful
cloudfoundry_gorouter
train
go
fa8960548d123b217bb98824c6655e9f580aafe6
diff --git a/packages/dva-core/src/index.js b/packages/dva-core/src/index.js index <HASH>..<HASH> 100644 --- a/packages/dva-core/src/index.js +++ b/packages/dva-core/src/index.js @@ -73,14 +73,12 @@ export function create(hooksAndOpts = {}, createOpts = {}) { m = model(m); const store = app._store; - if ...
fix(dva-core): model without reducers will lose state after it's injected
dvajs_dva
train
js
701816e6c9926e5f2eaa06b1e87fb03fd4d0386e
diff --git a/topologies/server.js b/topologies/server.js index <HASH>..<HASH> 100644 --- a/topologies/server.js +++ b/topologies/server.js @@ -266,7 +266,12 @@ function configureWireProtocolHandler(self, ismaster) { function disconnectHandler(self, type, ns, cmd, options, callback) { // Topology is not connected, s...
fix(server): avoid waiting for reconnect if reconnect disabled
mongodb_node-mongodb-native
train
js
61408349cd1453767fd14d810b6deca87ba60761
diff --git a/www/src/examples/Form/GridComplex.js b/www/src/examples/Form/GridComplex.js index <HASH>..<HASH> 100644 --- a/www/src/examples/Form/GridComplex.js +++ b/www/src/examples/Form/GridComplex.js @@ -29,7 +29,7 @@ <Form.Group as={Col} controlId="formGridState"> <Form.Label>State</Form.Label> - ...
docs: add example for preselecting option select (#<I>)
react-bootstrap_react-bootstrap
train
js
eec289b6d61bf6019c7a4b653432d21d6baecc9e
diff --git a/src/raven.js b/src/raven.js index <HASH>..<HASH> 100644 --- a/src/raven.js +++ b/src/raven.js @@ -1280,15 +1280,15 @@ Raven.prototype = { status_code: null }; - self.captureBreadcrumb({ - type: 'http', - category: 'fetch', - da...
fix: Call captureBreadcrumb for fetch after its done (#<I>)
getsentry_sentry-javascript
train
js
bd01821bebec28d65b7513b8a798a7a2cf5b951f
diff --git a/lib/DataDragon/DataDragonHelper.js b/lib/DataDragon/DataDragonHelper.js index <HASH>..<HASH> 100644 --- a/lib/DataDragon/DataDragonHelper.js +++ b/lib/DataDragon/DataDragonHelper.js @@ -422,10 +422,16 @@ class DataDragonHelper { } static gettingMasteryList(ddV, locale) { + if(ddV.indexOf('7.24.') >=...
refactor(DdragonHelper): use <I> for masteries/runes in case <I> is given Convenience in case condition for runesReforged is missing <I>
Colorfulstan_LeagueJS
train
js
199b727cce51333c512e10562908cde3cbc44e78
diff --git a/src/yaku.js b/src/yaku.js index <HASH>..<HASH> 100644 --- a/src/yaku.js +++ b/src/yaku.js @@ -84,7 +84,7 @@ } }; - Yaku.prototype = { + extendPrototype(Yaku, { /** * Appends fulfillment and rejection handlers to the promise, * and returns a new promise res...
fix: #<I> don't overwrite the prototype
ysmood_yaku
train
js
107eacb7a27f6ac05304f40d47ac8c250061b931
diff --git a/src/plugins/sqlite.js b/src/plugins/sqlite.js index <HASH>..<HASH> 100644 --- a/src/plugins/sqlite.js +++ b/src/plugins/sqlite.js @@ -6,8 +6,9 @@ angular.module('ngCordova.plugins.sqlite', []) .factory('$cordovaSQLite', ['$q', function ($q) { return { - openDB: function (dbName) { - ...
fix(sqlite): refractor openDB() + added deleteDB()
ionic-team_ng-cordova
train
js
1357ba9e6eb46163350e1102f366c0c2c0e33a97
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -18,7 +18,7 @@ import Acl from 'browser-acl' * @param {Function} userAccessor * @param {Function|Object} setupCallback A configured Acl instance of a callback * @param {Object} options={} - * @param {Boolean} [options.di...
fix: Corrects directive name and helper function name
mblarsen_vue-browser-acl
train
js
bf5926d0878a2d18c6b7b6e1b41ea504f1f0a281
diff --git a/src/dna-helper.next.js b/src/dna-helper.next.js index <HASH>..<HASH> 100644 --- a/src/dna-helper.next.js +++ b/src/dna-helper.next.js @@ -41,6 +41,8 @@ export class DNAHelper { } } else { options.prototype = fn; + fn = function () { options.prototype.constructo...
fix(DNAHelpers): fix registration when options.prototype is an object
chialab_dna
train
js
050a257ce8178a368e109b88f7eb7ddbf4b5d372
diff --git a/tusclient/uploader.py b/tusclient/uploader.py index <HASH>..<HASH> 100644 --- a/tusclient/uploader.py +++ b/tusclient/uploader.py @@ -4,7 +4,7 @@ import re from base64 import b64encode import time -from six import iteritems, b +from six import iteritems, b, wraps import requests from tusclient.exce...
fix: retain docstrings after decoration
tus_tus-py-client
train
py
557b050a88ebc02f45d703182cb54566ee7b3a71
diff --git a/packages/cli-plugin-workspaces/commands/run.js b/packages/cli-plugin-workspaces/commands/run.js index <HASH>..<HASH> 100644 --- a/packages/cli-plugin-workspaces/commands/run.js +++ b/packages/cli-plugin-workspaces/commands/run.js @@ -88,10 +88,10 @@ module.exports = async (inputs, context) => { } ...
fix: add "..." at the end of the info message
Webiny_webiny-js
train
js
736236fa93be87fa7ca33be8e5b305d91f48b666
diff --git a/deis/__init__.py b/deis/__init__.py index <HASH>..<HASH> 100644 --- a/deis/__init__.py +++ b/deis/__init__.py @@ -9,4 +9,4 @@ from __future__ import absolute_import from .celery import app # noqa -__version__ = '0.12.0' +__version__ = '0.12.0-dev'
feat(version): add -dev flag for unversioned releases This helps clear some confusion on the current version of Deis users are currently working with. [skip ci]
deis_controller-sdk-go
train
py
4f45b723812d3de5f6d574977fdebb82f22d5a82
diff --git a/build/zip.py b/build/zip.py index <HASH>..<HASH> 100644 --- a/build/zip.py +++ b/build/zip.py @@ -10,7 +10,6 @@ EXTENSIONS_TO_SKIP = [ PATHS_TO_SKIP = [ 'angledata', #Skipping because it is an output of //ui/gl that we don't need - 'swiftshader', #Skipping because it is an output of //ui/gl that we ...
fix: package swiftshader binaries (#<I>)
electron_electron
train
py
82e7fb8b931ce889a92be94f48216548a9a45be9
diff --git a/tooling/lib/version.js b/tooling/lib/version.js index <HASH>..<HASH> 100644 --- a/tooling/lib/version.js +++ b/tooling/lib/version.js @@ -115,12 +115,14 @@ async function hasBreakingChange() { */ async function getChangeType() { const subjects = await exec(`git log upstream/master.. --format=%s`); - ...
fix(tooling): detect change type with startsWith instead of regex
webex_spark-js-sdk
train
js
bbe9cf5597f31f451a000830926829d94b0c615a
diff --git a/task/init/index.js b/task/init/index.js index <HASH>..<HASH> 100644 --- a/task/init/index.js +++ b/task/init/index.js @@ -53,12 +53,7 @@ function getGraph (graphPath) { console.error(chalk.red('! npm-shrinkwrap.json is missing, create it using `npm shrinkwrap --dev` then try again')); process.exi...
fix(shrinkpack): don't quit if repo is already shrinkpacked refs #<I>
JamieMason_shrinkpack
train
js
4a8c0e4c184774230a3fc9f2b74a6019dcedd657
diff --git a/src/Factories/Entity/AbstractEntity.php b/src/Factories/Entity/AbstractEntity.php index <HASH>..<HASH> 100644 --- a/src/Factories/Entity/AbstractEntity.php +++ b/src/Factories/Entity/AbstractEntity.php @@ -82,8 +82,11 @@ abstract class AbstractEntity $this->$property = $value; + + // Pa...
fix: need to also check that the first element is an object when we get an array, we want to try to instantiate an entity but we need to be sure that the first element inside the array is an object
benmag_laravel-rancher
train
php
bbdca48cdb68d65895f5cfe81fb1fba1271083ef
diff --git a/script/run-clang-format.py b/script/run-clang-format.py index <HASH>..<HASH> 100644 --- a/script/run-clang-format.py +++ b/script/run-clang-format.py @@ -15,6 +15,7 @@ import fnmatch import io import multiprocessing import os +import posixpath import signal import subprocess import sys @@ -135,6 +136...
fix: output Unix-style paths for git diffs on Win (#<I>)
electron_electron
train
py
ff747a0773462b0de62f55538897640836e36b13
diff --git a/providers/actionMutationsProvider.js b/providers/actionMutationsProvider.js index <HASH>..<HASH> 100644 --- a/providers/actionMutationsProvider.js +++ b/providers/actionMutationsProvider.js @@ -12,6 +12,7 @@ function wrapMutators (target, mutators, action, rootPath) { var args = [].slice.call(argu...
fix(debugger): mutation needs a datetime for debugger to sort them in correct order (#<I>)
cerebral_cerebral
train
js
8fdc86b4148ed712c2067066e4a4788287b6334d
diff --git a/google-cloud-storage/samples/acceptance/files_test.rb b/google-cloud-storage/samples/acceptance/files_test.rb index <HASH>..<HASH> 100644 --- a/google-cloud-storage/samples/acceptance/files_test.rb +++ b/google-cloud-storage/samples/acceptance/files_test.rb @@ -224,6 +224,7 @@ describe "Files Snippets" do ...
docs(storage): Add custom time to file metadata sample pr #<I>
googleapis_google-cloud-ruby
train
rb,rb
de0ff11c4c4677e3a046a11ea07dfc056fb70cc1
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -75,6 +75,8 @@ module.exports = async function processTests(testCases, opts) { async function remindAboutIssue() { const passedDays = moment().diff(ghIssue.updated_at, 'days', true); if...
feat: disable issue reminders when issue.remind is false
MailOnline_tap-github-issues
train
js
a681c6139c5b504a481dcd341654d8f9446fce73
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -10,7 +10,7 @@ export default { "3.1.2.全角文字どうし": require("./3.1.2"), "3.3.かっこ類と隣接する文字の間のスペースの有無": require("./3.3"), "4.1.1.句点(。)": require("./4.1.1"), - "4.1.3. ピリオド(.)、カンマ(,)"...
fix(rule):remove space
textlint-ja_textlint-rule-preset-JTF-style
train
js
80946a1ee5bd99e0c862bb3d7085f9e92c84091e
diff --git a/src/__tests__/index.spec.js b/src/__tests__/index.spec.js index <HASH>..<HASH> 100644 --- a/src/__tests__/index.spec.js +++ b/src/__tests__/index.spec.js @@ -211,6 +211,16 @@ describe('tiny-di', function() { expect(clazz instanceof ClassFake).toEqual(true); }); + describe('load', () => { + it...
feat(load): load() can now initialize a function You can now pass a function to load, it will inject the deps and return the result.
ds82_tiny-di
train
js,js
919463e651f8c2b4eba2b3dac4b47c916b41272e
diff --git a/annoying/fields.py b/annoying/fields.py index <HASH>..<HASH> 100644 --- a/annoying/fields.py +++ b/annoying/fields.py @@ -110,6 +110,9 @@ class JSONField(JSONFieldBase): """ def to_python(self, value): + """ + Convert a string from the database to a Python value. + """ ...
fix: Fix persisting data to strings for the JSONField after a Django <I> change.
skorokithakis_django-annoying
train
py
ab7ff52820490ec4639954c82c8c031c886fc34f
diff --git a/test/k8sT/Services.go b/test/k8sT/Services.go index <HASH>..<HASH> 100644 --- a/test/k8sT/Services.go +++ b/test/k8sT/Services.go @@ -769,7 +769,6 @@ Secondary Interface %s :: IPv4: (%s, %s), IPv6: (%s, %s)`, AfterAll(func() { res := kubectl.DelIPRoute(ni.OutsideNodeName, svcIP, ni.K8s1IP) Ex...
test: Don't redeploy in AfterAll of K8sServices test case There is no need to redeploy Cilium in AfterAll of the "With ClusterIP external access" test suite, as the next test case will deploy it anyway. It should improve the K8sServices test suite run time by a bit.
cilium_cilium
train
go
6793910473ddebf40ccb85effa6a4633c98c06de
diff --git a/packages/xod-project/src/extractBoundInputsToConstNodes.js b/packages/xod-project/src/extractBoundInputsToConstNodes.js index <HASH>..<HASH> 100644 --- a/packages/xod-project/src/extractBoundInputsToConstNodes.js +++ b/packages/xod-project/src/extractBoundInputsToConstNodes.js @@ -290,7 +290,7 @@ const ext...
fix(xod-project): dont forget autogenerated patches when extracting bound inputs Fixes #<I>
xodio_xod
train
js
6bac4e4c340f6ab8f722224fef2763b09664a85c
diff --git a/packages/build-tools/tasks/webpack-tasks.js b/packages/build-tools/tasks/webpack-tasks.js index <HASH>..<HASH> 100644 --- a/packages/build-tools/tasks/webpack-tasks.js +++ b/packages/build-tools/tasks/webpack-tasks.js @@ -89,7 +89,6 @@ async function server(customWebpackConfig) { ui: false, ...
chore(micro-journeys): revert tunnel:true in browserSync config
bolt-design-system_bolt
train
js
917bb304b002548e2512f3f54f975ae469213f72
diff --git a/packages/api/server/request.js b/packages/api/server/request.js index <HASH>..<HASH> 100644 --- a/packages/api/server/request.js +++ b/packages/api/server/request.js @@ -92,7 +92,7 @@ class Request { method: 'send', body: { error: 'Not found.', - reason: `` + reason...
fix(api): Add more informative error reason on <I>.
cubic-js_cubic
train
js
eb2ff88747c51311e1ebe3b38ac92d903718721c
diff --git a/pipeline/snapcraft/snapcraft.go b/pipeline/snapcraft/snapcraft.go index <HASH>..<HASH> 100644 --- a/pipeline/snapcraft/snapcraft.go +++ b/pipeline/snapcraft/snapcraft.go @@ -83,15 +83,20 @@ func (Pipe) Run(ctx *context.Context) error { } var g errgroup.Group + sem := make(chan bool, ctx.Parallelism) ...
fix: snapcraft: respect parallelism
goreleaser_goreleaser
train
go
a289f1fc246a2841393f308f7a29450b867a1b2d
diff --git a/aws/resource_aws_cloudwatch_event_archive_test.go b/aws/resource_aws_cloudwatch_event_archive_test.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_cloudwatch_event_archive_test.go +++ b/aws/resource_aws_cloudwatch_event_archive_test.go @@ -140,7 +140,7 @@ func TestAccAWSCloudWatchEventArchive_disappe...
fix: testacc disappears use correct Config
terraform-providers_terraform-provider-aws
train
go
d247d1de3b1e3d7669f8bb7a0577db1b0bd8d2de
diff --git a/ci/rename_wheels.py b/ci/rename_wheels.py index <HASH>..<HASH> 100644 --- a/ci/rename_wheels.py +++ b/ci/rename_wheels.py @@ -5,7 +5,7 @@ import shutil if __name__ == "__main__": # auditwheel will try to vendor cublas/cudart/curand etc - which makes the - # packagae unacceptably large. instead o...
docs: Fix a few typos (#<I>) There are small typos in: - ci/rename_wheels.py - examples/lastfm.py Fixes: - Should read `package` rather than `packagae`. - Should read `automatically` rather than `automically`.
benfred_implicit
train
py,py
4ad9ab2f4bb124334dfd1cb293c4a599a4b80bc6
diff --git a/src/rules/variables.js b/src/rules/variables.js index <HASH>..<HASH> 100644 --- a/src/rules/variables.js +++ b/src/rules/variables.js @@ -3,7 +3,7 @@ */ export default { rules: { - 'init-declarations': [2, 'never'], + 'init-declarations': [2, 'always'], 'no-catch-shadow': 0, 'no-delet...
feat: change init-declarations from "never" to "always"
kapanlagi-network_eslint-config-kln
train
js
1367745579d8899d1966e87bd3d72f30f1aa5899
diff --git a/config/webpack/webpack.config.js b/config/webpack/webpack.config.js index <HASH>..<HASH> 100644 --- a/config/webpack/webpack.config.js +++ b/config/webpack/webpack.config.js @@ -37,8 +37,16 @@ const makeWebpackConfig = ({ } = {}) => { const { isProductionBuild } = utils; const webpackMode = isProduc...
fix(storybook): Disable HTML rendering for storybook (#<I>)
seek-oss_sku
train
js
1957cb172241511e2cf9ca3422562003c59f4f5f
diff --git a/packages/article-extras/src/article-topics/styles/responsive.web.js b/packages/article-extras/src/article-topics/styles/responsive.web.js index <HASH>..<HASH> 100644 --- a/packages/article-extras/src/article-topics/styles/responsive.web.js +++ b/packages/article-extras/src/article-topics/styles/responsive....
fix: change share-save-bar and topic-links width (#<I>)
newsuk_times-components
train
js,js
722d87365d050e4bef1c749e1f36663629013d5a
diff --git a/packages/app-forms/src/components/Form/functions/onFormMounted.js b/packages/app-forms/src/components/Form/functions/onFormMounted.js index <HASH>..<HASH> 100644 --- a/packages/app-forms/src/components/Form/functions/onFormMounted.js +++ b/packages/app-forms/src/components/Form/functions/onFormMounted.js @...
fix: set "1" instead of undefined
Webiny_webiny-js
train
js
6a41cb6a31797a5e6cd5ccf575549848efe7fe40
diff --git a/lib/cmap/connection_pool.js b/lib/cmap/connection_pool.js index <HASH>..<HASH> 100644 --- a/lib/cmap/connection_pool.js +++ b/lib/cmap/connection_pool.js @@ -334,6 +334,10 @@ class ConnectionPool extends EventEmitter { } function ensureMinPoolSize(pool) { + if (pool.closed) { + return; + } + co...
refactor: ensure connections are destroyed if pool was closed If a pool was closed sometime before a cancellation token could be called, and `connect` successfully calls back, we need to ensure that those connections are destroyed as well.
mongodb_node-mongodb-native
train
js
ed5406d6765acb8f5631d0bfccef6c0e07a539fe
diff --git a/test/e2e/https.test.js b/test/e2e/https.test.js index <HASH>..<HASH> 100644 --- a/test/e2e/https.test.js +++ b/test/e2e/https.test.js @@ -59,6 +59,7 @@ describe("https option", () => { }); afterEach(async () => { + utilSpy.mockRestore(); await browser.close(); await server.st...
test: clear mock after usage (#<I>)
webpack_webpack-dev-server
train
js
78e68ec5f414f0614251e7249d2e9191ea42bde6
diff --git a/packages/vaex-core/vaex/multithreading.py b/packages/vaex-core/vaex/multithreading.py index <HASH>..<HASH> 100644 --- a/packages/vaex-core/vaex/multithreading.py +++ b/packages/vaex-core/vaex/multithreading.py @@ -49,7 +49,7 @@ class ThreadPoolIndex(concurrent.futures.ThreadPoolExecutor): values =...
fix: progress bar can use too much cpu usage if called <I>x per second
vaexio_vaex
train
py
da1f13be33c37b33114494ae3f6a61c576cdb7bc
diff --git a/lib/client.js b/lib/client.js index <HASH>..<HASH> 100644 --- a/lib/client.js +++ b/lib/client.js @@ -443,10 +443,13 @@ class Parser extends HTTPParser { const m = headers['keep-alive'].match(/timeout=(\d+)/) if (m) { const timeout = Number(m[1]) * 1000 - // Set timeout to 1 s...
fix: keep alive 0s means reset
mcollina_undici
train
js
f788b7b83c07ed1dcb87f039aacacf4a396fc66c
diff --git a/bin/cheminfo-publish.js b/bin/cheminfo-publish.js index <HASH>..<HASH> 100755 --- a/bin/cheminfo-publish.js +++ b/bin/cheminfo-publish.js @@ -263,7 +263,8 @@ function *generateDoc() { })).c; } if (wantsDoc) { - yield child_process.exec('documentation build --github --output doc --...
fix(publish): use correct path to exec documentation
cheminfo_tools
train
js
fe3ad87e27cd0ffb639fa244c90b89a440accaf4
diff --git a/packages/functionals/botpress-hitl/src/db.js b/packages/functionals/botpress-hitl/src/db.js index <HASH>..<HASH> 100755 --- a/packages/functionals/botpress-hitl/src/db.js +++ b/packages/functionals/botpress-hitl/src/db.js @@ -9,6 +9,16 @@ function initialize() { throw new Error('you must initialize th...
fix(hitl): made text column longer (resolve #<I>)
botpress_botpress
train
js
1a794f5f34912650fd3e0ddd2866edb6d36cdaec
diff --git a/build/tasks/make-modules.js b/build/tasks/make-modules.js index <HASH>..<HASH> 100644 --- a/build/tasks/make-modules.js +++ b/build/tasks/make-modules.js @@ -75,6 +75,12 @@ function prepareOpentestModuleFiles() { path.join(opentestModuleSourceDir, 'opentest.js'), opentestModuleDir); ...
fix(cli): build process is not copying all necessary files
mcdcorp_opentest
train
js
518f3d226623618b96892f7e763637decdcf5104
diff --git a/src/utilities/behaviors/JointCollisionEvents.js b/src/utilities/behaviors/JointCollisionEvents.js index <HASH>..<HASH> 100644 --- a/src/utilities/behaviors/JointCollisionEvents.js +++ b/src/utilities/behaviors/JointCollisionEvents.js @@ -153,8 +153,8 @@ class JointCollisionEvents extends Behavior else i...
fix(js): fix undefined values in JointCollision behavior
AltspaceVR_AltspaceSDK
train
js