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
9e48e887ad2b850398e608f9ba3ecbb0d01706e2
diff --git a/src/main.js b/src/main.js index <HASH>..<HASH> 100644 --- a/src/main.js +++ b/src/main.js @@ -229,7 +229,7 @@ function dispatch(event) { // 判断 element 是否已经绑定事件 function isElementBind (element) { - return elementHasBindEvent.some(ele => ele.isSameNode(element)) + return elementHasBindEvent.some(ele =>...
fix: replace isSameNode with === (#<I>)
jaywcjlove_hotkeys
train
js
0734e3ec4a13117b1753da66873472859b5ea942
diff --git a/packages/kocha/examples/__tests__/index.js b/packages/kocha/examples/__tests__/index.js index <HASH>..<HASH> 100644 --- a/packages/kocha/examples/__tests__/index.js +++ b/packages/kocha/examples/__tests__/index.js @@ -32,7 +32,7 @@ describe('slow-pass example', () => { }) }) describe('babel-pass examp...
test: increase the test timeout because of the failure in circle-ci
kt3k_kocha
train
js
dde07fd3de49dd50b64419ad5326e2a3bd415c24
diff --git a/src/bundleList.js b/src/bundleList.js index <HASH>..<HASH> 100644 --- a/src/bundleList.js +++ b/src/bundleList.js @@ -40,6 +40,10 @@ const venueRoles = [ 'venue' ]; +// the bundle index contains timestamped bundles and non tar.bz2 files. +// this regex is used to filter the bundle list, removing inva...
fix(download): filter bundle list using regex
pelias_whosonfirst
train
js
aaa0891a8d220f065011aa462fafc1baa078aef2
diff --git a/tests/Database/ConnectTest.php b/tests/Database/ConnectTest.php index <HASH>..<HASH> 100644 --- a/tests/Database/ConnectTest.php +++ b/tests/Database/ConnectTest.php @@ -488,17 +488,18 @@ class ConnectTest extends TestCase $connect->beginTransaction(); $this->assertSame('SAVEPOINT trans2'...
fix(tests): try fix
hunzhiwange_framework
train
php
f82af2024bfaf27d5ebd834d81682f35fc0f02f6
diff --git a/tests/gui/widget/test_interface.py b/tests/gui/widget/test_interface.py index <HASH>..<HASH> 100644 --- a/tests/gui/widget/test_interface.py +++ b/tests/gui/widget/test_interface.py @@ -136,7 +136,8 @@ def test_gui_create_folder(monkeypatch): assert gui_interface.create_folder("query", "new_folder", R...
test: fix permission problem account for the fact that /root/not/writable can be writable in a ci setup
DLR-RM_RAFCON
train
py
42442a1402cc5824b19f427480d18a9e2f2fb9ab
diff --git a/tests/Test/Providers/AllProvidersTest.php b/tests/Test/Providers/AllProvidersTest.php index <HASH>..<HASH> 100644 --- a/tests/Test/Providers/AllProvidersTest.php +++ b/tests/Test/Providers/AllProvidersTest.php @@ -212,7 +212,7 @@ class AllProvidersTest extends TestCase self::setConfig([ ...
test(AllProviders): Fix missing set of cipher
phalcon-nucleon_framework
train
php
6d3b36d61bd5e0e16b06d0bb1589d23fadcc37a0
diff --git a/public/app/features/annotations/annotationsSrv.js b/public/app/features/annotations/annotationsSrv.js index <HASH>..<HASH> 100644 --- a/public/app/features/annotations/annotationsSrv.js +++ b/public/app/features/annotations/annotationsSrv.js @@ -62,7 +62,7 @@ define([ min: options.time, m...
fix(annotations): removed accidental test code from annotationsSrv
grafana_grafana
train
js
3101dfc367cd1237faf9c055c0abb7b3185da782
diff --git a/src/Views.php b/src/Views.php index <HASH>..<HASH> 100644 --- a/src/Views.php +++ b/src/Views.php @@ -85,6 +85,13 @@ class Views protected $overriddenIpAddress; /** + * Used visitor ID instead of the provided one by a cookie. + * + * @var string + */ + protected $overriddenVi...
feat: add the ability to override the visitor ID
cyrildewit_eloquent-viewable
train
php
8939f7c1a072809c6aa5d670357c4adfe37e4664
diff --git a/platform/nativescript/element-registry.js b/platform/nativescript/element-registry.js index <HASH>..<HASH> 100644 --- a/platform/nativescript/element-registry.js +++ b/platform/nativescript/element-registry.js @@ -399,7 +399,7 @@ registerElement( () => require('@nativescript/core/text/formatted-string')...
fix(formatted-string): wrong atIndex condition
nativescript-vue_nativescript-vue
train
js
d34dba7112ba17e222df81e0c5bd84d210223a19
diff --git a/src/poetry/mixology/version_solver.py b/src/poetry/mixology/version_solver.py index <HASH>..<HASH> 100644 --- a/src/poetry/mixology/version_solver.py +++ b/src/poetry/mixology/version_solver.py @@ -368,11 +368,7 @@ class VersionSolver: return not dependency.marker.is_any(), 1 ...
refactor: move logic to get suitable locked package inside _get_locked
sdispater_poetry
train
py
92d75647d5e11f43363c412e71e9fe0e4c3bdd32
diff --git a/tests/test_utils.py b/tests/test_utils.py index <HASH>..<HASH> 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -188,7 +188,7 @@ def test_utils_dns_get_zone_ids(mock_boto3): assert result == [100] # no internal zones - mock_boto3.return_value.list_hosted_zones_by_name.return_val...
test: Fix external DNS Zone IDs mock
foremast_foremast
train
py
28d8418f81f299bd35572e3df88f7e1132963e35
diff --git a/src/js/mixin/slideshow.js b/src/js/mixin/slideshow.js index <HASH>..<HASH> 100644 --- a/src/js/mixin/slideshow.js +++ b/src/js/mixin/slideshow.js @@ -1,7 +1,7 @@ import Animations from './internal/slideshow-animations'; import Transitioner from './internal/slideshow-transitioner'; import Slider from './...
refactor: remove fix for autoplay on iOS
uikit_uikit
train
js
499adffa29c2f5c95b2bfb4ab46dec09995b9009
diff --git a/src/component/aurelia-form.js b/src/component/aurelia-form.js index <HASH>..<HASH> 100644 --- a/src/component/aurelia-form.js +++ b/src/component/aurelia-form.js @@ -41,7 +41,7 @@ export class AureliaForm { let validation = config.validation; - if (validation) { + if (validation && validatio...
fix(aurelia-form): check for validation controller
SpoonX_aurelia-form
train
js
bc1a2286457809a8075a8ac97d2744e77400d14e
diff --git a/lnd_test.go b/lnd_test.go index <HASH>..<HASH> 100644 --- a/lnd_test.go +++ b/lnd_test.go @@ -700,7 +700,6 @@ func testChannelForceClosure(net *networkHarness, t *harnessTest) { // Now that the channel has been force closed, it should show up in the // PendingChannels RPC under the force close sectio...
test: remove unnecessary sleep before pendingChannels query
lightningnetwork_lnd
train
go,go
57d8e84c0b7245d8d73f97fb86314c9fd23d5731
diff --git a/benchbuild/environments/adapters/buildah.py b/benchbuild/environments/adapters/buildah.py index <HASH>..<HASH> 100644 --- a/benchbuild/environments/adapters/buildah.py +++ b/benchbuild/environments/adapters/buildah.py @@ -320,7 +320,9 @@ class BuildahImageRegistry(ImageRegistry): def _create(self, t...
fix(environments): split return turple and baild out on error The buildah image registry would pass a tuple instead of a container_id
PolyJIT_benchbuild
train
py
32b28b5315fb0ebce840ab1afa076d2a82bd4395
diff --git a/lib/helpers/pick.js b/lib/helpers/pick.js index <HASH>..<HASH> 100644 --- a/lib/helpers/pick.js +++ b/lib/helpers/pick.js @@ -1,7 +1,7 @@ module.exports = function pick(object, ...paths) { const obj = {}; for (const path of paths) { - if (object[path]) { + if (object[path] !== undefined) { ...
fix: allow setting timeout to 0 to disable it closes #<I>
panva_node-openid-client
train
js
36a1b9b91f26773f2e9ef096886276c9f3e47de7
diff --git a/packages/api-axios/src/resources/organizations.js b/packages/api-axios/src/resources/organizations.js index <HASH>..<HASH> 100644 --- a/packages/api-axios/src/resources/organizations.js +++ b/packages/api-axios/src/resources/organizations.js @@ -161,6 +161,8 @@ export default class AvOrganizationsApi exten...
fix(api-axios): fix organizations resources check in axios
Availity_sdk-js
train
js
f020439f736e7ba4fc7b722935ae66880cd2fa04
diff --git a/packages/metascraper-uol/index.js b/packages/metascraper-uol/index.js index <HASH>..<HASH> 100644 --- a/packages/metascraper-uol/index.js +++ b/packages/metascraper-uol/index.js @@ -21,16 +21,14 @@ const ward = createWard(({ url }) => isValidUrl(url)) const wrapTitle = createWrap(title) const wrapDescrip...
refactor: less identation
microlinkhq_metascraper
train
js
02de74d62d7c14fd5471cc64bc1d3036b84e8807
diff --git a/src/Entities/Instalment.php b/src/Entities/Instalment.php index <HASH>..<HASH> 100644 --- a/src/Entities/Instalment.php +++ b/src/Entities/Instalment.php @@ -50,4 +50,7 @@ class Instalment extends Base /** @var int */ public $customer_interest; + + /** @var int */ + public $total_amount; }
feat: add instalment::total_amount (p<I>x field) We might want to add this after that: alma/main#<I>
alma_alma-php-client
train
php
e4f8dde4bcf71ae17ceb082e2cd8298c645b969b
diff --git a/deb/deb.go b/deb/deb.go index <HASH>..<HASH> 100644 --- a/deb/deb.go +++ b/deb/deb.go @@ -5,7 +5,6 @@ import ( "archive/tar" "bytes" "compress/gzip" - "encoding/hex" // #nosec "crypto/md5" "fmt" @@ -133,8 +132,7 @@ func copyToTarAndDigest(tarw *tar.Writer, md5w io.Writer, now time.Time, src, ds...
style: deb: simplified code a little
goreleaser_nfpm
train
go
ffe1091830f69f196efc4606a7e512a27a01b6b1
diff --git a/Extractor/Jobs/JsonRecursiveJob.php b/Extractor/Jobs/JsonRecursiveJob.php index <HASH>..<HASH> 100755 --- a/Extractor/Jobs/JsonRecursiveJob.php +++ b/Extractor/Jobs/JsonRecursiveJob.php @@ -125,7 +125,9 @@ abstract class JsonRecursiveJob extends JsonJob implements RecursiveJobInterface $job = new static...
fix: Prevent a PHP error if child's task placeholders aren't set
keboola_juicer
train
php
c9b0bfb5b75350d41573b35afde926c21259378a
diff --git a/packages/@jsii/python-runtime/setup.py b/packages/@jsii/python-runtime/setup.py index <HASH>..<HASH> 100644 --- a/packages/@jsii/python-runtime/setup.py +++ b/packages/@jsii/python-runtime/setup.py @@ -32,7 +32,7 @@ setuptools.setup( install_requires=[ "attrs~=20.1", "cattrs~=1.0.0 ;...
chore: upgrade cattrs dependency to <I> (py<I>+) (#<I>) Version `<I>` has been yanked. --- By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache <I> license]. [Apache <I> license]: <URL>
awslabs_jsii
train
py
3cdc7f9046b53de5c1ddeb0f7bd1b20af7cf433e
diff --git a/src/contract/compiler.js b/src/contract/compiler.js index <HASH>..<HASH> 100644 --- a/src/contract/compiler.js +++ b/src/contract/compiler.js @@ -145,4 +145,4 @@ export default AsyncInit.compose(ContractBase, { }) const COMPILER_GE_VERSION = '4.1.0' -const COMPILER_LT_VERSION = '6.0.0' +const COMPILER_...
feat: support compiler@<I> and above
aeternity_aepp-sdk-js
train
js
2f7f0ebe56a9059a15aeb4280ce65fa9977b166d
diff --git a/packages/postcss-config/index.js b/packages/postcss-config/index.js index <HASH>..<HASH> 100644 --- a/packages/postcss-config/index.js +++ b/packages/postcss-config/index.js @@ -19,7 +19,6 @@ module.exports = () => ({ }, customMedia: { extensions: mediaQueries, - appen...
refactor(postcss-config): remove unneeded appendExtensions from cssnext customMedia config affects: @goldwasserexchange/postcss-config appendExtensions isn't needed if preserve isn't set to true so it shouldn't be fixed alone in cssnext customMedia config
goldwasserexchange_public
train
js
48d11785cbee88c366a4e6131b45dcf42c1f2454
diff --git a/scripts/screenshots.js b/scripts/screenshots.js index <HASH>..<HASH> 100755 --- a/scripts/screenshots.js +++ b/scripts/screenshots.js @@ -55,7 +55,8 @@ const screenshotComponent = async (page, options) => { screenshotDir, getScreenshotName({ component, viewport, suffix }) ), - ...
fix: Generates screenshots with `captureBeyondViewport` disabled Puppeteer V7 introduced a breaking change on how ViewPort is handled. Since this change, page.screenshot() now captures using Clip dimensions instead of ViewPort size To come back to old behavior `captureBeyondViewport` should be set to `false` See: <...
cozy_cozy-ui
train
js
4d9c0c4858039d3a5e1777eb79c8c86305ba6270
diff --git a/tests/Deserializers/SecondSignatureRegistrationTest.php b/tests/Deserializers/SecondSignatureRegistrationTest.php index <HASH>..<HASH> 100644 --- a/tests/Deserializers/SecondSignatureRegistrationTest.php +++ b/tests/Deserializers/SecondSignatureRegistrationTest.php @@ -14,6 +14,7 @@ declare(strict_types=1)...
test: assert address is same as computed from public key
ArkEcosystem_php-crypto
train
php
a7df29e91bd42c9a6fbbf317f61930281a96824e
diff --git a/src/karma-jasmine/pp-patch.js b/src/karma-jasmine/pp-patch.js index <HASH>..<HASH> 100644 --- a/src/karma-jasmine/pp-patch.js +++ b/src/karma-jasmine/pp-patch.js @@ -79,6 +79,8 @@ function ppPatched(j$) { } else if (typeof value === 'string') { this.emitString(value); } else if (j$.i...
chore: Add a comment about patched pretty print identity
mradionov_karma-jasmine-diff-reporter
train
js
0c7ce4ef997fb8a47bc83d109b7b6a314a16abc2
diff --git a/packages/application-components/src/components/internals/for-docs/example-wrapper/example-wrapper.js b/packages/application-components/src/components/internals/for-docs/example-wrapper/example-wrapper.js index <HASH>..<HASH> 100644 --- a/packages/application-components/src/components/internals/for-docs/exa...
fix(website): tooltip z-index fix (#<I>)
commercetools_merchant-center-application-kit
train
js
44d1d23ddb6afff0be35b118667fc2bd0b89391a
diff --git a/_tools/pygments2chroma.py b/_tools/pygments2chroma.py index <HASH>..<HASH> 100644 --- a/_tools/pygments2chroma.py +++ b/_tools/pygments2chroma.py @@ -191,7 +191,6 @@ def main(): name=lexer_cls.name, regex_flags=lexer_cls.flags, upper_name=to_camel_case(re.sub(r'\W', '_', lexer_cl...
fix: revert line change from pygments converter Link to the breaking change: <URL>
alecthomas_chroma
train
py
eb70038d0dc3ac620e36f9457c318c789b2c406d
diff --git a/src/components/IntlTelInputApp.js b/src/components/IntlTelInputApp.js index <HASH>..<HASH> 100644 --- a/src/components/IntlTelInputApp.js +++ b/src/components/IntlTelInputApp.js @@ -21,7 +21,7 @@ class IntlTelInputApp extends Component { }; } - if (nextProps.disabled && prevState.disabled ...
fix(disabled): Fixed #<I>: disabled state don't get updated
patw0929_react-intl-tel-input
train
js
3be0b7f1b764d6fa8399f5e042884deabd131229
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,7 +49,7 @@ master_doc = 'index' # General information about the project. project = 'osfclient' -copyright = '2020, The osfclient contributors' +copyright = '2021, The osfclient contributors' author = '...
docs: update copyright year to <I>
osfclient_osfclient
train
py
1ff85e412705e7f2e9ad51041701dbef7f58f2fb
diff --git a/packages/workbox/lib/defaults.js b/packages/workbox/lib/defaults.js index <HASH>..<HASH> 100644 --- a/packages/workbox/lib/defaults.js +++ b/packages/workbox/lib/defaults.js @@ -1,6 +1,6 @@ module.exports = { // General - workboxVersion: '4.0.0-rc.2', + workboxVersion: '4.0.0-rc.4', workboxURL: un...
chore: use workbox <I>-rc<I>
nuxt-community_pwa-module
train
js
8b8000ecc495e971b43c2bab3149eac55c177b0a
diff --git a/cmd/helm/home.go b/cmd/helm/home.go index <HASH>..<HASH> 100644 --- a/cmd/helm/home.go +++ b/cmd/helm/home.go @@ -1,7 +1,7 @@ package main import ( - "fmt" + "os" "github.com/spf13/cobra" ) @@ -23,5 +23,5 @@ func init() { } func Home(cmd *cobra.Command, args []string) { - fmt.Println("helm hom...
feat(helm): implement home command
helm_helm
train
go
27cd812ff650f2c1fff9d049cf252ba4dc1f85ec
diff --git a/tests/Backend/CommonPart1/AlterTableTest.php b/tests/Backend/CommonPart1/AlterTableTest.php index <HASH>..<HASH> 100644 --- a/tests/Backend/CommonPart1/AlterTableTest.php +++ b/tests/Backend/CommonPart1/AlterTableTest.php @@ -466,4 +466,26 @@ class AlterTableTest extends StorageApiTestCase $table ...
test: test for missing columns when adding PK
keboola_storage-api-php-client
train
php
58e5507a003e68b811e6765668c36811556ad7a2
diff --git a/src/types/chips/chips.js b/src/types/chips/chips.js index <HASH>..<HASH> 100644 --- a/src/types/chips/chips.js +++ b/src/types/chips/chips.js @@ -21,6 +21,9 @@ export default (formlyConfigProvider) => { }, onAdd: { bound: 'md-on-add' + }, + onRemove: { + ...
feat(chips): onRemove callback equivalent to md-on-remove
formly-js_angular-formly-templates-material
train
js
9ee14416da4dffee44e112098e2815e4f007e1d8
diff --git a/packages/tree-view/src/TreeItem.js b/packages/tree-view/src/TreeItem.js index <HASH>..<HASH> 100644 --- a/packages/tree-view/src/TreeItem.js +++ b/packages/tree-view/src/TreeItem.js @@ -10,6 +10,7 @@ const TreeItem = props => { collapsed, defaultCollapsed, expandByDoubleClick, + getKeyboa...
refactor: add back removed prop
Autodesk_hig
train
js
a59d02bdc96af0a1d88ac61949490cd026e02866
diff --git a/rollup.config.js b/rollup.config.js index <HASH>..<HASH> 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -43,6 +43,7 @@ module.exports = [ file: `${outputPath}/${filename}.js`, format: 'umd', name: pkg.name, + sourcemap: true, banner, }, ],
chore: add sourcemap for main js file
elastic_tinymath
train
js
877ddc0dbb664cd86e870bb81d46ca614770b50e
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index <HASH>..<HASH> 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -2277,6 +2277,25 @@ class ProjectMergeRequest(SubscribableMixin, TodoMixin, TimeTrackingMixin, path = '%s/%s/changes' % (self.manager.path, self.get_id()) retur...
fix: re-add merge request pipelines
python-gitlab_python-gitlab
train
py
b6988e3b82f55707a7fa00951dbd6455df070915
diff --git a/actor-sdk/sdk-core/core/core-js/src/main/java/im/actor/core/js/JsFacade.java b/actor-sdk/sdk-core/core/core-js/src/main/java/im/actor/core/js/JsFacade.java index <HASH>..<HASH> 100644 --- a/actor-sdk/sdk-core/core/core-js/src/main/java/im/actor/core/js/JsFacade.java +++ b/actor-sdk/sdk-core/core/core-js/sr...
fix(js): loadMoreArchivedDialogs reject, add logs
actorapp_actor-platform
train
java
e49130a48ea105fb24db639bb7cdf12e6ad5bafd
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -48,7 +48,7 @@ module.exports = function (options) { if (map) { // hack to remove the already added sourceMappingURL from libsass - css = css.replace(/\n\/\*#\s*sourceMappingURL\=.*\*\//, ''); + ...
fix(sourcemaps): allow for rewriting sourceMappingURL in compressed output style
dlmanning_gulp-sass
train
js
04868a384d655d110f2d153d2fddb94b1c6d54a9
diff --git a/src/jquery.draggable.js b/src/jquery.draggable.js index <HASH>..<HASH> 100644 --- a/src/jquery.draggable.js +++ b/src/jquery.draggable.js @@ -76,8 +76,9 @@ var fn = Draggable.prototype; fn.init = function() { + var pos = this.$container.css('position'); this.calculate_dimensions...
feat(draggable): keep container position prop if different than static
ducksboard_gridster.js
train
js
2a6cd3b6f9aa80632ebb729d134220dabb0e1565
diff --git a/assets/src/js/modules/moduleTest.js b/assets/src/js/modules/moduleTest.js index <HASH>..<HASH> 100644 --- a/assets/src/js/modules/moduleTest.js +++ b/assets/src/js/modules/moduleTest.js @@ -1,7 +1,9 @@ -/* - moduleTest.js - Example module to show how to include other JS files into you browserify build -*/ ...
docs: improve jsdoc comments
TryKickoff_kickoff
train
js,js
231853479820a74f655428a4a1cd4c43f516134c
diff --git a/core/src/elements/ons-navigator/index.spec.js b/core/src/elements/ons-navigator/index.spec.js index <HASH>..<HASH> 100644 --- a/core/src/elements/ons-navigator/index.spec.js +++ b/core/src/elements/ons-navigator/index.spec.js @@ -341,6 +341,15 @@ describe('OnsNavigatorElement', () => { }); ...
test(ons-navigator): Add test for bringPageTop bug Bug is when initial page is defined inside ons-navigator tags then any call to ons-navigator.bringPageTop will crash due to ons-navigator._pageMap. Currently failing since bug not yet fixed.
OnsenUI_OnsenUI
train
js
8df598fd336fa3cc0b80d68c1ba41577284f0527
diff --git a/spec/attributes_spec.rb b/spec/attributes_spec.rb index <HASH>..<HASH> 100644 --- a/spec/attributes_spec.rb +++ b/spec/attributes_spec.rb @@ -191,6 +191,16 @@ describe Cistern::Attributes, 'parsing' do expect(subject.new(list: 'item').list).to eq(['item']) end + it 'should parse an integer' do +...
test: update attributes_spec with test for integer type
lanej_cistern
train
rb
1f2b1b99ca0e31fcc68c3fb3f6a758c2efd6294a
diff --git a/lib/topologies/replset.js b/lib/topologies/replset.js index <HASH>..<HASH> 100644 --- a/lib/topologies/replset.js +++ b/lib/topologies/replset.js @@ -1196,7 +1196,11 @@ function executeWriteOperation(args, options, callback) { } const willRetryWrite = - !args.retrying && options.retryWrites && o...
refactor(replset): don't retry writes if in a transaction
mongodb-js_mongodb-core
train
js
eae9cbdd09e76065d370315e642bac6d44c33d29
diff --git a/src/Events/Initialized.php b/src/Events/Initialized.php index <HASH>..<HASH> 100644 --- a/src/Events/Initialized.php +++ b/src/Events/Initialized.php @@ -7,7 +7,7 @@ use Analogue\ORM\System\Mapper; class Initialized { /** - * Mapper. + * Mapper instance. * * @var Mapper */
chore(Initialized): minor update
analogueorm_analogue
train
php
b1e97e59cfa8d95758ea8c308b8181b0ff73c425
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -856,11 +856,14 @@ const _checkForBranch = async (theDetails) => { } }) - // this next check also handles the case where the branch name doesn't exist, but there are branches - // for which this name is ...
fix(pr): fix in checkForBranch when branch doesn't exist
cwrc_CWRC-Git
train
js
00ba6b65c3614e030447af3db5b2f9110b087bb1
diff --git a/tests/Unit/ViewsTest.php b/tests/Unit/ViewsTest.php index <HASH>..<HASH> 100644 --- a/tests/Unit/ViewsTest.php +++ b/tests/Unit/ViewsTest.php @@ -39,6 +39,16 @@ class ViewsTest extends TestCase } /** @test */ + public function it_is_macroable() + { + Views::macro('newMethod', funct...
test: macro trait on Views class
cyrildewit_eloquent-viewable
train
php
7e1f45feb082aff8c5c734afc842268c7697908f
diff --git a/src/util.js b/src/util.js index <HASH>..<HASH> 100644 --- a/src/util.js +++ b/src/util.js @@ -3,7 +3,8 @@ const formatRegExp = /%[sdj%]/g; let warning2 = () => { }; -if (process.env.NODE_ENV !== 'production') { +// don't print warning message when in production env or node runtime +if (process.env.NODE...
feat: don't use console.warn in node env
yiminghe_async-validator
train
js
43bf6f77e0424f899f51568e320d049904769e06
diff --git a/src/observer.js b/src/observer.js index <HASH>..<HASH> 100644 --- a/src/observer.js +++ b/src/observer.js @@ -27,8 +27,6 @@ export function observe (fn, options = {}) { } // save the scheduler on the reaction reaction.scheduler = options.scheduler - // runId will serve as a unique (incremental) i...
refactor: remove unused reaction.runId
nx-js_observer-util
train
js
5b235126fa972411598e34e06a4cd20c5b293578
diff --git a/docs/build/search.js b/docs/build/search.js index <HASH>..<HASH> 100644 --- a/docs/build/search.js +++ b/docs/build/search.js @@ -206,9 +206,6 @@ const processMarkdown = (syntaxTree, entries, entry) => { // handle text from previous const data = createIndex({ ...entry, content: text }) - ...
feat(docs): minor fix
quasarframework_quasar
train
js
fbae0fcb697ecb959c3dc2922efe0fd8bb4a4124
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 @@ -6,7 +6,7 @@ // Provides a service to open a code example in codepen. function Codepen($demoAngularScripts, $document, codepenDataAdapter) { - var CODEPEN_API ...
fix(codepen): use https to avoid mixed content
angular_material
train
js
698874e0de9d44479ad560c0943776e08538a4a9
diff --git a/sessions/integration_test.go b/sessions/integration_test.go index <HASH>..<HASH> 100644 --- a/sessions/integration_test.go +++ b/sessions/integration_test.go @@ -17,7 +17,7 @@ import ( ) const testAPIKey = "166f5ad3590596f9aa8d601ea89af845" -const testPublishInterval = time.Millisecond * 20 +const test...
test(v1): increase wait time to prevent failed tests (#<I>)
bugsnag_bugsnag-go
train
go
6f22217f056e4fc52f6405f2af49596105aae150
diff --git a/src/jquery.coords.js b/src/jquery.coords.js index <HASH>..<HASH> 100644 --- a/src/jquery.coords.js +++ b/src/jquery.coords.js @@ -59,6 +59,9 @@ var d = this.data; + typeof d.left === 'undefined' && (d.left = d.x1); + typeof d.top === 'undefined' && (d.top = d.y1); + this...
feat(coords): allow both (left/x1) and (top/y1) attr keys
ducksboard_gridster.js
train
js
293f964dd9dafa874b1f369259f8d78b185a1987
diff --git a/packages/hoc-input/src/formInput.js b/packages/hoc-input/src/formInput.js index <HASH>..<HASH> 100644 --- a/packages/hoc-input/src/formInput.js +++ b/packages/hoc-input/src/formInput.js @@ -20,7 +20,8 @@ export const formInputProps = { onChange: PropTypes.func, onInvalid: PropTypes.func, onFocus: ...
feat(formInput): add innerRef prop on the formInput hoc affects: @crave/farmblocks-hoc-input ISSUES CLOSED: #<I>
CraveFood_farmblocks
train
js
e1cc1dcf6d30ae0efc5ad0edccbc6c9e94eebda4
diff --git a/src/DataTable/Selectable.js b/src/DataTable/Selectable.js index <HASH>..<HASH> 100644 --- a/src/DataTable/Selectable.js +++ b/src/DataTable/Selectable.js @@ -84,7 +84,7 @@ export default Component => { handleChangeRowCheckbox(e) { const { rows, data } = this.props; - cons...
fix: IE<I> dataTable selectable not able to use HTML5 data attributes (#<I>)
tleunen_react-mdl
train
js
32dc40231218c6820c3aa53052e34785177fb5ce
diff --git a/sdam/topology_description.js b/sdam/topology_description.js index <HASH>..<HASH> 100644 --- a/sdam/topology_description.js +++ b/sdam/topology_description.js @@ -226,6 +226,16 @@ class TopologyDescription { hasWritableServer() { return this.hasReadableServer(ReadPreference.primary); } + + /** +...
feat(topology-description): add helper method for server ownership
mongodb_node-mongodb-native
train
js
9fbdcfb771a22f1039398cdfc8c2c82f30dedeaa
diff --git a/rakelib/kokoro/kokoro.rb b/rakelib/kokoro/kokoro.rb index <HASH>..<HASH> 100644 --- a/rakelib/kokoro/kokoro.rb +++ b/rakelib/kokoro/kokoro.rb @@ -64,11 +64,11 @@ class Kokoro < Command markdown_files = Dir.glob "**/*.md" broken_markdown_links = check_links markdown_files, - ...
chore: fix link tests (#<I>)
googleapis_google-cloud-ruby
train
rb
fe6e0b52e587d3b2d7c8f0b723d4674456f82c62
diff --git a/datastore.go b/datastore.go index <HASH>..<HASH> 100644 --- a/datastore.go +++ b/datastore.go @@ -48,9 +48,14 @@ type Options struct { GcDiscardRatio float64 // Interval between GC cycles + // + // If zero, the datastore will perform no automatic garbage collection. GcInterval time.Duration // ...
feat(gc): make it possible to disable GC
ipfs_go-ds-badger
train
go
9cb48edad048548375bae5abdf01b3b6f6e35d0a
diff --git a/test/helpers/index.js b/test/helpers/index.js index <HASH>..<HASH> 100644 --- a/test/helpers/index.js +++ b/test/helpers/index.js @@ -1,6 +1,6 @@ -const { isValidElement } = require('react'); const { renderToStaticMarkup } = require('react-dom/server'); -const data = require('./data'); + +module.exports.d...
test(helpers): refactor `render` method This brings test coverage back to <I>%
remarkablemark_html-react-parser
train
js
2d572d141bac3258ec251f728604404491b410ba
diff --git a/bin/post-install.js b/bin/post-install.js index <HASH>..<HASH> 100644 --- a/bin/post-install.js +++ b/bin/post-install.js @@ -12,9 +12,7 @@ const setupNpmConfig = () => { } const packageJSONPath = join(process.env.INIT_CWD, 'package.json'); - if (!existsSync(packageJSONPath)) { - return; - } +...
refactor(postinstall): fix issues reported by codeclimate
cgalvarez_atom-coverage
train
js
1c42d9e994a56691c19e9a3b60e60c3b172205ca
diff --git a/src/rules/no-for-of.js b/src/rules/no-for-of.js index <HASH>..<HASH> 100644 --- a/src/rules/no-for-of.js +++ b/src/rules/no-for-of.js @@ -3,13 +3,18 @@ module.exports = { meta: { docs: { - description: '' + description: 'deny for-of statement' }, schema: [] }, create(cont...
feat: add no-for-of rule
nkt_eslint-plugin-es5
train
js,js
53ec7b06e5c7d98a807a07cf6c2452afb16870c3
diff --git a/graphite.go b/graphite.go index <HASH>..<HASH> 100644 --- a/graphite.go +++ b/graphite.go @@ -56,6 +56,13 @@ func (graphite *Graphite) Connect() error { return nil } +// Given a Graphite struct, Disconnect closes the Graphite.conn field +func (graphite *Graphite) Disconnect() error { + err := graphite...
feat: support disconnecting I've had some occasional issues with TCP connection to Carbon. Introducing reconnection to avoid this. This fixes #7.
marpaia_graphite-golang
train
go
d94cf7167e47e6efbc9c57e012d3efb7c1eecd69
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -75,7 +75,7 @@ gulp.task('core', function() { 'core/lib/*.{es6,js}', 'core/*.{es6,js}', 'core/elements/*.{es6,js}', - '!core/**/*.spec.js' + '!core/**/*.spec.{es6,js}', ]) .pipe($.sourc...
fix(gulpfile): Fix broken build.
OnsenUI_OnsenUI
train
js
85281ac0bcb13265d4022b412a45241d8abe2ce5
diff --git a/src/Logging/Drivers/Single.php b/src/Logging/Drivers/Single.php index <HASH>..<HASH> 100755 --- a/src/Logging/Drivers/Single.php +++ b/src/Logging/Drivers/Single.php @@ -8,6 +8,16 @@ use Modulus\Hibernate\Logging\Driver; class Single extends Driver { /** + * Create log file if it doesn't already exi...
feat: Create log file if it doesn't already exists'
modulusphp_hibernate
train
php
937dcb2a632cb8826e3d1f921c5509c5758bb0bf
diff --git a/docs/website/src/pages/index.js b/docs/website/src/pages/index.js index <HASH>..<HASH> 100644 --- a/docs/website/src/pages/index.js +++ b/docs/website/src/pages/index.js @@ -105,7 +105,7 @@ const Index = () => { > <div css={styles.root}> <h2>Main library features</h2> - <Grid co...
docs: fix index website page
adaltas_node-nikita
train
js
3f6f17ed6f66003b303bcbfb225469b2334f2bf4
diff --git a/lib/gazeWatchCompilerStrategy.js b/lib/gazeWatchCompilerStrategy.js index <HASH>..<HASH> 100644 --- a/lib/gazeWatchCompilerStrategy.js +++ b/lib/gazeWatchCompilerStrategy.js @@ -68,17 +68,17 @@ GazeWatchCompilerStrategy.prototype.watch = function(pattern, callback) { return new Promise(_.bind(function...
feat(gazeWatchCompilerStrategy): now `Promise` is resolved with `watcher`
Fitbit_webpack-cluster
train
js
257284384ab620ba4f5d83318efbf7aa4ee82d70
diff --git a/tests/Features/Methods/Facades.php b/tests/Features/Methods/Facades.php index <HASH>..<HASH> 100644 --- a/tests/Features/Methods/Facades.php +++ b/tests/Features/Methods/Facades.php @@ -56,10 +56,9 @@ class Facades return DB::query(); } - public function testDBAfterCommit(): void + pu...
fix: test db facade with method on Laravel ^6.x
nunomaduro_larastan
train
php
86fdbdcc808b0f930f4f95a701e9960f9fc09a97
diff --git a/packages/dna-idom/src/lib/idom.js b/packages/dna-idom/src/lib/idom.js index <HASH>..<HASH> 100644 --- a/packages/dna-idom/src/lib/idom.js +++ b/packages/dna-idom/src/lib/idom.js @@ -51,12 +51,13 @@ export function h(element, props, ...children) { const Component = registry.get(element); c...
fix: do not delete property but ignore it in idom hypertext
chialab_dna
train
js
4759ff0a9cf0ec1ae034ffc5fff2a73ac73b368b
diff --git a/source/rafcon/gui/controllers/execution_history.py b/source/rafcon/gui/controllers/execution_history.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/controllers/execution_history.py +++ b/source/rafcon/gui/controllers/execution_history.py @@ -349,7 +349,10 @@ class ExecutionHistoryTreeController(Ext...
fix(execution_history): revert commit <I>dbf<I>cf8 Do not update the execution history if you trigger execution commands for the active state machine You don't want the execution history of your selected state machine jump, if another state machine is e.g. stopped
DLR-RM_RAFCON
train
py
c899b6dd708e9d486f401271a6cc69a33d3bb351
diff --git a/src/parsers/parseV3.js b/src/parsers/parseV3.js index <HASH>..<HASH> 100644 --- a/src/parsers/parseV3.js +++ b/src/parsers/parseV3.js @@ -12,8 +12,8 @@ export default function parseV3 (certificateJson) { const { issuer } = certificateJson; return { chain: domain.certificates.getChain('', receipt...
chore(Verification): object props order
blockchain-certificates_cert-verifier-js
train
js
36d4ecbaef2b3c68e711da7dd4a30ed37840133c
diff --git a/lib/server/index.js b/lib/server/index.js index <HASH>..<HASH> 100644 --- a/lib/server/index.js +++ b/lib/server/index.js @@ -14,12 +14,18 @@ module.exports = function () { pack.server(env_config.www_port, { labels: ['web'], - cors: true + cors: true, + payload: { + maxB...
feat(requests): allow request sizes up to <I> MB This should sove any problems with replicating attachments up to <I> MB. This should probably an app config setting at some point. * * * This commit was sponsored by The Hoodie Firm. You can hire The Hoodie Firm: <URL>
hoodiehq_hoodie-server
train
js
bc2ff02f7f11e97bf3f55a49fbc758550515b26e
diff --git a/lib/concatJS.js b/lib/concatJS.js index <HASH>..<HASH> 100644 --- a/lib/concatJS.js +++ b/lib/concatJS.js @@ -114,6 +114,12 @@ function concatJS(data) { return new Promise((resolve, reject) => { const script = route.get(path); let scriptTxt = ''; + if (!script) { + ...
fix: script could be undefined Sometimes the script could return an empty value, we ignore that anyway. Fixes #<I>.
chenzhutian_hexo-all-minifier
train
js
e7572b80f80ec357fdc738ed6500d55b7a616f34
diff --git a/src/loader.js b/src/loader.js index <HASH>..<HASH> 100644 --- a/src/loader.js +++ b/src/loader.js @@ -95,14 +95,14 @@ export class Loader { userdata, ); - let transaction = new Transaction().add({ + const transaction = new Transaction(); + + transaction.add({ keys: [program.pu...
fix: finalize/spawn in same transaction
solana-labs_solana-web3.js
train
js
9292ef1173378ddde7cade745378ca1723d14910
diff --git a/lib/plugins/aws/package/lib/generateCoreTemplate.test.js b/lib/plugins/aws/package/lib/generateCoreTemplate.test.js index <HASH>..<HASH> 100644 --- a/lib/plugins/aws/package/lib/generateCoreTemplate.test.js +++ b/lib/plugins/aws/package/lib/generateCoreTemplate.test.js @@ -72,7 +72,7 @@ describe('#generate...
test: Fix fixture service config It only worked because all `provider` properties are mapped on `provider`
serverless_serverless
train
js
08add21fe602423c673422de2ccd50f5298c41cb
diff --git a/packages/@vue/cli/lib/Creator.js b/packages/@vue/cli/lib/Creator.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli/lib/Creator.js +++ b/packages/@vue/cli/lib/Creator.js @@ -29,8 +29,7 @@ const { hasGit, hasYarn, logWithSpinner, - stopSpinner, - isOfficialPlugin + stopSpinner } = require('...
fix: fix @vue/cli-service initial version
vuejs_vue-cli
train
js
2a5f189573f27d9c55f4815fda88f0f7abe0c64e
diff --git a/lib/workers/repository/write.js b/lib/workers/repository/write.js index <HASH>..<HASH> 100644 --- a/lib/workers/repository/write.js +++ b/lib/workers/repository/write.js @@ -24,8 +24,11 @@ async function writeUpdates(config) { try { prsRemaining = config.prHourlyLimit - - prList...
fix: ignore onboarding branch when calculating pr hourly limit
renovatebot_renovate
train
js
f4d71e8400e0f6941e056ff9118f8eac434e0d92
diff --git a/template/default/fulldoc/yaml/setup.rb b/template/default/fulldoc/yaml/setup.rb index <HASH>..<HASH> 100644 --- a/template/default/fulldoc/yaml/setup.rb +++ b/template/default/fulldoc/yaml/setup.rb @@ -1,5 +1,5 @@ def init - options.serializer = Serializers::FileSystemSerializer.new :extension => "yaml" ...
chore: change file extension of cloudrad docs from "yaml" to "yml" (#<I>)
googleapis_google-cloud-ruby
train
rb
9bc71c56be9f60271ab04e20de170df510e82d96
diff --git a/vyper/ast/nodes.py b/vyper/ast/nodes.py index <HASH>..<HASH> 100644 --- a/vyper/ast/nodes.py +++ b/vyper/ast/nodes.py @@ -763,11 +763,13 @@ class Bytes(Constant): def __init__(self, parent: Optional["VyperNode"] = None, **kwargs: dict): super().__init__(parent, **kwargs) if isinstanc...
fix: convert bytes to hex when generating ast dict
ethereum_vyper
train
py
9124f515b1661a606214730c646a6c5ff2c36700
diff --git a/packages/servers/ssr-server/index.js b/packages/servers/ssr-server/index.js index <HASH>..<HASH> 100644 --- a/packages/servers/ssr-server/index.js +++ b/packages/servers/ssr-server/index.js @@ -95,14 +95,14 @@ async function ssrRenderHTML(htmlToRender, port, webpackStatsGenerated) { return new Promise(a...
chore: re-enable tidying up HTML via Prettier
bolt-design-system_bolt
train
js
6e09de64aa3c6858bfea5573fde58868452d1037
diff --git a/dragular.js b/dragular.js index <HASH>..<HASH> 100644 --- a/dragular.js +++ b/dragular.js @@ -597,7 +597,7 @@ angular.module('dragularModule', []).factory('dragularService', function dragula ); } -}).directive('dragular', function(dragularService) { +}).directive('dragular', ['dragularService', f...
fix(directive): minify-safe syntax added to directive, closes #3
luckylooke_dragular
train
js
c232bb46679b50b49e2930ffd612465300cfcf4e
diff --git a/packages/__docs__/plugins.js b/packages/__docs__/plugins.js index <HASH>..<HASH> 100644 --- a/packages/__docs__/plugins.js +++ b/packages/__docs__/plugins.js @@ -74,6 +74,7 @@ module.exports = [ '**/__testfixtures__/**', '**/__tests__/**', '**/locales/**', + '**/styles.js', ...
refactor: add `styles.js` to the ignored files in docs generation
instructure_instructure-ui
train
js
fdc565f30e37119c933fc0f57fcf2b1ef3b58a85
diff --git a/grappa/reporters/diff.py b/grappa/reporters/diff.py index <HASH>..<HASH> 100644 --- a/grappa/reporters/diff.py +++ b/grappa/reporters/diff.py @@ -28,8 +28,15 @@ class DiffReporter(BaseReporter): return error.operator.differ() # Obtain subject/expected values - subject = str(s...
feat(diff): consume diff specific subject/expected values
grappa-py_grappa
train
py
372a5b298fa060ccd66e4d4f8e351e9feb6dcc96
diff --git a/src/foremast/consts.py b/src/foremast/consts.py index <HASH>..<HASH> 100644 --- a/src/foremast/consts.py +++ b/src/foremast/consts.py @@ -114,7 +114,8 @@ def find_config(): SystemExit: No configuration file found. Returns: - ConfigParser: found configuration file + dict: found...
fix: Return dict form of configurations ConfigParser can be accessed like a dictionary already, but converting the Type will help avoid more confusion.
foremast_foremast
train
py
ebeb7a7d943d72fe3146444c58caed7c3a4df179
diff --git a/src/useSprings.js b/src/useSprings.js index <HASH>..<HASH> 100644 --- a/src/useSprings.js +++ b/src/useSprings.js @@ -51,7 +51,13 @@ export const useSprings = (length, propsArg) => { ) const ref = props[0] ? props[0].ref : isFn ? state.ref : null - useImperativeHandle(ref, () => ({ start, stop }))...
fix: missing "controllers" property in useSprings ref API
react-spring_react-spring
train
js
512af54e5df43bb85a617708501892ec6b5b0a42
diff --git a/src/sharding/Shard.js b/src/sharding/Shard.js index <HASH>..<HASH> 100644 --- a/src/sharding/Shard.js +++ b/src/sharding/Shard.js @@ -140,10 +140,9 @@ class Shard extends EventEmitter { */ send(message) { return new Promise((resolve, reject) => { - const sent = this.process.send(message, e...
fix(Shard): erroneously returning false The node documentation fails to correctly document when the backlog of unsent messages exceeds a certain threshhold the function will return false. This does not mean it will refuse to send- simply that it will take time. Issue in point: <URL>
discordjs_discord.js
train
js
8072567d36543e40cb00e65f6ab623d540f2d97f
diff --git a/test/version.js b/test/version.js index <HASH>..<HASH> 100644 --- a/test/version.js +++ b/test/version.js @@ -30,9 +30,10 @@ describe('version', function() { if (er) return done(er); assert.equal(status, 0); - assert.equal(stdout.length, 1); + var PEERS = Object.keys(requi...
test: versions command Tests there is a line for each peer, and a line for strong-cli and node.
strongloop_strongloop
train
js
3db03c20d6ce3752b399208f78d282f56495720f
diff --git a/tarball.js b/tarball.js index <HASH>..<HASH> 100644 --- a/tarball.js +++ b/tarball.js @@ -45,6 +45,7 @@ function tarballStream (spec, opts) { }) } }) + .catch(err => output.emit('error', err)) return output }
fix(tarball): stop dropping stream errors on the floor
zkat_pacote
train
js
238b7977fb1332bd3b7e234802656e7af0313c7b
diff --git a/biz/index.js b/biz/index.js index <HASH>..<HASH> 100644 --- a/biz/index.js +++ b/biz/index.js @@ -16,7 +16,7 @@ function request(req, res, port, weinre) { if (port) { options.port = port; } - req.headers['x-forwarded-for'] = util.getClientIp(req); + req.headers['x-forwarded-for'] = req.clientIp; o...
refactor: Change getClientIp to req.clientIp
avwo_whistle
train
js,js
4637698098ad246f602c970b76ea91390f899661
diff --git a/src/Model/User.php b/src/Model/User.php index <HASH>..<HASH> 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -2150,17 +2150,27 @@ class User extends Base public function destroy($iUserId) { $oDb = Factory::service('Database'); - $oDb->where('id', $iUserId); - $o...
feat: Deleting user_meta record before the user
nails_module-auth
train
php
31511b9b7791cad285bc9e24b2fe326374a7f442
diff --git a/pipeline/defaults/defaults.go b/pipeline/defaults/defaults.go index <HASH>..<HASH> 100644 --- a/pipeline/defaults/defaults.go +++ b/pipeline/defaults/defaults.go @@ -32,7 +32,7 @@ func (Pipe) Description() string { } // Run the pipe -func (Pipe) Run(ctx *context.Context) error { +func (Pipe) Run(ctx *c...
feat: Add ability to specify release name TODO: factor all the name stuff into a function like the others, so maybe setNameDefaults(ctx), etc.
goreleaser_goreleaser
train
go
bb60422be1440d4b6a4c51ef5e2ac18ca2f4287c
diff --git a/tests/TestCase.php b/tests/TestCase.php index <HASH>..<HASH> 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -13,6 +13,7 @@ declare(strict_types=1); namespace CyrildeWit\EloquentViewable\Tests; +use Closure; use Mockery; use Carbon\Carbon; use Illuminate\Support\Facades\File; @@ -115,4 ...
feat: add missing helper which was added to <I>
cyrildewit_eloquent-viewable
train
php
b02fac704c5ae0299e3e15f968073fb88dff5f57
diff --git a/ui/src/components/fab/QFabAction.js b/ui/src/components/fab/QFabAction.js index <HASH>..<HASH> 100644 --- a/ui/src/components/fab/QFabAction.js +++ b/ui/src/components/fab/QFabAction.js @@ -5,6 +5,7 @@ import QIcon from '../icon/QIcon.js' import FabMixin from '../../mixins/fab.js' +import { noop } fro...
feat(QFabAction): Allow using QFabAction outside QFab #<I> (#<I>) #<I>
quasarframework_quasar
train
js
6c071b62ff48ef9a2bbe067610c46ea081ece00f
diff --git a/rollup.config.js b/rollup.config.js index <HASH>..<HASH> 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -25,7 +25,9 @@ export default { plugins: [ babel({ babelrc: false, - exclude: 'node_modules/**', // only transpile our source code + // Don't transpile `node_modules` ex...
fix(browser): Add IE <I> support (#<I>) This adds IE <I> support as well as support for older versions of Uglify. It does so by transpiling `stringify-object` with babel. Closes #<I>, #<I>
algolia_react-element-to-jsx-string
train
js
e80f0485429e9b32e3e671d9b012afe85688e65b
diff --git a/scripts/new-rule.js b/scripts/new-rule.js index <HASH>..<HASH> 100644 --- a/scripts/new-rule.js +++ b/scripts/new-rule.js @@ -62,9 +62,17 @@ var rule = `/** // Rule Definition // ----------------------------------------------------------------------------- -module.exports = (/* getMeta */) => (/* conte...
chore(scaffolding): Change rule scaffolding
dferber90_eslint-plugin-meteor
train
js
89ea8cab6487dca1ba73bcb9ca564ac4e307d257
diff --git a/tests/ParserTest.php b/tests/ParserTest.php index <HASH>..<HASH> 100644 --- a/tests/ParserTest.php +++ b/tests/ParserTest.php @@ -29,6 +29,7 @@ $this->assertInstanceOf(get_class(new \Xparse\Parser\Page()), $page); $this->assertEquals($page, $parser->getLastPage()); $this->assertEquals(...
test: check effected url in page
xparse_Parser
train
php
7350e3681328315357d9c1d105742bda22f13d51
diff --git a/test/cliui.js b/test/cliui.js index <HASH>..<HASH> 100644 --- a/test/cliui.js +++ b/test/cliui.js @@ -2,6 +2,9 @@ require('chai').should() +// Force chalk to enable color, if it's disabled the test fails. +process.env['FORCE_COLOR'] = 1 + var chalk = require('chalk') var cliui = require('../') var ...
fix: set env variable FORCE_COLOR. (#<I>)
yargs_cliui
train
js
a0a69693772f3564d51330d3d876ad67d94929f8
diff --git a/NEMbox/ui.py b/NEMbox/ui.py index <HASH>..<HASH> 100644 --- a/NEMbox/ui.py +++ b/NEMbox/ui.py @@ -184,7 +184,7 @@ class Ui(object): def update_lyrics(self, now_playing, lyrics, tlyrics): - timestap_regex = r"\d\d:\d\d\.[0-9]*" + timestap_regex = r"[0-5][0-9]:[0-5][0-9]\.[0-9]*" ...
fix: parse invalid lyric timestamp failed (#<I>) Time string from lyric_line is invalid in some case For example, '<I>:<I>' which does not match format '%M:%S.%f' fix #<I>
darknessomi_musicbox
train
py
a0921dd12f2ed5f2f974ca056af9c47cb3238768
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 @@ -9,7 +9,7 @@ let tagsVar = tags if ( process.env.NODE_ENV !== 'production' && - ...
fix(cerebral): rename window to global to work on server
cerebral_cerebral
train
js
b959cfb8207adcd5c77343eb51cbf2779c5ed779
diff --git a/flask_resty/routing.py b/flask_resty/routing.py index <HASH>..<HASH> 100644 --- a/flask_resty/routing.py +++ b/flask_resty/routing.py @@ -1,4 +1,10 @@ -from werkzeug.routing import RequestSlash, Rule +from werkzeug.routing import Rule + +try: + from werkzeug.routing import RequestPath +except ImportErro...
fix: compatibility with werkzeug <I> (#<I>) * fix: compatibility with werkzeug <I> close #<I> * Fix coverage
4Catalyzer_flask-resty
train
py