diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/test/commands_test.rb b/test/commands_test.rb
index <HASH>..<HASH> 100644
--- a/test/commands_test.rb
+++ b/test/commands_test.rb
@@ -51,4 +51,28 @@ class CommandsTest < TestCase
assert cmds[:default].verbose?
end
+ test "on/global and default all return newly created slop instances" do
+ ass... | more tests for Slop::Commands |
diff --git a/src/component/table.js b/src/component/table.js
index <HASH>..<HASH> 100644
--- a/src/component/table.js
+++ b/src/component/table.js
@@ -37,6 +37,7 @@ angular.module('ngTasty.component.table', [
templateUrl: 'template/table/pagination.html',
listItemsPerPage: [5, 25, 50, 100],
itemsPerPage: 5,
+ ... | Adding listFilters as config params #<I> |
diff --git a/client/manager_sql.go b/client/manager_sql.go
index <HASH>..<HASH> 100644
--- a/client/manager_sql.go
+++ b/client/manager_sql.go
@@ -58,7 +58,7 @@ type SQLManager struct {
}
type sqlData struct {
- PK int `db:"pk"`
+ PK int64 `db:... | client: Change pk field to int<I> (#<I>)
Changed PK from int to int<I>, ran make test with no issues.
Closes #<I> |
diff --git a/changes.go b/changes.go
index <HASH>..<HASH> 100644
--- a/changes.go
+++ b/changes.go
@@ -153,11 +153,14 @@ func (c *pollChangeManager) getChanges(changesUri *url.URL) error {
scopes := findScopesForId(apidInfo.ClusterID)
v := url.Values{}
+ blockValue := block
/* Sequence added to the query if ava... | [ISSUE-<I>] after receiving a new snapshot, send the 1st changelist request with "block=0" (#<I>) |
diff --git a/terraform/terraform_test.go b/terraform/terraform_test.go
index <HASH>..<HASH> 100644
--- a/terraform/terraform_test.go
+++ b/terraform/terraform_test.go
@@ -1067,7 +1067,7 @@ STATE:
const testTerraformPlanComputedMultiIndexStr = `
DIFF:
-CREATE: aws_instance.bar
+CREATE: aws_instance.bar.0
foo: ""... | core: Context plan tests update for "count" behavior change
The behavior of the "count" meta-argument has changed so that its presence
(rather than its value) chooses whether the associated resource has
indexes. As a consequence, these tests which set count = 1 now produce
a single indexed instance with index 0. |
diff --git a/course/lib.php b/course/lib.php
index <HASH>..<HASH> 100644
--- a/course/lib.php
+++ b/course/lib.php
@@ -2067,7 +2067,12 @@ function print_category_info($category, $depth, $showcourses = false) {
$catlinkcss = $category->visible ? '' : ' class="dimmed" ';
- $coursecount = $DB->count_records('c... | MDL-<I> cache superfluous queries when listing categories on front page |
diff --git a/tests/test_data.py b/tests/test_data.py
index <HASH>..<HASH> 100755
--- a/tests/test_data.py
+++ b/tests/test_data.py
@@ -44,12 +44,12 @@ class DeloreanTests(TestCase):
def test_initialize_with_tzinfo_generic(self):
self.aware_dt_generic = datetime(2013, 1, 3, 4, 31, 14, 148546, tzinfo=generi... | Changed assertIsInstance to assertTrue for backwards compatability. |
diff --git a/github/tests/Issue131.py b/github/tests/Issue131.py
index <HASH>..<HASH> 100644
--- a/github/tests/Issue131.py
+++ b/github/tests/Issue131.py
@@ -32,7 +32,7 @@ class Issue131(Framework.TestCase): # https://github.com/jacquev6/PyGithub/pull
for pull in self.repo.get_pulls('closed'):
i... | Fix unit tests on Python <= <I> |
diff --git a/examples/webapp/.bitbundler.js b/examples/webapp/.bitbundler.js
index <HASH>..<HASH> 100644
--- a/examples/webapp/.bitbundler.js
+++ b/examples/webapp/.bitbundler.js
@@ -3,6 +3,7 @@ module.exports = {
dest: "dist/index.js",
loader: [
+ envReplace("production"),
"bit-loader-cache",
"bit... | added a small inline loader plugin to handle production builds |
diff --git a/test/intervaltree_test.py b/test/intervaltree_test.py
index <HASH>..<HASH> 100644
--- a/test/intervaltree_test.py
+++ b/test/intervaltree_test.py
@@ -94,7 +94,7 @@ def test_duplicate_insert():
assert len(tree) == 2
assert tree.items() == contents
- tree.extend([Interval(-10, 20)])
+ tree.... | made last duplicate insert test be extend() for multiple dups |
diff --git a/packages/ember-metal/lib/watching.js b/packages/ember-metal/lib/watching.js
index <HASH>..<HASH> 100644
--- a/packages/ember-metal/lib/watching.js
+++ b/packages/ember-metal/lib/watching.js
@@ -430,6 +430,9 @@ Ember.watch = function(obj, keyName) {
if (!watching[keyName]) {
watching[keyName] = 1;
... | add hook for desc for willWatch and didUnwatch |
diff --git a/molo/core/api/importers.py b/molo/core/api/importers.py
index <HASH>..<HASH> 100644
--- a/molo/core/api/importers.py
+++ b/molo/core/api/importers.py
@@ -342,16 +342,6 @@ class SiteImporter(object):
nested_fields["time"]):
page.time = json.dumps(nested_fields["time"])
- ... | Fail tests by removing adding section tag functionality |
diff --git a/dialogue.js b/dialogue.js
index <HASH>..<HASH> 100644
--- a/dialogue.js
+++ b/dialogue.js
@@ -227,7 +227,7 @@ Dialogue.prototype.applyCss = function(event) {
// bring it back in plus 50px padding
if ((cssSettings.left + event.data.$dialogue.width()) > frame.width) {
cssSettings.left = frame.width... | bug with left positioning when outside of viewport |
diff --git a/boards.js b/boards.js
index <HASH>..<HASH> 100644
--- a/boards.js
+++ b/boards.js
@@ -44,7 +44,7 @@ module.exports = {
pageSize: 128,
numPages: 256,
timeout: 400,
- productId: ['0x6001'],
+ productId: ['0x6001', '0x7523'],
protocol: 'stk500v1'
},
'duemilanove168': { | Updated nano with Pid as well |
diff --git a/lib/bmc-daemon-lib/logger_helper.rb b/lib/bmc-daemon-lib/logger_helper.rb
index <HASH>..<HASH> 100644
--- a/lib/bmc-daemon-lib/logger_helper.rb
+++ b/lib/bmc-daemon-lib/logger_helper.rb
@@ -32,11 +32,11 @@ module BmcDaemonLib
def log severity, message, details
return puts "LoggerHelper.log: mis... | logger helper: rename method |
diff --git a/spec/unit/active_admin_spec.rb b/spec/unit/active_admin_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/active_admin_spec.rb
+++ b/spec/unit/active_admin_spec.rb
@@ -36,9 +36,5 @@ describe ActiveAdmin do
it "should have a default current_user_method" do
ActiveAdmin.current_user_method.should ==... | Marked a couple specs as pending until authentication is finished |
diff --git a/src/read/nodejs.js b/src/read/nodejs.js
index <HASH>..<HASH> 100644
--- a/src/read/nodejs.js
+++ b/src/read/nodejs.js
@@ -1,5 +1,6 @@
/**
* @file NodeJS read implementation
+ * @since 0.2.6
*/
/*#ifndef(UMD)*/
"use strict"; | Documentation (#<I>) |
diff --git a/src/net/sf/mpxj/primavera/PrimaveraReader.java b/src/net/sf/mpxj/primavera/PrimaveraReader.java
index <HASH>..<HASH> 100644
--- a/src/net/sf/mpxj/primavera/PrimaveraReader.java
+++ b/src/net/sf/mpxj/primavera/PrimaveraReader.java
@@ -620,7 +620,8 @@ final class PrimaveraReader
Date endDate = row.... | Fix calculation of Primavera task work field. |
diff --git a/flask_apscheduler/auth.py b/flask_apscheduler/auth.py
index <HASH>..<HASH> 100644
--- a/flask_apscheduler/auth.py
+++ b/flask_apscheduler/auth.py
@@ -17,7 +17,21 @@
import base64
from flask import request
-from werkzeug.http import bytes_to_wsgi, wsgi_to_bytes
+
+
+def wsgi_to_bytes(data):
+ """coer... | add functions that were removed in werkszeug.
for #<I> |
diff --git a/config.php b/config.php
index <HASH>..<HASH> 100644
--- a/config.php
+++ b/config.php
@@ -2,8 +2,5 @@
return [
'showCpSection' => false,
-
- 'enableConsole' => false,
-
'providerInfos' => [],
];
\ No newline at end of file | Removed `enableConsole` from config.php |
diff --git a/docs/extensions/attributetable.py b/docs/extensions/attributetable.py
index <HASH>..<HASH> 100644
--- a/docs/extensions/attributetable.py
+++ b/docs/extensions/attributetable.py
@@ -165,7 +165,7 @@ def process_attributetable(app, doctree, fromdocname):
def get_class_results(lookup, modulename, name, ful... | Fix methods from superclass showing under "Attributes" table |
diff --git a/mongoctl/repository.py b/mongoctl/repository.py
index <HASH>..<HASH> 100644
--- a/mongoctl/repository.py
+++ b/mongoctl/repository.py
@@ -110,7 +110,7 @@ def validate_repositories():
global __repos_validated__
if not __repos_validated__:
if not(has_file_repository() or has_db_repository(... | logging: Change repo warning into verbose |
diff --git a/js/dx.aspnet.data.js b/js/dx.aspnet.data.js
index <HASH>..<HASH> 100644
--- a/js/dx.aspnet.data.js
+++ b/js/dx.aspnet.data.js
@@ -108,7 +108,7 @@
if(options) {
["skip", "take", "requireTotalCount", "requireGroupCount"].forEach(function(i) {
- if(i in optio... | Pick useful change from <I>b6f2cba<I> |
diff --git a/src/test/com/twitter/elephantbird/pig/load/TestMultiFormatLoader.java b/src/test/com/twitter/elephantbird/pig/load/TestMultiFormatLoader.java
index <HASH>..<HASH> 100644
--- a/src/test/com/twitter/elephantbird/pig/load/TestMultiFormatLoader.java
+++ b/src/test/com/twitter/elephantbird/pig/load/TestMultiFor... | add comment about RunWith/SuiteClasses for lzo tests. |
diff --git a/autoload.php b/autoload.php
index <HASH>..<HASH> 100644
--- a/autoload.php
+++ b/autoload.php
@@ -16,10 +16,10 @@
/*
* Some helper functions are outside classes and need to be loaded
*/
-require_once './src/functions.php';
-require_once './src/Http/Psr7/functions.php';
+require_once __DIR__.'/src/func... | fix autoloader when not using composer |
diff --git a/salt/client/ssh/wrapper/state.py b/salt/client/ssh/wrapper/state.py
index <HASH>..<HASH> 100644
--- a/salt/client/ssh/wrapper/state.py
+++ b/salt/client/ssh/wrapper/state.py
@@ -48,6 +48,7 @@ def _thin_dir():
Get the thin_dir from the master_opts if not in __opts__
'''
thin_dir = __opts__.ge... | When building up the remote file location nothing was being returned via _thin_dir so the remote path was starting with None. This change updates _thin_dir to return a value for format to use. |
diff --git a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java
index <HASH>..<HASH> 100644
--- a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java
+++ b/smack-tcp/src/main/java/org/jivesoftware/sm... | Finer logs in XMPPTCPConnection.shutdown() |
diff --git a/superset/connectors/druid/models.py b/superset/connectors/druid/models.py
index <HASH>..<HASH> 100644
--- a/superset/connectors/druid/models.py
+++ b/superset/connectors/druid/models.py
@@ -69,11 +69,11 @@ class DruidCluster(Model, AuditMixinNullable):
# short unique name, used in permissions
clu... | Set default ports Druid (#<I>)
For Druid set the default port for the broker and coordinator. |
diff --git a/structr-core/src/main/java/org/structr/core/graph/DeleteNodeCommand.java b/structr-core/src/main/java/org/structr/core/graph/DeleteNodeCommand.java
index <HASH>..<HASH> 100644
--- a/structr-core/src/main/java/org/structr/core/graph/DeleteNodeCommand.java
+++ b/structr-core/src/main/java/org/structr/core/gr... | Reduces log level so that deleting an already deleted node are not logged as a WARNING. |
diff --git a/lib/spatial_features/has_spatial_features.rb b/lib/spatial_features/has_spatial_features.rb
index <HASH>..<HASH> 100644
--- a/lib/spatial_features/has_spatial_features.rb
+++ b/lib/spatial_features/has_spatial_features.rb
@@ -113,8 +113,6 @@ module SpatialFeatures
def cached_spatial_join(other)
... | Allow spatial caching on own class
We used to raise an exception when intersecting on the same class. There doesn’t see to be any technical limitation that necessitated this, but rather it was implemented as a sanity check because we didn’t initially intend it to be used in this way. |
diff --git a/pstats_print2list/pstats_print2list.py b/pstats_print2list/pstats_print2list.py
index <HASH>..<HASH> 100755
--- a/pstats_print2list/pstats_print2list.py
+++ b/pstats_print2list/pstats_print2list.py
@@ -95,7 +95,7 @@ def get_pstats_print2list(fnames, filter_fnames=None, exclude_fnames=None,
stream.seek... | [FIX] pstats_print2list: Fix regex to support ncalls without '/' |
diff --git a/peewee.py b/peewee.py
index <HASH>..<HASH> 100644
--- a/peewee.py
+++ b/peewee.py
@@ -1686,7 +1686,7 @@ class MySQLDatabase(Database):
'primary_key': 'INTEGER AUTO_INCREMENT',
'text': 'LONGTEXT',
}
- for_update_support = True
+ for_update = True
interpolation = '%s'
o... | Fix for_update support for MySQL |
diff --git a/src/org/dita/dost/reader/MergeMapParser.java b/src/org/dita/dost/reader/MergeMapParser.java
index <HASH>..<HASH> 100644
--- a/src/org/dita/dost/reader/MergeMapParser.java
+++ b/src/org/dita/dost/reader/MergeMapParser.java
@@ -122,6 +122,7 @@ public class MergeMapParser extends AbstractXMLReader {
int at... | fix bug # <I> Image referenced in map is not found, topicmerge breaks |
diff --git a/fluent_contents/models/fields.py b/fluent_contents/models/fields.py
index <HASH>..<HASH> 100644
--- a/fluent_contents/models/fields.py
+++ b/fluent_contents/models/fields.py
@@ -178,6 +178,12 @@ class PlaceholderField(PlaceholderRelation):
slot=self.slot
)
+ # Rem... | Fix <I> error at delete page with PlaceholderField in use.
The forward-relation of the reverse-relation needs to exist,
however it is not that important right now. Leave it as None for the
moment. |
diff --git a/contactform/controllers/ContactFormController.php b/contactform/controllers/ContactFormController.php
index <HASH>..<HASH> 100644
--- a/contactform/controllers/ContactFormController.php
+++ b/contactform/controllers/ContactFormController.php
@@ -30,7 +30,11 @@ class ContactFormController extends BaseContro... | Fix a bug where the "allowAttachments" setting wasn't being enforced. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@ CLASS_VERSION = '2.5.0'
MAJOR = 0
MINOR = 1
MICRO = 15
-ISRELEASED = False
+ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
DISTNAME = 'classylss' | remove dev from <I> |
diff --git a/lib/config.js b/lib/config.js
index <HASH>..<HASH> 100644
--- a/lib/config.js
+++ b/lib/config.js
@@ -384,7 +384,7 @@ exports.extend = function extend(newConf) {
};
var isLocalUIUrl = function(url) {
var host = getHostname(url);
- return isWebUIHost() || !!config.pluginHostMap[host];
+ ret... | feat: Support custom the hostname of plugin by cli |
diff --git a/main.py b/main.py
index <HASH>..<HASH> 100644
--- a/main.py
+++ b/main.py
@@ -10,9 +10,9 @@ def main(filename=""):
return renderer.render(markdown)
if __name__ == "__main__":
- try:
+ if len(sys.argv) > 1:
print(main(sys.argv[1]))
- except IndexError:
+ else:
try:
... | 🐛 removed try-except as control structure |
diff --git a/src/auth/log-out.js b/src/auth/log-out.js
index <HASH>..<HASH> 100644
--- a/src/auth/log-out.js
+++ b/src/auth/log-out.js
@@ -13,7 +13,7 @@ export default function logOut () {
log.debug('API: Log out successful.')
return getSession()
}, function onError (error) {
- log.debug('Log out error.... | Makes logout method always return stringifiable error |
diff --git a/detox/android/detox/src/main/java/com/wix/detox/instruments/reflected/InstrumentsReflected.java b/detox/android/detox/src/main/java/com/wix/detox/instruments/reflected/InstrumentsReflected.java
index <HASH>..<HASH> 100644
--- a/detox/android/detox/src/main/java/com/wix/detox/instruments/reflected/Instrumen... | Removed unnecessary logs while trying to check instruments for android |
diff --git a/cronofy.php b/cronofy.php
index <HASH>..<HASH> 100644
--- a/cronofy.php
+++ b/cronofy.php
@@ -339,6 +339,7 @@ class Cronofy
String location.long : The String describing the event's longitude. OPTIONAL
Array reminders : An array of arrays detailing a length of time and a quantity. OPTI... | Add transparency to upsert_event |
diff --git a/pandas/core/generic.py b/pandas/core/generic.py
index <HASH>..<HASH> 100644
--- a/pandas/core/generic.py
+++ b/pandas/core/generic.py
@@ -10587,8 +10587,10 @@ class NDFrame(PandasObject, SelectionMixin, indexing.IndexingMixin):
# [assignment]
cls.all = all # type: ignore[assignment]
+ ... | BUG: Placeholders not being filled on docstrings (#<I>) |
diff --git a/etcdmain/config_test.go b/etcdmain/config_test.go
index <HASH>..<HASH> 100644
--- a/etcdmain/config_test.go
+++ b/etcdmain/config_test.go
@@ -460,8 +460,19 @@ func TestConfigFileElectionTimeout(t *testing.T) {
},
{
ElectionMs: 60000,
+ TickMs: 10000,
errStr: "is too long, and should... | etcdmain: test wrong heartbeat-interval, election-timeout in TestConfigFileElectionTimeout |
diff --git a/src/Search/Services/SearchableService.php b/src/Search/Services/SearchableService.php
index <HASH>..<HASH> 100644
--- a/src/Search/Services/SearchableService.php
+++ b/src/Search/Services/SearchableService.php
@@ -151,12 +151,12 @@ class SearchableService
// Anonymous member canView() for ... | FIX Don't assume DataObject::canView always returns bool (#<I>)
Because there is no return value typehinting in DataObject::canView, the value returned from that method can be of any type. We must cast to boolean before returning the value to avoid possible errors with non-boolean return types. |
diff --git a/src/BoomCMS/Database/Models/Chunk/Linkset.php b/src/BoomCMS/Database/Models/Chunk/Linkset.php
index <HASH>..<HASH> 100644
--- a/src/BoomCMS/Database/Models/Chunk/Linkset.php
+++ b/src/BoomCMS/Database/Models/Chunk/Linkset.php
@@ -6,7 +6,7 @@ class Linkset extends BaseChunk
{
protected $table = 'chunk... | Fixed declaration of model create methods not compatible with Illuminate\Database\Eloquent\Model |
diff --git a/test/integration/test-property-types.js b/test/integration/test-property-types.js
index <HASH>..<HASH> 100644
--- a/test/integration/test-property-types.js
+++ b/test/integration/test-property-types.js
@@ -6,11 +6,16 @@ assert.equal(Property.check(String).type, "text");
assert.equal(Property.check(Number)... | Updates tests for property types to include enum and object |
diff --git a/lints/lint_dnsname_bad_character_in_label.go b/lints/lint_dnsname_bad_character_in_label.go
index <HASH>..<HASH> 100644
--- a/lints/lint_dnsname_bad_character_in_label.go
+++ b/lints/lint_dnsname_bad_character_in_label.go
@@ -12,7 +12,7 @@ type DNSNameProperCharacters struct {
}
func (l *DNSNameProperC... | Add missing [ to dnsNameRegexp. (#<I>) |
diff --git a/lib/node_modules/@stdlib/regexp/native-function/lib/index.js b/lib/node_modules/@stdlib/regexp/native-function/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/node_modules/@stdlib/regexp/native-function/lib/index.js
+++ b/lib/node_modules/@stdlib/regexp/native-function/lib/index.js
@@ -60,8 +60,3 @@ set... | Delete duplicated module.exports |
diff --git a/application/tests/Bootstrap.php b/application/tests/Bootstrap.php
index <HASH>..<HASH> 100644
--- a/application/tests/Bootstrap.php
+++ b/application/tests/Bootstrap.php
@@ -324,6 +324,9 @@ switch (ENVIRONMENT)
/*
require __DIR__ . '/_ci_phpunit_test/patcher/bootstrap.php';
MonkeyPatchManager::init([
+ ... | docs: how to enable debug mode and set the log file path, as comment |
diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -1,7 +1,7 @@
/**
* Pon task for file system
* @module pon-task-fs
- * @version 2.1.0
+ * @version 2.1.1
*/
'use strict' | [ci skip] Travis CI committed after build |
diff --git a/js/lib/mediawiki.Util.js b/js/lib/mediawiki.Util.js
index <HASH>..<HASH> 100644
--- a/js/lib/mediawiki.Util.js
+++ b/js/lib/mediawiki.Util.js
@@ -187,7 +187,7 @@ var HTML5 = require( 'html5' ).HTML5,
Object.freeze(o); // First freeze the object.
for (var propKey in o) {
var prop = o[propKey];
- ... | Fix a deepFreeze crash
This fixes a crasher from a client log where isFrozen was called on a
non-object. 'foo instanceof Object' seems to be the better test for freeze,
and is used to test the top-level object anyway.
Change-Id: Ice<I>c<I>d<I>df<I>edc5a7f1ec4df<I>e<I>e<I>c |
diff --git a/src/Uri.php b/src/Uri.php
index <HASH>..<HASH> 100644
--- a/src/Uri.php
+++ b/src/Uri.php
@@ -669,7 +669,7 @@ class Uri implements UriInterface
return preg_replace_callback(
'/(?:[^' . self::CHAR_UNRESERVED . ':@&=\+\$,\/;%]+|%(?![A-Fa-f0-9]{2}))/',
- [$this, 'encodeUrl']... | Renamed `encodeUrl` to `urlEncodeChar`
- to better describe what it's actually doing (it's not encoding a full URL) |
diff --git a/oplus/version.py b/oplus/version.py
index <HASH>..<HASH> 100644
--- a/oplus/version.py
+++ b/oplus/version.py
@@ -1 +1 @@
-version='6.0.2.dev2'
+version='6.0.2.dev3' | [skip ci] updated version as <I>.dev3 |
diff --git a/pharen.php b/pharen.php
index <HASH>..<HASH> 100755
--- a/pharen.php
+++ b/pharen.php
@@ -281,7 +281,7 @@ class Scope{
public function get_lexing($var_name){
$value = $this->bindings[$var_name]->compile();
- return 'Lexical::$scopes['.$this->id.']["'.$var_name.'"] = '.$value.';';
+ ... | Fixed bug where lexings were referring to the value used for the binding, not the variable itself. |
diff --git a/src/main/java/moe/tristan/easyfxml/spring/SpringContext.java b/src/main/java/moe/tristan/easyfxml/spring/SpringContext.java
index <HASH>..<HASH> 100644
--- a/src/main/java/moe/tristan/easyfxml/spring/SpringContext.java
+++ b/src/main/java/moe/tristan/easyfxml/spring/SpringContext.java
@@ -31,7 +31,7 @@ pub... | Slight signature change to apply to referring JavaDoc |
diff --git a/hazelcast/src/main/java/com/hazelcast/client/impl/ClientHeartbeatMonitor.java b/hazelcast/src/main/java/com/hazelcast/client/impl/ClientHeartbeatMonitor.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/client/impl/ClientHeartbeatMonitor.java
+++ b/hazelcast/src/main/java/com/haz... | Include owner connection to heart beat check
When client is inactive, server needs to close the
connection so that resources(e.g locks) associated with that connection
can be released. When there are 2 connection from client to server,
we did not want to check owner connection since there were no
heartbeat send over i... |
diff --git a/lib/gemsmith/cli.rb b/lib/gemsmith/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/gemsmith/cli.rb
+++ b/lib/gemsmith/cli.rb
@@ -111,7 +111,7 @@ module Gemsmith
desc "-v, [version]", "Show version."
map "-v" => :version
def version
- print_version
+ say "Gemsmith " + VERSION
end
... | Removed the print_version method. |
diff --git a/lib/webpacker/compiler.rb b/lib/webpacker/compiler.rb
index <HASH>..<HASH> 100644
--- a/lib/webpacker/compiler.rb
+++ b/lib/webpacker/compiler.rb
@@ -87,7 +87,7 @@ class Webpacker::Compiler
end
def compilation_digest_path
- config.cache_path.join(".last-compilation-digest-#{Webpacker.env}"... | Make compilation digest file visible (#<I>) |
diff --git a/lib/paper_trail/version.rb b/lib/paper_trail/version.rb
index <HASH>..<HASH> 100644
--- a/lib/paper_trail/version.rb
+++ b/lib/paper_trail/version.rb
@@ -116,7 +116,8 @@ class Version < ActiveRecord::Base
end
def index
- sibling_versions.select(:id).order("id ASC").map(&:id).index(self.id)
+ ... | Refactor index method on version to call the model's primary key instead of assuming it is "id." |
diff --git a/superset/jinja_context.py b/superset/jinja_context.py
index <HASH>..<HASH> 100644
--- a/superset/jinja_context.py
+++ b/superset/jinja_context.py
@@ -43,7 +43,7 @@ def url_param(param, default=None):
def current_user_id():
"""The id of the user who is currently logged in"""
- if g.user:
+ if ... | [bugfix] Template rendering failed: '_AppCtxGlobals' object has no attribute 'user' (#<I>)
Somehow the nature of `g` in Flask has changed where `g.user` used to
be provided outside the web request scope and its not anymore.
The fix here should address that. |
diff --git a/okhttp-tests/src/test/java/okhttp3/internal/tls/ClientAuthTest.java b/okhttp-tests/src/test/java/okhttp3/internal/tls/ClientAuthTest.java
index <HASH>..<HASH> 100644
--- a/okhttp-tests/src/test/java/okhttp3/internal/tls/ClientAuthTest.java
+++ b/okhttp-tests/src/test/java/okhttp3/internal/tls/ClientAuthTes... | Fix master build for JDK <I> |
diff --git a/salt/modules/yumpkg.py b/salt/modules/yumpkg.py
index <HASH>..<HASH> 100644
--- a/salt/modules/yumpkg.py
+++ b/salt/modules/yumpkg.py
@@ -5,6 +5,8 @@ Support for YUM
- rpm Python module
- rpmUtils Python module
'''
+import re
+
try:
import yum
import rpm | Add missing re import to yumpkg |
diff --git a/PHPStan/PropertyReflectionExtension.php b/PHPStan/PropertyReflectionExtension.php
index <HASH>..<HASH> 100644
--- a/PHPStan/PropertyReflectionExtension.php
+++ b/PHPStan/PropertyReflectionExtension.php
@@ -20,8 +20,6 @@ use SignpostMarv\DaftObject\TypeParanoia;
*/
class PropertyReflectionExtension extend... | removing unreferenced const |
diff --git a/provider/joyent/provider.go b/provider/joyent/provider.go
index <HASH>..<HASH> 100644
--- a/provider/joyent/provider.go
+++ b/provider/joyent/provider.go
@@ -30,7 +30,7 @@ var _ simplestreams.HasRegion = (*joyentEnviron)(nil)
// RestrictedConfigAttributes is specified in the EnvironProvider interface.
... | lp<I>: Use controller region for hosted models
Hosted models in joyent were not using the same
region as the controller. sdc-url should not be
overwritten / set to default for hosted models. |
diff --git a/lib/seahorse/client/handler_list.rb b/lib/seahorse/client/handler_list.rb
index <HASH>..<HASH> 100644
--- a/lib/seahorse/client/handler_list.rb
+++ b/lib/seahorse/client/handler_list.rb
@@ -13,7 +13,6 @@
module Seahorse
class Client
- # @api private
class HandlerList
include Enumerab... | HandlerList is now publically documented. |
diff --git a/tests/Unit/Suites/Product/ProductDetailViewSnippetRendererTest.php b/tests/Unit/Suites/Product/ProductDetailViewSnippetRendererTest.php
index <HASH>..<HASH> 100644
--- a/tests/Unit/Suites/Product/ProductDetailViewSnippetRendererTest.php
+++ b/tests/Unit/Suites/Product/ProductDetailViewSnippetRendererTest.p... | Issue #<I>: Don't abuse carry and initial value for snippet key |
diff --git a/container/docker/engine.py b/container/docker/engine.py
index <HASH>..<HASH> 100644
--- a/container/docker/engine.py
+++ b/container/docker/engine.py
@@ -557,7 +557,7 @@ class Engine(BaseEngine, DockerSecretsMixin):
repo = image
tag = 'latest'
if ':' in image:
- repo, ... | Update split in docker pull (#<I>) |
diff --git a/pyrogram/client/methods/users/set_profile_photo.py b/pyrogram/client/methods/users/set_profile_photo.py
index <HASH>..<HASH> 100644
--- a/pyrogram/client/methods/users/set_profile_photo.py
+++ b/pyrogram/client/methods/users/set_profile_photo.py
@@ -18,22 +18,26 @@
from pyrogram.api import functions
fr... | Allow uploading profile photos using file-like objects |
diff --git a/src/jquery.webui-popover.js b/src/jquery.webui-popover.js
index <HASH>..<HASH> 100644
--- a/src/jquery.webui-popover.js
+++ b/src/jquery.webui-popover.js
@@ -421,6 +421,8 @@
if (that.options.async.success) {
that.options.async.success(that, data);
... | resetting xhr on complete callback |
diff --git a/axiom/batch.py b/axiom/batch.py
index <HASH>..<HASH> 100644
--- a/axiom/batch.py
+++ b/axiom/batch.py
@@ -22,9 +22,7 @@ except ImportError:
manhole_ssh = None
from twisted.conch import interfaces as iconch
-from epsilon import extime, process, cooperator, modal
-
-from vertex import juice
+from eps... | Re-merge vertex=>epsilon juice move.
Fixes #<I> (again)
Author: glyph
Reviewer: mithrandi
Hope that it doesn't break anything significant this time... |
diff --git a/src/Vector.php b/src/Vector.php
index <HASH>..<HASH> 100644
--- a/src/Vector.php
+++ b/src/Vector.php
@@ -68,7 +68,7 @@ class Vector
* Check whether the given vector is the same as this vector.
*
* @api
- * @param self $b The vector to check for equality.
+ * @param \Nubs\Vectorix... | Use fully qualified class name to make php analyzer happy. |
diff --git a/integrationtests/integrationtests_suite_test.go b/integrationtests/integrationtests_suite_test.go
index <HASH>..<HASH> 100644
--- a/integrationtests/integrationtests_suite_test.go
+++ b/integrationtests/integrationtests_suite_test.go
@@ -5,7 +5,6 @@ import (
"crypto/md5"
"encoding/hex"
"fmt"
- "go/bu... | determine the path to the quic_clients at runtime in integration tests |
diff --git a/memorious/operations/aleph.py b/memorious/operations/aleph.py
index <HASH>..<HASH> 100644
--- a/memorious/operations/aleph.py
+++ b/memorious/operations/aleph.py
@@ -78,4 +78,4 @@ def get_collection_id(context, session):
def make_url(path):
- return urljoin(settings.ALEPH_HOST, '/api/1/%s' % path)
... | Env for aleph api version |
diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -161,14 +161,14 @@ export class Driver {
if (this.config.missing === false) {
if (options.missing === true) {
- return fn(err, results, misses);
+ return fn(errors, r... | fix to properly return the errors i get multi case |
diff --git a/tests/index.js b/tests/index.js
index <HASH>..<HASH> 100644
--- a/tests/index.js
+++ b/tests/index.js
@@ -35,6 +35,6 @@ if( hasQuietFlag() ) {
await Promise.all(
(await readdir(testdir))
.filter(name => name.endsWith(TEST_SUFFIX))
- .map(testscript => harness.spawn(NODE_BINARY, [...exec... | tests: arguably, `testfile` fits better with `testdir` than `testscript` |
diff --git a/runtime/default.go b/runtime/default.go
index <HASH>..<HASH> 100644
--- a/runtime/default.go
+++ b/runtime/default.go
@@ -85,6 +85,7 @@ func newService(s *Service, c CreateOptions) *service {
Env: c.Env,
Args: args,
},
+ closed: make(chan bool),
output: c.Output,
}
} | Fix panic caused when ctrl+c a non started service |
diff --git a/src/python/dxpy/cli/exec_io.py b/src/python/dxpy/cli/exec_io.py
index <HASH>..<HASH> 100644
--- a/src/python/dxpy/cli/exec_io.py
+++ b/src/python/dxpy/cli/exec_io.py
@@ -402,7 +402,7 @@ def get_input_single(param_desc):
+ BOLD() + param_desc['name'] + ENDC() + ' is not in the li... | dx run: Avoid stack trace on ^D |
diff --git a/nurbs/__init__.py b/nurbs/__init__.py
index <HASH>..<HASH> 100644
--- a/nurbs/__init__.py
+++ b/nurbs/__init__.py
@@ -24,4 +24,4 @@ Of course you can :-) Please feel free to contact me about the NURBS-Python pack
"""
-__version__ = "2.3"
+__version__ = "2.3.1" | Version bumped to <I> |
diff --git a/lib/AktiveMerchant/Billing/Gateways/HsbcSecureEpayments.php b/lib/AktiveMerchant/Billing/Gateways/HsbcSecureEpayments.php
index <HASH>..<HASH> 100644
--- a/lib/AktiveMerchant/Billing/Gateways/HsbcSecureEpayments.php
+++ b/lib/AktiveMerchant/Billing/Gateways/HsbcSecureEpayments.php
@@ -260,8 +260,7 @@ XML;
... | hsbc secure epayments country method call fix |
diff --git a/src/Krystal/Db/Tests/QueryBuilderTest.php b/src/Krystal/Db/Tests/QueryBuilderTest.php
index <HASH>..<HASH> 100644
--- a/src/Krystal/Db/Tests/QueryBuilderTest.php
+++ b/src/Krystal/Db/Tests/QueryBuilderTest.php
@@ -146,6 +146,14 @@ class QueryBuilderTest extends \PHPUnit_Framework_TestCase
$this->v... | Added test case for selected table name |
diff --git a/lib/actions.js b/lib/actions.js
index <HASH>..<HASH> 100644
--- a/lib/actions.js
+++ b/lib/actions.js
@@ -501,6 +501,20 @@ exports.injectJs = function(file) {
};
/*
+ * Includes javascript script from a url on the page.
+ * @param {string} url - The url to a javascript file to include o the page.
+ */
... | Add includeJs action
Fixes #<I> |
diff --git a/actor-apps/core/src/main/java/im/actor/core/modules/internal/messages/OwnReadActor.java b/actor-apps/core/src/main/java/im/actor/core/modules/internal/messages/OwnReadActor.java
index <HASH>..<HASH> 100644
--- a/actor-apps/core/src/main/java/im/actor/core/modules/internal/messages/OwnReadActor.java
+++ b/a... | fix(core): Fixing notifications |
diff --git a/src/data.js b/src/data.js
index <HASH>..<HASH> 100644
--- a/src/data.js
+++ b/src/data.js
@@ -29,10 +29,10 @@ Data.prototype = {
// If not, create one
if ( !unlock ) {
unlock = Data.uid++;
- descriptor[ this.expando ] = { value: unlock };
// Secure it in a non-enumerable, non-writable pro... | No ticket: Move property descriptor assignment to save a byte. Close gh-<I>. |
diff --git a/lib/builderator/control/version/git.rb b/lib/builderator/control/version/git.rb
index <HASH>..<HASH> 100644
--- a/lib/builderator/control/version/git.rb
+++ b/lib/builderator/control/version/git.rb
@@ -16,6 +16,8 @@ module Builderator
## Is there a .git repo in the project root?
def sel... | Support setting GIT_DIR for git scm provider |
diff --git a/Kwf/Controller/Action/User/BackendLoginController.php b/Kwf/Controller/Action/User/BackendLoginController.php
index <HASH>..<HASH> 100644
--- a/Kwf/Controller/Action/User/BackendLoginController.php
+++ b/Kwf/Controller/Action/User/BackendLoginController.php
@@ -115,6 +115,11 @@ class Kwf_Controller_Action_... | Implement fallback for auth-method with missing login-redirect-url |
diff --git a/boot/boot.go b/boot/boot.go
index <HASH>..<HASH> 100644
--- a/boot/boot.go
+++ b/boot/boot.go
@@ -55,19 +55,19 @@ func All() error {
}
help("Setup complete!\n\nNext steps: \n - apex infra plan - show an execution plan for Terraform configs\n - apex infra apply - apply Terraform configs\n - apex ... | remove else branch to de-nest |
diff --git a/src/trumbowyg.js b/src/trumbowyg.js
index <HASH>..<HASH> 100644
--- a/src/trumbowyg.js
+++ b/src/trumbowyg.js
@@ -1021,8 +1021,8 @@ Object.defineProperty(jQuery.trumbowyg, 'defaultOptions', {
$('body', d).on('mousedown.' + t.eventNamespace, function (e) {
if (!$dropd... | allow Trumbowyg working with shadow dom |
diff --git a/blockstack_cli_0.14.1/blockstack_client/proxy.py b/blockstack_cli_0.14.1/blockstack_client/proxy.py
index <HASH>..<HASH> 100644
--- a/blockstack_cli_0.14.1/blockstack_client/proxy.py
+++ b/blockstack_cli_0.14.1/blockstack_client/proxy.py
@@ -686,12 +686,12 @@ def ping(proxy=None):
schema = {
... | update `ping()` response schema to match <I> server response |
diff --git a/lib/sequent/core/transactions/no_transactions.rb b/lib/sequent/core/transactions/no_transactions.rb
index <HASH>..<HASH> 100644
--- a/lib/sequent/core/transactions/no_transactions.rb
+++ b/lib/sequent/core/transactions/no_transactions.rb
@@ -1,7 +1,11 @@
module Sequent
module Core
module Transacti... | Add comment to clarify intent of NoTransactions |
diff --git a/asyncio_xmpp/callbacks.py b/asyncio_xmpp/callbacks.py
index <HASH>..<HASH> 100644
--- a/asyncio_xmpp/callbacks.py
+++ b/asyncio_xmpp/callbacks.py
@@ -33,6 +33,9 @@ class CallbacksWithToken:
def remove_callback(self, token):
self._callbacks[token.key].pop(token)
+ def remove_callback_fn(s... | Allow to remove callbacks without token if they match exactly |
diff --git a/ontrack-web/src/app/service/service.buildfilter.js b/ontrack-web/src/app/service/service.buildfilter.js
index <HASH>..<HASH> 100644
--- a/ontrack-web/src/app/service/service.buildfilter.js
+++ b/ontrack-web/src/app/service/service.buildfilter.js
@@ -113,6 +113,10 @@ angular.module('ot.service.buildfilter',... | #<I> Editing shared filters |
diff --git a/builtin/providers/openstack/resource_openstack_compute_secgroup_v2.go b/builtin/providers/openstack/resource_openstack_compute_secgroup_v2.go
index <HASH>..<HASH> 100644
--- a/builtin/providers/openstack/resource_openstack_compute_secgroup_v2.go
+++ b/builtin/providers/openstack/resource_openstack_compute_... | always need both name and description when updating |
diff --git a/aiortc/rtcrtpreceiver.py b/aiortc/rtcrtpreceiver.py
index <HASH>..<HASH> 100644
--- a/aiortc/rtcrtpreceiver.py
+++ b/aiortc/rtcrtpreceiver.py
@@ -69,7 +69,11 @@ class RTCRtpReceiver:
# skip RTCP for now
if is_rtcp(data):
- for packet in RtcpPacket.parse(data):
+ ... | [rtp] don't bomb when receiving malformed RTCP |
diff --git a/couchbase/tests/cases/append_t.py b/couchbase/tests/cases/append_t.py
index <HASH>..<HASH> 100644
--- a/couchbase/tests/cases/append_t.py
+++ b/couchbase/tests/cases/append_t.py
@@ -19,7 +19,7 @@ from couchbase import FMT_JSON, FMT_PICKLE, FMT_BYTES, FMT_UTF8
from couchbase.exceptions import (KeyExistsE... | append_t: Newer server build returns ENOENT rather than NOT_STORED
The latest builds of the server return this error code (which is
actually more correct anyway).
Change-Id: I<I>e<I>b<I>b<I>bf<I>dab<I>bf<I>c
Reviewed-on: <URL> |
diff --git a/lib/webspicy/version.rb b/lib/webspicy/version.rb
index <HASH>..<HASH> 100644
--- a/lib/webspicy/version.rb
+++ b/lib/webspicy/version.rb
@@ -2,7 +2,7 @@ module Webspicy
module Version
MAJOR = 0
MINOR = 20
- TINY = 15
+ TINY = 16
end
VERSION = "#{Version::MAJOR}.#{Version::MINOR}... | Bump to <I> and release. |
diff --git a/lib/reporters/dot_reporter.js b/lib/reporters/dot_reporter.js
index <HASH>..<HASH> 100644
--- a/lib/reporters/dot_reporter.js
+++ b/lib/reporters/dot_reporter.js
@@ -84,7 +84,7 @@ DotReporter.prototype = {
printf(this.out, '\n%s', indent(error.stack, 5));
}
- this.out.write('\n');
+ ... | separate each test failure report by an empty line |
diff --git a/cliTool/argumentParser.js b/cliTool/argumentParser.js
index <HASH>..<HASH> 100644
--- a/cliTool/argumentParser.js
+++ b/cliTool/argumentParser.js
@@ -63,7 +63,9 @@ function getFormat(formatString) {
else if(format == 'chicago' || format == 'c') {
return require('../core/model/formats/chicago');
}
-
... | added bibtexmisc formatting style to the parser |
diff --git a/packages/bonde-admin/src/mobilizations/paths.js b/packages/bonde-admin/src/mobilizations/paths.js
index <HASH>..<HASH> 100644
--- a/packages/bonde-admin/src/mobilizations/paths.js
+++ b/packages/bonde-admin/src/mobilizations/paths.js
@@ -1,5 +1,5 @@
export const mobilizations = () => '/mobilizations'
-exp... | fix(admin): change env redirect to mobilization on public version |
diff --git a/examples/WhenTest.php b/examples/WhenTest.php
index <HASH>..<HASH> 100644
--- a/examples/WhenTest.php
+++ b/examples/WhenTest.php
@@ -1,10 +1,5 @@
<?php
-/**
- * Some of these would make good unit tests, but importing them
- * doesn't solve the problem as the more important ones are the failures
- * We ... | Removing comment about end2end testing, which has been addresses by test/Eris/ExampleEnd2EndTest.php |
diff --git a/dolo/tests/test_customdr.py b/dolo/tests/test_customdr.py
index <HASH>..<HASH> 100644
--- a/dolo/tests/test_customdr.py
+++ b/dolo/tests/test_customdr.py
@@ -1,6 +1,6 @@
def test_custom_dr():
- from dolo import yaml_import
+ from dolo import yaml_import, simulate, time_iteration
import numpy ... | FIX: missing imports in tests. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.