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
88e376c503a8e66a9f83a5aff6a24a69207c9d65
diff --git a/djlotrek/middleware/locale.py b/djlotrek/middleware/locale.py index <HASH>..<HASH> 100644 --- a/djlotrek/middleware/locale.py +++ b/djlotrek/middleware/locale.py @@ -74,7 +74,7 @@ class LangBasedOnPreferences(LocaleMiddleware): and response.status_code == 404 and i18n_patterns_use...
fix: fix redirect loop in language middleware
lotrekagency_djlotrek
train
py
75ad9da95da48e863cecf76a3e5ec7b3eaad78f5
diff --git a/packages/react-ui-screenshot-tests/gemini/input.js b/packages/react-ui-screenshot-tests/gemini/input.js index <HASH>..<HASH> 100644 --- a/packages/react-ui-screenshot-tests/gemini/input.js +++ b/packages/react-ui-screenshot-tests/gemini/input.js @@ -7,7 +7,7 @@ function createPlainSuite(suiteName, selector...
refactor(react-ui-screenshot-tests): use `repeat` for string generation
skbkontur_retail-ui
train
js
dcc2bc598a74f4ed8a2c81dd6696cf4fd5510832
diff --git a/cmd/helm/plugins.go b/cmd/helm/plugins.go index <HASH>..<HASH> 100644 --- a/cmd/helm/plugins.go +++ b/cmd/helm/plugins.go @@ -78,9 +78,11 @@ func loadPlugins(baseCmd *cobra.Command, home helmpath.Home, out io.Writer) { prog.Stdout = out prog.Stderr = os.Stderr if err := prog.Run(); err != ni...
fix(helm): handle errors when plugin command is not found If a 'command:' is not found for a plugin, it will not result in an ExitError, but in a PathError. This prevents that condition from panicing. Closes #<I>
helm_helm
train
go
82e47b345d0398b3816a515fed126b4853342093
diff --git a/packages/store-engine/webpack.config.js b/packages/store-engine/webpack.config.js index <HASH>..<HASH> 100644 --- a/packages/store-engine/webpack.config.js +++ b/packages/store-engine/webpack.config.js @@ -10,6 +10,7 @@ module.exports = { [projectName]: `${__dirname}/${pkg.main}`, }, externals: ...
fix(store-engine): Use Dexie from window namespace to avoid errors with npm's "setimmediate" package (#<I>)
wireapp_wire-web-packages
train
js
4c50714b3bcf469496c3a59a16e90f97e3510168
diff --git a/lib/openapi3.js b/lib/openapi3.js index <HASH>..<HASH> 100644 --- a/lib/openapi3.js +++ b/lib/openapi3.js @@ -151,7 +151,7 @@ function getParameters(data) { data.allHeaders = []; data.headerParameters = []; data.requiredParameters = []; - let uriTemplateStr = data.method.path.split('?')[0...
fix: for random spaces in path keys
Mermade_widdershins
train
js
adf707feea910bf39715cd5e414cc45520233f13
diff --git a/lib/workers/pr/index.js b/lib/workers/pr/index.js index <HASH>..<HASH> 100644 --- a/lib/workers/pr/index.js +++ b/lib/workers/pr/index.js @@ -50,10 +50,7 @@ async function ensurePr(prConfig) { logger.debug( `Branch is configured for branch automerge, branch status) is: ${await getBranchStatus()...
fix(branch): fix PR creation not pending for GitLab (#<I>) When using GitLab, branch status can have status `created` which should be interpreted as pending for PR creation configuration option.
renovatebot_renovate
train
js
d773d6809b37aaafac4b76c34f0435f72747a4aa
diff --git a/test/express-adaptor.test.js b/test/express-adaptor.test.js index <HASH>..<HASH> 100644 --- a/test/express-adaptor.test.js +++ b/test/express-adaptor.test.js @@ -53,25 +53,21 @@ suite('Adaption for express application', function() { plugins: [testRestPlugin, testSocketPlugin] }); - ...
test: return response on receiving request instead of using wait() wait() makes test fragile.
droonga_express-droonga
train
js
f2f41d613681d42f2b9877aeedf929e6feffc904
diff --git a/test/local/forking/delete.js b/test/local/forking/delete.js index <HASH>..<HASH> 100644 --- a/test/local/forking/delete.js +++ b/test/local/forking/delete.js @@ -50,5 +50,5 @@ describe("Forking Deletion", () => { assert.ok(await instance.methods.test().call()); assert.ok(await instance.methods....
test: increase timeout on slow test
trufflesuite_ganache-core
train
js
d2fc2556af3992f5833ad8c9aa182207033a8260
diff --git a/optlang/cplex_interface.py b/optlang/cplex_interface.py index <HASH>..<HASH> 100644 --- a/optlang/cplex_interface.py +++ b/optlang/cplex_interface.py @@ -602,13 +602,14 @@ class Model(interface.Model): def __setstate__(self, repr_dict): tmp_file = tempfile.mktemp(suffix=".sav") open(...
fix: get rid of annoying "File already contains basis" warning in cplex_interface
biosustain_optlang
train
py
49b7b2b8e4abfd94725d93abc1833fbdfd5cad09
diff --git a/src/compressor.js b/src/compressor.js index <HASH>..<HASH> 100644 --- a/src/compressor.js +++ b/src/compressor.js @@ -15,7 +15,7 @@ const compressibles = [ '.ico' ]; -const COMPRESSION_LEVEL = zlib.constants.Z_BEST_COMPRESSION; +const COMPRESSION_LEVEL = (zlib.constants || zlib).Z_BEST_COMPRESSION; ...
fix: too modern for node 6
Brightspace_frau-publisher
train
js
10df01907526e20ef6c72544a1b9578fd341d41f
diff --git a/lib/common/asar.js b/lib/common/asar.js index <HASH>..<HASH> 100644 --- a/lib/common/asar.js +++ b/lib/common/asar.js @@ -590,11 +590,11 @@ return files } - const {internalModuleReadFile} = process.binding('fs') - process.binding('fs').internalModuleReadFile = function (p) { + const ...
fix: can't load module error when app is packaged due to change in node.js(<URL>) internalModuleReadFile has been renamed to internalModuleReadJSON, and in vendor/node/lib/internal/modules/cjs/loader.js it will call internalModuleReadJSON and result in can't read the package.json file.
electron_electron
train
js
464d6e600cceab6af58aa6c4f1ef756da5f9ebfa
diff --git a/index.js b/index.js index <HASH>..<HASH> 100755 --- a/index.js +++ b/index.js @@ -1,9 +1,9 @@ #!/usr/bin/env node -var extendscriptr = require('commander'); -var packageJson = require('./package.json'); -var browserify = require('browserify'); -var prependify = require('prependify'); -var fs = require('fs...
feat(release): still trying to trick semantic relase foo Closes #<I> #<I>
ExtendScript_extendscriptr
train
js
7ce5cc63dc67929d93810b0f0d38e3b3db245fb4
diff --git a/test/test-script-only.js b/test/test-script-only.js index <HASH>..<HASH> 100644 --- a/test/test-script-only.js +++ b/test/test-script-only.js @@ -10,7 +10,7 @@ require('./build-example')('suite', ['--scripts'], function(er) { var info = require(path.resolve('package.json')); assert.equal(info.name, '...
test: shelljs exec silent is required under io.js
strongloop_strong-build
train
js
f3cd9866a699f17993f66e8adb748c0adc023d4f
diff --git a/go/vt/vtctl/reparentutil/emergency_reparenter_test.go b/go/vt/vtctl/reparentutil/emergency_reparenter_test.go index <HASH>..<HASH> 100644 --- a/go/vt/vtctl/reparentutil/emergency_reparenter_test.go +++ b/go/vt/vtctl/reparentutil/emergency_reparenter_test.go @@ -110,8 +110,6 @@ func TestEmergencyReparenter_...
test: cannot run tests that use durability policies in parallel, otherwise they start overriding each others durability policies configuration
vitessio_vitess
train
go
5eda264a9f1679aae66913a36c798a814d63040c
diff --git a/api.php b/api.php index <HASH>..<HASH> 100644 --- a/api.php +++ b/api.php @@ -8322,6 +8322,7 @@ namespace Tqdev\PhpCrudApi\OpenApi { $this->openapi->set("paths|$path|$method|requestBody|\$ref", "#/components/requestBodies/$operationType"); } ...
fix: openapi specs require unique operationId field to be set on each operation
mevdschee_php-crud-api
train
php
1b36f05739c1e8ece87e74cb9796fb31368b8f13
diff --git a/addon/services/hoodie.js b/addon/services/hoodie.js index <HASH>..<HASH> 100644 --- a/addon/services/hoodie.js +++ b/addon/services/hoodie.js @@ -9,7 +9,7 @@ const { export default Service.extend({ init() { this._super(...arguments); - const appConfig = Ember.getOwner(this).application.resolveR...
fix: fixed the way hoodie service gets apps config. The old way didnt work on test environment.
hoodiehq_ember-hoodie
train
js
1635a9098d16df4ba4195d2e289476471bf96cb2
diff --git a/app/extend/application.js b/app/extend/application.js index <HASH>..<HASH> 100644 --- a/app/extend/application.js +++ b/app/extend/application.js @@ -418,10 +418,10 @@ module.exports = { const filepath = logger.options.file; const content = fs.readFileSync(filepath, 'utf8'); if (str instance...
fix: show expectLog last <I> words on assert error (#<I>)
eggjs_egg-mock
train
js
44cf00bbdeec6a25c906e49105275e8be5ddf97b
diff --git a/src/elements/table/Table.js b/src/elements/table/Table.js index <HASH>..<HASH> 100644 --- a/src/elements/table/Table.js +++ b/src/elements/table/Table.js @@ -72,7 +72,7 @@ export class NovoTableHeaderElement { <button theme="dialogue" color="negative" icon="time...
fix(table): Fixing the table filtering data-automation-ids if the list of options were of the form {value, label}
bullhorn_novo-elements
train
js
f347313351c7a6ef8f313f7b7fdc440099e1311c
diff --git a/test/runner/filters/unified_filter.js b/test/runner/filters/unified_filter.js index <HASH>..<HASH> 100644 --- a/test/runner/filters/unified_filter.js +++ b/test/runner/filters/unified_filter.js @@ -12,12 +12,13 @@ */ class UnifiedTopologyFilter { filter(test) { - if (!test.metadata) return true; -...
test: refactor logic for unified topology filter
mongodb_node-mongodb-native
train
js
55e980559c83913a4c6796ef52af05888718c030
diff --git a/karma.sauce.config.js b/karma.sauce.config.js index <HASH>..<HASH> 100644 --- a/karma.sauce.config.js +++ b/karma.sauce.config.js @@ -41,7 +41,7 @@ var customLaunchers = { base: 'SauceLabs', browserName: 'iphone', platform: 'OS X 10.12', - version: '10.0' + version: '11.0' }, sl_...
ci: Update Safari to <I> on SauceLabs (#<I>)
getsentry_sentry-javascript
train
js
32c927d399589054ab61166b559826fc7903a484
diff --git a/test/specs/e2e/server/e2e.server.dirs.js b/test/specs/e2e/server/e2e.server.dirs.js index <HASH>..<HASH> 100644 --- a/test/specs/e2e/server/e2e.server.dirs.js +++ b/test/specs/e2e/server/e2e.server.dirs.js @@ -150,3 +150,30 @@ describe("E2E server test with base dir array option + directory", function () {...
test: added failing test for #<I>
BrowserSync_browser-sync
train
js
c409170b1e2c913cdcb8a54d4c93ccba1ff4a374
diff --git a/classes/hypeJunction/Lists/UserList.php b/classes/hypeJunction/Lists/UserList.php index <HASH>..<HASH> 100644 --- a/classes/hypeJunction/Lists/UserList.php +++ b/classes/hypeJunction/Lists/UserList.php @@ -277,6 +277,11 @@ class UserList extends EntityList { AND guid_two = $guid) "; brea...
feat(users): add a filter to get users by online status
hypeJunction_hypeLists
train
php
f3c4aff6c5e16ed50b20260ff1162414d529c406
diff --git a/tests/func/test_repro.py b/tests/func/test_repro.py index <HASH>..<HASH> 100644 --- a/tests/func/test_repro.py +++ b/tests/func/test_repro.py @@ -957,7 +957,7 @@ class TestReproExternalS3(TestReproExternalBase): return TEST_AWS_REPO_BUCKET def cmd(self, i, o): - return "python -mawsc...
test: don't use python to call awscli
iterative_dvc
train
py
2a8130aac08bdb93ffbe37b6517f0a8bdb86a12d
diff --git a/py/semaphore/utils.py b/py/semaphore/utils.py index <HASH>..<HASH> 100644 --- a/py/semaphore/utils.py +++ b/py/semaphore/utils.py @@ -52,12 +52,17 @@ class RustObject(with_metaclass(_NoDict)): raise RuntimeError("Object is closed") return self._objptr - def __del__(self, _rustcal...
fix: Dont attempt to free() if python is shutting down
getsentry_semaphore
train
py
6824523279279f2a136c316ce57ce16899179f6c
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -187,19 +187,19 @@ export class BrowserHistory extends History { * @param value The value to set. */ setState(key: string, value: any): void { - let state = Object.assign({}, this.history.state)...
chore(all): fix lint and code comments
aurelia_history-browser
train
js
a2a23a6823b0f27e20a054bb4cc5bf0a989587b4
diff --git a/system/Config/Services.php b/system/Config/Services.php index <HASH>..<HASH> 100644 --- a/system/Config/Services.php +++ b/system/Config/Services.php @@ -75,6 +75,7 @@ use Config\Services as AppServices; use Config\Toolbar as ToolbarConfig; use Config\Validation as ValidationConfig; use Config\View as V...
fix: lang() causes error on CLI Call to undefined method CodeIgniter\HTTP\CLIRequest::getLocale()
codeigniter4_CodeIgniter4
train
php
f8452f831038181e5818ea93c8ecc703066ca9e9
diff --git a/apps/actor-web/src/app/utils/ActorClient.js b/apps/actor-web/src/app/utils/ActorClient.js index <HASH>..<HASH> 100644 --- a/apps/actor-web/src/app/utils/ActorClient.js +++ b/apps/actor-web/src/app/utils/ActorClient.js @@ -1,7 +1,3 @@ -import ActorAppConstants from '../constants/ActorAppConstants'; - -const...
fix(web): fixed joining by url
actorapp_actor-platform
train
js
4d9b2a84f11cb7cb2ddad51c158d92b82e7bc447
diff --git a/src/jquery.draggable.js b/src/jquery.draggable.js index <HASH>..<HASH> 100644 --- a/src/jquery.draggable.js +++ b/src/jquery.draggable.js @@ -16,7 +16,8 @@ autoscroll: true, ignore_dragging: ['INPUT', 'TEXTAREA', 'SELECT', 'BUTTON'], handle: null, - container_width: 0 // ...
feat(draggable): new config option to move or not the dragged element
ducksboard_gridster.js
train
js
4f0a47c569634f212407c202cdf21e1cc7ee7d2d
diff --git a/tooling/lib/version.js b/tooling/lib/version.js index <HASH>..<HASH> 100644 --- a/tooling/lib/version.js +++ b/tooling/lib/version.js @@ -17,9 +17,13 @@ const git = require(`./git`); exports.last = async function last() { const packages = Array.from(await list()); const version = _(await Promise.all...
chore(tooling): hack in fixes due to inadvertent 2.x publication
webex_spark-js-sdk
train
js
4da9e035f6518d5161b26d54876265699841c950
diff --git a/lib/collection.js b/lib/collection.js index <HASH>..<HASH> 100644 --- a/lib/collection.js +++ b/lib/collection.js @@ -2501,7 +2501,6 @@ Collection.prototype.watch = function(pipeline, options) { * @param {number} [options.batchSize=null] Set the batchSize for the getMoreCommand when iterating over the qu...
feat(parallelCollectionScan): does not allow user to pass a session Sessions are not valid options for a `parallelCollectionScan`. We already did not do implicit sessions, but we still documented session as a valid option, and did not stop a user from passing in an explicit session. Fixes NODE-<I>
mongodb_node-mongodb-native
train
js
b52c65aac872efcc50b8ffa221996cf156d600de
diff --git a/src/utilities/assertValidName.js b/src/utilities/assertValidName.js index <HASH>..<HASH> 100644 --- a/src/utilities/assertValidName.js +++ b/src/utilities/assertValidName.js @@ -11,8 +11,12 @@ const NAME_RX = /^[_a-zA-Z][_a-zA-Z0-9]*$/; const ERROR_PREFIX_RX = /^Error: /; // Silences warnings if an env...
fix: avoid process is undefined error when used in the browser
graphql_graphql-js
train
js
7844be8b0a6abfde6450a79253aa770189b8a157
diff --git a/txn.go b/txn.go index <HASH>..<HASH> 100644 --- a/txn.go +++ b/txn.go @@ -275,7 +275,7 @@ func (txn *Txn) mergeContext(src *api.TxnContext) error { for _, key := range src.Keys { txn.keys[key] = struct{}{} } - for _, pred := range src.Keys { + for _, pred := range src.Preds { txn.preds[pred] = st...
fix(txn): fix the typo in mergeContext (#<I>)
dgraph-io_dgo
train
go
0b23032a25b198c0eb032cfce2691b35f60c063a
diff --git a/test/merge_sharding.py b/test/merge_sharding.py index <HASH>..<HASH> 100755 --- a/test/merge_sharding.py +++ b/test/merge_sharding.py @@ -183,10 +183,13 @@ index by_msg (msg) return True def _insert_startup_values(self): + # row covered by shard -40 (should be merged). self._insert_value(...
test: merge_sharding.py: Add comments.
vitessio_vitess
train
py
b3e193976110b07400c400cb0b6c07a144a65d69
diff --git a/test/WebSocket.test.js b/test/WebSocket.test.js index <HASH>..<HASH> 100644 --- a/test/WebSocket.test.js +++ b/test/WebSocket.test.js @@ -53,6 +53,18 @@ describe('WebSocket', function() { var ws = new WebSocket('ws://localhost:' + port, { agent: agent }); }); }); + // GH-227 + it...
test: add test case for "options" as the 3rd argument
websockets_ws
train
js
1ebcc8cabebf03f1fc742680b36870a124158c76
diff --git a/switchbot/devices/device.py b/switchbot/devices/device.py index <HASH>..<HASH> 100644 --- a/switchbot/devices/device.py +++ b/switchbot/devices/device.py @@ -357,7 +357,10 @@ class SwitchbotDevice: def update_from_advertisement(self, advertisement: SwitchBotAdvertisement) -> None: """Update...
fix: reject advertisement updates that are missing data if we already have it (#<I>)
Danielhiversen_pySwitchbot
train
py
32977e229728633351166e6bdd2379a02b895a98
diff --git a/filer/south_migrations/0016_auto__chg_field_image_subject_location.py b/filer/south_migrations/0016_auto__chg_field_image_subject_location.py index <HASH>..<HASH> 100644 --- a/filer/south_migrations/0016_auto__chg_field_image_subject_location.py +++ b/filer/south_migrations/0016_auto__chg_field_image_subje...
fix: south migration for subject_location fails If there is existing rows in the database with subject_location=Null the migration failed (on postgres). This sets all Null fields to an empty string to prevent the error.
divio_django-filer
train
py
6c0341739f11dab2c69397f8ccfe5d9512019541
diff --git a/app/assets/javascripts/authentication/login.js b/app/assets/javascripts/authentication/login.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/authentication/login.js +++ b/app/assets/javascripts/authentication/login.js @@ -1,5 +1,5 @@ -$(document).ready(function(){ - $('.login_tab').on('click',...
refactor: JS to match pattern
cortex-cms_cortex
train
js
eaf660d0bfb1711f18d4eb7e1617aca4c20b4e85
diff --git a/packages/cozy-jobs-cli/src/run-dev.js b/packages/cozy-jobs-cli/src/run-dev.js index <HASH>..<HASH> 100644 --- a/packages/cozy-jobs-cli/src/run-dev.js +++ b/packages/cozy-jobs-cli/src/run-dev.js @@ -40,6 +40,11 @@ if (!manifest && file) { manifest = manifest || DEFAULT_MANIFEST_PATH const token = progra...
fix: Set COZY_URL by default
konnectors_libs
train
js
9fdc9458adf246bf4a381dda23a4a7ac43b772b0
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -44,6 +44,6 @@ function levelPlugin (fastify, opts, next) { } module.exports = fp(levelPlugin, { - fastify: '^4.0.0', + fastify: '4.x', name: '@fastify/leveldb' })
fix: update plugin semver to allow for rc versions (#<I>)
fastify_fastify-leveldb
train
js
369f0d429e9452bb958f448ab08cec700f609694
diff --git a/packages/nitro-gulp/tasks/svg-sprites.js b/packages/nitro-gulp/tasks/svg-sprites.js index <HASH>..<HASH> 100644 --- a/packages/nitro-gulp/tasks/svg-sprites.js +++ b/packages/nitro-gulp/tasks/svg-sprites.js @@ -19,12 +19,9 @@ module.exports = (gulp, plugins) => { plugins.svgmin((file) => { ...
fix(gulp): fix svg sprite generation by using correct API (which is wrongly documented)
namics_generator-nitro
train
js
d0b94ebc34f671237dfa207a570b8c44f209ccac
diff --git a/client/scripts/components/events/GettingProperties.js b/client/scripts/components/events/GettingProperties.js index <HASH>..<HASH> 100644 --- a/client/scripts/components/events/GettingProperties.js +++ b/client/scripts/components/events/GettingProperties.js @@ -1,12 +1,12 @@ "use strict"; var React = req...
chore(GettingProperties): add client code that renders GettingProperties
tomchentw_react-google-maps
train
js
b3f788436c412a8a540d11ea56d6b412408ed8ea
diff --git a/lib/mittsu/renderers/glfw_lib.rb b/lib/mittsu/renderers/glfw_lib.rb index <HASH>..<HASH> 100644 --- a/lib/mittsu/renderers/glfw_lib.rb +++ b/lib/mittsu/renderers/glfw_lib.rb @@ -29,7 +29,7 @@ module GLFWLib class << self def libgl_paths - Dir.glob('/usr/lib*/**/libglfw3.so*') + ...
fix: typo in glfw_lib
jellymann_mittsu
train
rb
16e67c4d0df7e6128f0d669788a07f67708f36ca
diff --git a/packages/icon/buildJSX.js b/packages/icon/buildJSX.js index <HASH>..<HASH> 100644 --- a/packages/icon/buildJSX.js +++ b/packages/icon/buildJSX.js @@ -54,6 +54,8 @@ const jsxTemplate = ({ template }, { state }, { imports, jsx }) => template.ast` size: "1em" }; + ${state.componentName}.groupName =...
feat(icon): include group name to components it will be helpful later for listing them in a story
CraveFood_farmblocks
train
js
961071eac597206c63aac5c20e692f8b269d0171
diff --git a/tests/test_bukuDb.py b/tests/test_bukuDb.py index <HASH>..<HASH> 100644 --- a/tests/test_bukuDb.py +++ b/tests/test_bukuDb.py @@ -12,9 +12,9 @@ import sys import unittest import urllib import zipfile -from genericpath import exists from tempfile import NamedTemporaryFile, TemporaryDirectory from unitt...
fix: test: pylint wrong import order
jarun_Buku
train
py
abff9bd8e423c58ff3de17e5fce91920c4d87607
diff --git a/src/lib/release-executor.js b/src/lib/release-executor.js index <HASH>..<HASH> 100644 --- a/src/lib/release-executor.js +++ b/src/lib/release-executor.js @@ -82,8 +82,9 @@ export default class ReleaseExecutor { const filesToRemove = this.exec('git ls-files --full-name -i --exclude-from .releaseign...
fix(release): remove files with spaces in .releaseignore
CureApp_node-circleci-autorelease
train
js
96a062b923abce39685437d082e393291d82d449
diff --git a/scripts/doc.js b/scripts/doc.js index <HASH>..<HASH> 100644 --- a/scripts/doc.js +++ b/scripts/doc.js @@ -30,7 +30,7 @@ module.exports = function(isDev = true) { const doc = new KDoc( './@(docs|components)/**/*.md', - // './@(docs|components)/menu/**/*.md', + // './@(docs|comp...
chore: fix intact to react convert uncorrectly for v-if
ksc-fe_kpc
train
js,js
3b90ad311d8b8ed3144b900457a7726afcd9755d
diff --git a/pytify/pytifylib.py b/pytify/pytifylib.py index <HASH>..<HASH> 100755 --- a/pytify/pytifylib.py +++ b/pytify/pytifylib.py @@ -53,9 +53,6 @@ class Pytifylib: def set_songs(self, data): for index, song in enumerate(data['tracks']['items']): - if index == self._limit: - ...
chore: remove limit as it is shipped to the api
bjarneo_Pytify
train
py
46df1132858874d495c574b7e653184ebdece9e8
diff --git a/packages/commutable/src/v4.js b/packages/commutable/src/v4.js index <HASH>..<HASH> 100644 --- a/packages/commutable/src/v4.js +++ b/packages/commutable/src/v4.js @@ -320,6 +320,7 @@ type PlainNotebook = {| |}; function markdownCellToJS(immCell: ImmutableCell): MarkdownCell { + // $FlowFixMe: With Immu...
fix(flow): Silence flow warnings on newer flow versions
nteract_nteract
train
js
7b6ff69ce7e3c33102d6b16a9143c3d02131632a
diff --git a/plugins/outputs/all/all.go b/plugins/outputs/all/all.go index <HASH>..<HASH> 100644 --- a/plugins/outputs/all/all.go +++ b/plugins/outputs/all/all.go @@ -7,6 +7,7 @@ import ( _ "github.com/influxdata/telegraf/plugins/outputs/application_insights" _ "github.com/influxdata/telegraf/plugins/outputs/azure_...
fix: register bigquery to output plugins #<I> (#<I>)
influxdata_telegraf
train
go
70698e07dda1b44d510839cd1ca9241c20bf5534
diff --git a/gridsome/app/entry.server.js b/gridsome/app/entry.server.js index <HASH>..<HASH> 100644 --- a/gridsome/app/entry.server.js +++ b/gridsome/app/entry.server.js @@ -4,9 +4,14 @@ runMain() export default context => new Promise((resolve, reject) => { const { app, router } = createApp() + let { url } = co...
fix(build): ensure <I> route for /<I> page
gridsome_gridsome
train
js
3079003d62b2b9490ee884c3672e8a322b27ece5
diff --git a/lib/drop.js b/lib/drop.js index <HASH>..<HASH> 100644 --- a/lib/drop.js +++ b/lib/drop.js @@ -7,7 +7,7 @@ var Resolver = require('./resolver'); * Module interface. */ -module.exports = reset; +module.exports = drop; /** * Drop schemas tables. @@ -16,7 +16,7 @@ module.exports = reset; * @return...
fix(manager): rename reset to dop
lemonde_knex-schema
train
js
dff51fc8d307a1ef03039a78d45929f298925799
diff --git a/packages/vaex-core/vaex/__init__.py b/packages/vaex-core/vaex/__init__.py index <HASH>..<HASH> 100644 --- a/packages/vaex-core/vaex/__init__.py +++ b/packages/vaex-core/vaex/__init__.py @@ -56,6 +56,9 @@ from .groupby import * from . import agg import vaex.datasets +# Re-export these so users can type ...
feat: Expose vaex.DataFrame and vaex.Expression for typing (#<I>) * feat(core): Expose vaex.DataFrame for typing Closes [FEATURE-REQUEST]: Expose `vaex.DataFrame` for type hinting #<I> * feat(core): Expose vaex.Expression for typing An extension of [FEATURE-REQUEST]: Expose `vaex.DataFrame` for type hinting ...
vaexio_vaex
train
py
cdb5219d1e79818ce872dc3a11390bf2d51b2c36
diff --git a/test/unit/lib/vehicle.js b/test/unit/lib/vehicle.js index <HASH>..<HASH> 100644 --- a/test/unit/lib/vehicle.js +++ b/test/unit/lib/vehicle.js @@ -366,10 +366,10 @@ test('oil - no age', async function(t) { test('tire pressure', async function(t) { const body = { - frontLeft: 33, - frontRight: 34...
feat(vehicle): added support for tire pressure and engine oil endpoints (#<I>)
smartcar_node-sdk
train
js
730415312930fa6cdbc73466ed3d919cb9fbb5e9
diff --git a/lib/workers/pr/index.js b/lib/workers/pr/index.js index <HASH>..<HASH> 100644 --- a/lib/workers/pr/index.js +++ b/lib/workers/pr/index.js @@ -410,7 +410,7 @@ async function checkAutoMerge(pr, config) { logger.info('DRY-RUN: Would merge PR #' + pr.number); return false; } - const res =...
fix: await platform.mergePr
renovatebot_renovate
train
js
7a4db0058cb890d2b326b815aecdb20d683c9f6e
diff --git a/src/server/middlewares/isAuthorized.js b/src/server/middlewares/isAuthorized.js index <HASH>..<HASH> 100644 --- a/src/server/middlewares/isAuthorized.js +++ b/src/server/middlewares/isAuthorized.js @@ -19,13 +19,13 @@ var middleware = function(req, res, next) { res.user = user if(!User.utils.isAbeR...
fix: redirect user logged if go to page login
abecms_abecms
train
js
0ebefdab7ca17e7c823963bd84d93dc37dc42ab3
diff --git a/cmds/gulp.js b/cmds/gulp.js index <HASH>..<HASH> 100644 --- a/cmds/gulp.js +++ b/cmds/gulp.js @@ -88,9 +88,11 @@ function injectDebug(program, runner) { }) .on('task_err', function(e) { program.log.error('!!! \'' + e.task.cyan + '\'', 'errored after'.red, prettyTime(e.hrDuration).magenta);...
refactor: Improve error reporting for App gulp tasks
quasarframework_quasar-cli
train
js
afbbfbf18e7ab89e25641c5df8284b0848cce034
diff --git a/spec/support/.mocharc.js b/spec/support/.mocharc.js index <HASH>..<HASH> 100644 --- a/spec/support/.mocharc.js +++ b/spec/support/.mocharc.js @@ -10,4 +10,5 @@ module.exports = { reporter: 'dot', timeout: 5000, recursive: true, + 'enable-source-maps': true }; \ No newline at end of file
chore: ensure source maps are used in test results
ReactiveX_rxjs
train
js
96cf239ff5cf4494196c364ab7d57ed669650bf6
diff --git a/hooks/lib/sdk/xmlHelper.js b/hooks/lib/sdk/xmlHelper.js index <HASH>..<HASH> 100755 --- a/hooks/lib/sdk/xmlHelper.js +++ b/hooks/lib/sdk/xmlHelper.js @@ -38,7 +38,7 @@ try { fs.writeFileSync(filePath, changedXmlData) } catch (err) { - console.log(err) + console.error(err) ...
chore: changed to console.error for more visibility
BranchMetrics_cordova-ionic-phonegap-branch-deep-linking
train
js
cdd7278948da89eccbbcaf759b134fd779ca012a
diff --git a/system/Pager/Pager.php b/system/Pager/Pager.php index <HASH>..<HASH> 100644 --- a/system/Pager/Pager.php +++ b/system/Pager/Pager.php @@ -122,7 +122,8 @@ class Pager implements PagerInterface $pager = new PagerRenderer($this->getDetails($group)); - return $this->view->setVar('pager', $p...
fix: Call to undefined method CodeIgniter\Pager\PagerRenderer::getDetails()
codeigniter4_CodeIgniter4
train
php
033a38bf466b5b4c5362bfa18d799680ca5cdfae
diff --git a/packages/patternfly-3/patternfly-react/src/components/Slider/Slider.js b/packages/patternfly-3/patternfly-react/src/components/Slider/Slider.js index <HASH>..<HASH> 100644 --- a/packages/patternfly-3/patternfly-react/src/components/Slider/Slider.js +++ b/packages/patternfly-3/patternfly-react/src/component...
fix(Slider): Update state when properties are updated. (#<I>)
patternfly_patternfly-react
train
js
9f5764427b808ff8690e72e37e3321823bc909b4
diff --git a/test/sirenia.go b/test/sirenia.go index <HASH>..<HASH> 100644 --- a/test/sirenia.go +++ b/test/sirenia.go @@ -91,10 +91,10 @@ func testSireniaDeploy(client controller.Client, disc *discoverd.Client, t *c.C, t.Assert(err, c.IsNil) release.ID = "" release.Env[d.db.hostKey] = fmt.Sprintf("leader.%s.disc...
test: Fix setting service key in Sirenia deploy tests
flynn_flynn
train
go
6dc33753f1478a7b08913d9e2106a7f34d50e23d
diff --git a/js/bitget.js b/js/bitget.js index <HASH>..<HASH> 100644 --- a/js/bitget.js +++ b/js/bitget.js @@ -1101,7 +1101,7 @@ module.exports = class bitget extends Exchange { } const baseVolume = this.safeString2 (ticker, 'amount', 'volume_24h'); const quoteVolume = this.safeString (ticker...
fix: parse number to vwap We should parse number to vwap or it will crash in python because there is an opportunity to compare between str and number (zero)
ccxt_ccxt
train
js
43f7369adccb82262b34ed683db60f718bef5040
diff --git a/src/Leevel/Database/Ddd/UnitOfWork.php b/src/Leevel/Database/Ddd/UnitOfWork.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Database/Ddd/UnitOfWork.php +++ b/src/Leevel/Database/Ddd/UnitOfWork.php @@ -374,7 +374,7 @@ class UnitOfWork } /** - * 移除实体(强制删除)到前置区域. + * 强制移除实体到前置区域. * ...
refactor(ddd): code poem
hunzhiwange_framework
train
php
c1209cc1f6c251326d692d0535b259b4966d92e0
diff --git a/lib/validated_object.rb b/lib/validated_object.rb index <HASH>..<HASH> 100644 --- a/lib/validated_object.rb +++ b/lib/validated_object.rb @@ -59,7 +59,7 @@ module ValidatedObject set_instance_variables from_hash: attributes check_validations! - self + return self end #...
fix: Invalid attr names disallowed as docs describe
public-law_validated_object
train
rb
85d7af05e5c3fa0bad9eb7e39c0860cd68f773cd
diff --git a/lib/rules/rules.js b/lib/rules/rules.js index <HASH>..<HASH> 100644 --- a/lib/rules/rules.js +++ b/lib/rules/rules.js @@ -1810,8 +1810,8 @@ proto.resolveFilter = function(req) { proto.resolveDisable = function(req) { return resolveProperties(req, this._rules.disable, this._values); }; -var pluginProto...
feat: add forwardedFor to plugin request
avwo_whistle
train
js
1f662224d7bee6e27e8d66975fda39feae0c9359
diff --git a/google-http-client/src/main/java/com/google/api/client/json/JsonParser.java b/google-http-client/src/main/java/com/google/api/client/json/JsonParser.java index <HASH>..<HASH> 100644 --- a/google-http-client/src/main/java/com/google/api/client/json/JsonParser.java +++ b/google-http-client/src/main/java/com/...
fix: reuse reference instead of calling getter twice (#<I>) fix for #<I> changed switch parameter in parseValue from calling getCurrentToken() again to just declared and assigned local member "token" two lines above
googleapis_google-http-java-client
train
java
c829eb08297a2a3baa6d5e76261bf8d87d1d2a9b
diff --git a/lib/actions/form.js b/lib/actions/form.js index <HASH>..<HASH> 100644 --- a/lib/actions/form.js +++ b/lib/actions/form.js @@ -7,6 +7,10 @@ import { queryIsValid } from '../util/state' export const settingQueryParam = createAction('SET_QUERY_PARAM') export const changingForm = createAction('FORM_CHANGED')...
docs(form): Add comment to new setQueryParam action Refactored parameter-specific actions to single setQueryParam action
opentripplanner_otp-react-redux
train
js
9cc428bd728712605dab5014c922a10969f430b3
diff --git a/packages/node_modules/@webex/plugin-webhooks/test/integration/spec/webhooks.js b/packages/node_modules/@webex/plugin-webhooks/test/integration/spec/webhooks.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/plugin-webhooks/test/integration/spec/webhooks.js +++ b/packages/node_modules/@webex...
test(plugin-webhooks): webex teams -> webex rebranding
webex_spark-js-sdk
train
js
f6c6317c878a75a760e8d46d4b53e2530631d42b
diff --git a/src/network.js b/src/network.js index <HASH>..<HASH> 100644 --- a/src/network.js +++ b/src/network.js @@ -139,6 +139,9 @@ export class Network { this._bitswap._receiveError(err) break } + + // we have received some data so reset the timeout controller +...
fix: reset timeout controller when messages are received (#<I>) Otherwise all bitswap streams are closed after <I>s
ipfs_js-ipfs-bitswap
train
js
0a524989225cc954afc6caec073069d4cceff30c
diff --git a/packages/check-package-dependencies/lib/checkDirectDuplicateDependencies.js b/packages/check-package-dependencies/lib/checkDirectDuplicateDependencies.js index <HASH>..<HASH> 100644 --- a/packages/check-package-dependencies/lib/checkDirectDuplicateDependencies.js +++ b/packages/check-package-dependencies/l...
fix(check-package-dependencies): onlyWarnsFor undefined
christophehurpeau_pob-lerna
train
js
571105a4814ad9b1b99a49b00e58534fa46ba63a
diff --git a/karma-ng.conf.js b/karma-ng.conf.js index <HASH>..<HASH> 100644 --- a/karma-ng.conf.js +++ b/karma-ng.conf.js @@ -54,6 +54,10 @@ function makeConfig(packageName, argv) { ] }, + browserConsoleLogOptions: { + terminal: !(process.env.JENKINS || process.env.CI) + }, + browserNoAct...
chore(tooling): disable karma logging in CI since we discard it anyway my hope is this will reduce the traffic in the sauce tunnel and therefore make the tests a bit faster
webex_spark-js-sdk
train
js
572c0e2d52f2a427f5f88e88a619d98011d1a220
diff --git a/src/js/utilities.js b/src/js/utilities.js index <HASH>..<HASH> 100644 --- a/src/js/utilities.js +++ b/src/js/utilities.js @@ -671,9 +671,9 @@ export function getContainSizes({ * @returns {Object} The result sizes. */ export function getRotatedSizes({ width, height, degree }) { - degree = Math.abs(deg...
fix: correct rotated size computing fixed #<I>
fengyuanchen_cropperjs
train
js
c64d36bb06df771ee03177f8d87a57bb3398975b
diff --git a/src/site/components/com_base/controllers/toolbars/default.php b/src/site/components/com_base/controllers/toolbars/default.php index <HASH>..<HASH> 100644 --- a/src/site/components/com_base/controllers/toolbars/default.php +++ b/src/site/components/com_base/controllers/toolbars/default.php @@ -117,8 +117,8 ...
fix: vote-unvote toggle Fast server can generate subsequent uniqid() within same second resulting in them being the same, patch fixes the issue, also makes values of id attributes comply with HTML spec
anahitasocial_anahita
train
php
bf7189439504ce9fc9ea6b3770c1166a75254904
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -94,7 +94,12 @@ Pjax.prototype = { matches.shift() matches.forEach(function(htmlAttrib) { var attr = htmlAttrib.trim().split("=") - tmpEl.documentElement.setAttribute(attr[0], attr[1].slic...
fix(attributes): for attributes without a value, add only the attribute Some attributes, such as `itemscope` have no corresponding value. This change allows them to still be set.
MoOx_pjax
train
js
39eb031d75436074bf109732847f4ecc995fe061
diff --git a/site/src/_app.js b/site/src/_app.js index <HASH>..<HASH> 100644 --- a/site/src/_app.js +++ b/site/src/_app.js @@ -45,6 +45,7 @@ const navOrder = [ 'dev', 'env', 'functions', + 'graph', 'init', 'link', 'lm',
chore(site): add graph to nav bar (#<I>)
netlify_cli
train
js
4c0cc98770b8ecc4880b4e42d15446f94de2c1a3
diff --git a/examples/karma.conf-ci.js b/examples/karma.conf-ci.js index <HASH>..<HASH> 100644 --- a/examples/karma.conf-ci.js +++ b/examples/karma.conf-ci.js @@ -35,7 +35,8 @@ module.exports = function(config) { accessKey: process.env.SAUCE_ACCESS_KEY, testName: 'Karma and Sauce Labs demo', // Cha...
test: set recordScreenshots to false in CI
karma-runner_karma-sauce-launcher
train
js
f7a7c5c9f2e63baf34b0ecc4fd9238f1c203f05a
diff --git a/master/buildbot/test/unit/test_scripts_cleanupdb.py b/master/buildbot/test/unit/test_scripts_cleanupdb.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/unit/test_scripts_cleanupdb.py +++ b/master/buildbot/test/unit/test_scripts_cleanupdb.py @@ -30,6 +30,7 @@ from buildbot.test.fake import fakemast...
test: Mark TestCleanupDb.test_cleanup as flaky on win<I>
buildbot_buildbot
train
py
fe19eb4f13b715cabf77986afc5b2f978904e5f0
diff --git a/algoliasearch/types_index.go b/algoliasearch/types_index.go index <HASH>..<HASH> 100644 --- a/algoliasearch/types_index.go +++ b/algoliasearch/types_index.go @@ -13,5 +13,6 @@ type IndexRes struct { } type listIndexesRes struct { - Items []IndexRes + Items []IndexRes `json:"items"` + NbPages int ...
fix: Expose missing NbPages field to listIndexesRes (closes #<I>)
algolia_algoliasearch-client-go
train
go
c0c78cc27fd8c4b1ca114600d3d7e9e365c7f66d
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -55,7 +55,9 @@ module.exports = function (param) { ).convert(); - file.contents = new Buffer(converted); + if (converted) { + file.contents = new Buffer(converted); + } this.push(file)...
fix(convert): fix to continue task against converted file
HAKASHUN_gulp-tfcsprite
train
js
c6db2882938dbda6cbb506bc1f48e67d0c8da826
diff --git a/views/cypress/tests/item.spec.js b/views/cypress/tests/item.spec.js index <HASH>..<HASH> 100755 --- a/views/cypress/tests/item.spec.js +++ b/views/cypress/tests/item.spec.js @@ -147,8 +147,6 @@ describe('Items', () => { selectors.deleteConfirm, className, ...
fix: params deleteClassFromRoot
oat-sa_extension-tao-item
train
js,js
e55a4e2e55e6fcd5aafe588e9245294380a506b0
diff --git a/kubernetes_asyncio/watch/watch.py b/kubernetes_asyncio/watch/watch.py index <HASH>..<HASH> 100644 --- a/kubernetes_asyncio/watch/watch.py +++ b/kubernetes_asyncio/watch/watch.py @@ -187,7 +187,6 @@ class Watch(object): if should_stop: watch.stop() """ - ...
fix: remove redundant close() in Watch class (#<I>)
tomplus_kubernetes_asyncio
train
py
d2601615dcf4bc0326cd2ec6e11d761e76c9e322
diff --git a/packages/netlify-cms-ui-default/src/styles.js b/packages/netlify-cms-ui-default/src/styles.js index <HASH>..<HASH> 100644 --- a/packages/netlify-cms-ui-default/src/styles.js +++ b/packages/netlify-cms-ui-default/src/styles.js @@ -52,7 +52,7 @@ const colorsRaw = { const colors = { statusDraftText: color...
fix(ui): typos in color vars (#<I>)
netlify_netlify-cms
train
js
bedb15304141ea7583e89dbdd2d39a93d50fbcfc
diff --git a/test/lib/quagga.py b/test/lib/quagga.py index <HASH>..<HASH> 100644 --- a/test/lib/quagga.py +++ b/test/lib/quagga.py @@ -187,6 +187,8 @@ class QuaggaBGPContainer(BGPContainer): c << 'no bgp default ipv4-unicast' c << 'neighbor {0} remote-as {1}'.format(n_addr, peer.asn) + ...
test: support rs-client configuration for quagga container
osrg_gobgp
train
py
c2c5e41e5c46f9c22b8c85673273da77cc172a9b
diff --git a/client/store.js b/client/store.js index <HASH>..<HASH> 100644 --- a/client/store.js +++ b/client/store.js @@ -25,17 +25,20 @@ const networkInterface = createNetworkInterface({ }) networkInterface.use([{ - applyMiddleware(req, next) { + applyMiddleware (req, next) { if (!req.options.headers) { ...
feat(auth): request without credentials when authenticate mutation #<I>
nossas_bonde-client
train
js
64ad11bdb36edf314587c55d2edea3c385b2d507
diff --git a/api/src/opentrons/protocol_runner/legacy_command_mapper.py b/api/src/opentrons/protocol_runner/legacy_command_mapper.py index <HASH>..<HASH> 100644 --- a/api/src/opentrons/protocol_runner/legacy_command_mapper.py +++ b/api/src/opentrons/protocol_runner/legacy_command_mapper.py @@ -303,6 +303,7 @@ class Leg...
refactor(api): fix label mapping in `edge` after release sync (#<I>)
Opentrons_opentrons
train
py
f830eb7101d05f90bbbf44ff750e4012ecb72449
diff --git a/src/structures/Sticker.js b/src/structures/Sticker.js index <HASH>..<HASH> 100644 --- a/src/structures/Sticker.js +++ b/src/structures/Sticker.js @@ -2,7 +2,7 @@ const Base = require('./Base'); const { StickerFormatTypes } = require('../util/Constants'); -const Snowflake = require('../util/Snowflake');...
fix(Sticker): file renamed to SnowflakeUtil (#<I>)
discordjs_discord.js
train
js
82a84ae1186667785992fff162b1977affa788a1
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 @@ -101,10 +101,15 @@ class DateTimeModal extends Component { <StyledDateTimeSelector ...
docs(date-time-modal): Clarify some comments around DateTimeSelector.dateFormatLegacy and timeFormat
opentripplanner_otp-react-redux
train
js
21aa11728b776f476f5a4c7fbcf560de32d78d8b
diff --git a/lib/core/sdam/monitoring.js b/lib/core/sdam/monitoring.js index <HASH>..<HASH> 100644 --- a/lib/core/sdam/monitoring.js +++ b/lib/core/sdam/monitoring.js @@ -162,7 +162,7 @@ function monitorServer(server, options) { const isMaster = result.result; server.emit( - 'serverHeartbea...
fix(monitoring): correct spelling mistake for heartbeat event
mongodb_node-mongodb-native
train
js
ee04eab255ad4f4aea2d8485d1523e9aaa4390e5
diff --git a/generators/dockertools/templates/python/manage.py b/generators/dockertools/templates/python/manage.py index <HASH>..<HASH> 100644 --- a/generators/dockertools/templates/python/manage.py +++ b/generators/dockertools/templates/python/manage.py @@ -98,10 +98,10 @@ parser.add_argument("subcommand", help="subco...
fix: change shell commands and port num
ibm-developer_generator-ibm-cloud-enablement
train
py
468f1ddb4c07e18a82da1f97363698e66534511d
diff --git a/lib/platform/git/storage.js b/lib/platform/git/storage.js index <HASH>..<HASH> 100644 --- a/lib/platform/git/storage.js +++ b/lib/platform/git/storage.js @@ -294,7 +294,7 @@ class Storage { const fileNames = files.map(f => f.name); // istanbul ignore if if (fileNames.length === 1...
fix(gitFs): unshift
renovatebot_renovate
train
js
6c914427557ada11f6dada45f33c0f78ca2008b3
diff --git a/test/functional/shared.js b/test/functional/shared.js index <HASH>..<HASH> 100644 --- a/test/functional/shared.js +++ b/test/functional/shared.js @@ -13,22 +13,31 @@ function connectToDb(url, db, options, callback) { }); } -function setupDatabase(configuration) { - var dbName = configuration.db; +fu...
refactor(shared): support cleaning other databases in setup
mongodb_node-mongodb-native
train
js
f1b6c0de6c2fcd6333e118f3614362acfbe7c28a
diff --git a/packages/node_modules/cerebral/src/View.js b/packages/node_modules/cerebral/src/View.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/cerebral/src/View.js +++ b/packages/node_modules/cerebral/src/View.js @@ -282,7 +282,6 @@ class View extends Watch { } if (this.mergeProps) { - co...
refactor(view): don’t recreate getters
cerebral_cerebral
train
js
49cfef0f58dd8c8306e6c0d4c6e78854ff2bbd8b
diff --git a/src/directive/translate.js b/src/directive/translate.js index <HASH>..<HASH> 100644 --- a/src/directive/translate.js +++ b/src/directive/translate.js @@ -221,6 +221,10 @@ angular.module('pascalprecht.translate') // w/ $translate.use(...) var unbind = $rootScope.$on('$translateChangeSucces...
fix(directive): ensure directive's text will be parsed at least once This fixes an issue with AJS <I>+ Solves #<I> Solves #<I>
angular-translate_angular-translate
train
js
9ccd366398479a402dc613703bfbc75d00cd9621
diff --git a/kv/dashboard.go b/kv/dashboard.go index <HASH>..<HASH> 100644 --- a/kv/dashboard.go +++ b/kv/dashboard.go @@ -884,16 +884,6 @@ func (s *Service) deleteDashboard(ctx context.Context, tx Tx, id influxdb.ID) er } } - err = s.deleteUserResourceMappings(ctx, tx, influxdb.UserResourceMappingFilter{ - Res...
refactor: remove outdated URM deletion from kv dashboard service (#<I>)
influxdata_influxdb
train
go
ecb5cf87de2484629b6e69f24c2f614bf459d192
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -7,7 +7,7 @@ module.exports = function umlPlugin(md, options) { function generateSourceDefault(umlCode) { var deflate = require('./lib/deflate.js'); var zippedCode = - deflate.encode64(deflate.zip_deflate('@s...
feat: encoding the text diagram description in UTF-8, to support more character set
gmunguia_markdown-it-plantuml
train
js
200af0c637edd88fbdcaef021220f0ee409ceea1
diff --git a/init/test/unit.js b/init/test/unit.js index <HASH>..<HASH> 100644 --- a/init/test/unit.js +++ b/init/test/unit.js @@ -1,3 +1,3 @@ -describe('<%= name %>', function <%= name %> () { +describe('<%= name %>', () => { });
fix(build): Fix eslint errors. Fixing also to publish new version because last commit didn't.
skatejs_build
train
js
b25fe79a723f8f993e9488a8d62187c759e0cafe
diff --git a/packages/collector/test/tracing/misc/spec_compliance/test.js b/packages/collector/test/tracing/misc/spec_compliance/test.js index <HASH>..<HASH> 100644 --- a/packages/collector/test/tracing/misc/spec_compliance/test.js +++ b/packages/collector/test/tracing/misc/spec_compliance/test.js @@ -7,7 +7,6 @@ co...
chore: removed node version check in collector/test/tracing/misc/spec_compliance/test.js refs <I>
instana_nodejs-sensor
train
js
7ebc583e163749a3590da2c928cdcf459cd001c4
diff --git a/src/commands/fastCheckout.js b/src/commands/fastCheckout.js index <HASH>..<HASH> 100644 --- a/src/commands/fastCheckout.js +++ b/src/commands/fastCheckout.js @@ -530,7 +530,7 @@ async function analyze ({ /* eslint-disable no-fallthrough */ // File missing from workdir case '110':...
fix(fastCheckout): don't treat modified files as conflicted unless the file would actually change (#<I>)
isomorphic-git_isomorphic-git
train
js
f479d284762ff3ec4f7e43573f46607b2670826d
diff --git a/src/file.js b/src/file.js index <HASH>..<HASH> 100644 --- a/src/file.js +++ b/src/file.js @@ -142,15 +142,26 @@ function getChildren (dag, offset, end) { } return pull( - pull.values(filteredLinks), - paramap((child, cb) => { - dag.get(child.link.cid, (error, result) => cb(erro...
fix: use dag.getMany to avoid overloading the DHT, when it arrives Fixes ipfs/js-ipfs-unixfs-engine#<I> by using one call to `dag.getMany` for all children of a given node instead of multiple calls to `dag.get`.
ipfs_js-ipfs-unixfs
train
js
1db6a1e3ad40b53a49e98384b0a03d903a37a706
diff --git a/auto-release.js b/auto-release.js index <HASH>..<HASH> 100644 --- a/auto-release.js +++ b/auto-release.js @@ -48,8 +48,8 @@ async function init() { if (isCanaryRelease) { try { const version = await shell - .exec('auto version', { silent: true }) - .stdout.trim(); + .exe...
chore: update auto release canary behavior
bolt-design-system_bolt
train
js