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
784d0c45182a8034eff0a0de5699dd625a4d1aa5
diff --git a/pkg/test/ginkgo/cmd_runsuite.go b/pkg/test/ginkgo/cmd_runsuite.go index <HASH>..<HASH> 100644 --- a/pkg/test/ginkgo/cmd_runsuite.go +++ b/pkg/test/ginkgo/cmd_runsuite.go @@ -314,5 +314,5 @@ func (opt *Options) Run(args []string) error { } fmt.Fprintf(opt.Out, "%d pass, %d skip (%s)\n", pass, skip, du...
test: If we are aborted, never exit without error Context cancellation can report success, but we didn't really succeed.
openshift_origin
train
go
3c0eff6cfe69b12fc2922aaecc7964d33d75451e
diff --git a/packages/source-wordpress/index.js b/packages/source-wordpress/index.js index <HASH>..<HASH> 100644 --- a/packages/source-wordpress/index.js +++ b/packages/source-wordpress/index.js @@ -69,7 +69,7 @@ class WordPressSource { } async getUsers (actions) { - const { data } = await this.fetch('wp/v2/...
fix(wordpress): paginated users endpoint (#<I>)
gridsome_gridsome
train
js
3f1a4d24bb8a67eb7ca36c9f96fb60dbd52023dc
diff --git a/ui/src/components/file/QFile.js b/ui/src/components/file/QFile.js index <HASH>..<HASH> 100644 --- a/ui/src/components/file/QFile.js +++ b/ui/src/components/file/QFile.js @@ -120,17 +120,22 @@ export default Vue.extend({ }, __getControl (h) { - return h('div', { + const data = { ...
fix(QFile): readonly accepts drag'n'drop
quasarframework_quasar
train
js
89390dd14e103e5fa2a73eb2b81b55e6ade34183
diff --git a/build/tasks/update-version.js b/build/tasks/update-version.js index <HASH>..<HASH> 100644 --- a/build/tasks/update-version.js +++ b/build/tasks/update-version.js @@ -7,13 +7,13 @@ const yargs = require('yargs'); const newVersion = yargs.argv._[0]; -// console.log(`Updating opentest-server module versi...
fix(build): several llines were commented-out in update-version
mcdcorp_opentest
train
js
822827f4396aa9569624bf4faf9cc711781e3d49
diff --git a/jquery.datetimepicker.js b/jquery.datetimepicker.js index <HASH>..<HASH> 100755 --- a/jquery.datetimepicker.js +++ b/jquery.datetimepicker.js @@ -925,8 +925,7 @@ setPos, timer = 0, _xdsoft_datetime, - forEachAncestorOf, - throttle; + forEachAncestorOf; if (options.id) { d...
fix: currentTime can't be null for inline mode; remove unused throttle var
xdan_datetimepicker
train
js
813df5ad6c1eb9a6f34656b8f37dc9b9f7405fb3
diff --git a/lib/actions/api.js b/lib/actions/api.js index <HASH>..<HASH> 100644 --- a/lib/actions/api.js +++ b/lib/actions/api.js @@ -337,6 +337,8 @@ query stopQuery($stopId: [String]) { findStopResponse, findStopError, { + // find stop should not be throttled since it can make quite frequent + ...
refactor(api): add comment explaining why findStop query is not throttled
opentripplanner_otp-react-redux
train
js
3afc531de81abe1eb37d0ec7565b23dae4696b38
diff --git a/connection_instrumented.go b/connection_instrumented.go index <HASH>..<HASH> 100644 --- a/connection_instrumented.go +++ b/connection_instrumented.go @@ -4,6 +4,7 @@ import ( "database/sql" "database/sql/driver" "fmt" + "sync" mysqld "github.com/go-sql-driver/mysql" "github.com/gobuffalo/pop/v6...
fix: add lock to registering instrumented drivers
gobuffalo_pop
train
go
56e8c449301f8717a5bd8ff37f59fc28e87a5914
diff --git a/lib/text-parser.js b/lib/text-parser.js index <HASH>..<HASH> 100644 --- a/lib/text-parser.js +++ b/lib/text-parser.js @@ -19,14 +19,25 @@ function getInteger(str, pos) { } function parseNode(text, token, pos) { - var m, match, value, j; - - if (token.type != "static" && text.startsWith(token.placeholde...
fix: placeholder is a substr of viewValue
eight04_custom-input
train
js
f185c66252bcf359cbfebb4894e752994590283c
diff --git a/audit.php b/audit.php index <HASH>..<HASH> 100644 --- a/audit.php +++ b/audit.php @@ -36,7 +36,8 @@ class Audit extends Prefab { * @param $str string **/ function url($str) { - return is_string(filter_var($str,FILTER_VALIDATE_URL)); + return is_string(filter_var($str,FILTER_VALIDATE_URL)) + && !p...
fix: check for critical schemes in url validation
bcosca_fatfree-core
train
php
efecb0801ba7b076b48b83ea335a81a60d6ebe14
diff --git a/src/func/releaseEvent.js b/src/func/releaseEvent.js index <HASH>..<HASH> 100644 --- a/src/func/releaseEvent.js +++ b/src/func/releaseEvent.js @@ -31,7 +31,9 @@ export function updateReleaseEventSet( newSetItems: Array<ReleaseEvent> ): Promise<any> { function comparisonFunc(obj, other) { - return obj....
fix(ReleaseEvents): Consider null and undefined areas equal in updateReleaseEventSet
bookbrainz_bookbrainz-data-js
train
js
090793ab6b01c9d3cc6829b70997993da1f11413
diff --git a/src/cartesian/Line.js b/src/cartesian/Line.js index <HASH>..<HASH> 100644 --- a/src/cartesian/Line.js +++ b/src/cartesian/Line.js @@ -240,7 +240,7 @@ class Line extends Component { return ( <Animate { ...animationProps } - from={`0px ${totalLength}px`} + from={`0px ${totalLength...
fix(Line): rollback last fix of Line animtion from value
recharts_recharts
train
js
1b7c3dea673e8cd805817e881dfa3548dcad08ca
diff --git a/src/Leevel/Throttler/RateLimiter.php b/src/Leevel/Throttler/RateLimiter.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Throttler/RateLimiter.php +++ b/src/Leevel/Throttler/RateLimiter.php @@ -296,9 +296,9 @@ class RateLimiter implements IRateLimiter, IArray, Countable */ protected function get...
refactor(throttler): short closure for throttler
hunzhiwange_framework
train
php
c4440c33b06ef34ee409ea023038af49574aff7f
diff --git a/.storybook/config.js b/.storybook/config.js index <HASH>..<HASH> 100644 --- a/.storybook/config.js +++ b/.storybook/config.js @@ -15,6 +15,7 @@ setDefaults({ }) setOptions({ + addonPanelInRight: true, name: 'Times Components', hierarchySeparator: /\// });
refactor: put knobs and action logger panel on the right (#<I>)
newsuk_times-components
train
js
f43d38e0fb17e5211d374935612403698e94b7a0
diff --git a/schedula/utils/sol.py b/schedula/utils/sol.py index <HASH>..<HASH> 100644 --- a/schedula/utils/sol.py +++ b/schedula/utils/sol.py @@ -685,6 +685,7 @@ class Solution(Base, collections.OrderedDict): for f in node_attr.get('filters', ()): res = f(res) + a...
feat(sol): Add function results to workflow node attr.
vinci1it2000_schedula
train
py
eeb9c1d32c2b8f3ebffacbac741d302b0bb5a1ab
diff --git a/src/qtism/runtime/storage/binary/QtiBinaryStreamAccess.php b/src/qtism/runtime/storage/binary/QtiBinaryStreamAccess.php index <HASH>..<HASH> 100644 --- a/src/qtism/runtime/storage/binary/QtiBinaryStreamAccess.php +++ b/src/qtism/runtime/storage/binary/QtiBinaryStreamAccess.php @@ -81,11 +81,9 @@ use qtism\...
chore: add explicit visibility level to `QtiBinaryStream` constants
oat-sa_qti-sdk
train
php
cd2036f500ebdf9c7dc3ec34cc25870ad815702c
diff --git a/packages/netlify-cms-widget-list/src/ListControl.js b/packages/netlify-cms-widget-list/src/ListControl.js index <HASH>..<HASH> 100644 --- a/packages/netlify-cms-widget-list/src/ListControl.js +++ b/packages/netlify-cms-widget-list/src/ListControl.js @@ -181,7 +181,7 @@ export default class ListControl exte...
fix(widget-list): fix list item deletion (#<I>)
netlify_netlify-cms
train
js
baf9292f878781918c5751d2afaff7d39ef4e776
diff --git a/test/xccdf/session_test.rb b/test/xccdf/session_test.rb index <HASH>..<HASH> 100644 --- a/test/xccdf/session_test.rb +++ b/test/xccdf/session_test.rb @@ -29,4 +29,25 @@ class TestSession < Test::Unit::TestCase s.load s.evaluate end + + def test_session_export + s = OpenSCAP::Xccdf::Session...
test: Result DataStream export.
OpenSCAP_ruby-openscap
train
rb
89c19e5b179a9527ef94c12a55634e95eb079d28
diff --git a/src/Zipkin/Propagation/Map.php b/src/Zipkin/Propagation/Map.php index <HASH>..<HASH> 100644 --- a/src/Zipkin/Propagation/Map.php +++ b/src/Zipkin/Propagation/Map.php @@ -34,8 +34,16 @@ class Map implements Getter, Setter return null; } - $lcCarrier = \array_change...
fix(propagation): fixes map lookup for case insensitiviness. (#<I>)
openzipkin_zipkin-php
train
php
06644770c8254b105d9ac1b978797d2a93cbdb83
diff --git a/src/rest/HTTPError.js b/src/rest/HTTPError.js index <HASH>..<HASH> 100644 --- a/src/rest/HTTPError.js +++ b/src/rest/HTTPError.js @@ -1,7 +1,7 @@ 'use strict'; /** - * Represents a HTTP error from a request. + * Represents an HTTP error from a request. * @extends Error */ class HTTPError extends E...
docs: grammar fixes (#<I>)
discordjs_discord.js
train
js,js
a7a6e17e0d4a66bc04b90b50303a9b78972e7d9b
diff --git a/gridsome/lib/server/createExpressServer.js b/gridsome/lib/server/createExpressServer.js index <HASH>..<HASH> 100644 --- a/gridsome/lib/server/createExpressServer.js +++ b/gridsome/lib/server/createExpressServer.js @@ -40,9 +40,9 @@ module.exports = async (app, options = {}) => { message: err.messa...
fix(pages): set page context in dev mode (#<I>) The page context was an empty object if the template had a page-query.
gridsome_gridsome
train
js
0b9e84b4ba3546fe5bacc23412d9c78ad068f2b9
diff --git a/lib/BaseWidget.js b/lib/BaseWidget.js index <HASH>..<HASH> 100644 --- a/lib/BaseWidget.js +++ b/lib/BaseWidget.js @@ -15,9 +15,11 @@ function BaseWidget (opts) { if (self instanceof BaseWidget) blessed.Box.call(self, opts); // this should not be called if an element inherits from built-in blessed classe...
feat(logging): add some useful init logging to basewidget
slap-editor_base-widget
train
js
8e963f9079b62ef1b6baa48c0c755941184202b9
diff --git a/src/cli/bin.js b/src/cli/bin.js index <HASH>..<HASH> 100755 --- a/src/cli/bin.js +++ b/src/cli/bin.js @@ -31,11 +31,6 @@ const cli = yargs type: 'string', default: '' }) - .option('local', { - desc: 'Run the command locally, instead of using the daemon', - type: 'boolean', - default:...
fix: remove local option from global commands (#<I>)
ipfs_js-ipfs
train
js,js
d6161966c53565bb28f22f934fcae3e952b6fd20
diff --git a/app/interactors/get_posts.rb b/app/interactors/get_posts.rb index <HASH>..<HASH> 100644 --- a/app/interactors/get_posts.rb +++ b/app/interactors/get_posts.rb @@ -1,7 +1,7 @@ class GetPosts include Interactor - SEARCH_PARAMS = %w{q categories industries type job_phase post_type author} + SEARCH_PARA...
fix: has_search_params? should now work, directing callers of GetPosts to correct SearchablePost method
cortex-cms_cortex
train
rb
9254447452d7c80b28241f2a70e8dc6d37867ada
diff --git a/aws/resource_aws_appconfig_deployment_strategy_test.go b/aws/resource_aws_appconfig_deployment_strategy_test.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_appconfig_deployment_strategy_test.go +++ b/aws/resource_aws_appconfig_deployment_strategy_test.go @@ -25,7 +25,7 @@ func TestAccAWSAppConfigDep...
test: fix the expected length of tags
terraform-providers_terraform-provider-aws
train
go
2a8eeb52a0114a223444b3ea4cb55b323588183f
diff --git a/src/reducer/module.js b/src/reducer/module.js index <HASH>..<HASH> 100644 --- a/src/reducer/module.js +++ b/src/reducer/module.js @@ -97,7 +97,9 @@ export default function (state: NavigationState, action: NavigationAction): Navi _.update(newState, `${normalizePath(pathOfClosestTabs)}.index`, () => i...
fix(reducer): allow pop action in tabs
winoteam_react-router-navigation
train
js
857ad91ce277bd96b30ebaff3ab5026e945c073f
diff --git a/test/utils/interface-common-factory.js b/test/utils/interface-common-factory.js index <HASH>..<HASH> 100644 --- a/test/utils/interface-common-factory.js +++ b/test/utils/interface-common-factory.js @@ -5,12 +5,13 @@ const each = require('async/each') const IPFSFactory = require('ipfsd-ctl') const ipfsCli...
test: merge util factory spawn options (#<I>) Previously the spawnOptions defaults were not being included if a test specified them. This would result in some tests dialing out to the Bootstrap nodes, or using mdns when not desired. This resolves that by using 'merge-options' to include defaults.
ipfs_js-ipfs
train
js
70a5ecd370b03e1bf77077d7ae33523d9c0aba84
diff --git a/test/transport.js b/test/transport.js index <HASH>..<HASH> 100644 --- a/test/transport.js +++ b/test/transport.js @@ -100,6 +100,8 @@ describe('Transport', function () { }); describe('options', function () { + console.log('¯\\_(ツ)_/¯'); + return; it('should accept an `agent` option for W...
test: temporarily disable breaking tests after ws regression
socketio_engine.io-client
train
js
ed99c62fc81c7886484a55493c5502cb900832ea
diff --git a/gridsome/lib/server/Server.js b/gridsome/lib/server/Server.js index <HASH>..<HASH> 100644 --- a/gridsome/lib/server/Server.js +++ b/gridsome/lib/server/Server.js @@ -105,6 +105,7 @@ class Server { const echo = sockjs.createServer({ log: () => null }) echo.on('connection', connection => { + ...
fix(develop): guard against sockjs `null` argument (#<I>)
gridsome_gridsome
train
js
5a8a8eb0382c0c7bf1bdaa171b2fda23ba771e24
diff --git a/sample/src/about/about.js b/sample/src/about/about.js index <HASH>..<HASH> 100644 --- a/sample/src/about/about.js +++ b/sample/src/about/about.js @@ -21,7 +21,7 @@ export class About { attached() { // let bridge = System.get(System.normalizeSync('aurelia-materialize-bridge')); // this.version ...
chore(sample): increase version
aurelia-ui-toolkits_aurelia-materialize-bridge
train
js
60a2abd91169bf28dbfbca14d9bda9abc79be5a2
diff --git a/src/telegram-driver/index.js b/src/telegram-driver/index.js index <HASH>..<HASH> 100644 --- a/src/telegram-driver/index.js +++ b/src/telegram-driver/index.js @@ -1,13 +1,4 @@ -import { makeTelegramDriver } from './telegram-driver' -import { getEntityFirst, getEntityFirstValue, entityIs } from './entities' ...
refactor(index): rename exports
goodmind_cycle-telegram
train
js
c8a5281863c2997c9d4080e394eab4abbcd154c9
diff --git a/example/basic/api/api.go b/example/basic/api/api.go index <HASH>..<HASH> 100644 --- a/example/basic/api/api.go +++ b/example/basic/api/api.go @@ -18,8 +18,13 @@ import ( // @Failure 404 {object} web.APIError "Can not find ID" // @Router /testapi/get-string-by-int/{some_id} [get] func GetStringByInt(c *g...
fix: variables in the assignment caused compile error (#<I>)
swaggo_swag
train
go
a131cffbff3666c31bf7232ce9b545595ba29d0e
diff --git a/src/__tests__/createMixin.spec.js b/src/__tests__/createMixin.spec.js index <HASH>..<HASH> 100644 --- a/src/__tests__/createMixin.spec.js +++ b/src/__tests__/createMixin.spec.js @@ -144,6 +144,20 @@ describe('mixin use on component', () => { connect, }); }); + + it('should not keep socket p...
fix(mixin): cover #<I> by unit tests
probil_vue-socket.io-extended
train
js
fdb915fc1bae0a326adfe13af2da5213585f0f91
diff --git a/middlewares/flow.js b/middlewares/flow.js index <HASH>..<HASH> 100644 --- a/middlewares/flow.js +++ b/middlewares/flow.js @@ -35,9 +35,14 @@ function repeatAttribute (array, elem) { elem[secret.hasRepeat] = true if (array === undefined) { + elem.innerHTML = '' return } array = Array.f...
perf(repeat): faster cleanup
nx-js_framework
train
js
9a0d8d35aaa9ec94ed8e3a02d41f04f80a61a485
diff --git a/buttons/secondary-button/secondary-button.js b/buttons/secondary-button/secondary-button.js index <HASH>..<HASH> 100644 --- a/buttons/secondary-button/secondary-button.js +++ b/buttons/secondary-button/secondary-button.js @@ -59,7 +59,7 @@ export const SecondaryButton = props => { ...pick(props, [...T...
fix(secondary-button): undefined check -> isNil
commercetools_ui-kit
train
js
8cb301da4eeebb0425d9f055dbca1e639ead78e5
diff --git a/packages/bonde-admin-canary/src/services/auth/api.js b/packages/bonde-admin-canary/src/services/auth/api.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin-canary/src/services/auth/api.js +++ b/packages/bonde-admin-canary/src/services/auth/api.js @@ -1,9 +1,14 @@ import { store } from 'services/red...
feat(admin-canary): add jwtToken in cross-storage on auth api login
nossas_bonde-client
train
js
87be67b814b38d17fd3c5e158ca81c88edac7e43
diff --git a/src/cobra/flux_analysis/deletion.py b/src/cobra/flux_analysis/deletion.py index <HASH>..<HASH> 100644 --- a/src/cobra/flux_analysis/deletion.py +++ b/src/cobra/flux_analysis/deletion.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- import logging -import multiprocessing from builtins import dict, map fro...
refactor: use context manager for multiprocessing.Pool in deletion.py
opencobra_cobrapy
train
py
1773afc6a75ec1c86aa00b6fdd8440ca8b63be68
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -237,8 +237,8 @@ exports.extend = function extend(newConf) { config.values = newConf.values; } } - if (config.timeout > 0) { - idleTimeout = +config.timeout + 6000; + if (config.timeout ...
refactor: Set idle timeout for the connection
avwo_whistle
train
js,js
6f786de3c240a608e604fb0c916df61543898d06
diff --git a/test/integration/test.speech_to_text.js b/test/integration/test.speech_to_text.js index <HASH>..<HASH> 100644 --- a/test/integration/test.speech_to_text.js +++ b/test/integration/test.speech_to_text.js @@ -113,7 +113,7 @@ describe('speech_to_text_integration', function() { speech_to_text.getModels({},...
ci(travis): speech to text making createRecognizeStream tested with travis
watson-developer-cloud_node-sdk
train
js
9a9ce44ee22a03bb2d2925c3c7716c7806062dbe
diff --git a/packages/webpack/mixin.core.js b/packages/webpack/mixin.core.js index <HASH>..<HASH> 100644 --- a/packages/webpack/mixin.core.js +++ b/packages/webpack/mixin.core.js @@ -47,10 +47,6 @@ class WebpackMixin extends Mixin { serverSideRender: true, }), require('webpack-hot-middleware')(co...
refactor(webpack): get rid of now-obsolete middleware
untool_untool
train
js
caaeaab1f7e1cbf0df4e83884c848129b3129e43
diff --git a/packages/@vue/cli-plugin-pwa/__tests__/pwaPlugin.spec.js b/packages/@vue/cli-plugin-pwa/__tests__/pwaPlugin.spec.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli-plugin-pwa/__tests__/pwaPlugin.spec.js +++ b/packages/@vue/cli-plugin-pwa/__tests__/pwaPlugin.spec.js @@ -59,7 +59,7 @@ test('pwa', async (...
test: further bump pwa wait time on CI
vuejs_vue-cli
train
js
6f8ab1a2c36b5b4debdbb93811911f9fd1e5b53e
diff --git a/lib/metrics.js b/lib/metrics.js index <HASH>..<HASH> 100644 --- a/lib/metrics.js +++ b/lib/metrics.js @@ -4,6 +4,14 @@ var debug = require('debug')('workers:metrics'); /** * Periodically log workers utilization metrics. + * + * @example + * + * Workers(engineEndpoint, { + * use: [ + * Metrics + ...
feat(metrics): expose currently active tasks
nikku_camunda-worker-node
train
js
b993a0f78eb58a2d76e5a8018138c5885853af77
diff --git a/imgix/urlbuilder.py b/imgix/urlbuilder.py index <HASH>..<HASH> 100644 --- a/imgix/urlbuilder.py +++ b/imgix/urlbuilder.py @@ -127,8 +127,8 @@ class UrlBuilder(object): _path = path[:] # If the path is prefixed with a forward slash, # remove it. - if path[0] == "/": - ...
refactor: don't reuse argument path
imgix_imgix-python
train
py
b4b1bff7397bd9e76c0972894b2c1fb3709fb5ca
diff --git a/packages/helix-shared-bounce/src/bounce.js b/packages/helix-shared-bounce/src/bounce.js index <HASH>..<HASH> 100644 --- a/packages/helix-shared-bounce/src/bounce.js +++ b/packages/helix-shared-bounce/src/bounce.js @@ -38,9 +38,9 @@ function bounce(func, { responder, timeout = 500 }) { // run the qui...
refactor(bounce): move function call into catch block
adobe_helix-shared
train
js
463b73115bf9a4871d775ec6501be50b08eef317
diff --git a/packages/webpack-cli/lib/webpack-cli.js b/packages/webpack-cli/lib/webpack-cli.js index <HASH>..<HASH> 100644 --- a/packages/webpack-cli/lib/webpack-cli.js +++ b/packages/webpack-cli/lib/webpack-cli.js @@ -402,6 +402,7 @@ class WebpackCLI { if (option.configs) { let needNegativeOption = false...
fix: respect `negatedDescription` for flags from schema (#<I>)
webpack_webpack-cli
train
js
39212b2e04dd395e416e71a7423245020e0d2034
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -125,6 +125,8 @@ intersphinx_mapping = { 'python': ('https://docs.python.org/2.7', None) } +autodoc_member_order = 'bysource' + # -- Options for HTML output ------------------------------------------...
docs: Change order of API documentation to bysource
zhanglab_psamm
train
py
91dfd21404a48cfa60e6ce8c1f227c24e4bcba2b
diff --git a/plugins/html-entry/lib/index.js b/plugins/html-entry/lib/index.js index <HASH>..<HASH> 100644 --- a/plugins/html-entry/lib/index.js +++ b/plugins/html-entry/lib/index.js @@ -14,6 +14,14 @@ exports.apply = api => { server = context.server }) + api.hook('createWebpackChain', chain => { + chain....
fix(html-entry): fix json assets support in html entry (#<I>) * use file-loader to handle static assets in html entry * file-loader is already used
egoist_poi
train
js
d56c77670788d4b3a1358ffe4cb4c98b6ed84f59
diff --git a/src/aks-preview/azext_aks_preview/custom.py b/src/aks-preview/azext_aks_preview/custom.py index <HASH>..<HASH> 100644 --- a/src/aks-preview/azext_aks_preview/custom.py +++ b/src/aks-preview/azext_aks_preview/custom.py @@ -1173,9 +1173,11 @@ def aks_update(cmd, # pylint: disable=too-many-statements,too-...
fix: avoid clearing the autoscaler profile when its not specified (#<I>)
Azure_azure-cli-extensions
train
py
30ca397dd3264c86c370ebb4614615597448ec0d
diff --git a/guake/utils.py b/guake/utils.py index <HASH>..<HASH> 100644 --- a/guake/utils.py +++ b/guake/utils.py @@ -169,7 +169,7 @@ class FullscreenManager: if not window_state & Gdk.WindowState.WITHDRAWN: if self.is_fullscreen(): self.fullscreen() - else: + ...
fix: #<I> guake follows mouse focus when have 2 monitors
Guake_guake
train
py
bf14e0ee0e990ca33bbdf38deecc8860495dc83a
diff --git a/packages/actionmenu/src/react/index.js b/packages/actionmenu/src/react/index.js index <HASH>..<HASH> 100644 --- a/packages/actionmenu/src/react/index.js +++ b/packages/actionmenu/src/react/index.js @@ -199,7 +199,7 @@ function usePrevious(value) { const Item = props => { const { icon, isActive, ...re...
style(actionmenu): uses more meaningful var name
pluralsight_design-system
train
js
fa9d1ebed05d73f311c02afd27dcf67b7cc60cca
diff --git a/src/Hide/index.js b/src/Hide/index.js index <HASH>..<HASH> 100644 --- a/src/Hide/index.js +++ b/src/Hide/index.js @@ -8,7 +8,7 @@ import getDisplay from "./helpers/getDisplay"; import type { Props } from "./index"; -const StyledHide = styled.span` +const StyledHide = styled(({ on, block, theme, ...pro...
fix(Hide): omit rendering of on property (#<I>)
kiwicom_orbit-components
train
js
1de5a2b13190910a9fecea0c306c60994183464a
diff --git a/lib/registry/tarball.js b/lib/registry/tarball.js index <HASH>..<HASH> 100644 --- a/lib/registry/tarball.js +++ b/lib/registry/tarball.js @@ -31,10 +31,16 @@ function tarball (spec, opts) { module.exports.fromManifest = fromManifest function fromManifest (manifest, spec, opts) { opts = optCheck(opts) ...
fix(registry): only send auth info if tarball is hosted on the same registry
zkat_pacote
train
js
0809cd5a758d292110cfd836b79d7b096ebacc3d
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -12,7 +12,7 @@ function Config(options) { this.isListForm = options.isListForm; this.requireConfig = options.config || options.requireConfig; this.webpackConfig = options.webpackConfig; - this.detectiveConfig = optio...
fix: pass detective config through cloning
dependents_node-dependency-tree
train
js
7c09d89d8b890a1a7018e051ec2491899b6d66f5
diff --git a/src/service/translate.js b/src/service/translate.js index <HASH>..<HASH> 100644 --- a/src/service/translate.js +++ b/src/service/translate.js @@ -1101,7 +1101,7 @@ angular.module('pascalprecht.translate').provider('$translate', ['$STORAGE_KEY', var getFallbackTranslationInstant = function (langKey, ...
fix(service): fix npe when resolving fallback language for `instant` Relates #<I>
angular-translate_angular-translate
train
js
55feccd4fd58e364b6c3a29453b4faf99d304850
diff --git a/test/ejs.js b/test/ejs.js index <HASH>..<HASH> 100644 --- a/test/ejs.js +++ b/test/ejs.js @@ -283,7 +283,7 @@ suite('<%%', function () { }); test('work without an end tag', function () { assert.equal(ejs.render('<%%'), '<%'); - assert.equal(ejs.render(fixture('literal.ejs'), {delimiter: ' '})...
test: fix options in locals object
mde_ejs
train
js
60fdf22cc804f79b800b1c03ea5ee97e061b9a15
diff --git a/fuse/mount/fuse.go b/fuse/mount/fuse.go index <HASH>..<HASH> 100644 --- a/fuse/mount/fuse.go +++ b/fuse/mount/fuse.go @@ -33,11 +33,15 @@ func NewMount(p goprocess.Process, fsys fs.FS, mountpoint string, allow_other bo var conn *fuse.Conn var err error + var mountOpts = []fuse.MountOption{ + fuse.Ma...
perf: use performance-enhancing FUSE mount options (cherry picked from commit 7b<I>fbb<I>aa2b<I>a<I>e<I>cbdca8c1f<I>ff<I>)
ipfs_go-ipfs
train
go
00f87f8988919d758ad8005ffefa5ede537c1b64
diff --git a/packages/react/src/components/Tabs/Tabs-story.js b/packages/react/src/components/Tabs/Tabs-story.js index <HASH>..<HASH> 100644 --- a/packages/react/src/components/Tabs/Tabs-story.js +++ b/packages/react/src/components/Tabs/Tabs-story.js @@ -58,7 +58,7 @@ const TabContentRenderedOnlyWhenSelected = ({ .....
docs(tabs): fix react story class name typo & prefix usage (#<I>)
carbon-design-system_carbon-components
train
js
2d12d9d97bf5a3350852b00dd4de91ae95437bde
diff --git a/src/idempotent-bind.js b/src/idempotent-bind.js index <HASH>..<HASH> 100644 --- a/src/idempotent-bind.js +++ b/src/idempotent-bind.js @@ -2,6 +2,19 @@ "use strict"; import WeakMap from "es6-weak-map" var map = new WeakMap(); +// for WeakMap Reference, not to use bind +function getGlobal() { + if (typ...
fix(lib): fix wrong reference to global
azu_idempotent-bind
train
js
265c9859e8625a8e8f743923d5557d654e782317
diff --git a/src/record/record-handler.js b/src/record/record-handler.js index <HASH>..<HASH> 100644 --- a/src/record/record-handler.js +++ b/src/record/record-handler.js @@ -293,7 +293,7 @@ RecordHandler.prototype._createAndUpdate = function (socketWrapper, message) { const transition = this._transitions[recordName...
fix: pass version number into add() call of transition
deepstreamIO_deepstream.io
train
js
7507df83dd81a978eadd330cfc2837bcf08671ff
diff --git a/app/index.js b/app/index.js index <HASH>..<HASH> 100644 --- a/app/index.js +++ b/app/index.js @@ -79,7 +79,7 @@ module.exports = class Generator extends YeomanGenerator { prompts.push({ type: 'input', name: 'name', - message: 'name:', + message: 'package name:', ...
fix: Tweak prompts to mirror npm cli \#<I>
caseyWebb_generator-npm-init
train
js
08949561aeb193fe375bf9f4a698c7700b87ef5d
diff --git a/websocketproxy_test.go b/websocketproxy_test.go index <HASH>..<HASH> 100644 --- a/websocketproxy_test.go +++ b/websocketproxy_test.go @@ -5,12 +5,13 @@ import ( "net/http" "net/url" "testing" + "time" "github.com/gorilla/websocket" ) var ( - serverURL = "ws://localhost:7777" + serverURL = "...
test: add timout to let the server bind
koding_websocketproxy
train
go
8881b0f68e8e93c5e245c6258cc9c465b7a82963
diff --git a/scripts/monorepo-tests.js b/scripts/monorepo-tests.js index <HASH>..<HASH> 100644 --- a/scripts/monorepo-tests.js +++ b/scripts/monorepo-tests.js @@ -27,7 +27,7 @@ function checkMonorepoSymlinks() { }))) .then((items) => { items.forEach((item) => { - if (!item.stats.isSymbolicLink()...
fix: update monorepo tests to exclude fast-sass-loader package being installed from github
bolt-design-system_bolt
train
js
47c2ccf29afcfb80dbe9b9de0c5dce5eed594140
diff --git a/enforcer.go b/enforcer.go index <HASH>..<HASH> 100644 --- a/enforcer.go +++ b/enforcer.go @@ -262,6 +262,10 @@ func (e *Enforcer) SetEffector(eft effect.Effector) { // ClearPolicy clears all policy. func (e *Enforcer) ClearPolicy() { + if e.dispatcher != nil && e.autoNotifyDispatcher { + _ = e.dispatc...
fix: support forward the ClearPolicy to dispatcher
casbin_casbin
train
go
6544a4dfb24ccef4adc24bed98280a6042878d57
diff --git a/src/components/btn/QBtnDropdown.js b/src/components/btn/QBtnDropdown.js index <HASH>..<HASH> 100644 --- a/src/components/btn/QBtnDropdown.js +++ b/src/components/btn/QBtnDropdown.js @@ -42,8 +42,7 @@ export default { 'q-icon', { props: { - name: this.$q.icon.input.dr...
fix(QBtnDropdown): textColor prop for arrow
quasarframework_quasar
train
js
7ab4c555500eb76d9fc4e959d4dcb19a54bc4421
diff --git a/classes/PlaylistArchiveStream.php b/classes/PlaylistArchiveStream.php index <HASH>..<HASH> 100644 --- a/classes/PlaylistArchiveStream.php +++ b/classes/PlaylistArchiveStream.php @@ -82,8 +82,11 @@ class PlaylistArchiveStream extends TarArchive protected function send($data) { $pos = ftel...
docs: Add comments to some tricky parts
Rudloff_alltube
train
php
0beca0e9c5b60fca122d12cd4c1d29034cbb7f61
diff --git a/tests/index.js b/tests/index.js index <HASH>..<HASH> 100644 --- a/tests/index.js +++ b/tests/index.js @@ -7,6 +7,10 @@ global.window = { } global.CustomEvent = function () {} +global.document = { + addEventListener: function () {} +} + var Model = function () { return function () { return {
fix(test): document not defined in test
cerebral-legacy_cerebral-module-devtools
train
js
ab2e5ef57783ddcc7c2bb4926a19c1c16f0f9ba6
diff --git a/src/cli.test.js b/src/cli.test.js index <HASH>..<HASH> 100644 --- a/src/cli.test.js +++ b/src/cli.test.js @@ -133,7 +133,9 @@ test("installs packages correctly even if package name ends with '-0'", t => { }); }); -test.only("doesn't replace existing installed peer dependencies", t => { +// Work on th...
test: hold off on tests for #<I> for the time being
nathanhleung_install-peerdeps
train
js
ed7935b65f40346de7acd9e3f5b643b0716a1a67
diff --git a/packages/neon-js/webpack.config.js b/packages/neon-js/webpack.config.js index <HASH>..<HASH> 100644 --- a/packages/neon-js/webpack.config.js +++ b/packages/neon-js/webpack.config.js @@ -20,7 +20,7 @@ module.exports = function() { path: path.resolve(__dirname, "dist"), filename: "browser.js",...
fix(webpack): Remove clean-webpack-plugin
CityOfZion_neon-js
train
js,js
b8eabd30a24f914b0fd5fd6bf177ced9b5da337e
diff --git a/src/components/tabs/js/tabsController.js b/src/components/tabs/js/tabsController.js index <HASH>..<HASH> 100644 --- a/src/components/tabs/js/tabsController.js +++ b/src/components/tabs/js/tabsController.js @@ -635,11 +635,15 @@ function MdTabsController ($scope, $element, $window, $mdConstant, $mdTabInkRip...
chore(tabs): adds comments describing previous commit
angular_material
train
js
ba2972220910b608257d38d007591820e617e6d1
diff --git a/config/webpack.common.js b/config/webpack.common.js index <HASH>..<HASH> 100644 --- a/config/webpack.common.js +++ b/config/webpack.common.js @@ -9,8 +9,8 @@ const helpers = require('./helpers'); * Webpack Plugins */ // problem with copy-webpack-plugin -var CopyWebpackPlugin = (CopyWebpackPlugin = req...
chore(webpack): use current version of CopyWebpackPlugin
inchingorg_xdata-web
train
js
0e6aa9429c77dbeca13c467ff8104d5bfb0a42bd
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -79,7 +79,7 @@ setup( # https://packaging.python.org/specifications/core-metadata/#home-page-optional # # Optional - url="<URL>", + url="https://github.com/alexseitsinger/page_scrapers", # This shou...
chore: Updates setup.py.
alexseitsinger_page_scrapers
train
py
7736db46c0cdf98d63829c553e95c1084280ff0a
diff --git a/tests/PhpPact/Standalone/ProviderVerifier/VerifierTest.php b/tests/PhpPact/Standalone/ProviderVerifier/VerifierTest.php index <HASH>..<HASH> 100644 --- a/tests/PhpPact/Standalone/ProviderVerifier/VerifierTest.php +++ b/tests/PhpPact/Standalone/ProviderVerifier/VerifierTest.php @@ -198,8 +198,8 @@ class Ver...
fix: simplified test assertion to fit windows line breaks
pact-foundation_pact-php
train
php
59f816e433e29c4cf26b613e90b39dc9d298ba5c
diff --git a/front_end/ndb/FileSystem.js b/front_end/ndb/FileSystem.js index <HASH>..<HASH> 100644 --- a/front_end/ndb/FileSystem.js +++ b/front_end/ndb/FileSystem.js @@ -95,8 +95,12 @@ Ndb.FileSystem = class extends Persistence.PlatformFileSystem { */ async requestFileContent(path, callback) { const result...
fix(frontend): report image file content as base<I> Image should be reported using base<I> encoding.
GoogleChromeLabs_ndb
train
js
20e2a03f3df2378f284165d373b505dbc3707b6e
diff --git a/src/config.php b/src/config.php index <HASH>..<HASH> 100644 --- a/src/config.php +++ b/src/config.php @@ -8,9 +8,6 @@ return [ * [ * 'class' => \craft\elements\Entry::class, * 'event' => \craft\elements\Entry::EVENT_AFTER_SAVE, - * 'criteria' => [ - * ...
chore: removed the criteria from the config file
Rias500_craft-notifications
train
php
f3c1889701d4128ab96d2bccd55842b4faf006ac
diff --git a/lib/record_store/zone/config/implicit_record_template.rb b/lib/record_store/zone/config/implicit_record_template.rb index <HASH>..<HASH> 100644 --- a/lib/record_store/zone/config/implicit_record_template.rb +++ b/lib/record_store/zone/config/implicit_record_template.rb @@ -28,7 +28,7 @@ module RecordStore ...
fix: each_record is not optional
Shopify_record_store
train
rb
1d24006e69aaa6bd14bf821db343ef48bf145ebb
diff --git a/certificate/certificates.go b/certificate/certificates.go index <HASH>..<HASH> 100644 --- a/certificate/certificates.go +++ b/certificate/certificates.go @@ -540,10 +540,10 @@ func hasPreferredChain(issuer []byte, preferredChain string) (bool, error) { return false, err } - for _, cert := range cert...
fix: preferred chain only match root name (#<I>)
go-acme_lego
train
go
89c3d2f257ce2a48bf8ea154e8891c4f42fdd819
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -112,10 +112,9 @@ module.exports.ServerController = function (state) { accessors: { get: function (path) { path = typeof path === 'string' ? path.split('.') : path - while (path.leng...
fix(ServerController): return correct state in get accessor
cerebral_cerebral
train
js
a5126648e15e8e581861a70dd1c0e199129b0a36
diff --git a/server/server.go b/server/server.go index <HASH>..<HASH> 100644 --- a/server/server.go +++ b/server/server.go @@ -635,7 +635,7 @@ func (a *ArgoCDServer) translateGrpcCookieHeader(ctx context.Context, w http.Res } func (a *ArgoCDServer) setTokenCookie(token string, w http.ResponseWriter) error { - cooki...
fix: use basehref as cookie-path (#<I>)
argoproj_argo-cd
train
go
7705d6851307e14bf0859c3dece17472b11cd56b
diff --git a/src/I18n.php b/src/I18n.php index <HASH>..<HASH> 100644 --- a/src/I18n.php +++ b/src/I18n.php @@ -77,6 +77,11 @@ class I18n extends Adapter implements ServiceAwareInterface static::$instance->undefinedStrings = []; } + public function exists($index) + { + return isset($this->lo...
fix: compatible with phalcon <I>
phwoolcon_phwoolcon
train
php,php
0829e2d419cc448ba2ef5d503cb80b765ba0faf0
diff --git a/intranet/apps/users/models.py b/intranet/apps/users/models.py index <HASH>..<HASH> 100644 --- a/intranet/apps/users/models.py +++ b/intranet/apps/users/models.py @@ -320,9 +320,9 @@ class User(AbstractBaseUser, PermissionsMixin): """ - for email in self.emails.all(): - if ema...
refactor(users): improve efficiency of User.tj_email slightly
tjcsl_ion
train
py
0200af5619a778b6e6acc9df39cd0ac02b70ead4
diff --git a/language/en/date-time.js b/language/en/date-time.js index <HASH>..<HASH> 100644 --- a/language/en/date-time.js +++ b/language/en/date-time.js @@ -14,6 +14,7 @@ module.exports = function(language) { .skipPunctuation() .add(time, v => v[0]) + .add(date, v => v[0]) .add([ time, date ], v => comb...
feat(en): Date Time should support only dates
aholstenson_ecolect-js
train
js,js
810ecb9a92bd79d07764afdf5509e052d25881ab
diff --git a/uvicorn/main.py b/uvicorn/main.py index <HASH>..<HASH> 100644 --- a/uvicorn/main.py +++ b/uvicorn/main.py @@ -225,12 +225,13 @@ def run( sock = socket.fromfd(fd, socket.AF_UNIX, socket.SOCK_STREAM) logger = get_logger(log_level) - loop_setup = import_from_string(LOOP_SETUPS[loop]) h...
feat: Allow caller to provide `loop` instance (#<I>)
encode_uvicorn
train
py
88c668f33d96d0d73e877e97ff513aed6a4b67bc
diff --git a/lib/handlebars.js b/lib/handlebars.js index <HASH>..<HASH> 100644 --- a/lib/handlebars.js +++ b/lib/handlebars.js @@ -26,6 +26,13 @@ Handlebars.registerHelper('testing', function(route, method, basepath) { } }); +Handlebars.registerHelper('path', function(route, basepath) { + if (basepath) { + retu...
fix: fixed Jennie's suggestions part 2
ibm-developer_generator-ibm-core-node-express
train
js
62451039ecca70a5d6d836e822200adbf2d0dda7
diff --git a/core/corehttp/gateway_handler.go b/core/corehttp/gateway_handler.go index <HASH>..<HASH> 100644 --- a/core/corehttp/gateway_handler.go +++ b/core/corehttp/gateway_handler.go @@ -289,7 +289,7 @@ func (i *gatewayHandler) getOrHeadHandler(w http.ResponseWriter, r *http.Request } // write to request - ...
fix(gateway): serve the index with serveFile
ipfs_go-ipfs
train
go
b61e0778aafb20804aec0cdc91a80913894f27cd
diff --git a/test/raven.client.js b/test/raven.client.js index <HASH>..<HASH> 100644 --- a/test/raven.client.js +++ b/test/raven.client.js @@ -217,6 +217,12 @@ describe('raven.Client', function() { }; client.captureMessage('wtf?'); }); + + it('should call callback even without a config', function(...
test: dont throw exception when called captureMessage without config phase
getsentry_sentry-javascript
train
js
2b1c5d8a9a40021d82368a399385a4f3bb2f59e1
diff --git a/js/nextras.datagrid.js b/js/nextras.datagrid.js index <HASH>..<HASH> 100644 --- a/js/nextras.datagrid.js +++ b/js/nextras.datagrid.js @@ -39,10 +39,14 @@ $.nette.ext('datagrid', { }); }, before: function(xhr, settings) { - this.grid = settings.nette.el.parents('.grid'); + if (('nette' in settings)...
fix: prevent js errors in case of using nette.ajax while no grid is present on recent page
nextras_datagrid
train
js
ddac64b2c4f20dd12dd02face0162beec85e600e
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -26,6 +26,7 @@ module.exports.reporter = function (reporterType) { return through.obj(function (file, encoding, callback) { let error = null + , foundIssues = false , convertedFile, report...
refactor(src): reduce code duplication
dustinspecker_gulp-alex
train
js
636e7b34042ea450bc3170d6ab5bb1461acff1b5
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -93,7 +93,9 @@ function expand(extensions, doc) { Object.keys(doc).forEach(function(key) { if (doc[key] && typeof doc[key] === 'object') { if (doc[key].$eval) { - const context = vm.createContext(doc); + ...
feat: ability to require from $eval
vkarpov15_dookie
train
js
40410ffbd73a43d4307a28b80b7bc640101b7029
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -109,7 +109,7 @@ gulp.task('scripts', function() { .pipe(rename({ extname: '.min.js' })) - .pipe(gulp.dest(buildConfig.dist)); + .pipe(gulp.dest(buildConfig.docsDist + '/lib')); }); gulp....
chore(build): minify into correct directory
angular_material
train
js
8cc7be21194f770e16afd51c2b0eec11b97bcd2d
diff --git a/completions.go b/completions.go index <HASH>..<HASH> 100644 --- a/completions.go +++ b/completions.go @@ -669,6 +669,10 @@ to enable it. You can execute the following once: echo "autoload -U compinit; compinit" >> ~/.zshrc +To load completions in your current shell session: + + source <(%[1]s comple...
feat: Add how to load completions in your current zsh session (#<I>)
spf13_cobra
train
go
b53da1f7c049c09c35938426a9995328b820836d
diff --git a/client/index.js b/client/index.js index <HASH>..<HASH> 100644 --- a/client/index.js +++ b/client/index.js @@ -16,7 +16,6 @@ import en from 'react-intl/locale-data/en' import Raven from 'raven-js' import DSConf from '~server/config' - const __PROD__ = DSConf.nodeEnv === 'production' || DSConf.nodeEnv =...
fix(raven): not install raven in development env
nossas_bonde-client
train
js
db66a206e8497fcf4b3f6d49c959936eef5bf94e
diff --git a/packages/site/pages/roadmap.js b/packages/site/pages/roadmap.js index <HASH>..<HASH> 100644 --- a/packages/site/pages/roadmap.js +++ b/packages/site/pages/roadmap.js @@ -22,10 +22,6 @@ const work = { { title: 'Non-React CSS Support', tags: ['Component'] - }, - { - title: 'Icon...
refactor(site): update roadmap
pluralsight_design-system
train
js
879a9bbcc17d51fe72f15ded903515caded739bf
diff --git a/intranet/apps/dashboard/views.py b/intranet/apps/dashboard/views.py index <HASH>..<HASH> 100644 --- a/intranet/apps/dashboard/views.py +++ b/intranet/apps/dashboard/views.py @@ -304,6 +304,10 @@ def get_announcements_list(request, context): else: announcements = Announcement.objects.v...
perf(dashboard): prefetch AnnouncmentRequests when listing announcements
tjcsl_ion
train
py
cf8cd9248b2801c7b564182566e599a577e4c60b
diff --git a/packages/metascraper-media-provider/src/get-media/twitter-info.js b/packages/metascraper-media-provider/src/get-media/twitter-info.js index <HASH>..<HASH> 100644 --- a/packages/metascraper-media-provider/src/get-media/twitter-info.js +++ b/packages/metascraper-media-provider/src/get-media/twitter-info.js @...
fix: reset token every <I>min
microlinkhq_metascraper
train
js
8e05c4fdcf587c26e14a10607681a276a314b983
diff --git a/test/callback.js b/test/callback.js index <HASH>..<HASH> 100644 --- a/test/callback.js +++ b/test/callback.js @@ -50,7 +50,16 @@ describe('Callback', function () { bindings.call_cb() assert.equal(1, invokeCount) - process.nextTick(done) + setTimeout(function () { + gc() // ...
test: make the multiple callback invocation test fail I think
node-ffi-napi_node-ffi-napi
train
js
19d27497ca0c5bbcfb978d23581285cef03d058f
diff --git a/tests/system/HTTP/IncomingRequestTest.php b/tests/system/HTTP/IncomingRequestTest.php index <HASH>..<HASH> 100644 --- a/tests/system/HTTP/IncomingRequestTest.php +++ b/tests/system/HTTP/IncomingRequestTest.php @@ -107,7 +107,9 @@ final class IncomingRequestTest extends CIUnitTestCase $this->assert...
docs: move // comments into PHPDoc
codeigniter4_CodeIgniter4
train
php
ec5425d1d30a83fe82e33181881703daa0d3af30
diff --git a/test/integration/test.assistant.v2.js b/test/integration/test.assistant.v2.js index <HASH>..<HASH> 100644 --- a/test/integration/test.assistant.v2.js +++ b/test/integration/test.assistant.v2.js @@ -1,5 +1,6 @@ 'use strict'; +const nock = require('nock'); const watson = require('../../index'); const as...
test(nock): enable net connent for assistant v2 tests
watson-developer-cloud_node-sdk
train
js
ac7abd39ba61337e5edb38be0a4006f411cc8b56
diff --git a/src/Entity/Hydrator/ApiApplicationHydrator.php b/src/Entity/Hydrator/ApiApplicationHydrator.php index <HASH>..<HASH> 100644 --- a/src/Entity/Hydrator/ApiApplicationHydrator.php +++ b/src/Entity/Hydrator/ApiApplicationHydrator.php @@ -84,7 +84,7 @@ class ApiApplicationHydrator extends ClassMethods ...
feat(Applications): api/apply: use canonical urls for contact image
yawik_applications
train
php
769f913e071d603a347b99fad7b9e5766db2ebfc
diff --git a/app/resonantlab/views/overlays/DatasetLibrary/UploadView.js b/app/resonantlab/views/overlays/DatasetLibrary/UploadView.js index <HASH>..<HASH> 100644 --- a/app/resonantlab/views/overlays/DatasetLibrary/UploadView.js +++ b/app/resonantlab/views/overlays/DatasetLibrary/UploadView.js @@ -7,6 +7,7 @@ const SUP...
chore(resonantlab): accept windows excel file mimetype as CSV file
Kitware_candela
train
js
b4098399727924c99a5100e9c13e0cedafadc3ca
diff --git a/config/webpack.vars.js b/config/webpack.vars.js index <HASH>..<HASH> 100644 --- a/config/webpack.vars.js +++ b/config/webpack.vars.js @@ -6,5 +6,5 @@ const production = process.env.NODE_ENV === 'production' module.exports = { production: production, - extractor: new ExtractTextPlugin(`app${productio...
fix: genetares two separate CSS for app and services :ambulance:
cozy_cozy-home
train
js,js
ace9c786844a144c89e705c9ae244068c8692400
diff --git a/superset/views/core.py b/superset/views/core.py index <HASH>..<HASH> 100755 --- a/superset/views/core.py +++ b/superset/views/core.py @@ -726,7 +726,8 @@ class Superset(BaseSupersetView): # pylint: disable=too-many-public-methods @event_logger.log_this @expose("/explore/<datasource_type>/<int:da...
fix(explore): Ensuring parameters key is included (#<I>) * Ensuring parameters key is included * Fixing linter
apache_incubator-superset
train
py