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
7fd8067154bce6e4112f92f5b939913b68e4ce5d
diff --git a/lib/Skeleton/Core/Web/Security/Csrf.php b/lib/Skeleton/Core/Web/Security/Csrf.php index <HASH>..<HASH> 100644 --- a/lib/Skeleton/Core/Web/Security/Csrf.php +++ b/lib/Skeleton/Core/Web/Security/Csrf.php @@ -175,7 +175,7 @@ class Csrf { $html = $application->call_event('security', 'csrf_inject', [$html])...
fix: support multi-line form tags (fixes #3)
tigron_skeleton-core
train
php
dedf256105a4de22ce2867f33a78bd35a122e09e
diff --git a/packages/components/bolt-popover/src/popover.js b/packages/components/bolt-popover/src/popover.js index <HASH>..<HASH> 100644 --- a/packages/components/bolt-popover/src/popover.js +++ b/packages/components/bolt-popover/src/popover.js @@ -170,7 +170,7 @@ class BoltPopover extends BoltElement { ${th...
fix: reverse tab index logic, if has focusable content pass through focus
bolt-design-system_bolt
train
js
16f57c06476a568b1cd2c5e34a4ccefe08a8a845
diff --git a/webapps/services/search.js b/webapps/services/search.js index <HASH>..<HASH> 100644 --- a/webapps/services/search.js +++ b/webapps/services/search.js @@ -6,7 +6,6 @@ ngDefine('cockpit.services', function(module) { $rootScope.$on('$routeUpdate', function(e, lastRoute) { if (silent) { - ...
fix(cockpit): fix $routeChange silencing directive - search directive silences $routeChange event only when the url changed during search.updateSilently() (and thus a $routeUpdate event is expected).
camunda_camunda-bpm-platform
train
js
21d47805f83f1957f104bd8c07914e5aabd287bb
diff --git a/src/validations/index.js b/src/validations/index.js index <HASH>..<HASH> 100644 --- a/src/validations/index.js +++ b/src/validations/index.js @@ -20,7 +20,7 @@ function runValidation (validation, param, pkgInfo, errs) { .run(param, pkgInfo) .then(() => done(true)) .catch(err => {...
refactor(validations): simplify the syntax
inikulin_publish-please
train
js
c85210d38b4d4501cf583056d75f43e4cc8e5e1b
diff --git a/src/InfoViz/Native/HistogramSelector/index.js b/src/InfoViz/Native/HistogramSelector/index.js index <HASH>..<HASH> 100644 --- a/src/InfoViz/Native/HistogramSelector/index.js +++ b/src/InfoViz/Native/HistogramSelector/index.js @@ -839,6 +839,21 @@ function histogramSelector(publicAPI, model) { if (Obje...
fix(HistogramSelector): Clear field annotation when the given annotation get removed from store
Kitware_paraviewweb
train
js
caaf7d564926a75714bec6c83c73d1200869a6d9
diff --git a/src/configure.js b/src/configure.js index <HASH>..<HASH> 100644 --- a/src/configure.js +++ b/src/configure.js @@ -158,7 +158,7 @@ export class Configure { * @returns {boolean} */ environmentEnabled() { - return (this.environment === 'default' || this.environment === '' || !this.envi...
fix(syntax): simplifying ternary and removing redundant assignments.
Vheissu_aurelia-configuration
train
js
a820d452934813fc8b5435519ff674df8b062d5b
diff --git a/lib/mongoose/index.js b/lib/mongoose/index.js index <HASH>..<HASH> 100755 --- a/lib/mongoose/index.js +++ b/lib/mongoose/index.js @@ -39,6 +39,8 @@ const MongoosePlugin = { Promise.all(queue).then(() => { next(); + }).catch((e) => { + console.log('[mongoose]', e); ...
fix(mongoose): catch promise rejections (#9)
bakjs_bak
train
js
05ea4b0b6ae70ba8a15f47439367a1a85932ff7e
diff --git a/lib/Stack.js b/lib/Stack.js index <HASH>..<HASH> 100644 --- a/lib/Stack.js +++ b/lib/Stack.js @@ -31,7 +31,7 @@ export default class Stack extends React.Component { } isAnimated() { - return _.get(this.props, 'animations.length'); + return this.props.animations; } getFirstLayerIndex()...
fix: use animated stack whenever animations is non-empty
poetic_react-super-components
train
js
786b5ae308e8e88aba61cd5a1db3b3ebf1f85524
diff --git a/packages/node_modules/cerebral/src/index.js b/packages/node_modules/cerebral/src/index.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/cerebral/src/index.js +++ b/packages/node_modules/cerebral/src/index.js @@ -89,7 +89,7 @@ export default function App(rootModule, options) { return new Cont...
fix(cerebral): actually assign existing instance for hot reloading
cerebral_cerebral
train
js
670afe7ef6fb2a3a3582ef951504d35f07c73ff1
diff --git a/src/components/inputs/checkbox-input/checkbox-input.js b/src/components/inputs/checkbox-input/checkbox-input.js index <HASH>..<HASH> 100644 --- a/src/components/inputs/checkbox-input/checkbox-input.js +++ b/src/components/inputs/checkbox-input/checkbox-input.js @@ -17,10 +17,11 @@ const sequentialId = crea...
fix(checkbox): hovered state when disabled (#<I>)
commercetools_ui-kit
train
js
a7dddba728d0e126ad71423ec8a5f09c55bd67f5
diff --git a/kv/document.go b/kv/document.go index <HASH>..<HASH> 100644 --- a/kv/document.go +++ b/kv/document.go @@ -594,12 +594,12 @@ func (s *Service) findDocuments(ctx context.Context, tx Tx, ns string, ds *[]*in return err } - cur, err := metab.Cursor() + cur, err := metab.ForwardCursor(nil) if err != ni...
fix(kv): Update documents in kv to use new forward cursor (#<I>)
influxdata_influxdb
train
go
f75af492b116cbb66cd31196e34e2feacc97ae5c
diff --git a/lib/launcher.js b/lib/launcher.js index <HASH>..<HASH> 100644 --- a/lib/launcher.js +++ b/lib/launcher.js @@ -206,7 +206,7 @@ var reporter = { if (taskReporter.failedCount) { log_(shortName + ' failed ' + taskReporter.failedCount + ' test(s)'); specFailures += taskReporter.failedCo...
style(launcher): fix != to !==
angular_protractor
train
js
95361f99f8a934ca7a2fd0f6a26e4db268162b08
diff --git a/toucan_data_sdk/utils/decorators.py b/toucan_data_sdk/utils/decorators.py index <HASH>..<HASH> 100644 --- a/toucan_data_sdk/utils/decorators.py +++ b/toucan_data_sdk/utils/decorators.py @@ -38,11 +38,10 @@ Note: """ import logging import time -from collections.abc import Callable from functools import ...
fix: import Callable for python <I>
ToucanToco_toucan-data-sdk
train
py
f4a954ccbbdc8b56eb64139a0c0dd873f7dd1105
diff --git a/src/lib/logger.js b/src/lib/logger.js index <HASH>..<HASH> 100644 --- a/src/lib/logger.js +++ b/src/lib/logger.js @@ -1,23 +1,23 @@ const logger = { - error (code, ...text) { + error (code, ...message) { console.error( `[next-auth][error][${code.toLowerCase()}]`, - JSON.stringify(text),...
feat: send all params to logger function (#<I>)
iaincollins_next-auth
train
js
10e35e28d5f07d15a2986f158a05a4c7644651d2
diff --git a/anyconfig/compat.py b/anyconfig/compat.py index <HASH>..<HASH> 100644 --- a/anyconfig/compat.py +++ b/anyconfig/compat.py @@ -63,7 +63,7 @@ if IS_PYTHON_3: raw_input = input STR_TYPES = (str, ) izip = zip - getargspec = inspect.getfullargspec + getargspec = inspect.getfullargspec # fl...
refactor: suppress pylint:no-member warns for some members not availble in python 2 or 3
ssato_python-anyconfig
train
py
bb8d2b77becfb67b1476d512a0eeb2a3f69900ae
diff --git a/lib/utils/__tests__/index.test.js b/lib/utils/__tests__/index.test.js index <HASH>..<HASH> 100644 --- a/lib/utils/__tests__/index.test.js +++ b/lib/utils/__tests__/index.test.js @@ -90,7 +90,7 @@ describe('logger', () => { }) logger.error(new Error('message'), 1) expect(console.log).toHaveBe...
test(logs): fix logs count
g3org3_yagg
train
js
8df1211880458f7c780d04d97787eb42f08ec28b
diff --git a/engine-rest/engine-rest/src/main/java/org/camunda/bpm/engine/rest/sub/repository/impl/ProcessDefinitionResourceImpl.java b/engine-rest/engine-rest/src/main/java/org/camunda/bpm/engine/rest/sub/repository/impl/ProcessDefinitionResourceImpl.java index <HASH>..<HASH> 100644 --- a/engine-rest/engine-rest/src/m...
feat(engine-rest): start a process instance on post with an empty body related to #CAM-<I>
camunda_camunda-bpm-platform
train
java
ae97dd85f771bb38f763b490d060a34959ca0293
diff --git a/src/addons/Select/Select.js b/src/addons/Select/Select.js index <HASH>..<HASH> 100644 --- a/src/addons/Select/Select.js +++ b/src/addons/Select/Select.js @@ -9,7 +9,7 @@ import Dropdown from '../../modules/Dropdown/Dropdown' * A <Select /> is sugar for <Dropdown selection />. * @see Dropdown */ -cons...
refactor(Select): use named function
Semantic-Org_Semantic-UI-React
train
js
c7930a0852d83e46103012d4903e3f99367ce1b3
diff --git a/master/buildbot/test/integration/test_telegram_bot.py b/master/buildbot/test/integration/test_telegram_bot.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/integration/test_telegram_bot.py +++ b/master/buildbot/test/integration/test_telegram_bot.py @@ -98,6 +98,7 @@ class TelegramBot(db.RealDataba...
test: Start and stop the mq service in telegram tests
buildbot_buildbot
train
py
3ee2200bea9b7060ec7a8ac9387548ecb9920b3f
diff --git a/packages/vant-cli/site/mobile/router.js b/packages/vant-cli/site/mobile/router.js index <HASH>..<HASH> 100644 --- a/packages/vant-cli/site/mobile/router.js +++ b/packages/vant-cli/site/mobile/router.js @@ -1,4 +1,4 @@ -import { nextTick } from 'vue'; +import { watch, nextTick } from 'vue'; import { create...
fix(cli): iframe route sync failed
youzan_vant
train
js
dd536857448055a4a5a8262136aad092275c0adb
diff --git a/generators/dockertools/index.js b/generators/dockertools/index.js index <HASH>..<HASH> 100644 --- a/generators/dockertools/index.js +++ b/generators/dockertools/index.js @@ -167,7 +167,7 @@ module.exports = class extends Generator { containerPathRun: '/app', containerPathTools: '/app', containe...
fix: changed the node debug port form <I> to <I>
ibm-developer_generator-ibm-cloud-enablement
train
js
5da08289da736b06e4e54c6d551abf3a7d4a1131
diff --git a/tests/unit/remote/ssh/test_connection.py b/tests/unit/remote/ssh/test_connection.py index <HASH>..<HASH> 100644 --- a/tests/unit/remote/ssh/test_connection.py +++ b/tests/unit/remote/ssh/test_connection.py @@ -6,10 +6,6 @@ import posixpath here = os.path.abspath(os.path.dirname(__file__)) -def test_co...
test: ssh: remove test_connection
iterative_dvc
train
py
bc89a17b4a92192281f7d49adf93442410831f24
diff --git a/test.js b/test.js index <HASH>..<HASH> 100644 --- a/test.js +++ b/test.js @@ -253,8 +253,7 @@ function factory (parserName, parseFn) { const obj = { foo (a, b, c) { return 123 }, bar (a) { return () => a }, - * gen (a) {}, - namedFn (a = {foo: 'ba)r', baz: 123}, cb, ...restArgs...
fix(tests): make it work on node 4 because not recognizes default arguments
tunnckoCoreLabs_parse-function
train
js
869e6ba0645033931b5627e274592cbb08fb8c89
diff --git a/views/cypress/tests/test.spec.js b/views/cypress/tests/test.spec.js index <HASH>..<HASH> 100644 --- a/views/cypress/tests/test.spec.js +++ b/views/cypress/tests/test.spec.js @@ -57,7 +57,7 @@ describe('Tests', () => { it('can create and rename a new test', function () { cy.selectNode(...
refactor: rename renameSelectedTest command
oat-sa_extension-tao-test
train
js
349a8fa7733fdcc17425e9ef2ed41f8d1931a301
diff --git a/framework/views/lazyRepeat.js b/framework/views/lazyRepeat.js index <HASH>..<HASH> 100644 --- a/framework/views/lazyRepeat.js +++ b/framework/views/lazyRepeat.js @@ -40,6 +40,10 @@ limitations under the License. this._provider = new ons._internal.LazyRepeatProvider(element[0].parentNode, element[0...
feat(ons-lazy-repeat): Add reload() method to delegate object.
OnsenUI_OnsenUI
train
js
c74dbae590f0b80858284a6c3c6fd41d1d8e8fbc
diff --git a/packages/netlify-cms-backend-git-gateway/src/implementation.js b/packages/netlify-cms-backend-git-gateway/src/implementation.js index <HASH>..<HASH> 100644 --- a/packages/netlify-cms-backend-git-gateway/src/implementation.js +++ b/packages/netlify-cms-backend-git-gateway/src/implementation.js @@ -92,7 +92,...
fix(netlify-cms-backend-git-gateway): content-type may have charset (#<I>)
netlify_netlify-cms
train
js
beb5b486018124f1fffcfc2ba6d1fd1e457edce0
diff --git a/inc/cloner/class-cloner.php b/inc/cloner/class-cloner.php index <HASH>..<HASH> 100644 --- a/inc/cloner/class-cloner.php +++ b/inc/cloner/class-cloner.php @@ -997,8 +997,8 @@ class Cloner { * @return bool Whether or not the book is public and licensed for cloning (or true if the current user is a network...
fix: improve hook handling for clonable hook
pressbooks_pressbooks
train
php
c692a8f0a72f80627855a54f908d6e6abe9412c1
diff --git a/server/raft_server_stats.go b/server/raft_server_stats.go index <HASH>..<HASH> 100644 --- a/server/raft_server_stats.go +++ b/server/raft_server_stats.go @@ -33,7 +33,7 @@ type raftServerStats struct { } func NewRaftServerStats(name string) *raftServerStats { - return &raftServerStats{ + stats := &raft...
fix(raft_server_stats): set startTime when init This helps one-node cluster get rid of bogus startTime.
etcd-io_etcd
train
go
cf53eef2569dfcf78b88444ab3f5b0f4decc32be
diff --git a/src/Response/index.js b/src/Response/index.js index <HASH>..<HASH> 100644 --- a/src/Response/index.js +++ b/src/Response/index.js @@ -258,7 +258,16 @@ class Response extends Macroable { * @return {void} */ redirect (url, status) { - nodeRes.redirect(this.request, this.response, url, status) +...
fix(response): make redirect lazy too
adonisjs_adonis-framework
train
js,js
412ed5b31d6d966ebea94f47c071fe624068107d
diff --git a/eslint/strict.js b/eslint/strict.js index <HASH>..<HASH> 100644 --- a/eslint/strict.js +++ b/eslint/strict.js @@ -3,11 +3,6 @@ module.exports = { 'rules': { // require effective use of strict mode directives // see http://adoyle.me/blog/implicit-strict-mode.html - 'strict': [2...
fix: update strict rule in eslint/strict and node/es6
adoyle-h_eslint-config-adoyle-style
train
js,js
9b809b3caa83aea5ed6329ce50a6863d232c2093
diff --git a/test/runner/runner.go b/test/runner/runner.go index <HASH>..<HASH> 100644 --- a/test/runner/runner.go +++ b/test/runner/runner.go @@ -246,6 +246,9 @@ func (r *Runner) httpEventHandler(w http.ResponseWriter, req *http.Request) { name := strings.Join(header, " ") var event Event switch name { + case "p...
test: Respond to Github ping events
flynn_flynn
train
go
a24d961af20c50e6942c8f653166421796132ef4
diff --git a/src/memote/experimental/essentiality.py b/src/memote/experimental/essentiality.py index <HASH>..<HASH> 100644 --- a/src/memote/experimental/essentiality.py +++ b/src/memote/experimental/essentiality.py @@ -93,9 +93,7 @@ class EssentialityExperiment(Experiment): essen = single_gene_deletion( ...
refactor: remove superfluous filter
opencobra_memote
train
py
3dec8e40472a3b914a316f133324c5dc85b01d92
diff --git a/examples/docs_snippets_crag/docs_snippets_crag_tests/guides_tests/reexecution_tests/test_unreliable_job.py b/examples/docs_snippets_crag/docs_snippets_crag_tests/guides_tests/reexecution_tests/test_unreliable_job.py index <HASH>..<HASH> 100644 --- a/examples/docs_snippets_crag/docs_snippets_crag_tests/guid...
test: do not raise on error for unreliable job (#<I>)
dagster-io_dagster
train
py
d17c3221ae9b6987d11962716e7129fab38b7934
diff --git a/packages/bonde-public/next.config.js b/packages/bonde-public/next.config.js index <HASH>..<HASH> 100644 --- a/packages/bonde-public/next.config.js +++ b/packages/bonde-public/next.config.js @@ -2,12 +2,14 @@ require('dotenv').config() const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer') ...
chore(devops): Add to webpack publicpath default cdn when production
nossas_bonde-client
train
js
0cc5a1ba851aa4aecd58447905859dade69b2950
diff --git a/src/getScrollBarSize.js b/src/getScrollBarSize.js index <HASH>..<HASH> 100644 --- a/src/getScrollBarSize.js +++ b/src/getScrollBarSize.js @@ -1,6 +1,10 @@ let cached; export default function getScrollBarSize(fresh) { + if (typeof document === 'undefined') { + return 0; + } + if (fresh || cached...
fix: Not crash in ssr of getScrollSize
react-component_util
train
js
9c9d061a5adb9be8cd363795f748cdcf633827db
diff --git a/packages/cozy-client/src/CozyClient.js b/packages/cozy-client/src/CozyClient.js index <HASH>..<HASH> 100644 --- a/packages/cozy-client/src/CozyClient.js +++ b/packages/cozy-client/src/CozyClient.js @@ -157,6 +157,10 @@ export default class CozyClient { ) } + validate(document) { + return this...
fix: Validate on client proxies to schema
cozy_cozy-client
train
js
e0eaf7fb28dfe9d1257be1bfddf406f61230cd75
diff --git a/src/resources/views/character/mining-ledger.blade.php b/src/resources/views/character/mining-ledger.blade.php index <HASH>..<HASH> 100644 --- a/src/resources/views/character/mining-ledger.blade.php +++ b/src/resources/views/character/mining-ledger.blade.php @@ -5,12 +5,12 @@ @inject('request', Illuminate\...
feat(deps): upgrade character mining
eveseat_web
train
php
d622f02d75b9849a2135ffd22c3b959b2029f2df
diff --git a/lib/Kayn.js b/lib/Kayn.js index <HASH>..<HASH> 100644 --- a/lib/Kayn.js +++ b/lib/Kayn.js @@ -212,7 +212,7 @@ class Kayn { } console.warn(` - WARNING: Please be aware that the V3 endpoints will be deprecated by January 14th, 2019. + UPDATED WARNING: Please be aware...
fix: Update deprecation warning to 1/<I>/<I> as per docs #<I>
cnguy_kayn
train
js
baad675bf85ecbdcdb94e67ff3b26177e6bfaa6b
diff --git a/lib/features/context-menu/components/ContextMenuComponent.js b/lib/features/context-menu/components/ContextMenuComponent.js index <HASH>..<HASH> 100644 --- a/lib/features/context-menu/components/ContextMenuComponent.js +++ b/lib/features/context-menu/components/ContextMenuComponent.js @@ -100,9 +100,10 @@ ...
feat(context-menu): close if target contains context menu * instead of checking wether context menu contains target we now check the other way around (sometimes target might already have been deleted therefore context menu would close)
bpmn-io_table-js
train
js
b2c2f3bb7d56af09b0d2bce56f75518e0abc69e2
diff --git a/src/geshi/powerbuilder.php b/src/geshi/powerbuilder.php index <HASH>..<HASH> 100644 --- a/src/geshi/powerbuilder.php +++ b/src/geshi/powerbuilder.php @@ -129,7 +129,7 @@ $language_data = array ( 'dragleave!', 'dragobject!', 'dragwithin!', 'drawobject!', 'dropdownlistbox!', 'dropdo...
fix: Whitespace issue according to langcheck
GeSHi_geshi-1.0
train
php
d6762a80b56c6f9e05517f351f880f522b203ad2
diff --git a/src/runner.js b/src/runner.js index <HASH>..<HASH> 100644 --- a/src/runner.js +++ b/src/runner.js @@ -17,8 +17,8 @@ function Runner(top, options = {}) { throw Error('Must pass a top-level test group') } this.tests = top.tests - this.quiet = options.quiet == true - this.verbose = options.verbos...
feat: make `verbose: true` override `quiet: true`
aleclarson_testpass
train
js
119686ae6a09ee5250ae88c88916b338854864f2
diff --git a/anyconfig/api.py b/anyconfig/api.py index <HASH>..<HASH> 100644 --- a/anyconfig/api.py +++ b/anyconfig/api.py @@ -133,8 +133,9 @@ def _load_schema(**options): """ ac_schema = options.get("ac_schema", None) if ac_schema is not None: - options["ac_parser"] = None # Try to detect it as ...
fix: (comment) indentation fix
ssato_python-anyconfig
train
py
58a77b5d9f6f08b4f93ca358c9927157ab5ae653
diff --git a/alot/command.py b/alot/command.py index <HASH>..<HASH> 100644 --- a/alot/command.py +++ b/alot/command.py @@ -919,7 +919,10 @@ def interpret_commandline(cmdline, mode): if cmd == 'search': return commandfactory(cmd, mode=mode, query=params) elif cmd == 'compose': - return commandf...
fix: parameter for compose should go to To
pazz_alot
train
py,py
53bf63288a2c4a14dd31b39d1372a3598af5d2e5
diff --git a/tests/Keboola/Csv/CsvFileTest.php b/tests/Keboola/Csv/CsvFileTest.php index <HASH>..<HASH> 100644 --- a/tests/Keboola/Csv/CsvFileTest.php +++ b/tests/Keboola/Csv/CsvFileTest.php @@ -268,4 +268,21 @@ class Keboola_CsvFileTest extends PHPUnit_Framework_TestCase $this->assertFalse($csvFile->valid()); } ...
test: Handle bad data writeRow
keboola_php-csv
train
php
b9dce0525578de6e205200a63e07f1b3526225c3
diff --git a/packages/editor/src/codemirror.js b/packages/editor/src/codemirror.js index <HASH>..<HASH> 100644 --- a/packages/editor/src/codemirror.js +++ b/packages/editor/src/codemirror.js @@ -5,7 +5,6 @@ const React = require("react"); const ReactDOM = require("react-dom"); -const findDOMNode = ReactDOM.findDOMN...
refactor(editor): Remove use of findDOMNode (#<I>)
nteract_nteract
train
js
11ef8bb4dee94c026246834046d9a1b10c1bacf5
diff --git a/lib/tools/adb-commands.js b/lib/tools/adb-commands.js index <HASH>..<HASH> 100644 --- a/lib/tools/adb-commands.js +++ b/lib/tools/adb-commands.js @@ -1704,7 +1704,8 @@ methods.listFeatures = async function listFeatures () { methods.isStreamedInstallSupported = async function isStreamedInstallSupported () ...
fix: Update incremental install support detection (#<I>)
appium_appium-adb
train
js
8d1c4cf7fdf71bf0ef153b284c96980b02a3f76c
diff --git a/src/walk.js b/src/walk.js index <HASH>..<HASH> 100644 --- a/src/walk.js +++ b/src/walk.js @@ -48,6 +48,7 @@ function initialise (stream, options) { let isWalkingString = false let count = 0 let resumeFn + let cachedCharacter const json = [] const lengths = [] @@ -168,15 +169,19 @@ functio...
fix(perf): micro-optimise walk::character
philbooth_bfj
train
js
d119307618e27d3d7044601a3614d678bf51b88b
diff --git a/nodes/events-state-changed/events-state-changed.js b/nodes/events-state-changed/events-state-changed.js index <HASH>..<HASH> 100644 --- a/nodes/events-state-changed/events-state-changed.js +++ b/nodes/events-state-changed/events-state-changed.js @@ -126,12 +126,7 @@ module.exports = function (RED) { ...
fix(events-state): reset timer active flag when condition is false
zachowj_node-red-contrib-home-assistant-websocket
train
js
72b32d876db5b6b32abb2468b62f3d1890b86c91
diff --git a/tests/validator.system.test.js b/tests/validator.system.test.js index <HASH>..<HASH> 100644 --- a/tests/validator.system.test.js +++ b/tests/validator.system.test.js @@ -10,7 +10,7 @@ it('loads all referenced remote schemas', function (done) { Validator.simple( - 'htt...
test(validator): reference a more stable example schema for the 'in-the-wild' test
Magomogo_json-schema-validator
train
js
76f51cc3de8684b9a1ed49b67f1c556676254885
diff --git a/models/classes/creator/TreeItemLookup.php b/models/classes/creator/TreeItemLookup.php index <HASH>..<HASH> 100644 --- a/models/classes/creator/TreeItemLookup.php +++ b/models/classes/creator/TreeItemLookup.php @@ -24,6 +24,7 @@ namespace oat\taoQtiTest\models\creator; use common_exception_Error; use core...
fix: string replaced with a constant
oat-sa_extension-tao-testqti
train
php
7e47a0721bd56d4c3a5237ae0daff6763ae84417
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 @@ -86,7 +86,7 @@ export default createComponent({ }, }, - emits: ['rendered', 'input', 'change', 'disabled', 'click', 'scroll'], + emits: ['click', 'change', 'scroll', 'disabled', ...
fix(Tabs): update:active event
youzan_vant
train
js
7a1b93eca7446c4183298a03178f737678d85678
diff --git a/src/parser/parseReactElement.js b/src/parser/parseReactElement.js index <HASH>..<HASH> 100644 --- a/src/parser/parseReactElement.js +++ b/src/parser/parseReactElement.js @@ -14,7 +14,7 @@ const supportFragment = Boolean(Fragment); const getReactElementDisplayName = (element: ReactElement<*>): string => ...
fix(formatting): fix the anonymous functional component detection after babel upgrade
algolia_react-element-to-jsx-string
train
js
3d0921f98e036313e4e68ffd7f9274a6f37c386b
diff --git a/app/reducers/editor.js b/app/reducers/editor.js index <HASH>..<HASH> 100644 --- a/app/reducers/editor.js +++ b/app/reducers/editor.js @@ -74,8 +74,6 @@ export const editor = (state = {}, action) => { return addTab(state, action); case TAB_CLOSE: return R.dissocPath(['tabs', action.payloa...
fix(tabs): remove unneeded reaction for tab_switch (its equal to patch_switch) from editorReducer
xodio_xod
train
js
7d29e75348d2508c9813ae373af261518ffdc7ce
diff --git a/src/Leevel/Validate/Validator.php b/src/Leevel/Validate/Validator.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Validate/Validator.php +++ b/src/Leevel/Validate/Validator.php @@ -626,12 +626,20 @@ class Validator implements IValidator */ protected function arrayRuleItem(string|array $rules): ...
refactor(validate): Validation rules support array and string mixing
hunzhiwange_framework
train
php
5034267d8dc86856860cfdd5f356694367b67cfe
diff --git a/test/lib/batch-client.js b/test/lib/batch-client.js index <HASH>..<HASH> 100644 --- a/test/lib/batch-client.js +++ b/test/lib/batch-client.js @@ -55,7 +55,7 @@ function BatchClient(channel, hosts, options) { self.serviceName = 'server'; self.endpoint = options.endpoint || 'echo'; self.body =...
test: upgrade timeout for travis to 1s
uber_tchannel-node
train
js,js
40997cb89cfb99e29410ae68e75a7e8b219e15c2
diff --git a/packages/docs/src/components/Navigation.js b/packages/docs/src/components/Navigation.js index <HASH>..<HASH> 100644 --- a/packages/docs/src/components/Navigation.js +++ b/packages/docs/src/components/Navigation.js @@ -25,12 +25,12 @@ const Navigation = ({ location }) => ( <div className="collapse na...
fix(www): Link using wrong to path
Availity_availity-uikit
train
js
444b0243105fd9a5066e95c83034a9f457dd2490
diff --git a/packages/patternfly-4/react-core/src/components/ApplicationLauncher/ApplicationLauncher.js b/packages/patternfly-4/react-core/src/components/ApplicationLauncher/ApplicationLauncher.js index <HASH>..<HASH> 100644 --- a/packages/patternfly-4/react-core/src/components/ApplicationLauncher/ApplicationLauncher.j...
fix(ApplicationLauncher): fix rename ariaHasPopup attribute to aria-haspopup (#<I>) #<I>
patternfly_patternfly-react
train
js
7730ee13ed0f57a203698316d9173b1ca42e14cf
diff --git a/lib/webpack/createBaseConfig.js b/lib/webpack/createBaseConfig.js index <HASH>..<HASH> 100644 --- a/lib/webpack/createBaseConfig.js +++ b/lib/webpack/createBaseConfig.js @@ -108,7 +108,7 @@ module.exports = function createBaseConfig ({ .loader('vue-loader') .options({ compilerO...
fix: missing space between italics and bold (close: #<I>) "markdown-it" will intendedly reserve this space, and this issue was caused by "preserveWhitespace: true" (See: <URL>), Impact on performance (Size of whole assets): Before (<I>K), After (<I>K), which is an acceptable change.
vuejs_vuepress
train
js
8e2bc32b3181d771ae22cf0dfe46f8728d5601c7
diff --git a/src/__tests__/read-test.js b/src/__tests__/read-test.js index <HASH>..<HASH> 100644 --- a/src/__tests__/read-test.js +++ b/src/__tests__/read-test.js @@ -1,3 +1,5 @@ +"use strict"; + const read = require("../read"); describe("read", function() { diff --git a/src/read.js b/src/read.js index <HASH>..<HAS...
feat(node): use strict mode to support older node
dcos-labs_recordio
train
js,js
e6a0465d6d2f94cbe44f55f495ce69412477ad8b
diff --git a/src/client/services/board/persistence/persistence.js b/src/client/services/board/persistence/persistence.js index <HASH>..<HASH> 100644 --- a/src/client/services/board/persistence/persistence.js +++ b/src/client/services/board/persistence/persistence.js @@ -92,10 +92,7 @@ var PersistenceService = SparkBase...
feat(board): upload snapshot using PATCH rather than PUT
webex_spark-js-sdk
train
js
754b4904c31adf8670a3d66d4968dc5599a0fa0c
diff --git a/scripts/build.js b/scripts/build.js index <HASH>..<HASH> 100755 --- a/scripts/build.js +++ b/scripts/build.js @@ -5,7 +5,7 @@ const execa = require('execa') // 1.x const path = require('path') const fs = require('fs-extra') // 6.x -const NPM_BIN = './node_modules/.bin' +const NPM_BIN = './node_modules/...
fix(build): replace / with path.sep
react-spring_react-spring
train
js
e5cd8de73caedb1e61f7f4345d2ce0b2013a92e7
diff --git a/pyneuroml/pynml.py b/pyneuroml/pynml.py index <HASH>..<HASH> 100644 --- a/pyneuroml/pynml.py +++ b/pyneuroml/pynml.py @@ -717,15 +717,21 @@ def cell_info(cell): """Provide information on a NeuroML Cell instance: - morphological information: + - Segment information: + - parent se...
docs(pynml): add blank lines between sub-lists in doc string This is necessary for rst to think of these as nested lists. Reference: <URL>
NeuroML_pyNeuroML
train
py
f3ed6b1a135caa09d9f369f9a9b8bb2a8145c0c3
diff --git a/src/js/core/overflow-auto.js b/src/js/core/overflow-auto.js index <HASH>..<HASH> 100644 --- a/src/js/core/overflow-auto.js +++ b/src/js/core/overflow-auto.js @@ -1,5 +1,5 @@ import Class from '../mixin/class'; -import {closest, css, height, offset, toFloat, trigger} from 'uikit-util'; +import {closest, cs...
refactor: make sure el is visible
uikit_uikit
train
js
3b2368d4cbfccff65fa493ea0a66a94785a80b1e
diff --git a/jira.go b/jira.go index <HASH>..<HASH> 100644 --- a/jira.go +++ b/jira.go @@ -384,7 +384,9 @@ func (t *BasicAuthTransport) transport() http.RoundTripper { // PATAuthTransport is an http.RoundTripper that authenticates all requests // using the Personal Access Token specified. +// See here for more info...
docs: added comment on Token field and ref to PAT documentation.
andygrunwald_go-jira
train
go
3ab6b65854b433cb32c60038cbdbfc1131cfbd91
diff --git a/onsenui/esm/elements/ons-action-sheet.js b/onsenui/esm/elements/ons-action-sheet.js index <HASH>..<HASH> 100644 --- a/onsenui/esm/elements/ons-action-sheet.js +++ b/onsenui/esm/elements/ons-action-sheet.js @@ -32,7 +32,7 @@ const scheme = { }; const _animatorDict = { - 'default': () => platform.isAndr...
fix(ons-action-sheet): Fix platform-specific animations throwing error The error is thrown because platform-specific entries in animatorDict are functions that return constructors, but are called as if they are constructors. These entries were defined using arrow functions, which are not constructable. This commit rep...
OnsenUI_OnsenUI
train
js
b070205313e1f93496adac9cc796913964b274eb
diff --git a/update-server/otupdate/buildroot/ssh_key_management.py b/update-server/otupdate/buildroot/ssh_key_management.py index <HASH>..<HASH> 100644 --- a/update-server/otupdate/buildroot/ssh_key_management.py +++ b/update-server/otupdate/buildroot/ssh_key_management.py @@ -148,7 +148,7 @@ async def add(request: we...
fix(update-server): Fix hash in SSH key upload response message (#<I>) The `f` was forgotten from an f-string, causing the "Added key {hashval}" response to an SSH key upload to include the literal string "{hashval}".
Opentrons_opentrons
train
py
d2560375c3373bbff67a27cd0bf59320a9262703
diff --git a/app/assets/javascripts/activeadmin_addons/inputs/date-time-picker.js b/app/assets/javascripts/activeadmin_addons/inputs/date-time-picker.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/activeadmin_addons/inputs/date-time-picker.js +++ b/app/assets/javascripts/activeadmin_addons/inputs/date-time...
refactor(DateTimePicker): disable scroll input as default option
platanus_activeadmin_addons
train
js
a8d2dae8ccc90cdf5e56514d5d8bc5f418b4d0f9
diff --git a/packages/demoing-storybook/src/shared/getAssets.js b/packages/demoing-storybook/src/shared/getAssets.js index <HASH>..<HASH> 100644 --- a/packages/demoing-storybook/src/shared/getAssets.js +++ b/packages/demoing-storybook/src/shared/getAssets.js @@ -61,8 +61,12 @@ module.exports = function getAssets({ ...
fix(demoing-storybook): make preview.js available to storybook-build
open-wc_open-wc
train
js
6d9a13a7db3e4bb720680e01c7e6ac77af137079
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -52,7 +52,7 @@ class AutocompletePrompt extends Base { var events = observe(this.rl); - const dontHaveAnswer = () => !this.answer; + const dontHaveAnswer = () => this.answer === undefined; events.line ...
fix: stops the prompt on empty string answer If user chooses the empty string as an intentional answer, the autocomplete-questions still goes on and interferes in next questions, overriding the answers
mokkabonna_inquirer-autocomplete-prompt
train
js
1e7cfa11392fc4b368fd4a3633966d10d1b81efc
diff --git a/lib/components/narrative/default/default-itinerary.js b/lib/components/narrative/default/default-itinerary.js index <HASH>..<HASH> 100644 --- a/lib/components/narrative/default/default-itinerary.js +++ b/lib/components/narrative/default/default-itinerary.js @@ -4,10 +4,6 @@ import React from 'react' impor...
refactor: remove unused components post merge
opentripplanner_otp-react-redux
train
js
895ca7dd327aa4c5b5829306b8fd66bcc98a2a2e
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 @@ -1,7 +1,7 @@ const webpack = require('webpack') const { version } = require('../../package.json') module.exports = { - base: process.env.PORTAL_VUE_DOCS_PATH ...
fix(docs): link to old docs
LinusBorg_portal-vue
train
js
6fff3a97197e198e5c34b0adc3f8782eaead4374
diff --git a/packages/strickland/src/props.js b/packages/strickland/src/props.js index <HASH>..<HASH> 100644 --- a/packages/strickland/src/props.js +++ b/packages/strickland/src/props.js @@ -14,24 +14,14 @@ export default function props(propRules, validatorProps) { const propNames = Object.keys(validator...
refactor: more preparation for async props
jeffhandley_strickland
train
js
42144c21808a418fd547ffdab968858f8f789221
diff --git a/tests/karma.conf.js b/tests/karma.conf.js index <HASH>..<HASH> 100644 --- a/tests/karma.conf.js +++ b/tests/karma.conf.js @@ -122,6 +122,8 @@ const travisLaunchers = { }; module.exports = function (config) { + const objectToStringPolyfillPath = require.resolve('core-js/library/modules/es6.object.to-st...
fix(test): avoid default-not-exported warning from Rollup in test (#<I>) core-js/library/modules/es6.object.to-string.js is a zero-length file, and thus has no default export. Fixes #<I>.
carbon-design-system_carbon-components
train
js
0964e55375f244ba8a9bde3b3c77877c5d2c0d82
diff --git a/components/dropdown/dropdown.js b/components/dropdown/dropdown.js index <HASH>..<HASH> 100644 --- a/components/dropdown/dropdown.js +++ b/components/dropdown/dropdown.js @@ -1,6 +1,8 @@ import Intact from 'intact'; import {isTextVNode, findParentComponent} from '../utils'; import DropdownMenu from './me...
fix: Tooltip has extended Dropdown but does not import the stylus of it, close #<I>
ksc-fe_kpc
train
js,js
8cdc9d122da1f59f21798640a4ffd035dcb3128b
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 @@ -132,7 +132,7 @@ module.exports = (api, options) => { }, projectD...
fix(dev-server): pass 2nd argument to devServer.before (#<I>) closes #<I>
vuejs_vue-cli
train
js
e02dde88e6e8b52dd70ef17dd39e0b9ba6b7f561
diff --git a/docs/how-tos/write-did-and-query-verkey/nodejs/step3.js b/docs/how-tos/write-did-and-query-verkey/nodejs/step3.js index <HASH>..<HASH> 100644 --- a/docs/how-tos/write-did-and-query-verkey/nodejs/step3.js +++ b/docs/how-tos/write-did-and-query-verkey/nodejs/step3.js @@ -16,7 +16,7 @@ logValue('Steward ...
docs(how-tos): fixes typo in comment
hyperledger_indy-sdk
train
js
243245c80be6de72365625fbeae7b5980905fc0c
diff --git a/api-bucket-tagging.go b/api-bucket-tagging.go index <HASH>..<HASH> 100644 --- a/api-bucket-tagging.go +++ b/api-bucket-tagging.go @@ -107,7 +107,7 @@ func (c Client) SetBucketTaggingWithContext(ctx context.Context, bucketName stri if err != nil { return err } - if resp.StatusCode != http.StatusOK { ...
fix: Accept <I> as success (#<I>)
minio_minio-go
train
go
c33eeac6a3ac17efa78fb1a8826c97d2a294ca1f
diff --git a/spec/scenarios.spec.js b/spec/scenarios.spec.js index <HASH>..<HASH> 100644 --- a/spec/scenarios.spec.js +++ b/spec/scenarios.spec.js @@ -9,7 +9,7 @@ setupForRspec(describe, it); scenarios('scenario_runner', () => { return { - should_be_able_to_run_scenarios_over_an_rspec_runner() { + ...
refactor(tests): Improve test
jsGiven_jsGiven
train
js
ca47e22a89190b229905cce12ae0852d8bbb4cab
diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/bpmn/parser/BpmnParse.java b/engine/src/main/java/org/camunda/bpm/engine/impl/bpmn/parser/BpmnParse.java index <HASH>..<HASH> 100644 --- a/engine/src/main/java/org/camunda/bpm/engine/impl/bpmn/parser/BpmnParse.java +++ b/engine/src/main/java/org/camunda/bpm/...
chore(parser): note about reuse and threadsafety
camunda_camunda-bpm-platform
train
java
b7940c40794d726737453dc60c74ce30db9bf32d
diff --git a/src/components/VSelect/mixins/select-generators.js b/src/components/VSelect/mixins/select-generators.js index <HASH>..<HASH> 100644 --- a/src/components/VSelect/mixins/select-generators.js +++ b/src/components/VSelect/mixins/select-generators.js @@ -109,7 +109,7 @@ export default { style: { 'overf...
fix: Don't show 'undefined' in empty v-selects with Vue <I> Vue <I> has a change that causes the string 'undefined' to be rendered when using an empty array in the children array of createElement (cherry picked from commit f<I>f8ec<I>c<I>eba<I>a8a<I>a7)
vuetifyjs_vuetify
train
js
65496b3ed181abebf600004f4de3543092f6c05e
diff --git a/src/components/Application/index.js b/src/components/Application/index.js index <HASH>..<HASH> 100644 --- a/src/components/Application/index.js +++ b/src/components/Application/index.js @@ -47,18 +47,18 @@ Application.propTypes = { locale: PropTypes.string, /** The application theme. */ them...
fix: console errors (#<I>)
90milesbridge_react-rainbow
train
js
46b83467eefbcdb14ce89ee1cac6fe26e2230ebc
diff --git a/packages/components/bolt-modal/src/modal.js b/packages/components/bolt-modal/src/modal.js index <HASH>..<HASH> 100644 --- a/packages/components/bolt-modal/src/modal.js +++ b/packages/components/bolt-modal/src/modal.js @@ -77,15 +77,6 @@ class BoltModal extends withLitHtml() { this.dispatchEvent(new Cu...
chore: remove old code in modal.js
bolt-design-system_bolt
train
js
b367e05a3f37db4377efd5ae576e2f9e6a772256
diff --git a/system/Helpers/array_helper.php b/system/Helpers/array_helper.php index <HASH>..<HASH> 100644 --- a/system/Helpers/array_helper.php +++ b/system/Helpers/array_helper.php @@ -53,6 +53,10 @@ if (! function_exists('_array_search_dot')) { $answer = []; foreach ($array as $value) { +...
fix: unexpected array structure causes Type Error Fixes #<I>
codeigniter4_CodeIgniter4
train
php,php
89ab34c81523808c066111d4a28b7bb829565996
diff --git a/packages/components/bolt-navbar/__tests__/navbar.js b/packages/components/bolt-navbar/__tests__/navbar.js index <HASH>..<HASH> 100644 --- a/packages/components/bolt-navbar/__tests__/navbar.js +++ b/packages/components/bolt-navbar/__tests__/navbar.js @@ -203,12 +203,14 @@ describe('<bolt-navbar> Component',...
fix: update navbar Jest test to wait until page navigation has finished. fixes inconsistent navbar test
bolt-design-system_bolt
train
js
eac00f78ebada032990105302e5a32d14f3b7df9
diff --git a/src/components/infinite-scroll/QInfiniteScroll.js b/src/components/infinite-scroll/QInfiniteScroll.js index <HASH>..<HASH> 100644 --- a/src/components/infinite-scroll/QInfiniteScroll.js +++ b/src/components/infinite-scroll/QInfiniteScroll.js @@ -62,7 +62,7 @@ export default { resume () { this.w...
feat: Infinite scroll delay after resume #<I>
quasarframework_quasar
train
js
5506f528e55b6d2e1a06190509af97b9062437d9
diff --git a/internal/process/process_test.go b/internal/process/process_test.go index <HASH>..<HASH> 100644 --- a/internal/process/process_test.go +++ b/internal/process/process_test.go @@ -20,6 +20,10 @@ import ( // test that a restarting process resets pipes properly func TestRestartingRebindsPipes(t *testing.T)...
chore: remove slow process test (#<I>)
influxdata_telegraf
train
go
487b9b7d4b7144bd0f7a9969151a6c2901a87070
diff --git a/src/components/datepicker/datePicker.js b/src/components/datepicker/datePicker.js index <HASH>..<HASH> 100644 --- a/src/components/datepicker/datePicker.js +++ b/src/components/datepicker/datePicker.js @@ -21,6 +21,7 @@ * @module material.components.datepicker * * @param {Date} ng-model The com...
docs(datepicker): add ng-change to datepicker attrs.
angular_material
train
js
577b589fcf17c0286e23b60920731546bc606cb9
diff --git a/test/extended/etcd/leader_changes.go b/test/extended/etcd/leader_changes.go index <HASH>..<HASH> 100644 --- a/test/extended/etcd/leader_changes.go +++ b/test/extended/etcd/leader_changes.go @@ -24,7 +24,7 @@ var _ = g.Describe("[sig-etcd] etcd", func() { testDuration := exutil.DurationSinceStartInSecond...
test: Calculate leader elections over individual metrics The change to calculation worked when the metric was new (because the serial test cleared the PV data) but not when it was restarted. Simplify the metric with the new data from when we have preserved the change.
openshift_origin
train
go
dcfbcf4f63570ee8f15dffd9bf6cb52caea52eb9
diff --git a/src/anyconfig/schema/common.py b/src/anyconfig/schema/common.py index <HASH>..<HASH> 100644 --- a/src/anyconfig/schema/common.py +++ b/src/anyconfig/schema/common.py @@ -7,7 +7,7 @@ import typing -DataT = typing.Dict[str, typing.Any] +DataT = typing.Mapping[str, typing.Any] ResultT = typing.Tuple[boo...
fix: allow broader type as DataT
ssato_python-anyconfig
train
py
1022a34bf6259a2b634f2550e3d74524bb03e251
diff --git a/src/foremast/pipeline/construct_pipeline_block.py b/src/foremast/pipeline/construct_pipeline_block.py index <HASH>..<HASH> 100644 --- a/src/foremast/pipeline/construct_pipeline_block.py +++ b/src/foremast/pipeline/construct_pipeline_block.py @@ -64,7 +64,7 @@ def check_provider_healthcheck(settings, defaul...
fix: Simplify conditional check
foremast_foremast
train
py
922f2dbbd753f0e7b7d64b04fa3dd86651991688
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,5 +1,4 @@ const path = require('path') -const webpack = require('webpack') const UglifyJsPlugin = require("uglifyjs-webpack-plugin") var NPM_RUN = process.env.npm_lifecycle_event
chore(webpack): remove unused reference
clappr_dash-shaka-playback
train
js
8fc073da3a9dfaa6a24f286767260df762a5999f
diff --git a/lib/request-validation-middleware.js b/lib/request-validation-middleware.js index <HASH>..<HASH> 100644 --- a/lib/request-validation-middleware.js +++ b/lib/request-validation-middleware.js @@ -1,5 +1,7 @@ module.exports = requestValidationMiddleware; +const { URL } = require("url"); + function request...
fix: import missing URL class in middleware
octokit_fixtures-server
train
js
1ea0fa60bcb0a0d1211b74fa8ad81943717580ed
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -24,18 +24,6 @@ import parsePropertyValue from './parse-property-value' */ /** - * Fixes Webcomponents' broken way of wrapping elements, which causes problems with using `getComputedStyle` in Firefox. - * ...
refactor: remove fix for Webcomponents The fix does not work. Webcomponents mess with native objects and methods. They trow away the originals. There's no way around this. `getComputedStyle` is broken in Firefox and it's Webcomponents' fault.
fczbkk_style-properties
train
js
b0f6d2feb3a666a9f7e599d7a59d5b3c92f14fad
diff --git a/packages/cozy-pouch-link/src/PouchManager.js b/packages/cozy-pouch-link/src/PouchManager.js index <HASH>..<HASH> 100644 --- a/packages/cozy-pouch-link/src/PouchManager.js +++ b/packages/cozy-pouch-link/src/PouchManager.js @@ -304,7 +304,10 @@ class PouchManager { localStorage.persistWarmedUpQueries(...
feat: Add doctype specification in warmupQueries error to have a better idea on wich doctype a warmup query doesn't work
cozy_cozy-client
train
js
76f13cd7d7a9caf722055a1fa7325b122b8bd759
diff --git a/lib/core/Canvas.js b/lib/core/Canvas.js index <HASH>..<HASH> 100644 --- a/lib/core/Canvas.js +++ b/lib/core/Canvas.js @@ -711,7 +711,7 @@ Canvas.prototype.viewbox = function(box) { // compute the inner box based on the // diagrams default layer. This allows us to exclude // external componen...
chore(project): FireFox adjustments
bpmn-io_diagram-js
train
js,js
920b7a80694ef08bb84b687393cb7c47d34531af
diff --git a/lib/util/index.js b/lib/util/index.js index <HASH>..<HASH> 100644 --- a/lib/util/index.js +++ b/lib/util/index.js @@ -1288,6 +1288,7 @@ function getResponseBody(options, callback) { callbackHandler(new Error('Timeout')); }; var timer = setTimeout(timeoutHandler, REQUEST_TIMEOUT); + options.agen...
refactor: Add httpAgent for plugin request
avwo_whistle
train
js
c13ee1b996c92d3fc2da5bcc7e397a8688c6faef
diff --git a/test/unit/VStep.spec.js b/test/unit/VStep.spec.js index <HASH>..<HASH> 100644 --- a/test/unit/VStep.spec.js +++ b/test/unit/VStep.spec.js @@ -1,6 +1,7 @@ import { expect } from 'chai' -import { shallow } from '@vue/test-utils' +import { shallowMount } from '@vue/test-utils' import VStep from '@/component...
chore(test): added labels so that unit tests would execute, changed shallow to shallowMount since it's being depricated
pulsardev_vue-tour
train
js
4706339a9afbba4fa501be3abf7ed769b986b7c3
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 @@ -111,7 +111,7 @@ func NewAPIHandler(b *APIBackend) *APIHandler { h.ScraperHandler.Logger = b.Logger.With(zap.String("handler", "scraper")) h.SourceHandler = NewSourceHandler() ...
feat(http): hook handler's source svc to authorizer
influxdata_influxdb
train
go
26282f28b50f4c8f1206747187f19d626bcb0d73
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -143,7 +143,7 @@ export default class Carousel extends Component { } } - shouldComponentUpdate(nextProps, nextState) { + shouldComponentUpdate (nextProps, nextState) { if (this.props.shouldOptimi...
chore(component): lint all the things :boom:
archriss_react-native-snap-carousel
train
js
4880f7ee898bc2339b6e73cdd0d20e9be88c3f9c
diff --git a/packages/webpack/lib/utils/compiler.js b/packages/webpack/lib/utils/compiler.js index <HASH>..<HASH> 100644 --- a/packages/webpack/lib/utils/compiler.js +++ b/packages/webpack/lib/utils/compiler.js @@ -7,7 +7,7 @@ const requireFromString = require('require-from-string'); const webpack = require('webpack')...
fix: adapt to breaking changes in serialize-error package
untool_untool
train
js,js