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 |
|---|---|---|---|---|---|
b4af6c1ac755ea0565e3f70b12b0bf9cb2cc4156 | diff --git a/test/k8sT/cli.go b/test/k8sT/cli.go
index <HASH>..<HASH> 100644
--- a/test/k8sT/cli.go
+++ b/test/k8sT/cli.go
@@ -154,6 +154,8 @@ var _ = Describe("K8sCLI", func() {
_, err = kubectl.CiliumPolicyAction(
namespaceForTest, l3L4DenyPolicy, helpers.KubectlDelete, helpers.HelperTimeout)
Expect(e... | test: Delete the test namespace in CLI test
Delete the test namespace so that the pods therein are not leaked into other tests. | cilium_cilium | train | go |
be41aa6ee3207c04c057fd466272798a33d8f78e | diff --git a/grunt/bump.js b/grunt/bump.js
index <HASH>..<HASH> 100644
--- a/grunt/bump.js
+++ b/grunt/bump.js
@@ -2,14 +2,12 @@ module.exports = function (grunt) {
grunt.config('bump', {
options: {
commitFiles: [
- 'bower.json',
'package.json'
],
... | fix(grunt-bump): Forgot to remove bower dependencies. | chemoish_videojs-chapter-thumbnails | train | js |
1e8e1a65fc937c3558f22a6c65b66fed94915a16 | diff --git a/tools/doc-generator/doc-generator-cli.js b/tools/doc-generator/doc-generator-cli.js
index <HASH>..<HASH> 100755
--- a/tools/doc-generator/doc-generator-cli.js
+++ b/tools/doc-generator/doc-generator-cli.js
@@ -287,6 +287,8 @@ function doneWithProcessing() {
console.log('==> npm run generate');
... | docs(Generation): Generate twice to see if generated menu do work | Kitware_paraviewweb | train | js |
84560e8527a45a7b4ac8d0aa4657a36f9bac7e0b | diff --git a/superset/views/core.py b/superset/views/core.py
index <HASH>..<HASH> 100755
--- a/superset/views/core.py
+++ b/superset/views/core.py
@@ -2234,7 +2234,7 @@ class Superset(BaseSupersetView): # pylint: disable=too-many-public-methods
QueryStatus.SUCCESS,
QueryStatus.TIMED_OUT,
... | fix(errors): Downgrade error on stop query to a warning (#<I>) | apache_incubator-superset | train | py |
cbe0f137b55236da4d0aad861e29a73fbc7a1aa9 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -13,13 +13,14 @@ var SERVER_CONFIG = CONFIG.server;
var TRACEUR_OPTIONS = CONFIG.traceur;
var BUILD_DIR = CONFIG.build.dir;
var PATH = {
- SRC: './src/**/*.ats'
+ SRC: './src/**/*',
+ ATS: './src/**/*.ats'
}... | chore(gulp): fix gulp targets | angular_router | train | js |
6eb2a73ac98dd198d0d5d3fde515ad47df67a59f | diff --git a/src/geshi/cfm.php b/src/geshi/cfm.php
index <HASH>..<HASH> 100644
--- a/src/geshi/cfm.php
+++ b/src/geshi/cfm.php
@@ -324,7 +324,7 @@ $language_data = array (
3 => array(
'<' => '>'
),
- 4 => '/((?!<!)<)(?:"[^"]*"|[^">])+?(>)/si'
+ 4 => '/((?!<!)<)(?:"[^"]*"... | fix: Fixed highlighting nested tags for cfm
fix: Small problem not taking ''-strings into account for matching | GeSHi_geshi-1.0 | train | php |
30e8ed2f3df9e776b5a5937d92e8ff45c54f984f | diff --git a/cmd/helm/list.go b/cmd/helm/list.go
index <HASH>..<HASH> 100644
--- a/cmd/helm/list.go
+++ b/cmd/helm/list.go
@@ -77,12 +77,15 @@ func newListCmd(cfg *action.Configuration, out io.Writer) *cobra.Command {
client.SetStateMask()
results, err := client.Run()
+ if err != nil {
+ return err
+ }... | fix(cli): helm list was ignoring some errors
If the cluster is not reachable, helm list would not report that error. | helm_helm | train | go |
76f1ec746b3f5f40ebf06ea2ac0482986d5d16b6 | diff --git a/src/api/http.js b/src/api/http.js
index <HASH>..<HASH> 100644
--- a/src/api/http.js
+++ b/src/api/http.js
@@ -11,7 +11,7 @@ export async function request(method, href, data, config) {
const response = await fetch(href, request)
const contentType = response.headers.get('Content-Type')
- if (respons... | fix: Refresh on all <I> responses | cignium_hypermedia-client | train | js |
2b706f89f842fae93146a5e4e0321b101c0c3935 | diff --git a/engine/src/test/java/org/camunda/bpm/engine/test/bpmn/event/timer/BoundaryTimerNonInterruptingEventTest.java b/engine/src/test/java/org/camunda/bpm/engine/test/bpmn/event/timer/BoundaryTimerNonInterruptingEventTest.java
index <HASH>..<HASH> 100644
--- a/engine/src/test/java/org/camunda/bpm/engine/test/bpmn... | chore(engine): refactor test assertion to ignore milliseconds
* The MySQL DueDate timestamp doesn't have millisecond accurracy, so current time comparisons fail.
Related to CAM-<I> | camunda_camunda-bpm-platform | train | java |
6b14ab5ba44c7c6b0c1c7614265b5c47f128636b | diff --git a/test/events_test.go b/test/events_test.go
index <HASH>..<HASH> 100644
--- a/test/events_test.go
+++ b/test/events_test.go
@@ -44,7 +44,6 @@ func testEventsStream(t *T) {
if err != nil {
return outp, err
}
- t.Logf(string(outp))
if !strings.Contains(string(outp), "Published event ok") {
re... | test: remove debug log line (#<I>) | micro_micro | train | go |
79ac41ba13f3d4982bc2fdd78744ee1f47cd203b | diff --git a/lib/spec-helper/spec-helper.js b/lib/spec-helper/spec-helper.js
index <HASH>..<HASH> 100644
--- a/lib/spec-helper/spec-helper.js
+++ b/lib/spec-helper/spec-helper.js
@@ -28,7 +28,7 @@ export default async function (options, setupView) {
}
if (all || options.customMatchers) {
- await install("jasm... | fix: update jasmine2-atom-matchers to <I> (#<I>) | UziTech_atom-jasmine3-test-runner | train | js |
f5d542fecebe055944bd4ea93b54dcee77166982 | diff --git a/src/Tippy.js b/src/Tippy.js
index <HASH>..<HASH> 100644
--- a/src/Tippy.js
+++ b/src/Tippy.js
@@ -135,7 +135,7 @@ export default function TippyGenerator(tippy) {
const {instance} = mutableBox;
- instance.setProps(deepPreserveProps(instance.props, props));
+ instance.setProps(deepPreser... | fix: preserve computedProps | atomiks_tippy.js-react | train | js |
f97aa5be1b205146e66a586e7c2a733021fc89cf | diff --git a/src/component/association-select.js b/src/component/association-select.js
index <HASH>..<HASH> 100644
--- a/src/component/association-select.js
+++ b/src/component/association-select.js
@@ -184,7 +184,7 @@ export class AssociationSelect {
resourceChanged(resource) {
if (!resource) {
- logger... | refactor(component): better error description when invalid resource is binded | SpoonX_aurelia-orm | train | js |
ae1c4483498f06fb706f194575c4090867516034 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -19,7 +19,7 @@ const defaultOptions = {
{
loader: require.resolve('babel-loader'),
options: {
- presets: require.resolve('@babel/preset-env'),
+ presets:... | fix: presets must be an array (fixes cypress-io/cypress-webpack-preprocessor#<I>) | cypress-io_cypress | train | js |
1c623f6b094535e31251585ec4a2f377736b9cae | diff --git a/packages/vaex-jupyter/vaex/jupyter/utils.py b/packages/vaex-jupyter/vaex/jupyter/utils.py
index <HASH>..<HASH> 100644
--- a/packages/vaex-jupyter/vaex/jupyter/utils.py
+++ b/packages/vaex-jupyter/vaex/jupyter/utils.py
@@ -145,10 +145,6 @@ class _debounced_callable:
@functools.wraps(self.f)
... | fix: remove future only after old one executed | vaexio_vaex | train | py |
975e15904d33443874fc8be180b0cc3de677ed88 | diff --git a/library/src/pivotal-ui-react/draggable-list/draggable-list.js b/library/src/pivotal-ui-react/draggable-list/draggable-list.js
index <HASH>..<HASH> 100644
--- a/library/src/pivotal-ui-react/draggable-list/draggable-list.js
+++ b/library/src/pivotal-ui-react/draggable-list/draggable-list.js
@@ -17,7 +17,7 @@... | chore(DraggableList): minor cleanup | pivotal-cf_pivotal-ui | train | js |
875bbd90f5e3a2f155220d18ef75ece04b60c452 | diff --git a/lib/components/user/monitored-trip/trip-basics-pane.js b/lib/components/user/monitored-trip/trip-basics-pane.js
index <HASH>..<HASH> 100644
--- a/lib/components/user/monitored-trip/trip-basics-pane.js
+++ b/lib/components/user/monitored-trip/trip-basics-pane.js
@@ -103,7 +103,9 @@ class TripBasicsPane exte... | fix(TripBasicsPane): Hide trip status on first save. | opentripplanner_otp-react-redux | train | js |
91202ce50dd9594d82fcf8125d80e7c39198013a | diff --git a/tornado/test/testing_test.py b/tornado/test/testing_test.py
index <HASH>..<HASH> 100644
--- a/tornado/test/testing_test.py
+++ b/tornado/test/testing_test.py
@@ -51,10 +51,13 @@ class AsyncTestCaseTest(AsyncTestCase):
This test makes sure that a second call to wait()
clears the first time... | test: Use larger time values in testing_test
This test was flaky on appveyor. Also expand comments about what
exactly the test is doing. | tornadoweb_tornado | train | py |
a4344d0cc8258d561ac06450e31348a9df5e707c | diff --git a/samcli/commands/_utils/resources.py b/samcli/commands/_utils/resources.py
index <HASH>..<HASH> 100644
--- a/samcli/commands/_utils/resources.py
+++ b/samcli/commands/_utils/resources.py
@@ -1,5 +1,5 @@
"""
-Enums for Resources and thier Location Properties, along with utlity functions
+Enums for Resources... | docs: fix simple typo, utlity -> utility (#<I>)
There is a small typo in samcli/commands/_utils/resources.py.
Should read `utility` rather than `utlity`. | awslabs_aws-sam-cli | train | py |
e6369934a8aa2dca9239710ad4b9e73d0f20c6b7 | diff --git a/src/useTransition.js b/src/useTransition.js
index <HASH>..<HASH> 100644
--- a/src/useTransition.js
+++ b/src/useTransition.js
@@ -145,7 +145,7 @@ export function useTransition(input, keyTransform, props) {
item,
key,
phase,
- props: state.current.instances.get(key).animated,
+ ... | fix: clone the "animated" property to avoid leaking internals | react-spring_react-spring | train | js |
0ac4f092699a967ad9fe729ca29026af08333364 | diff --git a/test/utils.test.js b/test/utils.test.js
index <HASH>..<HASH> 100644
--- a/test/utils.test.js
+++ b/test/utils.test.js
@@ -1,6 +1,5 @@
'use strict';
-const Buffer = require('safe-buffer').Buffer;
const utils = require('../lib/utils');
const assert = require('assert');
const debug = require('debug'); | test: remove unnecessary safe-buffer usage | aheckmann_mquery | train | js |
8a29a5bcffb400e8c76e599e00f6b31355bf89da | diff --git a/go/vt/vtgate/executor.go b/go/vt/vtgate/executor.go
index <HASH>..<HASH> 100644
--- a/go/vt/vtgate/executor.go
+++ b/go/vt/vtgate/executor.go
@@ -609,6 +609,9 @@ func (e *Executor) executeSPInAllSessions(ctx context.Context, safeSession *Safe
var rss []*srvtopo.ResolvedShard
var queries []*querypb.Bo... | fix: direct savepoint execution should only happen on shard connections when there is already an open transaction | vitessio_vitess | train | go |
e377b20e7931909371f3291d0874129200014a15 | diff --git a/lib/logstasher/log_subscriber.rb b/lib/logstasher/log_subscriber.rb
index <HASH>..<HASH> 100644
--- a/lib/logstasher/log_subscriber.rb
+++ b/lib/logstasher/log_subscriber.rb
@@ -15,7 +15,7 @@ module LogStasher
tags = ['request']
tags.push('exception') if payload[:exception]
- event = L... | fix: Added source on events generated from the LogSubscriber | shadabahmed_logstasher | train | rb |
de386405b206d3ebace105992e9c7eb7ad6d7f94 | diff --git a/lib/plugins/aws/provider/awsProvider.js b/lib/plugins/aws/provider/awsProvider.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/aws/provider/awsProvider.js
+++ b/lib/plugins/aws/provider/awsProvider.js
@@ -2,9 +2,13 @@
if (!process.env.AWS_EC2_METADATA_DISABLED) {
// Workaround https://github.com/aws... | fix: Fix aws-sdk workaround
It should not be applied if nslookup command is not found | serverless_serverless | train | js |
8a72f246eed0bc323275c337bb73dce9230e74ed | diff --git a/src/directives/uploadButton.js b/src/directives/uploadButton.js
index <HASH>..<HASH> 100644
--- a/src/directives/uploadButton.js
+++ b/src/directives/uploadButton.js
@@ -17,13 +17,13 @@ angular.module('lr.upload.directives').directive('uploadButton', function(upload
link: function(scope, element, attr... | fix(uploadButton): id should not append _input | leon_angular-upload | train | js |
dfb16596937799b801ec56bdc3214c68a2d0df29 | diff --git a/packages/workflow/babel-preset.js b/packages/workflow/babel-preset.js
index <HASH>..<HASH> 100644
--- a/packages/workflow/babel-preset.js
+++ b/packages/workflow/babel-preset.js
@@ -16,6 +16,8 @@ module.exports = (_api, opts) => {
const isEnvProduction = env === 'production';
return {
+ // Don't... | fix: set sourceType to unambiguous | Availity_availity-workflow | train | js |
0ee7f32a21ebef1dbbdd1ea45a439f31c9400a04 | diff --git a/packages/node_modules/@webex/webex-core/src/webex-core.js b/packages/node_modules/@webex/webex-core/src/webex-core.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/webex-core/src/webex-core.js
+++ b/packages/node_modules/@webex/webex-core/src/webex-core.js
@@ -497,11 +497,6 @@ const WebexC... | feat(webex-core): remove s3 feature check
Feature has been GA'ed and no longer required to check. | webex_spark-js-sdk | train | js |
a1ce826789a817de38578e693c3c5ab98c51d447 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -37,7 +37,7 @@ function runMochaSimply() {
.on('error', gutil.log);
}
-gulp.task('webserver', function() {
+gulp.task('serve', function() {
gulp.src(__dirname)
.pipe(webserver({
... | chore(gulpfile): rename webserver task to serve | twada_escallmatch | train | js |
db842849304b0a7971564543e6c768c28238be2a | diff --git a/floyd/cli/experiment.py b/floyd/cli/experiment.py
index <HASH>..<HASH> 100644
--- a/floyd/cli/experiment.py
+++ b/floyd/cli/experiment.py
@@ -6,7 +6,7 @@ import sys
import floyd
from floyd.cli.utils import (
- get_module_task_instance_id, normalize_job_name, normalize_data_name
+ get_module_task_... | fix: do not read data config for info command | floydhub_floyd-cli | train | py |
63f4ce03f71f926521eb8f94dd49b24fb58190ed | diff --git a/test/test-42-fetch-all/main.js b/test/test-42-fetch-all/main.js
index <HASH>..<HASH> 100644
--- a/test/test-42-fetch-all/main.js
+++ b/test/test-42-fetch-all/main.js
@@ -14,7 +14,7 @@ function nodeRangeToNodeVersion(nodeRange) {
}
for (const platform of knownPlatforms) {
- const nodeRanges = ['node8',... | test: add "node<I>" to fetch-all | zeit_pkg | train | js |
2173a25b842c62e44ddc50cd6b6624ffd2494ec1 | diff --git a/classes/hypeJunction/Prototyper/Elements/MetadataField.php b/classes/hypeJunction/Prototyper/Elements/MetadataField.php
index <HASH>..<HASH> 100644
--- a/classes/hypeJunction/Prototyper/Elements/MetadataField.php
+++ b/classes/hypeJunction/Prototyper/Elements/MetadataField.php
@@ -165,7 +165,9 @@ class Met... | fix(actions): properly explode tags if value type not set | hypeJunction_hypePrototyper | train | php |
a962243564c7be93e312acded57ca8f4c91eeb66 | diff --git a/anyconfig/schema.py b/anyconfig/schema.py
index <HASH>..<HASH> 100644
--- a/anyconfig/schema.py
+++ b/anyconfig/schema.py
@@ -134,13 +134,13 @@ def array_to_schema(arr, **options):
"""
Generate a JSON schema object with type annotation added for given object.
- :param arr: Array of dict or M... | fix: [doc] replace MergeableDict objects with mapping objects
replace all reference of 'MergeableDict' with 'mapping' objects in
anyconfig.schema because that and related dict-based class was
deprecated and removed. | ssato_python-anyconfig | train | py |
c9ed65da87eacefd2762aab770e614e7aa6245ae | diff --git a/models/classes/StatisticalMetadata/Import/Validator/RecordResourceValidator.php b/models/classes/StatisticalMetadata/Import/Validator/RecordResourceValidator.php
index <HASH>..<HASH> 100644
--- a/models/classes/StatisticalMetadata/Import/Validator/RecordResourceValidator.php
+++ b/models/classes/Statistica... | refactor: fix indent | oat-sa_tao-core | train | php |
bc6d74e0dee06d5e1cc6fc7bebcd4e0cfca5aff3 | diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js
index <HASH>..<HASH> 100644
--- a/lib/platform/github/index.js
+++ b/lib/platform/github/index.js
@@ -85,10 +85,6 @@ async function initRepo(repoName, token, endpoint, forkMode, forkToken) {
logger.debug('Resetting platform config');
// conf... | refactor: move github init deletions later | renovatebot_renovate | train | js |
cade4bc072e5cd4de5356cdfa7b0d2ed5986650d | diff --git a/src/aurelia-authentication.js b/src/aurelia-authentication.js
index <HASH>..<HASH> 100644
--- a/src/aurelia-authentication.js
+++ b/src/aurelia-authentication.js
@@ -16,8 +16,8 @@ import './authFilter';
function configure(aurelia, config) {
// ie9 polyfill
if (!window.location.origin) {
- window.l... | chore(aurelia-authetication): linted | SpoonX_aurelia-authentication | train | js |
4126511bfef8f2a93f9db74ea61da709b6040a9c | diff --git a/src/Ufo/Core/App.php b/src/Ufo/Core/App.php
index <HASH>..<HASH> 100644
--- a/src/Ufo/Core/App.php
+++ b/src/Ufo/Core/App.php
@@ -287,7 +287,7 @@ class App
$controller = $this->getDefaultController();
$widgetsData = $this->getWidgetsData($section);
- foreach ($widgetsData... | refactor: removed unused key in forearch in composewidgets in app | enikeishik_ufoframework | train | php |
a7b5f7a29458f1ef3e23d1e419ee6dc9f38cec98 | diff --git a/packages/api-headless-cms/__tests__/utils/useApolloHandler.js b/packages/api-headless-cms/__tests__/utils/useApolloHandler.js
index <HASH>..<HASH> 100644
--- a/packages/api-headless-cms/__tests__/utils/useApolloHandler.js
+++ b/packages/api-headless-cms/__tests__/utils/useApolloHandler.js
@@ -12,7 +12,8 @@... | test: assign empty object to "headers" | Webiny_webiny-js | train | js |
5c8e0d64d9b40be9c2261ae29ff2c5dc0068dd00 | diff --git a/gridsome/app/page-query/dev.js b/gridsome/app/page-query/dev.js
index <HASH>..<HASH> 100644
--- a/gridsome/app/page-query/dev.js
+++ b/gridsome/app/page-query/dev.js
@@ -30,13 +30,14 @@ export default ({ options }) => {
if (options.__pageQueryDev) return
const merge = Vue.config.optionMergeStrategi... | fix: forward slash component file path | gridsome_gridsome | train | js |
4ace010e3f19c473c13640a73963f66e82ea00c4 | diff --git a/src/utils/command-helpers.js b/src/utils/command-helpers.js
index <HASH>..<HASH> 100644
--- a/src/utils/command-helpers.js
+++ b/src/utils/command-helpers.js
@@ -1,6 +1,7 @@
const process = require('process')
const { format, inspect } = require('util')
+const Errors = require('@oclif/errors')
const ar... | feat: add new utilities for warn, error and exit log (#<I>) | netlify_cli | train | js |
eaf254ede36355666600e64164c8ba53d0ee3a97 | diff --git a/lib/datasource/packagist.js b/lib/datasource/packagist.js
index <HASH>..<HASH> 100644
--- a/lib/datasource/packagist.js
+++ b/lib/datasource/packagist.js
@@ -25,7 +25,7 @@ function getHostOpts(url) {
async function getRegistryMeta(regUrl) {
try {
- const url = URL.resolve(regUrl, 'packages.json');... | fix(composer): resolve drupal packages repository | renovatebot_renovate | train | js |
c9ab6cd873e42654b9f3c898e1b72ec02c8dc0c0 | diff --git a/scripts/task/ExportDeliveryResults.php b/scripts/task/ExportDeliveryResults.php
index <HASH>..<HASH> 100644
--- a/scripts/task/ExportDeliveryResults.php
+++ b/scripts/task/ExportDeliveryResults.php
@@ -222,7 +222,7 @@ class ExportDeliveryResults implements Action, ServiceLocatorAwareInterface, Wor
... | fix: included the option all on submittedVersion parameter to be able to export all submited versions at once | oat-sa_extension-tao-outcomeui | train | php |
9e9bdb861832a16de3a3c1af7ff0e698937967af | diff --git a/bin/cmd.js b/bin/cmd.js
index <HASH>..<HASH> 100755
--- a/bin/cmd.js
+++ b/bin/cmd.js
@@ -33,9 +33,6 @@ if (options.help) {
console.log(optionator.generateHelp());
} else {
var version = options.increment || options._[0];
- if (version == null) {
- return console.log(optionator.generat... | fix(cmd): pass no-args | azu_podspec-bump | train | js |
9d4df474d8bfdf91bf28fb4bc36ff1e5dbb1293f | diff --git a/library/src/main/java/net/rdrei/android/dirchooser/DirectoryChooserFragment.java b/library/src/main/java/net/rdrei/android/dirchooser/DirectoryChooserFragment.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/net/rdrei/android/dirchooser/DirectoryChooserFragment.java
+++ b/library/src/main/java/... | fix(lib): DialogFragment called from other frag
Fixed callback if DialogFragment called from an other Fragment | passy_Android-DirectoryChooser | train | java |
d2439fc04c90f1fdb95e7b4d0abba17f12b41293 | diff --git a/modules/angular-meteor-object.js b/modules/angular-meteor-object.js
index <HASH>..<HASH> 100644
--- a/modules/angular-meteor-object.js
+++ b/modules/angular-meteor-object.js
@@ -48,8 +48,13 @@ angularMeteorObject.factory('AngularMeteorObject', [
if (oldDoc) {
if (custom)
mods = {... | fix(AngularMeteorObject): When executing `save` without a value and there are no changes, do nothing. Fixes #<I> | Urigo_angular-meteor | train | js |
1b2746a9e3a4ce1c10ed96e584bb73c443638011 | diff --git a/main.js b/main.js
index <HASH>..<HASH> 100755
--- a/main.js
+++ b/main.js
@@ -137,7 +137,7 @@ export default class CoachMark {
}
init() {
-
+
ReactDOM.render(
<ComponentOwner | fix: attempting to fix on node 5 | Pearson-Higher-Ed_coach-mark | train | js |
c6740feec3c804aa479af7118ce63f95450cbc3d | diff --git a/jest.config.unit.js b/jest.config.unit.js
index <HASH>..<HASH> 100644
--- a/jest.config.unit.js
+++ b/jest.config.unit.js
@@ -31,11 +31,12 @@ module.exports = {
],
testPathIgnorePatterns: [
'__snapshots__',
- 'build'
+ '<rootDir>/build',
],
coveragePathIgnorePatterns: [
'node_mo... | chore: remove test folder from coverage report | verdaccio_verdaccio | train | js,js |
ab9f8bc0132a94ab5b22390bf68ebc46018d8fcb | diff --git a/events/eventbriteEvents.js b/events/eventbriteEvents.js
index <HASH>..<HASH> 100644
--- a/events/eventbriteEvents.js
+++ b/events/eventbriteEvents.js
@@ -47,7 +47,7 @@ function isInWhitelist(thisEvent) {
config.eventbrite.blacklistOrganiserId.forEach(function(id) {
if (thisEvent.organizer.resource_... | refactor: remove console logs . #<I> | webuildorg_webuild-repos | train | js |
4dc59c8e447d188ddea948ea01c345a86a157e33 | diff --git a/test/test-buildSrcSet.js b/test/test-buildSrcSet.js
index <HASH>..<HASH> 100644
--- a/test/test-buildSrcSet.js
+++ b/test/test-buildSrcSet.js
@@ -30,9 +30,7 @@ describe('SrcSet Builder:', function describeSuite() {
return parseInt(srcline.split(" ")[1].slice(0, -1), 10);
... | test: use map instead of for-loop | imgix_imgix-core-js | train | js |
3da7cec82fbb58e8cb2b22c0d961467c8c3b080d | diff --git a/src/Leevel/Mail/Mail.php b/src/Leevel/Mail/Mail.php
index <HASH>..<HASH> 100644
--- a/src/Leevel/Mail/Mail.php
+++ b/src/Leevel/Mail/Mail.php
@@ -69,7 +69,7 @@ abstract class Mail implements IMail
*
* @var array
*/
- protected $failedRecipients = [];
+ protected array $failedRecipie... | refactor(mail): php<I> changes for mail | hunzhiwange_framework | train | php |
549ee84858860680d2b9ed93e2d79a419c24e7d1 | diff --git a/interfaces/js/pre-worker-module.js b/interfaces/js/pre-worker-module.js
index <HASH>..<HASH> 100644
--- a/interfaces/js/pre-worker-module.js
+++ b/interfaces/js/pre-worker-module.js
@@ -38,6 +38,10 @@ var Module = {
tree_states: readFile(`${outName}_states.tree`), // -o tree (for state networks)
... | fix(js): Add newick and json to output from JS worker | mapequation_infomap | train | js |
fd4d49b6e59b8ca08e001ec7a5c3f774e01ea31d | diff --git a/tests/rkt_api_service_test.go b/tests/rkt_api_service_test.go
index <HASH>..<HASH> 100644
--- a/tests/rkt_api_service_test.go
+++ b/tests/rkt_api_service_test.go
@@ -467,7 +467,7 @@ func TestAPIServiceCgroup(t *testing.T) {
}
}()
- testutils.WaitOrTimeout(t, time.Second*10, done)
+ testutils.WaitOrT... | test: TestAPIServiceCgroup: increase timeout
A timeout of <I> seconds is not enough for slow machines.
<URL> | rkt_rkt | train | go |
7dee7715a48517b5abc84e1a56cf9eeb234ca0b8 | diff --git a/src/endpoints/orders.js b/src/endpoints/orders.js
index <HASH>..<HASH> 100644
--- a/src/endpoints/orders.js
+++ b/src/endpoints/orders.js
@@ -12,7 +12,9 @@ class OrdersEndpoint extends BaseExtend {
}
Payment(id, body) {
- return this.request.send(`${this.endpoint}/${id}/payments`, 'POST', body)
... | fix: do manual wrapping of body (#<I>)
buildRequestBody checks for an options property and if it's present expects a props to be on a data property. This is not the case with payment requests.
When an options property is present on a payment request the data field in the request becomes undefined. e.g. { data: unde... | moltin_js-sdk | train | js |
13b397bb3c59da4f1eeb3ce95e7b369dfa3e6a19 | diff --git a/query/stdlib/influxdata/influxdb/to.go b/query/stdlib/influxdata/influxdb/to.go
index <HASH>..<HASH> 100644
--- a/query/stdlib/influxdata/influxdb/to.go
+++ b/query/stdlib/influxdata/influxdb/to.go
@@ -554,6 +554,8 @@ func writeTable(t *ToTransformation, tbl flux.Table) error {
return err
}
+ ... | fix(stdlib): Fixed to() creating too many rows for multiple fields
If a table has multiple field values, to() no longer writes rows multiple times. | influxdata_influxdb | train | go |
8de003825d3049f07ec25a8fc8decbfc3a357323 | diff --git a/packages/select/src/Select.js b/packages/select/src/Select.js
index <HASH>..<HASH> 100644
--- a/packages/select/src/Select.js
+++ b/packages/select/src/Select.js
@@ -24,8 +24,7 @@ const components = {
),
ClearIndicator: (props) => (
<ClearIndicator {...props}>
- <CrossIcon />
- <span c... | feat(select): added role and aria attributes to clear indicator of select | Availity_availity-react | train | js,js |
7abf8bdd34fd419497eca7a7e0ad7c8c3c07f03f | diff --git a/src/features/NGramsOfWords.js b/src/features/NGramsOfWords.js
index <HASH>..<HASH> 100644
--- a/src/features/NGramsOfWords.js
+++ b/src/features/NGramsOfWords.js
@@ -2,10 +2,12 @@
* NGramExtractor - extracts sequences of words in a text as its features.
*/
-var NGramsFromArray = require('./NGramsFrom... | feat: extracts sequences of words in a text as its features | intelligo-systems_intelligo.js | train | js |
b5bafaeb97e34972b014cb6cd51f97b5919535e9 | diff --git a/scripts/benchmark.js b/scripts/benchmark.js
index <HASH>..<HASH> 100755
--- a/scripts/benchmark.js
+++ b/scripts/benchmark.js
@@ -20,7 +20,7 @@ const butternut = require("butternut");
const ASSETS_DIR = path.join(__dirname, "benchmark_cache");
const DEFAULT_ASSETS = {
- "react.js": "https://unpkg.com/... | fix: update outdated react url (#<I>)
* Remove outdated react url
* Update react url
* Update outdated url | babel_minify | train | js |
cbd280245a2dec9b63b7f3d028a376594ec60f02 | diff --git a/gridsome/lib/app/queue/ImageProcessQueue.js b/gridsome/lib/app/queue/ImageProcessQueue.js
index <HASH>..<HASH> 100644
--- a/gridsome/lib/app/queue/ImageProcessQueue.js
+++ b/gridsome/lib/app/queue/ImageProcessQueue.js
@@ -347,7 +347,7 @@ async function createPlaceholder (placeholder, pipeline, mimeType, wi... | chore: fix typo in image process queue [ci skip] | gridsome_gridsome | train | js |
7b97150403cc134bddd5678798955acf2a7cb5b5 | diff --git a/gateway/engine/es/src/main/java/io/apiman/gateway/engine/es/EsMetrics.java b/gateway/engine/es/src/main/java/io/apiman/gateway/engine/es/EsMetrics.java
index <HASH>..<HASH> 100644
--- a/gateway/engine/es/src/main/java/io/apiman/gateway/engine/es/EsMetrics.java
+++ b/gateway/engine/es/src/main/java/io/apima... | fix(metrics): use user index rather than default
Fixes: #<I> | apiman_apiman | train | java |
05c95d7812f9cb91e180777a6e14c411e9be9b55 | diff --git a/packages/razzle/config/createConfigAsync.js b/packages/razzle/config/createConfigAsync.js
index <HASH>..<HASH> 100644
--- a/packages/razzle/config/createConfigAsync.js
+++ b/packages/razzle/config/createConfigAsync.js
@@ -930,6 +930,9 @@ module.exports = (
]
}),
].filter(x ... | fix(razzle): fix optimizaton cofig in dev buil | jaredpalmer_razzle | train | js |
3c9152213665daaaf9845d4bf184572537473e23 | diff --git a/test.py b/test.py
index <HASH>..<HASH> 100644
--- a/test.py
+++ b/test.py
@@ -150,15 +150,16 @@ class TestDecorators(unittest.TestCase):
self.assertTrue(res4_list == res5_list)
def test_file_naming(self):
- # <cache_dir>/<app_name>/<cache_type>/<func_name>.[<param_string>.]csv
+ ... | test: update tests for fs_cache file path fix | CMUSTRUDEL_strudel.utils | train | py |
bcdd4a0b77b609ed13988fdd260bd8085772e212 | diff --git a/lib/utils/command-exists.js b/lib/utils/command-exists.js
index <HASH>..<HASH> 100644
--- a/lib/utils/command-exists.js
+++ b/lib/utils/command-exists.js
@@ -2,14 +2,16 @@
var childProcess = require('child_process');
-var isUsingWindows = process.platform == 'win32';
+var isUsingWindows = process.plat... | fix(command-exists): pass jshint | isleofcode_ember-cordova | train | js |
99f87c0bc78bfbb3e775f5fe5fbdf5c80db7d146 | diff --git a/src/viewer.js b/src/viewer.js
index <HASH>..<HASH> 100644
--- a/src/viewer.js
+++ b/src/viewer.js
@@ -1612,8 +1612,8 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
},
/**
- * Update pixel density ration, clears all tiles and triggers updates for
- * ... | docs: fixed typo and corrected the comment | openseadragon_openseadragon | train | js |
eecdfbc79d6ee901f65ee7af0757860110f083b6 | diff --git a/src/func/index.js b/src/func/index.js
index <HASH>..<HASH> 100644
--- a/src/func/index.js
+++ b/src/func/index.js
@@ -1,5 +1,6 @@
import * as alias from './alias';
import * as identifier from './identifier';
+import * as imports from './import';
import * as relationship from './relationship';
import * ... | feat(func): Add imports field to the index | bookbrainz_bookbrainz-data-js | train | js |
39dd9d11a456e642354ee12f55b0bd32cd7ee8be | diff --git a/actions/promote/index.js b/actions/promote/index.js
index <HASH>..<HASH> 100644
--- a/actions/promote/index.js
+++ b/actions/promote/index.js
@@ -130,17 +130,12 @@ async function main() {
data: 'Latest',
header: true,
},
- {
- data: 'Link',
- ... | refactor(actions): improve promote flow summary | carbon-design-system_carbon-components | train | js |
b8cfb6798299ea9e3c5dd64f803b528821cc4052 | diff --git a/packages/build-tools/tasks/task-collections.js b/packages/build-tools/tasks/task-collections.js
index <HASH>..<HASH> 100644
--- a/packages/build-tools/tasks/task-collections.js
+++ b/packages/build-tools/tasks/task-collections.js
@@ -110,14 +110,17 @@ async function clean(cleanAll = false) {
break... | fix: update clean task to not wipe the entire www folder every time | bolt-design-system_bolt | train | js |
c77ff39b79657a0a294b43081628fac5995a16e5 | diff --git a/webapps/client/scripts/filter/modals/cam-tasklist-filter-form-criteria.js b/webapps/client/scripts/filter/modals/cam-tasklist-filter-form-criteria.js
index <HASH>..<HASH> 100644
--- a/webapps/client/scripts/filter/modals/cam-tasklist-filter-form-criteria.js
+++ b/webapps/client/scripts/filter/modals/cam-ta... | fix(engine): added missing comma to followUpBeforeOrNotExistent entry | camunda_camunda-bpm-platform | train | js |
b302586e0b73ebbfd03f30cad0be875d4e165ada | diff --git a/cocaine/tools/dispatch.py b/cocaine/tools/dispatch.py
index <HASH>..<HASH> 100644
--- a/cocaine/tools/dispatch.py
+++ b/cocaine/tools/dispatch.py
@@ -577,7 +577,7 @@ def app_view(name, **kwargs):
@click.option('--package', metavar='', help='Path to the application archive.')
@click.option('--docker_addre... | fix: fixed manifest-only flag for backward compatibility | cocaine_cocaine-tools | train | py |
1532421572aa48de68f9f6eec27dba69e946850b | diff --git a/packages/d3fc-discontinuous-scale/src/discontinuous.js b/packages/d3fc-discontinuous-scale/src/discontinuous.js
index <HASH>..<HASH> 100755
--- a/packages/d3fc-discontinuous-scale/src/discontinuous.js
+++ b/packages/d3fc-discontinuous-scale/src/discontinuous.js
@@ -1,5 +1,5 @@
import {scaleIdentity} from ... | fix: only include scale methods if they exist (#<I>) | d3fc_d3fc | train | js |
7b1a0f0784a783bdbb6cdc4e843f02699a0023da | diff --git a/src/parser/vue.js b/src/parser/vue.js
index <HASH>..<HASH> 100644
--- a/src/parser/vue.js
+++ b/src/parser/vue.js
@@ -1,13 +1,8 @@
import { parse } from '@babel/parser';
-import { tryRequire } from '../utils';
-
-const compiler = tryRequire('vue-template-compiler');
+import { parseComponent } from 'vue-te... | chore: Imort vue-template-compiler directly (#<I>)
Since it's no longer a devDependency but a direct dependency | depcheck_depcheck | train | js |
965f5414c73affc1c120fd2b72d32769a36a3f27 | diff --git a/src/bots/actions/navigate.js b/src/bots/actions/navigate.js
index <HASH>..<HASH> 100644
--- a/src/bots/actions/navigate.js
+++ b/src/bots/actions/navigate.js
@@ -12,9 +12,6 @@ module.exports = function (params, timeoutDuration, cwd) {
var cancelOpen = function () {
clearTimeout(failTimeout);
... | fix(navigate): remove undefined requests usage | damonjs_damon | train | js |
1d2bbebecd214df543309816c9c49fa60b4a3816 | diff --git a/test/utils.js b/test/utils.js
index <HASH>..<HASH> 100644
--- a/test/utils.js
+++ b/test/utils.js
@@ -10,7 +10,7 @@ export function fireEvent(el, type, options) {
}
}
-export function delay(ms = 0) {
+export function delay(ms = 10) {
return new Promise(resolve => {
setTimeout(resolve, ms);
... | test: try bigger delay to fix win<I> tests | buttonwoodcx_bcx-aurelia-reorderable-repeat | train | js |
67817713ff910da0ce005a0a44ef60733ab60a32 | diff --git a/src/components/autocomplete/js/autocompleteController.js b/src/components/autocomplete/js/autocompleteController.js
index <HASH>..<HASH> 100644
--- a/src/components/autocomplete/js/autocompleteController.js
+++ b/src/components/autocomplete/js/autocompleteController.js
@@ -225,7 +225,7 @@ function MdAutoco... | fix(autocomplete): fixes typo in autocomplete mouseup method | angular_material | train | js |
77561aaa36a274ba0f443c55a92a9e229dafab7c | diff --git a/test/cli.js b/test/cli.js
index <HASH>..<HASH> 100644
--- a/test/cli.js
+++ b/test/cli.js
@@ -101,7 +101,7 @@ describe('command line interface', function () {
});
});
- cli(['-e', 'function *test () {yield 3}; console.log(test().next().value);'], 'should print result with -p', function (child, d... | test: fix typo in test case name | TooTallNate_gnode | train | js |
7c40c6573763f03265ac3bc8760f5d453c3249c0 | diff --git a/lib/rules/storage.js b/lib/rules/storage.js
index <HASH>..<HASH> 100644
--- a/lib/rules/storage.js
+++ b/lib/rules/storage.js
@@ -62,7 +62,7 @@ function Storage(dir) {
var maxIndex = -1;
var files = {};
- var fileNames = {};
+ var fileNames = { properties: true };
fs.readdirSync(self._files).f... | refactor: Automatic backup file data | avwo_whistle | train | js |
f39d493a748300aee07de6c3de5363e169b54535 | diff --git a/src/record-service.js b/src/record-service.js
index <HASH>..<HASH> 100644
--- a/src/record-service.js
+++ b/src/record-service.js
@@ -190,10 +190,12 @@ var RecordService = function (provider, type, id) {
var _collection = new CollectionService(_provider, type);
this['get' + pluralize(toSnakeCase(... | fix(RecordService): allow relateToMany lookups with no relations
Example: Previously, calling relateToMany('Cat') and getCats()
on a record would throw an error if no cats had been related
with addCat(). Now getCats() simply returns an empty collection | castle-dev_le-storage-service | train | js |
66934c9d16cbc213fc5bbeea1bbfc3ffeaa6771d | diff --git a/src/Client.js b/src/Client.js
index <HASH>..<HASH> 100644
--- a/src/Client.js
+++ b/src/Client.js
@@ -320,7 +320,7 @@ class Client extends EventEmitter {
attempt(() => this.decoder(data.data))
.then(msg => { message = msg })
.then(() => { if (!this.skipValidation) { validate(message) } }... | fix: actually fix async receiveHook handling | an-sh_ws-messaging | train | js |
0e5cf61cd229e8197f4dab83f9a6d56bf2774ffa | diff --git a/es/node.js b/es/node.js
index <HASH>..<HASH> 100644
--- a/es/node.js
+++ b/es/node.js
@@ -84,8 +84,8 @@ async function getConsensusProtocolVersion (protocols = [], height) {
function axiosError (handler) {
return (error) => {
- if (!handler || typeof handler !== 'function') throw error
- return... | fix(Swagger): Always throw error from `axios` error handler (#<I>) | aeternity_aepp-sdk-js | train | js |
7a61c3ba02ebeb7d3c3a5d08aef1f2953575388a | diff --git a/views/js/controller/Authenticator/login.js b/views/js/controller/Authenticator/login.js
index <HASH>..<HASH> 100644
--- a/views/js/controller/Authenticator/login.js
+++ b/views/js/controller/Authenticator/login.js
@@ -13,26 +13,14 @@
* along with this program; if not, write to the Free Software
* Found... | refactor: convert controller/Authenticator to ES6 | oat-sa_extension-tao-clientdiag | train | js |
07ca22e729d67393d312affdc9e14f6611cebe36 | diff --git a/code/Model/Submission/SubmittedFormField.php b/code/Model/Submission/SubmittedFormField.php
index <HASH>..<HASH> 100755
--- a/code/Model/Submission/SubmittedFormField.php
+++ b/code/Model/Submission/SubmittedFormField.php
@@ -27,6 +27,10 @@ class SubmittedFormField extends DataObject
'FormattedVal... | fix(SubmittedFormField): Fix bug where FormattedValue isn't cast to HTMLFragment, which causes <br/> to appear in Email templates. | silverstripe_silverstripe-userforms | train | php |
a76448b380c77ccebf4631294a4f5395dde70da0 | diff --git a/packages/sphinx/src/index.js b/packages/sphinx/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/sphinx/src/index.js
+++ b/packages/sphinx/src/index.js
@@ -281,7 +281,11 @@ async function renderMember(options, meta, { key, name, kind, property, value })
Text(''),
Title(name, 4),
Direct... | feat(sphinx): Handles modules
This still needs work, given that modules in Python work in very
different ways from JS. | robotlolita_metamagical | train | js |
7688b7dc250cbcb2214c255ad95b6d2b5cbbdab6 | diff --git a/remix-lib/src/web3Provider/dummyProvider.js b/remix-lib/src/web3Provider/dummyProvider.js
index <HASH>..<HASH> 100644
--- a/remix-lib/src/web3Provider/dummyProvider.js
+++ b/remix-lib/src/web3Provider/dummyProvider.js
@@ -25,7 +25,12 @@ dummyProvider.prototype.traceTransaction = function (txHash, options, ... | fix: storageRangeAt doesn't always take a callback | ethereum_remix | train | js |
0839f47e63b6534f26903a45536ac8ad914d71e4 | diff --git a/test/connection.test.js b/test/connection.test.js
index <HASH>..<HASH> 100644
--- a/test/connection.test.js
+++ b/test/connection.test.js
@@ -1065,7 +1065,7 @@ test('transaction', async () => {
]);
// Wait for one confirmation
- await sleep(500);
+ await sleep(1000);
let i = 0;
for (;;) { | chore: increase test sleep to ensure confirmation | solana-labs_solana-web3.js | train | js |
dac535f9fc3804a24fb71c03e19ec2d2fed5dc2e | diff --git a/app/src/components/CalibrateLabware/instructions-data.js b/app/src/components/CalibrateLabware/instructions-data.js
index <HASH>..<HASH> 100644
--- a/app/src/components/CalibrateLabware/instructions-data.js
+++ b/app/src/components/CalibrateLabware/instructions-data.js
@@ -130,7 +130,7 @@ const DIAGRAMS_BO... | fix(app): fix calibrate to trough bottom image for multi pipettes (#<I>)
closes #<I> | Opentrons_opentrons | train | js |
8bd700904a6a70419b7bc3066bec45e53fe45ba1 | diff --git a/src/components/provider.js b/src/components/provider.js
index <HASH>..<HASH> 100644
--- a/src/components/provider.js
+++ b/src/components/provider.js
@@ -234,7 +234,6 @@ export const ValidationProvider = {
this._waiting = null;
this.initialValue = this.value;
const flags = createFlags(... | fix: remove uneeded statement for the changed flag | baianat_vee-validate | train | js |
3d969bd2b4501d14e4aa3417588ff57f187f74ff | diff --git a/cmd/site-replication.go b/cmd/site-replication.go
index <HASH>..<HASH> 100644
--- a/cmd/site-replication.go
+++ b/cmd/site-replication.go
@@ -2165,6 +2165,9 @@ func (c *SiteReplicationSys) RemoveRemoteTargetsForEndpoint(ctx context.Context,
for _, b := range buckets {
config, _, err := globalBucketMet... | fix: ignore missing targets/replication config during site removal (#<I>) | minio_minio | train | go |
f4a6a29facaafb6cc77c7123a8feeaa1064a77d8 | diff --git a/auth_jwt.go b/auth_jwt.go
index <HASH>..<HASH> 100644
--- a/auth_jwt.go
+++ b/auth_jwt.go
@@ -25,7 +25,7 @@ type GinJWTMiddleware struct {
// Realm name to display to the user. Required.
Realm string
- // signing algorithm - possible values are HS256, HS384, HS512
+ // signing algorithm - possible va... | docs: update comments of SigningAlgorithm field (#<I>) | appleboy_gin-jwt | train | go |
2f1b75a5082ee1443533fd2b4ce63d14fdd97f78 | diff --git a/eZ/Publish/API/Repository/Tests/ContentServiceTest.php b/eZ/Publish/API/Repository/Tests/ContentServiceTest.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/API/Repository/Tests/ContentServiceTest.php
+++ b/eZ/Publish/API/Repository/Tests/ContentServiceTest.php
@@ -695,6 +695,7 @@ class ContentServiceTest ... | fix: Update ContentService integraion tests because of changes in ContentInfo domain mapper | ezsystems_ezpublish-kernel | train | php |
897826284998a5b93e7e0a6bc3824f20663a50b1 | diff --git a/lib/topology_lib_ip/library.py b/lib/topology_lib_ip/library.py
index <HASH>..<HASH> 100644
--- a/lib/topology_lib_ip/library.py
+++ b/lib/topology_lib_ip/library.py
@@ -22,7 +22,7 @@ topology_lib_ip communication library implementation.
from __future__ import unicode_literals, absolute_import
from __fut... | fix: dev: Network/Mask needs to be check with ip_network in add_route. Otherwise it fails. | HPENetworking_topology_lib_ip | train | py |
5637fe8041d315ee05492943697679532aca0b90 | diff --git a/framework/core/src/Admin/Content/AdminPayload.php b/framework/core/src/Admin/Content/AdminPayload.php
index <HASH>..<HASH> 100644
--- a/framework/core/src/Admin/Content/AdminPayload.php
+++ b/framework/core/src/Admin/Content/AdminPayload.php
@@ -45,6 +45,11 @@ class AdminPayload
protected $db;
... | fix: `$events` property declared dynamically (#<I>) | flarum_core | train | php |
3f14979aa7aa1b3c2171f12c8278ccde9d88e42b | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -20,4 +20,5 @@ var espurify = createCloneFunction();
espurify.clone = function (ast, options) {
return createCloneFunction(options)(ast);
};
+espurify.customize = createCloneFunction;
module.exports = espurify; | feat(espurify): define `customize` method to make special function to make clone much more faster | estools_espurify | train | js |
f67067823c88107e8777bac1797bd698be50d64e | diff --git a/src/Http/DataTables/Common/Intel/AbstractAssetDataTable.php b/src/Http/DataTables/Common/Intel/AbstractAssetDataTable.php
index <HASH>..<HASH> 100644
--- a/src/Http/DataTables/Common/Intel/AbstractAssetDataTable.php
+++ b/src/Http/DataTables/Common/Intel/AbstractAssetDataTable.php
@@ -150,6 +150,7 @@ abstr... | refactor(assets): force sort order on type to be A -> Z | eveseat_web | train | php |
c0e034ed29ccb7d1f707b3285a79290ea625faac | diff --git a/lib/api-client/resources/decision-definition.js b/lib/api-client/resources/decision-definition.js
index <HASH>..<HASH> 100644
--- a/lib/api-client/resources/decision-definition.js
+++ b/lib/api-client/resources/decision-definition.js
@@ -94,4 +94,20 @@ DecisionDefinition.evaluate = function(params, done) {... | feat: add history time to live to decision definition resource
related to CAM-<I> | camunda_camunda-bpm-sdk-js | train | js |
0a564c31587981100a939ff36f92cf9987f41ed6 | diff --git a/packages/bazel/src/protractor/protractor.conf.js b/packages/bazel/src/protractor/protractor.conf.js
index <HASH>..<HASH> 100644
--- a/packages/bazel/src/protractor/protractor.conf.js
+++ b/packages/bazel/src/protractor/protractor.conf.js
@@ -136,14 +136,13 @@ if (process.env['WEB_TEST_METADATA']) {
... | refactor: fix code style (#<I>)
PR Close #<I> | angular_angular | train | js |
0891c578fb7f0fcf2cc798f68598b57dec01eb99 | diff --git a/lib/getLibraryData.js b/lib/getLibraryData.js
index <HASH>..<HASH> 100644
--- a/lib/getLibraryData.js
+++ b/lib/getLibraryData.js
@@ -14,15 +14,13 @@ module.exports = {
var albums = [];
var uniqueAlbums;
- console.log(app.version());
- console.log(library.name());
+ // console.log(app.versi... | fix: crashes on Sierra with `play artist` and `play album` | mischah_itunes-remote | train | js |
3315d787ab2db71186fcae55c7ba96015e377b3a | diff --git a/src/main/java/com/asana/OAuthApp.java b/src/main/java/com/asana/OAuthApp.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/asana/OAuthApp.java
+++ b/src/main/java/com/asana/OAuthApp.java
@@ -28,13 +28,18 @@ public class OAuthApp {
}
public OAuthApp(String clientID, String clientSecret, S... | feat: add support for refresh token in app constructor when using access token when not exchanging code for token | Asana_java-asana | train | java |
4a20ae756cb428a9d8c574845a7f7b635eff62ea | diff --git a/packages/oui-tabs/src/tabs.controller.js b/packages/oui-tabs/src/tabs.controller.js
index <HASH>..<HASH> 100644
--- a/packages/oui-tabs/src/tabs.controller.js
+++ b/packages/oui-tabs/src/tabs.controller.js
@@ -1,10 +1,11 @@
import find from "lodash/find";
export default class {
- constructor ($eleme... | fix(oui-tabs): select dynamically active tab | ovh-ux_ovh-ui-angular | train | js |
9286c14551ee79fb794628ebee036e9fe19df49f | diff --git a/src/GlpiProject/API/Rest/Client.php b/src/GlpiProject/API/Rest/Client.php
index <HASH>..<HASH> 100644
--- a/src/GlpiProject/API/Rest/Client.php
+++ b/src/GlpiProject/API/Rest/Client.php
@@ -266,6 +266,20 @@ class Client {
return true;
}
+ /**
+ * Kill client session.
+ * @return bool
+... | feat(client): added killSession endpoint | glpi-project_php-library-glpi | train | php |
c22edd547d34a426f9ccecbc5187d67e20b61a88 | diff --git a/js/src/serialize.js b/js/src/serialize.js
index <HASH>..<HASH> 100644
--- a/js/src/serialize.js
+++ b/js/src/serialize.js
@@ -1,5 +1,6 @@
var _ = require('underscore')
var utils = require('./utils.js')
+var THREE = require('three')
function ascii_decode(buf) {
return String.fromCharCode.apply... | fix: we need THREE in the namespace for color parsing | maartenbreddels_ipyvolume | train | js |
35522a1ec0911129654e28dac1e484ce4dbc0bf4 | diff --git a/src/js/plugin/plugin.js b/src/js/plugin/plugin.js
index <HASH>..<HASH> 100644
--- a/src/js/plugin/plugin.js
+++ b/src/js/plugin/plugin.js
@@ -10,6 +10,7 @@ const fetchUISettings = require('./_fetchUISettings.js');
const createSettings = require('./_createSettings');
const setAttrs = require('./_s... | refactor: setMethods | vulcan-estudios_vulcanval | train | js |
19284519546504d63cf8a74dc5e9177900a1ea25 | diff --git a/packages/site/next.config.js b/packages/site/next.config.js
index <HASH>..<HASH> 100644
--- a/packages/site/next.config.js
+++ b/packages/site/next.config.js
@@ -39,6 +39,7 @@ module.exports = {
'/components/layout': { page: '/components/layout' },
'/components/linearprogress': { page: '/comp... | fix(site): make note page navigable | pluralsight_design-system | train | js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.