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
603492f15c31a2ff1fc31ec7335491bd5794f041
diff --git a/src/components/Picklist/styled/input.js b/src/components/Picklist/styled/input.js index <HASH>..<HASH> 100644 --- a/src/components/Picklist/styled/input.js +++ b/src/components/Picklist/styled/input.js @@ -50,6 +50,12 @@ const PickerInput = attachThemeAttrs(styled(StyledInput))` padding-right: 0; ...
fix: styles in Picklist component when icon and readOnly is passed (#<I>) fix: #<I>
90milesbridge_react-rainbow
train
js
90ba9db87d13fbbc786b7f789f712e46be24db52
diff --git a/src/helpers.js b/src/helpers.js index <HASH>..<HASH> 100644 --- a/src/helpers.js +++ b/src/helpers.js @@ -8,7 +8,7 @@ export function loadScript (url) { const script = document.createElement('script') script.async = true script.src = url - script.charset = 'utf8' + script.charset = 'ut...
fix: changed 'utf8' to 'utf-8' for the injected script charset Bugfix to helpers.js which specified 'utf8' rather than 'utf-8' for the script element charset. As an aside this attribute is deprecated on script tags. It is inherited automatically as utf-8 from the document. <URL>
MatteoGabriele_vue-analytics
train
js
27481f45b8faccc32f4a352afe99e84cffa71356
diff --git a/src/Jobs/Universe/CharacterStructures.php b/src/Jobs/Universe/CharacterStructures.php index <HASH>..<HASH> 100644 --- a/src/Jobs/Universe/CharacterStructures.php +++ b/src/Jobs/Universe/CharacterStructures.php @@ -67,7 +67,7 @@ class CharacterStructures extends AbstractAuthCharacterJob implements IStructur...
fix(jobs): address a typo in route parameter
eveseat_eveapi
train
php,php
7fb2f2069cc29c2df0e99159621a066ea40aa2c9
diff --git a/modules/angular2/src/di/injector.js b/modules/angular2/src/di/injector.js index <HASH>..<HASH> 100644 --- a/modules/angular2/src/di/injector.js +++ b/modules/angular2/src/di/injector.js @@ -36,8 +36,8 @@ function _isWaiting(obj):boolean { * } * * class Car { - * constructor(@Inject(Engine) engine) {...
docs(Injector): remove unwanted tab characters in the examples These mess up the jade templates that use tabs for structuring the output.
angular_angular
train
js
2f76c67fd41808175f5e2f40d1952432cdbb0fe6
diff --git a/tooling/lib/test/index.js b/tooling/lib/test/index.js index <HASH>..<HASH> 100644 --- a/tooling/lib/test/index.js +++ b/tooling/lib/test/index.js @@ -56,10 +56,6 @@ exports.testPackage = async function testPackage(options, packageName) { } } - if (options.documentation) { - await runDocsSuite...
fix(tooling): move documentation tests to last step jsdoctrinetest conflicts with babel-register in weird ways; running the doc test last is a bit of a hack, but the alternative is rewriting the doc test runner.
webex_spark-js-sdk
train
js
4b62ca4445e7378a27dd590d132b19e088966457
diff --git a/src/js/core/offcanvas.js b/src/js/core/offcanvas.js index <HASH>..<HASH> 100644 --- a/src/js/core/offcanvas.js +++ b/src/js/core/offcanvas.js @@ -1,5 +1,5 @@ import Modal from '../mixin/modal'; -import {$, addClass, css, hasClass, height, isTouch, once, removeClass, trigger, unwrap, wrapAll} from 'uikit-u...
refactor: remove obsolet Scroll component fix in Offcanvas
uikit_uikit
train
js
3a67db4d19d345d90f5f724006298212557729c5
diff --git a/packages/core/src/plugin-common/output/json.js b/packages/core/src/plugin-common/output/json.js index <HASH>..<HASH> 100644 --- a/packages/core/src/plugin-common/output/json.js +++ b/packages/core/src/plugin-common/output/json.js @@ -118,7 +118,7 @@ export default { return JSON.stringify(data, null,...
feat(plugin-common): throw errors
citation-js_citation-js
train
js
2cc585057da027f0376ee326a651125da24678d7
diff --git a/gridsome/lib/app/App.js b/gridsome/lib/app/App.js index <HASH>..<HASH> 100644 --- a/gridsome/lib/app/App.js +++ b/gridsome/lib/app/App.js @@ -89,6 +89,13 @@ class App { this.plugins.push({ api, entry, instance }) }) + // run config.chainWebpack after all plugins + if (typeof this.config...
fix(webpack): run chainWebpack after all plugins
gridsome_gridsome
train
js
a4beb2260054c8c01d4cbc9cce1a3b6cb0cbf21d
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,3 +1,5 @@ const RbacIndex = require('./rbac-index/Rbac') +RbacIndex.builtInRoles = Object.values(require('./rbac-index/builtin-roles')) + module.exports = RbacIndex
feat: Expose built in roles names through package interface
wmfs_rbac
train
js
46560e2a26208664d6b018fb053b5b1d5786bc94
diff --git a/packages/cozy-client/src/store/queries.js b/packages/cozy-client/src/store/queries.js index <HASH>..<HASH> 100644 --- a/packages/cozy-client/src/store/queries.js +++ b/packages/cozy-client/src/store/queries.js @@ -38,13 +38,16 @@ const query = (state = queryInitialState, action) => { } case REC...
refactor: extract common updates to an object
cozy_cozy-client
train
js
4f3ceb7fe5771bed36decf077e1f0729d0c59efd
diff --git a/lib/yome/chip.rb b/lib/yome/chip.rb index <HASH>..<HASH> 100644 --- a/lib/yome/chip.rb +++ b/lib/yome/chip.rb @@ -28,7 +28,7 @@ module Yome file = parser.file_hash[path] i = index + 1 - while i < index+8 do + while i < file.length do break if file[i] =~ /YOME:([\w.,]...
feat: Support YOME:end
ongaeshi_yome
train
rb,rb
4a4e595c5b8ea7f7daf66238b517c4b3aac0a48b
diff --git a/lib/static/components/section/section-common.js b/lib/static/components/section/section-common.js index <HASH>..<HASH> 100644 --- a/lib/static/components/section/section-common.js +++ b/lib/static/components/section/section-common.js @@ -12,7 +12,7 @@ class SectionCommon extends Component { static pro...
fix: error with update "baseHost" and "parsedHost" in "view" reducer (#<I>)
gemini-testing_html-reporter
train
js,js
9c44c00f702f40fcce3390cefea25ee40be7a6a2
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -56,8 +56,20 @@ function fromString (str) { } function floatize (lonlat) { - const lon = parseFloat(lonlat.lon || lonlat.lng || lonlat.longitude) - return {lon: lon, lat: parseFloat(lonlat.lat || lonlat.latitude)} + con...
fix(floatize): allow for correct parsing of coordinates at 0, 0
conveyal_lonlat
train
js
8ec27261d5089675489f12e58fb56f1ebd9a4a23
diff --git a/src/resources/views/character/notification.blade.php b/src/resources/views/character/notification.blade.php index <HASH>..<HASH> 100644 --- a/src/resources/views/character/notification.blade.php +++ b/src/resources/views/character/notification.blade.php @@ -1,3 +1,3 @@ -<i class="fa fa-comment" data-widget...
fix(notifications): fix datatables error on character notifications from issue passing notification text from array to string
eveseat_web
train
php
b33204ae31ec22601a70c2e8cfe7a67a53b4a74c
diff --git a/src/notebook/index.js b/src/notebook/index.js index <HASH>..<HASH> 100644 --- a/src/notebook/index.js +++ b/src/notebook/index.js @@ -49,7 +49,7 @@ class App extends React.Component { props: Object state: Object notificationSystem: NotificationSystem; - shouldComponentUpdate: (p: Object, s: Objec...
test(Flow): Intentionally introduced Flow error to fail Travis build
nteract_nteract
train
js
8c97689e5d9d956a0dd9493c4c53088a6e8a87fa
diff --git a/server/apiserver/argoserver.go b/server/apiserver/argoserver.go index <HASH>..<HASH> 100644 --- a/server/apiserver/argoserver.go +++ b/server/apiserver/argoserver.go @@ -280,7 +280,7 @@ func (as *argoServer) restartOnConfigChange(stopCh <-chan struct{}) error { case <-stopCh: return case e := ...
fix: Ignore bookmark events for restart. Fixes #<I> (#<I>)
argoproj_argo
train
go
ef944b417cb4133797d066ea3e52bea436a082b2
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ from setuptools import setup, find_namespace_packages +from typing import List from pathlib import Path import re @@ -31,7 +32,7 @@ test_requires = [ 'pytest~=5.4.1', 'pytest-cov', 'pytest-mock...
test: Fix pytest and plugin versions for their compatibility * Temporarily drop pytest-sugar in favor of latest pytest and pytest-asyncio versions.
lablup_backend.ai-client-py
train
py
1a581660607c81229632a04810d1325e3295598c
diff --git a/lib/util/prepare-swagger-ui.js b/lib/util/prepare-swagger-ui.js index <HASH>..<HASH> 100644 --- a/lib/util/prepare-swagger-ui.js +++ b/lib/util/prepare-swagger-ui.js @@ -10,6 +10,7 @@ fse.emptyDirSync(resolve('./static')) const filesToCopy = ['favicon-16x16.png', 'favicon-32x32.png', 'index.html', +...
fix: Copy over index.css from swagger-ui (#<I>)
fastify_fastify-swagger
train
js
344a8e2d425ba2697943125053c4dc804f6216c9
diff --git a/node_test.go b/node_test.go index <HASH>..<HASH> 100644 --- a/node_test.go +++ b/node_test.go @@ -248,11 +248,11 @@ c ├── "a" ├── "b" └── "c" -`}, {"byte-size", &Options{Fs: fs, OutFile: out, ByteSize: true}, `root +`}, {"byte-size", &Options{Fs: fs, OutFile: out, ByteSize: true}, `[ 12499] root ...
test(node): Test recursive dir. size.
a8m_tree
train
go
50c76f3d7e9dfd6ef08a46fe6fd54ba7fae97340
diff --git a/src/js/plyr.js b/src/js/plyr.js index <HASH>..<HASH> 100644 --- a/src/js/plyr.js +++ b/src/js/plyr.js @@ -1045,7 +1045,7 @@ // Store the volume in storage if(config.storage.enabled && _storage().supported) { - window.localStorage.plyr_volume = volume; + ...
fix: use custom localStorage key for volume setting
sampotts_plyr
train
js
6debe9dfb9a2babec05b8fadd7e312de87ae9c4b
diff --git a/aio/tools/transforms/authors-package/api-package.js b/aio/tools/transforms/authors-package/api-package.js index <HASH>..<HASH> 100644 --- a/aio/tools/transforms/authors-package/api-package.js +++ b/aio/tools/transforms/authors-package/api-package.js @@ -11,7 +11,7 @@ const { API_SOURCE_PATH } = require('.....
docs(docs-infra): add common/upgrade to authors package for API docs (#<I>) This fixes an issue where the common/upgrade packge isn't included on page reload when changes are made to the common/upgrade package PR Close #<I>
angular_angular
train
js
1be58adae5e2566315bf3b970f192f2ada366037
diff --git a/src/hapi/index.spec.js b/src/hapi/index.spec.js index <HASH>..<HASH> 100644 --- a/src/hapi/index.spec.js +++ b/src/hapi/index.spec.js @@ -1,4 +1,5 @@ var expect = require('chai').expect; +var Hapi = require('hapi'); describe('graffiti hapi', function() { @@ -27,4 +28,45 @@ describe('graffiti hapi', f...
test(hapi): improve Hapi plugin test coverage
RisingStack_graffiti
train
js
90f778d5881892a744644af5124a69377e02fe6c
diff --git a/machine/machine.go b/machine/machine.go index <HASH>..<HASH> 100644 --- a/machine/machine.go +++ b/machine/machine.go @@ -38,11 +38,10 @@ func (m *Machine) State() (state MachineState) { // RefreshState generates a new MachineState object based on the // current state of the underlying host, storing it...
refactor(machine): Drop return value from Machine.RefreshState
coreos_fleet
train
go
417c10abbd508ccd81c6e1f67c9b24e7996f0c87
diff --git a/generators/deployment/index.js b/generators/deployment/index.js index <HASH>..<HASH> 100644 --- a/generators/deployment/index.js +++ b/generators/deployment/index.js @@ -230,7 +230,7 @@ module.exports = class extends Generator { _configureSpring() { this.cfIgnoreContent = ['/.classpath', '/.project', ...
fix: More memory for CF Spring
ibm-developer_generator-ibm-cloud-enablement
train
js
b71ee8acc0e411c47b045a84af83b95bd3ad4baa
diff --git a/form-widget/form-widget.test.js b/form-widget/form-widget.test.js index <HASH>..<HASH> 100644 --- a/form-widget/form-widget.test.js +++ b/form-widget/form-widget.test.js @@ -59,10 +59,11 @@ test('submitForm()', (assert) => { test('setField(field, domElement, event, value)', (assert) => { const obje...
fix: form-widget failing test
roemhildtg_spectre-canjs
train
js
5669a6259eef1acfc0923af7a0c026868ff7f636
diff --git a/components/base/custom-link.js b/components/base/custom-link.js index <HASH>..<HASH> 100644 --- a/components/base/custom-link.js +++ b/components/base/custom-link.js @@ -1,27 +1,24 @@ export const CustomLink = { name: 'custom-link', + functional: true, props: { tag: { type: String, default: 'a...
refactor(base): make custom-link a fuctional component
stasson_vue-mdc-adapter
train
js
d87392a05aa0b3e9dbbb37a6846a7331d9f6d86e
diff --git a/src/directives/formly-form.js b/src/directives/formly-form.js index <HASH>..<HASH> 100644 --- a/src/directives/formly-form.js +++ b/src/directives/formly-form.js @@ -369,6 +369,8 @@ function formlyForm(formlyUsability, formlyWarn, $parse, formlyConfig, $interpol options: field, index, ...
fix(formly-form): added originalModel and formOptions to getFormlyFieldLikeLocals function added originalModel and formOptions to getFormlyFieldLikeLocals function issue #<I>: <URL>
formly-js_angular-formly
train
js
f90714f8fee69929157c35627ae7d54b0965116f
diff --git a/public/app/plugins/datasource/elasticsearch/bucketAgg.js b/public/app/plugins/datasource/elasticsearch/bucketAgg.js index <HASH>..<HASH> 100644 --- a/public/app/plugins/datasource/elasticsearch/bucketAgg.js +++ b/public/app/plugins/datasource/elasticsearch/bucketAgg.js @@ -40,7 +40,7 @@ function (angular, ...
feat(elasticsearch): changed default sort to asc
grafana_grafana
train
js
50742dc6f8db1548da782ca3a70ac1043962ee3d
diff --git a/packages/react/src/clear-module.js b/packages/react/src/clear-module.js index <HASH>..<HASH> 100644 --- a/packages/react/src/clear-module.js +++ b/packages/react/src/clear-module.js @@ -46,16 +46,21 @@ const clearModule = (moduleId) => { } }; -const isModuleDependentOnPath = (module, filePath) => {...
fix(react): fix infinite loop when checking for module dependent paths (#<I>)
frctl_fractal
train
js
9938506b62544f9c1b0a90d5595b8b03753d60ab
diff --git a/src/Api/CurlHttpClient.php b/src/Api/CurlHttpClient.php index <HASH>..<HASH> 100644 --- a/src/Api/CurlHttpClient.php +++ b/src/Api/CurlHttpClient.php @@ -78,7 +78,7 @@ class CurlHttpClient implements HttpClient $this->init($url, $postString); $res = curl_exec($this->curl); - $thi...
fix: removed output cookie file path to console
seregazhuk_php-pinterest-bot
train
php
cd12922acc2c01f46866ab2547598a9ee852650e
diff --git a/src/FirebaseObject.js b/src/FirebaseObject.js index <HASH>..<HASH> 100644 --- a/src/FirebaseObject.js +++ b/src/FirebaseObject.js @@ -318,12 +318,10 @@ self.scope = scope; self.varName = varName; - function equals(rec) { - var parsed = getScope(); - ...
perf: optimize binding equals performance. The angular watch function is already fetching the scope value, so there is no need to fetch it again inside equals. Also the symantics of `angular.equals()` is such that filtering the properties with `$firebaseUtils.scopeData()` before passing to `angular.equals()` is unneces...
firebase_angularfire
train
js
c83b20a54d703c37b4d50c5d3ed52d9732f7e21c
diff --git a/components/dropdown/menu.js b/components/dropdown/menu.js index <HASH>..<HASH> 100644 --- a/components/dropdown/menu.js +++ b/components/dropdown/menu.js @@ -191,7 +191,7 @@ export default class DropdownMenu extends Intact { this.focusIndex = index; - if (oldIndex > -1) { + if (o...
fix: unFocus deleted item
ksc-fe_kpc
train
js
b60e2074974059b581dfadabb3fcf579a2dc63d3
diff --git a/packages/article/fixtures/full-article.js b/packages/article/fixtures/full-article.js index <HASH>..<HASH> 100644 --- a/packages/article/fixtures/full-article.js +++ b/packages/article/fixtures/full-article.js @@ -1171,6 +1171,7 @@ const defaultContent = [ const defaultFlags = ["NEW", "EXCLUSIVE"]; const...
fix: Add missing fixture data (#<I>) * fix: Add missing fixture data
newsuk_times-components
train
js
a1259445de78f6652526f1840c527ae8cc2f9f72
diff --git a/test/component.spec.js b/test/component.spec.js index <HASH>..<HASH> 100644 --- a/test/component.spec.js +++ b/test/component.spec.js @@ -1086,7 +1086,10 @@ describe('Component', function() { const element = new TestElement(); element.innerHTML = '<span>Test</span>'; - ...
test: fix innerHTML spec
chialab_dna
train
js
3b5f119c7bd309ef30dfab8b7b8725fbffbb3e4d
diff --git a/src/Leevel/Collection/TypedIntArray.php b/src/Leevel/Collection/TypedIntArray.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Collection/TypedIntArray.php +++ b/src/Leevel/Collection/TypedIntArray.php @@ -36,13 +36,10 @@ final class TypedIntArray extends Collection $data = explode(',', $data)...
refactor(collection): Refact Leevel/Collection/TypedIntArray
hunzhiwange_framework
train
php
c86c2a36108a9c8be144c0945277414f31c9cbf8
diff --git a/packages/richtypo-rules-en/src/en.js b/packages/richtypo-rules-en/src/en.js index <HASH>..<HASH> 100644 --- a/packages/richtypo-rules-en/src/en.js +++ b/packages/richtypo-rules-en/src/en.js @@ -10,7 +10,7 @@ import { quotesFactory, numberOrdinalsFactory, numberSeparatorsFactory, - definitions, + defi...
feat: Export definitions so they could be reused in custom rules
sapegin_richtypo.js
train
js
be89807670ecb36fea7665670c922b1dfcfe7051
diff --git a/packages/react/src/components/Modal/Modal-test.js b/packages/react/src/components/Modal/Modal-test.js index <HASH>..<HASH> 100644 --- a/packages/react/src/components/Modal/Modal-test.js +++ b/packages/react/src/components/Modal/Modal-test.js @@ -119,6 +119,10 @@ describe('Modal', () => { expect( ...
fix(Modal): remove scroller class on unmount (#<I>) Fixes #<I>.
carbon-design-system_carbon-components
train
js,js
7b003ee959c7f79bcc8d89635fc1d63b1e6c9cfc
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -94,14 +94,16 @@ quest.send = function(req, body) { return quest.stream(req) } -quest.fetch = function(url, headers) { - const res = quest.stream(url, headers) +quest.read = function(res) { return new Promise((resolv...
feat: add `quest.read` This function buffers the entire response body into memory. The returned promise resolves with a buffer once the response ends.
aleclarson_quest
train
js
b487d88677d94f3115c66f9efcbdc3cc97a9a263
diff --git a/test/13-integration-tests.js b/test/13-integration-tests.js index <HASH>..<HASH> 100644 --- a/test/13-integration-tests.js +++ b/test/13-integration-tests.js @@ -1184,7 +1184,8 @@ describe('Integration tests', () => { assert( err.message.indexOf('You do not hav...
test(publish-with-publish-please): try fix test on CI with npm version <I>
inikulin_publish-please
train
js
4628488f5acf247d5b0f6bcbae291447e84358e8
diff --git a/react/MuiCozyTheme/makeOverrides.js b/react/MuiCozyTheme/makeOverrides.js index <HASH>..<HASH> 100644 --- a/react/MuiCozyTheme/makeOverrides.js +++ b/react/MuiCozyTheme/makeOverrides.js @@ -73,7 +73,7 @@ const makeOverrides = theme => ({ boxShadow: '0 4px 12px 0 rgba(0, 0, 0, 0.08)', borderWi...
fix: Border color of Accordion
cozy_cozy-ui
train
js
2595d675d9566ea654630886c458b7f5c4b7981f
diff --git a/benchbuild/experiments/empty.py b/benchbuild/experiments/empty.py index <HASH>..<HASH> 100644 --- a/benchbuild/experiments/empty.py +++ b/benchbuild/experiments/empty.py @@ -29,5 +29,7 @@ class NoMeasurement(Experiment): def actions_for_project(self, project): """Execute all actions but don...
fix: no-measurement experiment requires compiler_extension
PolyJIT_benchbuild
train
py
b1c14ae0dd9be7768df3d748694f3cbbf4b3f4eb
diff --git a/routes/profile.js b/routes/profile.js index <HASH>..<HASH> 100644 --- a/routes/profile.js +++ b/routes/profile.js @@ -85,6 +85,7 @@ function profileRoutes (server, options, next) { handler: function (request, reply) { var sessionId = toBearerToken(request) var givenProfile = request.payl...
fix(routes): PATCH /session/account/profile -> <I> "data.id must be '{id}'" error
hoodiehq_hoodie-account-server
train
js
4f648e79b934fc5bbe3ef58bbc23e41e31c1b406
diff --git a/test/exports.js b/test/exports.js index <HASH>..<HASH> 100644 --- a/test/exports.js +++ b/test/exports.js @@ -1,4 +1,5 @@ var should = require('should') + , assert = require('assert') , time = require('../') describe('exports', function () { @@ -33,7 +34,7 @@ describe('exports', function () { ...
test: fix "currentTimezone" test I don't like should.js anymore... :\
TooTallNate_node-time
train
js
c516f814f6a03a1be8ffc5cf2133063e28508fda
diff --git a/demo/index.js b/demo/index.js index <HASH>..<HASH> 100644 --- a/demo/index.js +++ b/demo/index.js @@ -1,14 +1,12 @@ import { bootstrap } from '@angular/platform-browser-dynamic'; import { ROUTER_PROVIDERS } from '@angular/router-deprecated'; import { LocationStrategy, HashLocationStrategy } from '@angul...
chore(imports): Fixing bad imports
bullhorn_novo-elements
train
js
f2a015319b316c3e9b123d8113ac1adee97c62ed
diff --git a/upload/install/cli_install.php b/upload/install/cli_install.php index <HASH>..<HASH> 100644 --- a/upload/install/cli_install.php +++ b/upload/install/cli_install.php @@ -28,6 +28,7 @@ error_reporting(E_ALL); // DIR define('DIR_APPLICATION', str_replace('\\', '/', realpath(dirname(__FILE__))) . '/'); def...
fix: added DIR_STORAGE constant the cli installer includes the startup.php script, which references the DIR_STORAGE constant. This is triggering a PHP_NOTICE. DIR_STORAGE was added to remove this behaviour.
opencart_opencart
train
php
2780953ef5258531faa9ffd02ea37c1272a98e40
diff --git a/lib/loader/mixin/plugin.js b/lib/loader/mixin/plugin.js index <HASH>..<HASH> 100644 --- a/lib/loader/mixin/plugin.js +++ b/lib/loader/mixin/plugin.js @@ -9,7 +9,7 @@ const loadFile = require('../../utils').loadFile; module.exports = { /** - * Load confog/plugin.js from {EggLoader#loadUnits} + * L...
chore:typo (#<I>)
eggjs_egg-core
train
js
40a1526ae4d56a4fe4db863ceb9a1880aea43308
diff --git a/source/configuration/environments/production/transforms.js b/source/configuration/environments/production/transforms.js index <HASH>..<HASH> 100644 --- a/source/configuration/environments/production/transforms.js +++ b/source/configuration/environments/production/transforms.js @@ -1,7 +1,4 @@ export defau...
fix: remove stray key in transforms config
patternplate-archive_patternplate-server
train
js
7d3f2fa3a900999809ab25ac7fad43ab032e0262
diff --git a/hooks/lib/ios/associatedDomains.js b/hooks/lib/ios/associatedDomains.js index <HASH>..<HASH> 100644 --- a/hooks/lib/ios/associatedDomains.js +++ b/hooks/lib/ios/associatedDomains.js @@ -44,11 +44,27 @@ } function updateEntitlements (entitlements, preferences) { - entitlements[ASSOCIATED_DOMAINS]...
feat: associated domains appends instead of replace
BranchMetrics_cordova-ionic-phonegap-branch-deep-linking
train
js
284015b81bd998e95f3fa14a65bb5315fb3e9d55
diff --git a/lib/worker.js b/lib/worker.js index <HASH>..<HASH> 100644 --- a/lib/worker.js +++ b/lib/worker.js @@ -61,9 +61,11 @@ function panic(err) { function run(opts) { + let absoluteScriptPath = path.resolve(process.cwd(), opts.options.scriptPath); + opts.options.absoluteScriptPath = absoluteScriptPath; + ...
feat: Provide path to test script to worker processes
artilleryio_artillery
train
js
bbc071b84eba9ca8032d9fabf6ab1c60c449a6c0
diff --git a/test/k8sT/Services.go b/test/k8sT/Services.go index <HASH>..<HASH> 100644 --- a/test/k8sT/Services.go +++ b/test/k8sT/Services.go @@ -529,7 +529,7 @@ Secondary Interface %s :: IPv4: (%s, %s), IPv6: (%s, %s)`, helpers.DualStackSupp testExternalIPs(kubectl, ni) }) - SkipContextIf(helpers.R...
test: Quarantine host-fw + NodePort BPF test suite It seems to be very flaky. For now we postpone the investigation.
cilium_cilium
train
go
56339282fd97451530b287a6f155653bdbac0c20
diff --git a/source/rafcon/gui/models/abstract_state.py b/source/rafcon/gui/models/abstract_state.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/models/abstract_state.py +++ b/source/rafcon/gui/models/abstract_state.py @@ -240,7 +240,7 @@ class AbstractStateModel(MetaModel, Hashable): def update_hash(sel...
fix(abstract_state): fix hash method
DLR-RM_RAFCON
train
py
d42025da6b8d7bc837ffdf64845c81cf963f92fb
diff --git a/packages/read-pkg-up-helpers/index.js b/packages/read-pkg-up-helpers/index.js index <HASH>..<HASH> 100644 --- a/packages/read-pkg-up-helpers/index.js +++ b/packages/read-pkg-up-helpers/index.js @@ -52,6 +52,7 @@ const resolveBin = (modName, {executable = modName, cwd = process.cwd()} = {}) = } module.e...
feat(read-pkg-up-helpers): export fromRoot to use it from elsewhere affects: @goldwasserexchange/read-pkg-up-helpers
goldwasserexchange_public
train
js
6dff83456c6dccaa17d0cc319678ffd8b7012521
diff --git a/src/GiftedChat.js b/src/GiftedChat.js index <HASH>..<HASH> 100644 --- a/src/GiftedChat.js +++ b/src/GiftedChat.js @@ -40,8 +40,6 @@ const { DATE_FORMAT, } = Constants; -console.warn(MIN_COMPOSER_HEIGHT, MAX_COMPOSER_HEIGHT); - class GiftedChat extends React.Component { static append(currentMessag...
fix(console): removed missed warn
FaridSafi_react-native-gifted-chat
train
js
a114736f3dca17626570a5207bbcbcecde77fe2a
diff --git a/helpers/class.Http.php b/helpers/class.Http.php index <HASH>..<HASH> 100644 --- a/helpers/class.Http.php +++ b/helpers/class.Http.php @@ -239,7 +239,7 @@ class tao_helpers_Http { if (tao_helpers_File::securityCheck($filename, true)) { if (file_exists($filename)) { - ...
fix: check mime type of files by content extension is not available
oat-sa_tao-core
train
php
b61b7f0c3bdab65d9d8abe813fe40aef4220c2a8
diff --git a/public/app/plugins/datasource/influxdb/queryCtrl.js b/public/app/plugins/datasource/influxdb/queryCtrl.js index <HASH>..<HASH> 100644 --- a/public/app/plugins/datasource/influxdb/queryCtrl.js +++ b/public/app/plugins/datasource/influxdb/queryCtrl.js @@ -45,7 +45,7 @@ function (angular, _, InfluxQueryBuilde...
fix(influxdb): fixed editor bug introduced in recent commit
grafana_grafana
train
js
48ae57a6da821ab1666cb071cd6693cae9a12d3b
diff --git a/src/component/association-select.js b/src/component/association-select.js index <HASH>..<HASH> 100644 --- a/src/component/association-select.js +++ b/src/component/association-select.js @@ -183,6 +183,7 @@ export class AssociationSelect { if (!resource) { logger.error('resource bindable should ...
fix(component): association select\'s resource bindable can also reference repo instance
SpoonX_aurelia-orm
train
js
73780218415ab23ae3d9378dff4597b4456f48d8
diff --git a/python/setup.py b/python/setup.py index <HASH>..<HASH> 100755 --- a/python/setup.py +++ b/python/setup.py @@ -108,7 +108,7 @@ if platform.system() == 'Darwin': setup( name='neuroglancer', - version='2.4', + version='2.5', description='Python data backend for neuroglancer, a WebGL-based v...
chore: bump Python package version to <I>
google_neuroglancer
train
py
8c39668d3797fae9b5d117ceee208668556102eb
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -1,3 +1,2 @@ -import easyComp from './easyComp' -import easyStore from './easyStore' -export { easyComp, easyStore } +export { default as easyComp } from './easyComp' +export { default as easyStore } from './ea...
refactor: refactor the export in index.js
solkimicreb_react-easy-state
train
js
5ddfacf436f7060638e75317f7bc9733a22f011c
diff --git a/framework/core/js/src/forum/components/PostMeta.js b/framework/core/js/src/forum/components/PostMeta.js index <HASH>..<HASH> 100644 --- a/framework/core/js/src/forum/components/PostMeta.js +++ b/framework/core/js/src/forum/components/PostMeta.js @@ -55,6 +55,6 @@ export default class PostMeta extends Compo...
fix(postmeta): use app `baseUrl` instead of `location.origin` (#<I>)
flarum_core
train
js
4c8d0861b72f73719cc5ae3c254e5bb0d30a5304
diff --git a/src/server/index.js b/src/server/index.js index <HASH>..<HASH> 100644 --- a/src/server/index.js +++ b/src/server/index.js @@ -6,10 +6,15 @@ require('./bootstrap/colors'); const Utils = { travis: { components: { - async continuous(config) { // :Promise{} + async continuous(config) { // :Promise<an...
feat(travis): components.release complete
rapid-build-ui_utils
train
js
ee3c6a26e36868000c62fd7987b336e7b9927347
diff --git a/source/rafcon/gui/controllers/graphical_editor_gaphas.py b/source/rafcon/gui/controllers/graphical_editor_gaphas.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/controllers/graphical_editor_gaphas.py +++ b/source/rafcon/gui/controllers/graphical_editor_gaphas.py @@ -173,6 +173,8 @@ class GraphicalEd...
fix(graphical_editor_gaphas): Ensure drop state is a container
DLR-RM_RAFCON
train
py
f29c41fca4c042a1f9873b8f9c2219e7ec62a85d
diff --git a/types.go b/types.go index <HASH>..<HASH> 100644 --- a/types.go +++ b/types.go @@ -1,6 +1,7 @@ package krakenapi const ( + BCHEUR = "BCHEUR" DASHEUR = "DASHEUR" DASHUSD = "DASHUSD" DASHXBT = "DASHXBT" @@ -79,6 +80,7 @@ type TimeResponse struct { // AssetPairsResponse includes asset pair in...
feat(AssetPair): Add BCH pair (#<I>)
beldur_kraken-go-api-client
train
go
124210a2ab1b4ab405539c078d1213ef250710d3
diff --git a/packages/patternfly-3/patternfly-react/src/components/Slider/Slider.js b/packages/patternfly-3/patternfly-react/src/components/Slider/Slider.js index <HASH>..<HASH> 100644 --- a/packages/patternfly-3/patternfly-react/src/components/Slider/Slider.js +++ b/packages/patternfly-3/patternfly-react/src/component...
fix(Slider): Add limit for lowest possible value of slider (#<I>) When using the arrow keys to control the slider, it was possible to go below the set minimum value on the slider. I added a minimum value for the slider value. Fixes #<I>
patternfly_patternfly-react
train
js
34b67682e9248fd5460e8aeaa02737daf9952829
diff --git a/test/connection.test.js b/test/connection.test.js index <HASH>..<HASH> 100644 --- a/test/connection.test.js +++ b/test/connection.test.js @@ -342,12 +342,12 @@ test('get epoch schedule', async () => { 'leaderScheduleSlotOffset', 'slotsPerEpoch', ]) { + expect(epochSchedule).toHaveProperty('...
fix: epochSchedule test and lint
solana-labs_solana-web3.js
train
js,js
524be026a6c3fa524c33dcc1e41d7509861e3d78
diff --git a/lib/platform/gitlab/index.js b/lib/platform/gitlab/index.js index <HASH>..<HASH> 100644 --- a/lib/platform/gitlab/index.js +++ b/lib/platform/gitlab/index.js @@ -373,7 +373,7 @@ async function setBranchStatus( // Now, check the statuses for that commit const url = `projects/${config.repository}/statu...
fix(gitlab): branch status failed/failure
renovatebot_renovate
train
js
c14a7bcb14f646c5aa24237cc0f7da95d3c1ed8a
diff --git a/filters.go b/filters.go index <HASH>..<HASH> 100644 --- a/filters.go +++ b/filters.go @@ -19,13 +19,9 @@ func FilterExists(name string) bool { return existing } -// RegisterFilter registers a new filter. If there's already a filter with the same -// name, RegisterFilter will panic. You usually want to...
fix(comments): remove incorrect reference to panic (fixes #<I>)
flosch_pongo2
train
go
b474f2ce871e094c792bb3d24281ff45ec6a8987
diff --git a/test/elementhandle.spec.js b/test/elementhandle.spec.js index <HASH>..<HASH> 100644 --- a/test/elementhandle.spec.js +++ b/test/elementhandle.spec.js @@ -309,6 +309,14 @@ module.exports.addTests = function({testRunner, expect}) { const content = await elementHandle.$eval('.a', node => node.innerText...
test: add a missing test for elementHandle. (#<I>)
GoogleChrome_puppeteer
train
js
d7253a8ea406eeb36e87e7b8dafcd1c12e10fae7
diff --git a/functional/sdam_monitoring_mocks/single_topology_tests.js b/functional/sdam_monitoring_mocks/single_topology_tests.js index <HASH>..<HASH> 100644 --- a/functional/sdam_monitoring_mocks/single_topology_tests.js +++ b/functional/sdam_monitoring_mocks/single_topology_tests.js @@ -185,12 +185,12 @@ describe('S...
test(sdam_mocks): delay start of mock test for setup NODE-<I>
mongodb_node-mongodb-native
train
js
42ef5a156778848fe15d5a6688170e091623fd75
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -34,6 +34,7 @@ ports = OrderedDict(( # The members of the html_context dict are available inside topindex.html micropy_version = os.getenv('MICROPY_VERSION') or 'latest' +micropy_all_versions = (os.getenv('...
docs: Allow list of versions to be specified by environment variable.
micropython_micropython
train
py
8a48d2ddc8e7e27c1656cefb8514f5ec59fa2907
diff --git a/pipenv/core.py b/pipenv/core.py index <HASH>..<HASH> 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -2825,8 +2825,10 @@ def do_sync( three=three, python=python, validate=False, + system=system, deploy=deploy, pypi_mirror=pypi_mirror, + clear=c...
fix: do_sync should pass system/clear
pypa_pipenv
train
py
7406b8399084dbf5c17c66f357b6c458cf46ce45
diff --git a/core/commands/commands_test.go b/core/commands/commands_test.go index <HASH>..<HASH> 100644 --- a/core/commands/commands_test.go +++ b/core/commands/commands_test.go @@ -26,6 +26,7 @@ func TestROCommands(t *testing.T) { "/dag/get", "/dag/resolve", "/dag/stat", + "/dag/export", "/dns", "/get...
test: dag export in TestROCommands on gateway
ipfs_go-ipfs
train
go
2049086a56655f33523b71872934307a2da45a34
diff --git a/lib/Sentry.js b/lib/Sentry.js index <HASH>..<HASH> 100644 --- a/lib/Sentry.js +++ b/lib/Sentry.js @@ -71,7 +71,7 @@ export const Sentry = { }, _log(...args) { - if (Sentry.options.logLevel >= 2) { + if (Sentry.options && Sentry.options.logLevel >= 2) { // eslint-disable-next-line ...
fix: Don't crash on _log when Sentry is not configured. (#<I>)
getsentry_react-native-sentry
train
js
d03e6a6dee4ae28635d6685f53865c5082e62dc0
diff --git a/src/autotyper.js b/src/autotyper.js index <HASH>..<HASH> 100644 --- a/src/autotyper.js +++ b/src/autotyper.js @@ -116,7 +116,7 @@ const autotyper = { this.setText(text); - this.emit(TYPE_EVENT); + this.emit(TYPE_EVENT, text); this.letterCount += 1;
feat: pass `text` on emitting `TYPE_EVENT`
saulhardman_autotyper
train
js
6f2ae56ff65cd2cea43d6dcca8008475c20d2dbf
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -42,7 +42,7 @@ module.exports = { '@date: ' + moment().format('YYYY-MM-DD') ].join('\n')), - new ExtractTextPlugin('videojs.chapter-thumbnail.css') + ne...
fix(webpack): Fix css filename to include .
chemoish_videojs-chapter-thumbnails
train
js,js
ec1aef91de409f4cf2c01c7620f3dab64f4c9940
diff --git a/src/search/index.js b/src/search/index.js index <HASH>..<HASH> 100644 --- a/src/search/index.js +++ b/src/search/index.js @@ -36,7 +36,7 @@ export default createComponent({ }, }, - emits: ['search', 'cancel'], + emits: ['update:modelValue', 'search', 'cancel'], setup(props, { emit, slots, ...
fix(Search): add update:modelValue emits (#<I>)
youzan_vant
train
js
b047cb080e4f4577552453f493be347cb9e18dab
diff --git a/src/notebook/components/notebook.js b/src/notebook/components/notebook.js index <HASH>..<HASH> 100644 --- a/src/notebook/components/notebook.js +++ b/src/notebook/components/notebook.js @@ -122,7 +122,13 @@ export class Notebook extends React.PureComponent { return; } - const shiftXORctrl ...
feat(editor): Allow cmd+enter as option to run cell on macOS
nteract_nteract
train
js
392c5c740811d707dc2563c11055d89c5dd0523b
diff --git a/.github/actions/docs/sami.php b/.github/actions/docs/sami.php index <HASH>..<HASH> 100644 --- a/.github/actions/docs/sami.php +++ b/.github/actions/docs/sami.php @@ -18,7 +18,7 @@ $versions = GitVersionCollection::create($projectRoot) ->addFromTags(function($tag) { return 0 === strpos($tag, '...
chore: fix main branch doc generation (#<I>)
googleapis_google-api-php-client
train
php
970ac7c06e270a34c8fc9c9316c5e14af090feac
diff --git a/src/lolex-src.js b/src/lolex-src.js index <HASH>..<HASH> 100644 --- a/src/lolex-src.js +++ b/src/lolex-src.js @@ -645,7 +645,7 @@ function withGlobal(_global) { }; clock.countTimers = function countTimers() { - return Object.keys(clock.timers || {}).length; + retur...
fix: count microtasks in countTimers
sinonjs_lolex
train
js,js
c48d1b0ef3d41eda271051e71aedabea37b77f91
diff --git a/filetype/helpers.py b/filetype/helpers.py index <HASH>..<HASH> 100644 --- a/filetype/helpers.py +++ b/filetype/helpers.py @@ -1,9 +1,11 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import - -from .match import image_match, font_match, video_match, audio_match, archive_match from .types i...
fix(helpers): line size issue E<I>
h2non_filetype.py
train
py
f853eacd33349abf23ba8db62a8d5c5cdf91885c
diff --git a/docusaurus/docs/examples/examples.js b/docusaurus/docs/examples/examples.js index <HASH>..<HASH> 100644 --- a/docusaurus/docs/examples/examples.js +++ b/docusaurus/docs/examples/examples.js @@ -475,21 +475,27 @@ const colors = ['lightcoral', 'cadetblue', 'mediumpurple', 'darkorange'] export function Touch...
docs: update to touch-action [ci skip]
react-spring_react-use-gesture
train
js
266346b1d7965b4a43d01648a0af20a300f15173
diff --git a/modules/notification/js/notification_service.js b/modules/notification/js/notification_service.js index <HASH>..<HASH> 100644 --- a/modules/notification/js/notification_service.js +++ b/modules/notification/js/notification_service.js @@ -26,6 +26,7 @@ service.warning = notifyWarning; serv...
feat(notification): make deleteNotification public
lumapps_lumX
train
js
1c15e1845b0151eac9fba8321fde4a61c78eca37
diff --git a/util/session/sessionmanager.go b/util/session/sessionmanager.go index <HASH>..<HASH> 100644 --- a/util/session/sessionmanager.go +++ b/util/session/sessionmanager.go @@ -529,6 +529,10 @@ func (mgr *SessionManager) VerifyToken(tokenString string) (jwt.Claims, string, if err != nil { return claims, "...
fix: Segmentation fault when no 'aud' inside a token (#<I>)
argoproj_argo-cd
train
go
a8f759934eb81ae492fd21da582fbe6515bb8155
diff --git a/packages/bonde-admin/src/mobilizations/widgets/components/form-finish-message/index.js b/packages/bonde-admin/src/mobilizations/widgets/components/form-finish-message/index.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin/src/mobilizations/widgets/components/form-finish-message/index.js +++ b/pack...
chore(admin): refactor widget kind donation
nossas_bonde-client
train
js
dd5039f72d2c3529f628a4b38f212d4d6a2bc3e6
diff --git a/src/parsebindings/_processattribute/index.js b/src/parsebindings/_processattribute/index.js index <HASH>..<HASH> 100644 --- a/src/parsebindings/_processattribute/index.js +++ b/src/parsebindings/_processattribute/index.js @@ -38,7 +38,7 @@ export default function processAttribute({ if (defaultBinder) ...
fix: Remove attribute instead of raise it when bindings parser is used on HTML5 form elements This change fixes a bug which appears when bindings parser is used on 'checked' attribute of a checkbox and bound property is undefined
matreshkajs_matreshka
train
js
636e9988ba0e54fe349b3cefd81a87dee0644b4c
diff --git a/packages/colors/index.js b/packages/colors/index.js index <HASH>..<HASH> 100644 --- a/packages/colors/index.js +++ b/packages/colors/index.js @@ -1,4 +1,4 @@ -export default { +module.exports = { white: '#FFFFFF', red: '#d9534f', green: '#2ECC40',
fix(colors): use node export style in colors affects: @goldwasserexchange/colors
goldwasserexchange_public
train
js
a5487f01a1eaa23c256023f811fdfbd3ab8fc092
diff --git a/lib/api-client/resources/history.js b/lib/api-client/resources/history.js index <HASH>..<HASH> 100644 --- a/lib/api-client/resources/history.js +++ b/lib/api-client/resources/history.js @@ -251,6 +251,26 @@ History.setRemovalTimeToHistoricDecisionInstancesAsync = function(params, done) }; /** + * Set ...
feat(history): introduce endpoint for batch set removal time (async) related to CAM-<I>
camunda_camunda-bpm-sdk-js
train
js
49fa5d2a2b517809fd5b7d0275015f619dd28996
diff --git a/src/theme/selectors.js b/src/theme/selectors.js index <HASH>..<HASH> 100644 --- a/src/theme/selectors.js +++ b/src/theme/selectors.js @@ -14,6 +14,11 @@ export const selector = (propsOrSelector, prevArgs = []) => { const themeSelector = selector('theme'); +// these are pre-composed selectors for our t...
docs: add example usage to selectors file
weaveworks_ui-components
train
js
7918eaabbc628033c979326ea29ad49c2ad52002
diff --git a/lib/plugins/helper/open_graph.js b/lib/plugins/helper/open_graph.js index <HASH>..<HASH> 100644 --- a/lib/plugins/helper/open_graph.js +++ b/lib/plugins/helper/open_graph.js @@ -35,7 +35,7 @@ function openGraphHelper(options = {}) { const keywords = page.keywords || (page.tags && page.tags.length ? page...
fix(open_graph): remove index.html from url
hexojs_hexo
train
js
4169f05f4b0b833fa3f67b5519a2ba447eda60c1
diff --git a/src/elements/Label/Label.js b/src/elements/Label/Label.js index <HASH>..<HASH> 100644 --- a/src/elements/Label/Label.js +++ b/src/elements/Label/Label.js @@ -166,7 +166,10 @@ Label.propTypes = { ]), /** Format the label as a ribbon on another component. */ - ribbon: PropTypes.oneOf(Label._meta.pro...
fix(Label): Fix `ribbon` propType (#<I>)
Semantic-Org_Semantic-UI-React
train
js
94bdcaca62414a77d4ee0b8b79752a2be937320b
diff --git a/packages/discord.js/src/errors/DJSError.js b/packages/discord.js/src/errors/DJSError.js index <HASH>..<HASH> 100644 --- a/packages/discord.js/src/errors/DJSError.js +++ b/packages/discord.js/src/errors/DJSError.js @@ -9,6 +9,7 @@ const messages = new Map(); * Extend an error of some sort into a Discordjs...
docs: ignore docs of unexported functions (#<I>)
discordjs_discord.js
train
js
24ba88eec776889ee97126d90d499301d4b3a576
diff --git a/packages/ringcentral-widgets/lib/hasActiveCalls.js b/packages/ringcentral-widgets/lib/hasActiveCalls.js index <HASH>..<HASH> 100644 --- a/packages/ringcentral-widgets/lib/hasActiveCalls.js +++ b/packages/ringcentral-widgets/lib/hasActiveCalls.js @@ -2,21 +2,18 @@ import callingModes from 'ringcentral-integ...
fix(hasActiveCalls): fix webphone mode and only active calls problem (#<I>)
ringcentral_ringcentral-js-widgets
train
js
8702d8b67bee91b7a0b59afbf78159580777fd27
diff --git a/protocol-designer/webpack.config.js b/protocol-designer/webpack.config.js index <HASH>..<HASH> 100644 --- a/protocol-designer/webpack.config.js +++ b/protocol-designer/webpack.config.js @@ -16,7 +16,7 @@ const PROTOCOL_DESIGNER_ENV_VAR_PREFIX = 'OT_PD_' // Also remove all OT_PD_VERSION env vars, the versi...
chore(protocol-designer): bump to <I> (#<I>)
Opentrons_opentrons
train
js
22255e6b835c7da3692a80bd7474610706c25469
diff --git a/scripts/check-deps.js b/scripts/check-deps.js index <HASH>..<HASH> 100644 --- a/scripts/check-deps.js +++ b/scripts/check-deps.js @@ -4,6 +4,9 @@ if (process.platform === 'win32') { var fs = require('fs'); var path = require('path'); // https://github.com/atom/apm/blob/master/src/apm.coffee#L84 + ...
chore(install): Check GYP_MSVS_VERSION because windows-build-tools installs the compilers somewhere else
nteract_nteract
train
js
5437c6099629dfb612dd73c75f12d7a68185d217
diff --git a/test/v8-to-istanbul.js b/test/v8-to-istanbul.js index <HASH>..<HASH> 100644 --- a/test/v8-to-istanbul.js +++ b/test/v8-to-istanbul.js @@ -11,7 +11,7 @@ const sourcemap = require('source-map') require('tap').mochaGlobals() require('should') -describe('V8ToIstanbul', () => { +describe('V8ToIstanbul', asy...
chore: fix flappy tests (#<I>)
istanbuljs_v8-to-istanbul
train
js
170c0c4985595f77555c07747e72ae381d98a4d4
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -84,6 +84,7 @@ module.exports = { Collector: require('./structures/interfaces/Collector'), CommandInteraction: require('./structures/CommandInteraction'), CommandInteractionOptionResolver: require('./s...
feat: export ContextMenuInteraction (#<I>)
discordjs_discord.js
train
js
e9be30ce8f890eeb14dc619ae220ca9b88b341a6
diff --git a/webapps/ui/cockpit/client/scripts/repository/resource/plugins/details/definitions/cam-cockpit-definitions-plugin.js b/webapps/ui/cockpit/client/scripts/repository/resource/plugins/details/definitions/cam-cockpit-definitions-plugin.js index <HASH>..<HASH> 100644 --- a/webapps/ui/cockpit/client/scripts/repos...
fix(deployments): correct instance count number for cmmn resources related to CAM-<I>
camunda_camunda-bpm-platform
train
js
18f2ace3e9df8f35be1c5dfa9ff5b78686f34a91
diff --git a/packages/ui-toolkit/src/form/checkbox.js b/packages/ui-toolkit/src/form/checkbox.js index <HASH>..<HASH> 100644 --- a/packages/ui-toolkit/src/form/checkbox.js +++ b/packages/ui-toolkit/src/form/checkbox.js @@ -23,9 +23,7 @@ const Ul = styled.ul` padding: 0; `; -const CheckboxItem = BaseInput(({ child...
fix(ui-toolkit): don't pass input specific props to checkbox li
yldio_joyent-portal
train
js
2efae9779f3583604bb67b188cb88a1f815d89e7
diff --git a/anyconfig/backend/configobj.py b/anyconfig/backend/configobj.py index <HASH>..<HASH> 100644 --- a/anyconfig/backend/configobj.py +++ b/anyconfig/backend/configobj.py @@ -25,8 +25,8 @@ """ from __future__ import absolute_import -import configobj import inspect +import configobj import anyconfig.backen...
refactor: correct import order; inspect is in standard lib
ssato_python-anyconfig
train
py
b34206d584e4eb13ea159e1e89c47b3b7fbce8c5
diff --git a/src/services/olHelpers.js b/src/services/olHelpers.js index <HASH>..<HASH> 100644 --- a/src/services/olHelpers.js +++ b/src/services/olHelpers.js @@ -4,7 +4,7 @@ angular.module('openlayers-directive').factory('olHelpers', function($q, $log, $ return angular.isDefined(value); }; - var isD...
fix(tests): Fix broken protractor test
tombatossals_angular-openlayers-directive
train
js,js
28b2ab3ac40236ecec80e493e0ba1f5bdeb3d2f0
diff --git a/src/cryptojwt/jwt.py b/src/cryptojwt/jwt.py index <HASH>..<HASH> 100755 --- a/src/cryptojwt/jwt.py +++ b/src/cryptojwt/jwt.py @@ -88,7 +88,7 @@ class JWT: sign_alg="RS256", encrypt=False, enc_enc="A128CBC-HS256", - enc_alg="RSA1_5", + enc_alg="RSA-OAEP-256", ...
chore: removed RSA1_5 as default enc alg
openid_JWTConnect-Python-CryptoJWT
train
py