diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/toh5.py b/toh5.py
index <HASH>..<HASH> 100644
--- a/toh5.py
+++ b/toh5.py
@@ -62,10 +62,10 @@ def convert_chain(
maxshape=(None,),
dtype=np.float64,
chunks=(chunksize,),
- c... | Change compression option to gzip (the standard). Updated attribute
syntax to h5py <I>.
lzf compression is better than gzip, but is h5py specific, which we
really don't want. |
diff --git a/tests/jenkins.py b/tests/jenkins.py
index <HASH>..<HASH> 100644
--- a/tests/jenkins.py
+++ b/tests/jenkins.py
@@ -75,7 +75,18 @@ def run(platform, provider, commit, clean):
stream_stds=True
)
proc.poll_and_read_until_finish()
- proc.communicate()
+ stdout, stderr = proc.communicate... | Add debug print to check if communicate is doin' the right thing. |
diff --git a/functional_tests/test_services.py b/functional_tests/test_services.py
index <HASH>..<HASH> 100644
--- a/functional_tests/test_services.py
+++ b/functional_tests/test_services.py
@@ -102,6 +102,16 @@ class BuzzFunctionalTest(unittest.TestCase):
self.assertEquals('111062888259659218284', person['id'])
... | Added a test for getting profiles via numeric identifiers |
diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/HttpKernel/Kernel.php
+++ b/src/Symfony/Component/HttpKernel/Kernel.php
@@ -56,12 +56,12 @@ abstract class Kernel implements KernelInterface
protected $star... | bumped Symfony version to <I>-DEV |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -27,13 +27,3 @@ googleSearch(['agua', 'lluvia', 'rajoy'], {year: 2016, month: 1, date: 12})
.catch(reason => {
console.log(reason)
})
-
-
-
-//elpais('2016', '01', '01', 'm')
-// .then(content => { console.log(cont... | Enhance test script. Delete unnecesary lines |
diff --git a/blimpy/file_wrapper.py b/blimpy/file_wrapper.py
index <HASH>..<HASH> 100644
--- a/blimpy/file_wrapper.py
+++ b/blimpy/file_wrapper.py
@@ -452,7 +452,7 @@ class FilReader(Reader):
self.n_pols_in_file = 1 #Placeholder for future development.
self._n_bytes = self.header['nbits'] / 8... | Renamed _get_n_ints_in_file to _setup_n_ints_in_file for consistency
Other methods such as _setup_freqs and _setup_chans |
diff --git a/lib/client.js b/lib/client.js
index <HASH>..<HASH> 100644
--- a/lib/client.js
+++ b/lib/client.js
@@ -7,8 +7,8 @@ var net = require('net'),
errors = require('./errors'),
Binary = require('binary'),
protocol = require('./protocol'),
- Zookeeper = require('./zookeeper');
-
+ zk = requir... | Adding highLevel Consumers and Producers |
diff --git a/cmd/juju/cloud/updatecredential.go b/cmd/juju/cloud/updatecredential.go
index <HASH>..<HASH> 100644
--- a/cmd/juju/cloud/updatecredential.go
+++ b/cmd/juju/cloud/updatecredential.go
@@ -19,18 +19,18 @@ var usageUpdateCredentialSummary = `
Updates a controller credential for a cloud.`[1:]
var usageUpdat... | "controller credential" change to "cloud credential for controller" |
diff --git a/ssllabs-scan.go b/ssllabs-scan.go
index <HASH>..<HASH> 100644
--- a/ssllabs-scan.go
+++ b/ssllabs-scan.go
@@ -270,7 +270,7 @@ func invokeGetRepeatedly(url string) (*http.Response, []byte, error) {
resp, err := httpClient.Do(req)
if err == nil {
if logLevel >= LOG_DEBUG {
- log.Printf("[DEBUG] ... | Fix the response status code log message. |
diff --git a/main.go b/main.go
index <HASH>..<HASH> 100644
--- a/main.go
+++ b/main.go
@@ -8,6 +8,7 @@ import (
"io/ioutil"
"net/http"
"os"
+ "path"
"strings"
"github.com/cheekybits/genny/parse"
@@ -62,6 +63,11 @@ func main() {
var outWriter io.Writer
if len(*out) > 0 {
+ err := os.MkdirAll(path.Dir(... | Adding the creation of output dirs |
diff --git a/src/main/java/org/mariadb/jdbc/internal/util/Utils.java b/src/main/java/org/mariadb/jdbc/internal/util/Utils.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/mariadb/jdbc/internal/util/Utils.java
+++ b/src/main/java/org/mariadb/jdbc/internal/util/Utils.java
@@ -665,7 +665,7 @@ public class Utils {
... | [misc] correcting debug output when having offset |
diff --git a/src/Post_Command.php b/src/Post_Command.php
index <HASH>..<HASH> 100644
--- a/src/Post_Command.php
+++ b/src/Post_Command.php
@@ -143,6 +143,10 @@ class Post_Command extends \WP_CLI\CommandWithDBObject {
* # Create post with content from given file
* $ wp post create ./post-content.txt --post... | Add examples to dcoblocks. |
diff --git a/bin/LifeCyclePlots.py b/bin/LifeCyclePlots.py
index <HASH>..<HASH> 100755
--- a/bin/LifeCyclePlots.py
+++ b/bin/LifeCyclePlots.py
@@ -11,12 +11,13 @@ def get_command_line_options(executable_name, arguments):
parser = OptionParser(usage="%s options" % executable_name)
parser.add_option("-i", "--in... | Added print options and remove root file from mandatory options. |
diff --git a/test/pbt_test.rb b/test/pbt_test.rb
index <HASH>..<HASH> 100644
--- a/test/pbt_test.rb
+++ b/test/pbt_test.rb
@@ -112,6 +112,12 @@ class PbtTest < ActiveSupport::TestCase
bob_to_prof.must_respond_to(:last )
bob_to_prof.must_be_kind_of(ActiveRecord::Associations::CollectionProxy)
end
+
+ ... | Additional test for FakedCollection. |
diff --git a/libstempo/toasim.py b/libstempo/toasim.py
index <HASH>..<HASH> 100644
--- a/libstempo/toasim.py
+++ b/libstempo/toasim.py
@@ -359,7 +359,7 @@ def add_line(psr,f,A,offset=0.5):
psr.stoas[:] += sine / day
-def add_glitch(psr, epoch, amplitude):
+def add_glitch(psr, epoch, amp):
"""
Like pu... | adding glitch signal to toasim |
diff --git a/tests/regressors.py b/tests/regressors.py
index <HASH>..<HASH> 100644
--- a/tests/regressors.py
+++ b/tests/regressors.py
@@ -72,6 +72,8 @@ def categorical_ensembling_regression(model_name=None):
lower_bound = -16
if model_name == 'LGBMRegressor':
lower_bound = -4.95
+ if model_na... | adjusts test bounds for gradientboosting for higher learning rate |
diff --git a/client/fingerprint/memory.go b/client/fingerprint/memory.go
index <HASH>..<HASH> 100644
--- a/client/fingerprint/memory.go
+++ b/client/fingerprint/memory.go
@@ -35,7 +35,7 @@ func (f *MemoryFingerprint) Fingerprint(cfg *config.Config, node *structs.Node)
if node.Resources == nil {
node.Resources =... | convert to MB for MemoryMB, and update test |
diff --git a/app/assets/javascripts/peoplefinder/photo_upload.js b/app/assets/javascripts/peoplefinder/photo_upload.js
index <HASH>..<HASH> 100644
--- a/app/assets/javascripts/peoplefinder/photo_upload.js
+++ b/app/assets/javascripts/peoplefinder/photo_upload.js
@@ -239,5 +239,19 @@ $(function (){
var photoBlocks = ... | crop image on save if not already |
diff --git a/base.php b/base.php
index <HASH>..<HASH> 100644
--- a/base.php
+++ b/base.php
@@ -1487,7 +1487,9 @@ class Base extends Prefab implements ArrayAccess {
$val=ltrim($val);
if (preg_match('/^\w+$/i',$val) && defined($val))
return constant($val);
- return preg_replace('/\\\\\h*(\r... | Bug fix: Double quotes in lexicon files (Issue #<I>) |
diff --git a/src/Elfiggo/Brobdingnagian/Detector/NumberOfInterfaces.php b/src/Elfiggo/Brobdingnagian/Detector/NumberOfInterfaces.php
index <HASH>..<HASH> 100644
--- a/src/Elfiggo/Brobdingnagian/Detector/NumberOfInterfaces.php
+++ b/src/Elfiggo/Brobdingnagian/Detector/NumberOfInterfaces.php
@@ -6,12 +6,27 @@ use Elfiggo... | Added Class docbloc and reduced line length |
diff --git a/lib/transports/websocket.js b/lib/transports/websocket.js
index <HASH>..<HASH> 100644
--- a/lib/transports/websocket.js
+++ b/lib/transports/websocket.js
@@ -51,9 +51,17 @@
*/
WS.prototype.open = function () {
- var Socket = 'MozWebSocket' in window ? MozWebSocket : WebSocket
- , query = i... | Fixed support for Node.JS running `socket.io-client`. |
diff --git a/plugins/org.eclipse.xtext.common.types/src/org/eclipse/xtext/common/types/util/TypeConformanceComputer.java b/plugins/org.eclipse.xtext.common.types/src/org/eclipse/xtext/common/types/util/TypeConformanceComputer.java
index <HASH>..<HASH> 100644
--- a/plugins/org.eclipse.xtext.common.types/src/org/eclipse/... | [common.types] Reverted changes in type conformance computer that broke raw type processing. |
diff --git a/classes/Pods.php b/classes/Pods.php
index <HASH>..<HASH> 100644
--- a/classes/Pods.php
+++ b/classes/Pods.php
@@ -4182,7 +4182,7 @@ class Pods implements Iterator {
&& pods_shortcode_allow_evaluate_tags()
&& ! $this->fields( $field_name )
) {
- $value = pods_evaluate_tag( implode( ',', $tag ),... | Do not sanitize, this method is used for display |
diff --git a/devices/tuya.js b/devices/tuya.js
index <HASH>..<HASH> 100644
--- a/devices/tuya.js
+++ b/devices/tuya.js
@@ -1687,6 +1687,7 @@ module.exports = [
{modelID: 'TS0601', manufacturerName: '_TZE200_tvrvdj6o'},
{modelID: 'zo2pocs\u0000', manufacturerName: '_TYST11_fzo2pocs'},
... | Add TZE<I>_b2u1drdv to TS<I>_cover (#<I>) |
diff --git a/influxdb/client.py b/influxdb/client.py
index <HASH>..<HASH> 100755
--- a/influxdb/client.py
+++ b/influxdb/client.py
@@ -362,13 +362,13 @@ class InfluxDBClient(object):
rsp = self.query("SHOW SERIES", database=database)
print "RSP", rsp.raw
print "RSP", rsp['results']
- r... | Proposed Fix: expand the ResultSet response by using list() on it.
Other solution is to return the ResultSet instance but then we must adapt all call sites..
To be decided.. |
diff --git a/hazelcast/src/main/java/com/hazelcast/replicatedmap/impl/ReplicatedMapService.java b/hazelcast/src/main/java/com/hazelcast/replicatedmap/impl/ReplicatedMapService.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/replicatedmap/impl/ReplicatedMapService.java
+++ b/hazelcast/src/ma... | Fixed losing ReplicatedMap internal state on re-joining a cluster |
diff --git a/lib/webrat/core/matchers/have_xpath.rb b/lib/webrat/core/matchers/have_xpath.rb
index <HASH>..<HASH> 100644
--- a/lib/webrat/core/matchers/have_xpath.rb
+++ b/lib/webrat/core/matchers/have_xpath.rb
@@ -15,7 +15,7 @@ module Webrat
matched = matches(stringlike)
if @options[:count]
- ... | Forces an integer to fix Issue #<I> |
diff --git a/gem-maven-plugin/src/main/java/de/saumya/mojo/gem/PackageMojo.java b/gem-maven-plugin/src/main/java/de/saumya/mojo/gem/PackageMojo.java
index <HASH>..<HASH> 100644
--- a/gem-maven-plugin/src/main/java/de/saumya/mojo/gem/PackageMojo.java
+++ b/gem-maven-plugin/src/main/java/de/saumya/mojo/gem/PackageMojo.ja... | Pass verbose flag to rubygems command launching
It makes it much easier to troubleshoot errors. |
diff --git a/tests/test_case.py b/tests/test_case.py
index <HASH>..<HASH> 100644
--- a/tests/test_case.py
+++ b/tests/test_case.py
@@ -5,6 +5,7 @@ import numpy as np
from andes.utils.paths import get_case
+andes.main.config_logger(stream_level=10)
class Test5Bus(unittest.TestCase):
def setUp(self) -> None: | Output logs for debugging. |
diff --git a/lib/Cake/Model/Datasource/DboSource.php b/lib/Cake/Model/Datasource/DboSource.php
index <HASH>..<HASH> 100644
--- a/lib/Cake/Model/Datasource/DboSource.php
+++ b/lib/Cake/Model/Datasource/DboSource.php
@@ -2917,6 +2917,10 @@ class DboSource extends DataSource {
}
$statement->execute();
$stateme... | Added query logging to DboSource::insertMulti(). Closes #<I> |
diff --git a/autoit/win.py b/autoit/win.py
index <HASH>..<HASH> 100644
--- a/autoit/win.py
+++ b/autoit/win.py
@@ -381,7 +381,7 @@ def win_menu_select_item(title, *items, **kwargs):
if not (0 < len(items) < 8):
raise ValueError("accepted none item or number of items exceed eight")
f_items = [LPCWSTR(... | change use of xrange to range to be python3 compatible |
diff --git a/padatious/__init__.py b/padatious/__init__.py
index <HASH>..<HASH> 100644
--- a/padatious/__init__.py
+++ b/padatious/__init__.py
@@ -15,4 +15,4 @@
from .intent_container import IntentContainer
from .match_data import MatchData
-__version__ = '0.4.3' # Also change in setup.py
+__version__ = '0.4.4' #... | Increment version to <I> |
diff --git a/src/main/java/gwt/material/design/addins/client/masonry/MaterialMasonry.java b/src/main/java/gwt/material/design/addins/client/masonry/MaterialMasonry.java
index <HASH>..<HASH> 100644
--- a/src/main/java/gwt/material/design/addins/client/masonry/MaterialMasonry.java
+++ b/src/main/java/gwt/material/design/... | Use MaterialRow for MaterialMasonry. |
diff --git a/library/src/main/java/de/mrapp/android/preference/activity/PreferenceActivity.java b/library/src/main/java/de/mrapp/android/preference/activity/PreferenceActivity.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/de/mrapp/android/preference/activity/PreferenceActivity.java
+++ b/library/src/main... | The first navigation preference is now selected by default, when using the activity as a wizard. |
diff --git a/lib/specinfra/version.rb b/lib/specinfra/version.rb
index <HASH>..<HASH> 100644
--- a/lib/specinfra/version.rb
+++ b/lib/specinfra/version.rb
@@ -1,3 +1,3 @@
module Specinfra
- VERSION = "2.57.0"
+ VERSION = "2.57.1"
end | Bump up version
[skip ci] |
diff --git a/redis/client.py b/redis/client.py
index <HASH>..<HASH> 100644
--- a/redis/client.py
+++ b/redis/client.py
@@ -1670,8 +1670,8 @@ class Redis(StrictRedis):
RESPONSE_CALLBACKS = dict_merge(
StrictRedis.RESPONSE_CALLBACKS,
{
- 'TTL': lambda r: r != -1 and r or None,
- ... | Adjust to changed TTL, PTTL semantics
Redis >= <I> might return -2, this ensures that redis-py just returns
None. |
diff --git a/extensions/get-the-image.php b/extensions/get-the-image.php
index <HASH>..<HASH> 100644
--- a/extensions/get-the-image.php
+++ b/extensions/get-the-image.php
@@ -16,7 +16,7 @@
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* @package GetTheImage
- * @version ... | Bump to <I> alpha. |
diff --git a/lib/mbtiles.js b/lib/mbtiles.js
index <HASH>..<HASH> 100644
--- a/lib/mbtiles.js
+++ b/lib/mbtiles.js
@@ -105,7 +105,6 @@ MBTiles.prototype._exists = function(table, callback) {
if (this._schema) {
return callback(null, _(this._schema).include(table));
} else {
- this._schema = []... | Fix early initialization of _schema attribute. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -74,6 +74,7 @@ setup(
packages=["draco"],
entry_points={"console_scripts": ["draco=draco.cli:main"]},
install_requires=["clyngor"],
+ include_package_data=True,
extras_require={
"test": ["covera... | Copy asp and js files during installation. Fixes #<I> |
diff --git a/src/Gossamer/Pesedget/Database/DatasourceFactory.php b/src/Gossamer/Pesedget/Database/DatasourceFactory.php
index <HASH>..<HASH> 100644
--- a/src/Gossamer/Pesedget/Database/DatasourceFactory.php
+++ b/src/Gossamer/Pesedget/Database/DatasourceFactory.php
@@ -35,15 +35,15 @@ class DatasourceFactory {
pu... | added check for instance exists on getConnection |
diff --git a/src/de/mrapp/android/dialog/MaterialDialogBuilder.java b/src/de/mrapp/android/dialog/MaterialDialogBuilder.java
index <HASH>..<HASH> 100644
--- a/src/de/mrapp/android/dialog/MaterialDialogBuilder.java
+++ b/src/de/mrapp/android/dialog/MaterialDialogBuilder.java
@@ -387,8 +387,8 @@ public class MaterialDial... | Fixed the functionality to load list items from an array resource. |
diff --git a/phabricator/__init__.py b/phabricator/__init__.py
index <HASH>..<HASH> 100644
--- a/phabricator/__init__.py
+++ b/phabricator/__init__.py
@@ -370,7 +370,7 @@ class Phabricator(Resource):
self.clientDescription = socket.gethostname() + ':python-phabricator'
self._conduit = None
- ... | Forward kwargs (#<I>) |
diff --git a/lib/slimmer/skin.rb b/lib/slimmer/skin.rb
index <HASH>..<HASH> 100644
--- a/lib/slimmer/skin.rb
+++ b/lib/slimmer/skin.rb
@@ -93,6 +93,7 @@ module Slimmer
if defined?(Airbrake)
Airbrake.notify_or_ignore(e, rack_env: rack_env)
end
+ raise if strict
end
... | Don't swallow exceptions when running in test
Previously, exceptions from processors were always swallowed, and there
are several tests which trigger such exceptions but don't report them.
We want these exceptions to be reported in test and dev environments so
that we can fix them; continuing to swallow the exceptions... |
diff --git a/lib/BodyParser.php b/lib/BodyParser.php
index <HASH>..<HASH> 100644
--- a/lib/BodyParser.php
+++ b/lib/BodyParser.php
@@ -55,7 +55,9 @@ class BodyParser implements Observable {
\Amp\defer(function() {
if ($this->parsing === true) {
- new Coroutine($this->initIncrement... | Return awaitable from defer callback |
diff --git a/internal/provider/resource_password_test.go b/internal/provider/resource_password_test.go
index <HASH>..<HASH> 100644
--- a/internal/provider/resource_password_test.go
+++ b/internal/provider/resource_password_test.go
@@ -508,10 +508,11 @@ func TestAccResourcePassword_Min(t *testing.T) {
// TestAccResou... | Linting (#<I>) |
diff --git a/chance.js b/chance.js
index <HASH>..<HASH> 100644
--- a/chance.js
+++ b/chance.js
@@ -59,6 +59,27 @@
return num;
};
+
+ Chance.prototype.normal = function(options) {
+ // The Marsaglia Polar method
+ var s, u, v, norm,
+ mean = options.mean || 0,
+ ... | Adding ability to generate from normal distribution |
diff --git a/lib/xmldb/classes/generators/mysql/mysql.class.php b/lib/xmldb/classes/generators/mysql/mysql.class.php
index <HASH>..<HASH> 100644
--- a/lib/xmldb/classes/generators/mysql/mysql.class.php
+++ b/lib/xmldb/classes/generators/mysql/mysql.class.php
@@ -62,7 +62,7 @@ class XMLDBmysql extends XMLDBGenerator {
... | changed mysql drop index syntax. Nothing relevant. |
diff --git a/lib/vagrant/util/subprocess.rb b/lib/vagrant/util/subprocess.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/util/subprocess.rb
+++ b/lib/vagrant/util/subprocess.rb
@@ -105,10 +105,15 @@ module Vagrant
# amount of text between the time we last read data and when the
# process exited.
... | Subprocess: Check if data is empty after the process exits as well |
diff --git a/lib/task-data/base-tasks/obm.js b/lib/task-data/base-tasks/obm.js
index <HASH>..<HASH> 100644
--- a/lib/task-data/base-tasks/obm.js
+++ b/lib/task-data/base-tasks/obm.js
@@ -7,8 +7,7 @@ module.exports = {
injectableName: 'Task.Base.Obm.Node',
runJob: 'Job.Obm.Node',
requiredOptions: [
- ... | fix CI tests, remove required obm settings from base task (#<I>) |
diff --git a/chef/spec/unit/chef_fs/diff_spec.rb b/chef/spec/unit/chef_fs/diff_spec.rb
index <HASH>..<HASH> 100644
--- a/chef/spec/unit/chef_fs/diff_spec.rb
+++ b/chef/spec/unit/chef_fs/diff_spec.rb
@@ -82,7 +82,9 @@ describe 'diff' do
it 'Chef::ChefFS::CommandLine.diff(/)' do
results = []
Chef::Chef... | Handle GMT and postive time zones in spec test |
diff --git a/lib/passive_record/version.rb b/lib/passive_record/version.rb
index <HASH>..<HASH> 100644
--- a/lib/passive_record/version.rb
+++ b/lib/passive_record/version.rb
@@ -1,4 +1,4 @@
module PassiveRecord
# passive_record version
- VERSION = "0.3.22"
+ VERSION = "0.4.0"
end | version bump to minor version <I>
- compatibility with ruby <I> |
diff --git a/Firestore/synth.py b/Firestore/synth.py
index <HASH>..<HASH> 100644
--- a/Firestore/synth.py
+++ b/Firestore/synth.py
@@ -23,7 +23,7 @@ logging.basicConfig(level=logging.DEBUG)
gapic = gcp.GAPICBazel()
common = gcp.CommonTemplates()
-for ver in ['V1', 'V1beta1']:
+for ver in ['V1']:
lower_version ... | chore: disable updating v1beta1 client (#<I>) |
diff --git a/src/Paystack/Http/RequestBuilder.php b/src/Paystack/Http/RequestBuilder.php
index <HASH>..<HASH> 100644
--- a/src/Paystack/Http/RequestBuilder.php
+++ b/src/Paystack/Http/RequestBuilder.php
@@ -4,6 +4,7 @@ namespace Yabacon\Paystack\Http;
use \Yabacon\Paystack\Contracts\RouteInterface;
use \Yabacon\Pay... | [chore] Add User-Agent header to requests |
diff --git a/src/Api/Repositories/Workspaces/PipelinesConfig.php b/src/Api/Repositories/Workspaces/PipelinesConfig.php
index <HASH>..<HASH> 100644
--- a/src/Api/Repositories/Workspaces/PipelinesConfig.php
+++ b/src/Api/Repositories/Workspaces/PipelinesConfig.php
@@ -13,6 +13,7 @@ declare(strict_types=1);
namespace B... | [<I>] Added missing `PipelinesConfig::variables()` method to point to existing implementation (#<I>) |
diff --git a/mutagen/id3/_specs.py b/mutagen/id3/_specs.py
index <HASH>..<HASH> 100644
--- a/mutagen/id3/_specs.py
+++ b/mutagen/id3/_specs.py
@@ -463,7 +463,7 @@ class ID3TimeStamp(object):
return repr(self.text)
def __eq__(self, other):
- return self.text == other.text
+ return isinstanc... | id3.ID3TimeStamp comparator: check type (#<I>)
pyyaml's yaml.dump() failed because it apparently compares instances of ID3TimeStamp with None and empty tuples |
diff --git a/lib/active_record/id_regions.rb b/lib/active_record/id_regions.rb
index <HASH>..<HASH> 100644
--- a/lib/active_record/id_regions.rb
+++ b/lib/active_record/id_regions.rb
@@ -37,6 +37,10 @@ module ArRegion
@@rails_sequence_end ||= rails_sequence_start + rails_sequence_factor - 1
end
+ def r... | Move ArRegion to ApplicationRecord
In the process, instead of maintaining a direct dependency on our
method, pass the sequence range to rubyrep via config.
(transferred from ManageIQ/manageiq@f<I>a<I>da<I>cb<I>cee9e<I>e<I>ce9) |
diff --git a/Command/ActivateUserCommand.php b/Command/ActivateUserCommand.php
index <HASH>..<HASH> 100644
--- a/Command/ActivateUserCommand.php
+++ b/Command/ActivateUserCommand.php
@@ -72,7 +72,7 @@ EOT
}
$this->eventDispatcher->dispatch(AdminSecurityEvents::ACTIVATION, new ActivationEvent($user))... | Fixed activate/deactive user command success messages |
diff --git a/mode/rust/rust.js b/mode/rust/rust.js
index <HASH>..<HASH> 100644
--- a/mode/rust/rust.js
+++ b/mode/rust/rust.js
@@ -68,4 +68,5 @@ CodeMirror.defineSimpleMode("rust",{
CodeMirror.defineMIME("text/x-rustsrc", "rust");
+CodeMirror.defineMIME("text/rust", "rust");
}); | [rust mode] Add proper MIME type
leave the old one for now |
diff --git a/rbac/AuthorizerBehavior.php b/rbac/AuthorizerBehavior.php
index <HASH>..<HASH> 100644
--- a/rbac/AuthorizerBehavior.php
+++ b/rbac/AuthorizerBehavior.php
@@ -73,7 +73,7 @@ class AuthorizerBehavior extends Behavior
$schema = $owner->getDb()->getSchema();
$t = $schema->quoteSimpleTableNam... | fix fetching pk in AuthorizerBehavior |
diff --git a/lib/para/components_configuration.rb b/lib/para/components_configuration.rb
index <HASH>..<HASH> 100644
--- a/lib/para/components_configuration.rb
+++ b/lib/para/components_configuration.rb
@@ -51,18 +51,18 @@ module Para
end
def components_installed?
- non_existant_table = %w(components c... | invert Components_configuration#components_installed? logic to make it work |
diff --git a/gala/coordinates/gd1.py b/gala/coordinates/gd1.py
index <HASH>..<HASH> 100644
--- a/gala/coordinates/gd1.py
+++ b/gala/coordinates/gd1.py
@@ -60,6 +60,11 @@ class GD1Koposov10(coord.BaseCoordinateFrame):
coord.SphericalRepresentation)):
self._data.l... | skip whatsnew doctests and link to scf heading |
diff --git a/satpy/readers/abi_l1b.py b/satpy/readers/abi_l1b.py
index <HASH>..<HASH> 100644
--- a/satpy/readers/abi_l1b.py
+++ b/satpy/readers/abi_l1b.py
@@ -86,6 +86,9 @@ class NC_ABI_L1B(BaseFileHandler):
# handle coordinates (and recursive fun)
new_coords = {}
+ # 'time' dimension causes ... | Remove time coordinate for ABI data
It causes issues when making composites |
diff --git a/addon/comment/comment.js b/addon/comment/comment.js
index <HASH>..<HASH> 100644
--- a/addon/comment/comment.js
+++ b/addon/comment/comment.js
@@ -44,9 +44,17 @@
}
});
+ // Rough heuristic to try and detect lines that are part of multi-line string
+ function probablyInsideString(cm, pos, line) {... | [comment addon] Don't toggle comments inside multi-line strings
Issue #<I> |
diff --git a/trunk/mlcp/src/main/java/com/marklogic/contentpump/AggregateXMLReader.java b/trunk/mlcp/src/main/java/com/marklogic/contentpump/AggregateXMLReader.java
index <HASH>..<HASH> 100644
--- a/trunk/mlcp/src/main/java/com/marklogic/contentpump/AggregateXMLReader.java
+++ b/trunk/mlcp/src/main/java/com/marklogic/c... | Bug:<I> add known namespace declarations into root element no matter root has namespace or not |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100755
--- a/index.js
+++ b/index.js
@@ -17,7 +17,7 @@ module.exports = function (FAT_REMOTE, SKIM_REMOTE, port, pouchPort, urlBase, lo
var startingTimeout = 1000;
logger.silly('\nWelcome!');
logger.info('To start using local-npm, just run: ');
- logger.co... | suggest they point it to urlbase |
diff --git a/Controller/ConnectController.php b/Controller/ConnectController.php
index <HASH>..<HASH> 100644
--- a/Controller/ConnectController.php
+++ b/Controller/ConnectController.php
@@ -342,6 +342,10 @@ final class ConnectController extends AbstractController
$event = new FilterUserResponseEvent($currentU... | Customizing the CONNECT_COMPLETED response
Accepting the response from the event listener associated with HWIOAuthEvents::CONNECT_COMPLETED whenever it's set instead of always using the @HWIOAuth/Connect/connect_success.html.twig template rendering |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ setup(
platforms='any',
install_requires=[
'Flask>=0.10.1',
- 'pyldap'
+ 'python-ldap'
],
classifiers=[
'Environment :: Web Environment', | Replace pyldap with python-ldap in setup.py
pyldap is deprecated in favor of python-ldap |
diff --git a/packages/discord.js/src/structures/InteractionCollector.js b/packages/discord.js/src/structures/InteractionCollector.js
index <HASH>..<HASH> 100644
--- a/packages/discord.js/src/structures/InteractionCollector.js
+++ b/packages/discord.js/src/structures/InteractionCollector.js
@@ -45,16 +45,14 @@ class Int... | refactor(InteractionCollector): simplify constructor logic (#<I>)
* refactor(InteractionCollector): simplify constructor logic
* fix: oversight |
diff --git a/libraries/joomla/access/access.php b/libraries/joomla/access/access.php
index <HASH>..<HASH> 100644
--- a/libraries/joomla/access/access.php
+++ b/libraries/joomla/access/access.php
@@ -464,7 +464,7 @@ class JAccess
JLog::add(__METHOD__ . ' is deprecated. Use JAccess::getActionsFromFile or JAcces::getAc... | Fix a wrong xpath expression in JAccess. |
diff --git a/lib/jboss-cloud/rpm-utils.rb b/lib/jboss-cloud/rpm-utils.rb
index <HASH>..<HASH> 100644
--- a/lib/jboss-cloud/rpm-utils.rb
+++ b/lib/jboss-cloud/rpm-utils.rb
@@ -99,6 +99,8 @@ module JBossCloud
compare_file_and_upload( sftp, srpm_file, "#{srpms_package_dir}/#{File.basename( srpm_file )}" )
... | refreshing SRPMs repo directory |
diff --git a/lib/cancan/controller_resource.rb b/lib/cancan/controller_resource.rb
index <HASH>..<HASH> 100644
--- a/lib/cancan/controller_resource.rb
+++ b/lib/cancan/controller_resource.rb
@@ -83,6 +83,10 @@ module CanCan
def build_resource
resource = resource_base.new(resource_params || {})
+ assi... | Fix pull request <I>. For some reason github didn't allow a clean merge althought there weren't any conflicts. Fix it so that it's easier to just merge via the UI. |
diff --git a/pytuya/__init__.py b/pytuya/__init__.py
index <HASH>..<HASH> 100644
--- a/pytuya/__init__.py
+++ b/pytuya/__init__.py
@@ -125,7 +125,7 @@ payload_dict = {
}
class XenonDevice(object):
- def __init__(self, dev_id, address, local_key=None, dev_type=None):
+ def __init__(self, dev_id, address, local... | Add configurable timeout so connection won't block if something gets stuck |
diff --git a/shared/reporting-core/src/main/java/com/base2/kagura/core/report/connectors/FreemarkerSQLDataReportConnector.java b/shared/reporting-core/src/main/java/com/base2/kagura/core/report/connectors/FreemarkerSQLDataReportConnector.java
index <HASH>..<HASH> 100644
--- a/shared/reporting-core/src/main/java/com/bas... | Switched from batchExecute to normal execute. |
diff --git a/lib/spatial_features/importers/shapefile.rb b/lib/spatial_features/importers/shapefile.rb
index <HASH>..<HASH> 100644
--- a/lib/spatial_features/importers/shapefile.rb
+++ b/lib/spatial_features/importers/shapefile.rb
@@ -4,6 +4,11 @@ require 'digest/md5'
module SpatialFeatures
module Importers
cl... | Allow shapefile import to specify projection
If a shapefile doesn’t come with a projection file, it is now possible to specify it manually instead. |
diff --git a/src/languages/Estonian.php b/src/languages/Estonian.php
index <HASH>..<HASH> 100644
--- a/src/languages/Estonian.php
+++ b/src/languages/Estonian.php
@@ -4,7 +4,7 @@ namespace js\tools\numbers2words\languages;
use js\tools\numbers2words\exceptions\InvalidArgumentException;
use js\tools\numbers2words\Spel... | This should be final, like all other language classes. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -82,6 +82,8 @@ install_requires = [
'mistune>=0.7.2',
'six>=1.10.0',
'uritemplate.py>=0.2.0,<2.0',
+ 'urllib3<1.25,>=1.21.1', # from "invenio-search"
+ 'idna>=2.5,<2.8', # from "invenio-search"
]
pac... | setup: fix package conflicts with invenio-search |
diff --git a/app/controllers/deep_unrest/application_controller.rb b/app/controllers/deep_unrest/application_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/deep_unrest/application_controller.rb
+++ b/app/controllers/deep_unrest/application_controller.rb
@@ -9,6 +9,7 @@ module DeepUnrest
# rails ca... | [bugfix] only try to recurse through nested params if param is iterable |
diff --git a/lib/commands/run.js b/lib/commands/run.js
index <HASH>..<HASH> 100644
--- a/lib/commands/run.js
+++ b/lib/commands/run.js
@@ -159,7 +159,9 @@ function run(scriptPath, options) {
ee.once('done', function(report) {
- cli.spinner('', true);
+ if (tty.isatty(process.stdout)) {
+ ... | Fix for when stdout is not a tty |
diff --git a/src/MemoryState.js b/src/MemoryState.js
index <HASH>..<HASH> 100644
--- a/src/MemoryState.js
+++ b/src/MemoryState.js
@@ -35,13 +35,11 @@ class LockOperations {
(retry, n) => {
if (this.locks.has(key)) {
let err = new ChatServiceError('timeout')
- return retry(err)
+ ... | refactor: retry cleanup |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -44,10 +44,10 @@ function configureAxe (defaultOptions = {}) {
}
/**
- * Custom jest expect matcher, that can check aXe results for violations.
+ * Custom Jest expect matcher, that can check aXe results for violations.... | Nit: fix capitalization in comment blocks |
diff --git a/currencies/__init__.py b/currencies/__init__.py
index <HASH>..<HASH> 100644
--- a/currencies/__init__.py
+++ b/currencies/__init__.py
@@ -1 +1 @@
-VERSION = '0.1'
+VERSION = '0.2.1' | Forgot to bumb the version number... |
diff --git a/woven/utils.py b/woven/utils.py
index <HASH>..<HASH> 100644
--- a/woven/utils.py
+++ b/woven/utils.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from __future__ import with_statement
-import os, sys, tempfile
+import os, shutil, sys, tempfile
from functools import wraps
from pkg_resources import parse_ver... | added in a local /tmp dir cleanup function |
diff --git a/main.js b/main.js
index <HASH>..<HASH> 100644
--- a/main.js
+++ b/main.js
@@ -82,7 +82,11 @@ manager.prototype.connect = function(options) {
var result = q.defer();
var self = this;
if (!this.cb) {
- this.cb = new cb.Connection(options || {}, function(err) {
+ var builder = cb.Connection;
+ ... | implement a mock option on connection to pass tests |
diff --git a/app/models/blog_sweeper.rb b/app/models/blog_sweeper.rb
index <HASH>..<HASH> 100644
--- a/app/models/blog_sweeper.rb
+++ b/app/models/blog_sweeper.rb
@@ -33,7 +33,7 @@ class BlogSweeper < ActionController::Caching::Sweeper
end
def after_save(record)
- expire_for(record)
+ expire_for(record) u... | Don't sweep the cache if we're saving a draft.
Without this change, having the article editor open to write a new article
will cause the cache to be continuously sweeped without reason. |
diff --git a/blueprints/route/index.js b/blueprints/route/index.js
index <HASH>..<HASH> 100644
--- a/blueprints/route/index.js
+++ b/blueprints/route/index.js
@@ -19,8 +19,7 @@ function addRouteToRouter(name, options) {
var type = options.type || 'route';
var routerPath = path.join(process.cwd(), 'app', 'ro... | Fix not detecting duplicates in route generation
Also improved the regex a bit in general.
Fixes #4 |
diff --git a/devices/insta.js b/devices/insta.js
index <HASH>..<HASH> 100644
--- a/devices/insta.js
+++ b/devices/insta.js
@@ -21,7 +21,7 @@ module.exports = [
ota: ota.zigbeeOTA,
},
{
- zigbeeModel: ['Generic UP Device'],
+ zigbeeModel: ['NEXENTRO Blinds Actuator', 'Generic UP Device']... | Add NEXENTRO Blinds Actuator to <I> (#<I>)
add new Zigbee model for Insta <I> |
diff --git a/js/coss.js b/js/coss.js
index <HASH>..<HASH> 100644
--- a/js/coss.js
+++ b/js/coss.js
@@ -57,6 +57,9 @@ module.exports = class coss extends Exchange {
'get': [
'coins/getinfo/all',
'order/symbols',
+ 'getmarketsum... | coss public endpoints moved to `public` |
diff --git a/org/postgresql/test/jdbc2/UpdateableResultTest.java b/org/postgresql/test/jdbc2/UpdateableResultTest.java
index <HASH>..<HASH> 100644
--- a/org/postgresql/test/jdbc2/UpdateableResultTest.java
+++ b/org/postgresql/test/jdbc2/UpdateableResultTest.java
@@ -256,21 +256,21 @@ public class UpdateableResultTest e... | Ugggh, compiling is not the same as working. Junit's assertEquals
converts things to strings which doesn't work for arrays. Use
Arrays.equals instead. |
diff --git a/go/chat/flip/replay.go b/go/chat/flip/replay.go
index <HASH>..<HASH> 100644
--- a/go/chat/flip/replay.go
+++ b/go/chat/flip/replay.go
@@ -89,6 +89,14 @@ func extractUserDevices(v []UserDeviceCommitment) []UserDevice {
}
func Replay(ctx context.Context, rh ReplayHelper, gh GameHistory) (*GameSummary, er... | debug the replay (#<I>) |
diff --git a/src/Adr/src/Input.php b/src/Adr/src/Input.php
index <HASH>..<HASH> 100644
--- a/src/Adr/src/Input.php
+++ b/src/Adr/src/Input.php
@@ -10,7 +10,7 @@ use Venta\Contracts\Adr\Input as InputContract;
*
* @package Venta\Adr
*/
-class Input implements InputContract
+final class Input implements InputContra... | Adr Input class marked final. |
diff --git a/linux_proc_extras/check.py b/linux_proc_extras/check.py
index <HASH>..<HASH> 100644
--- a/linux_proc_extras/check.py
+++ b/linux_proc_extras/check.py
@@ -69,9 +69,7 @@ class MoreUnixCheck(AgentCheck):
ctxt_count = float(line.split(' ')[1])
self.monotonic_count('sys... | removes info logging (other diffs are purposeful) |
diff --git a/pyxid/internal.py b/pyxid/internal.py
index <HASH>..<HASH> 100644
--- a/pyxid/internal.py
+++ b/pyxid/internal.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
from struct import unpack
-import time
+import sys, time
from .constants import NO_KEY_DETECTED, FOUND_KEY_DOWN, FOUND_KEY_UP, \
KEY_RELEASE_BIT... | Making the set_pulse_duration function work more reliably. |
diff --git a/i3pystatus/cpu_usage.py b/i3pystatus/cpu_usage.py
index <HASH>..<HASH> 100644
--- a/i3pystatus/cpu_usage.py
+++ b/i3pystatus/cpu_usage.py
@@ -85,7 +85,7 @@ class CpuUsage(IntervalModule):
continue
core = core.replace('usage_', '')
- string = self.formatter.format(... | Python <I> compatibility fix (format_string is now positional only) |
diff --git a/lib/ronin/sessions/esmtp.rb b/lib/ronin/sessions/esmtp.rb
index <HASH>..<HASH> 100644
--- a/lib/ronin/sessions/esmtp.rb
+++ b/lib/ronin/sessions/esmtp.rb
@@ -41,6 +41,12 @@ module Ronin
options[:user] ||= @esmtp_user
options[:password] ||= @esmtp_password
+ if @port
+ pr... | Added info output to Sessions::ESMTP. |
diff --git a/agent/tcs/client/client.go b/agent/tcs/client/client.go
index <HASH>..<HASH> 100644
--- a/agent/tcs/client/client.go
+++ b/agent/tcs/client/client.go
@@ -15,7 +15,7 @@ package tcsclient
import (
"bytes"
- "errors"
+ "fmt"
"net/http"
"time"
@@ -69,15 +69,17 @@ func New(url string, region string, ... | Don't consume messages in tcs if statsengine is empty |
diff --git a/src/tweenjs/MotionGuidePlugin.js b/src/tweenjs/MotionGuidePlugin.js
index <HASH>..<HASH> 100644
--- a/src/tweenjs/MotionGuidePlugin.js
+++ b/src/tweenjs/MotionGuidePlugin.js
@@ -286,7 +286,7 @@ this.createjs = this.createjs||{};
* @static
*/
MotionGuidePlugin.calc = function(data, ratio, target) {
... | Removed unstubbed function call, replaced with throw. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@ setup(
license = 'MIT',
packages = find_packages(exclude=['test-*']),
install_requires = ['requests>=2.7.0'],
- classifiers = (
+ classifiers = [
'Development Status ::... | classifiers needs to be a list, not a tuple |
diff --git a/src/com/google/javascript/jscomp/Result.java b/src/com/google/javascript/jscomp/Result.java
index <HASH>..<HASH> 100644
--- a/src/com/google/javascript/jscomp/Result.java
+++ b/src/com/google/javascript/jscomp/Result.java
@@ -18,6 +18,7 @@ package com.google.javascript.jscomp;
import com.google.common.a... | Add a static method for stage1 compilation.
This removes an annoying ErrorProne warning about unnecessary @VisibleForTesting.
-------------
Created by MOE: <URL> |
diff --git a/lib/sonos/topology_node.rb b/lib/sonos/topology_node.rb
index <HASH>..<HASH> 100644
--- a/lib/sonos/topology_node.rb
+++ b/lib/sonos/topology_node.rb
@@ -15,7 +15,7 @@ module Sonos
end
def device
- @device || Device::Base.detect(ip)
+ @device ||= Device::Base.detect(ip)
end
en... | Reuse devices created from topology nodes |
diff --git a/src/Google/Service/Licensing/LicenseAssignmentList.php b/src/Google/Service/Licensing/LicenseAssignmentList.php
index <HASH>..<HASH> 100644
--- a/src/Google/Service/Licensing/LicenseAssignmentList.php
+++ b/src/Google/Service/Licensing/LicenseAssignmentList.php
@@ -32,10 +32,16 @@ class Google_Service_Lice... | Autogenerated update for licensing version v1 (<I>-<I>-<I>) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.