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
1aa30a972ceb8331d6f6372565917966cf3fb8e1
diff --git a/pynubank/nubank.py b/pynubank/nubank.py index <HASH>..<HASH> 100644 --- a/pynubank/nubank.py +++ b/pynubank/nubank.py @@ -45,10 +45,10 @@ class Nubank: return self.client.post(self.discovery.get_url('login'), json=payload) def _find_url(self, known_keys: set, links: dict) -> str: - ...
fix: Use events when available instead of magnitude url
andreroggeri_pynubank
train
py
0d738f5b2015a934f58eb8a41d8223828fe1f1b2
diff --git a/lib/utils.js b/lib/utils.js index <HASH>..<HASH> 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -519,7 +519,7 @@ function resolveReadPreference(parent, options) { throw new Error('No readPreference was provided or inherited.'); } - return readPreference; + return typeof readPreference === 'str...
refactor: `resolveReadPreference` always returns a `ReadPreference` We use this method to optionally accept operation-level read preference overrides, but we were just accepting those methods passing in a string. This lets us ensure that we are _always_ dealing with a proper `ReadPreference` instance.
mongodb_node-mongodb-native
train
js
9bed39605a0cb840b5f2d6d6e2ecb6bd7ed1c9bd
diff --git a/src/Resources/config/intl.php b/src/Resources/config/intl.php index <HASH>..<HASH> 100644 --- a/src/Resources/config/intl.php +++ b/src/Resources/config/intl.php @@ -74,18 +74,21 @@ return static function (ContainerConfigurator $containerConfigurator): void { ->set('sonata.intl.helper.locale', '...
fix: Add missing kernel.local_aware tags for definitions that implement the LocaleAwareInterface (#<I>)
sonata-project_SonataIntlBundle
train
php
b9b026a78b1b4dc41a55a6696f669c81a81e9737
diff --git a/src/datepicker/datepicker.js b/src/datepicker/datepicker.js index <HASH>..<HASH> 100644 --- a/src/datepicker/datepicker.js +++ b/src/datepicker/datepicker.js @@ -5,6 +5,7 @@ import {inject} from 'aurelia-dependency-injection'; import {getLogger} from 'aurelia-logging'; import {getBooleanFromAttributeValu...
fix(md-datepicker): fire the blur event on close of the date picker The motivations are discuss on this pull request(<URL>)
aurelia-ui-toolkits_aurelia-materialize-bridge
train
js
a7d9f835f1cd22b4e0e82944df1b412d47e6c2f4
diff --git a/src/reducers/index.js b/src/reducers/index.js index <HASH>..<HASH> 100644 --- a/src/reducers/index.js +++ b/src/reducers/index.js @@ -60,18 +60,16 @@ export const getTriggerByKonnectorAndAccount = (state, konnector, account) => { } export const getTriggersByKonnector = (state, konnectorSlug) => { - co...
fix(Konnector): Don't crash if there is no trigger
cozy_cozy-home
train
js
2143fbba18d7b9b92c4b21169820585c4de7afe5
diff --git a/lib/model/index.js b/lib/model/index.js index <HASH>..<HASH> 100644 --- a/lib/model/index.js +++ b/lib/model/index.js @@ -12,5 +12,4 @@ module.exports = { findAll : require(path.resolve(path.join(__dirname, 'findAll'))), update : require(path.resolve(path.join(__dirname, 'update'))), destroy :...
chore(cleanup): Extra spacing
CleverStack_clever-orm
train
js
dd393e97af4010f184edf5f97f5131612fb7a112
diff --git a/robot-server/robot_server/robot/calibration/check/user_flow.py b/robot-server/robot_server/robot/calibration/check/user_flow.py index <HASH>..<HASH> 100644 --- a/robot-server/robot_server/robot/calibration/check/user_flow.py +++ b/robot-server/robot_server/robot/calibration/check/user_flow.py @@ -748,7 +74...
fix(robot-server): cal check: fix comparingHeight y-value (#<I>)
Opentrons_opentrons
train
py
cbe86a91b461589b2f310b2ee40153a699754784
diff --git a/core/commands/object/diff.go b/core/commands/object/diff.go index <HASH>..<HASH> 100644 --- a/core/commands/object/diff.go +++ b/core/commands/object/diff.go @@ -74,6 +74,10 @@ Example: } changes, err := api.Object().Diff(req.Context(), pa, pb) + if err != nil { + res.SetError(err, cmdkit.ErrNor...
fix(object): print object diff error License: MIT
ipfs_go-ipfs
train
go
c3ed06ce5fb9a814b9320e40499eea99358a8a0b
diff --git a/src/http-client.js b/src/http-client.js index <HASH>..<HASH> 100644 --- a/src/http-client.js +++ b/src/http-client.js @@ -107,7 +107,7 @@ function trackRequestEndWith(promise) { } function parseHeaderValues(headers) { - let parsedHeaders = {} + let parsedHeaders = {}; for (let name in headers || {...
fix(http-client): fix bug where default headers were sometimes not applied correctly
aurelia_fetch-client
train
js
ceed10d7511f5d4ff604bf6c61ad52916c2589d2
diff --git a/src/components/modal/modal.js b/src/components/modal/modal.js index <HASH>..<HASH> 100644 --- a/src/components/modal/modal.js +++ b/src/components/modal/modal.js @@ -137,7 +137,8 @@ class Modal extends mixin(createComponent, initComponentByLauncher, eventedShowH this._handleKeydownListener = this.ma...
fix(modal): prevent bubbling on ESC on inactive (#<I>) Fixes #<I>.
carbon-design-system_carbon-components
train
js
cc14ad0508767e90c4e32cf7f5e897c0d5c6537e
diff --git a/spec/contextmenu.spec.js b/spec/contextmenu.spec.js index <HASH>..<HASH> 100644 --- a/spec/contextmenu.spec.js +++ b/spec/contextmenu.spec.js @@ -50,7 +50,7 @@ describe('io.dennis.contextmenu', function() { $compile(element)($scope); expect($windowElementStub.on).toHaveBeenCalledWith( -...
fix(test): adjust event listener subscription
ds82_angular-contextmenu
train
js
3327c6d4c88ab5d3a8482692cd1653a74be50b58
diff --git a/packages/pg-v5/lib/util.js b/packages/pg-v5/lib/util.js index <HASH>..<HASH> 100644 --- a/packages/pg-v5/lib/util.js +++ b/packages/pg-v5/lib/util.js @@ -2,7 +2,6 @@ const cli = require('heroku-cli-util') const debug = require('./debug') -const getBastion = require('./bastion').getBastion const { sort...
fix(pg): connection pooling must be last for bastion support (#<I>) fixes circular dependency
heroku_cli
train
js
c848cdb32bfdbd1730e2b78baa5316992cd64c0d
diff --git a/tests/dummy/config/environment.js b/tests/dummy/config/environment.js index <HASH>..<HASH> 100644 --- a/tests/dummy/config/environment.js +++ b/tests/dummy/config/environment.js @@ -45,6 +45,7 @@ module.exports = function(environment) { if (environment === 'production') { ENV.baseURL = '/ember-bu...
docs(gh-pages): Fix refresh <I> with hash URL
open-tux_ember-bulma
train
js
2fa0f868dcdd5d86c2bce843c1575d7a0c541d9f
diff --git a/test/001-svg-dom.js b/test/001-svg-dom.js index <HASH>..<HASH> 100644 --- a/test/001-svg-dom.js +++ b/test/001-svg-dom.js @@ -61,6 +61,16 @@ describe ('svg document', () => { g.appendChild (circle); + var text = makeEl.call (svgDoc, 'text', { + id: 'text-1', + x: 5, + y: 5 + }...
test: text-anchor should affect bbox
svgdotjs_svgdom
train
js
ed274934b5771a6e8a62a4c18f44e8240d28bc14
diff --git a/lib/browser/cookie.js b/lib/browser/cookie.js index <HASH>..<HASH> 100644 --- a/lib/browser/cookie.js +++ b/lib/browser/cookie.js @@ -46,7 +46,7 @@ exports.setCookieValue = function setCookieValue(name, value, options) { name: name, value: value, path: '/', - domain: '127.0.0.1', + dom...
feat: set the cookie domain to the proxy host Now that testium-core supports non-local browsers, tunneled proxy ports might not be on <I> - this uses an explicitly defined proxy.host, falls back on proxy.tunnel.host, and then just uses the original <I>
testiumjs_testium-driver-wd
train
js,js
aaf2b8423801ebf85304ec4bca129bd57b3748d9
diff --git a/src/Leevel/Database/Database.php b/src/Leevel/Database/Database.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Database/Database.php +++ b/src/Leevel/Database/Database.php @@ -668,8 +668,6 @@ abstract class Database implements IDatabase, IConnection return $value; } - $valu...
refactor(database): normalizeColumnValue not need to tirm value
hunzhiwange_framework
train
php
0edcb617a5fc4b9a4c61366ef0562df2ba6cc00c
diff --git a/src/viterbi/ViterbiLattice.js b/src/viterbi/ViterbiLattice.js index <HASH>..<HASH> 100644 --- a/src/viterbi/ViterbiLattice.js +++ b/src/viterbi/ViterbiLattice.js @@ -26,7 +26,7 @@ var ViterbiNode = require("./ViterbiNode"); */ function ViterbiLattice() { this.nodes_end_at = []; - this.nodes_end_...
fix: give explicit empty string "surface_form" for BOS and EOS node
takuyaa_kuromoji.js
train
js
7c8032265606f23729cfe4f7d79af82c703278b9
diff --git a/front_end/ndb/FileSystemMapping.js b/front_end/ndb/FileSystemMapping.js index <HASH>..<HASH> 100644 --- a/front_end/ndb/FileSystemMapping.js +++ b/front_end/ndb/FileSystemMapping.js @@ -42,7 +42,8 @@ Ndb.FileSystemMapping = class { * @return {?Workspace.UILocation} */ rawLocationToUILocation(raw...
fix(frontend): rawLocation may return empty script (#<I>)
GoogleChromeLabs_ndb
train
js
f99dda77d8716846147a7daec6aef85f9b93258f
diff --git a/src/sequelize.js b/src/sequelize.js index <HASH>..<HASH> 100644 --- a/src/sequelize.js +++ b/src/sequelize.js @@ -60,4 +60,5 @@ yargs .wrap(yargs.terminalWidth()) .demandCommand(1, 'Please specify a command') .help() - .strict().argv; + .strict() + .recommendCommands().argv;
feat(yargs): recommend commands (#<I>)
sequelize_cli
train
js
915c2321c6d69cfbda82bb601c5c32693e2c2776
diff --git a/src/babel/index.js b/src/babel/index.js index <HASH>..<HASH> 100644 --- a/src/babel/index.js +++ b/src/babel/index.js @@ -38,17 +38,12 @@ module.exports = function(babel /*: any */) { let displayName; const parent = path.findParent( - p => - t.isObjectPropert...
fix: don't support defining components inside JSX
callstack_linaria
train
js
b7ee57796f245fc78a3e581b4519e8ac35e32834
diff --git a/src/Model/Payment/Transaction.php b/src/Model/Payment/Transaction.php index <HASH>..<HASH> 100644 --- a/src/Model/Payment/Transaction.php +++ b/src/Model/Payment/Transaction.php @@ -8,6 +8,7 @@ namespace Commercetools\Core\Model\Payment; use Commercetools\Core\Model\Common\JsonObject; use Commercetools\C...
feat(Payment): add state and id to payment transaction
commercetools_commercetools-php-sdk
train
php
01af1e9c2156818b5b8362fa2d8e1696f69cbb26
diff --git a/lib/TextBox.js b/lib/TextBox.js index <HASH>..<HASH> 100644 --- a/lib/TextBox.js +++ b/lib/TextBox.js @@ -124,6 +124,7 @@ TextBox.prototype.create = function(bounds, style, value, options) { position: 'absolute', overflow: 'visible', border: '1px solid #ccc', + boxSizing: 'border-box', ...
chore(TextBox): use box-sizing: border-box This corrects label positioning issues related to wrong calculation of the direct editing box.
bpmn-io_diagram-js-direct-editing
train
js
32302afcc554d24716d4c3e0948741fd718ccfdc
diff --git a/lib/build.js b/lib/build.js index <HASH>..<HASH> 100644 --- a/lib/build.js +++ b/lib/build.js @@ -103,6 +103,11 @@ module.exports = async function build (sourceDir, cliOptions = {}) { reject(new Error(`Failed to compile with errors.`)) return } + if (cliOptions.debug &...
chore: show warnings in build debug mode (#<I>)
vuejs_vuepress
train
js
93caa0212ce41ba4c8f7480c8227b9e8b77acf1f
diff --git a/src/IO/WebSocket/WslinkImageStream/index.js b/src/IO/WebSocket/WslinkImageStream/index.js index <HASH>..<HASH> 100644 --- a/src/IO/WebSocket/WslinkImageStream/index.js +++ b/src/IO/WebSocket/WslinkImageStream/index.js @@ -112,7 +112,9 @@ function wslinkImageStream(publicAPI, model) { publicAPI.viewCha...
fix(WslinkImageStream): Fix issue switching between local and remote rendering By relaxing this equality test, the string "<I>" will compare equal to the number <I> and vice-versa, which is the desired effect in this case.
Kitware_paraviewweb
train
js
94de0bf9cbd2118b5d9e57b85265afe5f6a8b1c7
diff --git a/lib/sign-in.js b/lib/sign-in.js index <HASH>..<HASH> 100644 --- a/lib/sign-in.js +++ b/lib/sign-in.js @@ -32,7 +32,7 @@ function signIn (state, options) { return internals.request({ url: state.url + '/session', method: 'PUT', - body: internals.serialise('Session', options) + bo...
fix: serialise Session with lowercase
hoodiehq_hoodie-account-client
train
js
c226d3d3c10d6f2907d7bd2e054e99bf2426c709
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -4,7 +4,7 @@ var path = require('path'); var arrify = require('arrify'); var assign = require('object-assign'); -var formatter = require('stylelint/lib/formatters/stringFormatter'); +var formatter = require('stylelint').for...
fix: use public API for stylelint formatters Resolves #<I>
webpack-contrib_stylelint-webpack-plugin
train
js
06553172c010af89fb56efa1ed8289ca627548a0
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -60,6 +60,7 @@ setup( version=version(), description='Fast read/write of AVRO files', long_description=open('README.md').read(), + long_description_content_type="text/markdown", author='Miki Tebeka', ...
fix: long description metadata added in order to display correct README.md on pypi
fastavro_fastavro
train
py
2e40fb8edc3d560c2f05b16df397bd4dcec3b72e
diff --git a/src/cli/commands/object/data.js b/src/cli/commands/object/data.js index <HASH>..<HASH> 100644 --- a/src/cli/commands/object/data.js +++ b/src/cli/commands/object/data.js @@ -17,7 +17,7 @@ module.exports = { throw err } - print(data.toString()) + print(data.toString(), false) ...
chore: do not add newlines to object data (#<I>)
ipfs_js-ipfs
train
js,js
906c999bb0cf7f47bd6f27d9b7f451f5667783cf
diff --git a/packages/plugin-phone/src/call.js b/packages/plugin-phone/src/call.js index <HASH>..<HASH> 100644 --- a/packages/plugin-phone/src/call.js +++ b/packages/plugin-phone/src/call.js @@ -808,6 +808,7 @@ const Call = SparkPlugin.extend({ @oneFlight // eslint-disable-next-line complexity _join(locusMetho...
fix(plugin-phone): Fix video/audio state issue on join
webex_spark-js-sdk
train
js
e67f04cf504972b5aaf614f966086398d78ffa3e
diff --git a/texture.js b/texture.js index <HASH>..<HASH> 100644 --- a/texture.js +++ b/texture.js @@ -142,7 +142,7 @@ function updateTexture2D(ctx, texture, opts) { data = opts.data ? opts.data.data || opts.data : null if (!opts.width && data && data.width) width = data.width - if (!opts.height && data ...
fix: assign to height instead of width in texture update Closes #<I>
pex-gl_pex-context
train
js
e848083c50cadc00965f59346485787b9fa3ffa4
diff --git a/packages/utiljs-privates/lib/Privates.js b/packages/utiljs-privates/lib/Privates.js index <HASH>..<HASH> 100644 --- a/packages/utiljs-privates/lib/Privates.js +++ b/packages/utiljs-privates/lib/Privates.js @@ -43,13 +43,6 @@ class Privates { return this.privates.get(thiz)[privatePart]; } - requi...
feat: delete Privates#require The require of the deleted method happens relative to the @util.js/privates package. This can be a problem. packages that use Privates should call require themselves.
creemama_utiljs
train
js
f1af86ab55b873e87a1d6bef2c0b02e133eba4a2
diff --git a/lib/cli/ensure-supported-command.js b/lib/cli/ensure-supported-command.js index <HASH>..<HASH> 100644 --- a/lib/cli/ensure-supported-command.js +++ b/lib/cli/ensure-supported-command.js @@ -25,10 +25,9 @@ const getCommandSuggestion = (command, commandsSchema) => { }; module.exports = (configuration = n...
fix(CLI): Unconditionally crash on unrecognized command As we cannot display any help for unrecognized command, obviously
serverless_serverless
train
js
f9a4abb6dc678436c731d26083bd401af6fd2641
diff --git a/scripts/git/commit-msg.js b/scripts/git/commit-msg.js index <HASH>..<HASH> 100755 --- a/scripts/git/commit-msg.js +++ b/scripts/git/commit-msg.js @@ -24,8 +24,8 @@ if (msgFile) { isValid = checkMsg(firstLine); if (!isValid) { - console.error('\nCheck CONTRIBUTING.md at the root of the re...
fix: missing semi-colon and empty line (#<I>) PR Close #<I>
angular_angular
train
js
dba79e47d4e02c8f1e08b663b66452948b66229a
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 @@ -100,6 +100,7 @@ export const validProps = [ 'range', 'showSlider', 'parseDate', + 'calendarInterval', // Map components 'unit', ];
feat(constants): added calendarinterval prop support in validProps constant
appbaseio_reactivecore
train
js
3d009b457336bdaf31bbebd7636d03dfca46f786
diff --git a/model/DeliveryAssemblyService.php b/model/DeliveryAssemblyService.php index <HASH>..<HASH> 100755 --- a/model/DeliveryAssemblyService.php +++ b/model/DeliveryAssemblyService.php @@ -59,6 +59,8 @@ class DeliveryAssemblyService extends OntologyClassService public const PROPERTY_ASSESSMENT_PROJECT_ID =...
feat: Override LanguageInterface when it's defined on Delivery level
oat-sa_extension-tao-delivery-rdf
train
php,php
6dbde4d61ca080c7e02de10e3202ad756a2f8222
diff --git a/lib/satcat.js b/lib/satcat.js index <HASH>..<HASH> 100644 --- a/lib/satcat.js +++ b/lib/satcat.js @@ -45,7 +45,8 @@ Satcat.prototype = { } this._stringBuffer = lines.shift() || '' - next() + + process.nextTick( next ) },
refactor(satcat): Process next chunk in next tick
jhermsmeier_node-satcat
train
js
bd91dca3ee29b73adc8dcfa3928275104be89786
diff --git a/tests/test_GEOparse.py b/tests/test_GEOparse.py index <HASH>..<HASH> 100755 --- a/tests/test_GEOparse.py +++ b/tests/test_GEOparse.py @@ -326,6 +326,7 @@ class TestGDS(unittest.TestCase): def test_get_geo_and_data(self): gds = GEO.get_GEO(geo="GDS507", destdir=download_geo) self.asse...
test: #<I> Wrong name in parse_GDS
guma44_GEOparse
train
py
f18145ac9c478645610bbda76e5dd25c765cc5d7
diff --git a/src/Charcoal/Queue/AbstractQueueManager.php b/src/Charcoal/Queue/AbstractQueueManager.php index <HASH>..<HASH> 100644 --- a/src/Charcoal/Queue/AbstractQueueManager.php +++ b/src/Charcoal/Queue/AbstractQueueManager.php @@ -436,6 +436,9 @@ abstract class AbstractQueueManager implements 'operator...
feat(queue-manager): add a filter to exclude expired queue items
locomotivemtl_charcoal-queue
train
php
d5f58fcb6ef4e5c17d72e4ef812f210ecb540fba
diff --git a/lib/manager/npm/registry.js b/lib/manager/npm/registry.js index <HASH>..<HASH> 100644 --- a/lib/manager/npm/registry.js +++ b/lib/manager/npm/registry.js @@ -7,7 +7,7 @@ const registryAuthToken = require('registry-auth-token'); const parse = require('github-url-from-git'); const os = require('os'); cons...
feat: allow configurable tmpdir for caching (#<I>)
renovatebot_renovate
train
js,js
86dbbcf85a6bace18cf15ccd76c2d53d00ebb329
diff --git a/test/test-pmctl.js b/test/test-pmctl.js index <HASH>..<HASH> 100755 --- a/test/test-pmctl.js +++ b/test/test-pmctl.js @@ -142,8 +142,14 @@ function test(port) { } else { failon('cpu-start 0', /CPU profiler unavailable/); } - expect('objects-start 1'); - expect('objects-stop 1'); + + if (proce...
test: objects-start/stop doesn't work without a license Disable that part of the test in the absence of a license.
strongloop_strong-pm
train
js
dddb7bb7e6a220c161e1c756b9554ca4f6aa48b3
diff --git a/biz/index.js b/biz/index.js index <HASH>..<HASH> 100644 --- a/biz/index.js +++ b/biz/index.js @@ -35,9 +35,9 @@ module.exports = function(req, res, next) { res.response(util.wrapResponse({ statusCode: err ? 500 : 404, headers: { - 'content-type': 'text/plain; chars...
refactor: text/plain -> text/html
avwo_whistle
train
js,js
70c0ea09518fd7f3e5c2eec55124ab9602639116
diff --git a/src/doc/hooks-interface.js b/src/doc/hooks-interface.js index <HASH>..<HASH> 100644 --- a/src/doc/hooks-interface.js +++ b/src/doc/hooks-interface.js @@ -87,6 +87,8 @@ * @borrows afterHook as CommandsHooks#roomLeaveAfter * @borrows beforeHook as CommandsHooks#roomMessageBefore * @borrows afterHook as...
docs: add missing hooks in the list
an-sh_chat-service
train
js
9dd257b5f50983f93eb67aca7955894e644d1c0f
diff --git a/courriers/admin.py b/courriers/admin.py index <HASH>..<HASH> 100644 --- a/courriers/admin.py +++ b/courriers/admin.py @@ -41,6 +41,9 @@ class NewsletterAdmin(admin.ModelAdmin): inlines = [NewsletterItemInline] form = NewsletterAdminForm + def get_queryset(self, request): + return supe...
fix: add missing select related on NewsletterAdmin
ulule_django-courriers
train
py
2f6dda2b7cff5e9161f5bc29deccfc820675216c
diff --git a/packages/mdc-notched-outline/index.js b/packages/mdc-notched-outline/index.js index <HASH>..<HASH> 100644 --- a/packages/mdc-notched-outline/index.js +++ b/packages/mdc-notched-outline/index.js @@ -63,7 +63,7 @@ class MDCNotchedOutline extends MDCComponent { } /** - * Updates outline selectors a...
docs(notched-outline): Remove remaining mention of SVG (#<I>)
material-components_material-components-web
train
js
03982635304159aa4238878776d56b43a385f620
diff --git a/src/components/VDataTable/mixins/body.js b/src/components/VDataTable/mixins/body.js index <HASH>..<HASH> 100644 --- a/src/components/VDataTable/mixins/body.js +++ b/src/components/VDataTable/mixins/body.js @@ -15,7 +15,7 @@ export default { const expand = this.$createElement('div', { cl...
fix(VDataTable): ensure expand slot is always an array fixes #<I>
vuetifyjs_vuetify
train
js
fd2058f6dcd1c854cc6760e6aa5c809c657a1073
diff --git a/src/CreateSignalFactory.js b/src/CreateSignalFactory.js index <HASH>..<HASH> 100644 --- a/src/CreateSignalFactory.js +++ b/src/CreateSignalFactory.js @@ -184,6 +184,8 @@ module.exports = function (signalStore, recorder, devtools, controller, model, s action.output = result.arg ...
fix(signalFactory): emit signal and actions events in correct order
cerebral_cerebral
train
js
dff47721ceb62ebb96999db54af67015dd690ade
diff --git a/http/api_handler.go b/http/api_handler.go index <HASH>..<HASH> 100644 --- a/http/api_handler.go +++ b/http/api_handler.go @@ -163,6 +163,7 @@ func NewAPIHandler(b *APIBackend, opts ...APIHandlerOptFn) *APIHandler { orgBackend := NewOrgBackend(b.Logger.With(zap.String("handler", "org")), b) orgBackend...
fix(secrets): wrap secrets service in authorizer (#<I>)
influxdata_influxdb
train
go
52289829d504f424614de507af6a1b580ff8883d
diff --git a/Doctrineum/EnumType.php b/Doctrineum/EnumType.php index <HASH>..<HASH> 100644 --- a/Doctrineum/EnumType.php +++ b/Doctrineum/EnumType.php @@ -10,8 +10,7 @@ use Doctrine\DBAL\Types\Type; */ class EnumType extends Type { - // class constant doesn't change by inheritance; you can control it by platform...
fix: Namespaced class name as a Doctrine type wasn't the best idea...
doctrineum_doctrineum-scalar
train
php
0adb41d31bed16cc948151cbe2d1331f62af2cd7
diff --git a/ui/src/components/page-scroller/QPageScroller.js b/ui/src/components/page-scroller/QPageScroller.js index <HASH>..<HASH> 100644 --- a/ui/src/components/page-scroller/QPageScroller.js +++ b/ui/src/components/page-scroller/QPageScroller.js @@ -34,20 +34,20 @@ export default defineComponent({ let heigh...
fix(QPageScroller): "reverse" prop not working correctly
quasarframework_quasar
train
js
275f4e8c61ed875e460e3e81899d838fbef51e54
diff --git a/epab/utils/_console.py b/epab/utils/_console.py index <HASH>..<HASH> 100644 --- a/epab/utils/_console.py +++ b/epab/utils/_console.py @@ -4,19 +4,29 @@ Manages output functions """ import click +import io + + +def _sanitize(input_: str): + in_stream = input_.encode('utf8') + return in_stream.deco...
fix: sanitize console output
etcher-be_epab
train
py
b17acf8b315825d659f461fdb26cac08aad3603b
diff --git a/query/stdlib/testing/end_to_end_test.go b/query/stdlib/testing/end_to_end_test.go index <HASH>..<HASH> 100644 --- a/query/stdlib/testing/end_to_end_test.go +++ b/query/stdlib/testing/end_to_end_test.go @@ -187,6 +187,11 @@ func testFlux(t testing.TB, l *launcher.TestLauncher, file *ast.File) { if err := ...
fix: Ensure temporary bucket and test data is removed after each test This is required to keep the system resources low when running the Flux end-to-end tests, which create a bucket for each test. A bucket creates at least <I> files after the first write: * 8 for the `_series` segment files * 8 for the `index` log fi...
influxdata_influxdb
train
go
b8feea34d4c7648475580219d91dcb0c1b2d2235
diff --git a/src/Table/Tr.js b/src/Table/Tr.js index <HASH>..<HASH> 100644 --- a/src/Table/Tr.js +++ b/src/Table/Tr.js @@ -38,7 +38,7 @@ class Tr extends React.Component { // eslint-disable-line react/prefer-stateless const classes = cn( className, - color ? `table-${color}` : false, + { [`table...
fix(Tr): fixed className issue.
bootstrap-styled_v4
train
js
2e230e6bf4b57f70ec95eabaa905042b8165a17d
diff --git a/plugins/inputs/procstat/procstat.go b/plugins/inputs/procstat/procstat.go index <HASH>..<HASH> 100644 --- a/plugins/inputs/procstat/procstat.go +++ b/plugins/inputs/procstat/procstat.go @@ -474,7 +474,7 @@ func (p *Procstat) simpleSystemdUnitPIDs() ([]PID, error) { if len(kv[1]) == 0 || bytes.Equal(kv[1...
fix: Correct conversion of int with specific bit size (#<I>)
influxdata_telegraf
train
go
7ab046cc4504061b1958cb1a5497f6aac540757e
diff --git a/src/Leevel/Router/Router.php b/src/Leevel/Router/Router.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Router/Router.php +++ b/src/Leevel/Router/Router.php @@ -299,7 +299,7 @@ class Router implements IRouter $data = $this->mergeMatchedData($data, $preRequestMatched); } if (...
fix(router): Fix router matched data
hunzhiwange_framework
train
php
5e2f1fee46884186aef11e8e7e26f0e74f8aea39
diff --git a/plugins/fontsize/trumbowyg.fontsize.js b/plugins/fontsize/trumbowyg.fontsize.js index <HASH>..<HASH> 100644 --- a/plugins/fontsize/trumbowyg.fontsize.js +++ b/plugins/fontsize/trumbowyg.fontsize.js @@ -154,7 +154,7 @@ fontsizes: { 'x-small': '아주 작게', ...
feat: fix some korean translation
Alex-D_Trumbowyg
train
js,js
469cb7a51421f35739ccd2b9e308539efe428306
diff --git a/packages/tab/src/react/list.js b/packages/tab/src/react/list.js index <HASH>..<HASH> 100644 --- a/packages/tab/src/react/list.js +++ b/packages/tab/src/react/list.js @@ -9,7 +9,7 @@ import { withTheme } from '@pluralsight/ps-design-system-theme/react' import css from '../css/index.js' import useResizeObs...
fix(tab): firefox has enough time to recalc overflow
pluralsight_design-system
train
js
51d99777add0aa3f2d7452469c57012ec0cfca9b
diff --git a/pymatgen/analysis/phase_diagram.py b/pymatgen/analysis/phase_diagram.py index <HASH>..<HASH> 100644 --- a/pymatgen/analysis/phase_diagram.py +++ b/pymatgen/analysis/phase_diagram.py @@ -353,9 +353,7 @@ class BasePhaseDiagram(MSONable): @classmethod def _kwargs_from_entries(cls, entries, elements)...
refactor: clearner element set in PD using generator
materialsproject_pymatgen
train
py
e63d574815dc6ddcdd19b3a425bb7fc8db6d8443
diff --git a/src/Adapter.php b/src/Adapter.php index <HASH>..<HASH> 100644 --- a/src/Adapter.php +++ b/src/Adapter.php @@ -335,7 +335,7 @@ class Adapter extends AbstractAdapter $response = $this->client->listObjects([ 'Bucket' => $this->getBucket(), - 'Prefix' => empty($director...
fix: listContents recursive
freyo_flysystem-qcloud-cos-v5
train
php
39bed67ecde6b27bdbe240e993a78f88cce6b6ac
diff --git a/lib/inspectors/req.js b/lib/inspectors/req.js index <HASH>..<HASH> 100644 --- a/lib/inspectors/req.js +++ b/lib/inspectors/req.js @@ -112,16 +112,17 @@ function handleParams(req, params) { } chunk = iconv.encode(body, 'GB18030'); } else { - if (isJson) { - ...
feat: reqParams
avwo_whistle
train
js
7bcc521abbd96e3ca15e2ce31b4ce7a91dbc2dcf
diff --git a/tests/Unit/CacheKeyTest.php b/tests/Unit/CacheKeyTest.php index <HASH>..<HASH> 100644 --- a/tests/Unit/CacheKeyTest.php +++ b/tests/Unit/CacheKeyTest.php @@ -147,4 +147,15 @@ class CacheKeyTest extends TestCase $secondPostCacheKey->make(null, false, 'some-collection') ); } + + ...
test: viewable type for cache key
cyrildewit_eloquent-viewable
train
php
2335c441de076f8d45c369ae26e6db64c3473af6
diff --git a/src/components/Tabs/Tabs.js b/src/components/Tabs/Tabs.js index <HASH>..<HASH> 100644 --- a/src/components/Tabs/Tabs.js +++ b/src/components/Tabs/Tabs.js @@ -115,9 +115,10 @@ export default class Tabs extends React.Component { return React.Children.map(this.props.children, tab => tab); } - getTa...
fix(Tabs): avoid stale tab ref cache (#<I>) The problem happens when `selected` and `children` changes at the same time. Fixes #<I>.
carbon-design-system_carbon-components-react
train
js
05d5356d29491301ee1fe0c5752972e4e2ab5088
diff --git a/test/test_helper.rb b/test/test_helper.rb index <HASH>..<HASH> 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -2,8 +2,11 @@ require("simplecov") require("codecov") +require("minitest/reporters") if ENV["COVERAGE"] + Minitest::Reporters.use! [Minitest::Reporters::SpecReporter.new, Min...
refactor(test_helper): Adjust test_helper reporter for use in CI
watson-developer-cloud_ruby-sdk
train
rb
a460aaf41d49f8a68772cec7b1e194bd8fc2f838
diff --git a/test/e2e_node/summary_test.go b/test/e2e_node/summary_test.go index <HASH>..<HASH> 100644 --- a/test/e2e_node/summary_test.go +++ b/test/e2e_node/summary_test.go @@ -124,7 +124,7 @@ var _ = SIGDescribe("Summary API [NodeConformance]", func() { "WorkingSetBytes": bounded(10*e2evolume.Kb, memoryLimit), ...
test: adjust number of expected page faults
kubernetes_kubernetes
train
go
e7c2c58c810c71be1b235bfa5cf291392ffc0689
diff --git a/packages/node_modules/samples/browser-call-with-screenshare/test/wdio/spec/normal-dialing.js b/packages/node_modules/samples/browser-call-with-screenshare/test/wdio/spec/normal-dialing.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/samples/browser-call-with-screenshare/test/wdio/spec/normal-dia...
test(samples): fix GH test by changing timeout
webex_spark-js-sdk
train
js
a83712e53226cef288bcdb57b5f5a87b2946416f
diff --git a/src/Console/CodeAnalyseCommand.php b/src/Console/CodeAnalyseCommand.php index <HASH>..<HASH> 100644 --- a/src/Console/CodeAnalyseCommand.php +++ b/src/Console/CodeAnalyseCommand.php @@ -48,7 +48,11 @@ final class CodeAnalyseCommand extends Command ]; $process = new Process(implode(' ', ...
fix: usage in enviroments without tty - closes #3
nunomaduro_larastan
train
php
ada116f80e292ef84fd3f4da08d9b8525adbb5f1
diff --git a/tools/gh-pages-publish.js b/tools/gh-pages-publish.js index <HASH>..<HASH> 100755 --- a/tools/gh-pages-publish.js +++ b/tools/gh-pages-publish.js @@ -36,7 +36,7 @@ if (process.env["TRAVIS_BRANCH"] !== "master" || process.env["TRAVIS_PULL_REQUES } let repoUrl -let pkg = JSON.parse(readFileSync("package....
docs: fix gh-pages-publish, freaking please :-(
funfix_funfix
train
js
4f1442c10375a18ec5db4337aebba502316b6d1d
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -8,6 +8,10 @@ module.exports = { }; function addAsync(app) { + app.routeAsync = function() { + return addAsync(this.route.apply(this, arguments)); + }; + app.useAsync = function() { const fn = arguments[argume...
feat: add `routeAsync()` to support chaining syntax with `getAsync()`, etc Fix #9
vkarpov15_awaitjs-express
train
js,js
8369f903e94be6f60d9a35c938bb74fd6c448fe6
diff --git a/packages/bonde-admin-canary/src/services/auth/AuthProvider.js b/packages/bonde-admin-canary/src/services/auth/AuthProvider.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin-canary/src/services/auth/AuthProvider.js +++ b/packages/bonde-admin-canary/src/services/auth/AuthProvider.js @@ -36,7 +36,8 @@...
fix(canary): add jwt expired on errors try login
nossas_bonde-client
train
js
65de1403ec632307aeaf08007ac3b4eb899c1899
diff --git a/Config/Configuration.php b/Config/Configuration.php index <HASH>..<HASH> 100755 --- a/Config/Configuration.php +++ b/Config/Configuration.php @@ -50,7 +50,11 @@ class Configuration // TODO allow this missing with outputBucket in place if (empty($configYml['id'])) { - throw new UserException("Miss...
feat: make config.id optional with outputBucket in place
keboola_juicer
train
php
f18ed0618eee0e1fa006cb4e92dc8831ed9c6c06
diff --git a/lib/plugins/index.js b/lib/plugins/index.js index <HASH>..<HASH> 100644 --- a/lib/plugins/index.js +++ b/lib/plugins/index.js @@ -320,7 +320,7 @@ function addRuleHeaders(req, rules, headers) { if (pac) { headers[PAC_VALUE_HEADER] = pac; } - if (req.realUrl) { + if (req.realUrl && req.realUrl !...
refactor: send real url to plugin server
avwo_whistle
train
js
caa4a019b566256979c757e6ea3da4b6e8280efa
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -62,7 +62,7 @@ function convert(program, callback) { themeStyle: program.themeStyle, locals: { livePreview: program.server, - host: ((schema.schemes && schema.schemes.length > 0) ? + host:...
fix(converter): don't display url if no host defined
psastras_swagger2aglio
train
js
2e1272348700d1a546832912e49ad9511dfe506e
diff --git a/protocol-designer/src/labware-ingred/reducers/index.js b/protocol-designer/src/labware-ingred/reducers/index.js index <HASH>..<HASH> 100644 --- a/protocol-designer/src/labware-ingred/reducers/index.js +++ b/protocol-designer/src/labware-ingred/reducers/index.js @@ -91,7 +91,7 @@ type ContainersState = { c...
feat(protocol-designer): make default trash labware 'fixed-trash' not 'trash-box' (#<I>) previous behavior used 'trash-box' which causes misalignment with actual trash on deck unticketed bugfix
Opentrons_opentrons
train
js
c7160587b1c2c07b6bfcad41cc60027f4061fe76
diff --git a/packages/pob-release/lib/index.js b/packages/pob-release/lib/index.js index <HASH>..<HASH> 100755 --- a/packages/pob-release/lib/index.js +++ b/packages/pob-release/lib/index.js @@ -104,11 +104,19 @@ Promise.resolve(argv._[0]) }); }) .then((version) => { - /* VERSION */ - execSync(`npm v...
fix: run preversion script with yarn
christophehurpeau_pob-lerna
train
js
600e2846a6536f1c76a15e73c35300525b0204fa
diff --git a/examples/gh-pages/scripts/client.js b/examples/gh-pages/scripts/client.js index <HASH>..<HASH> 100644 --- a/examples/gh-pages/scripts/client.js +++ b/examples/gh-pages/scripts/client.js @@ -1,3 +1,4 @@ +import "babel-core/polyfill"; import React from "react"; import ReactDOM from "react-dom";
docs(gh-pages): add babel-core/polyfill to client.js * Closes #<I>
tomchentw_react-toastr
train
js
1af869bd5a289e9873eefb2fd3a3a86806568356
diff --git a/huawei_lte_api/Tools.py b/huawei_lte_api/Tools.py index <HASH>..<HASH> 100644 --- a/huawei_lte_api/Tools.py +++ b/huawei_lte_api/Tools.py @@ -60,4 +60,4 @@ class Tools: @staticmethod def filter_dict(filtered_dict: dict, wanted_keys: Tuple[str, ...]): - return dict([(i, filtered_dict[i]) ...
feat(Tools): Simplify filter_dict
Salamek_huawei-lte-api
train
py
0bfceafa4e6b4750439ab0ed20c61b0a6ba03a1f
diff --git a/renku/core/commands/workflow.py b/renku/core/commands/workflow.py index <HASH>..<HASH> 100644 --- a/renku/core/commands/workflow.py +++ b/renku/core/commands/workflow.py @@ -462,11 +462,17 @@ def execute_workflow( """Execute a Run with/without subprocesses.""" client = client_dispatcher.current_c...
fix(core): check workflow execute inputs (#<I>) fix #<I>
SwissDataScienceCenter_renku-python
train
py
61633fa640793c344748efdf790a56456fad8e2f
diff --git a/lib/meta/module.js b/lib/meta/module.js index <HASH>..<HASH> 100755 --- a/lib/meta/module.js +++ b/lib/meta/module.js @@ -109,7 +109,7 @@ function generateMeta (pwa) { const favicon = join(this.options.srcDir, this.options.dir.static, 'favicon.ico') if (options.favicon && !find(this.options.head.li...
fix(icon): update warning url to docs (#<I>)
nuxt-community_pwa-module
train
js
afb3c909354516f91cd6739ee0608efc0cbc3830
diff --git a/grappa/__init__.py b/grappa/__init__.py index <HASH>..<HASH> 100755 --- a/grappa/__init__.py +++ b/grappa/__init__.py @@ -40,4 +40,4 @@ __author__ = 'Tomas Aparicio' __license__ = 'MIT' # Current package version -__version__ = '0.1.12' +__version__ = '1.0.0'
feat(version): bump major v1
grappa-py_grappa
train
py
fdc576275264238b313e06ca558d95f0274e63dc
diff --git a/lib/ReactDocumentEvents.js b/lib/ReactDocumentEvents.js index <HASH>..<HASH> 100644 --- a/lib/ReactDocumentEvents.js +++ b/lib/ReactDocumentEvents.js @@ -1,7 +1,11 @@ 'use strict'; var React = require('react'); -var EventKeys = require('./events'); // array of event names var NODE_ENV = process.env.NODE...
feat(bundle): Exclude EventKeys require() in production
STRML_react-document-events
train
js
c90a7bd73dd84b4422a5699ffb996f24ec868d01
diff --git a/src/components/hash-navigation/hash-navigation.js b/src/components/hash-navigation/hash-navigation.js index <HASH>..<HASH> 100644 --- a/src/components/hash-navigation/hash-navigation.js +++ b/src/components/hash-navigation/hash-navigation.js @@ -103,7 +103,7 @@ export default { swiper.hashNavigati...
fix(hash-navigation): fixed issue when using with freeMode without transition fixes #<I>
nolimits4web_swiper
train
js
724b4eb9183d5f5c6debd426c2431a9f2e402002
diff --git a/scripts/update-example-deps.js b/scripts/update-example-deps.js index <HASH>..<HASH> 100644 --- a/scripts/update-example-deps.js +++ b/scripts/update-example-deps.js @@ -88,7 +88,7 @@ async function main () { } console.info('Pushing updated dependencies') - await execa('git', ['commit', '-m', '"ch...
chore: fix commit message for updating example deps (#<I>) Removes extraneous quotation marks as they are not needed.
ipfs_js-ipfs
train
js
35c254973e9705d2b50919eb54c1c79aeaefc700
diff --git a/src/lib/apiGatewayCore/simpleHttpClient.js b/src/lib/apiGatewayCore/simpleHttpClient.js index <HASH>..<HASH> 100755 --- a/src/lib/apiGatewayCore/simpleHttpClient.js +++ b/src/lib/apiGatewayCore/simpleHttpClient.js @@ -90,10 +90,10 @@ simpleHttpClientFactory.newClient = (config) => { } else if (typeo...
fix: Retry fails if retry condition not explicitly defined, should fall back to axiosRetry default if undefined or not a function.
kndt84_aws-api-gateway-client
train
js
a275a7a17def85ff0b41d254e4ee42772cce1981
diff --git a/semantic_release/cli.py b/semantic_release/cli.py index <HASH>..<HASH> 100644 --- a/semantic_release/cli.py +++ b/semantic_release/cli.py @@ -318,14 +318,20 @@ def publish(**kwargs): logger.warning("Missing token: cannot post changelog to HVCS") # Upload to GitHub Releases - ...
fix: print right info if token is not set (#<I>) (#<I>)
relekang_python-semantic-release
train
py
a9bcd9d835033ada9ffa27e2ac10dea4baf29c0e
diff --git a/lib/components/viewers/stop-viewer.js b/lib/components/viewers/stop-viewer.js index <HASH>..<HASH> 100644 --- a/lib/components/viewers/stop-viewer.js +++ b/lib/components/viewers/stop-viewer.js @@ -217,7 +217,7 @@ class StopViewer extends Component { <div> <FormattedMessage ...
fix(stop-viewer): use stop code as ID when applicable
opentripplanner_otp-react-redux
train
js,js
7553ea7d8832e8a251d2385b58d84cdc2d22b163
diff --git a/src/operators/set.js b/src/operators/set.js index <HASH>..<HASH> 100644 --- a/src/operators/set.js +++ b/src/operators/set.js @@ -9,7 +9,7 @@ export default function (path, value) { throw new Error('Cerebral operator SET - The path: "' + path + '" does not target "state"') } - if (valueScheme.ta...
fix(Operators): fix set value where it is null
cerebral_cerebral
train
js
18930498434d8bc0254fa1db013346443a96e9f5
diff --git a/packages/web/app.js b/packages/web/app.js index <HASH>..<HASH> 100644 --- a/packages/web/app.js +++ b/packages/web/app.js @@ -62,8 +62,8 @@ class AppBootHook { this.app.use(mwIns); } else { // egg - const options = this.app.config[name]; - if (options && options.enabl...
fix: when middleware config options is undefined, options.match (#<I>)
midwayjs_midway
train
js
61dd58195da65dc247970a716a8fde470e0b556e
diff --git a/lib/Syncable.js b/lib/Syncable.js index <HASH>..<HASH> 100644 --- a/lib/Syncable.js +++ b/lib/Syncable.js @@ -764,7 +764,7 @@ Syncable.extend(Syncable, { // :P specs.sort().reverse(); // there will be some replays, but those will be ignored while (a_spec = specs.pop(...
fix: replay source is "this"
gritzko_swarm
train
js
666fabc5ac48b578496ccc92d3081c2850a1b23c
diff --git a/src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java b/src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java +++ b/src/main/java...
fix: deleteScrollContext
codelibs_fess-suggest
train
java
567438fdd1aa775fd09a6a5de13e79c9d783e0d6
diff --git a/packages/netlify-cms-locales/src/de/index.js b/packages/netlify-cms-locales/src/de/index.js index <HASH>..<HASH> 100644 --- a/packages/netlify-cms-locales/src/de/index.js +++ b/packages/netlify-cms-locales/src/de/index.js @@ -41,7 +41,7 @@ const de = { collectionTop: { sortBy: 'Sortieren nach',...
fix(locales-de): fix newButton translation (#<I>) (#<I>) The translation of newButton is supposed to be Neue(r/s), because there are 3 possible cases: Neue Blume Neuer Artikel Neues Tier
netlify_netlify-cms
train
js
15549525494c2b7318357ffd9880ec43c22dc89f
diff --git a/src/js/components/Animate.js b/src/js/components/Animate.js index <HASH>..<HASH> 100644 --- a/src/js/components/Animate.js +++ b/src/js/components/Animate.js @@ -156,7 +156,14 @@ export default class Animate extends Component { } _listenForScroll () { - this._scrollParents = findScrollParents(th...
fix: using DOM element in _listenForScroll() when the component's par… (#<I>) * fix: using DOM element in _listenForScroll() when the component's parent is undefined
grommet_grommet
train
js
e956cb0f8275c8289f74f21c8e9fa0972d805c1a
diff --git a/src/ui-layout.js b/src/ui-layout.js index <HASH>..<HASH> 100644 --- a/src/ui-layout.js +++ b/src/ui-layout.js @@ -395,6 +395,9 @@ angular.module('ui.layout', []) var newIndex = ctrl.containers.indexOf(container); if(newIndex >= 0) { ctrl.containers.splice(newIndex, 1); + ...
fix: Remove all size options along with the container. closes #<I>
angular-ui_ui-layout
train
js
9400cc8e96a0e22c43829854ffca1ff09bfd13f6
diff --git a/lib/enhance.js b/lib/enhance.js index <HASH>..<HASH> 100644 --- a/lib/enhance.js +++ b/lib/enhance.js @@ -46,7 +46,7 @@ function enhance (target, formatter, config) { } }, // check function signature - enhancement = (typeof target === 'function') ? decorateArgs(1, targ...
refactor(empower): assert function itself does not need receiver
twada_empower-core
train
js
2c29e5daab4cd4cc8913c5ed335fb6918051e66b
diff --git a/src/Validator.php b/src/Validator.php index <HASH>..<HASH> 100644 --- a/src/Validator.php +++ b/src/Validator.php @@ -20,6 +20,14 @@ namespace Ahc\Cron; */ class Validator { + /** + * Check if the value is in range of given offset. + * + * @param int $value + * @param string $offs...
refactor(docblocks): document public apis/methods
adhocore_php-cron-expr
train
php
b64622be66f93c8749696cc212626ca8c85b4711
diff --git a/src/SoftCascade.php b/src/SoftCascade.php index <HASH>..<HASH> 100644 --- a/src/SoftCascade.php +++ b/src/SoftCascade.php @@ -172,7 +172,10 @@ class SoftCascade implements SoftCascadeable { $relatedClass = $relation->getRelated(); $foreignKeyUse = $relatedClass->getKeyName(); - ...
fix: allow cascade on morphMany without SoftDelete (#<I>) Similar change to as #9
Askedio_laravel-soft-cascade
train
php
aa61828a279d7a2723ddeb02580fccf0f2e205db
diff --git a/src/processor/intents/room/remove-flag.js b/src/processor/intents/room/remove-flag.js index <HASH>..<HASH> 100644 --- a/src/processor/intents/room/remove-flag.js +++ b/src/processor/intents/room/remove-flag.js @@ -5,7 +5,7 @@ var _ = require('lodash'), module.exports = function(intent, flags, userId) { ...
fix(processor): fix in removeFlag intent
screeps_engine
train
js
efdbd80c6390b5f770b0e75956e396218c5a834c
diff --git a/src/components/VNavigationDrawer/VNavigationDrawer.js b/src/components/VNavigationDrawer/VNavigationDrawer.js index <HASH>..<HASH> 100644 --- a/src/components/VNavigationDrawer/VNavigationDrawer.js +++ b/src/components/VNavigationDrawer/VNavigationDrawer.js @@ -150,7 +150,7 @@ export default { if ...
fix(v-navigation-drawer): added check for element before attempting to scrollTop
vuetifyjs_vuetify
train
js
fee88aada17c96f9ff6ebd2b6b58ce8fa6e4e922
diff --git a/lib/connection.js b/lib/connection.js index <HASH>..<HASH> 100644 --- a/lib/connection.js +++ b/lib/connection.js @@ -69,6 +69,7 @@ function Connection(r, options, resolve, reject) { self.connection.on('end', function(error) { // We emit end or close just once self.connection.removeAllListener...
fix(Connection): catch errors when trying to send after close (FIN)
mbroadst_rethunk
train
js
8fd0deee211ce4e00fad96f5792da165582aac91
diff --git a/src/routesManager.js b/src/routesManager.js index <HASH>..<HASH> 100644 --- a/src/routesManager.js +++ b/src/routesManager.js @@ -75,10 +75,12 @@ const mayHaveBody = ["POST", "PUT", "DELETE", "OPTION"] */ * @param {object} route */ RoutesManager.prototype.addRoute = function(route){ + if(rout...
fix: don't answer if already answered
node-muneem_muneem
train
js
32800ebd3e71a3636d51c219d965ed55591a31d8
diff --git a/tests/plugins/persistentParams.js b/tests/plugins/persistentParams.js index <HASH>..<HASH> 100644 --- a/tests/plugins/persistentParams.js +++ b/tests/plugins/persistentParams.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import createRouter from 'router5'; +import createRouter from '../../modules'; ...
chore: update tests for travis to pass
router5_router5
train
js
2d80e08051417a9388873c81d23ab4223ebfbe02
diff --git a/intranet/apps/groups/models.py b/intranet/apps/groups/models.py index <HASH>..<HASH> 100644 --- a/intranet/apps/groups/models.py +++ b/intranet/apps/groups/models.py @@ -9,7 +9,7 @@ class GroupManager(auth_models.GroupManager): def student_visible(self): """Return a QuerySet of groups that ar...
refactor(groups): apply @anonymoose2's change
tjcsl_ion
train
py