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 |
|---|---|---|---|---|---|
b5e3323a936026a530cc563d2bd3928ebe37fa8a | diff --git a/__mocks__/d3.js b/__mocks__/d3.js
index <HASH>..<HASH> 100644
--- a/__mocks__/d3.js
+++ b/__mocks__/d3.js
@@ -1,21 +1,16 @@
/* eslint-env jest */
let NewD3 = function () {
+ function returnThis () {
+ return this
+ }
return {
append: function () {
return NewD3()
},
- lower: fu... | fix: workaround for function <I> line limit | knsv_mermaid | train | js |
8ed1223204f254c28a0780c016e364815865752e | diff --git a/system/Router/RouteCollection.php b/system/Router/RouteCollection.php
index <HASH>..<HASH> 100644
--- a/system/Router/RouteCollection.php
+++ b/system/Router/RouteCollection.php
@@ -1137,7 +1137,8 @@ class RouteCollection implements RouteCollectionInterface
$from = trim($from, '/');
}... | fix: add missing condition of array callable syntax route | codeigniter4_CodeIgniter4 | train | php |
eb8b7834f0d02e68053140814fa024a44919b9cb | diff --git a/unit/connection_string_spec_tests.js b/unit/connection_string_spec_tests.js
index <HASH>..<HASH> 100644
--- a/unit/connection_string_spec_tests.js
+++ b/unit/connection_string_spec_tests.js
@@ -89,7 +89,14 @@ describe('Connection String (spec)', function() {
});
expect(resul... | fix(test): do not check deep equality when test.auth.db is null | mongodb_node-mongodb-native | train | js |
26c56ae64846814eb8234c0d352871a7b6651d66 | diff --git a/lib/helpers.js b/lib/helpers.js
index <HASH>..<HASH> 100644
--- a/lib/helpers.js
+++ b/lib/helpers.js
@@ -25,7 +25,9 @@ exports.srcEscape = srcEscape;
let highlightFn;
let cardinalRecommended = false;
try {
- highlightFn = require('cardinal').highlight;
+ // the purpose of this is to prevent projects ... | fix: webpack projects no longer show warning for cardinal dependency | sidorares_node-mysql2 | train | js |
8e1db1ba739f9f52339b3df2e633305bbf8b0ad0 | diff --git a/source/rafcon/gui/mygaphas/canvas.py b/source/rafcon/gui/mygaphas/canvas.py
index <HASH>..<HASH> 100644
--- a/source/rafcon/gui/mygaphas/canvas.py
+++ b/source/rafcon/gui/mygaphas/canvas.py
@@ -99,6 +99,8 @@ class MyCanvas(gaphas.canvas.Canvas):
def get_first_view(self):
"""Return first regis... | fix(canvas): prevent assumed race condition
On Jenkins, an exception is raised for Python <I> in test_menu_bar-
I cannot reproduce this locally, but this commit should fix what I
assume is a race condition. Somehow, it only occurs on this
fix/json_separator branch, which is why I fix it here... | DLR-RM_RAFCON | train | py,py |
62c6934367eb4dd0d4f3155ed2bb5f3e065aafba | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -33,7 +33,7 @@ async function lessLoader(source) {
if (typeof options.additionalData !== 'undefined') {
data =
typeof options.additionalData === 'function'
- ? `${options.additionalData(da... | feat: allow the `additionalData` to be async (#<I>) | webpack-contrib_less-loader | train | js |
813c440683382de0f63969f6071e6956daea5482 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -118,7 +118,7 @@ module.exports = (api, options) => {
'report-json': args['report-json']
}
// With @vue/cli-service v3.4.1+, we can bypass legacy build
- process.env.VUE_CLI_MODERN_BUILD = !... | fix(build): legacy build browser version check (#<I>) | nklayman_vue-cli-plugin-electron-builder | train | js |
a5773d1acd28415e2cf69ba755c70fa7bfeb7182 | diff --git a/src/BasePlugin.php b/src/BasePlugin.php
index <HASH>..<HASH> 100644
--- a/src/BasePlugin.php
+++ b/src/BasePlugin.php
@@ -8,7 +8,7 @@ use Miaoxing\Services\Service\Str;
* @property \Wei\Env $env
* @property \Wei\View $view
* @property \Wei\Event $event
- * @property \Miaoxing\App\Service\Logger $logg... | refactor: 迁移 logger | miaoxing_plugin | train | php,php |
cc2e97457e0e5415d3d3fd8ccc4f94073070aaed | diff --git a/app/src/organisms/ProtocolModuleList/index.js b/app/src/organisms/ProtocolModuleList/index.js
index <HASH>..<HASH> 100644
--- a/app/src/organisms/ProtocolModuleList/index.js
+++ b/app/src/organisms/ProtocolModuleList/index.js
@@ -53,13 +53,15 @@ export function ProtocolModuleList(): React.Node {
if (mod... | fix(app): conditionally show module usb order instructions (#<I>) | Opentrons_opentrons | train | js |
abcbbc7a2af8ade233e1c2087e6fcabc7e1db21e | diff --git a/lib/client.js b/lib/client.js
index <HASH>..<HASH> 100644
--- a/lib/client.js
+++ b/lib/client.js
@@ -735,6 +735,7 @@ function resume (client) {
assert(false)
})
.on('error', function (err) {
+ util.destroy(this)
request.onError(err)
})
.on... | fix: ensure body is destroyed on error | mcollina_undici | train | js |
b89584a01b830b94a2fc17108a45f9f2140b8cee | diff --git a/Cache/CacheBase.php b/Cache/CacheBase.php
index <HASH>..<HASH> 100644
--- a/Cache/CacheBase.php
+++ b/Cache/CacheBase.php
@@ -32,6 +32,16 @@ class CacheBase
}
/**
+ * Delete cache file
+ *
+ * @return bool
+ */
+ public function delete()
+ {
+ return file_exists($this->file) ? Filesyst... | feat: Delete cache file
responsible for removing the cache file | modulusphp_hibernate | train | php |
c09d3ee8c445a9b6a4f96f164fdde5c8502ddaf9 | diff --git a/src/Twilio/Http/GuzzleClient.php b/src/Twilio/Http/GuzzleClient.php
index <HASH>..<HASH> 100644
--- a/src/Twilio/Http/GuzzleClient.php
+++ b/src/Twilio/Http/GuzzleClient.php
@@ -6,9 +6,9 @@ namespace Twilio\Http;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Exception\BadResponseException;
+use Guzzle... | fix: replace deprecated method build_query with Query::build (#<I>) | twilio_twilio-php | train | php |
c6113f16bc220309bed0d2b31e7611ac3d416c91 | diff --git a/server/testing-server.js b/server/testing-server.js
index <HASH>..<HASH> 100644
--- a/server/testing-server.js
+++ b/server/testing-server.js
@@ -27,6 +27,7 @@ getConfig().then(async boltConfig => {
// don't compile anything in Webpack except for the exported JSON data from Bolt's Design Tokens + all pa... | fix: remove js-fonts-loaded class from testing-server HTML response + add critical css vars component to retest rendering | bolt-design-system_bolt | train | js |
484a53e314356985f0ba9c3215077bcf45a0ff23 | diff --git a/thefuck/rules/brew_unknown_command.py b/thefuck/rules/brew_unknown_command.py
index <HASH>..<HASH> 100644
--- a/thefuck/rules/brew_unknown_command.py
+++ b/thefuck/rules/brew_unknown_command.py
@@ -12,7 +12,8 @@ TAP_CMD_PATH = '/%s/%s/cmd'
def _get_brew_path_prefix():
"""To get brew path"""
try:... | fix(brew_unknown_command): make subprocess.check_output return str
Fix `TypeError: can't concat bytes to str` error on Python <I>. | nvbn_thefuck | train | py |
5190d3b964fd13f203bcbaec834d41be0471af6e | diff --git a/uPortal-webapp/src/main/webapp/media/skins/common/javascript/uportal/up-entity-registry.js b/uPortal-webapp/src/main/webapp/media/skins/common/javascript/uportal/up-entity-registry.js
index <HASH>..<HASH> 100644
--- a/uPortal-webapp/src/main/webapp/media/skins/common/javascript/uportal/up-entity-registry.j... | style(js): use recommended array instantiation | Jasig_uPortal | train | js |
e4659d80d724f27c86997528560c09e5839eec5f | diff --git a/rundeckapp/web-app/js/resourceModelConfig.js b/rundeckapp/web-app/js/resourceModelConfig.js
index <HASH>..<HASH> 100644
--- a/rundeckapp/web-app/js/resourceModelConfig.js
+++ b/rundeckapp/web-app/js/resourceModelConfig.js
@@ -214,9 +214,13 @@ addConfig: function(type) {
},
checkForm: function () {
i... | fix: save project config not warning about unsaved change | rundeck_rundeck | train | js |
a54047788d211016d29b0c855b693587c1312619 | diff --git a/src/main.js b/src/main.js
index <HASH>..<HASH> 100644
--- a/src/main.js
+++ b/src/main.js
@@ -28,7 +28,7 @@ class ScopedComponent extends Component {
assocReducer(reducer) {
const path = this.getCurrentScope();
if (this.context.kScope) {
- return this.context.kScope.assocR... | fix(ScopedComponent): remove path param from assocReducer call | krzysztofpniak_k-logic | train | js |
c9b5f4a6d9bbc8bd17d80628078c16ffd4db8ee0 | diff --git a/preprocessor/webpack.js b/preprocessor/webpack.js
index <HASH>..<HASH> 100644
--- a/preprocessor/webpack.js
+++ b/preprocessor/webpack.js
@@ -46,8 +46,7 @@ function inlineUrlLoadedAssets (options = {}) {
function compileTemplate (options = {}) {
options.resolve = options.resolve || {}
options.resolv... | fix: Issue bahmutov/cypress-vue-unit-test#<I> force the compiler only build to support template options (bahmutov/cypress-vue-unit-test#<I>) | cypress-io_cypress | train | js |
b1b279f653da0bec82e15b68c0455ea5cfca586c | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -13,9 +13,8 @@ module.exports = function (promises) {
return previousPromise
.then(function (result) {
if (count++ !== 0) results = results.concat(result);
- return result;
+ return... | feat: bring previousResponse, all responses at the moment and current count each function iteration | russiann_promise-sequential | train | js |
5c2624b2ba3b94b0537532a0f5eaaf4647a1d465 | diff --git a/packages/ssr/src/component/article.js b/packages/ssr/src/component/article.js
index <HASH>..<HASH> 100644
--- a/packages/ssr/src/component/article.js
+++ b/packages/ssr/src/component/article.js
@@ -5,10 +5,9 @@ const { ApolloProvider } = require("react-apollo");
const { ArticleProvider } = require("@times... | fix: colour byline by article section (#<I>) | newsuk_times-components | train | js |
d6fb916aba674829e491a81f938cce8f39799463 | diff --git a/src/foremast/iam/construct_policy.py b/src/foremast/iam/construct_policy.py
index <HASH>..<HASH> 100644
--- a/src/foremast/iam/construct_policy.py
+++ b/src/foremast/iam/construct_policy.py
@@ -52,14 +52,19 @@ def construct_policy(app='coreforrest',
else:
items = value
- stat... | fix: Handle Policy template with > 1 block
For templates/iam/s3.json.j2, permissions were split out to two object
blocks without enclosing list indicators. This adds brackets to what is
most likely a list without brackets.
See also: PSOBAT-<I> | foremast_foremast | train | py |
86585233b7ea4136ffb6a57944dadde42cc1e630 | diff --git a/framework/directives/switch.js b/framework/directives/switch.js
index <HASH>..<HASH> 100755
--- a/framework/directives/switch.js
+++ b/framework/directives/switch.js
@@ -184,7 +184,7 @@
scope : scope,
attrs : attrs
});
- checkbox = element = attrs = scope = nul... | fix(ons-switch): Remove undeclared variable. | OnsenUI_OnsenUI | train | js |
f2def413bf392034de168b2c4535b4feec10ae3b | diff --git a/test/static.test.js b/test/static.test.js
index <HASH>..<HASH> 100644
--- a/test/static.test.js
+++ b/test/static.test.js
@@ -2840,7 +2840,7 @@ t.test('routes should fallback to default errorHandler', t => {
})
})
-t.test('precent encoded URLs in glob mode', (t) => {
+t.test('percent encoded URLs in ... | chore: fix typo (#<I>) | fastify_fastify-static | train | js |
95badf90e58605e5f5e122ed721946105dd58ea8 | diff --git a/src/Leevel/View/Html.php b/src/Leevel/View/Html.php
index <HASH>..<HASH> 100644
--- a/src/Leevel/View/Html.php
+++ b/src/Leevel/View/Html.php
@@ -150,6 +150,8 @@ class Html extends View implements IView
return true;
}
+ clearstatcache();
+
return filemtime($file) >= ... | refactor(view): clearstatcache for filemtime | hunzhiwange_framework | train | php |
ceec04fec8e7abe96b3059d1e6923c750a4035f5 | diff --git a/modules/browser.js b/modules/browser.js
index <HASH>..<HASH> 100644
--- a/modules/browser.js
+++ b/modules/browser.js
@@ -14,6 +14,7 @@ let getLocation = (opts) => {
: window.location.pathname.replace(new RegExp('^' + opts.base), '');
return path + window.location.search;
};
+
/**
* Expor... | refactor: fix linting issue | router5_router5 | train | js |
781fc1ac36d2498b61909a6950f9a7bb807f663e | diff --git a/test/test_basic.go b/test/test_basic.go
index <HASH>..<HASH> 100644
--- a/test/test_basic.go
+++ b/test/test_basic.go
@@ -95,7 +95,7 @@ func (s *BasicSuite) TestBasic(t *c.C) {
t.Assert(s.Flynn("scale", "web=3"), Succeeds)
route := random.String(32) + ".dev"
- newRoute := s.Flynn("route", "add", "-t"... | test: Fix test to work with the latest CLI. | flynn_flynn | train | go |
81292b774697b486fd2d5ace6fd851266b7ddc2b | diff --git a/projects/ngrx.io/src/app/search/search-worker.js b/projects/ngrx.io/src/app/search/search-worker.js
index <HASH>..<HASH> 100644
--- a/projects/ngrx.io/src/app/search/search-worker.js
+++ b/projects/ngrx.io/src/app/search/search-worker.js
@@ -6,7 +6,7 @@
var SEARCH_TERMS_URL = '/generated/docs/app/search-d... | docs: fix import for search service worker (#<I>) | ngrx_platform | train | js |
0e2a09571c8e5ee61153b04e45334a226a1b4534 | diff --git a/packages/discord.js/src/util/Transformers.js b/packages/discord.js/src/util/Transformers.js
index <HASH>..<HASH> 100644
--- a/packages/discord.js/src/util/Transformers.js
+++ b/packages/discord.js/src/util/Transformers.js
@@ -9,6 +9,7 @@ const snakeCase = require('lodash.snakecase');
*/
function toSnake... | fix(Transformers): do not transform `Date` objects (#<I>) | discordjs_discord.js | train | js |
8a1c2495c07f9d240355ffa5c9bceb0e200cb136 | diff --git a/test/click.spec.js b/test/click.spec.js
index <HASH>..<HASH> 100644
--- a/test/click.spec.js
+++ b/test/click.spec.js
@@ -27,6 +27,15 @@ module.exports.addTests = function({testRunner, expect, puppeteer}) {
await page.click('button');
expect(await page.evaluate(() => result)).toBe('Clicked');... | test: add SVG clicking test (#<I>)
Someone had concerns that pptr's clicking doesn't work with SVG.
Make sure Puppeteer's clicking does. | GoogleChrome_puppeteer | train | js |
a45bf7022649afcb68070eb924867aa4fd0ac277 | diff --git a/spec/smokeConf.js b/spec/smokeConf.js
index <HASH>..<HASH> 100644
--- a/spec/smokeConf.js
+++ b/spec/smokeConf.js
@@ -51,14 +51,14 @@ exports.config = {
jasmineNodeOpts: {
isVerbose: true,
- showTiming: true
+ showTiming: true,
+ defaultTimeoutInterval: 60000
},
params: {
lo... | chore(ci): fix typo putting interval in wrong config | angular_protractor | train | js |
c73b762c592340fd5c6334c622aaaa982d79d870 | diff --git a/examples/official-storybook/preview.js b/examples/official-storybook/preview.js
index <HASH>..<HASH> 100644
--- a/examples/official-storybook/preview.js
+++ b/examples/official-storybook/preview.js
@@ -227,19 +227,14 @@ export const globalTypes = {
},
},
items: [
- {
- ... | fix: getting ready for type instead of condition | storybooks_storybook | train | js |
eecefb23789a60a863e377c092d000b1bdc83932 | diff --git a/tests/test_babel.py b/tests/test_babel.py
index <HASH>..<HASH> 100644
--- a/tests/test_babel.py
+++ b/tests/test_babel.py
@@ -77,16 +77,19 @@ def test_get_translations_existing_and_missing_mo(app):
assert isinstance(d.get_translations(), NullTranslations)
-def test_set_locale(app):
- ""... | test: split set locale to work outside of app ctx | inveniosoftware_invenio-i18n | train | py |
493bc2639eaffe33d8a6147fc63b2ea57f7738a2 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -37,8 +37,8 @@ class ClosureCompilerPlugin {
compiler.plugin('compilation', (compilation, params) => {
const runFullCompilation =
- compilation.compiler.parentCompilation &&
- !this.... | fix: runFullCompilation is inverted | webpack-contrib_closure-webpack-plugin | train | js |
da608dceb10bccbe08549281c1169b043c4f1eb4 | diff --git a/lib/command/CommandStack.js b/lib/command/CommandStack.js
index <HASH>..<HASH> 100644
--- a/lib/command/CommandStack.js
+++ b/lib/command/CommandStack.js
@@ -309,11 +309,11 @@ CommandStack.prototype._internalExecute = function(action, redo) {
this._fire(command, 'executed', action);
if (!redo) {
- ... | feat(command): invoke post-execute listeners after command
This commit swaps the execution of post execute listeners.
They are now executed as the final step (after the commands own
postExecute handler) and may perform additional actions after the
default actions have been carried out. | bpmn-io_diagram-js | train | js,js |
892e90ac94b077c55f85d8085f72c4b73efa6eca | diff --git a/packages/scripts/bin/ensure-initial-tag.js b/packages/scripts/bin/ensure-initial-tag.js
index <HASH>..<HASH> 100755
--- a/packages/scripts/bin/ensure-initial-tag.js
+++ b/packages/scripts/bin/ensure-initial-tag.js
@@ -41,7 +41,6 @@ async function getInitialCommitHash() {
const args = [
"log",
... | chore(release): Disable "follow" for initial tag creation
`git --follow` can be described as a bit overzealous for this use case. It caused too many commits to be analyzed, and resulted in hitting the GitHub rate limit for PR comments. | Autodesk_hig | train | js |
377511298fad413fb59bd0ac211311f93359ed7f | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100755
--- a/index.js
+++ b/index.js
@@ -42,7 +42,18 @@ async function createConfig(setupConfig) {
const detectedKeys = Object.keys(detected);
const promptsConfig = setupConfig.skipDetectedPrompts
- ? setupConfig.prompts.filter(prompt => !detectedKeys.inc... | fix: Add detected values to the function call in types | relekang_setup-eslint-config | train | js |
61e4a0dd2408cad3c5f20ea8bc15fa60beaa48c8 | diff --git a/lib/worker.js b/lib/worker.js
index <HASH>..<HASH> 100644
--- a/lib/worker.js
+++ b/lib/worker.js
@@ -99,7 +99,7 @@ function Request(originalPayload) {
break;
}
}
- if (!cutOff) {
+ if (cutOff == void 0) {
throw new Error('Strangely we didnt... | fix(worker): find index 0 requests | swanest_load-process-manager | train | js,js |
62d8d7eae792fc0ba67ac75c0e10660deba22d48 | diff --git a/src/utils/debounce.js b/src/utils/debounce.js
index <HASH>..<HASH> 100644
--- a/src/utils/debounce.js
+++ b/src/utils/debounce.js
@@ -2,14 +2,6 @@
export function debounce (fn, wait = 250, immediate) {
let timeout
- // Prevents execution of debounced function, or noop if
- // never invoked/already ... | refactor: Addition to previous commit containing debounce work | quasarframework_quasar | train | js |
2e7281e48ffe68c90d5ae1405285dc532f3b80c7 | diff --git a/test/endtoend/url-plugin/test.js b/test/endtoend/url-plugin/test.js
index <HASH>..<HASH> 100644
--- a/test/endtoend/url-plugin/test.js
+++ b/test/endtoend/url-plugin/test.js
@@ -17,6 +17,6 @@ describe('File upload with URL plugin', () => {
// do the upload
browser.waitForVisible('.uppy-u-reset.up... | test: change upload complete selector for url-plugin | transloadit_uppy | train | js |
099bb495cb08c3e8d9ea98042a0a8c41855e85bd | diff --git a/src/components/TextArea/TextArea.js b/src/components/TextArea/TextArea.js
index <HASH>..<HASH> 100644
--- a/src/components/TextArea/TextArea.js
+++ b/src/components/TextArea/TextArea.js
@@ -29,6 +29,7 @@ const TextArea = ({
},
};
+ const errorId = id + '-error-msg';
const textareaClasses = cl... | fix(TextArea): support screenreading invalid text (#<I>) | carbon-design-system_carbon-components-react | train | js |
327cb390c711a8aea883c0a00a3feb21001f8c2b | diff --git a/cpenv/resolver.py b/cpenv/resolver.py
index <HASH>..<HASH> 100644
--- a/cpenv/resolver.py
+++ b/cpenv/resolver.py
@@ -166,7 +166,6 @@ class Localizer(object):
'Localizer expected LocalRepo got %s' % type(to_repo)
)
-
def localize(self, module_specs, overwrite=False):
... | fix: NameError in Localizer | cpenv_cpenv | train | py |
a524cfb495b993ea970b9818a04828b29b493db7 | diff --git a/src/flatten.js b/src/flatten.js
index <HASH>..<HASH> 100644
--- a/src/flatten.js
+++ b/src/flatten.js
@@ -4,7 +4,11 @@
* Konklone JSON - https://github.com/konklone/json/blob/gh-pages/assets/site.js#L28-L55
* onyxfish csvkit - https://github.com/onyxfish/csvkit/blob/61b9c208b7665c20e9a8e95ba6eee811d047... | refactor: extract magic vars into constants | joelcolucci_flatten2 | train | js |
35b1b836d478402956815d41847301e58a7c17a8 | diff --git a/js/okex.js b/js/okex.js
index <HASH>..<HASH> 100644
--- a/js/okex.js
+++ b/js/okex.js
@@ -1637,7 +1637,7 @@ module.exports = class okex extends Exchange {
// spot market buy: "sz" can refer either to base currency units or to quote currency units
// see documentation: https://www.okex.com... | refactor: check if market is spot in a concise way | ccxt_ccxt | train | js |
4341afc763653dce42e7c49b5f193f8e909616a0 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -14,6 +14,7 @@ import {
isFunction,
looseClone,
remove,
+ arrayFrom,
includes,
merge,
numberFormatKeys,
@@ -250,11 +251,13 @@ export default class VueI18n {
watchI18nData (): Function {
... | fix: Ensure that the order at desroy is the same as before change to from (#<I>) | kazupon_vue-i18n | train | js,js |
381d94918f3973ea21a966108d4a01fd3e470be1 | diff --git a/script-base.js b/script-base.js
index <HASH>..<HASH> 100644
--- a/script-base.js
+++ b/script-base.js
@@ -15,6 +15,14 @@ var Generator = module.exports = function Generator() {
this.lodash = lodash;
+ if(!process.env.CI) {
+ yoCheckPromise = genUtils.runCmd('yo --version').then(stdout => {
+ ... | chore(gen): make sure users are using yo >= <I> | DaftMonk_generator-ng-component | train | js |
2850e3e175b3464b3255fb78922b243838206e35 | diff --git a/packages/core/src/overlay/index.js b/packages/core/src/overlay/index.js
index <HASH>..<HASH> 100644
--- a/packages/core/src/overlay/index.js
+++ b/packages/core/src/overlay/index.js
@@ -69,7 +69,7 @@ export default class Overlay extends React.Component {
handleBackdropMouseDown(e) {
const { backdro... | fix(Overlay): Fix maskClosable props issue. | uiwjs_uiw | train | js |
17f4bf49b268b473619b2253b009e721b13cd797 | diff --git a/gulp/util.js b/gulp/util.js
index <HASH>..<HASH> 100644
--- a/gulp/util.js
+++ b/gulp/util.js
@@ -54,7 +54,7 @@ function buildJs () {
.pipe(concat('angular-material.js'))
.pipe(BUILD_MODE.transform())
.pipe(insert.prepend(config.banner))
- .pipe(insert.append('window.ngMaterial={v... | fix(build): add second missing semi colon | angular_material | train | js |
7e2463c9832f8aa4b33d2c49246f8e00e0213dd0 | diff --git a/src/js/datepicker/index.js b/src/js/datepicker/index.js
index <HASH>..<HASH> 100644
--- a/src/js/datepicker/index.js
+++ b/src/js/datepicker/index.js
@@ -647,6 +647,7 @@ var DatePicker = defineClass(
*/
_onClickHandler: function(ev) {
var target = util.getTarget(ev);
+ ev.preventDefa... | fix: touch below element together in smartphone (fix #<I>) (#<I>)
* fix: touch below element together in smartphone
* chore: apply code review | nhn_tui.date-picker | train | js |
664e7a9f6d5ca8033ef696071443769aaf9a577a | diff --git a/salt/states/rabbitmq_user.py b/salt/states/rabbitmq_user.py
index <HASH>..<HASH> 100644
--- a/salt/states/rabbitmq_user.py
+++ b/salt/states/rabbitmq_user.py
@@ -91,9 +91,9 @@ def present(name, password=None, force=False, tags=None, perms=(), runas=None):
name
User name
password
- ... | docs: Clarify that RabbitMQ user's password can be changed without `force` | saltstack_salt | train | py |
dac29f73ed2dfc18edc2e8743ffd509af8ab0f4a | diff --git a/lib/cmd/start.js b/lib/cmd/start.js
index <HASH>..<HASH> 100644
--- a/lib/cmd/start.js
+++ b/lib/cmd/start.js
@@ -156,7 +156,7 @@ class StartCommand extends Command {
this.logger.info('%s started on %s', this.frameworkName, msg.data.address);
child.unref();
child.disconnect... | refactor: add `this.exit` to instead of `process.exit` (#<I>) | eggjs_egg-scripts | train | js,js |
a371d34d7c0494231336ae90872ebbf67899ff7c | diff --git a/cloudvolume/microviewer/datacube.js b/cloudvolume/microviewer/datacube.js
index <HASH>..<HASH> 100644
--- a/cloudvolume/microviewer/datacube.js
+++ b/cloudvolume/microviewer/datacube.js
@@ -1315,7 +1315,10 @@ function renumber (cube) {
let cur_label = 0;
for (let i = cube.length - 1; i >= 0; i--) {... | fix(uviewer): segmentation viewer was coloring in background | seung-lab_cloud-volume | train | js |
98f6995bdcbd10ea0387d0c55cb6351b81a857fd | diff --git a/git/index/base.py b/git/index/base.py
index <HASH>..<HASH> 100644
--- a/git/index/base.py
+++ b/git/index/base.py
@@ -579,6 +579,7 @@ class IndexFile(LazyMixin, diff.Diffable, Serializable):
fprogress(filepath, False, filepath)
istream = self.repo.odb.store(IStream(Blob.type, st.st_size, ... | fix(index): _store_path() now closes it's stream
This should prevent a resource warning given in py3
Fixes #<I> | gitpython-developers_GitPython | train | py |
8f4c6ac5583df1530163a46e4634f25238b5a275 | diff --git a/world.go b/world.go
index <HASH>..<HASH> 100644
--- a/world.go
+++ b/world.go
@@ -33,7 +33,7 @@ func (w *World) AddSystemInterface(sys SystemAddByInterfacer, in interface{}, ex
w.sysIn = make(map[reflect.Type][]reflect.Type)
}
- if reflect.TypeOf(in).AssignableTo(reflect.TypeOf([]interface{}{})) {
+... | fix(world): added a `!` to a boolean expression. | EngoEngine_ecs | train | go |
3ee325945264ce87cadd60c3fa8f2db03f6b1b78 | diff --git a/packages/xod-fs/src/utils.js b/packages/xod-fs/src/utils.js
index <HASH>..<HASH> 100644
--- a/packages/xod-fs/src/utils.js
+++ b/packages/xod-fs/src/utils.js
@@ -99,7 +99,7 @@ export const doesFileExist = def(
);
export const getPatchName = def(
- 'getPatchName :: Path -> Identifier',
+ 'getPatchName... | fix(xod-fs): fix getPatchName type definition | xodio_xod | train | js |
23dd4cf9ac1d5e928ae1db2fc7b73bd47c64aa41 | diff --git a/src/utils/transform.js b/src/utils/transform.js
index <HASH>..<HASH> 100644
--- a/src/utils/transform.js
+++ b/src/utils/transform.js
@@ -267,7 +267,7 @@ export const extractPropsFromState = (store, component, customOptions) => {
: undefined,
value,
pagination,
- after: pagination
+ after: pagi... | fix: support pagination with aggregationField | appbaseio_reactivecore | train | js |
f883b3ae4440a49532a416a27e09cb7e12809fbf | diff --git a/packages/react/src/components/UIShell/SideNav.js b/packages/react/src/components/UIShell/SideNav.js
index <HASH>..<HASH> 100644
--- a/packages/react/src/components/UIShell/SideNav.js
+++ b/packages/react/src/components/UIShell/SideNav.js
@@ -122,7 +122,7 @@ const SideNav = React.forwardRef(function SideNav... | fix(react): update side nav aria-hidden check (#<I>)
* fix(styles): update breadcrumb to include link
* refactor(styles): move css to dedicate entrypoint for import ordering
* fix(react): update side nav aria-hidden check | carbon-design-system_carbon-components | train | js |
534f60d5a99e624855f9057b1ff7278bb314a626 | diff --git a/src/ApiClient/index.js b/src/ApiClient/index.js
index <HASH>..<HASH> 100644
--- a/src/ApiClient/index.js
+++ b/src/ApiClient/index.js
@@ -30,7 +30,7 @@ class ApiClient {
requestMethods.forEach((method) => {
ApiClient.prototype[method] = function (url) {
- url = /^http(s)?/.test(url) ? url : `${pro... | refactor(apiclient): urls should work without / slash | adonisjs_adonis-vow | train | js |
21498cd02bf7a416b4c413b855176f29d9086dd9 | diff --git a/scripts/release/releaseNotesTemplate.js b/scripts/release/releaseNotesTemplate.js
index <HASH>..<HASH> 100644
--- a/scripts/release/releaseNotesTemplate.js
+++ b/scripts/release/releaseNotesTemplate.js
@@ -139,9 +139,9 @@ function createOtherTable(release) {
| type | summary | commit | issues | author | g... | fix(release): fix release template bugs | cerebral_cerebral | train | js |
399ac1ebfde49fea29e359d2121cdc323bc80a23 | diff --git a/lib/browser.js b/lib/browser.js
index <HASH>..<HASH> 100644
--- a/lib/browser.js
+++ b/lib/browser.js
@@ -128,13 +128,6 @@ var Browser = function(id, collection, emitter) {
var Collection = function(emitter, browsers) {
browsers = browsers || [];
- // Use ecma5 style to make jshint happy
- Object.d... | refactor: just a little code movings | karma-runner_karma | train | js |
45c2061cae71f5f633552ce6a03f279058d1aa31 | diff --git a/lib/util/index.js b/lib/util/index.js
index <HASH>..<HASH> 100644
--- a/lib/util/index.js
+++ b/lib/util/index.js
@@ -932,6 +932,7 @@ function getPipeIconvStream(headers, plainText) {
content += chunk ? decoder.write(chunk) : decoder.end();
} catch(e) {//可能抛出异常RangeError: out of range index,具体... | fix: RangeError: out of range index | avwo_whistle | train | js |
1e8147aec72e4187ac153562ec2b197d3f83e7eb | diff --git a/examples/training/train_parser.py b/examples/training/train_parser.py
index <HASH>..<HASH> 100644
--- a/examples/training/train_parser.py
+++ b/examples/training/train_parser.py
@@ -21,7 +21,7 @@ TRAIN_DATA = [
'heads': [1, 1, 4, 4, 5, 1, 1],
'deps': ['nsubj', 'ROOT', 'compound', 'punct',... | fix: Add missing period in train data | explosion_spaCy | train | py |
8bb97bdf15c1ef54cb1274bb49423b39f24d1260 | diff --git a/demo/modules/UploadSimple/components/Form/index.js b/demo/modules/UploadSimple/components/Form/index.js
index <HASH>..<HASH> 100644
--- a/demo/modules/UploadSimple/components/Form/index.js
+++ b/demo/modules/UploadSimple/components/Form/index.js
@@ -1,5 +1,4 @@
import React, {Component} from 'react'
-impo... | chore(demo): remove import from deleted uploadService | cerebral-legacy_cerebral-module-forms | train | js |
e1ba5f2e1160092fed1fd83d17558e38d9de4eb9 | diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index <HASH>..<HASH> 100644
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -132,6 +132,7 @@ module.exports = {
'/user_guide/client-sdk',
'/client-sdk',
... | docs: reuse pre-existing redirect to /sdks | Unleash_unleash | train | js |
cfc828dc93e0c73e5195c93621e42d2eef4bf160 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -45,7 +45,7 @@ exports.convert = function (data) {
let srGlobalParameters = processGlobalParameters(data.parameters, srGlobalRefParameters);
let swagger = _.assign({
- swagger: '2.0',
+ openapi: '... | feat: WIP conversion to openapi <I> output | APIs-guru_google-discovery-to-swagger | train | js |
caf960f229de3c8d7ea1e97f8d93371171ee8f1f | diff --git a/src/support/KoatonRouter.js b/src/support/KoatonRouter.js
index <HASH>..<HASH> 100644
--- a/src/support/KoatonRouter.js
+++ b/src/support/KoatonRouter.js
@@ -39,7 +39,7 @@ async function protect (ctx, next) {
ctx.body = null;
ctx.status = 401;
} else {
- await ctx.login();
+ ctx.state.u... | fix: user won't be store in session if Bearer Authorization is requested | gerard2p_koaton | train | js |
dae584d644e97ab2810ff8f97275ff57c580155a | diff --git a/model/tasks/ImportAndCompile.php b/model/tasks/ImportAndCompile.php
index <HASH>..<HASH> 100644
--- a/model/tasks/ImportAndCompile.php
+++ b/model/tasks/ImportAndCompile.php
@@ -41,6 +41,7 @@ use oat\oatbox\service\exception\InvalidServiceManagerException;
use common_exception_InconsistentData as Inconsis... | fix: catch all errors and exceptions in `ImportAndCompile` task, returning a proper task report | oat-sa_extension-tao-delivery-rdf | train | php |
0b4802a6d75934feba6d5511ef57e0cf3b94fbf1 | diff --git a/lib/prompts/autocomplete.js b/lib/prompts/autocomplete.js
index <HASH>..<HASH> 100644
--- a/lib/prompts/autocomplete.js
+++ b/lib/prompts/autocomplete.js
@@ -52,6 +52,10 @@ class AutoComplete extends Select {
return this.complete();
}
+ number(ch) {
+ return this.append(ch);
+ }
+
async c... | fix: override inheritied `number` in autocomplete | enquirer_enquirer | train | js,js |
9a2fd800f85ea61e9e6f36fcfc19f757bde29cc6 | diff --git a/asyncstorage-core.js b/asyncstorage-core.js
index <HASH>..<HASH> 100644
--- a/asyncstorage-core.js
+++ b/asyncstorage-core.js
@@ -93,6 +93,10 @@ AsyncStorageCore.destroy = function (dbname, callback) {
return key.slice(0, prefixLen) === prefix;
})
+ if (!keys.length) {
+ return callba... | fix: revert deleted edge case optimization for multiRemove | tradle_asyncstorage-down | train | js |
82ad7906c3316e80421e8268ad9a81422fc455eb | diff --git a/test/test.conf.js b/test/test.conf.js
index <HASH>..<HASH> 100644
--- a/test/test.conf.js
+++ b/test/test.conf.js
@@ -1,4 +1,4 @@
-basePath = '../..';
+basePath = '..';
files = [
JASMINE, | fix(test): Corrected path to root for test config | angular-ui_ui-select2 | train | js |
519358ef24d54bbc83cdd02acbbf2ecac4257d56 | diff --git a/tests/gui/test_backward_compatibility_storage.py b/tests/gui/test_backward_compatibility_storage.py
index <HASH>..<HASH> 100644
--- a/tests/gui/test_backward_compatibility_storage.py
+++ b/tests/gui/test_backward_compatibility_storage.py
@@ -158,14 +158,15 @@ def calculate_state_machine_hash(path):
pa... | test(backward_compatibility): fix ignoring of empty semantic data files
Do not read in binary format | DLR-RM_RAFCON | train | py |
41b58969bacf874d454d2f9bd23cd8d478c35568 | diff --git a/lib/generate.js b/lib/generate.js
index <HASH>..<HASH> 100644
--- a/lib/generate.js
+++ b/lib/generate.js
@@ -1,4 +1,4 @@
-var Canvas = require('canvas'),
+var createCanvas = require('canvas').createCanvas,
fs = require('fs'),
nomnoml = require('nomnoml'),
path = require('path'),
@@ -56,7 +5... | fix: Update the source code to use the new node-canvas interface | prantlf_nomnoml-cli | train | js |
7155bf43e9d264b9dda91f6f70d83c0f556af7d7 | diff --git a/lib/navigation/zoomscroll/ZoomScroll.js b/lib/navigation/zoomscroll/ZoomScroll.js
index <HASH>..<HASH> 100644
--- a/lib/navigation/zoomscroll/ZoomScroll.js
+++ b/lib/navigation/zoomscroll/ZoomScroll.js
@@ -65,7 +65,7 @@ function ZoomScroll(events, canvas) {
}
// zoom in relative to diag... | fix(zoomscroll): zoom into the right dimension | bpmn-io_diagram-js | train | js |
dc12b1df004fc4c2d6060d3d2acfd7d163eb4006 | diff --git a/src/models/room.js b/src/models/room.js
index <HASH>..<HASH> 100644
--- a/src/models/room.js
+++ b/src/models/room.js
@@ -983,6 +983,15 @@ Room.prototype.addEventsToTimeline = function(events, toStartOfTimeline,
};
/**
+ * Get all currently loaded members from the current
+ * room state.
+ * @returns ... | feat: room.getMembers | matrix-org_matrix-js-sdk | train | js |
3110780564c75137fbf5157f57b1222683280b9e | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -92,7 +92,7 @@ require('./lib/rollbar')
async function consume (job) {
const data = JSON.parse(job.content.toString())
- const jobsWithoutOwners = ['registry-change', 'stripe-event', 'schedule-stale-initial-pr-rem... | feat: add monorepo-supervisor to jobs without owner | greenkeeperio_greenkeeper | train | js |
9b14b4313dd9d3257a6e613bda8317c408f15570 | diff --git a/src/utils/suggestions.js b/src/utils/suggestions.js
index <HASH>..<HASH> 100644
--- a/src/utils/suggestions.js
+++ b/src/utils/suggestions.js
@@ -56,7 +56,7 @@ const getSuggestions = (fields, suggestions, currentValue, suggestionProperties
String(replaceDiacritics(val))
.toLowerCase()
.in... | refactor: getSuggestions to include promoted results | appbaseio_reactivecore | train | js |
6a1c91848858453d0af712588b51c0bdaa0c9445 | diff --git a/lib/runner.js b/lib/runner.js
index <HASH>..<HASH> 100644
--- a/lib/runner.js
+++ b/lib/runner.js
@@ -137,6 +137,12 @@ var setUpSelenium = function() {
config.seleniumArgs.push(
'-Dwebdriver.chrome.driver=' + config.chromeDriver);
}
+
+ if (config.seleniumServerJar && !fs.existsSy... | feat(runner): add error message for bad jar path
Closes #<I>.
If a bad path was provided in the protractor
configuration, the runner would fail with an
ambiguous error.
This fix checks that a file exists at the
provided path, and throws an error if not,
suggesting that perhaps the version is
wrong in the configuration... | angular_protractor | train | js |
89c9c74969ba3f6afb930c7cdf73f2e01cb9a1bc | diff --git a/dependencyManager.js b/dependencyManager.js
index <HASH>..<HASH> 100644
--- a/dependencyManager.js
+++ b/dependencyManager.js
@@ -40,7 +40,7 @@ function addDependency(deps, name, version, force) {
function getRequiredDeps(packageJson) {
let deps = {
- "webpack": "~2.3.3",
+ "webpack":... | chore: update webpack to <I> (#<I>) | NativeScript_nativescript-dev-webpack | train | js |
b3e19130d7fbdbc0a92b1c14487b8aa655171e4c | diff --git a/credkeep/__init__.py b/credkeep/__init__.py
index <HASH>..<HASH> 100644
--- a/credkeep/__init__.py
+++ b/credkeep/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '0.2.0'
+__version__ = '0.2.1'
from decrypt import decrypt_file
from encrypt import encrypt_file | chore: version bump to <I> | lewisjared_credkeep | train | py |
5d73dcaf89e4c19edf53ac06917aab776174611e | diff --git a/src/lib/storage/local/local-data.js b/src/lib/storage/local/local-data.js
index <HASH>..<HASH> 100644
--- a/src/lib/storage/local/local-data.js
+++ b/src/lib/storage/local/local-data.js
@@ -33,11 +33,13 @@ const logger = require('../../logger');
}
}
- try {
- this.data = JSON.parse(db... | fix: :bug: check error code to prevent data loss | verdaccio_verdaccio | train | js |
7e68a0c90f19ff9d8cfaab8f064628e72db2a054 | diff --git a/lib/plugins/package/lib/zipService.js b/lib/plugins/package/lib/zipService.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/package/lib/zipService.js
+++ b/lib/plugins/package/lib/zipService.js
@@ -204,9 +204,7 @@ function excludeNodeDevDependencies(servicePath) {
const depFile = env === 'dev'... | refactor: Replace `_.compact` with `array.filter(Boolean)` (#<I>) | serverless_serverless | train | js |
6c1711bb28d2befb9e274d9af8f06f5594f8cc5c | diff --git a/manifest.php b/manifest.php
index <HASH>..<HASH> 100755
--- a/manifest.php
+++ b/manifest.php
@@ -250,9 +250,9 @@ return [
],
'constants' => [
#TAO version number
- 'TAO_VERSION' => '2022.06',
+ 'TAO_VERSION' => '2022.08',
#TAO version label
- 'TAO_VERSION_N... | chore: update tao version in footer for August release | oat-sa_tao-core | train | php |
6be155f28e1ae1ef7cc1c7ef221ed4a080136436 | diff --git a/core/routing/query.go b/core/routing/query.go
index <HASH>..<HASH> 100644
--- a/core/routing/query.go
+++ b/core/routing/query.go
@@ -102,3 +102,10 @@ func PublishQueryEvent(ctx context.Context, ev *QueryEvent) {
ech := ich.(*eventChannel)
ech.send(ctx, ev)
}
+
+// SubscribesToQueryEvents returns true... | feat: add a function to tell if a context subscribes to query events
This can save us some work if the caller doesn't actually care about these events. | libp2p_go-libp2p | train | go |
1f4ef522bc0f04d776bf38bcd5fc8f221cbae1bf | diff --git a/lib/components/user/trip-summary-pane.js b/lib/components/user/trip-summary-pane.js
index <HASH>..<HASH> 100644
--- a/lib/components/user/trip-summary-pane.js
+++ b/lib/components/user/trip-summary-pane.js
@@ -27,7 +27,7 @@ class TripSummaryPane extends Component {
Happens on: <b>{capitalizedD... | refactor(TripNotificationPane): Add missing blank space. | opentripplanner_otp-react-redux | train | js |
12b62011367c4afb46b37c22db9cb544f6fad5aa | diff --git a/scripts/cli.js b/scripts/cli.js
index <HASH>..<HASH> 100755
--- a/scripts/cli.js
+++ b/scripts/cli.js
@@ -7,6 +7,7 @@ import {
readdirSync,
existsSync,
lstatSync,
+ realpathSync,
} from "fs";
import { resolve } from "path";
@@ -41,10 +42,11 @@ function resolveFileOrDir(path, cb) {
proces... | fix(cli): follow the symlinks in extractor command | hybridsjs_hybrids | train | js |
fac222a58d955b7ca8d34aa86d36bc4bf44b84e9 | diff --git a/src/api/index.js b/src/api/index.js
index <HASH>..<HASH> 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -9,7 +9,9 @@ function getAllLeafProperties(data) {
switch (p.type) {
case 'html':
case 'plain':
+ break
case 'array':
+ p.items.forEach(i => A... | fix: onValueChange with arrays | cignium_hypermedia-client | train | js |
b7a08749d7f4b3188b49bd0f217c5bcc395529eb | diff --git a/packages/cli/bin/sketch-build.js b/packages/cli/bin/sketch-build.js
index <HASH>..<HASH> 100644
--- a/packages/cli/bin/sketch-build.js
+++ b/packages/cli/bin/sketch-build.js
@@ -31,6 +31,11 @@ function logError(err) {
program
.option("-u, --umd <name>", "Specify name exposed in UMD builds")
.option(... | fix: add format for sketch build command | 36node_sketch | train | js |
80812875c20a227c509e1c8bef8ac5ef9d2b92ed | diff --git a/test/test.js b/test/test.js
index <HASH>..<HASH> 100644
--- a/test/test.js
+++ b/test/test.js
@@ -132,3 +132,12 @@ test('Must use custom attribute name if it was provided in options', async t =>
t.is(html, expected);
});
+
+test('Must parse locals passed to <content>', async t => {
+ const actual =... | test: fails to parse expressions in <content> | posthtml_posthtml-modules | train | js |
287ee17bd58438db069fc7223e187a9488393300 | diff --git a/lib/renderer/default-renderer.js b/lib/renderer/default-renderer.js
index <HASH>..<HASH> 100644
--- a/lib/renderer/default-renderer.js
+++ b/lib/renderer/default-renderer.js
@@ -181,7 +181,6 @@ export default class DefaultRenderer extends Renderer {
*/
focusPath (path) {
- var self = this
... | fix(display): Fix bug with focus transitions | conveyal_transitive.js | train | js |
bef9a6728c476064362e0ee451e930032574bf70 | diff --git a/src/telegram-driver/sources.js b/src/telegram-driver/sources.js
index <HASH>..<HASH> 100644
--- a/src/telegram-driver/sources.js
+++ b/src/telegram-driver/sources.js
@@ -6,19 +6,17 @@ import {
UpdatesState,
Message,
InlineQuery,
- ChosenInlineResult
+ ChosenInlineResult,
+ CallbackQuery
} from... | fix(sources): fix timeout
(cherry picked from commit <I>b<I>b) | goodmind_cycle-telegram | train | js |
68260025d273f044e833b3726ad09f78187c1405 | diff --git a/src/utils/clone.js b/src/utils/clone.js
index <HASH>..<HASH> 100644
--- a/src/utils/clone.js
+++ b/src/utils/clone.js
@@ -1,4 +1,6 @@
export default function (data) {
const s = JSON.stringify(data)
- return s === void 0 ? s : JSON.parse(JSON.stringify(data))
+ if (s) {
+ return JSON.parse(s)
+ }
... | fix(clone): Duplicate stringify was in place | quasarframework_quasar | train | js |
5f553cb59740458d41ae281b3c229f9c22e61519 | diff --git a/src/Cursor.js b/src/Cursor.js
index <HASH>..<HASH> 100644
--- a/src/Cursor.js
+++ b/src/Cursor.js
@@ -15,6 +15,36 @@ export * from './eraseRegions';
*/
export class Cursor {
/**
+ * Get list of all available colors for Cursor API.
+ *
+ * @constructor
+ * @returns {COLORS}
+ */
+ get COLOR... | feat(cursor): Add getters for cursors, display modes and erase regions | kittikjs_cursor | train | js |
60f516cd34383ec664fca4b25b327dd1e44d72c6 | diff --git a/lib/plugin/components/state-resources/send-task-heartbeat/index.js b/lib/plugin/components/state-resources/send-task-heartbeat/index.js
index <HASH>..<HASH> 100644
--- a/lib/plugin/components/state-resources/send-task-heartbeat/index.js
+++ b/lib/plugin/components/state-resources/send-task-heartbeat/index.... | feat: acknowledge relaxed property when execution is not running | wmfs_tymly-core | train | js |
3d704381d91a81903776744d5928ed128b918aa2 | diff --git a/examples/seed.js b/examples/seed.js
index <HASH>..<HASH> 100644
--- a/examples/seed.js
+++ b/examples/seed.js
@@ -33,7 +33,7 @@ let parties;
// seed permissions
const seedPermissions = next => {
- Permission.seed((error, seeded) => {
+ Permission.seed(permissions,(error, seeded) => {
log('permis... | refactor(seed): resolve seed for party location | CodeTanzania_emis-stakeholder | train | js |
254a1cfab8447707a5777f92b643f4ab3e22f75f | diff --git a/internal/pipe/publish/publish.go b/internal/pipe/publish/publish.go
index <HASH>..<HASH> 100644
--- a/internal/pipe/publish/publish.go
+++ b/internal/pipe/publish/publish.go
@@ -38,11 +38,13 @@ var publishers = []Publisher{
s3.Pipe{},
put.Pipe{},
artifactory.Pipe{},
- release.Pipe{},
brew.Pipe{},
... | fix: Bring back docker release notes
Docker image names were not being added to the release notes
because the Github release step was happening earlier in the
pipeline than the docker release itself (so no artifacts had
been added to the context). This patch re-orders the pipeline
and adds a comment to warn against th... | goreleaser_goreleaser | train | go |
8f17e76e08a691cf366e7aaf4c1f4442190e4ab5 | diff --git a/tests.js b/tests.js
index <HASH>..<HASH> 100644
--- a/tests.js
+++ b/tests.js
@@ -264,6 +264,14 @@ describe('module angularMoment', function () {
expect(element.text()).toBe('il y a quelques secondes');
});
+ it('should update the `datetime` attr if applied to a TIME element', function () {
+ $... | test(am-time-ago): add test for setting the `datetime` attribute of `time` elements (#<I>) | urish_angular-moment | train | js |
c197cbafb39ad3234f0112d67c7928be4047a74f | diff --git a/lib/components/Transition/index.js b/lib/components/Transition/index.js
index <HASH>..<HASH> 100644
--- a/lib/components/Transition/index.js
+++ b/lib/components/Transition/index.js
@@ -43,7 +43,7 @@ class Example extends React.Component {
in={this.state.isOffscreen}
type="fade">
... | fix(Transition): Fix Transition component example
The Avatar components in the example had the wrong prop s/userName/name
fixes INSTUI-<I>
Test plan:
Verify that the Transition examples render fine
Change-Id: Ib6eedbac<I>e3ecb<I>e<I>a<I>ef<I>a<I>b1
Reviewed-on: <URL> | instructure_instructure-ui | train | js |
36da20f184124dd914edd5d885b91f4dadf7ce38 | diff --git a/packages/www/gulpfile.js b/packages/www/gulpfile.js
index <HASH>..<HASH> 100644
--- a/packages/www/gulpfile.js
+++ b/packages/www/gulpfile.js
@@ -57,7 +57,7 @@ gulp.task("docs:index", () => {
.src([
"dist/*.html"
])
- .pipe(gulp.dest("./"));
+ .pipe(gulp.dest(".... | fix(www): Actually move the built `html` files into the root directory.
Ugh. Trailing slashes... 🤦♂️ | randytarampi_me | train | js |
1f1f5c1ae24851a7065abcf8f60eca5c63db8e22 | diff --git a/test/k8sT/Policies.go b/test/k8sT/Policies.go
index <HASH>..<HASH> 100644
--- a/test/k8sT/Policies.go
+++ b/test/k8sT/Policies.go
@@ -25,7 +25,7 @@ import (
"github.com/sirupsen/logrus"
)
-var _ = Describe("K8sPolicyTest", func() {
+var _ = Describe("K8sValidatedPolicyTest", func() {
var demoPath ... | test: validate test/k8sT/Policies.go
Change "Describe" of from "K8sPolicyTest" to "K8sValidatedPolicyTest".
This will run the test as part of builds ran with pull-requests. | cilium_cilium | train | go |
0d354be112589af9e19736b9fb968095a0ca52a9 | diff --git a/src/AvValidator/utils.js b/src/AvValidator/utils.js
index <HASH>..<HASH> 100644
--- a/src/AvValidator/utils.js
+++ b/src/AvValidator/utils.js
@@ -4,7 +4,7 @@ import isUndefined from 'lodash/isUndefined';
export const isoDateFormat = 'YYYY-MM-DD';
export function isEmpty(value) {
- return isUndefined(v... | fix(isEmpty): null is empty | Availity_availity-reactstrap-validation | train | js |
dc16b4bb57cd0a0c895c6ef8f73d5a893da2d2e4 | diff --git a/sentry_sdk/transport.py b/sentry_sdk/transport.py
index <HASH>..<HASH> 100644
--- a/sentry_sdk/transport.py
+++ b/sentry_sdk/transport.py
@@ -130,7 +130,11 @@ class HttpTransport(Transport):
return
elif response.status >= 300 or response.status < 200:
- raise ... | fix: Log response body in transport (#<I>)
* fix: Log response body in transport
* fix: Formatting | getsentry_sentry-python | train | py |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.