diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/test/matcher.js b/test/matcher.js
index <HASH>..<HASH> 100644
--- a/test/matcher.js
+++ b/test/matcher.js
@@ -16,6 +16,10 @@ class EventMatcher {
return this.fixture.watch(...args, (err, events) => {
this.errors.push(err)
this.events.push(...events)
+
+ if (process.env.VERBOSE) {
+ ... | When VERBOSE is set, dump the received events |
diff --git a/aws/resource_aws_rds_cluster.go b/aws/resource_aws_rds_cluster.go
index <HASH>..<HASH> 100644
--- a/aws/resource_aws_rds_cluster.go
+++ b/aws/resource_aws_rds_cluster.go
@@ -353,7 +353,6 @@ func resourceAwsRDSCluster() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
Computed: tr... | Changes RDS cluster port change to in-place modify. |
diff --git a/pymacaron/__init__.py b/pymacaron/__init__.py
index <HASH>..<HASH> 100644
--- a/pymacaron/__init__.py
+++ b/pymacaron/__init__.py
@@ -221,7 +221,8 @@ class API(object):
serve.append('ping')
# Add ping hooks if any
- add_ping_hook(self.ping_hook)
+ if self.ping_hook:
+ ... | Bugfix: ping hook may be None |
diff --git a/tensorflow_datasets/image/imagenet.py b/tensorflow_datasets/image/imagenet.py
index <HASH>..<HASH> 100644
--- a/tensorflow_datasets/image/imagenet.py
+++ b/tensorflow_datasets/image/imagenet.py
@@ -35,6 +35,9 @@ ImageNet, we aim to provide on average 1000 images to illustrate each synset.
Images of each c... | Document why the imagenet test set is not available in Imagenet<I>.
PiperOrigin-RevId: <I> |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -53,7 +53,14 @@ setup(
],
keywords='cli',
packages=find_packages(exclude=['docs', 'tests*']),
- install_requires=['docopt'],
+ install_requires=['docopt',
+ 'numpy',
+ ... | added install_requires to setup |
diff --git a/src/Ratchet/WebSocket/Version/RFC6455.php b/src/Ratchet/WebSocket/Version/RFC6455.php
index <HASH>..<HASH> 100644
--- a/src/Ratchet/WebSocket/Version/RFC6455.php
+++ b/src/Ratchet/WebSocket/Version/RFC6455.php
@@ -146,6 +146,10 @@ class RFC6455 implements VersionInterface {
$parsed = $from->We... | [WebSocket] RFC compliance
Close connection if payload is not UTF-8
Fixed several AB 6.* tests
Refs #<I> |
diff --git a/lib/timezone/lookup/geonames.rb b/lib/timezone/lookup/geonames.rb
index <HASH>..<HASH> 100644
--- a/lib/timezone/lookup/geonames.rb
+++ b/lib/timezone/lookup/geonames.rb
@@ -40,7 +40,8 @@ module Timezone
query = URI.encode_www_form(
'lat' => lat,
'lng' => long,
- 'us... | Fix RuboCop Exceptions
New version of RuboCop required adjusting two methods calls. |
diff --git a/src/extensions/scratch3_boost/index.js b/src/extensions/scratch3_boost/index.js
index <HASH>..<HASH> 100644
--- a/src/extensions/scratch3_boost/index.js
+++ b/src/extensions/scratch3_boost/index.js
@@ -1696,7 +1696,7 @@ class Scratch3BoostBlocks {
const motor = this._peripheral.motor(portID);
... | Simplified the return value for when power is 0 in motorOnForRotation() |
diff --git a/cookies.py b/cookies.py
index <HASH>..<HASH> 100644
--- a/cookies.py
+++ b/cookies.py
@@ -721,20 +721,24 @@ class Cookie(object):
The main difference between this and Cookie(name, value, **kwargs) is
that the values in the argument to this method are parsed.
+
+ If ignore_bad_att... | fix: don't pass unparsed value strings as-is! |
diff --git a/consensus/wal.go b/consensus/wal.go
index <HASH>..<HASH> 100644
--- a/consensus/wal.go
+++ b/consensus/wal.go
@@ -20,7 +20,10 @@ import (
const (
// amino overhead + time.Time + max consensus msg size
- // TODO: Can we clarify better where 24 comes from precisely?
+ //
+ // q: where 24 bytes are comin... | cs: clarify where <I> comes from in maxMsgSizeBytes (wal.go) |
diff --git a/tests/Laravel7ExceptionHandler.php b/tests/Laravel7ExceptionHandler.php
index <HASH>..<HASH> 100644
--- a/tests/Laravel7ExceptionHandler.php
+++ b/tests/Laravel7ExceptionHandler.php
@@ -19,7 +19,7 @@ class Laravel7ExceptionHandler implements ExceptionHandler
public function renderForConsole($output,... | Surface exceptions when mixing tests and benchmarks (#<I>) |
diff --git a/tags/constructor.js b/tags/constructor.js
index <HASH>..<HASH> 100644
--- a/tags/constructor.js
+++ b/tags/constructor.js
@@ -4,8 +4,10 @@ steal.then(function() {
* @tag documentation
* @parent DocumentJS.Tags
* Documents javascript constructor classes typically created like: new MyContructor(args... | Cleaned up contructor tag documentation. |
diff --git a/src/FormHandler.php b/src/FormHandler.php
index <HASH>..<HASH> 100644
--- a/src/FormHandler.php
+++ b/src/FormHandler.php
@@ -766,6 +766,22 @@ class FormHandler
}
/**
+ * Add a custom error to the form
+ *
+ * @param $param
+ * @param $message
+ * @param bool|false $translat... | Add method to the form handler for quickly adding a single custom error |
diff --git a/src/model/User/UserData.php b/src/model/User/UserData.php
index <HASH>..<HASH> 100644
--- a/src/model/User/UserData.php
+++ b/src/model/User/UserData.php
@@ -36,12 +36,6 @@ class UserData
}
$this->userDataStorage->multiStore($tokensString, Json::encode($userDataContent));
}
-
- ... | Sales funnel related changes to access_token usage
- Creation of new user within sales funnel does not create
new access token. It was never used as sales funnel never
actually logs user in before the payment is confirmed.
- `ReturnPresenter` now always refreshes all user payment
user tokens to contain fresh info abou... |
diff --git a/Source/com/drew/metadata/exif/ExifTiffHandler.java b/Source/com/drew/metadata/exif/ExifTiffHandler.java
index <HASH>..<HASH> 100644
--- a/Source/com/drew/metadata/exif/ExifTiffHandler.java
+++ b/Source/com/drew/metadata/exif/ExifTiffHandler.java
@@ -84,6 +84,11 @@ public class ExifTiffHandler extends Direc... | Fix regression in Canon EOS 7D (CR2) where 3 thumbnail IFDs are chained. |
diff --git a/src/Krystal/Application/View/PluginBag.php b/src/Krystal/Application/View/PluginBag.php
index <HASH>..<HASH> 100644
--- a/src/Krystal/Application/View/PluginBag.php
+++ b/src/Krystal/Application/View/PluginBag.php
@@ -42,7 +42,10 @@ final class PluginBag implements PluginBagInterface
*/
private ... | Replaced hard-coded paths with constants |
diff --git a/tests/Unit/Suites/KeyValue/KeyValueStoreKeyGeneratorTest.php b/tests/Unit/Suites/KeyValue/KeyValueStoreKeyGeneratorTest.php
index <HASH>..<HASH> 100644
--- a/tests/Unit/Suites/KeyValue/KeyValueStoreKeyGeneratorTest.php
+++ b/tests/Unit/Suites/KeyValue/KeyValueStoreKeyGeneratorTest.php
@@ -79,7 +79,8 @@ cla... | Issue #<I>: Test key/value keys against both forward and backslashes |
diff --git a/lib/workflow_kit/version.rb b/lib/workflow_kit/version.rb
index <HASH>..<HASH> 100644
--- a/lib/workflow_kit/version.rb
+++ b/lib/workflow_kit/version.rb
@@ -1,3 +1,3 @@
module WorkflowKit
- VERSION = "0.0.3.alpha"
+ VERSION = "0.0.4.alpha"
end | bump to <I>.alpha |
diff --git a/plugins/TestRunner/Commands/TestsSetupFixture.php b/plugins/TestRunner/Commands/TestsSetupFixture.php
index <HASH>..<HASH> 100644
--- a/plugins/TestRunner/Commands/TestsSetupFixture.php
+++ b/plugins/TestRunner/Commands/TestsSetupFixture.php
@@ -124,7 +124,6 @@ class TestsSetupFixture extends ConsoleComman... | Remove exit; in TestsSetupFixture.php. Wonder how that got there... |
diff --git a/devices.js b/devices.js
index <HASH>..<HASH> 100755
--- a/devices.js
+++ b/devices.js
@@ -14843,6 +14843,15 @@ const devices = [
},
exposes: [e.power(), e.current(), e.voltage(), e.switch()],
},
+
+ // Prolight
+ {
+ zigbeeModel: ['PROLIGHT E27 WHITE AND COLOUR'],
+ ... | Added support for Prolight E<I> RGB <I> (#<I>)
* Added support for Prolight E<I> RGB
* Update devices.js |
diff --git a/packages/react-dnd-html5-backend/src/HTML5Backend.js b/packages/react-dnd-html5-backend/src/HTML5Backend.js
index <HASH>..<HASH> 100644
--- a/packages/react-dnd-html5-backend/src/HTML5Backend.js
+++ b/packages/react-dnd-html5-backend/src/HTML5Backend.js
@@ -19,6 +19,15 @@ export default class HTML5Backend ... | Initializing class state in the Backend Constructor (#<I>) |
diff --git a/question/behaviour/rendererbase.php b/question/behaviour/rendererbase.php
index <HASH>..<HASH> 100644
--- a/question/behaviour/rendererbase.php
+++ b/question/behaviour/rendererbase.php
@@ -234,7 +234,7 @@ abstract class qbehaviour_renderer extends plugin_renderer_base {
'id' => $qa->get_behav... | MDL-<I> qbehaviour: Correct "Check" button styling. |
diff --git a/salt/output/key.py b/salt/output/key.py
index <HASH>..<HASH> 100644
--- a/salt/output/key.py
+++ b/salt/output/key.py
@@ -13,8 +13,7 @@ def output(data):
Read in the dict structure generated by the salt key api methods and
print the structure.
'''
- color = salt.utils.get_colors(
- ... | Cleanup getting the colored output logic. |
diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/relation/query_methods.rb
+++ b/activerecord/lib/active_record/relation/query_methods.rb
@@ -280,15 +280,9 @@ module ActiveRec... | performance improvement based on discussion at <URL> |
diff --git a/huey/contrib/mini.py b/huey/contrib/mini.py
index <HASH>..<HASH> 100644
--- a/huey/contrib/mini.py
+++ b/huey/contrib/mini.py
@@ -90,6 +90,7 @@ class MiniHuey(object):
ret = fn(*args, **kwargs)
except Exception as exc:
logger.exception('task %s failed' % fn.__name__)
+ ... | Add exception call to AsyncResult after task failing |
diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -102,7 +102,7 @@ pygments_style = 'sphinx'
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
-html_theme = 'default'
+html_theme = 'sphinx_rtd_theme'
... | sphinx theme changed to read the docs |
diff --git a/storage/storage_image.go b/storage/storage_image.go
index <HASH>..<HASH> 100644
--- a/storage/storage_image.go
+++ b/storage/storage_image.go
@@ -446,6 +446,11 @@ func (s *storageImageDestination) computeNextBlobCacheFile() string {
return filepath.Join(s.directory, fmt.Sprintf("%d", atomic.AddInt32(&s.n... | Move storageImageDestination.HasThreadSafePutBlob
... so that it isn't in the middle of the PutBlob implementation.
Should not change behavior. |
diff --git a/lib/gitter/table.rb b/lib/gitter/table.rb
index <HASH>..<HASH> 100644
--- a/lib/gitter/table.rb
+++ b/lib/gitter/table.rb
@@ -90,12 +90,12 @@ module Gitter
end
end
- def html
+ def html opts = {}
@html ||= begin
h = rows.map do |row|
- Table.tag :tr, (row.map{|... | added html_opts to table |
diff --git a/src/Salts/Salts.php b/src/Salts/Salts.php
index <HASH>..<HASH> 100644
--- a/src/Salts/Salts.php
+++ b/src/Salts/Salts.php
@@ -49,7 +49,7 @@ class Salts
// read in each line as an array
$response = file($this->source);
- $parsed = (array) $this->parse_php_to_array($response);
+ ... | rename non-public method in Salts |
diff --git a/lib/jsdav.js b/lib/jsdav.js
index <HASH>..<HASH> 100644
--- a/lib/jsdav.js
+++ b/lib/jsdav.js
@@ -74,7 +74,6 @@ exports.createServer = function(options, port, host) {
return DAV.createServer(options, port, host);
};
-<<<<<<< Updated upstream
/**
* Create a jsDAV Server object that will not fire ... | Typo produced in merge feature/python |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -50,7 +50,7 @@ setup(
packages=find_packages(),
install_requires=install_requires,
classifiers=[
- 'Development Status :: 3 - Alpha',
+ 'Development Status :: 4 - Beta',
'Framework :: Twis... | classifiers: I think we're at least Beta now |
diff --git a/java/client/test/org/openqa/selenium/net/LinuxEphemeralPortRangeDetectorTest.java b/java/client/test/org/openqa/selenium/net/LinuxEphemeralPortRangeDetectorTest.java
index <HASH>..<HASH> 100644
--- a/java/client/test/org/openqa/selenium/net/LinuxEphemeralPortRangeDetectorTest.java
+++ b/java/client/test/or... | [java] Deleting a precondition, unit tests can run on any platform. |
diff --git a/aws/v4.go b/aws/v4.go
index <HASH>..<HASH> 100644
--- a/aws/v4.go
+++ b/aws/v4.go
@@ -98,8 +98,8 @@ func (v4 *signer) sign() {
}
// add the new ones
- v4.Request.Header.Add("Date", formatted)
- v4.Request.Header.Add("Authorization", v4.authorization)
+ v4.Request.Header.Set("Date", formatted)
+ v4.Re... | Set() don't Add() new Auth/Date headers in signer |
diff --git a/src/dialogs-wrapper.js b/src/dialogs-wrapper.js
index <HASH>..<HASH> 100644
--- a/src/dialogs-wrapper.js
+++ b/src/dialogs-wrapper.js
@@ -98,7 +98,13 @@ export default function modalWrapperFactory (wrapperOptions) {
})))
}
- return h('transition-group', wrapperOptions.transition, ren... | fix: renderOptions being watched by vue |
diff --git a/sos/plugins/manageiq.py b/sos/plugins/manageiq.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/manageiq.py
+++ b/sos/plugins/manageiq.py
@@ -71,7 +71,11 @@ class ManageIQ(Plugin, RedHatPlugin):
self.add_copy_spec([
os.path.join(self.miq_log_dir, x) for x in self.miq_log_files
... | [manageiq] add postresql configuration path
The most recent version of CloudForms adds postgres configuration
files at:
/etc/managiq/postgresql.conf.d/
Include these in the set of files collected by the plugin.
Resolves: #<I> |
diff --git a/src/toast/index.js b/src/toast/index.js
index <HASH>..<HASH> 100644
--- a/src/toast/index.js
+++ b/src/toast/index.js
@@ -51,7 +51,12 @@ function createInstance() {
// transform toast options to popup props
function transformOptions(options) {
+ options = { ...options };
options.overlay = options.m... | [bugfix] Toast: incorrect overlay duration (#<I>) |
diff --git a/binder.go b/binder.go
index <HASH>..<HASH> 100644
--- a/binder.go
+++ b/binder.go
@@ -122,6 +122,7 @@ func (binder FastBinder) RoundTrip(stdreq *http.Request) (*http.Response, error)
if stdreq.ContentLength >= 0 {
ctx.Request.Header.SetContentLength(int(stdreq.ContentLength))
} else {
+ ctx.Request... | Fix chunked encoding & content length on recent fasthttp |
diff --git a/hibernate-ogm-mongodb/src/main/java/org/hibernate/ogm/dialect/mongodb/MongoDBAssociationSnapshot.java b/hibernate-ogm-mongodb/src/main/java/org/hibernate/ogm/dialect/mongodb/MongoDBAssociationSnapshot.java
index <HASH>..<HASH> 100644
--- a/hibernate-ogm-mongodb/src/main/java/org/hibernate/ogm/dialect/mongo... | OGM-<I> Expose the object sent back by the datastore (used in the UT) |
diff --git a/itests/steps/marathon_steps.py b/itests/steps/marathon_steps.py
index <HASH>..<HASH> 100644
--- a/itests/steps/marathon_steps.py
+++ b/itests/steps/marathon_steps.py
@@ -158,7 +158,7 @@ def stop_listening_stream(context):
# and 2 deployment_step_success events
filtered_events = [e for e in cont... | Add some debug logic to the assert |
diff --git a/multiqc/utils/util_functions.py b/multiqc/utils/util_functions.py
index <HASH>..<HASH> 100644
--- a/multiqc/utils/util_functions.py
+++ b/multiqc/utils/util_functions.py
@@ -9,10 +9,11 @@ import os
import yaml
import time
import shutil
+import sys
from multiqc import config
-def robust_rmtree(path,... | Made the robust_rmtree more conservative. See #<I>. |
diff --git a/lib/generator.js b/lib/generator.js
index <HASH>..<HASH> 100644
--- a/lib/generator.js
+++ b/lib/generator.js
@@ -193,7 +193,7 @@ function generateDoc(source, options) {
'href': url + '#L' + entry.getLineNumber(),
'member': member,
'name': entry.getName(),
- '... | Only use a separator if in the entry template if there is a member. |
diff --git a/app/libraries/Setups/Scripts/CustomizePreview.php b/app/libraries/Setups/Scripts/CustomizePreview.php
index <HASH>..<HASH> 100644
--- a/app/libraries/Setups/Scripts/CustomizePreview.php
+++ b/app/libraries/Setups/Scripts/CustomizePreview.php
@@ -33,7 +33,7 @@ final class CustomizePreview extends AbstractSc... | Remove 'jquery' as dependency of 'jentil-customize-preview' script
Core's customize-preview script already lists jquery as dependency,
so removing it from our jentil-customize-preview script should not
cause any troubles; jquery will still be loaded before our own
script. |
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -28,6 +28,6 @@ SimpleCov.start do
add_filter '/spec/'
end if ENV["COVERAGE"]
-$logger = ZTK::Logger.new(Tempfile.new("test").path)
+$logger = ZTK::Logger.new(File.join("/tmp", ... | use specific filepaths for spec loggers |
diff --git a/ara/api/serializers.py b/ara/api/serializers.py
index <HASH>..<HASH> 100644
--- a/ara/api/serializers.py
+++ b/ara/api/serializers.py
@@ -20,7 +20,6 @@ import json
import logging
import zlib
-from django.utils import timezone
from rest_framework import serializers
from ara.api import models
@@ -70,... | Use playbook.updated instead of "now" for calculating duration
Using now() to calculate the duration was not accurate.
If a playbook had never ended, it would show that a playbook ran
yesterday for ><I>k seconds and keep growing, for example.
playbook.updated is the next best thing we've got so let's use that.
Change... |
diff --git a/test/simple_oauth_test.rb b/test/simple_oauth_test.rb
index <HASH>..<HASH> 100644
--- a/test/simple_oauth_test.rb
+++ b/test/simple_oauth_test.rb
@@ -132,4 +132,17 @@ class SimpleOAuthTest < Test::Unit::TestCase
# Each of the three combined values should be URL encoded.
assert_equal 'ME%23HOD&U%2... | Test generation of the secret used for generating the OAuth signature. |
diff --git a/lib/auth_plugins/sha256_password.js b/lib/auth_plugins/sha256_password.js
index <HASH>..<HASH> 100644
--- a/lib/auth_plugins/sha256_password.js
+++ b/lib/auth_plugins/sha256_password.js
@@ -2,7 +2,7 @@
const PLUGIN_NAME = 'sha256_password';
const crypto = require('crypto');
-const { xor } = require('..... | Update sha<I>_password.js
In short, replacing `xor` for `xorRotating` when authenticating passwords that are greater than <I> characters in length. The original issue was first spotted in the auth_plugin `caching_sha2_password` but is also present in the `sha<I>_password` auth_plugin as well.
The link to the origi... |
diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -435,7 +435,7 @@ func (c *Client) UserAuthServerCert() error {
}
fmt.Printf("Certificate fingerprint: % x\n", c.scertDigest)
- fmt.Printf("ok (y/n)?")
+ fmt.Printf("ok (y/n)? ")
line, err := ReadStdin()
if err !=... | Add a space between y/n prompt for cert validity |
diff --git a/concrete/blocks/express_form/controller.php b/concrete/blocks/express_form/controller.php
index <HASH>..<HASH> 100644
--- a/concrete/blocks/express_form/controller.php
+++ b/concrete/blocks/express_form/controller.php
@@ -824,6 +824,7 @@ class Controller extends BlockController implements NotificationProvi... | fixing captcha error in form view |
diff --git a/ape/installtools/__init__.py b/ape/installtools/__init__.py
index <HASH>..<HASH> 100644
--- a/ape/installtools/__init__.py
+++ b/ape/installtools/__init__.py
@@ -34,11 +34,14 @@ def create_project_venv():
sys.exit()
try:
- call(['virtualenv', venv_dir, '--no-site-packages'])
+ ... | added support for debian virtualenv issue described in issue #5 |
diff --git a/lib/util/index.js b/lib/util/index.js
index <HASH>..<HASH> 100644
--- a/lib/util/index.js
+++ b/lib/util/index.js
@@ -951,15 +951,19 @@ function decodePath(path) {
function getRuleFiles(rule) {
var files = rule.files || [getPath(getUrl(rule))];
var root = rule.root;
- return files.map(function(file... | refactor: getPath |
diff --git a/GPy/inference/SCG.py b/GPy/inference/SCG.py
index <HASH>..<HASH> 100644
--- a/GPy/inference/SCG.py
+++ b/GPy/inference/SCG.py
@@ -39,8 +39,10 @@ def SCG(f, gradf, x, optargs=(), maxiters=500, max_f_eval=500, display=True, xto
function_eval number of fn evaluations
status: string describing conver... | Removed fisrt prints if display is off |
diff --git a/org/postgresql/jdbc2/AbstractJdbc2ResultSetMetaData.java b/org/postgresql/jdbc2/AbstractJdbc2ResultSetMetaData.java
index <HASH>..<HASH> 100644
--- a/org/postgresql/jdbc2/AbstractJdbc2ResultSetMetaData.java
+++ b/org/postgresql/jdbc2/AbstractJdbc2ResultSetMetaData.java
@@ -237,8 +237,8 @@ public abstract c... | Fix ResultSetMetaData retrieval when the oid counter exceeds INT_MAX.
Since Java doesn't have unsigned ints we retrieve the values as long
and then truncate to int, so it may have a negative value.
As reported by Owen Tran. |
diff --git a/html/query.go b/html/query.go
index <HASH>..<HASH> 100644
--- a/html/query.go
+++ b/html/query.go
@@ -106,9 +106,15 @@ func SelectAttr(n *html.Node, name string) (val string) {
}
// OutputHTML returns the text including tags name.
-func OutputHTML(n *html.Node) string {
+func OutputHTML(n *html.Node, s... | feature: OutputHTML allow node itself output or not #9 |
diff --git a/eZ/Publish/API/Repository/Values/User/Policy.php b/eZ/Publish/API/Repository/Values/User/Policy.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/API/Repository/Values/User/Policy.php
+++ b/eZ/Publish/API/Repository/Values/User/Policy.php
@@ -19,7 +19,6 @@ use eZ\Publish\API\Repository\Values\ValueObject;
... | EZP-<I>: Removed unused reference to virtual property |
diff --git a/libre/apps/data_drivers/exceptions.py b/libre/apps/data_drivers/exceptions.py
index <HASH>..<HASH> 100644
--- a/libre/apps/data_drivers/exceptions.py
+++ b/libre/apps/data_drivers/exceptions.py
@@ -11,3 +11,7 @@ class LIBREError(ParseError):
class LIBREValueError(LIBREError):
pass
+
+
+class LIBREF... | Add a new exception for field resultion errors |
diff --git a/lib/virtus/class_methods.rb b/lib/virtus/class_methods.rb
index <HASH>..<HASH> 100644
--- a/lib/virtus/class_methods.rb
+++ b/lib/virtus/class_methods.rb
@@ -44,8 +44,8 @@ module Virtus
# @api public
def attribute(name, type, options = {})
attribute = Attribute.determine_type(type).new(nam... | Prefixed private methods to prevent conflicts. |
diff --git a/src/Events/GetCalendarEventsListener.php b/src/Events/GetCalendarEventsListener.php
index <HASH>..<HASH> 100644
--- a/src/Events/GetCalendarEventsListener.php
+++ b/src/Events/GetCalendarEventsListener.php
@@ -15,7 +15,6 @@ class GetCalendarEventsListener implements EventListenerInterface
{
r... | Removing obsolete event listeners (task #<I>) |
diff --git a/code/controller/CMSMain.php b/code/controller/CMSMain.php
index <HASH>..<HASH> 100755
--- a/code/controller/CMSMain.php
+++ b/code/controller/CMSMain.php
@@ -497,6 +497,19 @@ JS;
return $form;
}
+
+ public function currentPageID() {
+ $id = parent::currentPageID();
+
+ // Fall back to homepage ... | MINOR Fall back to homepage record for CMSMain->PreviewLink() |
diff --git a/tests/src/main/java/com/hazelcast/simulator/tests/network/PayloadUtils.java b/tests/src/main/java/com/hazelcast/simulator/tests/network/PayloadUtils.java
index <HASH>..<HASH> 100644
--- a/tests/src/main/java/com/hazelcast/simulator/tests/network/PayloadUtils.java
+++ b/tests/src/main/java/com/hazelcast/sim... | Fixed CheckStyle issue in PayloadUtils. |
diff --git a/services/price/server.py b/services/price/server.py
index <HASH>..<HASH> 100644
--- a/services/price/server.py
+++ b/services/price/server.py
@@ -308,12 +308,12 @@ class PriceServicer(price_pb2_grpc.PriceServicer):
def __init__(self):
self.pymortar_client = pymortar.Client()
- price_... | updated price_mapping file location and fixed building names |
diff --git a/scapy.py b/scapy.py
index <HASH>..<HASH> 100755
--- a/scapy.py
+++ b/scapy.py
@@ -6125,7 +6125,7 @@ class STP(Packet):
ShortField("bridgeid", 0),
MACField("bridgemac", ETHER_ANY),
ShortField("portid", 0),
- ShortField("age", ... | Use BCDFloadField for STP age field (ticket #<I>) |
diff --git a/examples/mpl/subplots.py b/examples/mpl/subplots.py
index <HASH>..<HASH> 100644
--- a/examples/mpl/subplots.py
+++ b/examples/mpl/subplots.py
@@ -1,4 +1,3 @@
-from __future__ import print_function
"""
Edward Tufte uses this example from Anscombe to show 4 datasets of x
and y that have the same mean, sta... | Fixed some unused imports and comments. |
diff --git a/src/count-down/test/index.spec.js b/src/count-down/test/index.spec.js
index <HASH>..<HASH> 100644
--- a/src/count-down/test/index.spec.js
+++ b/src/count-down/test/index.spec.js
@@ -1,4 +1,4 @@
-import { nextTick } from 'vue';
+import { KeepAlive, nextTick } from 'vue';
import CountDown from '..';
import... | test(CountDown): fix test warning (#<I>) |
diff --git a/lib/Record.php b/lib/Record.php
index <HASH>..<HASH> 100644
--- a/lib/Record.php
+++ b/lib/Record.php
@@ -346,6 +346,9 @@ class Record extends Base implements \ArrayAccess, \IteratorAggregate, \Countabl
// Insert
if ($isNew) {
+ if (array_key_exists($this->primary... | try to fix db test error |
diff --git a/pysat/tests/test_ftp_instruments.py b/pysat/tests/test_ftp_instruments.py
index <HASH>..<HASH> 100644
--- a/pysat/tests/test_ftp_instruments.py
+++ b/pysat/tests/test_ftp_instruments.py
@@ -1,16 +1,13 @@
"""
tests the pysat meta object and code
"""
-import pysat
+import importlib
+import os
import temp... | Update test_ftp_instruments.py
Updated import order to be more PEP8 compliant |
diff --git a/mod/forum/lib.php b/mod/forum/lib.php
index <HASH>..<HASH> 100644
--- a/mod/forum/lib.php
+++ b/mod/forum/lib.php
@@ -1246,7 +1246,7 @@ function forum_get_readable_forums($userid, $courseid=0) {
$coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
- if (has_capability('mo... | merged fixing a broken has_capability() call |
diff --git a/scripts/webpack/webpack.hot.js b/scripts/webpack/webpack.hot.js
index <HASH>..<HASH> 100644
--- a/scripts/webpack/webpack.hot.js
+++ b/scripts/webpack/webpack.hot.js
@@ -26,6 +26,8 @@ module.exports = merge(common, {
extensions: ['.scss', '.ts', '.tsx', '.es6', '.js', '.json', '.svg', '.woff2', '.png'... | Fix sourcemaps for webpack hot config |
diff --git a/lib/rib/more/edit.rb b/lib/rib/more/edit.rb
index <HASH>..<HASH> 100644
--- a/lib/rib/more/edit.rb
+++ b/lib/rib/more/edit.rb
@@ -13,9 +13,10 @@ module Rib::Edit
file.puts(Rib.vars[:edit])
file.close
- system("#{ENV['EDITOR']} #{file.path}")
+ shell = Rib.shell
+ system("#{sh... | [rib/more/edit] default editor to vim, and you could override it |
diff --git a/src/test/java/com/google/cloud/tools/managedcloudsdk/ManagedCloudSdkTest.java b/src/test/java/com/google/cloud/tools/managedcloudsdk/ManagedCloudSdkTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/google/cloud/tools/managedcloudsdk/ManagedCloudSdkTest.java
+++ b/src/test/java/com/google/cloud/... | Fix cloud SDK test, bug in Cloud SDK doesn't allow downgrades to <I> (#<I>) |
diff --git a/currencies/admin.py b/currencies/admin.py
index <HASH>..<HASH> 100644
--- a/currencies/admin.py
+++ b/currencies/admin.py
@@ -3,7 +3,8 @@ from currencies.models import Currency
class CurrencyAdmin(admin.ModelAdmin):
- list_display = ("name", "is_default", "code", "symbol", "factor")
+ list_displ... | Add is_active and is_base to the admin |
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... | no need to check for nil? |
diff --git a/intranet/apps/eighth/views/api.py b/intranet/apps/eighth/views/api.py
index <HASH>..<HASH> 100644
--- a/intranet/apps/eighth/views/api.py
+++ b/intranet/apps/eighth/views/api.py
@@ -1,6 +1,7 @@
import logging
from datetime import datetime
+from django.core.exceptions import PermissionDenied
from djang... | fix(eighth): deny unauthorized signup API request |
diff --git a/ntfy/backends/simplepush.py b/ntfy/backends/simplepush.py
index <HASH>..<HASH> 100644
--- a/ntfy/backends/simplepush.py
+++ b/ntfy/backends/simplepush.py
@@ -4,7 +4,8 @@ from ..config import USER_AGENT
def notify(title,
message,
- key):
+ key,
+ retcode=None):
... | retcode argument for simplepush backend (ugh.. that's why i didn't _really_ dig the idea of that arg) |
diff --git a/lib/framer.js b/lib/framer.js
index <HASH>..<HASH> 100644
--- a/lib/framer.js
+++ b/lib/framer.js
@@ -298,7 +298,7 @@ frame_types[0x1] = 'HEADERS';
frame_flags.HEADERS = ['END_STREAM', 'RESERVED', 'END_HEADERS', 'PRIORITY'];
-type_specific_attributes.HEADERS = ['priority', 'data'];
+type_specific_attr... | Framer: add 'headers' as frame specific attribute to HEADERS and PUSH_PROMISE. |
diff --git a/src/Ddeboer/DataImport/Reader/Factory/CsvReaderFactory.php b/src/Ddeboer/DataImport/Reader/Factory/CsvReaderFactory.php
index <HASH>..<HASH> 100644
--- a/src/Ddeboer/DataImport/Reader/Factory/CsvReaderFactory.php
+++ b/src/Ddeboer/DataImport/Reader/Factory/CsvReaderFactory.php
@@ -19,7 +19,7 @@ class CsvRe... | Use commas for the CSV Reader
Since CSV means comma separated values it seems only logical that its the default. A similar change was made against the CsvReader awhile back and I just noticed the CsvReaderFactory has the same issue. |
diff --git a/openquake/calculators/classical.py b/openquake/calculators/classical.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/classical.py
+++ b/openquake/calculators/classical.py
@@ -244,6 +244,8 @@ def build_hcurves_and_stats(pgetter, hstats, monitor):
pmaps = pgetter.get_pmaps(pgetter.sid... | Fixed build_hcurves_and_stats [skip hazardlib] [demos]
Former-commit-id: <I>db<I>fb<I>f<I>e<I>b1babb<I>a<I>eb<I>ac |
diff --git a/dca/tl_page.php b/dca/tl_page.php
index <HASH>..<HASH> 100644
--- a/dca/tl_page.php
+++ b/dca/tl_page.php
@@ -124,7 +124,7 @@ $GLOBALS['TL_DCA']['tl_page']['fields']['cookiebar_analyticsCheckbox'] = [
'exclude' => true,
'inputType' => 'checkbox',
'eval' => ['tl_class' => 'clr'],
- 'sql' =... | Do not make the analytics checkbox set by default |
diff --git a/core/src/main/java/hudson/model/Descriptor.java b/core/src/main/java/hudson/model/Descriptor.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/model/Descriptor.java
+++ b/core/src/main/java/hudson/model/Descriptor.java
@@ -944,11 +944,10 @@ public abstract class Descriptor<T extends Describa... | findByClassName should not be advertised to outside code.
(cherry picked from commit 8dd<I>a8f<I>d3b<I>b4e<I>fc<I>ee5a<I>) |
diff --git a/test/helpers.js b/test/helpers.js
index <HASH>..<HASH> 100644
--- a/test/helpers.js
+++ b/test/helpers.js
@@ -3,7 +3,7 @@ import ParseError from "../src/ParseError";
import parseTree from "../src/parseTree";
import Settings from "../src/Settings";
-import diff from 'jest-diff';
+import {diff} from 'jes... | chore(tests): fix use of jest-diff (#<I>)
Jest <I> changed the signature for jest-diff.
This bug only arises from failing tests. |
diff --git a/schema/jsonschema.js b/schema/jsonschema.js
index <HASH>..<HASH> 100755
--- a/schema/jsonschema.js
+++ b/schema/jsonschema.js
@@ -154,11 +154,11 @@ function traverse(schema, p) {
params[key] = group+'{'+type+size+allowedValues+'} '+field+' '+description;
var subs = {};
- var subgroup = p ? p+'.'... | Bug fix. groups don't allow `.` in the name. |
diff --git a/pypot/dynamixel/motor.py b/pypot/dynamixel/motor.py
index <HASH>..<HASH> 100644
--- a/pypot/dynamixel/motor.py
+++ b/pypot/dynamixel/motor.py
@@ -255,7 +255,7 @@ class DxlMotor(Motor):
elif control == 'dummy':
dp = abs(self.present_position - position)
- speed = (dp / flo... | Update motor.py
np.inf is casted in Infinity in Json, which is not valid |
diff --git a/src/Configuration.php b/src/Configuration.php
index <HASH>..<HASH> 100644
--- a/src/Configuration.php
+++ b/src/Configuration.php
@@ -91,6 +91,10 @@ final class Configuration
*/
public function setRecipientOverride($recipientOverride)
{
+ if (!$recipientOverride) {
+ retur... | Ignore empty recipient override |
diff --git a/routing/router.go b/routing/router.go
index <HASH>..<HASH> 100644
--- a/routing/router.go
+++ b/routing/router.go
@@ -727,6 +727,13 @@ func (r *ChannelRouter) pruneZombieChans() error {
}
}
+ // With the channels pruned, we'll also attempt to prune any nodes that
+ // were a part of them.
+ err = r.... | routing: prune graph nodes after pruning zombie channels
We do this to ensure we don't leave any stray nodes in our graph that
were part of the zombie channels that we've pruned. |
diff --git a/gct.py b/gct.py
index <HASH>..<HASH> 100644
--- a/gct.py
+++ b/gct.py
@@ -17,7 +17,7 @@ __status__ = 'Beta'
GCT Tools
Tools for loading a GCT file and working with its contents as a Pandas DataFrame.
-Compatible with Python 2.7 and Python 3.4
+Compatible with Python 2.7 and Python 3.4+
"""
diff --... | Ship GCT Tools with the genepattern-python package |
diff --git a/multiqc/templates/default/assets/js/multiqc_generalstats.js b/multiqc/templates/default/assets/js/multiqc_generalstats.js
index <HASH>..<HASH> 100644
--- a/multiqc/templates/default/assets/js/multiqc_generalstats.js
+++ b/multiqc/templates/default/assets/js/multiqc_generalstats.js
@@ -99,7 +99,7 @@ $(funct... | Fixed JS index bug in general stats colours. |
diff --git a/indra/tests/test_preassembler.py b/indra/tests/test_preassembler.py
index <HASH>..<HASH> 100644
--- a/indra/tests/test_preassembler.py
+++ b/indra/tests/test_preassembler.py
@@ -415,7 +415,7 @@ def test_render_stmt_graph():
stmts = [p0, p1, p2, p3, p4, p5, p6]
pa = Preassembler(hierarchies, stmts... | Fix failing test for render_stmt_graph |
diff --git a/nodeserver/src/client/js/cli3nt.js b/nodeserver/src/client/js/cli3nt.js
index <HASH>..<HASH> 100644
--- a/nodeserver/src/client/js/cli3nt.js
+++ b/nodeserver/src/client/js/cli3nt.js
@@ -404,6 +404,39 @@ define(['/common/LogManager.js','/common/EventDispatcher.js', '/socket.io/socket
but only through ... | continue 're-implementing' client side
Former-commit-id: 2abfdc5df2f<I>e<I>d<I>a7 |
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb
index <HASH>..<HASH> 100644
--- a/activesupport/lib/active_support/test_case.rb
+++ b/activesupport/lib/active_support/test_case.rb
@@ -149,5 +149,9 @@ module ActiveSupport
alias :assert_not_same :refute_same... | Stop gap solution for long output on test cases
This patch just changes the inspect method on test case instances.
Seeing test instance internals probably isn't helpful when an exception
is raised (for example a `NoMethodError`).
This isn't as good as #<I>, but should fix #<I> |
diff --git a/shutit_srv.py b/shutit_srv.py
index <HASH>..<HASH> 100644
--- a/shutit_srv.py
+++ b/shutit_srv.py
@@ -66,7 +66,6 @@ def update_modules(to_build, cfg):
orig_mod_cfg[sec][key] = val
for mid in orig_mod_cfg:
shutit.cfg[mid].update(orig_mod_cfg[mid])
- shutit.cfg['repository'].update(orig_mod_cfg['repo... | I'm <I>% sure this is redundant |
diff --git a/src/sap.ui.layout/src/sap/ui/layout/ResponsiveSplitter.js b/src/sap.ui.layout/src/sap/ui/layout/ResponsiveSplitter.js
index <HASH>..<HASH> 100644
--- a/src/sap.ui.layout/src/sap/ui/layout/ResponsiveSplitter.js
+++ b/src/sap.ui.layout/src/sap/ui/layout/ResponsiveSplitter.js
@@ -564,7 +564,7 @@ sap.ui.define... | [INTERNAL] sap.ui.layout.ResponsiveSplitter: Replaced deprecated method
Replaced depracated removeAllAssociatedContentArea (singular) with
removeAllAssociatedContentAreas (plural) usage to prevent warnings
in the console.
Change-Id: I<I>b<I>d<I>d8afb<I>e<I>c<I>b<I>d<I>f |
diff --git a/src/CacheKey.php b/src/CacheKey.php
index <HASH>..<HASH> 100644
--- a/src/CacheKey.php
+++ b/src/CacheKey.php
@@ -177,7 +177,11 @@ class CacheKey
$value = $this->getTypeClause($where);
$value .= $this->getValuesClause($where);
- return "-{$where["column"]}_{$value}";
+ $co... | Support for full text search
Recently Laravel added support for full-text search where clauses in the query builder.
<URL> |
diff --git a/src/Common/Service/Database.php b/src/Common/Service/Database.php
index <HASH>..<HASH> 100644
--- a/src/Common/Service/Database.php
+++ b/src/Common/Service/Database.php
@@ -60,7 +60,7 @@ use Nails\Testing;
* @method \CI_DB_query_builder offset($offset)
* @method \CI_DB_query_builder set($key, $value =... | Correct typehint in docblock |
diff --git a/templates/js/atk4_univ.js b/templates/js/atk4_univ.js
index <HASH>..<HASH> 100644
--- a/templates/js/atk4_univ.js
+++ b/templates/js/atk4_univ.js
@@ -447,6 +447,9 @@ ajaxec: function(url,data,fn){
newWindow: function(url,name,options){
window.open(url,name,options);
},
+expr: function(str){
+ return... | Added option to pass expression through jQuery chain
Example: $this->js(true)->css("height", $this->js()->expr($this->js()->_selector("body")->innerHeight() . " - <I>")); |
diff --git a/shell/src/main/java/tachyon/shell/TfsShell.java b/shell/src/main/java/tachyon/shell/TfsShell.java
index <HASH>..<HASH> 100644
--- a/shell/src/main/java/tachyon/shell/TfsShell.java
+++ b/shell/src/main/java/tachyon/shell/TfsShell.java
@@ -116,7 +116,6 @@ public class TfsShell implements Closeable {
Sys... | Remove unused request command from shell help. |
diff --git a/aeron-cluster/src/main/java/io/aeron/cluster/service/ClusteredServiceContainer.java b/aeron-cluster/src/main/java/io/aeron/cluster/service/ClusteredServiceContainer.java
index <HASH>..<HASH> 100644
--- a/aeron-cluster/src/main/java/io/aeron/cluster/service/ClusteredServiceContainer.java
+++ b/aeron-cluster... | [Java]: avoid replay stream Id conflicting with timer stream id |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
import os
-from setuptools import setup
+from setuptools import setup, find_packages
LONG_DESCRIPTION = """Django-Prometheus
@@ -12,7 +12,7 @@ instructions.
setup(
name="django-prometheus",
- vers... | Release <I>
Previous releases did not package the database backends. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ setup(
packages=['table'],
include_package_data=True,
license='BSD License', # example license
- description='A simple Django app to conduct Web-based polls.',
+ description='A simple Djang... | update app desc in setup.py |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ import os
from functools import partial
from pip.req import parse_requirements
-from setuptools import setup
+from setuptools import setup, find_packages
# parse_requirements() interface has changed in Pi... | fix packages listed in setup.py |
diff --git a/pkg/api/v1/conversion.go b/pkg/api/v1/conversion.go
index <HASH>..<HASH> 100644
--- a/pkg/api/v1/conversion.go
+++ b/pkg/api/v1/conversion.go
@@ -44,7 +44,7 @@ func addConversionFuncs() {
"status.phase",
"spec.nodeName":
return label, value, nil
- // This is for backwards compatability ... | Fix gofmt from #<I> |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -61,6 +61,9 @@ Mode.prototype.valueOf = function () {
/**
* Returns a String representation of the `mode`.
+ * The output resembles something similiar to what `ls -l` would output.
+ *
+ * http://en.wikipedia.org/wiki/Uni... | index: add link to the wikipedia "unix file types" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.