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
a546c752e3209bbb09a54222e623573dbd35c038
diff --git a/packages/vuetify/src/mixins/menuable.js b/packages/vuetify/src/mixins/menuable.js index <HASH>..<HASH> 100644 --- a/packages/vuetify/src/mixins/menuable.js +++ b/packages/vuetify/src/mixins/menuable.js @@ -191,7 +191,7 @@ export default Vue.extend({ }px` }, calcXOverflow (left, menuWidth) ...
refactor(menuable): simplified code
vuetifyjs_vuetify
train
js
7c15eeb85b6d702e0a4a3f6519e03af0208c3342
diff --git a/static/lib/composer.js b/static/lib/composer.js index <HASH>..<HASH> 100644 --- a/static/lib/composer.js +++ b/static/lib/composer.js @@ -837,6 +837,12 @@ define('composer', [ onHide(); }; + composer.minimizeActive = function () { + if (composer.active) { + composer.miminize(composer.active); + ...
feat: add helper to minimize active composer
NodeBB_nodebb-plugin-composer-default
train
js
b437b53d55602389f320ceea3cfbdb5871d48af6
diff --git a/agent/dns_test.go b/agent/dns_test.go index <HASH>..<HASH> 100644 --- a/agent/dns_test.go +++ b/agent/dns_test.go @@ -2366,8 +2366,8 @@ func TestDNS_ServiceLookup_WanTranslation(t *testing.T) { _, err := a2.JoinWAN([]string{addr}) require.NoError(t, err) retry.Run(t, func(r *retry.R) { - require.Len...
test: unflake TestDNS_ServiceLookup_WanTranslation Use retry.R struct to check length of WANMembers so that retries can work appropriately.
hashicorp_consul
train
go
a169b6071209c4f6681c95486127fc43884ff6d1
diff --git a/superset/views/utils.py b/superset/views/utils.py index <HASH>..<HASH> 100644 --- a/superset/views/utils.py +++ b/superset/views/utils.py @@ -17,7 +17,7 @@ import logging from collections import defaultdict from functools import wraps -from typing import Any, Callable, DefaultDict, Dict, List, Optional,...
fix: Changes the return type of get_permissions to be JSON friendly (#<I>) * fix: Changes the return type of get_permissions to be JSON friendly * Removes dangling comma * Removes unused import * Fixes typing errors
apache_incubator-superset
train
py
07c2901d3114d6d1dbcfb1fecde6bda8678ae23d
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -27,9 +27,7 @@ function getLongest(propList) { } function getSection(filePath){ - var fileDirArray = path.parse(filePath).dir.split(path.sep); - - return fileDirArray[fileDirArray.length - 1]; + return path.parse(filePath)...
refactor: Simplify the getSection function
andrewbrandwood_gulp-sass-generate-contents
train
js
3c81167d1fec483a04c81493a22cfaf976fc1253
diff --git a/test/basic.js b/test/basic.js index <HASH>..<HASH> 100644 --- a/test/basic.js +++ b/test/basic.js @@ -30,6 +30,16 @@ test('create peer without options', function (t) { } }) +test('can detect error when RTCPeerConstructor throws', function (t) { + t.plan(1) + + var peer = new Peer({ wrtc: { RTCPeerC...
test: can detect error when RTCPeerConstructor throws
feross_simple-peer
train
js
9dac97f1b60342332c6915fcabbe52e43089b219
diff --git a/lib/cookie-file-store.js b/lib/cookie-file-store.js index <HASH>..<HASH> 100644 --- a/lib/cookie-file-store.js +++ b/lib/cookie-file-store.js @@ -21,7 +21,7 @@ class FileCookieStore extends Store { this.filePath = filePath /* istanbul ignore else */ if (util.inspect.custom) { - this[ut...
fix: missed inspect rename from b<I>a<I>bc
ivanmarban_tough-cookie-file-store
train
js
c98d0210909a07ccc23a5eb471df35422323d767
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -158,8 +158,8 @@ gulp.task("clean-dat-files", (done) => { return del([ "dist/dict/*.dat" ], done); }); -gulp.task("build-dict", () => { - sequence("build", "clean-dict", "create-dat-files", "compress-dic...
chore(gulp): refactor
takuyaa_kuromoji.js
train
js
3ed494febc5d1ec9094462e7daf292c7dc841b39
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -853,12 +853,10 @@ function buildValue (location, input) { else throw new Error(\`Item $\{JSON.stringify(${input})} does not match schema definition.\`) ` - } else if (schema.type === unde...
refactor: remove unreachanble condition branch (#<I>)
fastify_fast-json-stringify
train
js
0e82a6bb87ba212a01e276faf08d5f05c682b159
diff --git a/src/decorators.js b/src/decorators.js index <HASH>..<HASH> 100644 --- a/src/decorators.js +++ b/src/decorators.js @@ -36,6 +36,7 @@ class ValidationPropertyMetadata { } export function ensure(setupStep: (it: ValidationGroup) => void) { + console.warn('Then ensure decorator has been deprecated and will...
fix(decorators): deprecate the ensure decorator
aurelia_validation
train
js
c59b9f969e44a00258b1e4e3e725872e5567bf1e
diff --git a/src/Breadcrumb.js b/src/Breadcrumb.js index <HASH>..<HASH> 100644 --- a/src/Breadcrumb.js +++ b/src/Breadcrumb.js @@ -16,7 +16,7 @@ const propTypes = { */ label: PropTypes.string, /** - * Additional props passed as-is to the underlying `<ul>` element + * Additional props passed as-is to the u...
docs: fix element type used for Breadcrumb (#<I>)
react-bootstrap_react-bootstrap
train
js
3af4146e32259004a6e3e081707b65527a67aae7
diff --git a/actor-apps/app-web/src/app/stores/PreferencesStore.js b/actor-apps/app-web/src/app/stores/PreferencesStore.js index <HASH>..<HASH> 100644 --- a/actor-apps/app-web/src/app/stores/PreferencesStore.js +++ b/actor-apps/app-web/src/app/stores/PreferencesStore.js @@ -31,7 +31,7 @@ class SettingsStore extends Eve...
fix(web): disable actions logging;
actorapp_actor-platform
train
js
1f1ee0dafc24efdc74f3b0dbb65529a8b1c74b7c
diff --git a/lib/guided-music-machine.js b/lib/guided-music-machine.js index <HASH>..<HASH> 100644 --- a/lib/guided-music-machine.js +++ b/lib/guided-music-machine.js @@ -55,6 +55,7 @@ var GuidedMusicMachine = function (guide, key, initialScaleDegrees) { */ this.choose = function (pitchChoice) { // special ...
fix: check if selection is in Key for guide.choose()
jrleszcz_music-machine
train
js
3ad23f6975a19f0d5530a57005b5b5613c0b7c7f
diff --git a/packages/loader/test/loader.test.js b/packages/loader/test/loader.test.js index <HASH>..<HASH> 100644 --- a/packages/loader/test/loader.test.js +++ b/packages/loader/test/loader.test.js @@ -4,17 +4,20 @@ import path from "path" import compiler from "./compiler.js" -const skipOnWindows = /^win/.test(pro...
test: try to fix problematic async test
lingui_js-lingui
train
js
40430801cf4d6ce10e4fee9344a1ba4cc806a3e9
diff --git a/packages/webiny-form/src/Form.js b/packages/webiny-form/src/Form.js index <HASH>..<HASH> 100644 --- a/packages/webiny-form/src/Form.js +++ b/packages/webiny-form/src/Form.js @@ -116,8 +116,9 @@ class Form extends React.Component<Props, State> { // Make sure all current inputs have a value ...
fix(form): on submit, don't assign default value to field if it's falsy (#<I>)
Webiny_webiny-js
train
js
3e217f1c3a243927065b16adf3f2d1ea91653af6
diff --git a/wagtailmodelchooser/widgets.py b/wagtailmodelchooser/widgets.py index <HASH>..<HASH> 100644 --- a/wagtailmodelchooser/widgets.py +++ b/wagtailmodelchooser/widgets.py @@ -2,7 +2,7 @@ import json from django.template.loader import render_to_string from django.urls import reverse -from django.utils.transl...
fix: use gettext_lazy instead of ugettext_lazy this is needed for django 4 compatibility
neon-jungle_wagtailmodelchooser
train
py
bdce57ee3c05fd0bfdbc4c3e13b8b23f4bb2e64c
diff --git a/src/keys.js b/src/keys.js index <HASH>..<HASH> 100644 --- a/src/keys.js +++ b/src/keys.js @@ -12,10 +12,6 @@ function decrypt (publicKey, localKey, token, signature) { } } catch (e) { log.error(`failed to decrypt token with error: ${e.message}`) - log.debug(`public key: ${publicKey.toString...
fix: remove console log statements (in place for troubleshooting)
npm-wharf_hikaru
train
js,js
8a43da8e85c8c1a55b568b4e5a5235c797ff8c7b
diff --git a/spec/helper.js b/spec/helper.js index <HASH>..<HASH> 100644 --- a/spec/helper.js +++ b/spec/helper.js @@ -13,9 +13,7 @@ class Helper { static _using(testSuite, topic, func) { /* jshint -W040 */ const testFiles = testConfig.getTestFilesForSuite(testSuite, topic); - for (let i = 0, count = te...
chore(codestyle): arrow function with const and forEach
emartech_escher-js
train
js
003827181e29cbd852dbe2e4bcf2250a912ae323
diff --git a/packages/cozy-scripts/template/app/jest.config.js b/packages/cozy-scripts/template/app/jest.config.js index <HASH>..<HASH> 100644 --- a/packages/cozy-scripts/template/app/jest.config.js +++ b/packages/cozy-scripts/template/app/jest.config.js @@ -13,11 +13,6 @@ module.exports = { 'node_modules', '...
chore: :wrench: remove jest transform for js/jsx file Seems to break jest with babel transpiling sometimes. Already working with .js/.jsx files.
CPatchane_create-cozy-app
train
js
ed3c2a0de70dd7e96fcb376d2199425f0130809a
diff --git a/node-tests/unit/utils/validate-platforms-test.js b/node-tests/unit/utils/validate-platforms-test.js index <HASH>..<HASH> 100644 --- a/node-tests/unit/utils/validate-platforms-test.js +++ b/node-tests/unit/utils/validate-platforms-test.js @@ -6,17 +6,17 @@ const ValidatePlatforms = require('../../../src/uti...
style(validate-platforms): Update test to move context code to context block
isleofcode_splicon
train
js
ad6b5559be080a9cf4b474db60810805f4d91a3e
diff --git a/registry/fake.go b/registry/fake.go index <HASH>..<HASH> 100644 --- a/registry/fake.go +++ b/registry/fake.go @@ -168,6 +168,13 @@ func (f *FakeRegistry) SubmitJobBid(jb *job.JobBid) { f.bids[jb.JobName] = append(f.bids[jb.JobName], *jb) } +func (f *FakeRegistry) SaveUnitState(jobName string, unitStat...
feat(FakeRegistry): Implement SaveUnitState
coreos_fleet
train
go
7f9f168fcac61b9816bf4bd388b8c5381a89c655
diff --git a/src/backend/hook.js b/src/backend/hook.js index <HASH>..<HASH> 100644 --- a/src/backend/hook.js +++ b/src/backend/hook.js @@ -169,7 +169,7 @@ export function installHook (target) { var allParents = [] var allChildren = [] - var useBuffer = typeof Buffer !== 'undefined' + var useBuffer = t...
fix: clone Buffer check, closes #<I>
vuejs_vue-devtools
train
js
3985b3db0f2e100aacb20331224cabb715c37bdc
diff --git a/packages/xod-client/src/project/nodeLayout.js b/packages/xod-client/src/project/nodeLayout.js index <HASH>..<HASH> 100644 --- a/packages/xod-client/src/project/nodeLayout.js +++ b/packages/xod-client/src/project/nodeLayout.js @@ -30,7 +30,7 @@ export const TEXT_OFFSET_FROM_PIN_BORDER = 10; // :: { input...
fix(xod-client): node with no pins must have width of 1 slot
xodio_xod
train
js
b3b3fbee0705d0b01550f5956b7ce6f244874cfd
diff --git a/src/components/OverflowMenu/OverflowMenu.js b/src/components/OverflowMenu/OverflowMenu.js index <HASH>..<HASH> 100644 --- a/src/components/OverflowMenu/OverflowMenu.js +++ b/src/components/OverflowMenu/OverflowMenu.js @@ -488,16 +488,17 @@ export default class OverflowMenu extends Component { }; /*...
fix(OverflowMenu): assign menu body ref for non-floating menu (#<I>)
carbon-design-system_carbon-components-react
train
js
4340e388fa11ea3f6102d1a0465f0cee9f026ac5
diff --git a/packages/webpack/lib/configs/build.js b/packages/webpack/lib/configs/build.js index <HASH>..<HASH> 100644 --- a/packages/webpack/lib/configs/build.js +++ b/packages/webpack/lib/configs/build.js @@ -109,8 +109,8 @@ module.exports = function getConfig(config, getAssetPath, configureWebpack) { path: co...
fix(webpack): use chunkhash in filenames Webpack <I> breaks if `contenthash` is used
untool_untool
train
js
41e3625339413b3ba7bae8fa5ac990a16108da8f
diff --git a/lib/wp2txt.rb b/lib/wp2txt.rb index <HASH>..<HASH> 100755 --- a/lib/wp2txt.rb +++ b/lib/wp2txt.rb @@ -6,6 +6,7 @@ $: << File.join(File.dirname(__FILE__)) require "nokogiri" require "parallel" +require 'etc' require 'pp' require "wp2txt/article" require "wp2txt/utils"
fix: cannot initialize Etc variables
yohasebe_wp2txt
train
rb
fdefcd56faeb8353330b85ea251c314e5adca5fd
diff --git a/src/components/dropdown/dropdown-multiselect/DropdownMultiselectCtrl.js b/src/components/dropdown/dropdown-multiselect/DropdownMultiselectCtrl.js index <HASH>..<HASH> 100644 --- a/src/components/dropdown/dropdown-multiselect/DropdownMultiselectCtrl.js +++ b/src/components/dropdown/dropdown-multiselect/Drop...
fix(dropdown): when user input same search text, can not filter iterms (#<I>)
ShuyunFF2E_ccms-components
train
js
b4965472c642c8d50332b971e62e345d073bd72c
diff --git a/src/DropdownKebab/DropdownKebab.js b/src/DropdownKebab/DropdownKebab.js index <HASH>..<HASH> 100644 --- a/src/DropdownKebab/DropdownKebab.js +++ b/src/DropdownKebab/DropdownKebab.js @@ -23,7 +23,7 @@ DropdownKebab.propTypes = { /** children nodes */ children: PropTypes.node, /** kebab dropdown id...
fix(kebab): Include number on PropTypes `id` The PropTypes should support a number in addition to a string just like the react-bootstrap repo does.
patternfly_patternfly-react
train
js
72a44f71d80e2ad0b80af4b2a9b65c40f2adcaea
diff --git a/source/rafcon/gui/controllers/states_editor.py b/source/rafcon/gui/controllers/states_editor.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/controllers/states_editor.py +++ b/source/rafcon/gui/controllers/states_editor.py @@ -372,7 +372,7 @@ class StatesEditorController(ExtendedController): ...
fix(states_editor): Access renamed tab dict key
DLR-RM_RAFCON
train
py
0da856757b1ea0b9c8e0932ecbff806f9c8de027
diff --git a/src/tools/BidirectionalTool.js b/src/tools/BidirectionalTool.js index <HASH>..<HASH> 100644 --- a/src/tools/BidirectionalTool.js +++ b/src/tools/BidirectionalTool.js @@ -11,20 +11,25 @@ import preTouchStartCallback from './bidirectionalTool/preTouchStartCallback.js' const emptyLocationCallback = (measurem...
fix(bidirectional-tool): Fix initial configuration for Bidirectional tool (#<I>)
cornerstonejs_cornerstoneTools
train
js
f32fedeb2256c710e4a049604113f75e67f36d2e
diff --git a/src/Drivers/Cache/Repositories/PermissionRepository.php b/src/Drivers/Cache/Repositories/PermissionRepository.php index <HASH>..<HASH> 100644 --- a/src/Drivers/Cache/Repositories/PermissionRepository.php +++ b/src/Drivers/Cache/Repositories/PermissionRepository.php @@ -32,7 +32,7 @@ class PermissionReposit...
fix(cache): use the relationship instance for authorizations leave the automatic loading of roles and permissions, that way you always get a fresh load from the database
eneav_laravel-authorization
train
php,php
aba10e283544b5b3f34f9cec8a18e7227e41e5c9
diff --git a/examples/exists.js b/examples/exists.js index <HASH>..<HASH> 100644 --- a/examples/exists.js +++ b/examples/exists.js @@ -4,7 +4,7 @@ const { createNodes } = require('./setup'); const logger = require('./logger'); async function verifyResultCodeCheckInAsyncCall(client) { - const tempNode = '/my-temp...
fix(examples): create unique named temp nodes
yfinkelstein_node-zookeeper
train
js
389dca7cde4e6793bc58d55c7eff0daa05481a49
diff --git a/packages/tree-view/src/presenters/fileview/TreeObjectSubTreeItem.js b/packages/tree-view/src/presenters/fileview/TreeObjectSubTreeItem.js index <HASH>..<HASH> 100644 --- a/packages/tree-view/src/presenters/fileview/TreeObjectSubTreeItem.js +++ b/packages/tree-view/src/presenters/fileview/TreeObjectSubTreeI...
fix: label prop for subtree
Autodesk_hig
train
js
e476b60f20f1c6adcd8ef6e7ba120bab746521de
diff --git a/src/theme/spacings.js b/src/theme/spacings.js index <HASH>..<HASH> 100644 --- a/src/theme/spacings.js +++ b/src/theme/spacings.js @@ -2,12 +2,14 @@ import { forEach } from 'lodash'; export const spacing = { none: '0', - xss: '4px', + xxs: '4px', xs: '8px', - small: '16px', - base: '24px', - l...
fix: shifting base spacing from <I>px to <I>px
weaveworks_ui-components
train
js
629d1a5c4e0502829738a609446fe87efa910508
diff --git a/src/Leevel/Router/Match/Annotation.php b/src/Leevel/Router/Match/Annotation.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Router/Match/Annotation.php +++ b/src/Leevel/Router/Match/Annotation.php @@ -123,12 +123,12 @@ class Annotation extends Match implements IMatch /** * 匹配路由分组. */ - ...
refactor(router): optimize code
hunzhiwange_framework
train
php
866481cba9e3cb2669d269f9d3feaae842a749a4
diff --git a/sentry_sdk/integrations/__init__.py b/sentry_sdk/integrations/__init__.py index <HASH>..<HASH> 100644 --- a/sentry_sdk/integrations/__init__.py +++ b/sentry_sdk/integrations/__init__.py @@ -31,10 +31,11 @@ def _generate_default_integrations_iterator(*import_strings): module, cls = import_strin...
fix: TypeError: unsupported operand type(s) for +=: 'NoneType' and 'str' when Python with `-O` flag (#<I>)
getsentry_sentry-python
train
py
b345627ad074592e7a660be213e9a264f4b52283
diff --git a/src/api/http.js b/src/api/http.js index <HASH>..<HASH> 100644 --- a/src/api/http.js +++ b/src/api/http.js @@ -1,3 +1,5 @@ +const mediaType = 'application/vnd.cignium.resource+json' + export async function request(method, href, data) { const request = { body: data && JSON.stringify(data), @@ -7,9 +...
fix: handle responses other than json
cignium_hypermedia-client
train
js,js
ca0090d89df1e64a91d860ace8689248cd1c8ec4
diff --git a/packages/core/src/middleware.js b/packages/core/src/middleware.js index <HASH>..<HASH> 100644 --- a/packages/core/src/middleware.js +++ b/packages/core/src/middleware.js @@ -20,7 +20,7 @@ export const createAPIMiddleware = adapter => ({ dispatch, getState }) => { const finalAdapter = adapter(getState); ...
refactor(core): reduce nested block
tungv_redux-api-call
train
js
6a58d85279f32c78a67ebfb58bd55e9584b18d90
diff --git a/src/options-validator.js b/src/options-validator.js index <HASH>..<HASH> 100644 --- a/src/options-validator.js +++ b/src/options-validator.js @@ -1,4 +1,4 @@ -import * as joi from '@hapi/joi'; +import * as joi from 'joi'; import hoek from '@hapi/hoek'; export function validate(options) {
fix(joi): updated references to use the non-scoped version
travi_project-scaffolder
train
js
f3fc9f1b1a81a5bfbe3edb69a83d0296f43e8dc0
diff --git a/cli/flow-typed/npm/yargs_v4.x.x.js b/cli/flow-typed/npm/yargs_v4.x.x.js index <HASH>..<HASH> 100644 --- a/cli/flow-typed/npm/yargs_v4.x.x.js +++ b/cli/flow-typed/npm/yargs_v4.x.x.js @@ -142,6 +142,8 @@ declare module "yargs" { pkgConf(key: string, cwd?: string): this; + recommendCommands(): thi...
feat(cli): recommend matching commands (#<I>)
flow-typed_flow-typed
train
js,js
9ebd5afefb07740c63fc31c0aa17b031254fc488
diff --git a/lib/ditty/controllers/application.rb b/lib/ditty/controllers/application.rb index <HASH>..<HASH> 100644 --- a/lib/ditty/controllers/application.rb +++ b/lib/ditty/controllers/application.rb @@ -85,7 +85,7 @@ module Ditty haml :"#{view_location}/#{action}", locals: { entity: entity, title: headin...
chore: Add full error messages to JSON response
EagerELK_ditty
train
rb
0deebd0a2e14889b5bbf2120e24e48ffb06a9cf5
diff --git a/packages/flyout/src/Flyout.js b/packages/flyout/src/Flyout.js index <HASH>..<HASH> 100644 --- a/packages/flyout/src/Flyout.js +++ b/packages/flyout/src/Flyout.js @@ -262,7 +262,7 @@ const Flyout = props => { return () => { window.document.body.removeEventListener("click", handleBodyClick); ...
fix: improve useEffect manage state
Autodesk_hig
train
js
6b2aa2c55987d45432b98c960c9b3883a4ad6ba7
diff --git a/src/Stripe.php b/src/Stripe.php index <HASH>..<HASH> 100644 --- a/src/Stripe.php +++ b/src/Stripe.php @@ -29,7 +29,7 @@ class Stripe * * @var string */ - const VERSION = '2.1.4'; + const VERSION = '2.2.2'; /** * The Config repository instance. diff --git a/tests/StripeT...
fix: Version constant Closes: #<I>
cartalyst_stripe
train
php,php
b627bdc3424faed24df957eaac554c7666538316
diff --git a/utils/snapshotSerializer.js b/utils/snapshotSerializer.js index <HASH>..<HASH> 100644 --- a/utils/snapshotSerializer.js +++ b/utils/snapshotSerializer.js @@ -1,5 +1,5 @@ /* @flow */ -const matcher = new RegExp('(ThemeProvider|LiveProvider|^Themed\\(.*)'); +const matcher = new RegExp('^[A-Z]'); module.e...
test(jest): Update serializer - Update logic to delete props.theme on _all_ components (yay)
mineral-ui_mineral-ui
train
js
ed4dabacd026414297a28d909c4e899f368e5e09
diff --git a/packages/vk-x/bump-manifest-version.js b/packages/vk-x/bump-manifest-version.js index <HASH>..<HASH> 100644 --- a/packages/vk-x/bump-manifest-version.js +++ b/packages/vk-x/bump-manifest-version.js @@ -2,6 +2,8 @@ const path = require('path') const fs = require('fs') const { exec } = require('child_proce...
chore(vk-x): add additional logging in postversion script
vk-x_vk-x
train
js
459430ec2e7846a7ffb3f4da3ddc6e3fd4669d99
diff --git a/src/Jobs/Market/History.php b/src/Jobs/Market/History.php index <HASH>..<HASH> 100644 --- a/src/Jobs/Market/History.php +++ b/src/Jobs/Market/History.php @@ -94,7 +94,9 @@ class History extends EsiBase if ($prices->isCachedLoad()) return; // search the more recent entry ...
refactor(prices): exclude results without order
eveseat_eveapi
train
php
61cf2beedc96c4c4222ca8cba06fe9e47bff0417
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 @@ -141,12 +141,12 @@ describe('trim option', () => { it('preserves whitespace text nodes when disabled if valid in parent (default)', () => { const html = `<table> <tbody> - ...
test: added td with &nbsp;
remarkablemark_html-react-parser
train
js
265dd82229c5c722855cc9bf8525d1db4108c0eb
diff --git a/app/actions.js b/app/actions.js index <HASH>..<HASH> 100644 --- a/app/actions.js +++ b/app/actions.js @@ -326,7 +326,9 @@ export const clearHistoryPatch = (id) => ({ payload: {}, }); -export const switchPatch = (id) => (dispatch) => { +export const switchPatch = (id) => (dispatch, getState) => { + i...
refactor(tabs): add a check do we really need to dispatch switch_patch (if current Patch === wanted patch — do nothing)
xodio_xod
train
js
a085482c048df5802b042e376fc1bfcbddb0ea86
diff --git a/python/setup.py b/python/setup.py index <HASH>..<HASH> 100755 --- a/python/setup.py +++ b/python/setup.py @@ -10,7 +10,7 @@ with io.open(os.path.join(here, 'README.rst'), encoding='utf8') as f: setup( name='http_ece', - version='1.0.0', + version='1.0.1', author='Martin Thomson', au...
feat: update to cryptography <I> closes #<I>
web-push-libs_encrypted-content-encoding
train
py
94589aa78bd843ba92e2e230f09eaf74e6c9bc52
diff --git a/test/services/famousAnimateSpec.js b/test/services/famousAnimateSpec.js index <HASH>..<HASH> 100644 --- a/test/services/famousAnimateSpec.js +++ b/test/services/famousAnimateSpec.js @@ -116,5 +116,9 @@ describe('$animate', function() { }, duration / 2); }); + + it('supports referencing the...
test: add stubbed test to famousAnimate to cover the modifications supporting fa-edge-swapper
Famous_famous-angular
train
js
ce1ec674f9607f6e0dc23d2444c3c904b0eeaedb
diff --git a/test/unit/lib/Serverless.test.js b/test/unit/lib/Serverless.test.js index <HASH>..<HASH> 100644 --- a/test/unit/lib/Serverless.test.js +++ b/test/unit/lib/Serverless.test.js @@ -280,7 +280,9 @@ describe('Serverless [new tests]', () => { cwd: servicePath, cliArgs: ['-v'], ...
test(CLI): Improve assertion scope
serverless_serverless
train
js
95ce1596b80b1b1340fe934503583fa417abc00b
diff --git a/go/test/endtoend/reparent/plannedreparent/reparent_test.go b/go/test/endtoend/reparent/plannedreparent/reparent_test.go index <HASH>..<HASH> 100644 --- a/go/test/endtoend/reparent/plannedreparent/reparent_test.go +++ b/go/test/endtoend/reparent/plannedreparent/reparent_test.go @@ -287,6 +287,11 @@ func Tes...
test: fix a test after disabling active reparents on tablets
vitessio_vitess
train
go
d37b0cf2adb95350a6b663c50de8712629faabf3
diff --git a/packages/workflow-plugin-angular/webpack.config.production.js b/packages/workflow-plugin-angular/webpack.config.production.js index <HASH>..<HASH> 100644 --- a/packages/workflow-plugin-angular/webpack.config.production.js +++ b/packages/workflow-plugin-angular/webpack.config.production.js @@ -204,7 +204,7 ...
fix: remove reduceIdents from css optimization reduceIdents was causing collisions in keyframe names causing the wrong animations to run to PR removes that
Availity_availity-workflow
train
js,js
ab7b48b32eeeb31516cb15097c858f5f0872a10a
diff --git a/packages/webiny-api/src/graphql/prepareSchema.js b/packages/webiny-api/src/graphql/prepareSchema.js index <HASH>..<HASH> 100644 --- a/packages/webiny-api/src/graphql/prepareSchema.js +++ b/packages/webiny-api/src/graphql/prepareSchema.js @@ -19,15 +19,20 @@ export async function prepareSchema(config: Objec...
fix: add ability to register scalars via 'graphql-scalar' plugins
Webiny_webiny-js
train
js
9f733152d2fa8759a79bc8160b517362424d7d92
diff --git a/src/foremast/pipeline/create_pipeline_manual.py b/src/foremast/pipeline/create_pipeline_manual.py index <HASH>..<HASH> 100644 --- a/src/foremast/pipeline/create_pipeline_manual.py +++ b/src/foremast/pipeline/create_pipeline_manual.py @@ -94,7 +94,12 @@ class SpinnakerPipelineManual(SpinnakerPipeline): ...
fix: bug stripping too many template path chars
foremast_foremast
train
py
cb3dca4ae029724421f3d04a784ace0ae2de75e2
diff --git a/packages/discord.js/src/managers/ApplicationCommandManager.js b/packages/discord.js/src/managers/ApplicationCommandManager.js index <HASH>..<HASH> 100644 --- a/packages/discord.js/src/managers/ApplicationCommandManager.js +++ b/packages/discord.js/src/managers/ApplicationCommandManager.js @@ -1,6 +1,7 @@ ...
refactor(ApplicationCommandManager): use `makeURLSearchParams` (#<I>)
discordjs_discord.js
train
js
c75a133f9b650252241d5deb04bfdc2031d33562
diff --git a/src/elements/table/Table.js b/src/elements/table/Table.js index <HASH>..<HASH> 100644 --- a/src/elements/table/Table.js +++ b/src/elements/table/Table.js @@ -121,7 +121,7 @@ export class NovoTableHeader { <button theme="dialogue" color="negative" icon="times" (c...
chore(Table): Refactored automation IDs (#<I>)
bullhorn_novo-elements
train
js
3b6cadab860aab7805ff7e210d57aea7b1afae7b
diff --git a/packages/webpack/lib/configs/node.js b/packages/webpack/lib/configs/node.js index <HASH>..<HASH> 100644 --- a/packages/webpack/lib/configs/node.js +++ b/packages/webpack/lib/configs/node.js @@ -83,7 +83,7 @@ module.exports = function getConfig(config, name) { allLoaderConfigs, }, name, - ...
fix(webpack): use async-node target to circumvent Node <I> bug Node <I> introduced a bug where re-requiring a file which previously did not exist won't resolve to that file. Therefore we switch to the async-node target of Webpack for our server- side build which uses the vm and fs modules to load chunks, so that we do...
untool_untool
train
js
e2b94880dc1cc5ffc0e942217718ec7f06e3334e
diff --git a/src/__tests__/index-test.js b/src/__tests__/index-test.js index <HASH>..<HASH> 100644 --- a/src/__tests__/index-test.js +++ b/src/__tests__/index-test.js @@ -1,9 +1,9 @@ "use strict"; jest.dontMock("../index.js"); -describe("index", function() { - it("changes the text after click", function() { - v...
test(index): make sure es<I> works
tomchentw_react-toastr
train
js
2be33e6af48f8377a9c5b1bd7db01e0fad3827cb
diff --git a/intranet/test/ion_test.py b/intranet/test/ion_test.py index <HASH>..<HASH> 100644 --- a/intranet/test/ion_test.py +++ b/intranet/test/ion_test.py @@ -1,5 +1,6 @@ from django.contrib.auth import get_user_model from django.test import TestCase +from django.urls import reverse from ..apps.groups.models i...
test: add reauth class method
tjcsl_ion
train
py
39f69494cb1fd00ae201c1d7d62305cabc1e43cd
diff --git a/packages/editor/src/setup-bolt.js b/packages/editor/src/setup-bolt.js index <HASH>..<HASH> 100644 --- a/packages/editor/src/setup-bolt.js +++ b/packages/editor/src/setup-bolt.js @@ -554,7 +554,7 @@ export function setupBolt(editor) { </bolt-interactive-pathways>`, }); - // Commented out because ...
style(editor): fixing comment style, forcing rebuild
bolt-design-system_bolt
train
js
486f6ef13b5e13113f81a629d0b78e4809eb969d
diff --git a/src/js/plugins/history-back.js b/src/js/plugins/history-back.js index <HASH>..<HASH> 100644 --- a/src/js/plugins/history-back.js +++ b/src/js/plugins/history-back.js @@ -6,9 +6,10 @@ import SelectorEngine from 'bootstrap/js/src/dom/selector-engine' const NAME = 'historyback' const DATA_KEY = 'bs.historyb...
chore(core): changes for historyBack activation
italia_bootstrap-italia
train
js
b93eb39ec41384f9ec1869650e29d783d93a5d48
diff --git a/gridsome/app/entry.client.js b/gridsome/app/entry.client.js index <HASH>..<HASH> 100644 --- a/gridsome/app/entry.client.js +++ b/gridsome/app/entry.client.js @@ -68,7 +68,7 @@ document.addEventListener('click', event => { const path = stripPathPrefix($el.pathname) const { route, location } = router...
fix(app): decode anchor hash value (#<I>) (#<I>)
gridsome_gridsome
train
js
98f5eb2be8ebaf27922ebdc0f3f438b7d8c4b57c
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 @@ -65,8 +65,11 @@ var _ = Describe("RuntimePolicies", func() { BeforeAll(func() { vm = helpers.InitRuntimeHelper(helpers.Runtime, logger) + // Make sure tha...
test: misc. runtime policy test fixes * Ensure that Cilium is started with the set of configuration options set in `SetUpCilium`, specifically of excluding of local addresses that are used to simulate external IPs for CIDR policy testing. * Fix a log error message to contain a string that was expected.
cilium_cilium
train
go
f67ae5711d88f5c50be48326c5cfe4145c95e88a
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -149,9 +149,7 @@ describe('Puppeteer', function() { await browser2.close(); rm(userDataDir); })); - // Headless has issues storing cookies - // @see https://crbug.com/775261 - (headl...
test(cookies): enable cookies restoration test (#<I>)
GoogleChrome_puppeteer
train
js
7945d2fe20f1961717bb5fcea2ea540093e82a4b
diff --git a/src/scrollbar/index.js b/src/scrollbar/index.js index <HASH>..<HASH> 100644 --- a/src/scrollbar/index.js +++ b/src/scrollbar/index.js @@ -47,6 +47,7 @@ export default class ScrollBar { this.containerWidth = element.clientWidth; this.containerHeight = element.clientHeight; + thi...
refactor: Change callback params
dwqs_v2-table
train
js
d0dcab84507f0b7bddfe917f7dbe0d5531c71f3c
diff --git a/www/src/pages/components/navbar.js b/www/src/pages/components/navbar.js index <HASH>..<HASH> 100644 --- a/www/src/pages/components/navbar.js +++ b/www/src/pages/components/navbar.js @@ -40,7 +40,8 @@ export default withLayout(function NaπvbarSection({ data }) { </li> <li> Navba...
docs: corrected internal link for the Navbar page Containers section. (#<I>) * Correcting internal link for Navbar containers. Internal link on the Navbar page to Navbar containers section has been corrected. * fix: Prettier
react-bootstrap_react-bootstrap
train
js
c388f1844920a9718b9c88df5a6e09ac608b759d
diff --git a/src/Zephyrus/Utilities/FileSystem/File.php b/src/Zephyrus/Utilities/FileSystem/File.php index <HASH>..<HASH> 100644 --- a/src/Zephyrus/Utilities/FileSystem/File.php +++ b/src/Zephyrus/Utilities/FileSystem/File.php @@ -188,6 +188,18 @@ class File extends FileSystemNode } /** + * Returns the ...
feat: add base<I>Uri method to File
dadajuice_zephyrus
train
php
480dd32e55adbef5c861411d1a63fc9e8f0eba7c
diff --git a/src/Leevel/Router/Match/Annotation.php b/src/Leevel/Router/Match/Annotation.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Router/Match/Annotation.php +++ b/src/Leevel/Router/Match/Annotation.php @@ -100,13 +100,11 @@ class Annotation extends Match implements IMatch * * @return array|false ...
refactor(router): optimize code
hunzhiwange_framework
train
php
f7c76658a77e3bfb1a6d71019f9ae2bcc68527be
diff --git a/http/session_handler.go b/http/session_handler.go index <HASH>..<HASH> 100644 --- a/http/session_handler.go +++ b/http/session_handler.go @@ -176,9 +176,10 @@ func decodeCookieSession(ctx context.Context, r *http.Request) (string, error) { // SetCookieSession adds a cookie for the session to an http reque...
fix(http): Add same site strict flag to session cookie
influxdata_influxdb
train
go
1aba7c79afa0b7a86f24a7edd90df7c32fcfaccc
diff --git a/lib/workers/branch/lock-files.js b/lib/workers/branch/lock-files.js index <HASH>..<HASH> 100644 --- a/lib/workers/branch/lock-files.js +++ b/lib/workers/branch/lock-files.js @@ -257,7 +257,8 @@ async function getUpdatedLockFiles(config) { const updatedLockFiles = []; if ( config.type === 'lockFi...
fix: make sure lock file maintenance branch is not stale before skipping (#<I>)
renovatebot_renovate
train
js
8355fb8dd884541e2c1c4f5ad0f69ee2674be1ca
diff --git a/src/collection.js b/src/collection.js index <HASH>..<HASH> 100644 --- a/src/collection.js +++ b/src/collection.js @@ -385,6 +385,13 @@ Collection.prototype.processOnMove = function (evt) { y: evt.pageY }; + if (opts.lockX){ + pos.y = nipple.position.y; + } + if (opts.lockY) ...
fix: better lockX and lockY mecanism fixes #<I>
yoannmoinet_nipplejs
train
js
fd2daaf2596bdca2511119b61e8edcb7ce053574
diff --git a/browserstack-karma.js b/browserstack-karma.js index <HASH>..<HASH> 100644 --- a/browserstack-karma.js +++ b/browserstack-karma.js @@ -19,7 +19,7 @@ module.exports = { browser: "safari", browser_version: "latest", os: "OS X", - os_version: "High Sierra", + os_version: "Big Sur", }, ...
chore(test): enable tests for old safari 3 tests are still failing for safari <I> at the moment. On safari <I> all the tests pass however. As El Captain is pretty old now, the tests now run on Sierra. The current safari version is updated to <I> ISSUES CLOSED: #<I>
snabbdom_snabbdom
train
js
fbe1efc344c84b5b8e23a15da70b5eaee23932ae
diff --git a/test/k8sT/assertionHelpers.go b/test/k8sT/assertionHelpers.go index <HASH>..<HASH> 100644 --- a/test/k8sT/assertionHelpers.go +++ b/test/k8sT/assertionHelpers.go @@ -128,7 +128,6 @@ func DeployCiliumOptionsAndDNS(vm *helpers.Kubectl, options []string) { default: } - Expect(vm.WaitKubeDNS()).To(BeNil(...
test: remove unnecessary `WaitKubeDNS` call It is called again in `ExpectKubeDNSReady`, no need to call it twice.
cilium_cilium
train
go
b7045c5c1bfa584763e4b858cf3cc47852abdb30
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -124,7 +124,7 @@ class ExtractCssChunksPlugin { this.options = Object.assign( { filename: DEFAULT_FILENAME, - moduleFilename: () => options.filename || DEFAULT_FILENAME, + mod...
fix(options): use filename mutated after instantiation (#<I>)
faceyspacey_extract-css-chunks-webpack-plugin
train
js
562428af6f2ffd23c9a02afce0476c4eafccbae3
diff --git a/packages-api/webiny-entity-mysql/src/model/mysqlAttributesContainer.js b/packages-api/webiny-entity-mysql/src/model/mysqlAttributesContainer.js index <HASH>..<HASH> 100644 --- a/packages-api/webiny-entity-mysql/src/model/mysqlAttributesContainer.js +++ b/packages-api/webiny-entity-mysql/src/model/mysqlAttr...
docs(webiny-entity-mysql): Add missing Flow annotations.
Webiny_webiny-js
train
js
cbb0f858811452c5fd7452a0d593a4096061fbd3
diff --git a/lib/review/book/base.rb b/lib/review/book/base.rb index <HASH>..<HASH> 100644 --- a/lib/review/book/base.rb +++ b/lib/review/book/base.rb @@ -49,11 +49,11 @@ module ReVIEW end end - def make_indexes + def execute_indexer return unless @catalog parts.each do |...
refactor: rename make_indexes -> execute_indexer
kmuto_review
train
rb,rb
f41b6dc6eba93a381631f49f6d56a5a64b12a0aa
diff --git a/lib/npm_installer.js b/lib/npm_installer.js index <HASH>..<HASH> 100644 --- a/lib/npm_installer.js +++ b/lib/npm_installer.js @@ -24,7 +24,7 @@ module.exports = function(config, Logger) { */ try { process.stdout.write(format('Verifying/installing npm deps for bundle %s...', ...
feat(npm): only install production deps
nodecg_bundle-manager
train
js
07b7b3f1091d95b36f4c4fceda9e28154a393d3e
diff --git a/ohm-js/test/test-semantics.js b/ohm-js/test/test-semantics.js index <HASH>..<HASH> 100644 --- a/ohm-js/test/test-semantics.js +++ b/ohm-js/test/test-semantics.js @@ -665,6 +665,23 @@ test('sourceString - issue #188', function(t) { t.end(); }); +// https://github.com/harc/ohm/issues/204 +test('sourceS...
chore: Add test for #<I>
harc_ohm
train
js
832dc2e909eef300f80949d98d30deb8db5d9722
diff --git a/intranet/routing.py b/intranet/routing.py index <HASH>..<HASH> 100644 --- a/intranet/routing.py +++ b/intranet/routing.py @@ -2,12 +2,27 @@ Defines routes for channels https://channels.readthedocs.io/en/latest/topics/routing.html """ +from typing import Optional from channels.auth import AuthMiddlewa...
fix: close incoming websocket connections that don't match a route Should actually fix the CancelledErrors mentioned in #<I>
tjcsl_ion
train
py
ffc607a3c8e64654af30e96f749e6f744fac473f
diff --git a/src/geshi.php b/src/geshi.php index <HASH>..<HASH> 100644 --- a/src/geshi.php +++ b/src/geshi.php @@ -813,17 +813,20 @@ class GeSHi { * @param string The style to make the symbols * @param boolean Whether to merge the new styles with the old or just * to overwrite them + ...
fix: #<I> Bracket style incorrectly managed add: Support to set styles for multiple symbol groups maintaining BC. Please note that setting the symbol chars style for $group=0 will also set this style for bracket highlighting. If this is not desired you'll have to set the style for brackets AFTER setting it for symbols...
GeSHi_geshi-1.0
train
php
ce73df178e53e36a69d5789bc2561f275448eabe
diff --git a/biz/webui/cgi-bin/composer.js b/biz/webui/cgi-bin/composer.js index <HASH>..<HASH> 100644 --- a/biz/webui/cgi-bin/composer.js +++ b/biz/webui/cgi-bin/composer.js @@ -187,7 +187,7 @@ module.exports = function(req, res) { var body = req.body.body; if (body && (isWs || isConn || util.hasRequestBody(op...
refactor: encode body with charset
avwo_whistle
train
js
8b0b0743b15b0885c5057ec928f6ece24edfa4d0
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -294,7 +294,7 @@ var LazyLoad = function (_Component) { listeners.splice(index, 1); } - if (listeners.length === 0 && window) { + if (listeners.length === 0 && typeof window !== 'und...
fix(unmount): check for 'window' existence before calling off()
twobin_react-lazyload
train
js
538f1786b05ed247ba88c62f78b33e0b30657396
diff --git a/test/integration/force-gzip.js b/test/integration/force-gzip.js index <HASH>..<HASH> 100644 --- a/test/integration/force-gzip.js +++ b/test/integration/force-gzip.js @@ -22,7 +22,7 @@ startServerTest(test, 'handle forced gzip', function (t, env_config, end) { if (error) throw error zlib.gunzi...
test(force-gzip): allow more couchdb vendors * * * This commit was sponsored by The Hoodie Firm. You can hire The Hoodie Firm: <URL>
hoodiehq_hoodie-server
train
js
fc8bea20f43bf589f180dacb69e3d1b3fe151d66
diff --git a/tests/DiffTest.php b/tests/DiffTest.php index <HASH>..<HASH> 100644 --- a/tests/DiffTest.php +++ b/tests/DiffTest.php @@ -194,7 +194,7 @@ class DiffTest extends \GenericArrayObjectTest { foreach ( $this->elementInstancesProvider() as $args ) { $diffOps = $args[0]; - $instances[] = new Diff( $dif...
test: fix a dataprovider PHPUnit expect each test case to be an array, it then pass each element as an argument to the test function. So we really need to wrap each case in an array() statement. Change-Id: I9b<I>de<I>a<I>d<I>a<I>a<I>f<I>c4e<I>f
wmde_Diff
train
php
73531ae4445b5adb7b946745b6ff9a1332726887
diff --git a/lib/validate-schema.js b/lib/validate-schema.js index <HASH>..<HASH> 100644 --- a/lib/validate-schema.js +++ b/lib/validate-schema.js @@ -3,7 +3,7 @@ var util = require('./util'), ono = require('ono'), ZSchema = require('z-schema'), - swaggerSchema = require('swagger-...
fix: add .json extension to require statement
APIDevTools_swagger-parser
train
js
4ca5774371054a7092348927cd3c7fbefe9e21b8
diff --git a/lib/yome.rb b/lib/yome.rb index <HASH>..<HASH> 100644 --- a/lib/yome.rb +++ b/lib/yome.rb @@ -13,7 +13,7 @@ Find.find(ARGV[0]) do |path| open(path) do |io| io.each_line do |line| - if line =~ /oboe:/ + if line =~ /YOME:/ puts "--- #{path} ---" puts "#{io.lineno}: #{l...
feat: Rename YOME:
ongaeshi_yome
train
rb
bed99240543d927383f7e91e0606c7edabb02d57
diff --git a/packages/site/pages/components/row.js b/packages/site/pages/components/row.js index <HASH>..<HASH> 100644 --- a/packages/site/pages/components/row.js +++ b/packages/site/pages/components/row.js @@ -74,11 +74,11 @@ export default _ => <Chrome> <Content title="Row"> - <PageHeading>Row</PageHea...
refactor(site): remove beta install advice
pluralsight_design-system
train
js
cd30c28c72f799fc60b1ff0fc9e56b8c0d755551
diff --git a/src/helpers/LaneHelper.js b/src/helpers/LaneHelper.js index <HASH>..<HASH> 100644 --- a/src/helpers/LaneHelper.js +++ b/src/helpers/LaneHelper.js @@ -42,7 +42,7 @@ const LaneHelper = { }, addLane: (state, lane) => { - const newLane = {...lane, id: uuidv1(), cards: []} + const newLane = {id: u...
fix: Change order of properties in spread object in `addLane` helper function
rcdexta_react-trello
train
js
9e34173390d9788ca19882478aab5243208dd66e
diff --git a/manifest.php b/manifest.php index <HASH>..<HASH> 100755 --- a/manifest.php +++ b/manifest.php @@ -249,9 +249,9 @@ return [ ], 'constants' => [ #TAO version number - 'TAO_VERSION' => '2022.05 LTS', + 'TAO_VERSION' => '2022.06', #TAO version label - 'TAO_VERSI...
chore: updated tao release version
oat-sa_tao-core
train
php
6a31a0167278a72d7630519bb972dbf2e1a6e6a2
diff --git a/src/importation/vcard.spec.js b/src/importation/vcard.spec.js index <HASH>..<HASH> 100644 --- a/src/importation/vcard.spec.js +++ b/src/importation/vcard.spec.js @@ -6,7 +6,7 @@ import v2to3 from "./v2to3"; describe("importation/vcard", () => { const savedContacts = []; - const save = async contact ...
refactor: Remove useless async keyword
cozy_cozy-contacts
train
js
e9253500d0d37eb095b849f6f511ef82b82f17ea
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 @@ -17,16 +17,3 @@ test('index: have processors', function (t) { t.ok(plugin.processors, 'be defined'); t.end(); }); - -test('index: have processors for default extensions', function...
fix: Remove failing tests as they are not necessary
mradionov_eslint-plugin-disable
train
js
e6452e5d2bc2b6ab5766bb02d889658625660112
diff --git a/test/browser/test.js b/test/browser/test.js index <HASH>..<HASH> 100755 --- a/test/browser/test.js +++ b/test/browser/test.js @@ -35,8 +35,9 @@ var sauceClient; var sauceConnectProcess; var tunnelId = process.env.TRAVIS_JOB_NUMBER || 'tunnel-' + Date.now(); -var jobName = (process.env.TRAVIS_BUILD_NUMB...
fix(sauce): share job names
delta-db_deltadb-common-utils
train
js
2923889c2f9bc464e442f2e773d044265c270a86
diff --git a/lib/treeize.js b/lib/treeize.js index <HASH>..<HASH> 100644 --- a/lib/treeize.js +++ b/lib/treeize.js @@ -79,7 +79,7 @@ Treeize.prototype.signature = function(row, options, auto) { var nodes = this.data.signature.nodes = []; var isArray = _.isArray(row); - var opt = merge(t...
perf: removed internal references to .options()
kwhitley_treeize
train
js
5207d49af1117156adc1e38c424ff3b00889a97f
diff --git a/urlfetch.py b/urlfetch.py index <HASH>..<HASH> 100644 --- a/urlfetch.py +++ b/urlfetch.py @@ -914,16 +914,22 @@ def encode_multipart(data, files): part_boundary = b('--%s\r\n' % boundary) if isinstance(data, dict): - for name, value in data.items(): - body.write(part_boundary)...
fix: encode_multipart should behave just the same with urllib.urlencode(dict, 1)
ifduyue_urlfetch
train
py
c67af96a0567177dc343d38e06dfe7f5c75c4567
diff --git a/gorush/version.go b/gorush/version.go index <HASH>..<HASH> 100644 --- a/gorush/version.go +++ b/gorush/version.go @@ -32,7 +32,7 @@ func PrintGoRushVersion() { func VersionMiddleware() gin.HandlerFunc { // Set out header value for each response return func(c *gin.Context) { - c.Writer.Header().Set("S...
refactor: update version name in header. (#<I>)
appleboy_gorush
train
go
6dc6a6fedf78f0919208974819f1ee264af9022e
diff --git a/client/deis.go b/client/deis.go index <HASH>..<HASH> 100644 --- a/client/deis.go +++ b/client/deis.go @@ -72,7 +72,8 @@ Use 'git push deis master' to deploy to an application. } if len(argv) == 0 { - return 0 + fmt.Println("Usage: deis <command> [<args>...]") + return 1 } // Dispatch the com...
fix(client): print usage if no args were given
deis_deis
train
go
c926ae9dc8bd2848f1df0786f3d91c70030a03d0
diff --git a/functions.php b/functions.php index <HASH>..<HASH> 100644 --- a/functions.php +++ b/functions.php @@ -1,8 +1,8 @@ <?php use Phalcon\Di; +use Phalcon\Text; use Phwoolcon\Config; use Phwoolcon\I18n; -use Phwoolcon\Text; /** * Translate
fix: class Phwoolcon\Text not found when running update script for the first time
phwoolcon_phwoolcon
train
php
54beb96504449896b17250742965a1aff4af3e03
diff --git a/src/Application.php b/src/Application.php index <HASH>..<HASH> 100644 --- a/src/Application.php +++ b/src/Application.php @@ -320,6 +320,10 @@ class Application */ protected function doAction(Command $command) { + if ($command->name() === '__default__') { + return $this->n...
feat(app): command not found handler
adhocore_php-cli
train
php
fe3a662d3e35d4c9163c232408d7b0ebf84e8518
diff --git a/manager/api/rest/src/main/java/io/apiman/manager/api/rest/IDeveloperPortalResource.java b/manager/api/rest/src/main/java/io/apiman/manager/api/rest/IDeveloperPortalResource.java index <HASH>..<HASH> 100644 --- a/manager/api/rest/src/main/java/io/apiman/manager/api/rest/IDeveloperPortalResource.java +++ b/m...
fix(manager-api): add devportal endpoint into generated swagger file to provide a complete API documentation
apiman_apiman
train
java