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
b780c822fd6b13c166075a56fe36482cb17cba9a
diff --git a/packages/vaex-core/vaex/test/dataset.py b/packages/vaex-core/vaex/test/dataset.py index <HASH>..<HASH> 100644 --- a/packages/vaex-core/vaex/test/dataset.py +++ b/packages/vaex-core/vaex/test/dataset.py @@ -21,12 +21,15 @@ basedir = os.path.dirname(__file__) @contextlib.contextmanager def small_buffer(d...
test: do not change buffer size for remote datasets (not supported)
vaexio_vaex
train
py
cc2e64afb487609fe0f864fc2c554903e0fcd9fb
diff --git a/ui/src/mixins/model-toggle.js b/ui/src/mixins/model-toggle.js index <HASH>..<HASH> 100644 --- a/ui/src/mixins/model-toggle.js +++ b/ui/src/mixins/model-toggle.js @@ -38,7 +38,18 @@ export default { } this.$emit('before-show', evt) - this.showing = true + + if (this.$q.platform.is....
fix(ie): Add a delay before setting showing because IE performs a refocus on body on click (#<I>) * fix(ie): Add a delay before setting showing because IE performs a refocus on body on click ref #<I> * Update model-toggle.js
quasarframework_quasar
train
js
0dca786e323ec3b703297206cf2964fa9ee3dae1
diff --git a/src/anyconfig/cli/_main.py b/src/anyconfig/cli/_main.py index <HASH>..<HASH> 100644 --- a/src/anyconfig/cli/_main.py +++ b/src/anyconfig/cli/_main.py @@ -137,6 +137,5 @@ def main(argv=None): try_validate(cnf, args) actions.try_output_result(cnf, args) - sys.exit(0) # vim:sw=4:ts=4:et:
fix: revert the commit <I>b0bf<I>bdb3c8a<I>f<I>f<I>b<I>c to avoid errors
ssato_python-anyconfig
train
py
7a89666f8bcdec161cce5f0b7834e719528f9290
diff --git a/lib/incarnatorHandler.js b/lib/incarnatorHandler.js index <HASH>..<HASH> 100644 --- a/lib/incarnatorHandler.js +++ b/lib/incarnatorHandler.js @@ -30,7 +30,7 @@ var IncarnatorHandler = function (opts) { cb(new HandlerError(errorCodes.ALREADY_INITIALIZED)); return; } - newIncarnator = n...
fix: new incarnator not defined in correct scope
afters_couch-incarnate
train
js
19bd7427ac53caecc6bb928dae5747c0691958a6
diff --git a/taskqueue/taskqueue.py b/taskqueue/taskqueue.py index <HASH>..<HASH> 100644 --- a/taskqueue/taskqueue.py +++ b/taskqueue/taskqueue.py @@ -75,10 +75,9 @@ class RegisteredTask(with_metaclass(Meta)): return self._id def __repr__(self): - string = self.__class__.__name__ + "(" ...
fix: python3 compatibility with python2 strings
seung-lab_python-task-queue
train
py
bc6acde20202e68b2e6509c33ac3080a01f1870c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ dev_require = [ "black==19.10b0", "coverage==4.5.4", "pytest-cov==2.8.1", - "hypothesis==4.42.0", + "hypothesis>=4.42.0,<5.0", "attrs>=19.2", ] docs_require = ["sphinx", "sphinx-autob...
chore(deps): Allow range of versions for hypothesis Hypothesis is being updated regularly, which makes it hard to keep track of. This pins hypothesis to the latest major version. This means I will no longer have to keep up with the updates.
malramsay64_experi
train
py
839eeaaebd03699b92dbf13139286170209757ee
diff --git a/lib/workers/branch/index.js b/lib/workers/branch/index.js index <HASH>..<HASH> 100644 --- a/lib/workers/branch/index.js +++ b/lib/workers/branch/index.js @@ -83,9 +83,10 @@ async function processBranch(branchConfig, packageFiles) { } return 'already-existed'; } + let branchPr; if...
fix: add pr existing check for lock file maintenance
renovatebot_renovate
train
js
65b3b524caeb07d32850a515143c243780948d5c
diff --git a/service.js b/service.js index <HASH>..<HASH> 100755 --- a/service.js +++ b/service.js @@ -39,6 +39,10 @@ class ServiceConsul extends service.Service { value: config.checkInterval || '10s' }); + Object.defineProperty(this, 'checkTimeout', { + value: config.checkTimeout || '5s' + }); + this.a...
fix: extend checkTimeout to 5s and make it configurable
Kronos-Integration_kronos-service-consul
train
js
b34e70a79e423798b19147f3c7821962133abff5
diff --git a/components/Button/components/GenericButton.js b/components/Button/components/GenericButton.js index <HASH>..<HASH> 100644 --- a/components/Button/components/GenericButton.js +++ b/components/Button/components/GenericButton.js @@ -17,7 +17,7 @@ type GenericProps = {| onClick?: MouseEvent => any, href?...
feat(Button): Allow type="button" attribute for buttons with no default behaviour This allows for buttons that won't submit a <form> element they happen to be in. MDN has more info: <URL>
cultureamp_cultureamp-style-guide
train
js
a00294f9f09f893f5c02c680ea514c661c95a376
diff --git a/packages/react/src/base-chart.js b/packages/react/src/base-chart.js index <HASH>..<HASH> 100644 --- a/packages/react/src/base-chart.js +++ b/packages/react/src/base-chart.js @@ -10,17 +10,23 @@ export default class BaseChart extends React.Component { // Width prop is mandatory for the wrappers if (pr...
fix(react): handle data updates from state, and fix errors with width/height prop
carbon-design-system_carbon-charts
train
js
523ea52a689261d327a835176e64914baf932c7a
diff --git a/karma.conf.js b/karma.conf.js index <HASH>..<HASH> 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -28,12 +28,16 @@ module.exports = function (config) { }, reporters: ['progress', 'coverage'], - + colors: true, + logLevel: config.LOG_INFO, autoWatch: true, ...
chore(tests): additional code coverage output
esvit_ng-table
train
js
b11441cd524075ff11e1bec4731c189d85ef7c12
diff --git a/src/components/dialog/dialog.js b/src/components/dialog/dialog.js index <HASH>..<HASH> 100644 --- a/src/components/dialog/dialog.js +++ b/src/components/dialog/dialog.js @@ -600,10 +600,10 @@ function MdDialogProvider($$interimElementProvider) { ' </md-dialog-content>', ' <md-dialog-act...
fix(dialog): add extra classes to identify buttons (#<I>) Adds classes to help identify the confirmation and close buttons in a dialog. This helps with writing tests that involve the dialog, because it doesn't depend on DOM order.
angular_material
train
js
12e71f9b67d8c6f218a14563c3325709b3c51131
diff --git a/www/nearit.js b/www/nearit.js index <HASH>..<HASH> 100644 --- a/www/nearit.js +++ b/www/nearit.js @@ -58,12 +58,15 @@ function NearIT() { /** * Wrapper method to attach an event listener specific for NearIT Events - * @param string eventType see NearIT.eventTYpe * @param {Function} eventCallback...
fix(js): safari compatible iterate over event types
nearit_Cordova-SDK
train
js
b691dce7ec0a0cfbee8d3ae4e978219125751ee1
diff --git a/src/Logging/Mocks/HasManyHandlers.php b/src/Logging/Mocks/HasManyHandlers.php index <HASH>..<HASH> 100644 --- a/src/Logging/Mocks/HasManyHandlers.php +++ b/src/Logging/Mocks/HasManyHandlers.php @@ -2,6 +2,9 @@ namespace Modulus\Hibernate\Logging\Mocks; +use Modulus\Hibernate\Logging\Driver; +use Modul...
feat: Get driver instance by driver name
modulusphp_hibernate
train
php
b95d1b82ec6beb4ac197bda4bca2e561ccbdc4e4
diff --git a/src/util/createInstantSearchComponent.js b/src/util/createInstantSearchComponent.js index <HASH>..<HASH> 100644 --- a/src/util/createInstantSearchComponent.js +++ b/src/util/createInstantSearchComponent.js @@ -51,16 +51,18 @@ export const createInstantSearchComponent = component => }); }, ...
chore(ais): condition around destroy if destroy happens before start (regular component, not ssr) it will throw, since helper is still null
algolia_vue-instantsearch
train
js
4edd172dae236c0ee1161909edefe3718b6825fe
diff --git a/lib/crabfarm/base_reducer.rb b/lib/crabfarm/base_reducer.rb index <HASH>..<HASH> 100644 --- a/lib/crabfarm/base_reducer.rb +++ b/lib/crabfarm/base_reducer.rb @@ -45,6 +45,10 @@ module Crabfarm field_hash end + def to_json(_options=nil) + field_hash.to_json _options + end + def...
feat(base_reducer): adds to_json method
platanus_crabfarm-gem
train
rb
9669aa522bd18e869c9a5133d8b8acedfc3d22c8
diff --git a/workflow/events/event_recorder_manager.go b/workflow/events/event_recorder_manager.go index <HASH>..<HASH> 100644 --- a/workflow/events/event_recorder_manager.go +++ b/workflow/events/event_recorder_manager.go @@ -11,6 +11,9 @@ import ( "k8s.io/client-go/tools/record" ) +// by default, allow a source ...
fix(controller): Increate default EventSpamBurst in Eventrecorder (#<I>)
argoproj_argo
train
go
4f2b9a4c283225e4a1e85eea3e95bc4cbc1349b5
diff --git a/tools/traceur-jasmine/index.js b/tools/traceur-jasmine/index.js index <HASH>..<HASH> 100644 --- a/tools/traceur-jasmine/index.js +++ b/tools/traceur-jasmine/index.js @@ -12,6 +12,9 @@ glob(process.argv[2], function (error, specFiles) { includeStackTrace: true, defaultTimeoutInterval: 1000, s...
chore: fail travis on failed ‘test.unit.cjs/ci’
angular_angular
train
js
16a36af6438b83fbf5ce32efb52abaa5d6d13878
diff --git a/packages/building-utils/find-supported-browsers.js b/packages/building-utils/find-supported-browsers.js index <HASH>..<HASH> 100644 --- a/packages/building-utils/find-supported-browsers.js +++ b/packages/building-utils/find-supported-browsers.js @@ -5,6 +5,9 @@ const openWcTargets = [ 'last 2 ChromeAndr...
fix(building-utils): keep edge <I> support for now (#<I>)
open-wc_open-wc
train
js
f16fc16e893ca13843300b1f1d94bac7991d1dd9
diff --git a/source/rafcon/core/execution/execution_engine.py b/source/rafcon/core/execution/execution_engine.py index <HASH>..<HASH> 100644 --- a/source/rafcon/core/execution/execution_engine.py +++ b/source/rafcon/core/execution/execution_engine.py @@ -475,7 +475,6 @@ class ExecutionEngine(Observable): imp...
fix(execution_engine): do not initialize LibraryManager a second time
DLR-RM_RAFCON
train
py
50e48a8ad7d9a92b161446d21576f052f9c6f53b
diff --git a/test/MultiCompiler.test.js b/test/MultiCompiler.test.js index <HASH>..<HASH> 100644 --- a/test/MultiCompiler.test.js +++ b/test/MultiCompiler.test.js @@ -33,10 +33,9 @@ describe("MultiCompiler", function () { compiler.run(err => { if (err) { throw err; - } else { - expect(called).toBe(2); ...
refactor: avoid redundant else block
webpack_webpack
train
js
01c4cf98b55110f2bf8f86de57c4f7419602d68e
diff --git a/src/components/Slider/Slider.js b/src/components/Slider/Slider.js index <HASH>..<HASH> 100644 --- a/src/components/Slider/Slider.js +++ b/src/components/Slider/Slider.js @@ -66,6 +66,15 @@ export default class Slider extends PureComponent { requestAnimationFrame(() => { this.setState((prevSta...
fix(slider): allow slider to use text input when min is something oth… (#<I>) * fix(slider): allow slider to use text input when min is something other than 0 * fix(slider): add extra check
carbon-design-system_carbon-components-react
train
js
7e0326e2dc4fb78befc8bdf20d3476bee82f1cc8
diff --git a/lib/normalize/index.js b/lib/normalize/index.js index <HASH>..<HASH> 100644 --- a/lib/normalize/index.js +++ b/lib/normalize/index.js @@ -77,7 +77,9 @@ function normalize (scenarioState, fixture) { fixture.headers = omitBy(fixture.headers, (value, key) => /^x-(now|zeit)-/.test(key)) // update conte...
fix(normalize): don’t set `Content-Length: 0` Header for empty response
octokit_fixtures
train
js
185fb4f43c0f77664430d7946f2a42a7c468b238
diff --git a/pkg/kube/client.go b/pkg/kube/client.go index <HASH>..<HASH> 100644 --- a/pkg/kube/client.go +++ b/pkg/kube/client.go @@ -520,7 +520,8 @@ func podsReady(pods []api.Pod) bool { func servicesReady(svc []api.Service) bool { for _, s := range svc { - if !api.IsServiceIPSet(&s) { + // Make sure the servi...
fix(tiller): Fixes problem with `--wait` on headless Services Headless services (with `clusterIP` set to `None`) were reporting as not being ready because they didn't have an IP address. This adds a logic check to ignore those services.
helm_helm
train
go
37b65d4659de74f85c3fbc2f14c4a00adf66762e
diff --git a/packages/vuelidate/src/core.js b/packages/vuelidate/src/core.js index <HASH>..<HASH> 100644 --- a/packages/vuelidate/src/core.js +++ b/packages/vuelidate/src/core.js @@ -440,13 +440,13 @@ export function setValidations ({ validations, state, key, parentKey, childResul * If we have no `key`, this is the...
fix(core): fix $model on state
vuelidate_vuelidate
train
js
d3183672890face0e2d38fbc45b1fd9f515d82d9
diff --git a/src/ButtonMobileStore/ButtonMobileStore.stories.js b/src/ButtonMobileStore/ButtonMobileStore.stories.js index <HASH>..<HASH> 100644 --- a/src/ButtonMobileStore/ButtonMobileStore.stories.js +++ b/src/ButtonMobileStore/ButtonMobileStore.stories.js @@ -17,8 +17,18 @@ storiesOf("ButtonMobileStore", module) ...
chore(ButtonMobileStore): adding alt to stories
kiwicom_orbit-components
train
js
61798c9c8574527b31e3791edd26e79738cef46d
diff --git a/routes/session.js b/routes/session.js index <HASH>..<HASH> 100644 --- a/routes/session.js +++ b/routes/session.js @@ -59,6 +59,12 @@ function sessionRoutes (server, options, next) { password: password, include: query.include }) + .catch(function (error) { + ...
fix: PUT /session to return <I> Unauthorized error when user cannot be found
hoodiehq_hoodie-account-server
train
js,js
7f596f84328fae6eae3307e1b4eab39d87fcf15e
diff --git a/src/bots/log.js b/src/bots/log.js index <HASH>..<HASH> 100644 --- a/src/bots/log.js +++ b/src/bots/log.js @@ -88,9 +88,9 @@ var config = function (casper, pid, level) { out += '\n'; args.forEach(function (message) { - if (typeof message === 'string') { + if (typeof...
fix(log): print even if not a string (integer for example)
damonjs_damon
train
js
56a204c02e391069eaac5887815d92bbed6dfb27
diff --git a/test/sounds.js b/test/sounds.js index <HASH>..<HASH> 100644 --- a/test/sounds.js +++ b/test/sounds.js @@ -108,7 +108,7 @@ test.serial('mixer - assignable cues - should list new sound Assets as they are 3. Check the list of options in the dropdown select for all assignable cues */ await e.browser.c...
refactor(test): make this test not so weird
nodecg_nodecg
train
js
f761fecf6214de235ff470aa6631fd500875a05a
diff --git a/src/module/restmod.js b/src/module/restmod.js index <HASH>..<HASH> 100644 --- a/src/module/restmod.js +++ b/src/module/restmod.js @@ -274,6 +274,9 @@ angular.module('plRestmod').provider('$restmod', function() { for(var i = 0; (tmp = defaults[i]); i++) { this[tmp[0]] = (typeof t...
feat(Model): adds the after-init hook. The `after-init` hook is called after the default values for the model instance are set. Closes #<I>
platanus_angular-restmod
train
js,js
7b2a9c039d1aa5f4d2d1f5d01d5e871a98cd1f29
diff --git a/system/Database/OCI8/Connection.php b/system/Database/OCI8/Connection.php index <HASH>..<HASH> 100644 --- a/system/Database/OCI8/Connection.php +++ b/system/Database/OCI8/Connection.php @@ -384,7 +384,7 @@ class Connection extends BaseConnection implements ConnectionInterface WHERE ac.constraint_type = ...
style: Changed to start conditions from literals.
codeigniter4_CodeIgniter4
train
php
53e2501cc9887f8c61feb0fe74b4ab75e53c5a0c
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -126,11 +126,11 @@ module.exports = (api, options) => { builder .build({ + ...builderArgs, config: { ...defaultBuildConfig, ...userBuildConfig - ...
fix(build): electron-builder config not being used
nklayman_vue-cli-plugin-electron-builder
train
js
0879aad21966aa044258fc52ba88ff0eff2ac03a
diff --git a/packages/button/src/react/index.js b/packages/button/src/react/index.js index <HASH>..<HASH> 100644 --- a/packages/button/src/react/index.js +++ b/packages/button/src/react/index.js @@ -82,7 +82,7 @@ const getButtonStyles = props => props.css ) -const styleIconAlignIconContainer = ({ iconAlign })...
fix(button): text then loading, truly centers loading spinner
pluralsight_design-system
train
js
018dd5bb66bf050a6f401f2d8b70d51f3647382d
diff --git a/packages/components/bolt-ratio/src/ratio.js b/packages/components/bolt-ratio/src/ratio.js index <HASH>..<HASH> 100644 --- a/packages/components/bolt-ratio/src/ratio.js +++ b/packages/components/bolt-ratio/src/ratio.js @@ -6,6 +6,8 @@ import styles from './ratio.scss'; @define class BoltRatio extends wi...
fix: add static "is" for registering the component
bolt-design-system_bolt
train
js
5b6e8270808347eeceeb5d9b501f2d19d21bca40
diff --git a/src/picker/index.js b/src/picker/index.js index <HASH>..<HASH> 100644 --- a/src/picker/index.js +++ b/src/picker/index.js @@ -67,7 +67,7 @@ export default createComponent({ while (cursor && cursor.children) { const { children } = cursor; - let defaultIndex = cursor.defaultIndex ?? ...
fix(Picker): merge issues
youzan_vant
train
js
38b3aeca549f96cf750e3ecaf43269d36a64c731
diff --git a/react/Footer/Footer.js b/react/Footer/Footer.js index <HASH>..<HASH> 100644 --- a/react/Footer/Footer.js +++ b/react/Footer/Footer.js @@ -43,7 +43,7 @@ export default class Footer extends Component { } shouldComponentUpdate(nextProps) { - return this.props.locale !== nextProps.locale; + retur...
fix(Footer): Get Footer to rerender on change of authenticationStatus (#<I>)
seek-oss_seek-style-guide
train
js
49b663e4f63ac065d43b78c4657d60445f64f2f1
diff --git a/src/validations/base.js b/src/validations/base.js index <HASH>..<HASH> 100644 --- a/src/validations/base.js +++ b/src/validations/base.js @@ -57,17 +57,21 @@ export default class BaseValidation { } } - updateFlags (el, type) { + willUpdateTouched (el, type) { if (type && type === 'blur') {...
refactor(base): split flag updating
kazupon_vue-validator
train
js
946f395f9193669f9fbae0324f9a47af25dbf6d0
diff --git a/views/js/controller/creator/views/test.js b/views/js/controller/creator/views/test.js index <HASH>..<HASH> 100644 --- a/views/js/controller/creator/views/test.js +++ b/views/js/controller/creator/views/test.js @@ -162,7 +162,8 @@ function($, _, __, hider, feedback, defaults, actions, testPartView, template...
fix: add mandatory visible true to first section of new test part
oat-sa_extension-tao-testqti
train
js
fd0c330fa1efd379388f65a2e198590d44f15590
diff --git a/web/app.php b/web/app.php index <HASH>..<HASH> 100644 --- a/web/app.php +++ b/web/app.php @@ -17,12 +17,12 @@ $loader = new ApcClassLoader('sf2', $loader); $loader->register(true); */ -Debug::enable(null, true, 'prod'); +Debug::enable('prod'); require_once __DIR__.'/../app/AppKernel.php'; //require...
fix: debug true in app.php
keboola_syrup
train
php
ce9ed27f160966c6ae7f31692784b3f7bff95755
diff --git a/rpm/rpm.go b/rpm/rpm.go index <HASH>..<HASH> 100644 --- a/rpm/rpm.go +++ b/rpm/rpm.go @@ -54,6 +54,7 @@ func (*RPM) Package(info nfpm.Info, w io.Writer) error { if err != nil { return err } + defer os.RemoveAll(temps.Root) if err = createTarGz(info, temps.Folder, temps.Source); err != nil { ret...
chore: Cleanup temp files in RPM.Package() (#<I>) RPM.Package() populates a temp directory with files to do its work. It should cleanup after itself.
goreleaser_nfpm
train
go
400bc7a4762dae9456b1d0b3fe03835f6045b2e8
diff --git a/packages/react/src/components/UIShell/SideNavMenu.js b/packages/react/src/components/UIShell/SideNavMenu.js index <HASH>..<HASH> 100644 --- a/packages/react/src/components/UIShell/SideNavMenu.js +++ b/packages/react/src/components/UIShell/SideNavMenu.js @@ -76,9 +76,21 @@ export class SideNavMenu extends R...
feat(side-nav): add isActive styles based on child props (#<I>)
carbon-design-system_carbon-components
train
js
77f4489f2d59604320221156d8dde8579d44bea2
diff --git a/packages/@vue/cli/lib/util/readFiles.js b/packages/@vue/cli/lib/util/readFiles.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli/lib/util/readFiles.js +++ b/packages/@vue/cli/lib/util/readFiles.js @@ -10,7 +10,7 @@ module.exports = async function readFiles (context) { cwd: context, onlyFiles...
fix: ignore `.svn/**` when reading and writing files (#<I>) Fixes #<I>
vuejs_vue-cli
train
js
dc1d7d772fa724e875d9ef4361af2b8b57186bde
diff --git a/test/cluster/cluster.go b/test/cluster/cluster.go index <HASH>..<HASH> 100644 --- a/test/cluster/cluster.go +++ b/test/cluster/cluster.go @@ -524,7 +524,7 @@ func (c *Cluster) DumpLogs(w io.Writer) { } var out bytes.Buffer - if err := c.Run("flynn-host ps -a -q", &Streams{Stdout: &out}); err != nil {...
test: Output stderr of `flynn-host ps` when dumping logs The command sometimes hangs in CI, so we want to be able to see the output when sending SIGQUIT.
flynn_flynn
train
go
99151d37944e361b0f60b5a0f9a1cf4dc17e4238
diff --git a/__tests__/dist.test.js b/__tests__/dist.test.js index <HASH>..<HASH> 100644 --- a/__tests__/dist.test.js +++ b/__tests__/dist.test.js @@ -1,7 +1,6 @@ /** * These are just some sanity tests to ensure that our TS build process works as expected. */ -// eslint-disable-next-line import/no-unresolved cons...
chore: removing an unneeded eslint exclusion
readmeio_oas
train
js
d1537f301ae0f0fd8b740faf11f94eaf8f92d5f4
diff --git a/packages/cli-plugin-deploy-pulumi/destroy/index.js b/packages/cli-plugin-deploy-pulumi/destroy/index.js index <HASH>..<HASH> 100644 --- a/packages/cli-plugin-deploy-pulumi/destroy/index.js +++ b/packages/cli-plugin-deploy-pulumi/destroy/index.js @@ -17,7 +17,7 @@ module.exports = { }); ...
fix: rename `remove` to `destroy`
Webiny_webiny-js
train
js
8fcde1b0a589f88dca4c0c4f20fcd2c64862860a
diff --git a/packages/xod-project/src/project.js b/packages/xod-project/src/project.js index <HASH>..<HASH> 100644 --- a/packages/xod-project/src/project.js +++ b/packages/xod-project/src/project.js @@ -115,7 +115,7 @@ export const archiveProject = () => {}; * @returns {Either<Error|Project>} validation result */...
chore(xod-project): replace validateProject noop function with function that always return Either.Right with passed argument
xodio_xod
train
js
d5c0d40997fb08470c56b53f8d61d3adfdd77054
diff --git a/controller/api/models.py b/controller/api/models.py index <HASH>..<HASH> 100644 --- a/controller/api/models.py +++ b/controller/api/models.py @@ -298,7 +298,7 @@ class Container(UuidAuditedModel): if c_type == 'cmd': return '' else: - return 'start ...
fix(controller): format command before creating container The self._command_announceable() check was called inline with code that formatted the container's command, so no announcer would be created since the command showed up as "start {c_type}" literally. The _command property is only referenced in this code.
deis_deis
train
py
1d9296dd658ae741337302eefde237d402ee35bd
diff --git a/packages/pob-babel/lib/createRollupConfig.js b/packages/pob-babel/lib/createRollupConfig.js index <HASH>..<HASH> 100644 --- a/packages/pob-babel/lib/createRollupConfig.js +++ b/packages/pob-babel/lib/createRollupConfig.js @@ -178,7 +178,7 @@ export default function createRollupConfig({ replace({ ...
fix: replace __DEV__ with () for negation
christophehurpeau_pob-lerna
train
js
eb6140663c35cd0088279c6f0f86bc1d4b11561b
diff --git a/deb/deb.go b/deb/deb.go index <HASH>..<HASH> 100644 --- a/deb/deb.go +++ b/deb/deb.go @@ -257,12 +257,24 @@ Architecture: {{.Info.Arch}} Maintainer: {{.Info.Maintainer}} Vendor: {{.Info.Vendor}} Installed-Size: {{.InstalledSize}} -Replaces: {{join .Info.Replaces}} -Provides: {{join .Info.Provides}} -Dep...
fix: fixed empty lists on deb closes #<I>
goreleaser_nfpm
train
go
8e1eb831c0ad5353f214d4c6760ef0d774b458e6
diff --git a/lib/https/index.js b/lib/https/index.js index <HASH>..<HASH> 100644 --- a/lib/https/index.js +++ b/lib/https/index.js @@ -102,8 +102,18 @@ function handleWebsocket(socket, clientIp, clientPort, callback, wss) { }); rawData.unshift(statusMsg); rawData.push('', body); - socket.write...
feat: The websocket supports the reqDelay&resDelay rule
avwo_whistle
train
js
125a544e157a317349346ee29db812cb08e6af1c
diff --git a/src/Transactions/Transaction.php b/src/Transactions/Transaction.php index <HASH>..<HASH> 100644 --- a/src/Transactions/Transaction.php +++ b/src/Transactions/Transaction.php @@ -274,6 +274,10 @@ class Transaction 'vendorField' => $this->vendorField ?? null, 'version' =...
fix: remove empty assets from array representation
ArkEcosystem_php-crypto
train
php
b29b698c9fde34464f05a3b40892760d1e85e25a
diff --git a/manifest.php b/manifest.php index <HASH>..<HASH> 100755 --- a/manifest.php +++ b/manifest.php @@ -32,7 +32,6 @@ return [ 'label' => 'Generis Core', 'description' => 'Core extension, provide the low level framework and an API to manage ontologies', 'license' => 'GPL-2.0', - 'version' => '1...
chore: reomve version from manifest
oat-sa_generis
train
php
591700d72fe2b8c08e799bd7a764a3d867ff400a
diff --git a/yaka/services/audit.py b/yaka/services/audit.py index <HASH>..<HASH> 100644 --- a/yaka/services/audit.py +++ b/yaka/services/audit.py @@ -220,4 +220,6 @@ class AuditService(object): session.add(entry) def entries_for(self, entity): - return AuditEntry.query.filter(AuditEntry.entity_id == entit...
fix: return audit entry only for this entity
abilian_abilian-core
train
py
ffd28d82ea69ac228d714ddce52a28699c1d8295
diff --git a/lib/components/form/date-time-modal.js b/lib/components/form/date-time-modal.js index <HASH>..<HASH> 100644 --- a/lib/components/form/date-time-modal.js +++ b/lib/components/form/date-time-modal.js @@ -11,6 +11,10 @@ import { setQueryParam } from '../../actions/form' // Styles for the DateTimeSelector. ...
fix(date-time-modal): Merge from git stash
opentripplanner_otp-react-redux
train
js
80656f5cc542a90f075293e164b282a78d9cd801
diff --git a/lib/api-client/resources/process-definition.js b/lib/api-client/resources/process-definition.js index <HASH>..<HASH> 100644 --- a/lib/api-client/resources/process-definition.js +++ b/lib/api-client/resources/process-definition.js @@ -214,6 +214,7 @@ var ProcessDefinition = AbstractClientResource.extend( ...
feat(api-client): add tenantId support for submitForm method
camunda_camunda-bpm-sdk-js
train
js
1bc75a02f1985b89fc7a3adcdba9f8ee60fd2112
diff --git a/ui/src/components/time/QTime.js b/ui/src/components/time/QTime.js index <HASH>..<HASH> 100644 --- a/ui/src/components/time/QTime.js +++ b/ui/src/components/time/QTime.js @@ -659,21 +659,22 @@ export default createComponent({ function setHour (hour) { if (innerModel.value.hour !== hour) { ...
feat(QTime): do not reset min/sec when setting hour and sec when setting minute #<I>
quasarframework_quasar
train
js
4c9f4639c403cba38e74db604c01073d95c55eb1
diff --git a/packages/components/bolt-image/src/image.js b/packages/components/bolt-image/src/image.js index <HASH>..<HASH> 100644 --- a/packages/components/bolt-image/src/image.js +++ b/packages/components/bolt-image/src/image.js @@ -175,7 +175,9 @@ class BoltImage extends withLitHtml() { )}" ...
fix: only add the `data-sizes` prop to the image component when lazyloading
bolt-design-system_bolt
train
js
330d9e75e97636fc0342238095d1bc254c03f6b8
diff --git a/src/files-mfs/ls-readable-stream.js b/src/files-mfs/ls-readable-stream.js index <HASH>..<HASH> 100644 --- a/src/files-mfs/ls-readable-stream.js +++ b/src/files-mfs/ls-readable-stream.js @@ -36,10 +36,7 @@ module.exports = (send) => { send({ path: 'files/ls', args: args, - qs: { - ...
refactor: use Object.assign instead of spread operator (#<I>)
ipfs_js-ipfs
train
js
ebd827bc55e71a523bee94ce7bd1d6e0b2ea8cfb
diff --git a/src/lib/core/engine.js b/src/lib/core/engine.js index <HASH>..<HASH> 100644 --- a/src/lib/core/engine.js +++ b/src/lib/core/engine.js @@ -220,7 +220,6 @@ class Engine { let self = this; this.setupCompilerAndContractsManagerService(options); - this.registerModule('compiler', {plugins: self.pl...
fix(compiler): fix compiler being fired twice
embark-framework_embark
train
js,js
44b7f056c4f478aa4cda6aa8b397826b072aec24
diff --git a/mapillary_tools/edit_config.py b/mapillary_tools/edit_config.py index <HASH>..<HASH> 100644 --- a/mapillary_tools/edit_config.py +++ b/mapillary_tools/edit_config.py @@ -17,7 +17,7 @@ def edit_config(config_file=None, user_name=None, user_email=None, user_password config.create_config(config_file_...
fix: fixed bug where username was not saved when authenticating manually
mapillary_mapillary_tools
train
py
2f2042b3ef0505397ba76517994f684e52ae51fa
diff --git a/lib/logger.js b/lib/logger.js index <HASH>..<HASH> 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -128,6 +128,14 @@ const logger = (client, clientLogLevel) => { client.on("unlock:error", ({ id }, e) => { log("error", error(`couldn't unlock task ${id}, ${e}`)); }); + + client.on("lock:success...
fix(task-lock): add logging for manual locking related to CAM-<I>, closes #<I>
camunda_camunda-external-task-client-js
train
js
fc8f1b11361c2aff3e42cc2d2e39b07c505aa3d9
diff --git a/thefuck/rules/pacman.py b/thefuck/rules/pacman.py index <HASH>..<HASH> 100644 --- a/thefuck/rules/pacman.py +++ b/thefuck/rules/pacman.py @@ -17,7 +17,7 @@ def __get_pkgfile(command): try: return subprocess.check_output( ['pkgfile', '-b', '-v', command.script.split(" ")[0]], - ...
fix(pacman): make the entire rule py2-compatible One reference to subprocess.DEVNULL remained.
nvbn_thefuck
train
py
d86238f0716933f38138d67a02afae8654971b7d
diff --git a/src/badge/index.js b/src/badge/index.js index <HASH>..<HASH> 100644 --- a/src/badge/index.js +++ b/src/badge/index.js @@ -8,14 +8,14 @@ export default createComponent({ badge: [Number, String], }, - render() { - const { dot, badge } = this; - const showBadge = isDef(badge) && badge !== '';...
refactor(Badge): use setup
youzan_vant
train
js
da7b1e82bae3c44f0ee51d655f0677ccccb96e9b
diff --git a/lib/manager.js b/lib/manager.js index <HASH>..<HASH> 100755 --- a/lib/manager.js +++ b/lib/manager.js @@ -93,7 +93,7 @@ exports.manager = function (manager, options) { } resolve(manager); - }); + }).catch(reject); }); }); };
feat: reject cascaded Promise failure during initialization
Kronos-Integration_kronos-service-consul
train
js
24259ac5b90fc293e71bcb57090c610dabfd96f9
diff --git a/nyamuk/event.py b/nyamuk/event.py index <HASH>..<HASH> 100644 --- a/nyamuk/event.py +++ b/nyamuk/event.py @@ -64,4 +64,9 @@ class EventNeterr(BaseEvent): def __init__(self, errnum, msg): BaseEvent.__init__(self, EV_NET_ERR) self.errnum = errnum - self.msg = msg \ No newline at...
feat: stack in EventPingResp event on receiving PINGRESP message
iwanbk_nyamuk
train
py,py
afd943e4597aedfe650f3348d681695f72327b7a
diff --git a/packages/okam-build/lib/processor/js/transform/visitor.js b/packages/okam-build/lib/processor/js/transform/visitor.js index <HASH>..<HASH> 100644 --- a/packages/okam-build/lib/processor/js/transform/visitor.js +++ b/packages/okam-build/lib/processor/js/transform/visitor.js @@ -40,6 +40,9 @@ function getCod...
fix(okam-build): fix config property existed in nested object leading to the config info missing #<I>
ecomfe_okam
train
js
f554c29b470320791e7ff8e40b335632945e738a
diff --git a/src/fixMappings.js b/src/fixMappings.js index <HASH>..<HASH> 100644 --- a/src/fixMappings.js +++ b/src/fixMappings.js @@ -3,6 +3,10 @@ import { encode, decode } from 'sourcemap-codec'; function fixMappings( mappings ) { + if ( typeof mappings !== 'string' ) { + return ''; + } + mappings = decode( ma...
fix(fixMappings): add support for invalid mappings format
Comandeer_rollup-plugin-babel-minify
train
js,js
a0d59baa54f583b627da109e4ecfa86e5a43ea6f
diff --git a/packages/pagination/src/__test__/PaginationContent.test.js b/packages/pagination/src/__test__/PaginationContent.test.js index <HASH>..<HASH> 100644 --- a/packages/pagination/src/__test__/PaginationContent.test.js +++ b/packages/pagination/src/__test__/PaginationContent.test.js @@ -133,9 +133,11 @@ describe...
fix(pagination): add waitFor to test to wait for loading to finish
Availity_availity-react
train
js
c7cee50b0d3bcbcd0b16ddec52669b4a95b73b77
diff --git a/library/HelloSign/Template.php b/library/HelloSign/Template.php index <HASH>..<HASH> 100644 --- a/library/HelloSign/Template.php +++ b/library/HelloSign/Template.php @@ -381,8 +381,10 @@ class Template extends AbstractResource unset($params[$key]); } } - - $par...
fix: only send merge_fields param when merge fields are actually called for.
hellosign_hellosign-php-sdk
train
php
db9c3714871302ff6a84b599f3f1783f9deb072e
diff --git a/packages/DecorativeIcon/index.es.js b/packages/DecorativeIcon/index.es.js index <HASH>..<HASH> 100644 --- a/packages/DecorativeIcon/index.es.js +++ b/packages/DecorativeIcon/index.es.js @@ -1,5 +1,4 @@ import './dist/index.css' -import DecorativeIcon from './dist/index.es' -export default DecorativeIcon...
chore(core-decorative-icon): adjust ecmascript index to import from dist
telus_tds-core
train
js
c54ee76fdeeda962d0cf932a4d7f8e02f35b8601
diff --git a/lib/transitive.js b/lib/transitive.js index <HASH>..<HASH> 100644 --- a/lib/transitive.js +++ b/lib/transitive.js @@ -56,7 +56,10 @@ export default class Transitive { this.styler = new Styler(options.styles, this) if (options.initialBounds) { - this.display.fitToWorldBounds(options.initial...
fix(api): Fix bug with coordinate conversion when initialBounds option is provided
conveyal_transitive.js
train
js
71ea2b1e45423b9ee99958a96f61cb2672fc64b3
diff --git a/src/parallaximage/ParallaxImage.js b/src/parallaximage/ParallaxImage.js index <HASH>..<HASH> 100644 --- a/src/parallaximage/ParallaxImage.js +++ b/src/parallaximage/ParallaxImage.js @@ -24,7 +24,11 @@ export default class ParallaxImage extends Component { fadeDuration: PropTypes.number, p...
feat(ParallaxImage): Add AnimatedImageComponent prop to ParallaxImage component
archriss_react-native-snap-carousel
train
js
60bedd31ef971733e62e2c52b29f8a63e96c8707
diff --git a/packages/__docs__/buildScripts/utils/parseDoc.js b/packages/__docs__/buildScripts/utils/parseDoc.js index <HASH>..<HASH> 100644 --- a/packages/__docs__/buildScripts/utils/parseDoc.js +++ b/packages/__docs__/buildScripts/utils/parseDoc.js @@ -41,7 +41,6 @@ module.exports = function (resourcePath, source, er...
refactor: remove accidentally added comment
instructure_instructure-ui
train
js
0a1d9ea77872c23fb98047e4555f155292121386
diff --git a/test/reducers/editorSpec.js b/test/reducers/editorSpec.js index <HASH>..<HASH> 100644 --- a/test/reducers/editorSpec.js +++ b/test/reducers/editorSpec.js @@ -60,7 +60,6 @@ describe('Editor reducer', () => { it('should select node', () => { const id = 0; const expectedActions = [ - ...
fix(tests): fix broken tests, that expect that deselectAll will be dispatched everytime
xodio_xod
train
js
5cda0274e0d8646073c600ca71b96a00d7158108
diff --git a/packages/components/bolt-tabs/src/tabs.js b/packages/components/bolt-tabs/src/tabs.js index <HASH>..<HASH> 100644 --- a/packages/components/bolt-tabs/src/tabs.js +++ b/packages/components/bolt-tabs/src/tabs.js @@ -325,6 +325,8 @@ class BoltTabs extends withContext(withLitHtml()) { aria-haspopu...
feat: add keyup handler to show more button
bolt-design-system_bolt
train
js
a983a97cc7a2dd39ea50f043c6af16fda509bc2e
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -1,10 +1,12 @@ /* @flow */ -export type { - Parcel, - Member, - Name, - Repository, - Bugs, -} from './types'; -export { default as parseParcel } from './parseParcel'; +import type { Parcel, Member, Nam...
refactor: Use imports in package index
njakob_parcel
train
js
cc3dd21be835093b92b622a6667e518d29852aec
diff --git a/library/src/main/java/com/liulishuo/filedownloader/util/FileDownloadProperties.java b/library/src/main/java/com/liulishuo/filedownloader/util/FileDownloadProperties.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/liulishuo/filedownloader/util/FileDownloadProperties.java +++ b/library/src/m...
chore: fix style check issue on filedownloader-properties
lingochamp_FileDownloader
train
java
ae296429e85bb3279d58b13243b37d4cb9f1c892
diff --git a/packages/ui-test-utils/src/utils/sandbox.js b/packages/ui-test-utils/src/utils/sandbox.js index <HASH>..<HASH> 100644 --- a/packages/ui-test-utils/src/utils/sandbox.js +++ b/packages/ui-test-utils/src/utils/sandbox.js @@ -48,6 +48,8 @@ class Sandbox { try { initConsole() + fetchMock.conf...
fix(ui-test-utils): prevent fetchMock errors Test plan: yarn test should pass with no console errors about fetchMock Change-Id: Ibc<I>f8c2efb2afa9f<I>b7ac0d<I>b<I>e<I>d1e<I>c Reviewed-on: <URL>
instructure_instructure-ui
train
js
ad349704d83a366e9bf4aee14c05e07380dc2664
diff --git a/components/base/themeClassMixin.js b/components/base/themeClassMixin.js index <HASH>..<HASH> 100644 --- a/components/base/themeClassMixin.js +++ b/components/base/themeClassMixin.js @@ -1,17 +1,9 @@ const themeProps = [ 'primary', - 'primary-light', - 'primary-dark', 'secondary', - 'secondary-lig...
feat(theme): Synchronise with mdc-web <I> (remove tonal variants) BREAKING CHANGES: Don't use tone variants e.g. secondary-light anymore.
matsp_material-components-vue
train
js
d1ae97f1738b430a3b2182ac6e3fac07c977ced6
diff --git a/lib/fromPgn.js b/lib/fromPgn.js index <HASH>..<HASH> 100644 --- a/lib/fromPgn.js +++ b/lib/fromPgn.js @@ -288,7 +288,7 @@ class Parser extends EventEmitter { } else { mainFields.forEach((key, index) => { var val = split[index] - pgn[key] = key === 'timestamp' ? val : Num...
fix: timestamps from actisense log files not formatted properly (#<I>) The timestamps are missing the 'Z'
canboat_canboatjs
train
js
ffe52a92f79f90b54aa0ddfd7721b7a8c842a3e4
diff --git a/packages/xod-js/test/transpiler.spec.js b/packages/xod-js/test/transpiler.spec.js index <HASH>..<HASH> 100644 --- a/packages/xod-js/test/transpiler.spec.js +++ b/packages/xod-js/test/transpiler.spec.js @@ -1,4 +1,3 @@ -import fs from 'fs'; import R from 'ramda'; import chai, { expect, assert } from 'chai...
fix(xod-js): remove accidentlly commited import of fs in the tests
xodio_xod
train
js
5b07527d0639c654706f2fbbfa46aff6634a570d
diff --git a/packages/query-normalizr/src/lib/normalize.js b/packages/query-normalizr/src/lib/normalize.js index <HASH>..<HASH> 100644 --- a/packages/query-normalizr/src/lib/normalize.js +++ b/packages/query-normalizr/src/lib/normalize.js @@ -70,9 +70,7 @@ export default function normalize(fromUrl) { }, {}); if...
fix: remove id to _id
36node_sketch
train
js
e813dfe5689c450945df41d8c1973d9d58b8b0ff
diff --git a/lib/appium_lib/driver.rb b/lib/appium_lib/driver.rb index <HASH>..<HASH> 100644 --- a/lib/appium_lib/driver.rb +++ b/lib/appium_lib/driver.rb @@ -217,6 +217,8 @@ module Appium when :windows # no windows specific extentions Appium::Logger.debug('windows') + else + Appium...
refactor: put warn if no device matched (#<I>)
appium_ruby_lib
train
rb
b548e56f3801a2e6650c69b01eff930adf321763
diff --git a/src/providers/formlyConfig.js b/src/providers/formlyConfig.js index <HASH>..<HASH> 100644 --- a/src/providers/formlyConfig.js +++ b/src/providers/formlyConfig.js @@ -28,8 +28,7 @@ function formlyConfig(formlyUsabilityProvider, formlyErrorAndWarningsUrlPrefix, ngModelAttrsManipulatorPreferUnbound: f...
fix(formlyConfig): Removes explicitAsync from formlyConfig. This property is no longer being used. It was deprecated in SHA:4f9d<I>abfab9f<I>b3af3ec<I>e6bd<I>c2 closes #<I>
formly-js_angular-formly
train
js
9a807eab86f290bef897400910f2e778325c6e24
diff --git a/gulp-tasks/build-sprite.js b/gulp-tasks/build-sprite.js index <HASH>..<HASH> 100644 --- a/gulp-tasks/build-sprite.js +++ b/gulp-tasks/build-sprite.js @@ -13,7 +13,7 @@ if (gutil.env.legacy === true) { const config = { shape: { id: { - generator: "icon--%s" + generator: legacy ? "%s" : "i...
fix(build-sprite): icon-- prefix only on current icons (#<I>) * fix(build-sprite): icon-- prefix only on current icons * fix(formatJS.js): fix name and tag index
carbon-design-system_carbon-icons
train
js,js
4a9471e54362878e90192fbf1fca19c288d0d2d8
diff --git a/packages/components/bolt-icons/build-icons.js b/packages/components/bolt-icons/build-icons.js index <HASH>..<HASH> 100644 --- a/packages/components/bolt-icons/build-icons.js +++ b/packages/components/bolt-icons/build-icons.js @@ -226,6 +226,7 @@ async function transpileIcons(icons) { singleQuote: ...
fix: Update icons prettier config to that it would be like the main config
bolt-design-system_bolt
train
js
f0dcd983496621f1c3f17aa717216bb9be099f47
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -15,7 +15,7 @@ function serverRouter (opts, routes) { } const dft = opts.default || '/404' - const shouldThunk = opts.thunk || true + const shouldThunk = (opts.thunk || opts.thunk === undefined) || false assert....
fix(router): set undefined correctly
yoshuawuyts_server-router
train
js
14fbc6c4c6f8e763f7c7caf92a1f99a376cc2f6e
diff --git a/test/test_polysquare_lint.py b/test/test_polysquare_lint.py index <HASH>..<HASH> 100644 --- a/test/test_polysquare_lint.py +++ b/test/test_polysquare_lint.py @@ -155,7 +155,7 @@ class TestPolysquareLintCommand(TestCase): VULTURE_BUGS = [param("unused-function", "def my_method():\n pass\n")] ...
test: Don't run vulture tests for now Not until #<I> is fixed
polysquare_polysquare-setuptools-lint
train
py
b8292ef509031ca46b863a0cc6d9c30981733844
diff --git a/src/Writer.php b/src/Writer.php index <HASH>..<HASH> 100644 --- a/src/Writer.php +++ b/src/Writer.php @@ -45,14 +45,35 @@ class Writer * @param string $text * @param bool $eol * - * @return void + * @return self */ - public function write(string $text, bool $eol = false...
feat: writer now supports magic calls and eol()
adhocore_php-cli
train
php
dd7d4d01080c8b0a66339b20f60117e33f58cedc
diff --git a/packages/ui-core/src/components/Tooltip/index.js b/packages/ui-core/src/components/Tooltip/index.js index <HASH>..<HASH> 100644 --- a/packages/ui-core/src/components/Tooltip/index.js +++ b/packages/ui-core/src/components/Tooltip/index.js @@ -101,8 +101,17 @@ export default class Tooltip extends Component {...
fix(Tooltip): Move focus on single tab press with tooltip Fixes INSTUI-<I> Test plan: - Navigate to tooltip example - You should now be able to move focus with a single tab press if you tab through the examples Change-Id: Iab<I>c<I>c<I>c4bb2c<I>cd6fcd5b<I>b9f<I>fa<I> Reviewed-on: <URL>
instructure_instructure-ui
train
js
9f9acd0728b7154b1f704bd0c2210cc53f808bb5
diff --git a/models/classes/mvc/error/HtmlResponse.php b/models/classes/mvc/error/HtmlResponse.php index <HASH>..<HASH> 100644 --- a/models/classes/mvc/error/HtmlResponse.php +++ b/models/classes/mvc/error/HtmlResponse.php @@ -42,6 +42,17 @@ class HtmlResponse extends ResponseAbstract $returnUrl = (parse_url($...
fix: fallback to `user_error` template in case of an unknown http status code
oat-sa_tao-core
train
php
4098467d7e588aae7322eac1519458df1524b880
diff --git a/test/validators.js b/test/validators.js index <HASH>..<HASH> 100644 --- a/test/validators.js +++ b/test/validators.js @@ -4931,6 +4931,34 @@ describe('Validators', () => { }); }); + it('should validate luhn numbers', () => { + test({ + validator: 'isLuhnValid', + valid: [ + '...
test: add tests specifically for isLuhnValid
chriso_validator.js
train
js
67c4c0116ecdb842095872b48558550969e516c8
diff --git a/superset/db_engine_specs/base.py b/superset/db_engine_specs/base.py index <HASH>..<HASH> 100644 --- a/superset/db_engine_specs/base.py +++ b/superset/db_engine_specs/base.py @@ -1410,7 +1410,8 @@ class BasicParametersMixin: parameters: BasicParametersType, encryted_extra: Optional[Dict[st...
fix: remove encryption from db params (#<I>) * remove encryption from db params * Update superset/db_engine_specs/base.py
apache_incubator-superset
train
py
d16114fac898f2d3b4fcc97828a4f23be568aa05
diff --git a/src/Leevel/View/Parser.php b/src/Leevel/View/Parser.php index <HASH>..<HASH> 100644 --- a/src/Leevel/View/Parser.php +++ b/src/Leevel/View/Parser.php @@ -866,8 +866,8 @@ class Parser $end = $start + strlen($find) - 1; // 起止行数 - $startLine = $start <= 0 ? 0 : substr_count($content...
refactor(view): use PHP_EOL to replace \n
hunzhiwange_framework
train
php
fb2ffe29720f1b81648c6019dbcfcdd3dc08acb8
diff --git a/lib/components/user/trip-notifications-pane.js b/lib/components/user/trip-notifications-pane.js index <HASH>..<HASH> 100644 --- a/lib/components/user/trip-notifications-pane.js +++ b/lib/components/user/trip-notifications-pane.js @@ -84,7 +84,6 @@ class TripNotificationsPane extends Component { ...
fix(TripNotificationsPane): Fix uncontrolled component warning.
opentripplanner_otp-react-redux
train
js
8288a43b3b9b23e91d386d0b30d077aa32f9813e
diff --git a/services/datalad/datalad_service/tasks/publish.py b/services/datalad/datalad_service/tasks/publish.py index <HASH>..<HASH> 100644 --- a/services/datalad/datalad_service/tasks/publish.py +++ b/services/datalad/datalad_service/tasks/publish.py @@ -97,7 +97,7 @@ def get_dataset_realm(dataset_path, realm=None)...
fix: Correct inconsistent arguments for should_publish calls
OpenNeuroOrg_openneuro
train
py
10661d56a3306a4d084c7a70a113f4c68d3ea23b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -97,6 +97,7 @@ function DragTabs($el, options) { this.container = $el; this._bindEvents($el); + this.update(); }
fix(drag-tabs): fire update initially
bpmn-io_drag-tabs
train
js
5da98e5977b347f7724c86b44ac69cee9e1cb1eb
diff --git a/src/views/default/columnfilter/select.blade.php b/src/views/default/columnfilter/select.blade.php index <HASH>..<HASH> 100644 --- a/src/views/default/columnfilter/select.blade.php +++ b/src/views/default/columnfilter/select.blade.php @@ -1,6 +1,6 @@ <select class="form-control column-filter" data-type="se...
fix: v3 select filters with options
LaravelRUS_SleepingOwlAdmin
train
php
756b175a9c0eb6e50f48001d9b5fd2b59eda5830
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -8,10 +8,17 @@ function SyncanoClient(instanceName = required('instanceName'), options = {}) { client.loginMethod = options.loginMethod client.token = options.token - client.headers = headers => Object...
fix(client): handle undefined token
Syncano_syncano-client-js
train
js
5b5ba49fb2ee087b6ca5d0cb337785d99fdf5ad0
diff --git a/test/alerts.js b/test/alerts.js index <HASH>..<HASH> 100644 --- a/test/alerts.js +++ b/test/alerts.js @@ -10,7 +10,7 @@ function inspect( value ) { }) } -suite( 'Alerts', function() { +suite.skip( 'Alerts', function() { var ruleId = null
test(alerts): Skip alerts API tests due to missing fixtures
jhermsmeier_node-flightstats
train
js