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
6d3bcf8cc052768e0ffb850c622ab409c9a816c1
diff --git a/app/src/components/CalibrationPanels/SaveZPoint.js b/app/src/components/CalibrationPanels/SaveZPoint.js index <HASH>..<HASH> 100644 --- a/app/src/components/CalibrationPanels/SaveZPoint.js +++ b/app/src/components/CalibrationPanels/SaveZPoint.js @@ -113,7 +113,7 @@ export function SaveZPoint(props: Calibra...
refactor(app): fix spacing in constant in SaveZPoint (#<I>) Fix a spacing issue in a constant that would cause the panel to display "the deck inslot 5"
Opentrons_opentrons
train
js
68998c48936563a5ba6a97f7f483343cc21221a4
diff --git a/packages/router5/modules/core/observable.js b/packages/router5/modules/core/observable.js index <HASH>..<HASH> 100644 --- a/packages/router5/modules/core/observable.js +++ b/packages/router5/modules/core/observable.js @@ -11,7 +11,9 @@ function observerPlugin(router) { function subscribe(listener) {...
refactor: improve observable interoperability
router5_router5
train
js
7617279f68507642fdc7eb0083916f3c6c2a28cb
diff --git a/lib/file-list.js b/lib/file-list.js index <HASH>..<HASH> 100644 --- a/lib/file-list.js +++ b/lib/file-list.js @@ -29,7 +29,8 @@ class FileList { this.buckets = new Map() - this._refreshing = Promise.resolve() + // A promise that is pending if and only if we are active in this.refresh_() + ...
refactor(filelist): rename promise -> lastCompletedRefresh and remove unused promise (#<I>)
karma-runner_karma
train
js
65cea96afab525779e0c69c5a687e438867a09ca
diff --git a/lib/util/index.js b/lib/util/index.js index <HASH>..<HASH> 100644 --- a/lib/util/index.js +++ b/lib/util/index.js @@ -1393,8 +1393,8 @@ function transformReq(req, res, port, weinre) { if (port > 0) { options.port = port; } - if(req.clientIp) { - req.headers['x-forwarded-for'] = req.clientIp;...
fix: x-forwarded-for
avwo_whistle
train
js
96420b375d66b02b9ceea04ea28b56e62abbd80d
diff --git a/src/tables.js b/src/tables.js index <HASH>..<HASH> 100644 --- a/src/tables.js +++ b/src/tables.js @@ -6,10 +6,7 @@ function tableToSQL(tableInfo) { const { table, db, as, expr } = tableInfo const database = identifierToSql(db) let tableName = table && identifierToSql(table) - if (expr && expr.typ...
refactor: has parentheses
taozhi8833998_node-sql-parser
train
js
1656953bbeeaba00fd61fb6159347e47a4ab00a8
diff --git a/views/users.js b/views/users.js index <HASH>..<HASH> 100644 --- a/views/users.js +++ b/views/users.js @@ -59,7 +59,6 @@ module.exports = function (lvl) { res[key].name = row.value.name } else if (!res[key]) { res[key] = { - name: key.substring(0, 12...
fix: dont set name to key (let clients figure it out)
cabal-club_cabal-core
train
js
65e5b347f127e1e04e3e2740b36795d1a9d320d8
diff --git a/python/setup.py b/python/setup.py index <HASH>..<HASH> 100755 --- a/python/setup.py +++ b/python/setup.py @@ -109,7 +109,7 @@ if platform.system() == 'Darwin': setup( name='neuroglancer', - version='2.6', + version='2.7', description='Python data backend for neuroglancer, a WebGL-based v...
chore: bump Python package version to <I>
google_neuroglancer
train
py
ec03a16f446c021112fd0af605bba546fabd6fd3
diff --git a/packages/okam-core/src/base/base.js b/packages/okam-core/src/base/base.js index <HASH>..<HASH> 100644 --- a/packages/okam-core/src/base/base.js +++ b/packages/okam-core/src/base/base.js @@ -24,13 +24,6 @@ export default { $api: api, /** - * The global object - * - * @type {Object} -...
feat(okam-core): remove $global attribute in application page component context
ecomfe_okam
train
js
0c08779bdc12d94f7af70291e023708d55124667
diff --git a/intranet/apps/eighth/utils.py b/intranet/apps/eighth/utils.py index <HASH>..<HASH> 100644 --- a/intranet/apps/eighth/utils.py +++ b/intranet/apps/eighth/utils.py @@ -6,7 +6,7 @@ DATE_FORMAT = "%m-%d-%Y" def get_start_date(request): - if "start_date" in request.session: + if "start_date" in reque...
refactor(eighth): make start date expire daily
tjcsl_ion
train
py
2f85fde189663f91b76bbe3ca62e0516332aa7d4
diff --git a/test/integration/datatype/bigint.js b/test/integration/datatype/bigint.js index <HASH>..<HASH> 100644 --- a/test/integration/datatype/bigint.js +++ b/test/integration/datatype/bigint.js @@ -6,8 +6,8 @@ const { isMssql } = require('../../util/db-helpers'); module.exports = function (knex) { const bigint...
chore(tests): fix numbers to their actual values (#<I>)
tgriesser_knex
train
js
cc84268b9e730cdda5a5729dec75fc96fa2a3e46
diff --git a/packages/simplebar/src/scrollbar-width.js b/packages/simplebar/src/scrollbar-width.js index <HASH>..<HASH> 100644 --- a/packages/simplebar/src/scrollbar-width.js +++ b/packages/simplebar/src/scrollbar-width.js @@ -1,12 +1,14 @@ let cachedScrollbarWidth = null; let cachedDevicePixelRatio = null; -window...
fix: add window check before addEventListener In scrollbar-width, the code was doing window.addEventListener even when window was undefined. This broke simplebar in SSR environments.
Grsmto_simplebar
train
js
c294948e0923b0456fb62af5e3b51ca9141fd8ca
diff --git a/lib/ditty/helpers/component.rb b/lib/ditty/helpers/component.rb index <HASH>..<HASH> 100644 --- a/lib/ditty/helpers/component.rb +++ b/lib/ditty/helpers/component.rb @@ -2,6 +2,7 @@ require 'active_support' require 'active_support/inflector' +require 'will_paginate/array' module Ditty module Help...
fix: Ensure arrays can be paginated
EagerELK_ditty
train
rb
05cc999b69e8d7e60397c518f4e93acb58585d15
diff --git a/src/components/Search/Search.js b/src/components/Search/Search.js index <HASH>..<HASH> 100644 --- a/src/components/Search/Search.js +++ b/src/components/Search/Search.js @@ -33,8 +33,8 @@ export default class Search extends Component { }; static getDerivedStateFromProps({ value }, state) { - con...
fix(Search): remove empty state validation (#<I>)
carbon-design-system_carbon-components-react
train
js
2b423587c180b9cc5fa1d2c563c9b2edec36aea7
diff --git a/src/components/select/select.js b/src/components/select/select.js index <HASH>..<HASH> 100755 --- a/src/components/select/select.js +++ b/src/components/select/select.js @@ -1063,9 +1063,9 @@ function SelectProvider($$interimElementProvider) { transformOrigin = '50% 100%'; } } el...
fix(select): fix slight pixel miss-alignment on select open closes #<I>
angular_material
train
js
8e7f8df0a36159080e35a6bb5fd26d7d7adc8d34
diff --git a/packages/node_modules/@webex/plugin-meetings/src/meeting/index.js b/packages/node_modules/@webex/plugin-meetings/src/meeting/index.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/plugin-meetings/src/meeting/index.js +++ b/packages/node_modules/@webex/plugin-meetings/src/meeting/index.js @...
fix(plugin-meetings): delete meeting by id not cid
webex_spark-js-sdk
train
js
f3af165128db4fea430e948c5b4a8a28e19e6c89
diff --git a/src/Leevel/Console/Command.php b/src/Leevel/Console/Command.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Console/Command.php +++ b/src/Leevel/Console/Command.php @@ -173,7 +173,7 @@ abstract class Command extends SymfonyCommand * * @param string $key * - * @return array|string + ...
fix: option of console can return bool and do on Leevel\Console\Autoload
hunzhiwange_framework
train
php,php
9a2dd8faaab6276fb2a20d199e22c7ec5c237591
diff --git a/src/AssetFile.php b/src/AssetFile.php index <HASH>..<HASH> 100644 --- a/src/AssetFile.php +++ b/src/AssetFile.php @@ -81,11 +81,18 @@ class AssetFile public function getWidth() { $details = $this->getDetails(); - if (!isset($details['width'])) { + + if (!isset($details['ima...
fix(asset): fetch width+height from correct prop
usemarkup_contentful
train
php
4239a497b0f6e0d340f54c3b8cdd298b07a8c87b
diff --git a/ibis/tests/sql/test_select_sql.py b/ibis/tests/sql/test_select_sql.py index <HASH>..<HASH> 100644 --- a/ibis/tests/sql/test_select_sql.py +++ b/ibis/tests/sql/test_select_sql.py @@ -373,6 +373,7 @@ def test_no_aliases_needed(): assert not context.need_aliases() +@pytest.mark.skip def test_fuse_pr...
chore(test): temporarily skip failing test_fuse_projections
ibis-project_ibis
train
py
c6d86eff9561946fafdd90e448997186c32fcc2c
diff --git a/tests/integ/sagemaker/lineage/test_model_artifact.py b/tests/integ/sagemaker/lineage/test_model_artifact.py index <HASH>..<HASH> 100644 --- a/tests/integ/sagemaker/lineage/test_model_artifact.py +++ b/tests/integ/sagemaker/lineage/test_model_artifact.py @@ -30,6 +30,7 @@ def test_endpoints( assert...
fix: disable endpoint context test (#<I>)
aws_sagemaker-python-sdk
train
py
2b55bdec07d4be9b5981c247e3b3042c15f97914
diff --git a/app/src/pages/Calibrate/CalibrateTipLengthControl.js b/app/src/pages/Calibrate/CalibrateTipLengthControl.js index <HASH>..<HASH> 100644 --- a/app/src/pages/Calibrate/CalibrateTipLengthControl.js +++ b/app/src/pages/Calibrate/CalibrateTipLengthControl.js @@ -199,7 +199,7 @@ export function CalibrateTipLengt...
fix(app): ensure cal block prompt appears in pre protocol tlc (#<I>)
Opentrons_opentrons
train
js
5519607286874efc896625cd5855217b995cfede
diff --git a/src/app-router.js b/src/app-router.js index <HASH>..<HASH> 100644 --- a/src/app-router.js +++ b/src/app-router.js @@ -204,7 +204,7 @@ function resolveInstruction(instruction, result, isInnerInstruction, router) { function restorePreviousLocation(router) { let previousLocation = router.history.previousL...
fix(router): use replaceState when restoring previous locations following nav errors This fixes a problem where the errored route remains in browser history, but it's impossible to progress backwards past it because the error it causes restores the previous location, which is foward in history.
aurelia_router
train
js
7d974376b11a1986e7fc9818207a714f05e358ef
diff --git a/examples/with-module-federation/basic-1/razzle.config.js b/examples/with-module-federation/basic-1/razzle.config.js index <HASH>..<HASH> 100644 --- a/examples/with-module-federation/basic-1/razzle.config.js +++ b/examples/with-module-federation/basic-1/razzle.config.js @@ -22,7 +22,7 @@ module.exports = { ...
fix(example): made webpack context paths.appPath
jaredpalmer_razzle
train
js,js
a16fafd57fc472fa48cde6fb6e876a4d7ad2ccd3
diff --git a/playground/src/components/entry-point/entry-point.js b/playground/src/components/entry-point/entry-point.js index <HASH>..<HASH> 100644 --- a/playground/src/components/entry-point/entry-point.js +++ b/playground/src/components/entry-point/entry-point.js @@ -19,6 +19,9 @@ const AsyncChannels = Loadable({ ...
fix(playground): missing prop
commercetools_merchant-center-application-kit
train
js
8bbf311ef4caab442d1c3e5f12eebd8a7c4e541b
diff --git a/poetry/vcs/git.py b/poetry/vcs/git.py index <HASH>..<HASH> 100644 --- a/poetry/vcs/git.py +++ b/poetry/vcs/git.py @@ -229,7 +229,9 @@ class Git: folder.as_posix(), ] - args += ["rev-parse", rev] + # We need "^{commit}" to ensure that the commit SHA of the commi...
fix(git): get commit sha of git commit from annotated tags (#<I>) * fix(git): have annotated tags resolve to the commit sha * fix(git): fix quote * fix(git): change to rev-parse
sdispater_poetry
train
py
8d72e29dd1411a242453fbc7765fee4dd853fc79
diff --git a/src/components/Site/SiteHeader.react.js b/src/components/Site/SiteHeader.react.js index <HASH>..<HASH> 100644 --- a/src/components/Site/SiteHeader.react.js +++ b/src/components/Site/SiteHeader.react.js @@ -8,11 +8,11 @@ import type { Props as AccountDropdownProps } from "../AccountDropdown/AccountDr expor...
fix(SiteHeader): changing comments The comments for align and href were the wrong way around
tabler_tabler-react
train
js
9d7aa213771555f03a404a13b409ede9f12d6f11
diff --git a/lib/chunksorter.js b/lib/chunksorter.js index <HASH>..<HASH> 100644 --- a/lib/chunksorter.js +++ b/lib/chunksorter.js @@ -1,6 +1,7 @@ 'use strict'; var toposort = require('toposort'); +var _ = require('lodash'); /* Sorts dependencies between chunks by their "parents" attribute. @@ -40,7 +41,8 @@ ...
fix(chunksorter): webpack2 compatible (#<I>)
jantimon_html-webpack-plugin
train
js
33dcb6122592666bddb1e20aa0b5e7776ca7ee93
diff --git a/lib/gruff/base.rb b/lib/gruff/base.rb index <HASH>..<HASH> 100644 --- a/lib/gruff/base.rb +++ b/lib/gruff/base.rb @@ -959,25 +959,10 @@ module Gruff return 0.0 if @hide_legend legend_labels = store.data.map(&:label) - legend_square_width = @legend_box_size - label_widths = calcula...
chore: Refactor calculate_legend_height() method
topfunky_gruff
train
rb
8edf2d1478026da442f519c2d2521af43ba01832
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -4,14 +4,16 @@ const decodePacket = require("./decodePacket"); const SEPARATOR = "\x1e"; // see https://en.wikipedia.org/wiki/Delimiter#ASCII_delimited_text const encodePayload = (packets, callback) => { - ...
fix: keep track of the buffer initial length The write buffer is mutable, so its initial length must be saved when encoding the payload.
socketio_engine.io-parser
train
js
c61b5a371c9e0a60d9097693a79ff26d124534d7
diff --git a/demo/polyfills.js b/demo/polyfills.js index <HASH>..<HASH> 100644 --- a/demo/polyfills.js +++ b/demo/polyfills.js @@ -1,3 +1 @@ -if (typeof Promise === 'undefined') { - import('core-js/fn/promise') -} +import('core-js/fn/promise')
fix(demo): Tried to use Promise before polyfill
matsp_material-components-vue
train
js
b9cb633a6451554b4c2d8f82a12a6375205b02d0
diff --git a/__tests__/commands.spec.js b/__tests__/commands.spec.js index <HASH>..<HASH> 100644 --- a/__tests__/commands.spec.js +++ b/__tests__/commands.spec.js @@ -321,7 +321,7 @@ describe('electron:build', () => { test('Adds mock legacy assets file for index', async () => { await runCommand('electron:build'...
fix(tests): use path.sep instead of "/"
nklayman_vue-cli-plugin-electron-builder
train
js
8c5a161871f05a04887469e07ad1b3f6d916e1f4
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -137,8 +137,8 @@ html_theme_options = { 'github_banner': True, 'show_powered_by': False, 'extra_nav_links': { - 'invenio-access@GitHub': 'http://github.com/inveniosoftware/invenio-access',...
docs: autodoc configuration and HTTPS fix * Replaces HTTP links with HTTPS where possible.
inveniosoftware_invenio-access
train
py
65f16abba8943f99bf667b9df13dd8482028e6b0
diff --git a/lib/app/dataMixin.js b/lib/app/dataMixin.js index <HASH>..<HASH> 100644 --- a/lib/app/dataMixin.js +++ b/lib/app/dataMixin.js @@ -37,13 +37,13 @@ export default { const { locales = {}} = this.$site let targetLang let defaultLang - Object.keys(locales).forEach(path => { + for ...
refactor: avoid iterator
vuejs_vuepress
train
js
f105951831d51b9af57d535c43802dd65f023c69
diff --git a/tests/integration/routes/account/patch-account-test.js b/tests/integration/routes/account/patch-account-test.js index <HASH>..<HASH> 100644 --- a/tests/integration/routes/account/patch-account-test.js +++ b/tests/integration/routes/account/patch-account-test.js @@ -109,9 +109,15 @@ getServer(function (erro...
test: prepared test for `PATCH /session/account -> <I>` <URL>
hoodiehq_hoodie-account-server
train
js
4b053ebe587d51562d77ca512848be28195ae0cc
diff --git a/lib/runner.js b/lib/runner.js index <HASH>..<HASH> 100644 --- a/lib/runner.js +++ b/lib/runner.js @@ -219,9 +219,6 @@ var runTests = function() { 'since Protractor 0.6.0. Please switch to config.specs.'); } var specs = config.specs; - if (!specs || specs.length == 0) { - throw new Error(...
fix(runner): only run selenium with spec files Only setup Selenium if there are actual spec files passed in
angular_protractor
train
js
6ab26037ecb53d0fa730b4ec3ce2b539413dc511
diff --git a/packages/simplebar/src/simplebar.js b/packages/simplebar/src/simplebar.js index <HASH>..<HASH> 100755 --- a/packages/simplebar/src/simplebar.js +++ b/packages/simplebar/src/simplebar.js @@ -335,12 +335,12 @@ export default class SimpleBar { : 'auto'; this.placeholderEl.style.height = `${content...
chore: fix wrong order on div calculation
Grsmto_simplebar
train
js
1c6b4250f8b737be2db01997c710e7391efeb041
diff --git a/lib/util/http-mgr.js b/lib/util/http-mgr.js index <HASH>..<HASH> 100644 --- a/lib/util/http-mgr.js +++ b/lib/util/http-mgr.js @@ -104,6 +104,9 @@ function addQueue(url) { var data; while(!queueTimer && !data) { url = queue.shift(); + if (!url) { + return; + } data = cache[url]; ...
feat: support for using @url to load remote rules
avwo_whistle
train
js
3aed1e7cd1312691c00e395dd18e1632c27d06b8
diff --git a/packages/node_modules/@webex/helper-image/src/detect-filetype.js b/packages/node_modules/@webex/helper-image/src/detect-filetype.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/helper-image/src/detect-filetype.js +++ b/packages/node_modules/@webex/helper-image/src/detect-filetype.js @@ -3...
refactor(helper-image): replace mime-types with mime
webex_spark-js-sdk
train
js
b5799d07a195b4c349de72ddf526deb8a5aa86ec
diff --git a/anytemplate/api.py b/anytemplate/api.py index <HASH>..<HASH> 100644 --- a/anytemplate/api.py +++ b/anytemplate/api.py @@ -6,6 +6,7 @@ """ from __future__ import absolute_import +import logging import os.path import anytemplate.compat @@ -14,11 +15,13 @@ import anytemplate.globals import anytemplat...
refactor: initialize logger locally instead of use of global logger in .api
ssato_python-anytemplate
train
py
38cf61962d9095f69e5f4f9e282b110fb046e64b
diff --git a/lib/plugin/components/services/statebox/index.js b/lib/plugin/components/services/statebox/index.js index <HASH>..<HASH> 100644 --- a/lib/plugin/components/services/statebox/index.js +++ b/lib/plugin/components/services/statebox/index.js @@ -29,7 +29,7 @@ class StateboxService { options.messages.info(...
feat: Initialised state machine validator with state resources
wmfs_tymly-core
train
js
bbae3015249437e19a11ffdd687268abf4790287
diff --git a/src/OrbitDB.js b/src/OrbitDB.js index <HASH>..<HASH> 100644 --- a/src/OrbitDB.js +++ b/src/OrbitDB.js @@ -40,11 +40,9 @@ class OrbitDB { this._ipfs = ipfs this.identity = identity this.id = options.peerId - this._pubsub = !options.offline - ? options.broker - ? new options.bro...
refactor: broker class instance with consistent parameters
orbitdb_orbit-db
train
js
eda07569d26d94a5e5db47b3eeac8774a447116c
diff --git a/alertaclient/commands/cmd_token.py b/alertaclient/commands/cmd_token.py index <HASH>..<HASH> 100644 --- a/alertaclient/commands/cmd_token.py +++ b/alertaclient/commands/cmd_token.py @@ -1,11 +1,21 @@ import click +from alertaclient.auth.token import Jwt from alertaclient.auth.utils import get_token ...
feat: add option to show decoded auth token claims (#<I>)
alerta_python-alerta-client
train
py
ff9b23ebe5193e188f57fd6fa4d379c367a1d6ee
diff --git a/lib/renderer/init.js b/lib/renderer/init.js index <HASH>..<HASH> 100644 --- a/lib/renderer/init.js +++ b/lib/renderer/init.js @@ -69,6 +69,8 @@ switch (window.location.protocol) { require('@electron/internal/renderer/chrome-api').injectTo(window.location.hostname, isBackgroundPage, window) break ...
fix: dont run window-setup on chrome:// protocol, introduced in b<I>e<I>efc1db<I>fe5e<I>ce<I>d1ddc<I>ed9 (#<I>)
electron_electron
train
js
b408b3b032319a0789cd0c0b930e80611ea87945
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -24,7 +24,7 @@ module.exports = function(api) { '@babel/plugin-proposal-do-expressions', // Stage 2 - ['@babel/plugin-proposal-decorators', { 'legacy': true }], + '@babel/plugi...
fix: keep default options for @babel/plugin-proposal-decorators and @babel/plugin-proposal-class-properties
trendmicro-frontend_babel-config
train
js
d246ab3aad9dedb52df227eb57afb230c5223509
diff --git a/lib/util/index.js b/lib/util/index.js index <HASH>..<HASH> 100644 --- a/lib/util/index.js +++ b/lib/util/index.js @@ -1142,7 +1142,7 @@ exports.getCharset = getCharset; exports.getMetaCharset = getMetaCharset; function getForwardedIp(headers) { - var val = headers[config.CLIENT_IP_HEAD]; + var val = ...
refactor: getClientIp
avwo_whistle
train
js
01ad7b7045a77121fb687b6fb529efab8212410e
diff --git a/src/GEOparse/GEOTypes.py b/src/GEOparse/GEOTypes.py index <HASH>..<HASH> 100755 --- a/src/GEOparse/GEOTypes.py +++ b/src/GEOparse/GEOTypes.py @@ -418,9 +418,10 @@ class GSM(SimpleGEO): Returns: :obj:`pandas.DataFrame`: Annotated data """ - if gpl.name != self.metadata[...
fix: metadata does not have d_id
guma44_GEOparse
train
py
dc0438580803593bfb2246efa8af2f932e6c5feb
diff --git a/lib/loader/mixin/plugin.js b/lib/loader/mixin/plugin.js index <HASH>..<HASH> 100644 --- a/lib/loader/mixin/plugin.js +++ b/lib/loader/mixin/plugin.js @@ -89,6 +89,7 @@ module.exports = { this.allPlugins = {}; this.appPlugins = appPlugins; this.customPlugins = customPlugins; + this.eggPlug...
feat: expose eggPlugins (#<I>)
eggjs_egg-core
train
js,js
1905d5e0d9263ce986041399fb53d24992692bd5
diff --git a/src/pathParts.js b/src/pathParts.js index <HASH>..<HASH> 100644 --- a/src/pathParts.js +++ b/src/pathParts.js @@ -7,7 +7,7 @@ */ function getPathParts(path) { // split the path specified into an array on `.` - const pathParts = path.split('.'); + const pathParts = String(path).split('.'); // c...
fix(pathParts): convert to string before splitting Convert the path to a string before splitting to stop any errors of non string values
hammy2899_o
train
js
79ce6192bc32128948bcc245e724b2bf24a410bb
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -201,13 +201,16 @@ function reloadTests(path) { function reloadAllTests() { if (top) { - const {files} = top - + const order = top.tests top = null nextRun.push(() => { top = create...
fix: preserve file order when reloading all tests This also makes `reloadAllTests` actually work.
aleclarson_testpass
train
js
944010d113651abf33545563758abd69de4ad447
diff --git a/src/filterRows.js b/src/filterRows.js index <HASH>..<HASH> 100644 --- a/src/filterRows.js +++ b/src/filterRows.js @@ -150,6 +150,13 @@ function guessFilter(keyword = '') { } } + if (isNumber(compareString)) { + return { + type: 'equals', + text: parseInt(keyw...
fix: Filter numeric columns by value No need to use = to filter numeric values by their value
frappe_datatable
train
js
3595df1ce7b83b44a50fb4096c8bc811ea9b6027
diff --git a/packages/testing/testing-jest/jest-reporter-vrt.js b/packages/testing/testing-jest/jest-reporter-vrt.js index <HASH>..<HASH> 100644 --- a/packages/testing/testing-jest/jest-reporter-vrt.js +++ b/packages/testing/testing-jest/jest-reporter-vrt.js @@ -13,7 +13,7 @@ async function uploadImage(name, content) {...
fix: update now-storage config to use teamId
bolt-design-system_bolt
train
js
309e331aad5e290e0bc382449df378c3b5c3b842
diff --git a/admin/controllers/Settings.php b/admin/controllers/Settings.php index <HASH>..<HASH> 100644 --- a/admin/controllers/Settings.php +++ b/admin/controllers/Settings.php @@ -42,7 +42,7 @@ class Settings extends Base * Returns an array of permissions which can be configured for the user * @return ar...
fix: Added ensuring method signature compatability
nails_module-geo-ip
train
php
944a716c299001d89bc6758fa83408ac7df5dadb
diff --git a/src/authService.js b/src/authService.js index <HASH>..<HASH> 100644 --- a/src/authService.js +++ b/src/authService.js @@ -84,6 +84,14 @@ export class AuthService { LogManager.getLogger('authentication').info('Stored token changed event'); + // IE runs the event handler before updating the stora...
fix(authService): storage events do not work properly in IE<I>
SpoonX_aurelia-authentication
train
js
9241693d33409d4981823c48cda26b0496fb3a0e
diff --git a/src/actions/query.js b/src/actions/query.js index <HASH>..<HASH> 100644 --- a/src/actions/query.js +++ b/src/actions/query.js @@ -780,6 +780,7 @@ export function loadDataToExport(componentId, deepPaginationCursor = '', totalRe }); query.push({ + ...getRSQuery(componentId, extractPropsFromState(ge...
feat: update query generation for export data
appbaseio_reactivecore
train
js
653dc7436f0180b22790bf08261de531c1d753af
diff --git a/source/application/routes/react-mount.js b/source/application/routes/react-mount.js index <HASH>..<HASH> 100644 --- a/source/application/routes/react-mount.js +++ b/source/application/routes/react-mount.js @@ -66,7 +66,10 @@ export default function (application) { base: mountableCacheRoot, cache: a...
feat(server): use forced-env cache for react-mount
patternplate-archive_patternplate-server
train
js,js
b39c6e6dedbe30851c55bf3fdc37157d326750cd
diff --git a/lib/components/app/app-menu.js b/lib/components/app/app-menu.js index <HASH>..<HASH> 100644 --- a/lib/components/app/app-menu.js +++ b/lib/components/app/app-menu.js @@ -7,7 +7,13 @@ import Icon from '../narrative/icon' import { MainPanelContent, setMainPanelContent } from '../../actions/ui' +// TODO:...
refactor(app-menu): Add PropTypes to AppMenu
opentripplanner_otp-react-redux
train
js
ae81c0c19ce647869e268add28e3d61e1c3fe5a1
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -76,9 +76,30 @@ ChromeCanaryBrowser.prototype = { ChromeCanaryBrowser.$inject = ['baseBrowserDecorator', 'args']; +var DartiumBrowser = function(baseBrowserDecorator, args) { + ChromeBrowser.call(this, baseBrowserDecor...
feat(Launcher): Add Dartium launcher. Add Dartium launcher which launches Dartium browser in checked mode.
karma-runner_karma-chrome-launcher
train
js
8bd3b797f5d4027a95d38862a8e7c45fc184a648
diff --git a/schedula/ext/dispatcher/documenter.py b/schedula/ext/dispatcher/documenter.py index <HASH>..<HASH> 100644 --- a/schedula/ext/dispatcher/documenter.py +++ b/schedula/ext/dispatcher/documenter.py @@ -183,7 +183,11 @@ def _data(lines, dsp): link = ':obj:`%s <%s>`' % (_node_name(str(k)), link) ...
fix(sphinx): Correct bug when `"` is in csv-table directive.
vinci1it2000_schedula
train
py
449cb55a3357f5541524a5094d41110d053c48f9
diff --git a/src/ORM/Table.php b/src/ORM/Table.php index <HASH>..<HASH> 100644 --- a/src/ORM/Table.php +++ b/src/ORM/Table.php @@ -1288,7 +1288,7 @@ class Table implements RepositoryInterface, EventListener { ->execute(); $success = false; - if ($statement->rowCount() > 0) { + if ($statement->errorCode() ===...
fix: 0 rows affected treated as an error Updating dirty entities fails when dirty properties are "chaged" to same values. Rely on SQLSTATE code instead of counting affected rows. Reproduce this issue: $article->accessible('*', true); $article->set($sameValuesFromFormSubmit); // gets marked as dirty $this->Articles-...
cakephp_cakephp
train
php
eb3a7e35eb2c45a71ce58a47240becf62ea6ddec
diff --git a/src/store.js b/src/store.js index <HASH>..<HASH> 100644 --- a/src/store.js +++ b/src/store.js @@ -162,7 +162,7 @@ const store = new Vuex.Store({ if (config.nav) { console.warn('"nav" option has been renamed to "sidebar".') } - return config.sidebar || config.nav + return co...
fix: sidebar might be undefined
egoist_docute
train
js
90bc24bfb2d011b0ed7de9c354e4354770d71a2b
diff --git a/packages/core/src/scheduler/runWithLocalTime.js b/packages/core/src/scheduler/runWithLocalTime.js index <HASH>..<HASH> 100644 --- a/packages/core/src/scheduler/runWithLocalTime.js +++ b/packages/core/src/scheduler/runWithLocalTime.js @@ -3,5 +3,18 @@ import RelativeSink from '../sink/RelativeSink' import...
feat(runWithLocalTime): avoid nesting RelativeSinks by accumulating offsets instead (#<I>)
mostjs_core
train
js
977b631628c1d25aa168a59b82ca042478cd78c0
diff --git a/test/bin.js b/test/bin.js index <HASH>..<HASH> 100644 --- a/test/bin.js +++ b/test/bin.js @@ -3,9 +3,7 @@ import test from 'ava' test.todo('test bin later') try { - require('./bin') // requiring now for coverage until this is tested + require('../bin') // requiring now for coverage until this is test...
fix(tests): Correct link to required bin.js
kentcdodds_eslint-find-new-rules
train
js
868c63e1a686fac4b614371d3c9d8e5c76c7f980
diff --git a/packages/cozy-stack-client/src/PermissionCollection.js b/packages/cozy-stack-client/src/PermissionCollection.js index <HASH>..<HASH> 100644 --- a/packages/cozy-stack-client/src/PermissionCollection.js +++ b/packages/cozy-stack-client/src/PermissionCollection.js @@ -197,7 +197,8 @@ class PermissionCollectio...
feat: GetOwnPermissions returns included CozyStack now includes the sharing member in GET /permissions/self This is used to have informations about the member of the sharing. Specially if the instance field is filled, it means that the shortcut for this sharing has been created to its cozy.
cozy_cozy-client
train
js
3913eaa6e87d0be0b4d35b5fc44cad51cdd9e696
diff --git a/lib/operations/execute_operation.js b/lib/operations/execute_operation.js index <HASH>..<HASH> 100644 --- a/lib/operations/execute_operation.js +++ b/lib/operations/execute_operation.js @@ -94,6 +94,10 @@ function executeOperation(topology, operation, callback) { }); } +function supportsRetryableRead...
refactor: ensure selected server in retry supports retryable reads
mongodb_node-mongodb-native
train
js
ac82c45c14ddcd0d608496d1193da09d555b6f15
diff --git a/ibm_watson/assistant_v2.py b/ibm_watson/assistant_v2.py index <HASH>..<HASH> 100644 --- a/ibm_watson/assistant_v2.py +++ b/ibm_watson/assistant_v2.py @@ -81,10 +81,7 @@ class AssistantV2(BaseService): # Sessions ######################### - def create_session(self, - ass...
fix(assistantv2): use original createSession method signature
watson-developer-cloud_python-sdk
train
py
61409811d24741729c4445f9585541f06600da2e
diff --git a/static/lib/composer.js b/static/lib/composer.js index <HASH>..<HASH> 100644 --- a/static/lib/composer.js +++ b/static/lib/composer.js @@ -175,7 +175,7 @@ define('composer', [ if (showAlert) { alerts.alert({ type: 'danger', - timeout: 3000, + timeout: 10000, title: '', message: m...
refactor: increase alert timeout
NodeBB_nodebb-plugin-composer-default
train
js
60f65b19b04958d5f95dfdb62a780a9b8608b990
diff --git a/synth.py b/synth.py index <HASH>..<HASH> 100644 --- a/synth.py +++ b/synth.py @@ -5,6 +5,8 @@ import subprocess logging.basicConfig(level=logging.DEBUG) +AUTOSYNTH_MULTIPLE_COMMITS = True + gapic = gcp.GAPICMicrogenerator() common_templates = gcp.CommonTemplates()
chore: enable context-aware commits (#<I>)
googleapis_nodejs-video-intelligence
train
py
d82ea47dd3795a5e4d9903c3ce1323e089b7d1a5
diff --git a/test/unit/adapters/http.js b/test/unit/adapters/http.js index <HASH>..<HASH> 100644 --- a/test/unit/adapters/http.js +++ b/test/unit/adapters/http.js @@ -447,7 +447,7 @@ describe('supports http with nodejs', function () { res.end(req.headers['user-agent']); }).listen(4444, function () { ...
fix(Tests): updating regex to allow for pre-releases
axios_axios
train
js
de64574eb3ac50ecb956e9cbb1c4f10602974b9a
diff --git a/spec/unit/caching_spec.rb b/spec/unit/caching_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/caching_spec.rb +++ b/spec/unit/caching_spec.rb @@ -149,10 +149,11 @@ RSpec.describe FaradayMiddleware::RackCompatible, 'caching' do request_count = 0 response = lambda { |env| - [200, { 'Cont...
chore: RuboCop lint Layout/ArrayAlignment
lostisland_faraday_middleware
train
rb
95ddc5b4963f500c2b28d0eebcedbdd4644f9694
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -4,7 +4,7 @@ module.exports = function(content) { this.cacheable && this.cacheable(); var callback = this.async(); var fn = Handlebars.precompile(content); - callback(null, "var Handlebars = require('handleba...
fix: use require.resolve to reference used handlebars lib
emaphp_handlebars-template-loader
train
js
2b894a0736cdcbd55aa85f06cfb2a66554772fa0
diff --git a/tests/src/Base/TestCase.php b/tests/src/Base/TestCase.php index <HASH>..<HASH> 100644 --- a/tests/src/Base/TestCase.php +++ b/tests/src/Base/TestCase.php @@ -126,7 +126,7 @@ class TestCase extends \PHPUnit\Framework\TestCase $sent = \GuzzleHttp\json_decode($requestBody, true); } - ...
fix(Tests): Validation of request It was in strict mode, which expect the array to be strictly the same instance, we don't want that.
zerospam_sdk-framework
train
php
dd0a436fb2becdc4b7f883b40a18efcd98a1be84
diff --git a/lib/config/definitions.js b/lib/config/definitions.js index <HASH>..<HASH> 100644 --- a/lib/config/definitions.js +++ b/lib/config/definitions.js @@ -553,7 +553,7 @@ const options = [ description: 'Timeout in hours for when prCreation=not-pending', type: 'integer', // Must be at least 24 hou...
fix: set prNotPendingHours to <I> Removes race condition between prNotPendingHours and unPublishSafe features. Closes #<I>
renovatebot_renovate
train
js
3c8463d5869652abf2e2d2eb20e72e337b2e1e2e
diff --git a/src/normalise.js b/src/normalise.js index <HASH>..<HASH> 100644 --- a/src/normalise.js +++ b/src/normalise.js @@ -18,7 +18,7 @@ exports.normalise = function normalise(x, scale) { } if (arbitraryPrecision.isAvailable()) { - return normaliseDecimal(x, scale); + return Number(normaliseDecimal(x,...
feat(consistency): always return a Number
javiercejudo_normalise
train
js,js
23ae91cfc1a541b7033126c284e9a2e5814836ca
diff --git a/internal/pkg/table/policy.go b/internal/pkg/table/policy.go index <HASH>..<HASH> 100644 --- a/internal/pkg/table/policy.go +++ b/internal/pkg/table/policy.go @@ -370,6 +370,12 @@ func (lhs *PrefixSet) Append(arg DefinedSet) error { if !ok { return fmt.Errorf("type cast failed") } + + if rhs.tree.Len...
fix: nil pointer in PrefixSet Append
osrg_gobgp
train
go
5f677dc93a8e8a5a2845f2b4238dd58d9a625569
diff --git a/lib/transform.js b/lib/transform.js index <HASH>..<HASH> 100644 --- a/lib/transform.js +++ b/lib/transform.js @@ -15,7 +15,9 @@ var proto = Transform.prototype; proto.push_ = proto.push; proto.push = function(chunk, encoding) { - chunk != null && this.push_(chunk, encoding); + if (chunk != null) { + ...
fix: the highWaterMark of stream
avwo_pipestream
train
js
ce995b256423a0c5619e2a6c0d88e917aad315ba
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( license="LGPLv3", url="https://github.com/python-gitlab/python-gitlab", packages=find_packages(), - install_requires=["requests>=2.22.0", "requests-toolbelt>=0.9.1"], + install_requir...
fix(deps): upgrade requests to <I> (see CVE-<I>-<I>)
python-gitlab_python-gitlab
train
py
425fbd7d373613a2dd436a0347da09ce6186da86
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 @@ -1005,6 +1005,10 @@ var _ = Describe("K8sServicesTest", func() { testCurlFromPodInHostNetNS(tftpURL, count, 0, k8s1NodeName) testCurlFromPodInHostNetNS(httpURL, count...
test: add additional externalTrafficPolicy=Local tests from 3rd node We already have the test where the request fails, so add one for the case where it must succeed from outside.
cilium_cilium
train
go
4ef96116fb9d9487709e1e1d4a010c9417ae139a
diff --git a/src/connection.js b/src/connection.js index <HASH>..<HASH> 100644 --- a/src/connection.js +++ b/src/connection.js @@ -793,6 +793,7 @@ export class Connection { throw new Error(res.error.message); } assert(typeof res.result !== 'undefined'); + await sleep(500); return res.result; ...
fix: wait for airdrop (#<I>)
solana-labs_solana-web3.js
train
js
ba37821a7755aa86b31a2a20422129ad20ac2fe3
diff --git a/lib/master.js b/lib/master.js index <HASH>..<HASH> 100644 --- a/lib/master.js +++ b/lib/master.js @@ -515,9 +515,10 @@ class Master extends EventEmitter { // exit itself this.killAppWorkers(); this.killAgentWorker(); - this.log('[master] send kill SIGTERM to app workers and agent worker, ...
fix: master close log print timeout error (#<I>) ref: !<I>
eggjs_egg-cluster
train
js
c650f0756a8fc6161a46896a02893cd6a688d59f
diff --git a/cloudvolume/frontends/graphene.py b/cloudvolume/frontends/graphene.py index <HASH>..<HASH> 100644 --- a/cloudvolume/frontends/graphene.py +++ b/cloudvolume/frontends/graphene.py @@ -185,6 +185,8 @@ class CloudVolumeGraphene(CloudVolumePrecomputed): def agglomerate_cutout(self, img, timestamp=None, s...
perf: faster processing of black tiles for Graphene No need to talk to the graph server about tiles that are purely background color.
seung-lab_cloud-volume
train
py
d58058a243e232d72ef4a50778afc9efdd9d58a6
diff --git a/packages/api-generator/src/helpers/default-slots.js b/packages/api-generator/src/helpers/default-slots.js index <HASH>..<HASH> 100644 --- a/packages/api-generator/src/helpers/default-slots.js +++ b/packages/api-generator/src/helpers/default-slots.js @@ -50,7 +50,6 @@ module.exports = [ 'v-overlay', '...
chore(VProgressLinear): Remove extra default slot. (#<I>)
vuetifyjs_vuetify
train
js
0c0e607eb776bcdc2cfad21da6dabb80ba6e9a60
diff --git a/utils/download_sqlite_all.js b/utils/download_sqlite_all.js index <HASH>..<HASH> 100644 --- a/utils/download_sqlite_all.js +++ b/utils/download_sqlite_all.js @@ -55,7 +55,7 @@ function download(callback) { if (commandExistsSync('lbzip2')) { extract = 'lbzip2'; } else { - extra...
fix(download): Use correct `bunzip2` Fix typo as per discussion in #<I>
pelias_whosonfirst
train
js
ffd994ccf5e35191da4f25ffc313e5e1556d7387
diff --git a/src/typescriptResolvePlugin.js b/src/typescriptResolvePlugin.js index <HASH>..<HASH> 100644 --- a/src/typescriptResolvePlugin.js +++ b/src/typescriptResolvePlugin.js @@ -31,7 +31,7 @@ const resolveHost = { } } -const extensions = new Set([ ".ts", ".tsx" ]) +const extensions = new Set([".ts", ".tsx"])...
fix: throw error if typescript is not installed
sebastian-software_preppy
train
js
2c18f323b61c279aced130d8b9af82cb2fa8d230
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -72,9 +72,7 @@ export const cityworksCheck = async (url, token) => { if (!response.ok) return false - const json = await response.json() - - return json.Value + return true } catch (err) { ...
chore: change fetch logic (#<I>)
makkke_doctor-zhivago
train
js
89543b5e78cfb29146862e8dd08da5d553220997
diff --git a/lib/static/modules/reducer.js b/lib/static/modules/reducer.js index <HASH>..<HASH> 100644 --- a/lib/static/modules/reducer.js +++ b/lib/static/modules/reducer.js @@ -39,7 +39,7 @@ function getInitialState(data) { if (isSqlite(saveFormat)) { formattedSuites = {}; } else { - formatt...
fix: filter suites by browsers in non-gui mode
gemini-testing_html-reporter
train
js
94b86e7b4750c4d92b62f250b593dbbef5eb74f0
diff --git a/lib/client/bundler/webpack.js b/lib/client/bundler/webpack.js index <HASH>..<HASH> 100644 --- a/lib/client/bundler/webpack.js +++ b/lib/client/bundler/webpack.js @@ -36,6 +36,7 @@ module.exports = function(webpack) { // Define new client object client.paths = ss.bundler.sourcePaths(ss,paths...
feat(bundler): client.includes needed for now
socketstream_socketstream
train
js
6cb15988be6c57e5b6c276b8afd88943e2cdfb8f
diff --git a/src/methods/update.js b/src/methods/update.js index <HASH>..<HASH> 100644 --- a/src/methods/update.js +++ b/src/methods/update.js @@ -15,8 +15,7 @@ export default function({model, idField, idParam, req, res}) { where: { [idField]: req.params[idParam] }, - default...
refactor: cleanup of methods (transactions)
netiam_contrib-rest
train
js
d7acafc5abae11348a04ce1cbd72d00e4389506b
diff --git a/python/neuroglancer/viewer_state.py b/python/neuroglancer/viewer_state.py index <HASH>..<HASH> 100644 --- a/python/neuroglancer/viewer_state.py +++ b/python/neuroglancer/viewer_state.py @@ -309,6 +309,8 @@ class AnnotationLayer(Layer, _AnnotationLayerOptions): source = wrapped_property('source', optio...
fix(python): add ViewerState support for segmentation-linked annotations
google_neuroglancer
train
py
50fa1350b25748dfb4008f4f4b0c646d514ff2cd
diff --git a/lib/worker.js b/lib/worker.js index <HASH>..<HASH> 100644 --- a/lib/worker.js +++ b/lib/worker.js @@ -24,7 +24,7 @@ const { loadPlugins } = require('./load-plugins'); const EventEmitter = require('eventemitter3'); const p = require('util').promisify; -process.env.WORKER_ID = threadId; +process.env.LOCA...
fix: Use LOCAL_WORKER_ID for local worker threads Using WORKER_ID clashes with the convention used in Artillery Pro for making worker IDs available to custom code.
artilleryio_artillery
train
js
90125ce0f248e54a50776481b3034ecd97836664
diff --git a/packages/cozy-pouch-link/src/remote.js b/packages/cozy-pouch-link/src/remote.js index <HASH>..<HASH> 100644 --- a/packages/cozy-pouch-link/src/remote.js +++ b/packages/cozy-pouch-link/src/remote.js @@ -1,3 +1,5 @@ +import AccessToken from './AccessToken' + /** * Fetch remote instance * @@ -6,8 +8,7 @@...
refactor: Use AccessToken for remote auth
cozy_cozy-client
train
js
0d3898279fa5dad71e21c643078d86fb4d30dc5a
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 @@ -241,10 +241,9 @@ export class AssociationSelect { } } - /** - * When attached to the DOM, initialize the...
fix(associationSelect): fix value binding
SpoonX_aurelia-orm
train
js
397294ee24837f4259afd84cf2f951cde369108e
diff --git a/example/app.js b/example/app.js index <HASH>..<HASH> 100644 --- a/example/app.js +++ b/example/app.js @@ -1,3 +1,5 @@ +'use strict'; + require('./style.css'); var instantsearch = require('../'); diff --git a/test/InstantSearch.js b/test/InstantSearch.js index <HASH>..<HASH> 100644 --- a/test/InstantSea...
fix: add missing 'use strict's
algolia_instantsearch.js
train
js,js,js,js
84cc14ed2e9513fa422db58d998e97f6929436e1
diff --git a/ladybug/datatype/base.py b/ladybug/datatype/base.py index <HASH>..<HASH> 100644 --- a/ladybug/datatype/base.py +++ b/ladybug/datatype/base.py @@ -26,7 +26,6 @@ class DataTypeBase(object): * cumulative * normalized_type """ - __slots__ = ('_name',) _units = [None] _si...
fix(datatype): remove slots Slots don't seem to provide a major memory advantage at this point as they are not implemented on child classes. There is a preference to remove them so certain functions can be overwritten by plugins. close #<I>
ladybug-tools_ladybug
train
py
82cc5d506b32943e5a0d98f798c2c68c445e2478
diff --git a/source/times.js b/source/times.js index <HASH>..<HASH> 100644 --- a/source/times.js +++ b/source/times.js @@ -32,7 +32,7 @@ var times = _curry2(function times(fn, n) { } list = []; - for (let x = 0; x < len; x += 1) { + for (var x = 0; x < len; x += 1) { list[x] = fn(x); }
chore(times): using `var` instead of `let` for loop variable
ramda_ramda
train
js
b1cfd3e63da27d46e04a13248e2385757b0598eb
diff --git a/go/vt/vtgate/planbuilder/ordered_aggregate.go b/go/vt/vtgate/planbuilder/ordered_aggregate.go index <HASH>..<HASH> 100644 --- a/go/vt/vtgate/planbuilder/ordered_aggregate.go +++ b/go/vt/vtgate/planbuilder/ordered_aggregate.go @@ -253,6 +253,7 @@ func (oa *orderedAggregate) Primitive() engine.Primitive { ...
fix: add collations to non-scalar aggregates
vitessio_vitess
train
go
b09d4255a7832bbda63d08f87b8ebbaf2a2c121d
diff --git a/lib/classes/CLI.js b/lib/classes/CLI.js index <HASH>..<HASH> 100644 --- a/lib/classes/CLI.js +++ b/lib/classes/CLI.js @@ -68,11 +68,7 @@ class CLI { const options = processedInput.options; // if asked for version explicitly - if ( - options.version || - options.v || - (command...
style(CLI): Improvements
serverless_serverless
train
js
500ffdff941dd0e278965f21dc51cf1e6408e023
diff --git a/src/role-helpers.js b/src/role-helpers.js index <HASH>..<HASH> 100644 --- a/src/role-helpers.js +++ b/src/role-helpers.js @@ -42,6 +42,8 @@ function isInaccessible(element) { return true } + // this branch is temporary code until jsdom fixes a bug + // istanbul ignore else if (supp...
test: fix coverage (#<I>)
testing-library_dom-testing-library
train
js
be923571751199e0d795f620425fdf6eaf3f9818
diff --git a/lib/preprocessor.js b/lib/preprocessor.js index <HASH>..<HASH> 100644 --- a/lib/preprocessor.js +++ b/lib/preprocessor.js @@ -22,7 +22,7 @@ var isBinary = Object.create(null); 'sgi', 'svg', 'tiff', 'psd', 'uvi', 'sub', 'djvu', 'dwg', 'dxf', 'fbs', 'fpx', 'fst', 'mmr', 'rlc', 'mdi', 'wdp', 'npx', 'wbm...
feat(preprocessor): Adding the `dat` file extension as a recognised binary.
karma-runner_karma
train
js
aa3dc3e740023db7bf9bc51af65cff8c36385bbd
diff --git a/scripts/build/copy-less.js b/scripts/build/copy-less.js index <HASH>..<HASH> 100755 --- a/scripts/build/copy-less.js +++ b/scripts/build/copy-less.js @@ -39,6 +39,6 @@ function copyTheme() { }); } -['theme', 'abc', 'chart', 'acl', 'form'].forEach(name => copyLess(name)); +['theme', 'abc', 'chart', 'a...
chore: fix theme build (#<I>)
ng-alain_delon
train
js
9e5975a9f86f22bfb890feb3001329cdba296a37
diff --git a/okdownload/src/main/java/com/liulishuo/okdownload/core/listener/assist/Listener4SpeedAssistExtend.java b/okdownload/src/main/java/com/liulishuo/okdownload/core/listener/assist/Listener4SpeedAssistExtend.java index <HASH>..<HASH> 100644 --- a/okdownload/src/main/java/com/liulishuo/okdownload/core/listener/a...
fix: remove public method incautiously handle redirect on DownloadConnection layer
lingochamp_okdownload
train
java
b2c13d4a8b8af152f00f8a778cfbaec37b1f7c8b
diff --git a/src/Leevel/Flow/FlowControl.php b/src/Leevel/Flow/FlowControl.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Flow/FlowControl.php +++ b/src/Leevel/Flow/FlowControl.php @@ -36,14 +36,14 @@ trait FlowControl * * @var bool */ - protected $inFlowControl = false; + protected bool $inFl...
refactor(flow): for php<I>
hunzhiwange_framework
train
php