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
8d323b74d8ab38ec27735efe5ba608f01cf28c36
diff --git a/src/build/browser.js b/src/build/browser.js index <HASH>..<HASH> 100644 --- a/src/build/browser.js +++ b/src/build/browser.js @@ -39,8 +39,8 @@ function minify (ctx, task) { return fs.readFile(path.join(process.cwd(), 'dist', 'index.js')) .then((code) => { const result = Uglify.minify(code.t...
feat: enable uglify mangle and compress
ipfs_aegir
train
js
690e84ef913d3f8f6584ec30d764eb05bf52b6cf
diff --git a/tests/FunctionalTestCase.php b/tests/FunctionalTestCase.php index <HASH>..<HASH> 100644 --- a/tests/FunctionalTestCase.php +++ b/tests/FunctionalTestCase.php @@ -28,7 +28,7 @@ class FunctionalTestCase extends \Orchestra\Testbench\TestCase /** * {@inheritdoc} */ - public function setUp()...
fix: FunctionalTestCase
cartalyst_tags
train
php
b5dc1727d2cf668211ee89c85b22ca32803df375
diff --git a/pkg/services/sqlstore/sqlstore.go b/pkg/services/sqlstore/sqlstore.go index <HASH>..<HASH> 100644 --- a/pkg/services/sqlstore/sqlstore.go +++ b/pkg/services/sqlstore/sqlstore.go @@ -149,8 +149,13 @@ func getEngine() (*xorm.Engine, error) { if len(fields) > 1 && len(strings.TrimSpace(fields[1])) > 0 { ...
fix(postgres): If password or user is empty use empty quotes for connection string, #<I>
grafana_grafana
train
go
2e03ca047c1241f7c4784f6413173bdebaf4ecad
diff --git a/src/app-router.js b/src/app-router.js index <HASH>..<HASH> 100644 --- a/src/app-router.js +++ b/src/app-router.js @@ -58,8 +58,12 @@ export class AppRouter extends Router { if (!instructionCount) { this.events.publish('router:navigation:processing', { instruction }); + } else if (ins...
feat(router): restore previous location after exceeding max nav attempts
aurelia_router
train
js
ca33c64b6c2c36ada5520be6817039e6be7ced93
diff --git a/src/Manager.php b/src/Manager.php index <HASH>..<HASH> 100644 --- a/src/Manager.php +++ b/src/Manager.php @@ -169,13 +169,16 @@ class Manager */ protected function buildRefreshClaims(Payload $payload) { - // assign the payload values as variables for use later - extract($paylo...
fix(php): Dont use compact
tymondesigns_jwt-auth
train
php
9bc2659f7062cc1be7c9d5719afadcdd46e5e7e1
diff --git a/test/test_Exceptions.py b/test/test_Exceptions.py index <HASH>..<HASH> 100644 --- a/test/test_Exceptions.py +++ b/test/test_Exceptions.py @@ -38,7 +38,7 @@ class TestUtil(unittest.TestCase): self.assertEqual(exc.hresult, SCARD_E_NO_SERVICE) text = str(exc) if get_platform().start...
test: fix Exception test on <I>-bits CPU Thanks to mnhauke for the bug report <URL>
LudovicRousseau_pyscard
train
py
c721a5b13dd5a59dda43294426cd257d9296a240
diff --git a/tests/helpers/run.js b/tests/helpers/run.js index <HASH>..<HASH> 100644 --- a/tests/helpers/run.js +++ b/tests/helpers/run.js @@ -30,7 +30,7 @@ const bootstrap = () => module.exports = (...args) => bootstrap().then((rootDir) => { process.chdir(rootDir); - process.nextTick(() => run(null, ...arg...
test: use new yargs API
untool_untool
train
js
72e351a13ff0164741cb4aa461d6d3550b2a1715
diff --git a/packages/pob/utils/package.js b/packages/pob/utils/package.js index <HASH>..<HASH> 100644 --- a/packages/pob/utils/package.js +++ b/packages/pob/utils/package.js @@ -152,19 +152,20 @@ const internalAddDependencies = (pkg, type, dependencies, cleaned) => { const potentialNewVersion = pobDependencies[...
fix: devDep always cleaned
christophehurpeau_pob-lerna
train
js
ba4dcb011ada7df703835ba7f8ae243f94c62c10
diff --git a/app/modules/categories/CategoryController.js b/app/modules/categories/CategoryController.js index <HASH>..<HASH> 100644 --- a/app/modules/categories/CategoryController.js +++ b/app/modules/categories/CategoryController.js @@ -19,11 +19,24 @@ angular selectionService.select($stateParams.c...
fix(CategoryController): make sure to always fetch the category through the couchService
sofa_sofa-couch-service
train
js
ef98e68ecc873071a55c762d8f6ba3cfda292c20
diff --git a/mutagen/flac.py b/mutagen/flac.py index <HASH>..<HASH> 100644 --- a/mutagen/flac.py +++ b/mutagen/flac.py @@ -503,6 +503,21 @@ class Picture(MetadataBlock): * colors -- number of colors for indexed palettes (like GIF), 0 for non-indexed * data -- picture data + + To create a picture fro...
docs: add example for how to create a new flac.Picture (Fixes issue #<I>)
quodlibet_mutagen
train
py
c6151103b476ab3de3ebe0dfc71a7039a941ffca
diff --git a/packages/@vue/cli-shared-utils/lib/module.js b/packages/@vue/cli-shared-utils/lib/module.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli-shared-utils/lib/module.js +++ b/packages/@vue/cli-shared-utils/lib/module.js @@ -61,6 +61,11 @@ exports.resolveModule = function (request, context) { } export...
test: fix mock module in upgrader test
vuejs_vue-cli
train
js
31ed57432232da47f697fe8bc0a9e4789558d5f2
diff --git a/source/partialObject.js b/source/partialObject.js index <HASH>..<HASH> 100644 --- a/source/partialObject.js +++ b/source/partialObject.js @@ -29,5 +29,5 @@ import _curry2 from './internal/_curry2.js'; * sayHelloToMs({ firstName: 'Jane', lastName: 'Jones' }); //=> 'Hello, Ms. Jane Jones!' * @symb R...
refactor: assign partialObject function to var so that JSDoc can infer its name (#<I>) fix ramda/ramda.github.io#<I>
ramda_ramda
train
js
9e3152be4a2c9bc97fead6be0d487c7e35984dbc
diff --git a/webapps/client/scripts/task/directives/cam-tasklist-task-meta.js b/webapps/client/scripts/task/directives/cam-tasklist-task-meta.js index <HASH>..<HASH> 100644 --- a/webapps/client/scripts/task/directives/cam-tasklist-task-meta.js +++ b/webapps/client/scripts/task/directives/cam-tasklist-task-meta.js @@ -5...
fix(groups): initialize array of groups
camunda_camunda-bpm-platform
train
js
5c6d25cbbe3de021806408f3cff6cb1e139c0a25
diff --git a/src/jquery.gridster.js b/src/jquery.gridster.js index <HASH>..<HASH> 100755 --- a/src/jquery.gridster.js +++ b/src/jquery.gridster.js @@ -3011,8 +3011,9 @@ * @return {Object} Returns the instance of the Gridster class. */ fn.get_widgets_from_DOM = function() { - this.$widgets.each($.p...
fix(gridster): sort widgets appropriately when reading them from DOM
ducksboard_gridster.js
train
js
bce53f3e30896ae0edbc1517c23d880b9929c421
diff --git a/insights/specs/core3_archive.py b/insights/specs/core3_archive.py index <HASH>..<HASH> 100644 --- a/insights/specs/core3_archive.py +++ b/insights/specs/core3_archive.py @@ -14,3 +14,4 @@ simple_file = partial(simple_file, context=SerializedArchiveContext) class Core3Specs(Specs): branch_info = sim...
fix(specs): add spec for display_name to core3_archive (#<I>) There are issues with display_name in core3 archives RHCLOUD-<I>
RedHatInsights_insights-core
train
py
53b97621dccdef8f9f2e15e2f4f31045b46970e2
diff --git a/lib/Serverless.js b/lib/Serverless.js index <HASH>..<HASH> 100644 --- a/lib/Serverless.js +++ b/lib/Serverless.js @@ -445,7 +445,7 @@ class Serverless { // Only for internal use _logDeprecation(code, message) { - return logDeprecation(code, message, { serviceConfig: this.service }); + return ...
fix: Ensure early access to configuration in logDeprecation method
serverless_serverless
train
js
67c38e741d6ab752ca5c7bd7763196709e4db9a1
diff --git a/lib/middleware/vhost.js b/lib/middleware/vhost.js index <HASH>..<HASH> 100644 --- a/lib/middleware/vhost.js +++ b/lib/middleware/vhost.js @@ -17,9 +17,9 @@ module.exports = () => if (bucket) { ctx.path = `/${bucket}${ctx.path}`; } - } else if (ctx.hostname !== "localhost" && !net....
fix(vhost): actually support specifying buckets via hostname
jamhall_s3rver
train
js
37733bc1f57dcf1be9b66f9b90ab1cf3bfe580bb
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -1,8 +1,11 @@ import createReducer from './createReducer' -import { createAction, createReducerAction} from './createAction' +import { + createAction + // createReducerAction +} from './createAction' expo...
chore: hide undocumented function
terrierscript_redux-candy
train
js,js
c253b61b565f97913e1e75599d1bde57a1f9ebdd
diff --git a/system/Router/AutoRouterImproved.php b/system/Router/AutoRouterImproved.php index <HASH>..<HASH> 100644 --- a/system/Router/AutoRouterImproved.php +++ b/system/Router/AutoRouterImproved.php @@ -169,7 +169,7 @@ class AutoRouterImproved implements AutoRouterInterface ); // Ensure routes r...
refactor: rename method name
codeigniter4_CodeIgniter4
train
php
36e6cf92abf61c2891c931323dcdd592ff0c32e1
diff --git a/bin/tessel-2.js b/bin/tessel-2.js index <HASH>..<HASH> 100755 --- a/bin/tessel-2.js +++ b/bin/tessel-2.js @@ -299,7 +299,6 @@ makeCommand('version') makeCommand('ap') .option('ssid', { abbr: 'n', - required: true, help: 'Name of the network.' }) .option('pass', {
fix(bin): ssid not required for ap --trigger
tessel_t2-cli
train
js
7b4b992b2aeaddf71406b484d47332f27b1ab051
diff --git a/packages/mdc-bottom-navigation/addon/mixins/bottom-navigation-button.js b/packages/mdc-bottom-navigation/addon/mixins/bottom-navigation-button.js index <HASH>..<HASH> 100644 --- a/packages/mdc-bottom-navigation/addon/mixins/bottom-navigation-button.js +++ b/packages/mdc-bottom-navigation/addon/mixins/botto...
chore: Attempted to fix ripple on buttons
onehilltech_ember-cli-mdc
train
js
e0353f48e0fa2a5165ca39451447bdf20e8830f1
diff --git a/user.go b/user.go index <HASH>..<HASH> 100644 --- a/user.go +++ b/user.go @@ -2,7 +2,7 @@ package platform import "context" -// User is an user. 🎉 +// User is a user. 🎉 type User struct { ID ID `json:"id,omitempty"` Name string `json:"name"`
fix(user): update comment about user service
influxdata_influxdb
train
go
bcba5070f61b1760a176745f37f8aa68ba02b305
diff --git a/packages/reactstrap-validation-date/src/AvDateRange.js b/packages/reactstrap-validation-date/src/AvDateRange.js index <HASH>..<HASH> 100644 --- a/packages/reactstrap-validation-date/src/AvDateRange.js +++ b/packages/reactstrap-validation-date/src/AvDateRange.js @@ -326,8 +326,10 @@ export default class AvD...
refactor(reactstrap-validation-date): linter didnt like shorthand
Availity_availity-react
train
js
a8e6ecf4cb272b360b3d419fd37c1a700f753200
diff --git a/dependencyManager.js b/dependencyManager.js index <HASH>..<HASH> 100644 --- a/dependencyManager.js +++ b/dependencyManager.js @@ -86,11 +86,11 @@ function getRequiredDeps(packageJson) { } const deps = { - "@angular/compiler-cli": "~6.1.0-beta.3", + "@angular/compiler-cli": "~6.1.0-r...
chore: compiler cli & ngtools/webpack to latest rc (#<I>) We no longer need to hardcode @ngtools/webpack to <I>-rc<I> as <URL>
NativeScript_nativescript-dev-webpack
train
js
1371d5d7ecd42bf8e778b1dad07f6d880f8c04e9
diff --git a/src/anyconfig/backend/xml.py b/src/anyconfig/backend/xml.py index <HASH>..<HASH> 100644 --- a/src/anyconfig/backend/xml.py +++ b/src/anyconfig/backend/xml.py @@ -452,7 +452,8 @@ def etree_write(tree, stream): :param tree: XML ElementTree object :param stream: File or file-like object can write to...
fix: correct encoding arg for xml.etree.ElementTree.write correct encoding arg for xml.etree.ElementTree.write in python 3 to avoid the following exception raised on dump: TypeError: write() argument must be str, not bytes
ssato_python-anyconfig
train
py
93e77321178d3cc2eda5ea30c2d64991d36d33d8
diff --git a/framework/core/js/src/forum/components/PostsUserPage.js b/framework/core/js/src/forum/components/PostsUserPage.js index <HASH>..<HASH> 100644 --- a/framework/core/js/src/forum/components/PostsUserPage.js +++ b/framework/core/js/src/forum/components/PostsUserPage.js @@ -145,7 +145,7 @@ export default class ...
fix: posts tab on users page broken
flarum_core
train
js
a4ac1be65c4d2b90dcbea08530afb8c3b8f8e0be
diff --git a/packages/lingui-i18n/src/compile.js b/packages/lingui-i18n/src/compile.js index <HASH>..<HASH> 100644 --- a/packages/lingui-i18n/src/compile.js +++ b/packages/lingui-i18n/src/compile.js @@ -20,10 +20,10 @@ const defaultFormats = (language) => { return { plural: (value, { offset = 0, rules }) => -...
fix: Return fallback plural form when the correct doesn't exist
lingui_js-lingui
train
js
58eabef320f36125791728755b3256480c2937ca
diff --git a/framework/directives/carousel.js b/framework/directives/carousel.js index <HASH>..<HASH> 100755 --- a/framework/directives/carousel.js +++ b/framework/directives/carousel.js @@ -27,16 +27,16 @@ * @description * [en]Fired just after the current carousel item has changed.[/en] * [ja]現在表示しているカルーセルの要...
docs(ons-carousel): Update event docs.
OnsenUI_OnsenUI
train
js
678471395888c464c6ef40cada45549392bcc80a
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,24 +3,13 @@ from setuptools import setup -try: - from pypandoc import convert_file - - def read_md(f): - return convert_file(f, 'rst') - -except ImportError: - print("warning: pypandoc module not found,...
fix: pypi now supports markdown
PyCQA_baron
train
py
44d97089780424b5b0982dfc59185ce40d33672b
diff --git a/lib/decorate.js b/lib/decorate.js index <HASH>..<HASH> 100644 --- a/lib/decorate.js +++ b/lib/decorate.js @@ -7,7 +7,7 @@ function decorate (callSpec, decorator) { thisObj = callSpec.thisObj, numArgsToCapture = callSpec.numArgsToCapture; - return function () { + return function de...
refactor(empower): name function to make stacktrace a bit clean
twada_empower-core
train
js
4625881c54d256e6fae17c906fae3a076ca1c527
diff --git a/src/structures/MessageEmbed.js b/src/structures/MessageEmbed.js index <HASH>..<HASH> 100644 --- a/src/structures/MessageEmbed.js +++ b/src/structures/MessageEmbed.js @@ -7,6 +7,13 @@ const Util = require('../util/Util'); * Represents an embed in a message (image/video preview, rich embed, etc.) */ cla...
docs(MessageEmbed): document the constructor (#<I>)
discordjs_discord.js
train
js
46f6d3f99ff51ea0d6a83df300218c29376d7080
diff --git a/protocol-designer/src/ui/steps/actions/__tests__/actions.test.js b/protocol-designer/src/ui/steps/actions/__tests__/actions.test.js index <HASH>..<HASH> 100644 --- a/protocol-designer/src/ui/steps/actions/__tests__/actions.test.js +++ b/protocol-designer/src/ui/steps/actions/__tests__/actions.test.js @@ -1...
fix(protocol-designer): fix failing action test (#<I>)
Opentrons_opentrons
train
js
755b5c60436d1ccb58be71fc18b637b51542a107
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -213,11 +213,11 @@ class IpfsRepo { (err, res) => { log('init', err, res) if (err) { - return callback(err) - } - - if (!res.config) { - return callback(...
feat: add uniform error to isInitialized _isInitialized is used in several other repos to check the repo even being a pseudo private method the error should be uniform for easier handling and not whatever this.config.exists(cb) or this.version.check(repoVersion, cb) returns on error
ipfs_js-ipfs-repo
train
js
ce166320b826baaf181224023358f91ace19cb89
diff --git a/lib/resolver.js b/lib/resolver.js index <HASH>..<HASH> 100644 --- a/lib/resolver.js +++ b/lib/resolver.js @@ -2,7 +2,9 @@ var goog = require('./goog'); // TODO(vojta): can we handle provide "same thing provided multiple times" ? -var DependencyResolver = function() { +var DependencyResolver = function(...
fix: Show error for a missing dependency. This ensures that something is printed out for users who didn't add a mapping for one of their dependencies. Either they missed a deps.js file or they didn't preprocess all of their source files. The current behavior adds an undefined filepath which ends up causing the karma w...
karma-runner_karma-closure
train
js
c5f829591b48289c073354338349a2f4b2bbdfe0
diff --git a/http/org_service.go b/http/org_service.go index <HASH>..<HASH> 100644 --- a/http/org_service.go +++ b/http/org_service.go @@ -321,6 +321,10 @@ func (s *OrganizationService) FindOrganizations(ctx context.Context, filter plat // CreateOrganization creates an organization. func (s *OrganizationService) Cr...
fix(http): prevent creation of nameless organizations
influxdata_influxdb
train
go
27ec5610598ce51d792f9adadde8eab727481e7c
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -53,7 +53,8 @@ const antd = { Icon: require('./components/iconfont'), Row: require('./components/layout').Row, Col: require('./components/layout').Col, - Spin: require('./components/spin') + Spin: require('./compone...
feat: add form to antd.
ant-design_ant-design
train
js
8afa6d0dac0520d39822bcaf1cb72ad1dbb62f3c
diff --git a/packages/cozy-client/src/CozyClient.js b/packages/cozy-client/src/CozyClient.js index <HASH>..<HASH> 100644 --- a/packages/cozy-client/src/CozyClient.js +++ b/packages/cozy-client/src/CozyClient.js @@ -1,4 +1,4 @@ -import { StackLink } from './CozyLink' +import StackLink from './StackLink' import { QueryD...
fix: Ensure StackLink is exported
cozy_cozy-client
train
js,js
c8c507c80ea28385caac72b682dd066e44943913
diff --git a/rule_linux.go b/rule_linux.go index <HASH>..<HASH> 100644 --- a/rule_linux.go +++ b/rule_linux.go @@ -144,7 +144,7 @@ func ruleHandle(rule *Rule, req *nl.NetlinkRequest) error { req.AddData(nl.NewRtAttr(nl.FRA_OIFNAME, []byte(rule.OifName))) } if rule.Goto >= 0 { - msg.Type = nl.FR_ACT_NOP + msg.T...
fix: fix ip rule goto bug
vishvananda_netlink
train
go
12444fe474ae92302be24523be92dbdd101ab8d9
diff --git a/test/backend-connection.test.js b/test/backend-connection.test.js index <HASH>..<HASH> 100644 --- a/test/backend-connection.test.js +++ b/test/backend-connection.test.js @@ -7,11 +7,11 @@ var TypeOf = utils.TypeOf; var InstanceOf = utils.InstanceOf; var Connection = require('../lib/backend/connection')...
test: Use FluentReceiver isntead of MsgPackReceiver, because the backend is a fluentd.
droonga_express-droonga
train
js
2d34d2341e568c4c78619363014a1fe6e7785751
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -18,13 +18,16 @@ from setuptools import find_packages, setup -with open('requirements.txt', 'rt') as reqs_file: +with open('requirements.txt', 'rt', encoding="ascii") as reqs_file: REQUIREMENTS = reqs_file.readlines(...
fix: file open linting issues in setup.py
foremast_foremast
train
py
542d2e3b06095ff90bba382bf0b05adc8e62f91a
diff --git a/tests/databases/api_tests.py b/tests/databases/api_tests.py index <HASH>..<HASH> 100644 --- a/tests/databases/api_tests.py +++ b/tests/databases/api_tests.py @@ -358,7 +358,6 @@ class TestDatabaseApi(SupersetTestCase): database_data = {"database_name": "test-database-updated"} uri = f"api...
chore: clean up a debug line from #<I> (#<I>)
apache_incubator-superset
train
py
bb6eee8b20b836aac4ee7c34d0bea641bc173922
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -25,6 +25,8 @@ module.exports = function (options) { } } + config.hooks = require('./hooks')(config.plugins) + _.each(_.values(config.paths), _.ary(mkdirp.sync, 1)) var bindAddress = opti...
refactor(hooks): move initialisation to config
hoodiehq_hoodie-server
train
js,js
cc6e8deff1e6459036fee00d3bdb03ee3ccf46d2
diff --git a/pptx/chart/series.py b/pptx/chart/series.py index <HASH>..<HASH> 100644 --- a/pptx/chart/series.py +++ b/pptx/chart/series.py @@ -118,7 +118,7 @@ class BarSeries(_BaseCategorySeries): """ msg = ( 'BarSeries.fill property is deprecated and will be removed in a ' - '...
fix: a couple of lingering deprecation warnings
scanny_python-pptx
train
py,py
2c1c99dcf08cec8f600c85bc5ebcf65e4b762a93
diff --git a/fleet.go b/fleet.go index <HASH>..<HASH> 100644 --- a/fleet.go +++ b/fleet.go @@ -50,7 +50,7 @@ func main() { cfgset.String("metadata", "", "List of key-value metadata to assign to the fleet machine") cfgset.String("unit_prefix", "", "Prefix that should be used for all systemd units") cfgset.String("...
chore(fleet): set verify_units to be false as default This should have consistent default value with `verify` and `sign` in fleetctl.
coreos_fleet
train
go
38239c7a3b9d381f32068b7572a346d45b6b3043
diff --git a/src/config-wrapper.js b/src/config-wrapper.js index <HASH>..<HASH> 100644 --- a/src/config-wrapper.js +++ b/src/config-wrapper.js @@ -78,9 +78,11 @@ function wrap(func, required, ...configs) { transactionId, } = context.invocation; + const authorization = getToken(request); + const op...
refactor(config): conditionally set authorization header
adobe_helix-shared
train
js
1abfe103fc3bd17dd87799f2eef92ad56259a598
diff --git a/packages/posts/test/02_import-all.js b/packages/posts/test/02_import-all.js index <HASH>..<HASH> 100644 --- a/packages/posts/test/02_import-all.js +++ b/packages/posts/test/02_import-all.js @@ -1 +1,5 @@ -import "../serverless/handler"; +import "../serverless/handler/getPhotos"; +import "../serverless/hand...
ci(posts): `import` each serverless handler instead of just the `handlers/index`. The `require`s are deferred which means they don't actually run and require all the code I want for the coverage calculations.
randytarampi_me
train
js
67f8807fc8061de295aabe663b029e90576773e6
diff --git a/lib/reducers/create-user-reducer.js b/lib/reducers/create-user-reducer.js index <HASH>..<HASH> 100644 --- a/lib/reducers/create-user-reducer.js +++ b/lib/reducers/create-user-reducer.js @@ -2,7 +2,12 @@ import update from 'immutability-helper' // TODO: port user-specific code from the otp reducer. func...
refactor(createUserReducer): Add initial user redux state.
opentripplanner_otp-react-redux
train
js
41eb8d0ffc4cbdb8b46354bdce990e8769daaca5
diff --git a/src/Entity/Status/StatusAwareEntityInterface.php b/src/Entity/Status/StatusAwareEntityInterface.php index <HASH>..<HASH> 100644 --- a/src/Entity/Status/StatusAwareEntityInterface.php +++ b/src/Entity/Status/StatusAwareEntityInterface.php @@ -6,7 +6,7 @@ * @license MIT * @copyright 2013 - 2017 Cross So...
fix(Core): StatusAwareEntityInterface must not define constant. in PHP constants defined in interfaces cannot be overridden by implementing classes. This behaviour is essential to the function of the StatusAwareEntityTrait however.
yawik_core
train
php
2a71cca13c275b18b08547ce3703d9780ce253a7
diff --git a/test/test_hexahedron.py b/test/test_hexahedron.py index <HASH>..<HASH> 100644 --- a/test/test_hexahedron.py +++ b/test/test_hexahedron.py @@ -56,7 +56,7 @@ def test_normality(n=4): def test_write(): orthopy.hexahedron.write( - "hexa.vtu", lambda X: orthopy.hexahedron.tree(X.T, 5)[5][5] + ...
test: vtu -> vtk
nschloe_orthopy
train
py,py
a89e01b8c826a37a8df8df5645f6086028045315
diff --git a/src/js/components/Select/Select.js b/src/js/components/Select/Select.js index <HASH>..<HASH> 100644 --- a/src/js/components/Select/Select.js +++ b/src/js/components/Select/Select.js @@ -83,7 +83,7 @@ const Select = forwardRef( const inputRef = useRef(); const formContext = useContext(FormContext)...
fix: select dropdown entry when the input isnt controlled (#<I>) In <I>, when using a select without passing value as a prop, selecting a dropdown entry won't update the Select component to have that entry selected. This sets the value using `setValue` from the `useFormContext` hook.
grommet_grommet
train
js
68c23a902073c7c9d1b04f5bded27f90ba491689
diff --git a/packages/qix/src/utils/makeReactNativeConfig.js b/packages/qix/src/utils/makeReactNativeConfig.js index <HASH>..<HASH> 100644 --- a/packages/qix/src/utils/makeReactNativeConfig.js +++ b/packages/qix/src/utils/makeReactNativeConfig.js @@ -77,6 +77,9 @@ const getDefaultConfig = ({ exclude: /node_m...
chore: use `thread-loader`
longseespace_react-qml
train
js
a492d7776402dea239135bedc607f7e80d423043
diff --git a/lib/modules.js b/lib/modules.js index <HASH>..<HASH> 100644 --- a/lib/modules.js +++ b/lib/modules.js @@ -216,9 +216,13 @@ var //dependencies "client/html/templates/simple-thumbnails.html" ], fuImages: [ + "client/continue.gif", + "client/edit.gif", ...
chore(build): include new images in packaged builds #<I> #<I>
FineUploader_fine-uploader
train
js
c63b99ee029b6730e4b0702ac7c22b4076049e2a
diff --git a/lib/frameworks/jasmine.js b/lib/frameworks/jasmine.js index <HASH>..<HASH> 100644 --- a/lib/frameworks/jasmine.js +++ b/lib/frameworks/jasmine.js @@ -85,7 +85,7 @@ exports.run = function(runner, specs) { spec.getFullName().match(new RegExp(jasmineNodeOpts.grep)) != null; var invertGrep = !!(j...
fix(grep): change excluded tests to disabled instead of pending (#<I>)
angular_protractor
train
js
b49da9c1e872ffaedb0e265cd5c8d06269cc415d
diff --git a/test/urlMatcherFactorySpec.js b/test/urlMatcherFactorySpec.js index <HASH>..<HASH> 100644 --- a/test/urlMatcherFactorySpec.js +++ b/test/urlMatcherFactorySpec.js @@ -463,7 +463,7 @@ describe("urlMatcherFactoryProvider", function () { }); }); -fdescribe("urlMatcherFactory", function () { +describe("ur...
chore(urlMatcherFactory): remove f
ui-router_angular
train
js
cee91d889f621d5252645132331bc514bc768ede
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -81,7 +81,7 @@ function gulpRepl(_gulp_){ exports.instances.push({ gulp: gulp, tasks: util.getTasks(gulp), - runner: gulp.parallel || gulp.start + runner: gulp.start }); return repl;
refactor: runner is only one now (gulp-runtime)
stringparser_gulp-repl
train
js
fc52e6311fa5378839c59858c78a7e4eeb4344a5
diff --git a/lib/api-client/resources/deployment.js b/lib/api-client/resources/deployment.js index <HASH>..<HASH> 100644 --- a/lib/api-client/resources/deployment.js +++ b/lib/api-client/resources/deployment.js @@ -153,4 +153,23 @@ Deployment.getResourceData = function(deploymentId, resourceId, done) { }); }; +/*...
feat(redeploy): I can redeploy an existing deployment related to CAM-<I>
camunda_camunda-bpm-sdk-js
train
js
0f331ddb40c752f4af1e0ea854a3bdac691e66fb
diff --git a/src/filter/collection/filter-by.js b/src/filter/collection/filter-by.js index <HASH>..<HASH> 100644 --- a/src/filter/collection/filter-by.js +++ b/src/filter/collection/filter-by.js @@ -13,7 +13,8 @@ angular.module('a8m.filter-by', []) var comparator; - search = (isString(search)) ? search....
fix(filter-by): add is number conditaion + casting
a8m_angular-filter
train
js
c815b7d12589b6f662c4e5895da44e1c489ef9f3
diff --git a/internal/location/schema.go b/internal/location/schema.go index <HASH>..<HASH> 100644 --- a/internal/location/schema.go +++ b/internal/location/schema.go @@ -10,13 +10,6 @@ func Schema() *pluginsdk.Schema { return commonschema.Location() } -func HashCode(location interface{}) int { - // NOTE: this is ...
refactor: removing the old `HashCode` function
terraform-providers_terraform-provider-azurerm
train
go,go
38d5c109981bb51dc3ba2309ca6152c49fc07f28
diff --git a/tests/system/Router/RouteCollectionTest.php b/tests/system/Router/RouteCollectionTest.php index <HASH>..<HASH> 100644 --- a/tests/system/Router/RouteCollectionTest.php +++ b/tests/system/Router/RouteCollectionTest.php @@ -1462,7 +1462,7 @@ final class RouteCollectionTest extends CIUnitTestCase $...
fix: incorrect test `example.com` does not match`'subdomain' => '*'`, so the route is not registered.
codeigniter4_CodeIgniter4
train
php
47a93db3fd3f12959474685ea582a0e3012a7d71
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 @@ -128,6 +128,7 @@ export default Component => { // remove unwatned props // see https://github.com/Hacker0x01/react-datepicke...
fix: react warning: Unknown prop `selectedRows` (#<I>)
tleunen_react-mdl
train
js
db777cfd714e1c3440fc13ac080db6c02d19fc2c
diff --git a/src/module.js b/src/module.js index <HASH>..<HASH> 100644 --- a/src/module.js +++ b/src/module.js @@ -1,5 +1,8 @@ /* eslint-disable import/no-extraneous-dependencies */ +import { join } from "path"; + /* covered by nuxt */ +import { move } from "fs-extra"; import _ from "lodash"; import { Utils } from ...
fix(module): properly move the CMS build to the `dist` folder on `nuxt generate` fixes #<I>
medfreeman_nuxt-netlify-cms-module
train
js
afccf1e5f88b385db278c4a2d4385566e758a627
diff --git a/tests/test_cli.py b/tests/test_cli.py index <HASH>..<HASH> 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -11,12 +11,14 @@ class TestCli(unittest.TestCase): self.captured_output = io.StringIO() sys.stdout = self.captured_output + def tearDown(self): + sys.stdout = s...
test: Reset redirect in teardown
HttpRunner_HttpRunner
train
py
f6bfe0885a6f57673b6a9a29396f71ae2d9dc79a
diff --git a/config/styleguide.config.js b/config/styleguide.config.js index <HASH>..<HASH> 100644 --- a/config/styleguide.config.js +++ b/config/styleguide.config.js @@ -6,7 +6,9 @@ const toggle = (newComponentPath, oldComponentPath) => ( process.env.NODE_ENV === 'production' ? oldComponentPath : newComponentPath ...
feat(link): untoggle display of Link Components for staging and production
telus_tds-core
train
js
2192d1dd952b67d76c98b9427d65edfd72929102
diff --git a/monodeploy.config.js b/monodeploy.config.js index <HASH>..<HASH> 100644 --- a/monodeploy.config.js +++ b/monodeploy.config.js @@ -2,7 +2,7 @@ module.exports = { access: 'infer', autoCommit: false, - changelogFilename: './CHANGELOG.md', + changelogFilename: 'CHANGELOG.md', // changesetFilename: ...
refactor: updates changelog path
Availity_availity-workflow
train
js
5eaf043b18c044b0c9a517a359296390e6e73ac6
diff --git a/core/src/ons/platform.js b/core/src/ons/platform.js index <HASH>..<HASH> 100644 --- a/core/src/ons/platform.js +++ b/core/src/ons/platform.js @@ -116,8 +116,6 @@ class Platform { window.screen.width === 812 && window.screen.height === 375 || // X, XS landscape window.screen.width === 414 &&...
fix(platform): Remove incorrect sizes for <I> Mini in `isIPhoneX` The screen dimensions of the iPhone <I> Mini are <I> and <I>, but we were checking for <I> and <I>.
OnsenUI_OnsenUI
train
js
3e2181184b846435a685cd7267a68172ac494a99
diff --git a/tests/AlgoliaSearch/Tests/SearchFacetTest.php b/tests/AlgoliaSearch/Tests/SearchFacetTest.php index <HASH>..<HASH> 100644 --- a/tests/AlgoliaSearch/Tests/SearchFacetTest.php +++ b/tests/AlgoliaSearch/Tests/SearchFacetTest.php @@ -75,8 +75,9 @@ class SearchFacetTest extends AlgoliaSearchTestCase ...
test(facets): Add waitTask for setSettings
algolia_algoliasearch-client-php
train
php
9681b0c4d47379c816514555e9b5585d993b3bb1
diff --git a/packages/node_modules/@ciscospark/internal-plugin-ediscovery/src/ediscovery.js b/packages/node_modules/@ciscospark/internal-plugin-ediscovery/src/ediscovery.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@ciscospark/internal-plugin-ediscovery/src/ediscovery.js +++ b/packages/node_modules/@cisco...
feat(ediscovery): initial use of kms rback with hardcoded id
webex_spark-js-sdk
train
js
bf87924cf4bb84a22e46d2c08cbbd81c7c420a70
diff --git a/test/environments.js b/test/environments.js index <HASH>..<HASH> 100644 --- a/test/environments.js +++ b/test/environments.js @@ -63,10 +63,6 @@ class ReplicaSetEnvironment extends EnvironmentBase { genReplsetConfig(31004, { arbiter: true }) ]; - this.manager = new ReplSetManager('mongod',...
test: add `enableMajorityReadConcern` before starting nodes
mongodb_node-mongodb-native
train
js
da3d7eda16fe2d28813ce8bd29115a3ee7aaee81
diff --git a/src/PhpPact/Standalone/Runner/ProcessRunner.php b/src/PhpPact/Standalone/Runner/ProcessRunner.php index <HASH>..<HASH> 100644 --- a/src/PhpPact/Standalone/Runner/ProcessRunner.php +++ b/src/PhpPact/Standalone/Runner/ProcessRunner.php @@ -193,27 +193,17 @@ class ProcessRunner */ public function s...
fix: simplify ProcessRunner::stop() to work on windows systems
pact-foundation_pact-php
train
php
5d52cd7c9a27a1cb765f1ca358f5392aa1d4c4ec
diff --git a/api/src/opentrons/data_storage/database_migration.py b/api/src/opentrons/data_storage/database_migration.py index <HASH>..<HASH> 100755 --- a/api/src/opentrons/data_storage/database_migration.py +++ b/api/src/opentrons/data_storage/database_migration.py @@ -116,8 +116,18 @@ def _do_schema_changes(): d...
fix(api): apiv1: handle partial db schema changes (#<I>) If the labware database has been partially migrated - one or both of the schema changes creating tables have occurred, but the sqlite user version has not yet been set - then the next time the robot boots, it will try to recreate the tables and die from an un...
Opentrons_opentrons
train
py
caa32076af66326fbff4ee90a9c7f29479586778
diff --git a/keywords/_util.js b/keywords/_util.js index <HASH>..<HASH> 100644 --- a/keywords/_util.js +++ b/keywords/_util.js @@ -4,7 +4,7 @@ module.exports = { metaSchemaRef: metaSchemaRef }; -var META_SCHEMA_ID = 'http://json-schema.org/draft-06/schema'; +var META_SCHEMA_ID = 'http://json-schema.org/draft-07/s...
fix: draft-<I> is a default schema
epoberezkin_ajv-keywords
train
js
b6c81ac52dfeb2167299474da2e767cef1514277
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,7 @@ const {toString} = Object.prototype; const vowels = /^[aeiou]/i; -const builtin = [Array, Boolean, Date, Error, Function, Number, Object, RegExp, String, Symbol]; +const builtin = [Array, Boolean, Date, Error,...
fix: add Promise to builtin array
aleclarson_type-error
train
js
4019c99e99e595d5990d6f4610b8219199b56c48
diff --git a/lib/instrumentation/index.js b/lib/instrumentation/index.js index <HASH>..<HASH> 100644 --- a/lib/instrumentation/index.js +++ b/lib/instrumentation/index.js @@ -364,7 +364,7 @@ Instrumentation.prototype.addEndedSpan = function (span) { this._encodeAndSendSpan(span.getBufferedSpan()) } - i...
fix: span compression handling could crash on a span without a set parent span (#<I>) Creating a span with a manual `{ childOf: 'some-traceparent-string' }` results in a span without a parent `Span`. An attempt to compress it on .end() needs to handle that.
elastic_apm-agent-nodejs
train
js,js
aa6b05f4b14b0144beb7f63b30593aaaaa23609c
diff --git a/config/webpack.config.js b/config/webpack.config.js index <HASH>..<HASH> 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -1,4 +1,8 @@ var path = require('path'); +var webpack = require('webpack'); + + + // for prod builds, we have already done AoT and AoT writes to disk // so r...
chore(webpack): add optimize plugins
ionic-team_ionic-app-scripts
train
js
a7dc666739d65fa0240ceb1898896bc190bf8115
diff --git a/src/ducks/registry/index.js b/src/ducks/registry/index.js index <HASH>..<HASH> 100644 --- a/src/ducks/registry/index.js +++ b/src/ducks/registry/index.js @@ -83,15 +83,25 @@ export const initializeRegistry = konnectors => { .then(context => { const konnectorsToExclude = !!context...
feat: filter konnectors categories based on environment ✨
cozy_cozy-home
train
js
45c333e14c79fca0c27fcad75abfe73e550d3e26
diff --git a/src/Plugin.php b/src/Plugin.php index <HASH>..<HASH> 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -94,6 +94,16 @@ class Plugin implements PluginInterface, EventSubscriberInterface $this->output = $io; } + public function deactivate(Composer $composer, IOInterface $io) + { +...
feat: Implement new Plugin method deactivate and uninstall Currently, these methods do not do anything though.
yawik_composer-plugin
train
php
b2abde5aa81d29f137f442e2c59d649a5a7fe22a
diff --git a/src/InfoViz/Native/ParallelCoordinates/index.js b/src/InfoViz/Native/ParallelCoordinates/index.js index <HASH>..<HASH> 100644 --- a/src/InfoViz/Native/ParallelCoordinates/index.js +++ b/src/InfoViz/Native/ParallelCoordinates/index.js @@ -436,8 +436,8 @@ function parallelCoordinate(publicAPI, model) { ...
fix(ParallelCoordinates): Try to guard against using undefined value when computing deltas
Kitware_paraviewweb
train
js
570c7b2242bbf8243dc17062bf0f1678b53f9ae4
diff --git a/models/Client.js b/models/Client.js index <HASH>..<HASH> 100644 --- a/models/Client.js +++ b/models/Client.js @@ -742,7 +742,11 @@ var Client = Modinha.define('clients', { /** * scopes - * List of scopes required to access this client + * List of user-authorized scopes required to displa...
docs(Client): clarify purpose of client `scopes` property
anvilresearch_connect
train
js
c74ae107f1ee0688150b5f2dd4a348ea52c67d6b
diff --git a/lib/browser/chrome-extension.js b/lib/browser/chrome-extension.js index <HASH>..<HASH> 100644 --- a/lib/browser/chrome-extension.js +++ b/lib/browser/chrome-extension.js @@ -427,7 +427,7 @@ app.once('ready', function () { } } } catch (error) { - if (process.env.ELECTRON_ENABLE_LOGGING) { ...
fix: do not print an error for an expected condition (#<I>) (#<I>)
electron_electron
train
js
4a830d05b65e5479f0c525cc72c2c0999ea586e4
diff --git a/lib/function_inheritance.js b/lib/function_inheritance.js index <HASH>..<HASH> 100644 --- a/lib/function_inheritance.js +++ b/lib/function_inheritance.js @@ -419,7 +419,8 @@ module.exports = function BlastInheritance(Blast, Collection) { } else { config = { value: getter, - enumerable: enume...
fix: setProperty values are now writable Simple setProperty values (not getters) are now writable, and can be changed in an instance.
skerit_protoblast
train
js
c037a510c68812de0b6c60dc510b8f716e72f6a2
diff --git a/bigquery/noxfile.py b/bigquery/noxfile.py index <HASH>..<HASH> 100644 --- a/bigquery/noxfile.py +++ b/bigquery/noxfile.py @@ -150,6 +150,7 @@ def lint(session): session.install("-e", ".") session.run("flake8", os.path.join("google", "cloud", "bigquery")) session.run("flake8", "tests") + s...
style(bigquery): add code samples to lint check (#<I>)
googleapis_google-cloud-python
train
py
4d577cf3b78be5b22205e3d87348757201ea243c
diff --git a/test/unit/services/calendarHelper.spec.js b/test/unit/services/calendarHelper.spec.js index <HASH>..<HASH> 100644 --- a/test/unit/services/calendarHelper.spec.js +++ b/test/unit/services/calendarHelper.spec.js @@ -445,8 +445,8 @@ describe('calendarHelper', function() { }); it('should only conta...
test(weekView): fix failing test that legitimately got fixed
mattlewis92_angular-bootstrap-calendar
train
js
240ac9238505383d2fc0459ad0745509f5b10edb
diff --git a/test/fixtures/various_assertion_methods/expected.js b/test/fixtures/various_assertion_methods/expected.js index <HASH>..<HASH> 100644 --- a/test/fixtures/various_assertion_methods/expected.js +++ b/test/fixtures/various_assertion_methods/expected.js @@ -1,4 +1,4 @@ 'use strict'; -function add(a, b) { +asy...
test: add test for AwaitExpression
unassert-js_unassert
train
js,js
b9a874bdea2bb28387a6b01ef22363cfcac6638f
diff --git a/src/adapter.js b/src/adapter.js index <HASH>..<HASH> 100644 --- a/src/adapter.js +++ b/src/adapter.js @@ -20,7 +20,9 @@ function createQUnitStartFn (tc, runnerPassedIn) { // eslint-disable-line no-unu var runner = runnerPassedIn || window.QUnit var totalNumberOfTest = 0 var timer = null - ...
fix: define array prior to array.push (#<I>)
karma-runner_karma-qunit
train
js
50852dfbbfe7f7208bea09324cb2c1794295e1bb
diff --git a/superset/datasets/dao.py b/superset/datasets/dao.py index <HASH>..<HASH> 100644 --- a/superset/datasets/dao.py +++ b/superset/datasets/dao.py @@ -79,7 +79,7 @@ class DatasetDAO(BaseDAO): database.get_table(table_name, schema=schema) return True except SQLAlchemyError as e...
chore: downgrade expected exception from error to info (#<I>) * chore: reduce number of error logs * info -> warning
apache_incubator-superset
train
py
cb894c8ce9d6374c635b559abdc8978e8de2fefd
diff --git a/lib/image.js b/lib/image.js index <HASH>..<HASH> 100644 --- a/lib/image.js +++ b/lib/image.js @@ -3,6 +3,7 @@ module.exports = image; var debug = require('debug')('inliner'); function image(url) { + url = url.replace(/#.*$/, ''); this.emit('progress', 'get image ' + url); return this.get(url, { ...
fix: ignore fragment identifiers on urls Since the cache is keyyed by URL, it makes sense to ignore the hash fragment identifier.
remy_inliner
train
js
0a4f94e95bf936eebde9732c83ca79f73e9598c7
diff --git a/tasks/client.js b/tasks/client.js index <HASH>..<HASH> 100644 --- a/tasks/client.js +++ b/tasks/client.js @@ -159,6 +159,24 @@ module.exports = function (gulp, config) { port: config.staticServer.port, root: config.build.distPath }); + + if (process.env.SERVE_HTTPS === 'true')...
feat(https): support serving assets on HTTPS
emartech_boar-tasks-client
train
js
8d29ccbf7f61aa2ac1089b7565061d0441d92f6f
diff --git a/packages/patternfly-4/react-core/src/components/AboutModal/examples/SimpleAboutModal.js b/packages/patternfly-4/react-core/src/components/AboutModal/examples/SimpleAboutModal.js index <HASH>..<HASH> 100644 --- a/packages/patternfly-4/react-core/src/components/AboutModal/examples/SimpleAboutModal.js +++ b/p...
docs(AboutModal): update logo alt text to Patternfly Logo (#<I>)
patternfly_patternfly-react
train
js
a3062e291a76067bc859d24ea941da79fb2fc2fb
diff --git a/intranet/apps/eighth/views/admin/general.py b/intranet/apps/eighth/views/admin/general.py index <HASH>..<HASH> 100644 --- a/intranet/apps/eighth/views/admin/general.py +++ b/intranet/apps/eighth/views/admin/general.py @@ -132,11 +132,6 @@ def cache_view(request): @eighth_admin_required -def not_implem...
chore(eighth): remove unused view: not_implemented_view
tjcsl_ion
train
py
0fabb046521c00d18d0f33cb4d57992920f95edd
diff --git a/src/components/swipe-action/index.js b/src/components/swipe-action/index.js index <HASH>..<HASH> 100644 --- a/src/components/swipe-action/index.js +++ b/src/components/swipe-action/index.js @@ -219,7 +219,7 @@ export default class AtSwipeAction extends AtComponent { > {options.map((...
fix(swipe-action): 修复 AtSwipeAction 循环 key 反优化
NervJS_taro-ui
train
js
52ef6117ba90803846172f69c1f62e31dbb1e578
diff --git a/src/helpers/form-data.js b/src/helpers/form-data.js index <HASH>..<HASH> 100644 --- a/src/helpers/form-data.js +++ b/src/helpers/form-data.js @@ -26,7 +26,6 @@ const carriage = '\r\n' const dashes = '-'.repeat(2) -const carriageLength = Buffer.byteLength(carriage) const NAME = Symbol.toStringTag @...
style: removing some unused code
Kong_httpsnippet
train
js
47255485913cf8b61ac810b4368c94a1e04036d6
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -53,7 +53,7 @@ module.exports = function(grunt) { mochacli: { options: { require: ['should'], - reporter: 'nyan', + reporter: 'spec', bail: true }, all: ['test/**/*.js']
test: remove ASCII art (#<I>) Closes #<I>
dequelabs_grunt-axe-webdriver
train
js
513675bc5b9be6eda48983cb5c8b4ad4d42c9efb
diff --git a/workflow/executor/executor.go b/workflow/executor/executor.go index <HASH>..<HASH> 100644 --- a/workflow/executor/executor.go +++ b/workflow/executor/executor.go @@ -40,6 +40,13 @@ import ( os_specific "github.com/argoproj/argo/workflow/executor/os-specific" ) +var MainContainerStartRetry = wait.Backo...
fix(executor): Add retry on pods watch to handle timeout. (#<I>)
argoproj_argo
train
go
ac5b185347629fc3f4ee7dc0b635451d88658203
diff --git a/stories/DynamicWidgets.stories.js b/stories/DynamicWidgets.stories.js index <HASH>..<HASH> 100644 --- a/stories/DynamicWidgets.stories.js +++ b/stories/DynamicWidgets.stories.js @@ -22,15 +22,4 @@ storiesOf('ais-dynamic-widgets', module) ], }; }, - methods: { - transformItems(_...
chore(stories): dynamic widgets dashboard usage
algolia_vue-instantsearch
train
js
701756f48fc627ed1f9cef77e6ad887c2e95e0f8
diff --git a/allauth/socialaccount/providers/discord/views.py b/allauth/socialaccount/providers/discord/views.py index <HASH>..<HASH> 100644 --- a/allauth/socialaccount/providers/discord/views.py +++ b/allauth/socialaccount/providers/discord/views.py @@ -10,9 +10,9 @@ from allauth.socialaccount.providers.oauth2.views i...
fix(discord): Switch to new API domain
pennersr_django-allauth
train
py
55f58370cfda6ba48ab9c08cf22039dbbf5b99b0
diff --git a/src/Leevel/Protocol/Server.php b/src/Leevel/Protocol/Server.php index <HASH>..<HASH> 100755 --- a/src/Leevel/Protocol/Server.php +++ b/src/Leevel/Protocol/Server.php @@ -580,8 +580,8 @@ abstract class Server throw new InvalidArgumentException($e); } - if (version_compare(phpv...
chore: update swoole version
hunzhiwange_framework
train
php
aa79801f904a8c6dbc47f4a75bc2a1fced15054c
diff --git a/src/android/CameraPreview.java b/src/android/CameraPreview.java index <HASH>..<HASH> 100644 --- a/src/android/CameraPreview.java +++ b/src/android/CameraPreview.java @@ -466,9 +466,6 @@ public class CameraPreview extends CordovaPlugin implements CameraActivity.Camer private boolean setOnPictureTakenHand...
fix: setOnPictureTakenHandler should not be called back immediately after set (#<I>)
cordova-plugin-camera-preview_cordova-plugin-camera-preview
train
java
cce06e7f5d4d86518ae7b44c8ac0c4b423a69b6a
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,4 +1,4 @@ require('argv-set-env')(); var webpack = require('./webpack/config')[process.env.NODE_ENV === 'development' ? 'dist' : 'prod']; -module.exports = webpack; \ No newline at en...
style: missing new lines in webpack
formly-js_angular-formly-templates-material
train
js,js
8c0a940cdb85b40c49009a92f6d0d6da9e827f3f
diff --git a/src/structures/Channel.js b/src/structures/Channel.js index <HASH>..<HASH> 100644 --- a/src/structures/Channel.js +++ b/src/structures/Channel.js @@ -100,17 +100,12 @@ class Channel extends Base { const Structures = require('../util/Structures'); let channel; if (!data.guild_id && !guild) { ...
fix(Channel): ensure partial DMChannels get created (#<I>)
discordjs_discord.js
train
js
0ada3fbfa4aeef94eb34d0c2678a36ce772f89d8
diff --git a/src/Leevel/Event/Observer.php b/src/Leevel/Event/Observer.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Event/Observer.php +++ b/src/Leevel/Event/Observer.php @@ -68,7 +68,8 @@ class Observer implements SplObserver */ public function __invoke(...$args) { - call_user_func($this->ha...
perf(event): improves observer performance
hunzhiwange_framework
train
php