diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/lib/table.rb b/lib/table.rb
index <HASH>..<HASH> 100644
--- a/lib/table.rb
+++ b/lib/table.rb
@@ -224,7 +224,7 @@ module Enumerable
# # +---------+-----------+--------+
#
def to_text_table(options = {})
- table = Text::Table.new :rows => self.to_a
+ table = Text::Table.new :rows => s... | fixed Enumerable#to_text_table modifying self when :first_row_is_head or :last_row_is_foot is set to true |
diff --git a/lib/kafka/version.rb b/lib/kafka/version.rb
index <HASH>..<HASH> 100644
--- a/lib/kafka/version.rb
+++ b/lib/kafka/version.rb
@@ -1,3 +1,3 @@
module Kafka
- VERSION = "0.1.4"
+ VERSION = "0.1.5"
end | Bump to version <I> |
diff --git a/pantheon/scripts/tokens.py b/pantheon/scripts/tokens.py
index <HASH>..<HASH> 100644
--- a/pantheon/scripts/tokens.py
+++ b/pantheon/scripts/tokens.py
@@ -52,7 +52,7 @@ def tokenize_corpora():
for text_fname in text_files:
json_fname = text_fname.split('.')[0] + '.json'
- if os.path.i... | Fix mistake that results in all srcs being re-tokenized every time |
diff --git a/staff/__init__.py b/staff/__init__.py
index <HASH>..<HASH> 100644
--- a/staff/__init__.py
+++ b/staff/__init__.py
@@ -1,7 +1,7 @@
__version_info__ = {
'major': 0,
'minor': 3,
- 'micro': 2,
+ 'micro': 3,
'releaselevel': 'final',
'serial': 0
} | bumped the version to <I> |
diff --git a/src/Console/Shell.php b/src/Console/Shell.php
index <HASH>..<HASH> 100644
--- a/src/Console/Shell.php
+++ b/src/Console/Shell.php
@@ -184,7 +184,6 @@ class Shell
['tasks'],
['associative' => ['tasks']]
);
- $this->_io->setLoggers(true);
if (isset($this->... | Remove redundant setLoggers() call.
This call is no longer necessary as the logging levels are set in
ShellDispatcher.
Refs #<I> |
diff --git a/c7n/resources/vpc.py b/c7n/resources/vpc.py
index <HASH>..<HASH> 100644
--- a/c7n/resources/vpc.py
+++ b/c7n/resources/vpc.py
@@ -654,10 +654,10 @@ class SGPermission(Filter):
OnlyPorts: [22, 443, 80]
- type: egress
- IpRanges:
- - value_type: cidr
- - op: in
- ... | docs - fix documentation about matching Cidr on security-groups (#<I>) |
diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -1,6 +1,7 @@
const gulp = require('gulp');
const glob = require('glob');
const ts = require('gulp-typescript');
+const execa = require('execa');
const utils = require('./Tools/gulp/utils');
const tasks = {
@... | Tools: Improve tsc watch |
diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionGraph.java b/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionGraph.java
index <HASH>..<HASH> 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionGraph.java
+++ b/f... | Remove error message in execution graph for concurrent state changes that are fully acceptable. |
diff --git a/lib/node-libnmap.js b/lib/node-libnmap.js
index <HASH>..<HASH> 100644
--- a/lib/node-libnmap.js
+++ b/lib/node-libnmap.js
@@ -180,7 +180,8 @@ var version = 'v0.0.7'
}
if (opts.ports) {
- if (!/(\d+){1,6}|((\d+){1,6}\-(\d+){1,6})/.test(opts.ports))
+ /* http://stackoverflow.com... | setup: verify()
methods:
setup:
verify(): Updated regex & comment to verify port ranges |
diff --git a/packages/ember-routing/lib/vendor/route-recognizer.js b/packages/ember-routing/lib/vendor/route-recognizer.js
index <HASH>..<HASH> 100644
--- a/packages/ember-routing/lib/vendor/route-recognizer.js
+++ b/packages/ember-routing/lib/vendor/route-recognizer.js
@@ -186,9 +186,9 @@ define("route-recognizer",
... | Update route-recognizer with wildcard fixes |
diff --git a/src/main/java/com/googlecode/lanterna/graphics/ThemedTextGraphics.java b/src/main/java/com/googlecode/lanterna/graphics/ThemedTextGraphics.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/googlecode/lanterna/graphics/ThemedTextGraphics.java
+++ b/src/main/java/com/googlecode/lanterna/graphics/Theme... | Return yourself after call applyThemeStyle |
diff --git a/packages/firestore/rollup.config.js b/packages/firestore/rollup.config.js
index <HASH>..<HASH> 100644
--- a/packages/firestore/rollup.config.js
+++ b/packages/firestore/rollup.config.js
@@ -194,7 +194,11 @@ const browserBuilds = [
// MARK: Node builds
const nodeBuildPlugins = [
- ...es5BuildPlugins,
+... | Remove mangling from Node build (#<I>) |
diff --git a/lib/base.js b/lib/base.js
index <HASH>..<HASH> 100644
--- a/lib/base.js
+++ b/lib/base.js
@@ -51,8 +51,8 @@ class TeamspeakQuery extends EventEmitter {
*/
disconnect() {
return new Promise((resolve, reject) => {
- while(this.queue.length)
- this.queue.pop();
+ const error = new... | Add TeamspeakQuery.rejectPending/2 method
Calling this function will reject all pending commands with the given reason. This might be useful for TeamspeakQuery.Custom |
diff --git a/uri_test.go b/uri_test.go
index <HASH>..<HASH> 100644
--- a/uri_test.go
+++ b/uri_test.go
@@ -26,15 +26,6 @@ var uriTests = []testURI{
canon: "amqp://user:pass@host:10000/vhost",
},
- // this fails due to net/url not parsing pct-encoding in host
- // testURI{url: "amqp://user%61:%61pass@ho%61st:1... | Remove commented URI test
We trust the community to feedback if % in URIs are an issue |
diff --git a/detectem/core.py b/detectem/core.py
index <HASH>..<HASH> 100644
--- a/detectem/core.py
+++ b/detectem/core.py
@@ -249,20 +249,24 @@ class Detector():
for plugin in generic_plugins:
pm = self.apply_plugin_matchers(plugin, entry)
- if pm:
- pl... | Add support for hints from generic plugins |
diff --git a/src/main/java/org/tehuti/metrics/stats/Percentiles.java b/src/main/java/org/tehuti/metrics/stats/Percentiles.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/tehuti/metrics/stats/Percentiles.java
+++ b/src/main/java/org/tehuti/metrics/stats/Percentiles.java
@@ -108,6 +108,13 @@ public class Percent... | Fixed Percentiles so samples get cleared properly. |
diff --git a/modules/sheet/editTags.js b/modules/sheet/editTags.js
index <HASH>..<HASH> 100644
--- a/modules/sheet/editTags.js
+++ b/modules/sheet/editTags.js
@@ -5,6 +5,7 @@ const filter = require('lodash/filter')
const parallel = require('run-parallel')
const addSuggest = require('suggest-box')
const TagHelper = r... | use normalizeChannel on new tag names |
diff --git a/js/trackView.js b/js/trackView.js
index <HASH>..<HASH> 100755
--- a/js/trackView.js
+++ b/js/trackView.js
@@ -116,7 +116,8 @@ var igv = (function (igv) {
target;
self.igvTrackDragScrim = $('<div class="igv-track-drag-scrim">')[0];
- $(self.trackDiv).append(self.ig... | Issue <I>. Drag & drop. Track drag scrim now child of viewport. |
diff --git a/django_user_agents/__init__.py b/django_user_agents/__init__.py
index <HASH>..<HASH> 100644
--- a/django_user_agents/__init__.py
+++ b/django_user_agents/__init__.py
@@ -1 +1 @@
-VERSION = (0, 1)
\ No newline at end of file
+VERSION = (0, 1, 1)
\ No newline at end of file
diff --git a/setup.py b/setup.py
i... | Bumped version number to <I>. |
diff --git a/eventsourcing/postgres.py b/eventsourcing/postgres.py
index <HASH>..<HASH> 100644
--- a/eventsourcing/postgres.py
+++ b/eventsourcing/postgres.py
@@ -426,7 +426,7 @@ class PostgresApplicationRecorder(
"originator_version integer NOT NULL, "
"topic text, "
"state bytea... | Changed notification_id from SERIAL to BIGSERIAL. |
diff --git a/src/input.js b/src/input.js
index <HASH>..<HASH> 100644
--- a/src/input.js
+++ b/src/input.js
@@ -17,7 +17,9 @@ var Input = function(app, container) {
isMiddleDown: false,
isRightDown: false,
x: null,
- y: null
+ y: null,
+ dx: 0,
+ dy: 0
};
this._addEvents(app);
@@ -63,6... | add new delta x/y to mouse |
diff --git a/config/karma/config.js b/config/karma/config.js
index <HASH>..<HASH> 100644
--- a/config/karma/config.js
+++ b/config/karma/config.js
@@ -6,8 +6,6 @@ module.exports = function (config) {
basePath: '../../',
- concurrency: 2,
-
files: [
'test/unit/**/*.js'
... | build: set concurrency only for local tests |
diff --git a/aikif/dataTools/cls_dataset.py b/aikif/dataTools/cls_dataset.py
index <HASH>..<HASH> 100644
--- a/aikif/dataTools/cls_dataset.py
+++ b/aikif/dataTools/cls_dataset.py
@@ -1,5 +1,6 @@
-# cls_dataset.py written by Duncan Murray 25/6/2014
-
+#!/usr/bin/python3
+# -*- coding: utf-8 -*-
+# cls_dataset.py
clas... | correct header, login/out keeps schema |
diff --git a/lib/lumber/level_util.rb b/lib/lumber/level_util.rb
index <HASH>..<HASH> 100644
--- a/lib/lumber/level_util.rb
+++ b/lib/lumber/level_util.rb
@@ -3,7 +3,7 @@ module Lumber
# So we have a named thread and can tell which we are in Thread.list
class MonitorThread < Thread
- attr_accessor ... | self refers to the module here, not the thread. And renamed :exit to :should_exit to avoid conflicts with the Kernel#exit method. |
diff --git a/ortstore/ortstore.go b/ortstore/ortstore.go
index <HASH>..<HASH> 100644
--- a/ortstore/ortstore.go
+++ b/ortstore/ortstore.go
@@ -86,7 +86,7 @@ func (vsc *OrtStore) Set(key []byte, value []byte) {
if bytes.Equal(key, rediscache.BYTES_SHUTDOWN) && bytes.Equal(value, rediscache.BYTES_NOW) {
vsc.vs.Disab... | Changed GatherStats to just Stats |
diff --git a/test/index.js b/test/index.js
index <HASH>..<HASH> 100644
--- a/test/index.js
+++ b/test/index.js
@@ -4,9 +4,7 @@ var assert = require('assert')
describe('builder', function () {
it('builds no directives', function () {
- var result = builder({
- directives: {}
- })
+ var result = build... | Minor: shorten a test declaration to one line |
diff --git a/pyqode/python/modes/autoindent.py b/pyqode/python/modes/autoindent.py
index <HASH>..<HASH> 100644
--- a/pyqode/python/modes/autoindent.py
+++ b/pyqode/python/modes/autoindent.py
@@ -121,6 +121,10 @@ class PyAutoIndentMode(AutoIndentMode):
return len(open_p), len(closed_p), open_p, closed_p
... | Fix infinite recursion if no symbol matcher has been installed |
diff --git a/lib/catarse_pagarme/configuration.rb b/lib/catarse_pagarme/configuration.rb
index <HASH>..<HASH> 100644
--- a/lib/catarse_pagarme/configuration.rb
+++ b/lib/catarse_pagarme/configuration.rb
@@ -1,9 +1,11 @@
module CatarsePagarme
class Configuration
- attr_accessor :api_key
+ attr_accessor :api_ke... | added slip_tax and credit_card_tax into configuration for get the fee |
diff --git a/beyond/frames/stations.py b/beyond/frames/stations.py
index <HASH>..<HASH> 100644
--- a/beyond/frames/stations.py
+++ b/beyond/frames/stations.py
@@ -34,7 +34,7 @@ class TopocentricFrame(Frame):
from ..orbits.listeners import stations_listeners, Listener
- listeners = []
+ listen... | User listeners merged to stations' when computing visibility |
diff --git a/lib/rooted_tree/version.rb b/lib/rooted_tree/version.rb
index <HASH>..<HASH> 100644
--- a/lib/rooted_tree/version.rb
+++ b/lib/rooted_tree/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module RootedTree
- VERSION = '0.2.3'
+ VERSION = '0.3.0'
end | Bumped minor version number to signify breaking API changes |
diff --git a/src/main/java/com/jayway/maven/plugins/android/phase09package/ApkMojo.java b/src/main/java/com/jayway/maven/plugins/android/phase09package/ApkMojo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/jayway/maven/plugins/android/phase09package/ApkMojo.java
+++ b/src/main/java/com/jayway/maven/plugins/a... | Fix issue-<I>. Added possibility to specify a custom application package name on commandline (-Dandroid.renameManifestPackage=my.new.package) or in the plugin's configuration (<renameManifestPackage>my.new.package</renameManifestPackage>) |
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.70.1"
+ VERSION = "2.70.2"
end | Bump up version
[skip ci] |
diff --git a/lib/models/providers/push/zeropush.js b/lib/models/providers/push/zeropush.js
index <HASH>..<HASH> 100644
--- a/lib/models/providers/push/zeropush.js
+++ b/lib/models/providers/push/zeropush.js
@@ -20,11 +20,11 @@ function ZeroPush(keys){
this.send = function(data, callback) {
var context = this;... | Refactor.
for #<I> |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='soundscrape',
- version='0.15.1',
+ version='0.15.2',
packages=['soundscrape'],
install_require... | <I> - security downgrade but SC https is maybe broken? or my system is fucked tx nsa |
diff --git a/ombutil/appdata.go b/ombutil/appdata.go
index <HASH>..<HASH> 100644
--- a/ombutil/appdata.go
+++ b/ombutil/appdata.go
@@ -62,11 +62,8 @@ func appDataDir(goos, appName string, roaming bool) string {
}
case "darwin":
- if homeDir != "" {
- return filepath.Join("Library",
- "Application Support",... | Added leading slash.
Commit without comment... |
diff --git a/plans/contrib.py b/plans/contrib.py
index <HASH>..<HASH> 100644
--- a/plans/contrib.py
+++ b/plans/contrib.py
@@ -38,7 +38,7 @@ def send_template_email(recipients, title_template, body_template, context, lang
mail_title_template = loader.get_template(title_template)
mail_body_template = loader.... | be less restrictive on mail title templates newlines |
diff --git a/app/controllers/thredded/topics_controller.rb b/app/controllers/thredded/topics_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/thredded/topics_controller.rb
+++ b/app/controllers/thredded/topics_controller.rb
@@ -203,12 +203,6 @@ module Thredded
@messageboard = topic.messageboard
... | remove unused method (#<I>) |
diff --git a/test/integration/addons_test.go b/test/integration/addons_test.go
index <HASH>..<HASH> 100644
--- a/test/integration/addons_test.go
+++ b/test/integration/addons_test.go
@@ -56,7 +56,7 @@ func TestAddons(t *testing.T) {
return nil
}
- if err := commonutil.RetryAfter(10, checkAddon, 5*time.Second); e... | Increase the timeout on the addon manager pod. |
diff --git a/rules/predicates.py b/rules/predicates.py
index <HASH>..<HASH> 100644
--- a/rules/predicates.py
+++ b/rules/predicates.py
@@ -298,8 +298,8 @@ def is_group_member(*groups):
def fn(user):
if not hasattr(user, 'groups'):
return False # swapped user model, doesn't support groups
- ... | Fixed undesired caching in `is_group_member` factory
Fixes #<I> |
diff --git a/ezp/content/services/trash.php b/ezp/content/services/trash.php
index <HASH>..<HASH> 100644
--- a/ezp/content/services/trash.php
+++ b/ezp/content/services/trash.php
@@ -11,6 +11,13 @@
/**
* Trash service, used for content trash handling
+ *
+ * Notes:
+ * Moving to trash is currently the same as movi... | Added notes to Content/Services/Trash |
diff --git a/lib/simpletest/testnavigationlib.php b/lib/simpletest/testnavigationlib.php
index <HASH>..<HASH> 100644
--- a/lib/simpletest/testnavigationlib.php
+++ b/lib/simpletest/testnavigationlib.php
@@ -46,6 +46,8 @@ class navigation_node_test extends UnitTestCase {
parent::setUp();
$this->activ... | navigation MDL-<I> Attempting to fix navigation simpletests |
diff --git a/test/mactag/tag/parser_test.rb b/test/mactag/tag/parser_test.rb
index <HASH>..<HASH> 100644
--- a/test/mactag/tag/parser_test.rb
+++ b/test/mactag/tag/parser_test.rb
@@ -22,16 +22,16 @@ class ParserTest < ActiveSupport::TestCase
setup do
File.stubs(:directory?).returns(true)
end
-
+
... | Actually, let there be a plugin in this test. |
diff --git a/src/Models/Concerns/HasMemberOf.php b/src/Models/Concerns/HasMemberOf.php
index <HASH>..<HASH> 100644
--- a/src/Models/Concerns/HasMemberOf.php
+++ b/src/Models/Concerns/HasMemberOf.php
@@ -148,7 +148,7 @@ trait HasMemberOf
*/
public function inGroup($group, $recursive = false)
{
- $... | Optimize inGroup method
Only request the common name from groups. |
diff --git a/src/super_archives/models.py b/src/super_archives/models.py
index <HASH>..<HASH> 100644
--- a/src/super_archives/models.py
+++ b/src/super_archives/models.py
@@ -326,10 +326,7 @@ class Message(models.Model):
@property
def author(self):
- from_address = self.from_address
- if from_... | adding a fullname property to messages |
diff --git a/txdbus/interface.py b/txdbus/interface.py
index <HASH>..<HASH> 100644
--- a/txdbus/interface.py
+++ b/txdbus/interface.py
@@ -38,10 +38,10 @@ class Method (object):
self.sigOut = returns
if arguments.count('h') > 1:
# More than one UNIX_FD argument requires Twisted >= 17.1.0.... | Simpler Twisted version check for multi FD arg support. |
diff --git a/plugins/debug/debugPanel.js b/plugins/debug/debugPanel.js
index <HASH>..<HASH> 100644
--- a/plugins/debug/debugPanel.js
+++ b/plugins/debug/debugPanel.js
@@ -590,13 +590,14 @@
}
// draw the panel
- renderer.setColor("#00000080");
+ renderer.setGlobalAlpha(0... | [#<I>][WebGL] multiply the new currentColor alpha with the previous globalAlpha value
also restored the previous debugPanel setColor usage, as a testcase, and
to align both the canvas and wegbl rendering. |
diff --git a/lib/rdo/connection.rb b/lib/rdo/connection.rb
index <HASH>..<HASH> 100644
--- a/lib/rdo/connection.rb
+++ b/lib/rdo/connection.rb
@@ -101,7 +101,7 @@ module RDO
rs.info[:execution_time] ||= Time.now - t
if logger.debug?
logger.debug(
- "(%.6f) %s%s" % [
+ ... | Fix logger format inconsistency |
diff --git a/src/main/core.js b/src/main/core.js
index <HASH>..<HASH> 100644
--- a/src/main/core.js
+++ b/src/main/core.js
@@ -259,7 +259,7 @@ function format(text, opts) {
module.exports = {
formatWithCursor(text, opts) {
opts = normalizeOptions(opts);
- return format(text, normalizeOptions(opts));
+ re... | refactor: remove redundant call to normalizeOptions (#<I>)
Removes redundant call to `normalizeOptions` (already done in preceding line)
<URL> |
diff --git a/tsfresh/feature_extraction/extraction.py b/tsfresh/feature_extraction/extraction.py
index <HASH>..<HASH> 100644
--- a/tsfresh/feature_extraction/extraction.py
+++ b/tsfresh/feature_extraction/extraction.py
@@ -104,7 +104,7 @@ def extract_features(timeseries_container, feature_extraction_settings=None,
... | Wait for the worker processes to exit (#<I>)
This fixes Issue #<I> |
diff --git a/absl/testing/absltest.py b/absl/testing/absltest.py
index <HASH>..<HASH> 100644
--- a/absl/testing/absltest.py
+++ b/absl/testing/absltest.py
@@ -434,15 +434,21 @@ class TestCase(unittest3_backport.TestCase):
if six.PY2:
def assertCountEqual(self, expected_seq, actual_seq, msg=None):
- """An... | Update assertCountEqual's document, to match the one on <URL> |
diff --git a/src/you_get/extractors/bilibili.py b/src/you_get/extractors/bilibili.py
index <HASH>..<HASH> 100644
--- a/src/you_get/extractors/bilibili.py
+++ b/src/you_get/extractors/bilibili.py
@@ -192,7 +192,12 @@ class Bilibili(VideoExtractor):
index_id = int(re.search(r'index_(\d+)', self.url).group(1)... | [bilibili] the production of too many useful things results in |
diff --git a/testem.js b/testem.js
index <HASH>..<HASH> 100755
--- a/testem.js
+++ b/testem.js
@@ -44,6 +44,7 @@ program.on('--help', function(){
console.log(' q quit')
console.log(' LEFT ARROW move to the next browser tab on the left')
console.log(' RIGHT ARROW ... | Added TAB to keyboard help. |
diff --git a/invocations/checks.py b/invocations/checks.py
index <HASH>..<HASH> 100644
--- a/invocations/checks.py
+++ b/invocations/checks.py
@@ -6,15 +6,21 @@ from __future__ import unicode_literals
from invoke import task
-@task(name='blacken', iterable=['folder'])
-def blacken(c, line_length=79, folder=None):
... | Add --check support to the invocations.blacken task |
diff --git a/salt/cloud/clouds/ec2.py b/salt/cloud/clouds/ec2.py
index <HASH>..<HASH> 100644
--- a/salt/cloud/clouds/ec2.py
+++ b/salt/cloud/clouds/ec2.py
@@ -2064,6 +2064,8 @@ def create(vm_=None, call=None):
)
)
vm_['key_filename'] = key_filename
+ # wait_for_instance requires private_ke... | Fixed private_key missing in vm_ for wait_for_instance |
diff --git a/src/Channels/PushChannel.php b/src/Channels/PushChannel.php
index <HASH>..<HASH> 100644
--- a/src/Channels/PushChannel.php
+++ b/src/Channels/PushChannel.php
@@ -70,11 +70,7 @@ abstract class PushChannel
$feedback = $this->push->send()
->getFeedback();
- if (function_exists('... | Code Refactoring
Extract broadcasting action to a method |
diff --git a/llvmlite/binding/analysis.py b/llvmlite/binding/analysis.py
index <HASH>..<HASH> 100644
--- a/llvmlite/binding/analysis.py
+++ b/llvmlite/binding/analysis.py
@@ -58,10 +58,11 @@ def view_dot_graph(graph, filename=None, view=False):
else:
# Attempts to show the graph in IPython notebook
... | Detect if we are in ipython |
diff --git a/lib/systemd/journal/version.rb b/lib/systemd/journal/version.rb
index <HASH>..<HASH> 100644
--- a/lib/systemd/journal/version.rb
+++ b/lib/systemd/journal/version.rb
@@ -1,6 +1,6 @@
module Systemd
class Journal
# The version of the systemd-journal gem.
- VERSION = '1.4.1'
+ VERSION = '1.4.2'... | Update VERSION to <I> |
diff --git a/src/Context/RawMultilingualContext.php b/src/Context/RawMultilingualContext.php
index <HASH>..<HASH> 100644
--- a/src/Context/RawMultilingualContext.php
+++ b/src/Context/RawMultilingualContext.php
@@ -66,8 +66,6 @@ class RawMultilingualContext extends RawMinkContext implements MultilingualConte
}... | Fixing code issues in RawContext. |
diff --git a/java/client/test/org/openqa/selenium/remote/StartingFirefoxRemotelyTest.java b/java/client/test/org/openqa/selenium/remote/StartingFirefoxRemotelyTest.java
index <HASH>..<HASH> 100644
--- a/java/client/test/org/openqa/selenium/remote/StartingFirefoxRemotelyTest.java
+++ b/java/client/test/org/openqa/seleni... | Adding a guard for remote specific test |
diff --git a/lib/Doctrine/Common/Collections/ArrayCollection.php b/lib/Doctrine/Common/Collections/ArrayCollection.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/Common/Collections/ArrayCollection.php
+++ b/lib/Doctrine/Common/Collections/ArrayCollection.php
@@ -347,7 +347,7 @@ class ArrayCollection implements Coll... | Replaced "new ArrayCollection" with "new static". This allows subclasses to create new instances of the subclass |
diff --git a/lib/netaddr.rb b/lib/netaddr.rb
index <HASH>..<HASH> 100644
--- a/lib/netaddr.rb
+++ b/lib/netaddr.rb
@@ -48,10 +48,10 @@ module NetAddr
## parse_net parses a string into an IPv4Net or IPv6Net
def parse_net(net)
- if (net.include?(".")) # ipv4
- return IPv4Net.parse(net)
+ if (net.include?(":"))... | Fix support for ipv4-embedded ipv6 networks |
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb
+++ b/activerecord/lib/ac... | Add missing AS require
`strip_heredoc` method is defined on active_support/core_ext/string |
diff --git a/cleverhans/picklable_model.py b/cleverhans/picklable_model.py
index <HASH>..<HASH> 100644
--- a/cleverhans/picklable_model.py
+++ b/cleverhans/picklable_model.py
@@ -1,5 +1,11 @@
-"""Models that support pickling
-
+"""Models that support pickling.
+
+NOTE: This module is much more free to change than many ... | disclaimers about fast-changing portions of codebase |
diff --git a/app/models/web_console/console_session.rb b/app/models/web_console/console_session.rb
index <HASH>..<HASH> 100644
--- a/app/models/web_console/console_session.rb
+++ b/app/models/web_console/console_session.rb
@@ -104,4 +104,7 @@ module WebConsole
synchronize { INMEMORY_STORAGE[id] = self }
... | Explicitly configue include_root_in_json for Rails 3 compatibility |
diff --git a/public/js/runner/processor.js b/public/js/runner/processor.js
index <HASH>..<HASH> 100644
--- a/public/js/runner/processor.js
+++ b/public/js/runner/processor.js
@@ -74,11 +74,6 @@ var processor = (function () {
source = doctypeObj.tail;
combinedSource.push(doctype);
- // this ensures that r... | Remove <base>
Note: this doesn't remove the null domain, this is now set as the runner: null.jsbin.com - but null.jsbin.com/runner *does* serve the correct file, and everything is else returned a <I> - so we're still protected.
Fixes #<I>
Fixes #<I>
Fixes #<I> |
diff --git a/wallace/command_line.py b/wallace/command_line.py
index <HASH>..<HASH> 100755
--- a/wallace/command_line.py
+++ b/wallace/command_line.py
@@ -79,7 +79,8 @@ def deploy(*args):
# Create the psiturk command script.
with open("psiturk_commands.txt", "w") as file:
- file.write("server on")
+ ... | Restart psiTurk server instead of turning it on |
diff --git a/greenmail-core/src/main/java/com/icegreen/greenmail/store/SimpleMessageAttributes.java b/greenmail-core/src/main/java/com/icegreen/greenmail/store/SimpleMessageAttributes.java
index <HASH>..<HASH> 100644
--- a/greenmail-core/src/main/java/com/icegreen/greenmail/store/SimpleMessageAttributes.java
+++ b/gree... | Use MimeUtility for unfolding. |
diff --git a/test/spec/ol/layer/vectorlayer.test.js b/test/spec/ol/layer/vectorlayer.test.js
index <HASH>..<HASH> 100644
--- a/test/spec/ol/layer/vectorlayer.test.js
+++ b/test/spec/ol/layer/vectorlayer.test.js
@@ -170,12 +170,13 @@ describe('ol.layer.Vector', function() {
});
- layer.dispose();
+ goog.d... | Fix use of dispose in ol.layer.Vector tests |
diff --git a/lib/traject/marc4j_reader.rb b/lib/traject/marc4j_reader.rb
index <HASH>..<HASH> 100644
--- a/lib/traject/marc4j_reader.rb
+++ b/lib/traject/marc4j_reader.rb
@@ -51,11 +51,13 @@ class Traject::Marc4JReader
@input_stream = input_stream
ensure_marc4j_loaded!
-
- if @settings['marc4j_reader... | Marc4JReader, original_marc4j, try not to monkey patch MARC::Record more than once |
diff --git a/src/HttpFactory.php b/src/HttpFactory.php
index <HASH>..<HASH> 100644
--- a/src/HttpFactory.php
+++ b/src/HttpFactory.php
@@ -55,7 +55,7 @@ class HttpFactory
* @since 1.0
* @throws \InvalidArgumentException
*/
- public static function getAvailableDriver($options, $default = null)
+ public stati... | Make options param optional, not required to inject into TransportInterface objects |
diff --git a/lib/Client.js b/lib/Client.js
index <HASH>..<HASH> 100644
--- a/lib/Client.js
+++ b/lib/Client.js
@@ -131,6 +131,8 @@ Client.prototype.mergeRemoteConfig = function(callback) {
return cb(err);
}
+ self.config.web.forgotPassword.enabled = directory.passwordPolicy.resetEmailStatus === '... | Updating Client config to merge in the password reset configuration options. |
diff --git a/tests/test_descriptions.py b/tests/test_descriptions.py
index <HASH>..<HASH> 100644
--- a/tests/test_descriptions.py
+++ b/tests/test_descriptions.py
@@ -35,6 +35,14 @@ type_defs = '''
"Chinese"
CH
}
+
+ """
+ A poorly documented object type.
+ """
+ type MyObject {
+ ... | Assert description is absent when not documented |
diff --git a/test/com/opera/core/systems/OperaDriverTest.java b/test/com/opera/core/systems/OperaDriverTest.java
index <HASH>..<HASH> 100644
--- a/test/com/opera/core/systems/OperaDriverTest.java
+++ b/test/com/opera/core/systems/OperaDriverTest.java
@@ -215,8 +215,10 @@ public class OperaDriverTest extends OperaDriver... | Apparently temporary folder on Mac is /var/folders |
diff --git a/src/rules/no-cycle.js b/src/rules/no-cycle.js
index <HASH>..<HASH> 100644
--- a/src/rules/no-cycle.js
+++ b/src/rules/no-cycle.js
@@ -22,7 +22,7 @@ module.exports = {
create: function (context) {
const myPath = context.getFilename()
- if (myPath === '<text>') return // can't cycle-check a non... | [Fix] `no-cycle`: `create` must *always* return an object, even if there’s no listeners |
diff --git a/src/test/java/org/jdbdt/DBTestCase.java b/src/test/java/org/jdbdt/DBTestCase.java
index <HASH>..<HASH> 100644
--- a/src/test/java/org/jdbdt/DBTestCase.java
+++ b/src/test/java/org/jdbdt/DBTestCase.java
@@ -84,7 +84,7 @@ public class DBTestCase {
protected static final User[] INITIAL_DATA = {
ne... | DBTestCase: small adjustment |
diff --git a/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb b/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb
+++ b/actionpack/lib/action_dispatch/middleware/session/abstract_st... | Support cookie jar options for all cookie stores |
diff --git a/src/Bridge/AuthCodeRepository.php b/src/Bridge/AuthCodeRepository.php
index <HASH>..<HASH> 100644
--- a/src/Bridge/AuthCodeRepository.php
+++ b/src/Bridge/AuthCodeRepository.php
@@ -32,7 +32,7 @@ class AuthCodeRepository implements AuthCodeRepositoryInterface
'expires_at' => $authCodeEntity->g... | Change to forceFill. Fixes #<I>. (#<I>) |
diff --git a/lib/chef/knife/backup_restore.rb b/lib/chef/knife/backup_restore.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/knife/backup_restore.rb
+++ b/lib/chef/knife/backup_restore.rb
@@ -133,7 +133,6 @@ module ServerBackup
def users
JSON.create_id = "no_thanks"
ui.info "=== Restoring users ==="
-... | Generate a new password on each round. |
diff --git a/paramiko/server.py b/paramiko/server.py
index <HASH>..<HASH> 100644
--- a/paramiko/server.py
+++ b/paramiko/server.py
@@ -579,6 +579,8 @@ class ServerInterface (object):
The default implementation always returns ``(None, None)``.
:returns: A tuple containing the banner and language code... | Really, really gotta get better about enforcing these |
diff --git a/src/IncomingEntry.php b/src/IncomingEntry.php
index <HASH>..<HASH> 100644
--- a/src/IncomingEntry.php
+++ b/src/IncomingEntry.php
@@ -243,6 +243,16 @@ class IncomingEntry
}
/**
+ * Determine if the incoming entry is a query.
+ *
+ * @return bool
+ */
+ public function isQuery... | improvement - Added isQuery() in IncomingEntry |
diff --git a/spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/zuul/RetryableZuulProxyApplicationTests.java b/spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/zuul/RetryableZuulProxyApplicationTests.java
index <HASH>..<HASH> 100644
--- a/spring-cloud-netflix-core/src/tes... | Adding <I> to list of retryable status codes |
diff --git a/src/express/index.spec.js b/src/express/index.spec.js
index <HASH>..<HASH> 100644
--- a/src/express/index.spec.js
+++ b/src/express/index.spec.js
@@ -4,4 +4,22 @@ describe('graffiti express', function() {
var express = require('./');
+ it('checks for required options');
+
+ it('creates the schema'... | test(express): add failing test cases for Express middleware |
diff --git a/pcapfile/structs.py b/pcapfile/structs.py
index <HASH>..<HASH> 100644
--- a/pcapfile/structs.py
+++ b/pcapfile/structs.py
@@ -54,7 +54,13 @@ class pcap_packet(ctypes.Structure):
return binascii.unhexlify(self.packet)
def __repr__(self):
- return self.raw()
+ if isinstance(self... | pcap_packets have improved __repr__
if the packet is a string (i.e. not decoded), the packet will
still be represented as a string; otherwise, it is up to the
decoded packet type to choose display types. |
diff --git a/lib/pansophy/synchronizer.rb b/lib/pansophy/synchronizer.rb
index <HASH>..<HASH> 100644
--- a/lib/pansophy/synchronizer.rb
+++ b/lib/pansophy/synchronizer.rb
@@ -18,7 +18,9 @@ module Pansophy
next if directory?(file)
file_path = @local_directory.join(destination_for(file))
file_p... | Retrocompatibility for Ruby <I> and <I> |
diff --git a/password/git.go b/password/git.go
index <HASH>..<HASH> 100644
--- a/password/git.go
+++ b/password/git.go
@@ -145,7 +145,7 @@ func (s *Store) gitCommit(msg string) error {
cmd.Stderr = os.Stderr
if err := cmd.Run(); err != nil {
- return fmt.Errorf("failed to committ files to git: %v", err)
+ retur... | Fix typo: committ -> commit (#<I>) |
diff --git a/zengine/lib/catalog_data.py b/zengine/lib/catalog_data.py
index <HASH>..<HASH> 100644
--- a/zengine/lib/catalog_data.py
+++ b/zengine/lib/catalog_data.py
@@ -65,6 +65,18 @@ class CatalogData(object):
"""
return self._get_from_local_cache(cat) or self._get_from_cache(cat) or self._get_from... | ADD, catalog_data_results as dict implementation is taken to under catalog data manager. |
diff --git a/lib/server/serverJquery.js b/lib/server/serverJquery.js
index <HASH>..<HASH> 100644
--- a/lib/server/serverJquery.js
+++ b/lib/server/serverJquery.js
@@ -1,8 +1,15 @@
"use strict";
-var jsdom = require("jsdom").jsdom;
+var serverWindow = require("jsdom").jsdom().parentWindow;
-module.exports = require... | fix iframe in View leaks on server side |
diff --git a/ctypeslib/codegen/codegenerator.py b/ctypeslib/codegen/codegenerator.py
index <HASH>..<HASH> 100644
--- a/ctypeslib/codegen/codegenerator.py
+++ b/ctypeslib/codegen/codegenerator.py
@@ -916,13 +916,13 @@ def generate_code(srcfiles,
# if we only want complete matches:
if ma... | Allow more then one match when testing expressions |
diff --git a/public/js/main.js b/public/js/main.js
index <HASH>..<HASH> 100644
--- a/public/js/main.js
+++ b/public/js/main.js
@@ -156,7 +156,7 @@ $.extend(true, window, {
var type = aposPages.getType(typeName);
if (type.settings) {
- var $typeEl = apos.fromTemplate('.apos-page-settin... | A page type that has custom page settings must now have an _typeCss property. _css is unsuitable because page types may share an instance type |
diff --git a/aiohttp/helpers.py b/aiohttp/helpers.py
index <HASH>..<HASH> 100644
--- a/aiohttp/helpers.py
+++ b/aiohttp/helpers.py
@@ -6,7 +6,6 @@ import functools
import io
import os
import re
-import warnings
from urllib.parse import quote, urlencode
from collections import namedtuple
@@ -503,13 +502,9 @@ clas... | drop __del__ method |
diff --git a/lib/actions/ResourcesDeploy.js b/lib/actions/ResourcesDeploy.js
index <HASH>..<HASH> 100644
--- a/lib/actions/ResourcesDeploy.js
+++ b/lib/actions/ResourcesDeploy.js
@@ -164,7 +164,7 @@ usage: serverless resources deploy`,
.then(function(resources) {
_this.cfTemplate = resources;
- ... | removes `console.log` from ResourcesDeploy |
diff --git a/binder/src/main/java/io/grpc/binder/AndroidComponentAddress.java b/binder/src/main/java/io/grpc/binder/AndroidComponentAddress.java
index <HASH>..<HASH> 100644
--- a/binder/src/main/java/io/grpc/binder/AndroidComponentAddress.java
+++ b/binder/src/main/java/io/grpc/binder/AndroidComponentAddress.java
@@ -1... | Add an asAndroidAppUri() method to AndroidComponentAddress. (#<I>)
This returns the address as an "android-app://" uri, which can be
used with AndroidAppNameResolverProvider. |
diff --git a/libre/urls.py b/libre/urls.py
index <HASH>..<HASH> 100644
--- a/libre/urls.py
+++ b/libre/urls.py
@@ -10,7 +10,6 @@ admin.autodiscover()
urlpatterns = patterns('',
- url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
url(r'^admin/', include(admin.site.urls)),
url(r'^', inclu... | Disabled the Django admin documentation generator, its setup is incomplete and not adding any additional value, should close issue #8. |
diff --git a/lnd_test.go b/lnd_test.go
index <HASH>..<HASH> 100644
--- a/lnd_test.go
+++ b/lnd_test.go
@@ -366,7 +366,7 @@ func calcStaticFee(numHTLCs int) btcutil.Amount {
const (
commitWeight = btcutil.Amount(724)
htlcWeight = 172
- feePerKw = btcutil.Amount(50/4) * 1000
+ feePerKw = btcutil.Amoun... | lnd test: ensure static fee is not rounded down |
diff --git a/spotify/__init__.py b/spotify/__init__.py
index <HASH>..<HASH> 100644
--- a/spotify/__init__.py
+++ b/spotify/__init__.py
@@ -5,7 +5,7 @@ from .models import *
from .client import Client
from .models import SpotifyBase
-__version__ = '0.4.4' # noqa
+__version__ = '0.4.5' # noqa
from .http import H... | bump patch version
I should seriously setup a CI/CD pipeline right about now. |
diff --git a/src/edit/input.js b/src/edit/input.js
index <HASH>..<HASH> 100644
--- a/src/edit/input.js
+++ b/src/edit/input.js
@@ -107,7 +107,7 @@ export function dispatchKey(pm, name, e) {
} else {
result = bound(pm)
}
- return result
+ return result == false ? false : "handled"
}
let re... | Fix preventing of default for handled keys |
diff --git a/tests/test_type.py b/tests/test_type.py
index <HASH>..<HASH> 100644
--- a/tests/test_type.py
+++ b/tests/test_type.py
@@ -127,7 +127,7 @@ def test_bot_data_fields(bot_data: types.BotData) -> None:
for attr in bot_data:
if "id" in attr.lower():
assert isinstance(bot_data[attr], in... | Remove redundant (and not working) check in tests |
diff --git a/lib/core/engine/index.js b/lib/core/engine/index.js
index <HASH>..<HASH> 100644
--- a/lib/core/engine/index.js
+++ b/lib/core/engine/index.js
@@ -31,7 +31,7 @@ function addExtraFieldsToHar(totalResults, har, options) {
if (har) {
for (let pageNumber = 0; pageNumber < totalResults.length; pageNumber... | pick correct HAR page when inserting extra content |
diff --git a/pylatex/utils.py b/pylatex/utils.py
index <HASH>..<HASH> 100644
--- a/pylatex/utils.py
+++ b/pylatex/utils.py
@@ -9,6 +9,7 @@ _latex_special_chars = {
'~': r'\lettertilde{}',
'^': r'\letterhat{}',
'\\': r'\letterbackslash{}',
+ '\n': r'\\\\',
} | Add \n to the escape character list |
diff --git a/metric_tank/http.go b/metric_tank/http.go
index <HASH>..<HASH> 100644
--- a/metric_tank/http.go
+++ b/metric_tank/http.go
@@ -90,7 +90,7 @@ func Get(w http.ResponseWriter, req *http.Request, metaCache *MetaCache, aggSett
out := make([]Series, len(targets))
for i, target := range targets {
var consol... | fix: set id properly in non-consolidation case |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.