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
e780f88778c483445374b6b42a2cd01751a3689e
diff --git a/android/src/main/java/com/imagepicker/ImagePickerModule.java b/android/src/main/java/com/imagepicker/ImagePickerModule.java index <HASH>..<HASH> 100644 --- a/android/src/main/java/com/imagepicker/ImagePickerModule.java +++ b/android/src/main/java/com/imagepicker/ImagePickerModule.java @@ -91,6 +91,7 @@ pub...
fix: add the correct permissions to the camera intent
react-native-community_react-native-image-picker
train
java
2ab607c1be00756dd4bf1ea2c17cba709c70c70f
diff --git a/src/Commands/Esi/Update/PublicInfo.php b/src/Commands/Esi/Update/PublicInfo.php index <HASH>..<HASH> 100644 --- a/src/Commands/Esi/Update/PublicInfo.php +++ b/src/Commands/Esi/Update/PublicInfo.php @@ -71,7 +71,7 @@ class PublicInfo extends Command Prices::dispatch(); Insurances::dispatch...
fix(publics): use proper excluding relation keyword
eveseat_console
train
php
366943c385ab1aff7461d4b20e2532bd622245a8
diff --git a/src/immer.js b/src/immer.js index <HASH>..<HASH> 100644 --- a/src/immer.js +++ b/src/immer.js @@ -229,9 +229,7 @@ export class Immer { if (state) { if (!this.useProxies) { // Create the final copy, with added keys and without deleted keys. - state.final...
fix: remove pointless assignments The value of `state.finalizing` is guaranteed to be true at this point. And setting `finalizing` to false might be harmful.
immerjs_immer
train
js
8d0ab8536444fc2deb2b3578716060fd34217ef5
diff --git a/views/js/uiForm.js b/views/js/uiForm.js index <HASH>..<HASH> 100755 --- a/views/js/uiForm.js +++ b/views/js/uiForm.js @@ -496,10 +496,18 @@ } } + function regularConfirmantion() { + return window.confirm(__('Please confirm property deletion!')); + ...
chore: Use regularConfirmation when no dependency
oat-sa_tao-core
train
js
f0e70fdf747d6a24568281910da062faf6a059df
diff --git a/lint-staged.config.js b/lint-staged.config.js index <HASH>..<HASH> 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -24,13 +24,14 @@ const lintCss = [ ]; module.exports = { - '*.md': formatMd, + '{.github,packages,playground}/**/*.md': formatMd, + './*.md': formatMd, - 'packages/...
chore(lint-staged): explicitly match files in root directory
commercetools_merchant-center-application-kit
train
js
285cd9b7068e25141429fcfb8bb8620b37877beb
diff --git a/fsoopify/nodes.py b/fsoopify/nodes.py index <HASH>..<HASH> 100644 --- a/fsoopify/nodes.py +++ b/fsoopify/nodes.py @@ -269,7 +269,7 @@ class DirectoryInfo(NodeInfo): def ensure_created(self): ''' ensure the directory was created. ''' if not self.is_directory(): - self.creat...
refactor: switch to makedirs
Cologler_fsoopify-python
train
py
d035ae56fe30c0c7a7091311bdff219923b57da2
diff --git a/source/rafcon/core/execution/execution_engine.py b/source/rafcon/core/execution/execution_engine.py index <HASH>..<HASH> 100644 --- a/source/rafcon/core/execution/execution_engine.py +++ b/source/rafcon/core/execution/execution_engine.py @@ -472,10 +472,11 @@ class ExecutionEngine(Observable): :pa...
fix(execution_engine): check for path if not state machine was passed
DLR-RM_RAFCON
train
py
4be1512e87bdd16d677c50921bfcf1c5e17d8e38
diff --git a/src/mixins/validatable.js b/src/mixins/validatable.js index <HASH>..<HASH> 100644 --- a/src/mixins/validatable.js +++ b/src/mixins/validatable.js @@ -50,12 +50,12 @@ export default { computed: { hasError () { - return this.errorMessages.length > 0 || + return this.internalErrorMessages....
fix(validatable): fix error-messages comparison if error-messages was assigned null, comparison would break fixes #<I>
vuetifyjs_vuetify
train
js
9174b43d7b60263626a659102a21c43221dee44c
diff --git a/.jsdoc.js b/.jsdoc.js index <HASH>..<HASH> 100644 --- a/.jsdoc.js +++ b/.jsdoc.js @@ -41,5 +41,8 @@ module.exports = { sourceFiles: false, systemName: 'gcp-metadata', theme: 'lumen' + }, + markdown: { + idInHeadings: true } };
fix(docs): make anchors work in jsdoc (#<I>)
googleapis_gcp-metadata
train
js
a98a18a25573bf03fcb529224b83bca1e954e98f
diff --git a/lib/sdam/topology_description.js b/lib/sdam/topology_description.js index <HASH>..<HASH> 100644 --- a/lib/sdam/topology_description.js +++ b/lib/sdam/topology_description.js @@ -1,5 +1,4 @@ 'use strict'; -const assert = require('assert'); const ServerType = require('./server_description').ServerType; co...
refactor(topology-description): remove assert, dedupe if branches
mongodb-js_mongodb-core
train
js
282664db2ed41ffbaa2b86b98f6529bb85f020d2
diff --git a/src/Repositories/Corporation/Members.php b/src/Repositories/Corporation/Members.php index <HASH>..<HASH> 100644 --- a/src/Repositories/Corporation/Members.php +++ b/src/Repositories/Corporation/Members.php @@ -42,10 +42,13 @@ trait Members { return CorporationMemberTracking::with( - ...
fix(membertracking): Update Corporation Members repository to use updated model relations
eveseat_services
train
php
2c3ac3b637de3cbad105165ad0b3af2dbeb1db05
diff --git a/packages/webiny-api/src/mysql/mysql.js b/packages/webiny-api/src/mysql/mysql.js index <HASH>..<HASH> 100644 --- a/packages/webiny-api/src/mysql/mysql.js +++ b/packages/webiny-api/src/mysql/mysql.js @@ -5,8 +5,15 @@ import { MySQLDriver } from "webiny-sql-table-mysql"; class MySQLTable extends Table { ...
feat(tables): mySQL tables - implement ability to skip creation of base columns. affects: webiny-api Skip creation of base columns - like eg. createdBy or createdOn.
Webiny_webiny-js
train
js
5a4f6153c8a82056591db25112416583d8ffd367
diff --git a/webapps/client/scripts/api/index.js b/webapps/client/scripts/api/index.js index <HASH>..<HASH> 100644 --- a/webapps/client/scripts/api/index.js +++ b/webapps/client/scripts/api/index.js @@ -35,7 +35,8 @@ function( var original = options.done; options.done = function(err, result) { - ...
fix(api): prevent $digest already in progress
camunda_camunda-bpm-platform
train
js
cf74470ecd910aaee351e733e185f8bf78bd7e47
diff --git a/tasks/helpers/s3.rb b/tasks/helpers/s3.rb index <HASH>..<HASH> 100644 --- a/tasks/helpers/s3.rb +++ b/tasks/helpers/s3.rb @@ -23,7 +23,7 @@ def s3_store(package_file, filename, bucket="assets.heroku.com") end def s3_store_dir(from, to, bucket="assets.heroku.com") - Dir.glob(File.Join(from, "**", "*"))...
fix(release): fixed bug with s3 uploading of folders
heroku_legacy-cli
train
rb
9233bcd5a74d3ae5cd8ff5c895703e8d7342b529
diff --git a/test/index.test.js b/test/index.test.js index <HASH>..<HASH> 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -42,7 +42,7 @@ test.cb('should create icns', t => { iconFiles() .pipe(iconutil(icnsName)) .pipe(streamAssert.first(data => { - t.deepEqual(data.contents, expected) + t.is(dat...
test: fix uint8 array issue
uetchy_gulp-iconutil
train
js
f1206035f69065812a962a816d401ce40c7565f6
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,7 @@ extras_require = { "pytest-instafail>=0.4,<1.0", "pytest-xdist>=1.32,<2.0", "eth-tester[py-evm]>=0.5.0b1,<0.6", + "py-evm==0.4.0a4", # NOTE: temporarily pinned until we have su...
chore: pin supported python distributions (#<I>) * chore: pin supported python distributions * chore: pin py-evm
ethereum_vyper
train
py
19ec186f76a34137ce3144eb1b030f5ead361316
diff --git a/src/Validator/index.js b/src/Validator/index.js index <HASH>..<HASH> 100644 --- a/src/Validator/index.js +++ b/src/Validator/index.js @@ -122,7 +122,7 @@ Validator.extend = function (name, method, message) { throw new Error('Invalid arguments, extend expects a method to execute') } Validations[n...
fix(validator): fix custom message typo error custom messages set by extend method were not getting setting up
poppinss_indicative
train
js,js
dc8bcea7d59712763f6938e17f15f2eca5ec2d0d
diff --git a/packages/bonde-admin/src/community/components/settings-menu.js b/packages/bonde-admin/src/community/components/settings-menu.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin/src/community/components/settings-menu.js +++ b/packages/bonde-admin/src/community/components/settings-menu.js @@ -42,7 +42,...
fix(admin): invitations url page
nossas_bonde-client
train
js
77170335c6fc0cbe7901d08697547f9d58bc9721
diff --git a/src/components/btn/QBtnToggle.js b/src/components/btn/QBtnToggle.js index <HASH>..<HASH> 100644 --- a/src/components/btn/QBtnToggle.js +++ b/src/components/btn/QBtnToggle.js @@ -74,8 +74,8 @@ export default { textColor: this.val[i] ? opt.toggleTextColor || this.toggleTextColor : opt.textColor ||...
feat(QBtnToggle): Take into account more options props for each button
quasarframework_quasar
train
js
e32f8ea290d2039108e2cf60efed4754a0923397
diff --git a/packages/posts/webpack.serverless.config.js b/packages/posts/webpack.serverless.config.js index <HASH>..<HASH> 100644 --- a/packages/posts/webpack.serverless.config.js +++ b/packages/posts/webpack.serverless.config.js @@ -45,7 +45,7 @@ if (process.env.TRAVIS_TAG) { refs: [ ...
fix(webpack): The commit env variable in Travis land is `TRAVIS_COMMIT`.
randytarampi_me
train
js,js
8a8cae0f78d3357aefbd102f79ae48b1d5cd691e
diff --git a/lib/config/store/index.js b/lib/config/store/index.js index <HASH>..<HASH> 100644 --- a/lib/config/store/index.js +++ b/lib/config/store/index.js @@ -1,20 +1,13 @@ module.exports = storeConfig var storePreAuthHook = require('./pre-auth-hook') -var toCouchDbUrl = require('../../utils/pouchdb-options-to-...
fix(store): always pass options.PouchDB
hoodiehq_hoodie-server
train
js
3b910cbc807e3cf3194ab8069289b7aa22eec894
diff --git a/test/helpers/cons.go b/test/helpers/cons.go index <HASH>..<HASH> 100644 --- a/test/helpers/cons.go +++ b/test/helpers/cons.go @@ -131,7 +131,7 @@ const ( StateRunning = "Running" PingCount = 5 - CurlConnectTimeout = 1 + CurlConnectTimeout = 3 DefaultNamespace = "default" KubeSys...
test: Increase connect timeout to 3 seconds 1 second is very optimistic. Bump it to 3 seconds. The impact on the CI duration is limited as this only impacts timeout of requests that depend on dropped packets. It is better to run connectivity tests in parallel if we want to speed up CI runs.
cilium_cilium
train
go
3ee6b8108435cd2950fbd953e41f0940d0610c44
diff --git a/lib/elastoshadow.js b/lib/elastoshadow.js index <HASH>..<HASH> 100644 --- a/lib/elastoshadow.js +++ b/lib/elastoshadow.js @@ -157,7 +157,11 @@ ElastoShadow.prototype._setInnerHTML = function (html) { host.textContent = '' - this.shadow = document.createElement('elasto-shadow') + if (!this.shadow) ...
fix: Preserve shadow node
nodys_elastomer
train
js
a7baeb045e854597db610f6976251c5093560a87
diff --git a/examples/with-electron/main/index.js b/examples/with-electron/main/index.js index <HASH>..<HASH> 100644 --- a/examples/with-electron/main/index.js +++ b/examples/with-electron/main/index.js @@ -23,7 +23,7 @@ app.on('ready', async () => { const url = isDev ? 'http://localhost:8000/start' : form...
fix(examples): correct the path in with-electron (#<I>) * fix(examples): correct path in with-electron * Update index.js
zeit_next.js
train
js
043ad590ec9dda844159acd4364f60e4ca78a2e9
diff --git a/anytemplate/engines/tests/base.py b/anytemplate/engines/tests/base.py index <HASH>..<HASH> 100644 --- a/anytemplate/engines/tests/base.py +++ b/anytemplate/engines/tests/base.py @@ -9,12 +9,12 @@ import anytemplate.engines.base as TT # stands for test target class Test(unittest.TestCase): - def te...
refactor: shorten names of test methods in .engines.tests.base
ssato_python-anytemplate
train
py
bb7ec479445c7d952265039c8826edfadc5202a9
diff --git a/src/utils/swagger.js b/src/utils/swagger.js index <HASH>..<HASH> 100644 --- a/src/utils/swagger.js +++ b/src/utils/swagger.js @@ -57,6 +57,15 @@ export default async (specUrl, { internalUrl, disableBigNumbers, keysOfValuesToI return SwaggerClient({ url, spec, + requestInterceptor: r...
fix(swagger): add workaround to get transaction details of GAAttachTx
aeternity_aepp-sdk-js
train
js
04d11710b014a47f66de0ca1529bbeb3a865dba9
diff --git a/bugsnag/src/main/java/com/bugsnag/Bugsnag.java b/bugsnag/src/main/java/com/bugsnag/Bugsnag.java index <HASH>..<HASH> 100644 --- a/bugsnag/src/main/java/com/bugsnag/Bugsnag.java +++ b/bugsnag/src/main/java/com/bugsnag/Bugsnag.java @@ -33,7 +33,7 @@ public class Bugsnag { private Configuration config;...
fix: make logbackAppenderInUse variable volatile to prevent potential for multiple instantiations of
bugsnag_bugsnag-java
train
java
d49802bbc184f87d26d45ba021f9d1997d68019a
diff --git a/python/dllib/src/bigdl/dllib/nn/layer.py b/python/dllib/src/bigdl/dllib/nn/layer.py index <HASH>..<HASH> 100644 --- a/python/dllib/src/bigdl/dllib/nn/layer.py +++ b/python/dllib/src/bigdl/dllib/nn/layer.py @@ -5684,6 +5684,30 @@ class RoiAlign(Layer): pooled_h, ...
feat: Feature Pyramid Networks Forward (#<I>)
intel-analytics_BigDL
train
py
d1730b1ffbc50d7688f8bb7512ab36505d567a2f
diff --git a/src/videojs-resumecard.js b/src/videojs-resumecard.js index <HASH>..<HASH> 100644 --- a/src/videojs-resumecard.js +++ b/src/videojs-resumecard.js @@ -43,6 +43,10 @@ class ResumeCard { throw new Error('videojs-resumecard requires a resume time.'); } + if (player.bigPlayButton) { + play...
feat(videojs-resumecard): Hide the `bigPlayButton` if it is enabled to allow a smooth seek transition.
chemoish_videojs-resumecard
train
js
0196a0d4d080c3df88dc7d0cecf697eee8efdef9
diff --git a/src/utils/npm-audit.js b/src/utils/npm-audit.js index <HASH>..<HASH> 100644 --- a/src/utils/npm-audit.js +++ b/src/utils/npm-audit.js @@ -258,11 +258,13 @@ function getDefaultOptionsFor(projectDir) { function getIgnoredVulnerabilities(options) { try { - const auditIgnoreFile = path.resolve( ...
test(npm): try fix test on windows CI
inikulin_publish-please
train
js
b8bcf5e6c2e4893d3829209b882b036a60a26310
diff --git a/bin/npm-dep-cli.js b/bin/npm-dep-cli.js index <HASH>..<HASH> 100755 --- a/bin/npm-dep-cli.js +++ b/bin/npm-dep-cli.js @@ -48,7 +48,7 @@ process.title = targetPKG.name; program .version(npmDepVersion) - .usage('[options] or target1 target2 ...') + .usage('[options] or target1 target2 or install') ...
fix(CLI): Allow regular 'npm-dep install' usage which will rely on the local cache
Kitware_npm-dep
train
js
58e80c6bf7680778911aae0fb965af2209d93dce
diff --git a/packages/cli-plugin-scaffold-graphql-service/index.js b/packages/cli-plugin-scaffold-graphql-service/index.js index <HASH>..<HASH> 100644 --- a/packages/cli-plugin-scaffold-graphql-service/index.js +++ b/packages/cli-plugin-scaffold-graphql-service/index.js @@ -148,12 +148,12 @@ module.exports = [ ...
fix(cli-plugin-scaffold-graphql-service): improve messaging
Webiny_webiny-js
train
js
014df1f7e191f231e7b1f94684914109086a883e
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -139,7 +139,7 @@ const plugins = [ // merge manifest in vendor chunk new webpack.optimize.CommonsChunkPlugin({ name: "manifest", - chuncks: ['vendor'] + chunks: ['vendor...
fix(webpack): common chunks plugin typo
stasson_vue-mdc-adapter
train
js
a09f1ccb0c0ae37284e67a1b11d10b15bd6c0ec6
diff --git a/src/homeAssistant/HomeAssistant.js b/src/homeAssistant/HomeAssistant.js index <HASH>..<HASH> 100644 --- a/src/homeAssistant/HomeAssistant.js +++ b/src/homeAssistant/HomeAssistant.js @@ -52,6 +52,11 @@ class HomeAssistant { return this.websocket.connectionState; } + get version() { + ...
refactor: Add HA version method to HomeAssistant
zachowj_node-red-contrib-home-assistant-websocket
train
js
77a3ff4542a91b347f5aa066de794c048625a8ca
diff --git a/config/audit.php b/config/audit.php index <HASH>..<HASH> 100644 --- a/config/audit.php +++ b/config/audit.php @@ -26,7 +26,7 @@ return [ 'user' => [ 'model' => App\User::class, 'resolver' => function () { - return auth()->check() ? auth()->user()->getAuthIdentifier() : ...
fix(config): use the Auth facade instead of the helper so that Lumen installs work out of the box
owen-it_laravel-auditing
train
php
6479adb1a377d88f010bd70f001a0c2d127ba552
diff --git a/tests/remotes.py b/tests/remotes.py index <HASH>..<HASH> 100644 --- a/tests/remotes.py +++ b/tests/remotes.py @@ -22,7 +22,7 @@ TEST_CONFIG = { "remote": {TEST_REMOTE: {"url": ""}}, } -TEST_AWS_REPO_BUCKET = os.environ.get("DVC_TEST_AWS_REPO_BUCKET", "dvc-test") +TEST_AWS_REPO_BUCKET = os.environ.g...
test: s3: move to dvc-temp bucket
iterative_dvc
train
py
f65d78fb97fd6d733c7083e2be77346639553b5b
diff --git a/src/entity.js b/src/entity.js index <HASH>..<HASH> 100644 --- a/src/entity.js +++ b/src/entity.js @@ -179,6 +179,36 @@ export class Entity { } /** + * Get the name of the entity. This is useful for labels in texts. + * + * @return {string} + */ + getName() { + let metaName = this.getMet...
feat(entity): Added .getName() methods for instance and static
SpoonX_aurelia-orm
train
js
756afc68e8f01de6f8c3b19710ba6f89ce408e66
diff --git a/src/utils/innerSliderUtils.js b/src/utils/innerSliderUtils.js index <HASH>..<HASH> 100644 --- a/src/utils/innerSliderUtils.js +++ b/src/utils/innerSliderUtils.js @@ -386,9 +386,9 @@ export const swipeMove = (e, spec) => { let touchSwipeLength = touchObject.swipeLength; if (!infinite) { if ( - ...
feat: support disable bounce for vertical mode
akiran_react-slick
train
js
ec54426b81cb63f4e3ce14ba1fd1fb9c0f208d23
diff --git a/packages/hooks/src/useCurrentRegion.js b/packages/hooks/src/useCurrentRegion.js index <HASH>..<HASH> 100644 --- a/packages/hooks/src/useCurrentRegion.js +++ b/packages/hooks/src/useCurrentRegion.js @@ -5,8 +5,8 @@ async function fetchRegion() { const response = await avRegionsApi.getCurrentRegion(); ...
fix(hooks): use optional chaining
Availity_availity-react
train
js
b26107812441ca5bdd2b578697bad234d4a22f38
diff --git a/src/base/VolumeProcessor.php b/src/base/VolumeProcessor.php index <HASH>..<HASH> 100644 --- a/src/base/VolumeProcessor.php +++ b/src/base/VolumeProcessor.php @@ -107,7 +107,7 @@ class VolumeProcessor extends Processor } $hasUrls = (bool) $item->hasUrls; - list ($fieldLayout, $fie...
fix: VolumeProcessor using undefined variable.
Pennebaker_craft-architect
train
php
08657ab6e0700845d3c484fea31e12a339797824
diff --git a/libs/BaseKonnector.js b/libs/BaseKonnector.js index <HASH>..<HASH> 100644 --- a/libs/BaseKonnector.js +++ b/libs/BaseKonnector.js @@ -109,10 +109,11 @@ class baseKonnector { }) .then(account => { // log('debug', account, 'account content') - const requiredFields = Object.assign(cozyFi...
feat: make requiredFields accessible outside the connector
konnectors_libs
train
js
307947a62244e37a0e576c822759f25366b301dc
diff --git a/webapps/ui/cockpit/client/scripts/directives/incidentsTab.js b/webapps/ui/cockpit/client/scripts/directives/incidentsTab.js index <HASH>..<HASH> 100644 --- a/webapps/ui/cockpit/client/scripts/directives/incidentsTab.js +++ b/webapps/ui/cockpit/client/scripts/directives/incidentsTab.js @@ -156,7 +156,7 @@ v...
fix(cockpit): activity filter is not applied to incident tab related to CAM-<I>
camunda_camunda-bpm-platform
train
js
89fa33e32094e5d1ba10b29f6f19fd284959b4be
diff --git a/pyneuroml/tune/NeuroMLController.py b/pyneuroml/tune/NeuroMLController.py index <HASH>..<HASH> 100644 --- a/pyneuroml/tune/NeuroMLController.py +++ b/pyneuroml/tune/NeuroMLController.py @@ -151,11 +151,18 @@ class NeuroMLController: cand_dir = self.generate_dir + "/CANDIDATE_%s" % candidat...
fix: do not pass NeuroMLDocument for pp based parallel runs The complete libNeuroML API is based on lxml.etree now, and this unfortunately cannot be pickled. So we cannot pass the NeuroMLDocument to the run_simulation function when using pp for parallel runs. Instead, we pass None and let the run_simulation method re...
NeuroML_pyNeuroML
train
py
080dd971f77f7c631650c4e3027d1802f4e804d8
diff --git a/src/platforms/web/runtime/modules/dom-props.js b/src/platforms/web/runtime/modules/dom-props.js index <HASH>..<HASH> 100644 --- a/src/platforms/web/runtime/modules/dom-props.js +++ b/src/platforms/web/runtime/modules/dom-props.js @@ -86,10 +86,6 @@ function isDirtyWithModifiers (elm: any, newVal: string): ...
fix(next-tick): revert <I>da<I> the condition is no longer necessary after reverting back to microtask only nextTick implementation, and fix #<I>
kaola-fed_megalo
train
js
6e6563dbb8aa0186c3c25c7eb3854decb918a959
diff --git a/lib/discordrb/data/interaction.rb b/lib/discordrb/data/interaction.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/data/interaction.rb +++ b/lib/discordrb/data/interaction.rb @@ -187,7 +187,7 @@ module Discordrb flags |= 64 if ephemeral builder = Discordrb::Webhooks::Builder.new - v...
fix(Interactions): Use correct namespace for View (#<I>)
meew0_discordrb
train
rb
7e0fb17b8bb546ce25bad4e32d1d6e1b68c7d048
diff --git a/packages/d3fc-annotation/scripts/screenshot.js b/packages/d3fc-annotation/scripts/screenshot.js index <HASH>..<HASH> 100644 --- a/packages/d3fc-annotation/scripts/screenshot.js +++ b/packages/d3fc-annotation/scripts/screenshot.js @@ -7,6 +7,7 @@ const height = 250; const config = { errorIfJSExcepti...
chore: better errors when phantom doesn't work
d3fc_d3fc
train
js
41213108ba49a48d765f647b3ba70f46795c9875
diff --git a/run.go b/run.go index <HASH>..<HASH> 100644 --- a/run.go +++ b/run.go @@ -33,10 +33,11 @@ type Game interface { // Draw(screen *Image) // // With Draw (the recommended way), Update updates only the game logic and Draw draws the screen. - // In this case, the argument screen's updated content is n...
docs: Improve comments about Game
hajimehoshi_ebiten
train
go
b0cfc33c9aa987841a50ea49e95b93dd4b47d53d
diff --git a/src/platforms/mp/compiler/codegen/index.js b/src/platforms/mp/compiler/codegen/index.js index <HASH>..<HASH> 100644 --- a/src/platforms/mp/compiler/codegen/index.js +++ b/src/platforms/mp/compiler/codegen/index.js @@ -520,6 +520,6 @@ function genIfScope (ifConditions: Array<any>): string { if (!ifCondit...
chore: transform if condition to boolean on render code generating
kaola-fed_megalo
train
js
d4d3b7b922721595042485f0dc187c6e68ce1e2b
diff --git a/cloudvolume/__init__.py b/cloudvolume/__init__.py index <HASH>..<HASH> 100644 --- a/cloudvolume/__init__.py +++ b/cloudvolume/__init__.py @@ -1,2 +1,4 @@ -from .cloudvolume import CloudVolume -from .storage import Storage \ No newline at end of file +from .cloudvolume import CloudVolume, EmptyVolumeExcepti...
feat: exported several useful libraries Added DataLayerProvenance, Storage, ThreadedQueue, EmptyVolumeException to possible from cloudvolume import *
seung-lab_cloud-volume
train
py
4d35f440dd2307238e3425c950ae30d20675f1e8
diff --git a/src/AuthenticationResponse.js b/src/AuthenticationResponse.js index <HASH>..<HASH> 100644 --- a/src/AuthenticationResponse.js +++ b/src/AuthenticationResponse.js @@ -206,7 +206,7 @@ class AuthenticationResponse { let code = params.code // only exchange the authorization code when the response t...
fix(AuthenticationResponse): correct condition for exchanging a code
anvilresearch_oidc-rp
train
js
aa281780ab0eecaecba31ca29fff8c1afde477ba
diff --git a/tasks/bump.js b/tasks/bump.js index <HASH>..<HASH> 100644 --- a/tasks/bump.js +++ b/tasks/bump.js @@ -104,7 +104,7 @@ module.exports = function(grunt) { gitVersion = gitVersion && parsedVersion; version = exactVersionToSet || gitVersion || semver.inc(parsedVersion, version...
fix(prerelease): fixes prerelease tag removal for config.xml
aaccurso_grunt-bump-cordova
train
js
284b3bfd8bc14d72ef8e098ddc2beb2ab832eaa0
diff --git a/lib/either.js b/lib/either.js index <HASH>..<HASH> 100644 --- a/lib/either.js +++ b/lib/either.js @@ -129,6 +129,22 @@ Either.fromValidation = function(a) { return a.fold(Either.Left, Either.Right) } +/** + * Executes a synchronous computation that may throw and converts it to an + * Either type. + *...
feat: Adds Either.try fixes #6
folktale_data.either
train
js
1e300158f315172f63252f480b612ccad7bddb12
diff --git a/apps/actor-web/src/app/index.js b/apps/actor-web/src/app/index.js index <HASH>..<HASH> 100644 --- a/apps/actor-web/src/app/index.js +++ b/apps/actor-web/src/app/index.js @@ -26,8 +26,11 @@ if (crosstab.supported) { } window.jsAppLoaded = () => { - if (crosstab.supported && window.location.pathname !==...
fix(web): fixed actor init if crosstab isn't supported
actorapp_actor-platform
train
js
fb6e176b5a6bf394140b992e963cabd4a1706e7e
diff --git a/src/node-version/tasks.js b/src/node-version/tasks.js index <HASH>..<HASH> 100644 --- a/src/node-version/tasks.js +++ b/src/node-version/tasks.js @@ -12,8 +12,8 @@ export async function determineLatestVersionOf(nodeVersionCategory) { return lsLine.match(/(v[0-9]+\.[0-9]+\.[0-9]+)/)[1]; } -export func...
fix(node-version): included the version-type in the status message
travi_javascript-scaffolder
train
js
67f5b742a43f139566b5735b6f62166c69d21d66
diff --git a/packages/bonde-admin-canary/src/scenes/Logged/scenes/Chatbot/components/ChatbotSettingsForm.js b/packages/bonde-admin-canary/src/scenes/Logged/scenes/Chatbot/components/ChatbotSettingsForm.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin-canary/src/scenes/Logged/scenes/Chatbot/components/ChatbotSe...
chore(admin-canary): eslint camel-case
nossas_bonde-client
train
js
2bafa2c8f34c61360535cedbcea9c402977fc764
diff --git a/website/src/html.js b/website/src/html.js index <HASH>..<HASH> 100644 --- a/website/src/html.js +++ b/website/src/html.js @@ -25,7 +25,7 @@ class HTML extends React.Component { <div key={'body'} id="___gatsby" dangerouslySetInnerHTML={{ __html: this.props.body }} /> {this.props.postBo...
chore: fix formatting in website/src/html.js (#<I>)
netlify_netlify-cms
train
js
5adefc3f649467c606330596ebb268d6dcf35e05
diff --git a/dev/test/events/order.spec.js b/dev/test/events/order.spec.js index <HASH>..<HASH> 100644 --- a/dev/test/events/order.spec.js +++ b/dev/test/events/order.spec.js @@ -168,9 +168,14 @@ describe('Order events', function () { await refundFirstItemFromOrder(this.magentoApi, orderId); const event...
test(sales-event): check for refund fulfillment event on partial refund CDP-<I>
emartech_magento2-extension
train
js
7d7b6600de6d6b790d78b0e8644f774b46352da7
diff --git a/Gruntfile.package.js b/Gruntfile.package.js index <HASH>..<HASH> 100644 --- a/Gruntfile.package.js +++ b/Gruntfile.package.js @@ -310,7 +310,9 @@ module.exports = function(grunt) { 'env', 'clean:coverage', 'express', + p(process.env.CIRCLECI) || 'continue:on' 'concurrent:test', + ...
chore(build): let circleci rely exclusively on junit files to fail
webex_spark-js-sdk
train
js
0f350f2292ca65f5ab718d8a05e400b79105af4b
diff --git a/wdio.conf.js b/wdio.conf.js index <HASH>..<HASH> 100644 --- a/wdio.conf.js +++ b/wdio.conf.js @@ -209,7 +209,7 @@ exports.config = { const build = process.env.BUILD_NUMBER || `local-${process.env.USER}-wdio-${Date.now()}`; defs.forEach((d) => { - if (process.env.CI) { + if (CI) { ...
chore(tooling): read env correctly
webex_spark-js-sdk
train
js
1464607fea1ca397a655b994fc9f21766bf58c3b
diff --git a/lib/fixturize-entity-id.js b/lib/fixturize-entity-id.js index <HASH>..<HASH> 100644 --- a/lib/fixturize-entity-id.js +++ b/lib/fixturize-entity-id.js @@ -14,6 +14,12 @@ function fixturizeEntityId (entityIdsMap, entityName, id) { return map[id] } + // Do nothing if passed id is a normalized one +...
fix: don’t bump fixture entity ID for previously calculated entity IDs
octokit_fixtures
train
js
d2c4e21cca21adef53e9e7757033ec1df58c63da
diff --git a/src/cellmanager.js b/src/cellmanager.js index <HASH>..<HASH> 100644 --- a/src/cellmanager.js +++ b/src/cellmanager.js @@ -517,9 +517,12 @@ export default class CellManager { } promise = valuePromise.then((value) => { - const done = editor.setValue(valu...
fix: Dont save if value is same
frappe_datatable
train
js
8adfc97409312890e2063ae2c107ac974e5410e8
diff --git a/src/client/rest/RequestHandlers/Sequential.js b/src/client/rest/RequestHandlers/Sequential.js index <HASH>..<HASH> 100644 --- a/src/client/rest/RequestHandlers/Sequential.js +++ b/src/client/rest/RequestHandlers/Sequential.js @@ -89,10 +89,10 @@ class SequentialRequestHandler extends RequestHandler { ...
docs(Client): actually fix rateLimit's event params
discordjs_discord.js
train
js
98fc37086d2b973ecc79493818401ea3019fa40d
diff --git a/samcli/commands/_utils/template.py b/samcli/commands/_utils/template.py index <HASH>..<HASH> 100644 --- a/samcli/commands/_utils/template.py +++ b/samcli/commands/_utils/template.py @@ -23,6 +23,7 @@ _RESOURCES_WITH_LOCAL_PATHS = { "AWS::Serverless::Api": ["DefinitionUri"], "AWS::AppSync::GraphQL...
feat(AppSync): Allow build to recognize AppSync resources for path replacement (#<I>)
awslabs_aws-sam-cli
train
py
c71d5908bda29dc58462c42a8f05ac16d1903247
diff --git a/sauce.browsers.js b/sauce.browsers.js index <HASH>..<HASH> 100644 --- a/sauce.browsers.js +++ b/sauce.browsers.js @@ -47,7 +47,7 @@ exports['SL_IE_Old'] = { , version: 10 }; -exports['SL_Edge']: { +exports['SL_Edge'] = { base: 'SauceLabs' , browserName: 'microsoftedge' };
chore: fix syntax error in saucelabs build
chaijs_chai
train
js
d90f647673e16e86b1a1648c8a7449f57e1c2e25
diff --git a/conftest.py b/conftest.py index <HASH>..<HASH> 100644 --- a/conftest.py +++ b/conftest.py @@ -23,7 +23,15 @@ def client_token(client): return client -def clean_response(response): +@pytest.fixture(scope="module", autouse=True) +def vcr_config(): + return { + "filter_query_parameters": [(...
chore: rename function that is meant to be internal
browniebroke_deezer-python
train
py
3fa8620759e7126338ffe1798d46113d58a4022e
diff --git a/src/js/util/style.js b/src/js/util/style.js index <HASH>..<HASH> 100644 --- a/src/js/util/style.js +++ b/src/js/util/style.js @@ -37,13 +37,15 @@ export function css(element, property, value, priority = '') { property = propName(property); if (isUndefined(value)) { - ...
refactor: style.js
uikit_uikit
train
js
f0cc0446650fdfe80a1c38b9ca7215f1ff07ce34
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -41,6 +41,8 @@ Formatter.prototype._formatFrontMatter = function (data) { var source = data.properties; var derived = data.derived || {}; + //TODO: Include the "type" property so that more than the now assumed "h-entr...
docs(todo): added a note about exposing the type
voxpelli_node-format-microformat
train
js
2ae1b4ead47095bc6c779d12693282d895ff2fd9
diff --git a/packages/shell-dev-vue3/src/iframe-app.js b/packages/shell-dev-vue3/src/iframe-app.js index <HASH>..<HASH> 100644 --- a/packages/shell-dev-vue3/src/iframe-app.js +++ b/packages/shell-dev-vue3/src/iframe-app.js @@ -1,7 +1,11 @@ -import { createApp } from 'vue' +import { createApp, h } from 'vue' import Chi...
chore(dev): script setup in iframe
vuejs_vue-devtools
train
js
9e32f65392cb0f1a25ecf5de9c5718be2f2e00bc
diff --git a/flatfs.go b/flatfs.go index <HASH>..<HASH> 100644 --- a/flatfs.go +++ b/flatfs.go @@ -683,6 +683,11 @@ func (fs *Datastore) Query(q query.Query) (query.Results, error) { // This datastore can't include keys with multiple components. // Therefore, it's always correct to return an empty result when ...
fix: log a warning when the user passes a nonsensical query
ipfs_go-ds-flatfs
train
go
05881a4d917272b88e0328b9971c888de0c1e284
diff --git a/src/routes.js b/src/routes.js index <HASH>..<HASH> 100644 --- a/src/routes.js +++ b/src/routes.js @@ -9,7 +9,17 @@ export const getRouterData = (routes, views, authenticated) => { routes.forEach((section) => { if (section.items) { let menuSection = { - show: () => !section.authenticat...
fix: Adds additional handling for toggle routes
techcoop_react-material-site
train
js
dd83e72c4a5d465b7c2ce2c4f90d36d1f21148c6
diff --git a/src/feed-forward.js b/src/feed-forward.js index <HASH>..<HASH> 100644 --- a/src/feed-forward.js +++ b/src/feed-forward.js @@ -333,7 +333,7 @@ class FeedForward { // back propagate this._calculateDeltas(target); - this._adjustWeights(); + this.adjustWeights(); if (logErrorRate) { ...
fix: `Recurrent._adjustWeights` to `Recurrent.adjustWeights`
BrainJS_brain.js
train
js
0480b4d46786a13020a2755f644a6d5f1d7ee981
diff --git a/src/slider/Button.js b/src/slider/Button.js index <HASH>..<HASH> 100644 --- a/src/slider/Button.js +++ b/src/slider/Button.js @@ -50,6 +50,7 @@ export default class Button extends Component { ) { this.parent().isDragging(true); this.currentPoint = startPoint; + this.button.style.zIn...
fix(Slider): Fixed Tooltip is covered by the button.
uiwjs_uiw
train
js
2585431ae311213bf4b80d4ebf3971e2b78dc898
diff --git a/src/core/utils.js b/src/core/utils.js index <HASH>..<HASH> 100644 --- a/src/core/utils.js +++ b/src/core/utils.js @@ -109,7 +109,7 @@ const resolvePath = promisify(function (objectAPI, ipfsPaths, callback) { return cb(null, rootHash.buffer) } - objectAPI.get(rootHash, follow.bind(null, roo...
fix: enable tests in node that were not being included (#<I>) License: MIT
ipfs_js-ipfs
train
js,js
1310b4aa5ceb910c57e13fdd47f6a5e66898b4b0
diff --git a/lib/middleware/index.js b/lib/middleware/index.js index <HASH>..<HASH> 100644 --- a/lib/middleware/index.js +++ b/lib/middleware/index.js @@ -16,7 +16,7 @@ var debug = require('debug')('watson-middleware:index'); var Promise = require('bluebird'); -var AssistantV1 = require('watson-developer-cloud/assi...
fix: Use Conversation for backward compatibility
watson-developer-cloud_botkit-middleware
train
js
c842941a165796525e0ea345209cf936ad3ce136
diff --git a/lib/cluster.js b/lib/cluster.js index <HASH>..<HASH> 100644 --- a/lib/cluster.js +++ b/lib/cluster.js @@ -18,10 +18,11 @@ const defer = require('co-defer'); const Base = require('sdk-base'); const util = require('util'); const ready = require('get-ready'); +const copy = require('copy-to'); const curren...
fix(cluster): simplify cluster config
ali-sdk_ali-oss
train
js
10dd8b23c3c3337cd0ee17735e3d19f2b74a3da6
diff --git a/providers/ViewProvider.js b/providers/ViewProvider.js index <HASH>..<HASH> 100644 --- a/providers/ViewProvider.js +++ b/providers/ViewProvider.js @@ -63,7 +63,7 @@ class ViewProvider extends ServiceProvider { Context.getter('view', function () { const requestLocals = { request: this.re...
refactor(view): priority to auth.current over auth auth.current is the instance from which the user got loggedin
adonisjs_adonis-framework
train
js
b29a9dea8d64413e48baa094170746d305f7967e
diff --git a/test/not_tobe_instrumented/not_instrumented.js b/test/not_tobe_instrumented/not_instrumented.js index <HASH>..<HASH> 100644 --- a/test/not_tobe_instrumented/not_instrumented.js +++ b/test/not_tobe_instrumented/not_instrumented.js @@ -10,7 +10,7 @@ describe('power-assert client should work with not-instrume...
test: dealing with `err.name` on Node v8 Node v8's err.name contains error code like `AssertionError [ERR_ASSERTION]`
power-assert-js_power-assert
train
js
99eca9b8fbe52eae3bddbd7e584f876e7cd8fc3e
diff --git a/packages/www/webpack.client.config.es5.js b/packages/www/webpack.client.config.es5.js index <HASH>..<HASH> 100644 --- a/packages/www/webpack.client.config.es5.js +++ b/packages/www/webpack.client.config.es5.js @@ -45,7 +45,7 @@ module.exports = webpackBaseConfig({ clientsClaim: true, ...
fix(www): Workbox's `navigateFallback` refers to a file path, not an application route. Resolve the `Uncaught (in promise) non-precached-url: non-precached-url :: [{"url":"/"}]` issue.
randytarampi_me
train
js
837a8b22d39e86f1067e16a461df52152c5c1e81
diff --git a/packages/node_modules/webex/src/webex.js b/packages/node_modules/webex/src/webex.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/webex/src/webex.js +++ b/packages/node_modules/webex/src/webex.js @@ -13,6 +13,7 @@ require('@webex/plugin-authorization'); // url interceptor require('@webex/intern...
feat(packages): add internal presence plugin
webex_spark-js-sdk
train
js
6ad26a1cfa4ec50e7d8b8e824d55ad49c4ca0835
diff --git a/packages/bak/lib/options.js b/packages/bak/lib/options.js index <HASH>..<HASH> 100644 --- a/packages/bak/lib/options.js +++ b/packages/bak/lib/options.js @@ -1,5 +1,6 @@ const env = require('std-env') const { defaultsDeep } = require('lodash') +const consola = require('consola') const Options = module...
feat: log and send validation errors by default
bakjs_bak
train
js
eb4888a2c03a9e18dbd519a54e53f7e671d2d116
diff --git a/packages/themes/src/index.js b/packages/themes/src/index.js index <HASH>..<HASH> 100644 --- a/packages/themes/src/index.js +++ b/packages/themes/src/index.js @@ -12,7 +12,7 @@ import * as g100 from './g100'; import * as white from './white'; import * as g90 from './g90'; -export { g10, g100, white }; +...
fix(themes): add g<I> to un-nested named exports (#<I>)
carbon-design-system_carbon-elements
train
js
140829b853e1cb9ec0cbdfbc564f77657fe39508
diff --git a/docs/app/js/codepen.js b/docs/app/js/codepen.js index <HASH>..<HASH> 100644 --- a/docs/app/js/codepen.js +++ b/docs/app/js/codepen.js @@ -133,7 +133,7 @@ return content + '\n\n'+ commentStart + '\n'+ 'Copyright 2018 Google Inc. All Rights Reserved. \n'+ - 'Use of thi...
docs(codepen): fix missing line break in Copyright (#<I>)
angular_material
train
js
cad951b6ef90e6fc471e78ebd827c518a758a5c7
diff --git a/resources/config/eloquent-viewable.php b/resources/config/eloquent-viewable.php index <HASH>..<HASH> 100644 --- a/resources/config/eloquent-viewable.php +++ b/resources/config/eloquent-viewable.php @@ -85,7 +85,7 @@ return [ /* * Determine if this package should cache data. */ ...
feat: set cache enabled to true as default
cyrildewit_eloquent-viewable
train
php
47b3a8449d06a69b937240703e5aa21ba14dd16b
diff --git a/test/runtime/Policies.go b/test/runtime/Policies.go index <HASH>..<HASH> 100644 --- a/test/runtime/Policies.go +++ b/test/runtime/Policies.go @@ -982,7 +982,7 @@ var _ = Describe("RuntimeValidatedPolicies", func() { }]`, app1Label, api.EntityWorld) _, err := vm.PolicyRenderAndImport(policy) - Expe...
test: Improve failed policy import message When policy import fails, print the poolicy as well.
cilium_cilium
train
go
325877e9636429212fa51536237b1990d2dda3d0
diff --git a/packages/build-tools/utils/bolt-versions.js b/packages/build-tools/utils/bolt-versions.js index <HASH>..<HASH> 100644 --- a/packages/build-tools/utils/bolt-versions.js +++ b/packages/build-tools/utils/bolt-versions.js @@ -17,7 +17,7 @@ async function writeVersionDataToJson(versionData) { let versionInfo...
fix: sort and reorder versions using rcompare
bolt-design-system_bolt
train
js
a12a8bc25c54f91d6a9a26d9997178a7dac29c61
diff --git a/internal/tmpl/tmpl.go b/internal/tmpl/tmpl.go index <HASH>..<HASH> 100644 --- a/internal/tmpl/tmpl.go +++ b/internal/tmpl/tmpl.go @@ -55,7 +55,7 @@ func New(ctx *context.Context) *Template { } } -// WithArtifacts populate fields from the artifact and replacements +// WithArtifact populates fields from...
fix: typos (#<I>)
goreleaser_goreleaser
train
go,go
cbbf177c40da3c54c163abdfe1517ba089233b0d
diff --git a/actor-apps/app-web/src/app/actions/AddContactActionCreators.js b/actor-apps/app-web/src/app/actions/AddContactActionCreators.js index <HASH>..<HASH> 100644 --- a/actor-apps/app-web/src/app/actions/AddContactActionCreators.js +++ b/actor-apps/app-web/src/app/actions/AddContactActionCreators.js @@ -27,6 +27,...
fix(web): open dialog when try to add user by phone if user is already there;
actorapp_actor-platform
train
js
a8870225b89a8b307dc269484566f1070650d112
diff --git a/types.go b/types.go index <HASH>..<HASH> 100644 --- a/types.go +++ b/types.go @@ -7,6 +7,8 @@ import ( const ( BCHEUR = "BCHEUR" + BCHUSD = "BCHUSD" + BCHXBT = "BCHXBT DASHEUR = "DASHEUR" DASHUSD = "DASHUSD" DASHXBT = "DASHXBT" @@ -86,6 +88,8 @@ type TimeResponse struct { // AssetPairs...
feat(AssetPairs): Sync BCH pairs (#<I>)
beldur_kraken-go-api-client
train
go
cf6192c81c33bec1b9972cc84504675ea6115d71
diff --git a/trees/id3.go b/trees/id3.go index <HASH>..<HASH> 100644 --- a/trees/id3.go +++ b/trees/id3.go @@ -113,7 +113,7 @@ func InferID3Tree(from base.FixedDataGrid, with RuleGenerator) *DecisionTreeNode // Generate the splitting rule splitRule := with.GenerateSplitRule(from) - if splitRule == nil { + if spli...
fix(id3): fix panic on SplitAttribute being nil
sjwhitworth_golearn
train
go
bc41d4ea3f0bba4664ce4293d7d315caa845fe2e
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 @@ -66,15 +66,19 @@ export class AssociationSelect { * @return {Promise} */ buildFind() { - let repository ...
fix(association-select): Remove populate criteria for many-assoc
SpoonX_aurelia-orm
train
js
490872301fdd3b4b6b94655260224ea5d10a207f
diff --git a/kv/urm.go b/kv/urm.go index <HASH>..<HASH> 100644 --- a/kv/urm.go +++ b/kv/urm.go @@ -8,6 +8,7 @@ import ( "github.com/influxdata/influxdb" icontext "github.com/influxdata/influxdb/context" "github.com/influxdata/influxdb/kit/tracing" + "go.uber.org/zap" ) var ( @@ -359,6 +360,10 @@ func (s *Serv...
fix(kv): ignore not found error when removing org dep resources
influxdata_influxdb
train
go
45d8206500fe515cca68c3fec8651e4034657320
diff --git a/ruby/server/lib/roma/routing/cb_rttable.rb b/ruby/server/lib/roma/routing/cb_rttable.rb index <HASH>..<HASH> 100644 --- a/ruby/server/lib/roma/routing/cb_rttable.rb +++ b/ruby/server/lib/roma/routing/cb_rttable.rb @@ -176,8 +176,8 @@ module Roma end def enabled_failover=(b) - @enable...
refactor:switch a fail-over flag
roma_roma
train
rb
078b52426c6fd0f357b12dec302b596ab45d3a92
diff --git a/lib/sanitize.js b/lib/sanitize.js index <HASH>..<HASH> 100644 --- a/lib/sanitize.js +++ b/lib/sanitize.js @@ -1,6 +1,3 @@ -var dompurify = require('dompurify'); - - var allowedUriSchemesRegexp = /^(https?|mailto|#)/i; var absoluteUriRegexp = /^[a-zA-Z]+:\//; @@ -16,9 +13,12 @@ function linkHrefHook(nod...
fix(sanitize): require dompurify on run (#<I>) Prevent dompurify from being required and executed when method not used Ref APIARY-<I>
apiaryio_blueprint-markdown-renderer
train
js
e27d2aee8712722ad95b7e8673fceb89f965f7d4
diff --git a/protocol-designer/src/components/StepEditForm/index.js b/protocol-designer/src/components/StepEditForm/index.js index <HASH>..<HASH> 100644 --- a/protocol-designer/src/components/StepEditForm/index.js +++ b/protocol-designer/src/components/StepEditForm/index.js @@ -104,8 +104,8 @@ class StepEditForm extend...
feat(protocol-designer): display timeline and form alerts in same fashion (#<I>) Closes #<I>
Opentrons_opentrons
train
js
72aefc2425204a3972c77e9bdc1f84e4c896537b
diff --git a/abstractTest.js b/abstractTest.js index <HASH>..<HASH> 100644 --- a/abstractTest.js +++ b/abstractTest.js @@ -495,6 +495,35 @@ module.exports = function abstractTests (opts) { }) }) + test('packets are emitted in order', function (t) { + const e = builder() + const total = 10000 + const...
fix: check emitted packets order to avoid leaks (#<I>)
mcollina_mqemitter
train
js
e81585e2ce39c9647e2dd2cd819e46f3a9a4a75e
diff --git a/lib/util/middleware.js b/lib/util/middleware.js index <HASH>..<HASH> 100644 --- a/lib/util/middleware.js +++ b/lib/util/middleware.js @@ -1,7 +1,6 @@ if (typeof (fetch) === 'undefined') require('isomorphic-fetch') const API_USER_PATH = '/api/secure/user' -const API_AUTH0USER_PATH = '/api/secure/user/fr...
refactor(middleware): Move constant
opentripplanner_otp-react-redux
train
js
b0bbe958eb0de2dab249f9a4b9bb3743b71bbc2e
diff --git a/wireprotocol/3_2_support.js b/wireprotocol/3_2_support.js index <HASH>..<HASH> 100644 --- a/wireprotocol/3_2_support.js +++ b/wireprotocol/3_2_support.js @@ -7,7 +7,6 @@ const MongoError = require('../error').MongoError; const MongoNetworkError = require('../error').MongoNetworkError; const getReadPrefer...
fix(getmore-killcursor): slaveOk shall not be included on these The slaveOk flag SHOULD not be set for all follow-up getMore and killCursors commands. The cursor on the server keeps the original slaveOk value first set on the find command.
mongodb_node-mongodb-native
train
js
94842376b4d5230b47604af222f380e4380a3531
diff --git a/.storybook/config.js b/.storybook/config.js index <HASH>..<HASH> 100644 --- a/.storybook/config.js +++ b/.storybook/config.js @@ -43,6 +43,7 @@ const theme = { title: 600, light: 300, }, + space: new Array(8).fill(0).map((_val, index) => index * 8), }; function withGlobalStyle(storyFn) {
chore(storybook): add space to the theme provider
CraveFood_farmblocks
train
js
ffcb949f98fce92098a9143e1ace488ae6dfe719
diff --git a/renku/cli/dataset.py b/renku/cli/dataset.py index <HASH>..<HASH> 100644 --- a/renku/cli/dataset.py +++ b/renku/cli/dataset.py @@ -372,7 +372,7 @@ from renku.core.commands.dataset import add_file, create_dataset, \ dataset_remove, edit_dataset, export_dataset, file_unlink, \ import_dataset, list_d...
chore(dataset): consistent output across dataset commands (#<I>)
SwissDataScienceCenter_renku-python
train
py
e54f38bd5d37829f81b67a7814ce2b9cad9d2f3c
diff --git a/src/cli.js b/src/cli.js index <HASH>..<HASH> 100644 --- a/src/cli.js +++ b/src/cli.js @@ -1,3 +1,5 @@ +#!/usr/bin/env node + import 'babel-polyfill'; import yargs from 'yargs'; import {resolve} from 'path';
fix(cli): added shabang on top of cli bin
mcasimir_release-flow
train
js