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
df235f8c73cfe5941066ee54db6ecee0dc0e1e8b
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -29,7 +29,7 @@ export default class ReactPasswordStrength extends React.Component { isValid: false, password: '', }, () => { - this.refs['ReactPasswordStrength-input'].value = ''; + ...
fix: refs for react <I> needs to be function (#<I>)
mmw_react-password-strength
train
js
fcb3590b2839e236c011e5e2364f7fc72534de13
diff --git a/test/spec/render.js b/test/spec/render.js index <HASH>..<HASH> 100644 --- a/test/spec/render.js +++ b/test/spec/render.js @@ -229,8 +229,8 @@ describe('render:', () => { const el = document.createElement('div'); expect(() => { - hybrids.connect(el, 'renderOne'); - hybrids.connect(el, ...
test: use correct connect path for duplicate render
hybridsjs_hybrids
train
js
4cf60d1e933e8053679b98a2aaf1297500d511d9
diff --git a/lib/quasar-config.js b/lib/quasar-config.js index <HASH>..<HASH> 100644 --- a/lib/quasar-config.js +++ b/lib/quasar-config.js @@ -355,7 +355,7 @@ class QuasarConfig { } cfg.build.publicPath = - this.ctx.prod && cfg.build.publicPath && !['cordova', 'electron'].includes(this.ctx.modeName) + ...
feat: Enable quasar.conf > build > publicPath for SPA and PWA mode only
quasarframework_quasar-cli
train
js
1b57e54e68cb6f047e6fe3e0f26c5fea42f63b9a
diff --git a/packages/grpc-native-core/src/client.js b/packages/grpc-native-core/src/client.js index <HASH>..<HASH> 100644 --- a/packages/grpc-native-core/src/client.js +++ b/packages/grpc-native-core/src/client.js @@ -939,9 +939,11 @@ exports.makeClientConstructor = function(methods, serviceName, throw new Erro...
refactor: drop usage of _.partial
grpc_grpc-node
train
js
9cadcb0d72776159b4db104979ac15abd1845280
diff --git a/lib/grammar.js b/lib/grammar.js index <HASH>..<HASH> 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -181,6 +181,7 @@ function Grammar(Parser, lexer, names, behaviour) { g.symbol('(name)').nud = b.variable(); g.stmt(n.IF, function () { + var start = g.token.range; g.advance(...
fix(lexer): Ignore comments Comments are now consumed instead of generating nodes
gobstones_gs-weblang-core
train
js
dcf802c1d730ebf09cd269bbe8bb2c82b45b2090
diff --git a/src/types/chips/chips.js b/src/types/chips/chips.js index <HASH>..<HASH> 100644 --- a/src/types/chips/chips.js +++ b/src/types/chips/chips.js @@ -18,6 +18,9 @@ export default (formlyConfigProvider) => { }, deleteHint: { attribute: 'delete-hint' + }, + onAdd: { + ...
feat(chips): onAdd callback
formly-js_angular-formly-templates-material
train
js
f838854abed981cb93f63c0ce9a2b3173f03908e
diff --git a/functional/scheduling_test.go b/functional/scheduling_test.go index <HASH>..<HASH> 100644 --- a/functional/scheduling_test.go +++ b/functional/scheduling_test.go @@ -2,6 +2,7 @@ package functional import ( "fmt" + "os" "path/filepath" "strings" "testing" @@ -184,6 +185,7 @@ X-ConditionMachineBoo...
fix(functional-tests): clean up temporary units
coreos_fleet
train
go
b9d1d5b7279b8f5851a8ed16b7e428f501336dec
diff --git a/service_sysv_linux.go b/service_sysv_linux.go index <HASH>..<HASH> 100644 --- a/service_sysv_linux.go +++ b/service_sysv_linux.go @@ -213,7 +213,7 @@ get_pid() { } is_running() { - [ -f "$pid_file" ] && ps $(get_pid) > /dev/null 2>&1 + [ -f "$pid_file" ] && cat /proc/$(get_pid)/stat > /dev/null 2...
fix: sysv linux not support ps $pid (#<I>)
kardianos_service
train
go
a09a75be53a50f0bbb88d4ef53818139e208fafd
diff --git a/src/providers/strava.js b/src/providers/strava.js index <HASH>..<HASH> 100644 --- a/src/providers/strava.js +++ b/src/providers/strava.js @@ -4,9 +4,23 @@ export default function Strava(options) { id: "strava", name: "Strava", type: "oauth", - authorization: "https://www.strava.com/api/v3...
fix(providers): make Strava work again (#<I>) * Update strava.js Auth with Strava was throwing errors before, this works. * Update strava.js changed according to commenters' suggestions * chore: run linter
iaincollins_next-auth
train
js
d9ece8233d584cdc2eeae5165dd3329328fae328
diff --git a/examples/language-modeling/run_language_modeling.py b/examples/language-modeling/run_language_modeling.py index <HASH>..<HASH> 100644 --- a/examples/language-modeling/run_language_modeling.py +++ b/examples/language-modeling/run_language_modeling.py @@ -120,7 +120,9 @@ def get_dataset(args: DataTrainingArg...
fix(run_language_modeling): use arg overwrite_cache (#<I>)
huggingface_pytorch-pretrained-BERT
train
py
002c6ff19c0549fdcc331c1c99c76d72eadd3224
diff --git a/test/globals.js b/test/globals.js index <HASH>..<HASH> 100644 --- a/test/globals.js +++ b/test/globals.js @@ -5,19 +5,23 @@ module.exports = { abortOnAssertionFailure: false, before (done) { - server.start(() => driver.start()) + server.start(() => { + driver.start() - console.log('...
test(servers): don't call done() immediatly outside of the async callback
ahmadnassri_nightwatch-accessibility
train
js
c1d29ec4d50e659e7cd08fc01692d914ae619191
diff --git a/src/helpers/status.js b/src/helpers/status.js index <HASH>..<HASH> 100644 --- a/src/helpers/status.js +++ b/src/helpers/status.js @@ -106,7 +106,10 @@ class EventsStatus extends Status { super({ node, nodeState }); this.connectionState = STATE_DISCONNECTED; this.eventListeners = ...
fix(status): check for valid homeAssistant before adding listeners
zachowj_node-red-contrib-home-assistant-websocket
train
js
e85b34cbe09976f81a1417a72c6222248178a414
diff --git a/samples/synchronousPullWithLeaseManagement.js b/samples/synchronousPullWithLeaseManagement.js index <HASH>..<HASH> 100644 --- a/samples/synchronousPullWithLeaseManagement.js +++ b/samples/synchronousPullWithLeaseManagement.js @@ -60,6 +60,7 @@ function main( const request = { subscription: form...
docs: include `allowExcessMessages` in docs example (#<I>) As per #<I>
googleapis_nodejs-pubsub
train
js
2786df796242db1de3193de2de9dddca65719fa3
diff --git a/test/integration/servicebus/eventhubs/client.test.js b/test/integration/servicebus/eventhubs/client.test.js index <HASH>..<HASH> 100644 --- a/test/integration/servicebus/eventhubs/client.test.js +++ b/test/integration/servicebus/eventhubs/client.test.js @@ -29,8 +29,8 @@ describe('ServiceBus', function() {...
chore(spacing): revert change to test spacing to merge more easily
noodlefrenzy_node-amqp10
train
js
c2b86512f6c33fad1f8d288dd04654fb750e6b36
diff --git a/src/tabs/index.js b/src/tabs/index.js index <HASH>..<HASH> 100644 --- a/src/tabs/index.js +++ b/src/tabs/index.js @@ -362,7 +362,7 @@ export default createComponent({ () => props.active, (value) => { if (value !== currentName.value) { - setCurrentIndexByName(name); + ...
fix(Tabs): failed to set active tab #<I>
youzan_vant
train
js
cb9324407284e49c6d3586b0c47321b48920c199
diff --git a/keys.js b/keys.js index <HASH>..<HASH> 100644 --- a/keys.js +++ b/keys.js @@ -108,7 +108,7 @@ function loadKeypairs (recurse) { // if the keys still can't be loaded, kill the process if (!keys) { console.log( - 'Unable to read the token-signing key pair from ' + keyDirectory + ...
fix: Correct use of undefined variable
anvilresearch_connect-keys
train
js
210675878f3dfc5ef57060aed097c9702c67f9e7
diff --git a/circonus-gometrics_test.go b/circonus-gometrics_test.go index <HASH>..<HASH> 100644 --- a/circonus-gometrics_test.go +++ b/circonus-gometrics_test.go @@ -134,7 +134,7 @@ func TestNew(t *testing.T) { cfg := &Config{ Interval: "thirty seconds", } - expectedError := errors.New("parsing flush interv...
fix: quoting on error message in test
circonus-labs_circonus-gometrics
train
go
ec7e61fa879a6733c0ed134357202900c79be280
diff --git a/lib/compressors/html-minifier.js b/lib/compressors/html-minifier.js index <HASH>..<HASH> 100644 --- a/lib/compressors/html-minifier.js +++ b/lib/compressors/html-minifier.js @@ -50,7 +50,7 @@ module.exports = compressHTMLMinifier; */ function compressHTMLMinifier(settings, content, callback, index) { ...
fix(html-minifier): don't mutate defaultOptions
srod_node-minify
train
js
c4d87f30fc8753ece38b64f69eeb18c0596091d6
diff --git a/packages/react/src/index.js b/packages/react/src/index.js index <HASH>..<HASH> 100644 --- a/packages/react/src/index.js +++ b/packages/react/src/index.js @@ -186,6 +186,7 @@ function Microlink (props) { <div className={classNames.iframe} dangerouslySetInnerHTML={{ __html: iframeMed...
fix: pass rest of props to iframe that's necessry for styling the component properly
microlinkhq_sdk
train
js
a6dfe0943f6b79d87dbb8d5b8671fc75ccd23c5a
diff --git a/tests/db.test.js b/tests/db.test.js index <HASH>..<HASH> 100644 --- a/tests/db.test.js +++ b/tests/db.test.js @@ -133,7 +133,7 @@ describe(process.env.DIALECT, function() { config.downloadsDir = 'tests'; config.gtfsFileOrFolder = 'mock_agency'; - config.sequelizeOptions.logging = tr...
refactor(logging): turn off logging for schema test
evansiroky_gtfs-sequelize
train
js
0156f693e08fe2ad75133bf67c4aeb3e9c91a02d
diff --git a/src/util/BitField.js b/src/util/BitField.js index <HASH>..<HASH> 100644 --- a/src/util/BitField.js +++ b/src/util/BitField.js @@ -41,7 +41,6 @@ class BitField { * @returns {boolean} */ has(bit) { - if (Array.isArray(bit)) return bit.every(p => this.has(p)); bit = this.constructor.resolve...
fix(BitField): throw an error if bit to resolve is undefined (#<I>)
discordjs_discord.js
train
js
fec171a9c7c0610dc9825ca5f0556fe2a28d3194
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -147,8 +147,6 @@ if __name__ == '__main__': test_suite='nose.collector', tests_require=['nose>=1.0', 'requests'], package_data={ - 'schedula.utils.drw': [ - 'templates/*' - ...
fix(setup): Add missing `drw` files.
vinci1it2000_schedula
train
py
9ae46afb1a0100f912ed179b966f95594bdd79f4
diff --git a/src/create-trackers.js b/src/create-trackers.js index <HASH>..<HASH> 100644 --- a/src/create-trackers.js +++ b/src/create-trackers.js @@ -6,13 +6,6 @@ import { getTracker } from './helpers' export default function createTrackers () { const ids = getId() - if (!window.ga) { - window.ga = window.ga...
fix(trackers): lifecycle hook error window.ga was initialized after plugin api causing an error for a missing ga property closes #<I>
MatteoGabriele_vue-analytics
train
js,js
e5f4186ef8a1227ce0a6a26d68df67339b56e4d9
diff --git a/packages/mdc-switch/addon/components/mdc-switch.js b/packages/mdc-switch/addon/components/mdc-switch.js index <HASH>..<HASH> 100644 --- a/packages/mdc-switch/addon/components/mdc-switch.js +++ b/packages/mdc-switch/addon/components/mdc-switch.js @@ -3,6 +3,8 @@ import Component from '@ember/component'; i...
fix: The checked state was incorrect when control was updated between page changes
onehilltech_ember-cli-mdc
train
js
4c22d1d17ffd3a9340c3b17443c7989d04ab14c5
diff --git a/src/core/observer/traverse.js b/src/core/observer/traverse.js index <HASH>..<HASH> 100644 --- a/src/core/observer/traverse.js +++ b/src/core/observer/traverse.js @@ -18,7 +18,7 @@ export function traverse (val: any) { function _traverse (val: any, seen: SimpleSet) { let i, keys const isA = Array.isA...
fix: allow traversing reactive objects which are sealed (#<I>)
kaola-fed_megalo
train
js
e7854a28bf1fa1fc029a60910efb016e70946ee4
diff --git a/middlewares/attributes.js b/middlewares/attributes.js index <HASH>..<HASH> 100644 --- a/middlewares/attributes.js +++ b/middlewares/attributes.js @@ -72,10 +72,10 @@ function processAttributeWithoutHandler (attr, name) { function processAttributeWithHandler (handler, name) { const attr = currAttributes...
fix(attributes): fix shorthand attributes
nx-js_framework
train
js
bddd9928fcdb33c79e0289bcafef337359dee12b
diff --git a/lib/transports/polling-jsonp.js b/lib/transports/polling-jsonp.js index <HASH>..<HASH> 100644 --- a/lib/transports/polling-jsonp.js +++ b/lib/transports/polling-jsonp.js @@ -181,7 +181,7 @@ class JSONPPolling extends Polling { } catch (e) {} if (this.iframe.attachEvent) { - this.iframe.onr...
fix: fix JSONP transport on IE9 This fixes the following error: > Unable to get value of the property 'readyState': object is null or undefined Which was introduced in <URL>
socketio_engine.io-client
train
js
0a181470f7fea3b0a3508c05b73d82e49edb5136
diff --git a/config.js b/config.js index <HASH>..<HASH> 100644 --- a/config.js +++ b/config.js @@ -19,7 +19,7 @@ System.config({ "src": { "defaultExtension": "ts" }, - "materialize": { + "materialize-css": { "main": "dist/js/materialize" } },
feat: Use materialize-css instead of materialize, avoiding aliases and fixing Webpack and Angular CL BREAKING CHANGE: will require previous clients to update config to use materialize-css. README needs to be updated. #<I>
InfomediaLtd_angular2-materialize
train
js
dc9c1819aabe9706cb7b3419eb808939a4821812
diff --git a/src/resources/views/configuration/access/edit.blade.php b/src/resources/views/configuration/access/edit.blade.php index <HASH>..<HASH> 100644 --- a/src/resources/views/configuration/access/edit.blade.php +++ b/src/resources/views/configuration/access/edit.blade.php @@ -23,12 +23,13 @@ </a> ...
fix(ui): ensure tab structure is properly built
eveseat_web
train
php
42fa409c16484aa5f1b4f975f41776b8fa55ce75
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,8 +1,10 @@ +const path = require('path'); + module.exports = { - context: `${__dirname}/example`, + context: path.resolve(__dirname, 'example'), entry: './index.js', output: { - ...
chore(webpack): use path.resolve
willsoto_angular-chartist.js
train
js
928874e64552b9ecfc6c3a41ff55b899ea52e834
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -8,6 +8,9 @@ import polyfill from './array-reduce-polyfill'; * @ignore */ function isOldPrototype () { + // do not even try outside browser + if (!window) {return false;} + const prototype_version = g...
fix: prevent errors in NodeJS environment
fczbkk_array-reduce-prototypejs-fix
train
js
ced8f461fc50230490e1eba58e673671e137aaf0
diff --git a/query/functions/from.go b/query/functions/from.go index <HASH>..<HASH> 100644 --- a/query/functions/from.go +++ b/query/functions/from.go @@ -128,6 +128,7 @@ func newFromProcedure(qs query.OperationSpec, pa plan.Administration) (plan.Proc return &FromProcedureSpec{ Database: spec.Database, Bucket: ...
fix(query): fix passing down the bucket id in the from call The bucket id was not being copied when the from procedure was being created so it never showed up and the bucket id was not set.
influxdata_influxdb
train
go
8140249bd9ead2bf03be14c9156d56350cbff17d
diff --git a/src/image/roi/__tests__/getMask.js b/src/image/roi/__tests__/getMask.js index <HASH>..<HASH> 100644 --- a/src/image/roi/__tests__/getMask.js +++ b/src/image/roi/__tests__/getMask.js @@ -84,13 +84,14 @@ describe('Roi#getMask', function () { it('should work with convex hull', () => { const da...
test: slightly more complicated test for hullMask
image-js_image-js
train
js
2d1bac9666cdaab8227b3a1e482873570df36b83
diff --git a/packages/babel-helper-compilation-targets/src/index.js b/packages/babel-helper-compilation-targets/src/index.js index <HASH>..<HASH> 100644 --- a/packages/babel-helper-compilation-targets/src/index.js +++ b/packages/babel-helper-compilation-targets/src/index.js @@ -186,6 +186,9 @@ export default function g...
fix: search for browserslist if esmodules is falsy (#<I>) * fix: search for browserslist if esmodules is falsy closes #<I> * fix: delete falsy targets.esmodules * style: fix code style * fix: remove esmodules after being consumed
babel_babel
train
js
0811479764c11eb822b528c2dd96310e0603c255
diff --git a/src/popup/index.js b/src/popup/index.js index <HASH>..<HASH> 100644 --- a/src/popup/index.js +++ b/src/popup/index.js @@ -7,8 +7,8 @@ import { onMounted, Transition, onActivated, - onBeforeMount, onDeactivated, + onBeforeUnmount, } from 'vue'; import { createNamespace, isDef } from '../util...
fix(Popup): should remove lock scroll before destroyed #<I>
youzan_vant
train
js
c25b5f690d6b5538479574ff001f3ba8f61c201f
diff --git a/docs/_config/cakephpbranch.py b/docs/_config/cakephpbranch.py index <HASH>..<HASH> 100644 --- a/docs/_config/cakephpbranch.py +++ b/docs/_config/cakephpbranch.py @@ -9,7 +9,6 @@ the GitHub branch name of the docs' version. def setup(app): app.connect('html-page-context', append_template_ctx) app...
docs: fix issue in setup return
FriendsOfCake_crud-view
train
py
c82fc88267ce0dc5af6d2e1a347d1fb50c5affd1
diff --git a/packages/cozy-scripts/scripts/config.js b/packages/cozy-scripts/scripts/config.js index <HASH>..<HASH> 100644 --- a/packages/cozy-scripts/scripts/config.js +++ b/packages/cozy-scripts/scripts/config.js @@ -6,6 +6,6 @@ const path = require('path') /* PATHS, PROPS AND UTILS */ // app/node_modules/cozy-sc...
fix: allow for cozy-script to be linked
CPatchane_create-cozy-app
train
js
006b28ec821fdedd0f89cacf172f445b5b07732f
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 @@ -373,6 +373,7 @@ const options = [ 'composer', 'docker', 'hashicorp', + 'hex', 'loose', 'maven', 'node',
fix: add hex to allowed versionSchemes
renovatebot_renovate
train
js
51e49c0ad4167dd2c3a793146cd38cc17bc1684e
diff --git a/index.js b/index.js index <HASH>..<HASH> 100755 --- a/index.js +++ b/index.js @@ -5,6 +5,7 @@ export { default as BackButton } from './modules/BackButton' export { default as BottomNavigation } from './modules/BottomNavigation' export { default as NavBar } from './modules/NavBar' export { default as Nav...
fix(Navigation): export component
winoteam_react-router-navigation
train
js
74601d0341609d072c5350b63da515b9af54a095
diff --git a/src/components/dialog/dialog.js b/src/components/dialog/dialog.js index <HASH>..<HASH> 100644 --- a/src/components/dialog/dialog.js +++ b/src/components/dialog/dialog.js @@ -429,6 +429,7 @@ function MdDialogProvider($$interimElementProvider) { && $document[0].documentElement.scr...
fix(dialog): fix backdrop position with parent scrolled
angular_material
train
js
88455bf9ce5bca02d7ee771ba6147094dc090f7d
diff --git a/modules/router5.js b/modules/router5.js index <HASH>..<HASH> 100644 --- a/modules/router5.js +++ b/modules/router5.js @@ -395,7 +395,7 @@ class Router5 { */ _transition(toState, fromState, done) { // Cancel current transition - if (this._tr) this._tr(); + this.cancel(); ...
refactor: add cancel function on router instance
router5_router5
train
js,js
c1101389a3ca7be36220aeb981671a40fa76223a
diff --git a/build/js/Layout.js b/build/js/Layout.js index <HASH>..<HASH> 100644 --- a/build/js/Layout.js +++ b/build/js/Layout.js @@ -67,7 +67,7 @@ class Layout { const heights = { window: $(window).height(), - header: $(SELECTOR_HEADER).length > 0 && !$('body').hasClass('layout-navbar-fixed') ? $(S...
fix(js): body layout-fixed & layout-navbar-fixed calculates wrong minHeight
ColorlibHQ_AdminLTE
train
js
0519ac403b3476409d56d7a0acb975cf19df2093
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ from setuptools import find_packages, setup setup( name='gogo-utils', - version='1.8.1', + version='1.8.2', description='A utility library that generates service name convention details based ...
chore: Bump to <I> Fixes a bad deployment
foremast_gogo-utils
train
py
853cbf9baf1919fcc70ac6860d0743e92a3235b8
diff --git a/packages/react/src/components/Search/next/Search-test.js b/packages/react/src/components/Search/next/Search-test.js index <HASH>..<HASH> 100644 --- a/packages/react/src/components/Search/next/Search-test.js +++ b/packages/react/src/components/Search/next/Search-test.js @@ -124,6 +124,10 @@ describe('Search...
feat: add title to clear button Search (#<I>) * feat: add title to clear button Search * feat: update title and test case
carbon-design-system_carbon-components
train
js,js
93770cd3ff9b1a5161ac0d33c353daa694f77ab8
diff --git a/resources/modules/components/GDeleteLink.js b/resources/modules/components/GDeleteLink.js index <HASH>..<HASH> 100644 --- a/resources/modules/components/GDeleteLink.js +++ b/resources/modules/components/GDeleteLink.js @@ -22,7 +22,7 @@ class GDeleteLink extends React.Component { } getRefetchQueries...
chore: 更正refetchQueries
miaoxing_app
train
js
0604d05ab933922650d159cbe44a0d33ea64952f
diff --git a/lib/request.js b/lib/request.js index <HASH>..<HASH> 100644 --- a/lib/request.js +++ b/lib/request.js @@ -18,7 +18,7 @@ exports._envelope = envelope // Expose for testing only var request = function (agent, endpoint, payload, cb) { if (!agent.active) return cb() - if (process.env.ELASTIC_APM_DEBUG_P...
refactor(debug): rename ELASTIC_APM_DEBUG_PAYLOAD to DEBUG_PLAYLOAD (#<I>)
elastic_apm-agent-nodejs
train
js
bade1c7f18d60c3a35feffce0c310d3f8afbbff7
diff --git a/src/cobra/manipulation/modify.py b/src/cobra/manipulation/modify.py index <HASH>..<HASH> 100644 --- a/src/cobra/manipulation/modify.py +++ b/src/cobra/manipulation/modify.py @@ -58,17 +58,6 @@ def _escape_str_id(id_str: str) -> str: class _GeneEscaper(NodeTransformer): """Class to represent a gene ID...
refactor: remove __init__ from _GeneEscaper class
opencobra_cobrapy
train
py
b18f35d6c6c9aa8bd6c2364980bf9b345b2a913f
diff --git a/packages/vaex-core/vaex/functions.py b/packages/vaex-core/vaex/functions.py index <HASH>..<HASH> 100644 --- a/packages/vaex-core/vaex/functions.py +++ b/packages/vaex-core/vaex/functions.py @@ -108,6 +108,8 @@ maximum clip searchsorted isfinite +digitize +searchsorted """.strip().split()] for name, nu...
feat: support np.digitize and searchsorted as lazy functions
vaexio_vaex
train
py
ae6150e26a206215f1a94812506b434f04bbe9fc
diff --git a/src/pagination.js b/src/pagination.js index <HASH>..<HASH> 100644 --- a/src/pagination.js +++ b/src/pagination.js @@ -68,7 +68,7 @@ function pagination (vm, { crossChapter, routerMode }) { const path = routerMode === ROUTER_MODE.HISTORY ? vm.route.path : `#${vm.route.path}` - const al...
fix: change the CSS selector to support mergeNavbar option (#<I>)
imyelo_docsify-pagination
train
js
97f8846d7f851a62a755cc3bed31f57dbafb2be5
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Invenio. -# Copyright (C) 2015 CERN. +# Copyright (C) 2015, 2016 CERN. # # Invenio is free software; you can redistribute it # and/or modify i...
docs: sphinx update * FIX Fixes issue with newly released Sphinx <I>.
inveniosoftware_invenio-userprofiles
train
py
6e4e98add24156164250fbf1a5fef10d6a080c51
diff --git a/docs/src/examples/addons/TextArea/Usage/index.js b/docs/src/examples/addons/TextArea/Usage/index.js index <HASH>..<HASH> 100644 --- a/docs/src/examples/addons/TextArea/Usage/index.js +++ b/docs/src/examples/addons/TextArea/Usage/index.js @@ -9,7 +9,7 @@ const TextAreaUsageExamples = () => ( <Segment> ...
docs(TextArea): fix verbiage in TextArea docs (#<I>) Change the phrase "don't support more" to "don't support anymore" in the TextArea docs source, for proper English grammar
Semantic-Org_Semantic-UI-React
train
js
2c2fc3306c6b2af18b45a0f4dd986a72350cd9ce
diff --git a/src/Component/Progress/SimpleBar.php b/src/Component/Progress/SimpleBar.php index <HASH>..<HASH> 100644 --- a/src/Component/Progress/SimpleBar.php +++ b/src/Component/Progress/SimpleBar.php @@ -76,7 +76,7 @@ class SimpleBar extends NotifyMessage } $current += $step; - ...
fix: type error on issues #<I>
inhere_php-console
train
php
713c8e010131f56402729a52ec6d8a367426a682
diff --git a/src/tabs/index.js b/src/tabs/index.js index <HASH>..<HASH> 100644 --- a/src/tabs/index.js +++ b/src/tabs/index.js @@ -166,11 +166,11 @@ export default createComponent({ }, mounted() { - this.onShow(); + this.init(); }, activated() { - this.onShow(); + this.init(); this.setL...
chore(Tab): rename onShow to init (#<I>)
youzan_vant
train
js
b4bc084dc95e33c213c9af9ea7a0650265a3c574
diff --git a/plugins/Admin/templates/Products/index.php b/plugins/Admin/templates/Products/index.php index <HASH>..<HASH> 100644 --- a/plugins/Admin/templates/Products/index.php +++ b/plugins/Admin/templates/Products/index.php @@ -37,7 +37,7 @@ use Cake\Core\Configure; Configure::read('app.jsNamespace') . ...
fix: avoid js error if all manufacturers are selected
foodcoopshop_foodcoopshop
train
php
55760f8695352eaafce79914580b9feab502c938
diff --git a/lib/plugins/helper/relative_url.js b/lib/plugins/helper/relative_url.js index <HASH>..<HASH> 100644 --- a/lib/plugins/helper/relative_url.js +++ b/lib/plugins/helper/relative_url.js @@ -3,5 +3,5 @@ const { relative_url } = require('hexo-util'); module.exports = function(from, to) { - return relative_u...
refactor(relative_url): 'this' binding is not required
hexojs_hexo
train
js
2210651c658d345d90aa5289f1f8c49c7609265f
diff --git a/packages/__docs__/src/index.js b/packages/__docs__/src/index.js index <HASH>..<HASH> 100644 --- a/packages/__docs__/src/index.js +++ b/packages/__docs__/src/index.js @@ -29,7 +29,6 @@ import { App } from './App' import { canvas } from '@instructure/ui-themes' import { InstUISettingsProvider } from '@inst...
refactor: remove not needed import
instructure_instructure-ui
train
js
1bf71d24d1d008f661486238295d3a6208066987
diff --git a/biz/webui/htdocs/src/js/data-center.js b/biz/webui/htdocs/src/js/data-center.js index <HASH>..<HASH> 100644 --- a/biz/webui/htdocs/src/js/data-center.js +++ b/biz/webui/htdocs/src/js/data-center.js @@ -603,9 +603,7 @@ function setRawHeaders(obj) { } var rawHeaders = {}; Object.keys(headers).forEac...
refactor: remove x-whistle-https-request
avwo_whistle
train
js
8afdd213d1baa1c2145612ab6b5177b7d1dcf9d1
diff --git a/src/Hash/Facade.js b/src/Hash/Facade.js index <HASH>..<HASH> 100644 --- a/src/Hash/Facade.js +++ b/src/Hash/Facade.js @@ -76,13 +76,13 @@ class HashFacade { * @return {Hash} */ driver (name) { - name = name || this.Config.get('hash.driver') || 'bcrypt' + name = name || this.Config.get('has...
feat(hash): rename config file to be hashing.js
adonisjs_adonis-framework
train
js
212b671494e067c312482359bd983827e050769e
diff --git a/p2p/net/swarm/swarm.go b/p2p/net/swarm/swarm.go index <HASH>..<HASH> 100644 --- a/p2p/net/swarm/swarm.go +++ b/p2p/net/swarm/swarm.go @@ -17,8 +17,7 @@ import ( "github.com/libp2p/go-libp2p-core/peerstore" "github.com/libp2p/go-libp2p-core/transport" - logging "github.com/ipfs/go-log" - + logging "gi...
chore: update go-log to v2 (#<I>)
libp2p_go-libp2p
train
go,go
1832deb7d3f5c2fc30c64b7a2dbc6c93178ca173
diff --git a/tests/test_encoders.py b/tests/test_encoders.py index <HASH>..<HASH> 100644 --- a/tests/test_encoders.py +++ b/tests/test_encoders.py @@ -4,16 +4,18 @@ import pytest @pytest.fixture def pickle_encoder(): - encoder = dramatiq.PickleEncoder() - dramatiq.set_encoder(encoder) - yield encoder - ...
test: fix pickle encoder fixture
Bogdanp_dramatiq
train
py
4822a490951160a2e342e0127fbb55710b7408a1
diff --git a/lib/read-cache.js b/lib/read-cache.js index <HASH>..<HASH> 100644 --- a/lib/read-cache.js +++ b/lib/read-cache.js @@ -12,15 +12,14 @@ export default function (req) { } // override request end callback - req.end((err, res) => { - const callback = req.callback // main callback + ...
fix(cache): fix agent response override on cache hit
RasCarlito_axios-cache-adapter
train
js
bb388112da3b99fc18030913777beda7a77ab56d
diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index <HASH>..<HASH> 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -139,7 +139,7 @@ module.exports = { '/testing/': sidebar, '/building/': sidebar, '/demoing/': sidebar, - '/publishing/': sidebar, + ...
docs: add sidebar back to the deploying page (#<I>)
open-wc_open-wc
train
js
40a1276658c10ad53019dd144b2bdfb3229d5dd0
diff --git a/views/js/controller/viewResult.js b/views/js/controller/viewResult.js index <HASH>..<HASH> 100644 --- a/views/js/controller/viewResult.js +++ b/views/js/controller/viewResult.js @@ -56,7 +56,6 @@ define([ method: 'POST', data: { variableUri, deliveryUri } }) - ...
fix: do not feed the variable file data in case of error, and log the error without blocking the flow
oat-sa_extension-tao-outcomeui
train
js
36929c2a920a043edf0d17840d8961696ca55f06
diff --git a/public/app/plugins/datasource/elasticsearch/datasource.js b/public/app/plugins/datasource/elasticsearch/datasource.js index <HASH>..<HASH> 100644 --- a/public/app/plugins/datasource/elasticsearch/datasource.js +++ b/public/app/plugins/datasource/elasticsearch/datasource.js @@ -238,6 +238,7 @@ function (ang...
fix(elasticsearch): add support for text type filter in templating query, fixes #<I>, fixes #<I>
grafana_grafana
train
js
409ce0057c89be19d653d3b7a9492ac8fc893677
diff --git a/karma.conf.js b/karma.conf.js index <HASH>..<HASH> 100755 --- a/karma.conf.js +++ b/karma.conf.js @@ -103,23 +103,21 @@ module.exports = function(config) { client: { captureConsole: false, }, + coverageReporter: { + dir: 'coverage', + ...
test: add coverage for saucelabs
chialab_dna
train
js
7862fa767c6ec387dc74bff002cc84190e243050
diff --git a/packages/core/polyfills/polyfill-loader.js b/packages/core/polyfills/polyfill-loader.js index <HASH>..<HASH> 100644 --- a/packages/core/polyfills/polyfill-loader.js +++ b/packages/core/polyfills/polyfill-loader.js @@ -2,6 +2,7 @@ require('es6-promise').polyfill(); require('core-js/modules/es6.array.iterat...
chore: update Bolt Core polyfill loader to pull in the `starts with` polyfill from core-js. Fixes IE<I> JS error getting thrown in the live PL site's JavaScript
bolt-design-system_bolt
train
js
4fc53119f9fa69aeb2c1656514707d8f2dd161af
diff --git a/src/util.js b/src/util.js index <HASH>..<HASH> 100644 --- a/src/util.js +++ b/src/util.js @@ -19,7 +19,7 @@ function fixWebpackFilePath(filePath) { function fixWebpackSourcePaths(sourceMap) { return Object.assign({}, sourceMap, { - sources: sourceMap.sources.map(source => { + sources: (sourceMa...
fix: don't throw when there are no sources as part of the sourcemap Closes #<I>
mattlewis92_karma-coverage-istanbul-reporter
train
js
92c69e1602f300e8e1d91f6b1e0117fac43e1fff
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 @@ -235,7 +235,7 @@ module.exports = (api, options) => { isFir...
fix: should pass cwd as argument
vuejs_vue-cli
train
js
9cc3b999eab476901075e8c62f112471b5e6fa6c
diff --git a/src/parsebindings/index.js b/src/parsebindings/index.js index <HASH>..<HASH> 100644 --- a/src/parsebindings/index.js +++ b/src/parsebindings/index.js @@ -76,6 +76,7 @@ export default function parseBindings(object, givenNodes, eventOptions) { const { outerHTML, innerHTML, childNodes, attributes }...
fix: Uncommon issue at parseBindings appeared at Firefox
matreshkajs_matreshka
train
js
90c803ef5c7de372fc7eedcba88ed4c2a357c5d5
diff --git a/tasks/grunt-karma.js b/tasks/grunt-karma.js index <HASH>..<HASH> 100644 --- a/tasks/grunt-karma.js +++ b/tasks/grunt-karma.js @@ -19,8 +19,8 @@ module.exports = function(grunt) { var options = this.options({ background: false, // allow passing of cli args on as client args, for example -...
chore(refactor): use referenced optimist variable Optimist is assigned to a variable so use it
karma-runner_grunt-karma
train
js
8e60d62b7336883902e22cd898c2675f274e6938
diff --git a/src/PixelTypes.js b/src/PixelTypes.js index <HASH>..<HASH> 100644 --- a/src/PixelTypes.js +++ b/src/PixelTypes.js @@ -10,20 +10,26 @@ const SymmetricSecondRankTensor = 8 const DiffusionTensor3D = 9 const Complex = 10 const FixedArray = 11 -const Matrix = 12 +const Array = 12 +const Matrix = 13 +const Va...
feat(PixelTypes): Append with Mesh pixel types
InsightSoftwareConsortium_itk-js
train
js
52ccdd71bc8fc37cd1ec5ba7c07f4d05c8b45f51
diff --git a/lib/datasource/index.js b/lib/datasource/index.js index <HASH>..<HASH> 100644 --- a/lib/datasource/index.js +++ b/lib/datasource/index.js @@ -84,10 +84,11 @@ const manualSourceUrls = { async function getPkgReleases(purlStr, config) { const purl = parse(purlStr); if (!purl) { + logger.info({ purlS...
refactor: better log purl parse failures
renovatebot_renovate
train
js
f2f15c0650759de870d6048566dc5e32d736045b
diff --git a/lib/workers/branch/schedule.js b/lib/workers/branch/schedule.js index <HASH>..<HASH> 100644 --- a/lib/workers/branch/schedule.js +++ b/lib/workers/branch/schedule.js @@ -69,7 +69,7 @@ function isScheduledNow(config) { } const [validSchedule, errorMessage] = hasValidSchedule(configSchedule); if (!v...
fix: invalid schedule should only warn in logs (#<I>)
renovatebot_renovate
train
js
0d887227203d338b83e5fd45933a85c23c39013a
diff --git a/testing/test_pdb.py b/testing/test_pdb.py index <HASH>..<HASH> 100644 --- a/testing/test_pdb.py +++ b/testing/test_pdb.py @@ -5031,7 +5031,8 @@ def test_chained_syntaxerror_with_traceback(): set_trace() if sys.version_info > (3,): - if sys.version_info >= (3, 10, 0, "final"): # chan...
test: fix test specific to Python <I> (#<I>)
antocuni_pdb
train
py
f984432305fc2a5a4f1ac7d6edfca4623c6c8873
diff --git a/src/connection.js b/src/connection.js index <HASH>..<HASH> 100644 --- a/src/connection.js +++ b/src/connection.js @@ -507,7 +507,25 @@ function createRpcRequest(url): RpcRequest { }; try { - const res = await fetch(url, options); + let too_many_requests_retries = 5; + let res = {...
fix: retry after a brief delay upon a <I> response
solana-labs_solana-web3.js
train
js
ec6eb89252c592a8ae271d64baea564d5795e05a
diff --git a/test/Services/ServiceTest.php b/test/Services/ServiceTest.php index <HASH>..<HASH> 100644 --- a/test/Services/ServiceTest.php +++ b/test/Services/ServiceTest.php @@ -271,4 +271,22 @@ EOT; 'handler' => $h ], $s->getConfig()); } + + /** + * @expectedException \InvalidArgumen...
test: test that exception is thrown for setConfig method
davidtsadler_ebay-sdk-php
train
php
fcc2e044b1f9d1196cbfb90fd9601ab6ba854d95
diff --git a/cloudinit/workspace.go b/cloudinit/workspace.go index <HASH>..<HASH> 100644 --- a/cloudinit/workspace.go +++ b/cloudinit/workspace.go @@ -62,5 +62,5 @@ func PersistScriptInWorkspace(script Script, workspace string) (string, error) { func PersistScriptUnitNameInWorkspace(name string, workspace string) er...
fix(workspace): Persist scripts with proper file permissions
coreos_coreos-cloudinit
train
go
3cf2b68c34e06534589df74972ecec845b72d8d1
diff --git a/time/time.go b/time/time.go index <HASH>..<HASH> 100644 --- a/time/time.go +++ b/time/time.go @@ -27,7 +27,7 @@ func (t *Time) MarshalJSON() ([]byte, error) { // The time is expected to be in Deis' datetime format. func (t *Time) UnmarshalText(data []byte) (err error) { tt, err := time.Parse(DeisDateti...
fix(time): check explicitly for a time.ParseError
deis_pkg
train
go
0024e346bb43cb95edc491e3626dc983c097f4c5
diff --git a/create-cycle-app/index.js b/create-cycle-app/index.js index <HASH>..<HASH> 100755 --- a/create-cycle-app/index.js +++ b/create-cycle-app/index.js @@ -168,7 +168,7 @@ function installScripts (appFolder, appName, flavor, streamLib, verbose) { verbose && '--verbose', '--save-dev', '--save-exact...
fix(create-cycle-app): Flavor resolution
cyclejs-community_create-cycle-app
train
js
c177af0649ad097e41cfd0f17ccdfc7737e5a377
diff --git a/src/foremast/awslambda/cloudwatch_event/cloudwatch_event.py b/src/foremast/awslambda/cloudwatch_event/cloudwatch_event.py index <HASH>..<HASH> 100644 --- a/src/foremast/awslambda/cloudwatch_event/cloudwatch_event.py +++ b/src/foremast/awslambda/cloudwatch_event/cloudwatch_event.py @@ -95,4 +95,4 @@ def cre...
fix: Add rule name to INFO
foremast_foremast
train
py
82a188c8d929e1108382df96ceb2df1ff1ed00d8
diff --git a/src/components/navbar/config.js b/src/components/navbar/config.js index <HASH>..<HASH> 100644 --- a/src/components/navbar/config.js +++ b/src/components/navbar/config.js @@ -124,7 +124,7 @@ const itemsDashboard = { }; const itemsDiscounts = { - name: 'mcng-discounts', + name: 'application-discounts',...
fix(discounts): dangling mcng occurances
commercetools_merchant-center-application-kit
train
js
2be89e91cae8e231ae0d72abcdcb29060ed983b5
diff --git a/src/models/item.js b/src/models/item.js index <HASH>..<HASH> 100644 --- a/src/models/item.js +++ b/src/models/item.js @@ -3,8 +3,9 @@ import assert from 'assert'; import Collection from './collection'; export default class Item { - constructor({ id, parent, markdown, yaml, tags } = {}) { + constructo...
feat(item): track item ext, if instantiated from file
anulman_hyde
train
js,js
829dec4b7747807265b2155dfa9293857b463120
diff --git a/tests/test_vm.py b/tests/test_vm.py index <HASH>..<HASH> 100644 --- a/tests/test_vm.py +++ b/tests/test_vm.py @@ -4,6 +4,7 @@ import pyethereum.processblock as pb import pyethereum.blocks as blocks import pyethereum.transactions as transactions import pyethereum.utils as u +import pyethereum.bloom as bl...
fix: vm_test log,bloom
ethereum_pyethereum
train
py
87d29a18c6374dd45936b0464f67704494c84866
diff --git a/src/constants.js b/src/constants.js index <HASH>..<HASH> 100644 --- a/src/constants.js +++ b/src/constants.js @@ -21,9 +21,3 @@ export const LOGIN_STRATEGY_SSO = 'sso'; export const MCSupportFormURL = 'https://jira.commercetools.com/servicedesk/customer/portal/1/create/99'; - -// Permissions -export ...
fix: view and manage types permissions
commercetools_merchant-center-application-kit
train
js
7625287f31d8575c8c149272b78001d9e5265701
diff --git a/src/publish/publish.js b/src/publish/publish.js index <HASH>..<HASH> 100644 --- a/src/publish/publish.js +++ b/src/publish/publish.js @@ -32,7 +32,7 @@ module.exports = function publish(cmd) { }); }) .then(() => { - process.stdout.write(chalk.green('Upload OK!\n')); + p...
feat(Publish): consistenty first
patternsonio_cli
train
js
0a8d4a0ae295c634142f691d70930f5ed3917e6f
diff --git a/library/styleguideComponents/CopyToClipboard/index.js b/library/styleguideComponents/CopyToClipboard/index.js index <HASH>..<HASH> 100644 --- a/library/styleguideComponents/CopyToClipboard/index.js +++ b/library/styleguideComponents/CopyToClipboard/index.js @@ -29,7 +29,7 @@ export default class CopyToClip...
refactor: change CopyToClipboard size in library (#<I>)
90milesbridge_react-rainbow
train
js
8f35e06c0cd36a32f586bc958ba1e6a8097ffc83
diff --git a/packages/bonde-admin/routes-v1/index.js b/packages/bonde-admin/routes-v1/index.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin/routes-v1/index.js +++ b/packages/bonde-admin/routes-v1/index.js @@ -2,7 +2,10 @@ import React from 'react' import { BrowserRouter as Router, Route, Switch } from 'react...
fix(routes-v1): render zendesk, notification system and fonts
nossas_bonde-client
train
js
8e50b99d2c10ac1d6cfd7dbfd18027bfc5302505
diff --git a/lib/login/hub.js b/lib/login/hub.js index <HASH>..<HASH> 100644 --- a/lib/login/hub.js +++ b/lib/login/hub.js @@ -46,8 +46,9 @@ function getIdentity (hubhost, hubport) { }) xmppClient.on('error', function (e) { - debug('XMPP client error') - console.log('errorhub', e) + debug('XMPP client ...
fix(hub): Disconnect issue (MAX_CLIENTS=6) - Add error handler to the XMPP 'login' client - Reject promises in both error handlers - Enable auto-reconnection
swissmanu_harmonyhubjs-client
train
js
20ab9b77ad7df22043ce700be2a3bd86171ca13a
diff --git a/src/mixins/menuable.js b/src/mixins/menuable.js index <HASH>..<HASH> 100644 --- a/src/mixins/menuable.js +++ b/src/mixins/menuable.js @@ -234,7 +234,8 @@ export default { if (!this.hasWindow) { this.hasWindow = typeof window !== 'undefined' } - + }, + checkForPageYOffset () { ...
perf(menuable): Avoid layout trashing on menuable components mount (#<I>) fixes #<I>
vuetifyjs_vuetify
train
js
db64c5b400b5372e332f3d0245e8b23d1ebf87b9
diff --git a/packages/@vue/cli-service/lib/commands/build/resolveWcConfig.js b/packages/@vue/cli-service/lib/commands/build/resolveWcConfig.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli-service/lib/commands/build/resolveWcConfig.js +++ b/packages/@vue/cli-service/lib/commands/build/resolveWcConfig.js @@ -15,7 ...
feat: wc entry accepts multiple file patterns splited by ',' (#<I>)
vuejs_vue-cli
train
js
57e69140a497fb42509a90ceb3287463ed22ef13
diff --git a/webapps/ui/cockpit/plugins/base/app/views/dashboard/processes.js b/webapps/ui/cockpit/plugins/base/app/views/dashboard/processes.js index <HASH>..<HASH> 100644 --- a/webapps/ui/cockpit/plugins/base/app/views/dashboard/processes.js +++ b/webapps/ui/cockpit/plugins/base/app/views/dashboard/processes.js @@ -6...
chore(cockpit): show number of instances with incidents on dashboard related to CAM-<I>
camunda_camunda-bpm-platform
train
js
f30b3e990833eba6ad4b849de8a251c5067a01fa
diff --git a/packages/spacer/src/Spacer.stylesheet.js b/packages/spacer/src/Spacer.stylesheet.js index <HASH>..<HASH> 100644 --- a/packages/spacer/src/Spacer.stylesheet.js +++ b/packages/spacer/src/Spacer.stylesheet.js @@ -9,7 +9,9 @@ export default function stylesheet(props, themeData) { spacer: { width: p...
refactor: linter fix
Autodesk_hig
train
js
f6b2b561c5d5e083cd204df9564024cac163b611
diff --git a/lib/preprocessor.js b/lib/preprocessor.js index <HASH>..<HASH> 100644 --- a/lib/preprocessor.js +++ b/lib/preprocessor.js @@ -23,7 +23,7 @@ var isBinary = Object.create(null); 'rlc', 'mdi', 'wdp', 'npx', 'wbmp', 'xif', 'webp', '3ds', 'ras', 'cmx', 'fh', 'ico', 'pcx', 'pic', 'pnm', 'pbm', 'pgm', 'ppm'...
fix: add emscripten memory image as binary suffix Emscripten generates binary files with a .mem suffix which are used to initialize static data. This change makes Karma treat such files as binary, and hence not preprocess them.
karma-runner_karma
train
js
fd65cb31edfa6b28ca728dee9315db886bcfa71e
diff --git a/src/components/PriceRanges/__tests__/PriceRanges-test.js b/src/components/PriceRanges/__tests__/PriceRanges-test.js index <HASH>..<HASH> 100644 --- a/src/components/PriceRanges/__tests__/PriceRanges-test.js +++ b/src/components/PriceRanges/__tests__/PriceRanges-test.js @@ -98,7 +98,7 @@ describe('PriceRang...
fix(price-ranges): fix test
algolia_instantsearch.js
train
js
523480b34eec7908686b9eab6eaff8f4f0828f04
diff --git a/interpreter/library.js b/interpreter/library.js index <HASH>..<HASH> 100644 --- a/interpreter/library.js +++ b/interpreter/library.js @@ -70,4 +70,10 @@ Library.prototype.lookupInputs = function(name, scope) { return this.scopedLookup('lookupInputs', name, scope) || this.inputs[name]; }; +Library.p...
fix: Forgot to check in library check on impure functions
matthewtoast_runiq
train
js
8cd191dd39fc695dea172f592d1669ec90f5b0af
diff --git a/e2e/clientstate/clientstate.go b/e2e/clientstate/clientstate.go index <HASH>..<HASH> 100644 --- a/e2e/clientstate/clientstate.go +++ b/e2e/clientstate/clientstate.go @@ -42,6 +42,10 @@ type ClientStateTC struct { } func (tc *ClientStateTC) BeforeAll(f *framework.F) { + if os.Getenv("NOMAD_TEST_STATE") ...
test: properly skip client state in beforeall
hashicorp_nomad
train
go
67f6db0c6d80af90871d559f2af508655c0d6ffb
diff --git a/nfc/dev/acr122.py b/nfc/dev/acr122.py index <HASH>..<HASH> 100644 --- a/nfc/dev/acr122.py +++ b/nfc/dev/acr122.py @@ -38,11 +38,12 @@ class Chipset(pn53x.Chipset): frame = bytearray([0x6B, len(frame)] + 8 * [0x00]) + frame transport.write(frame) frame = transport.read(1000) - ...
fix: CCID RDR_to_PC_Escape message has a different slot status value when a card is already present - needed to change evaluation of the response
nfcpy_nfcpy
train
py
21bd5a5186dc25a9523ad8e7ec6275edbc79988e
diff --git a/lib/appium_lib_core/common/base/driver.rb b/lib/appium_lib_core/common/base/driver.rb index <HASH>..<HASH> 100644 --- a/lib/appium_lib_core/common/base/driver.rb +++ b/lib/appium_lib_core/common/base/driver.rb @@ -41,12 +41,12 @@ module Appium include ::Appium::Core::Waitable - private ...
fix: make bridge attribute non-private for flutter finder (#<I>)
appium_ruby_lib_core
train
rb
fc21966f787bbd46becd1ac0fb1c1d0ac591a7ae
diff --git a/src/server/controllers/get.js b/src/server/controllers/get.js index <HASH>..<HASH> 100644 --- a/src/server/controllers/get.js +++ b/src/server/controllers/get.js @@ -6,15 +6,13 @@ function get (req, res) { const providerName = req.params.providerName const id = req.params.id const body = req.body ...
refactor: remove unnecessary variable declarations
transloadit_uppy-server
train
js
285dedd6bea88ef5220e338a716761258d43711a
diff --git a/src/angular-bluebird-promises.js b/src/angular-bluebird-promises.js index <HASH>..<HASH> 100644 --- a/src/angular-bluebird-promises.js +++ b/src/angular-bluebird-promises.js @@ -58,6 +58,7 @@ $qBluebird.prototype.finally = function(finallyHandler, progressHandler) { return originalFinally.call(this, fin...
docs: add note about overriding the onPossiblyUnhandledRejection callback
mattlewis92_angular-bluebird-promises
train
js