diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/spyder_kernels/_version.py b/spyder_kernels/_version.py index <HASH>..<HASH> 100644 --- a/spyder_kernels/_version.py +++ b/spyder_kernels/_version.py @@ -8,5 +8,5 @@ """Version File.""" -VERSION_INFO = (1, 6, 0) +VERSION_INFO = (1, 7, 0, 'dev0') __version__ = '.'.join(map(str, VERSION_INFO))
Back to work [ci skip]
diff --git a/WeaveData/src/WeavePathData.js b/WeaveData/src/WeavePathData.js index <HASH>..<HASH> 100644 --- a/WeaveData/src/WeavePathData.js +++ b/WeaveData/src/WeavePathData.js @@ -27,6 +27,21 @@ weave.WeavePath.qkeyToIndex = function(key) return this._qkeys_to_numeric[key_str]; }; +function toArray(args) +{ ...
added shim for missing JS Function.bind()
diff --git a/pythonforandroid/recipes/librt/__init__.py b/pythonforandroid/recipes/librt/__init__.py index <HASH>..<HASH> 100644 --- a/pythonforandroid/recipes/librt/__init__.py +++ b/pythonforandroid/recipes/librt/__init__.py @@ -19,7 +19,7 @@ class LibRt(Recipe): finishes''' def build_arch(self, arch)...
changed arch.ndk_platform to arch.ndk_lib_dir fix for ```python AttributeError: 'ArchARMv7_a' object has no attribute 'ndk_platform' ```
diff --git a/lib/rain/deployer.rb b/lib/rain/deployer.rb index <HASH>..<HASH> 100644 --- a/lib/rain/deployer.rb +++ b/lib/rain/deployer.rb @@ -24,7 +24,7 @@ module Rain run_cmd("git tag #{tag.to_s}") push_tag(tag) else - say "Deploying existing tag #{GitTools::ReleaseTag.current} to '#{e...
Deploy the latest stage, not the current prod
diff --git a/sonar-server/src/main/java/org/sonar/server/permission/InternalPermissionTemplateService.java b/sonar-server/src/main/java/org/sonar/server/permission/InternalPermissionTemplateService.java index <HASH>..<HASH> 100644 --- a/sonar-server/src/main/java/org/sonar/server/permission/InternalPermissionTemplateSe...
SONAR-<I> Fixed quality issue
diff --git a/src/Composer/ArtifactsPlugin.php b/src/Composer/ArtifactsPlugin.php index <HASH>..<HASH> 100644 --- a/src/Composer/ArtifactsPlugin.php +++ b/src/Composer/ArtifactsPlugin.php @@ -29,7 +29,7 @@ class ArtifactsPlugin implements PluginInterface { $packagesDir = $composer->getConfig()->get('data-d...
Bypass artifacts plugin if ext-zip is not installed
diff --git a/lib/percheron/cli/main_command.rb b/lib/percheron/cli/main_command.rb index <HASH>..<HASH> 100644 --- a/lib/percheron/cli/main_command.rb +++ b/lib/percheron/cli/main_command.rb @@ -1,6 +1,6 @@ module Percheron module CLI - class MainCommand < Clamp::Command + class MainCommand < AbstractCommand ...
MainCommand needs to < AbstractCommand so -c is available to all subcommands
diff --git a/lib/userlist/push/resource.rb b/lib/userlist/push/resource.rb index <HASH>..<HASH> 100644 --- a/lib/userlist/push/resource.rb +++ b/lib/userlist/push/resource.rb @@ -67,9 +67,10 @@ module Userlist def to_hash Serializer.serialize(self) end + alias to_h to_hash - def to_h ...
Add Userlist::Push::Resource#to_json to fix serialization accross different JSON implementations
diff --git a/js/tabs.js b/js/tabs.js index <HASH>..<HASH> 100644 --- a/js/tabs.js +++ b/js/tabs.js @@ -132,7 +132,9 @@ if (!clicked) { var prev_index = index; index = $tabs_wrapper.index(item); + $active.removeClass('active'); $active = $links.eq(in...
Fixed active bug on swipeable tabs
diff --git a/src/utils/get-coords.spec.js b/src/utils/get-coords.spec.js index <HASH>..<HASH> 100644 --- a/src/utils/get-coords.spec.js +++ b/src/utils/get-coords.spec.js @@ -6,6 +6,7 @@ import getCoords from './get-coords'; test('should return null when no coordinates were found ', (t) => { t.deepEqual( + // ...
Suppress flow warnings in getCoords test as there is no way of creating a simulated synthetic event
diff --git a/lib/veritas/relation/operation/order/direction.rb b/lib/veritas/relation/operation/order/direction.rb index <HASH>..<HASH> 100644 --- a/lib/veritas/relation/operation/order/direction.rb +++ b/lib/veritas/relation/operation/order/direction.rb @@ -26,15 +26,15 @@ module Veritas self.class.revers...
Prefer #eql? and #hash definitions together in the source
diff --git a/packages/pob/lib/generators/common/babel/index.js b/packages/pob/lib/generators/common/babel/index.js index <HASH>..<HASH> 100644 --- a/packages/pob/lib/generators/common/babel/index.js +++ b/packages/pob/lib/generators/common/babel/index.js @@ -569,7 +569,9 @@ module.exports = class BabelGenerator extends...
feat: exports package.json by default
diff --git a/lib/cancan/inherited_resource.rb b/lib/cancan/inherited_resource.rb index <HASH>..<HASH> 100644 --- a/lib/cancan/inherited_resource.rb +++ b/lib/cancan/inherited_resource.rb @@ -3,16 +3,16 @@ module CanCan class InheritedResource < ControllerResource # :nodoc: def load_resource_instance if p...
Controllers which use 'inherit_resources' instead of Inheritance may have inherited_resource's methods protected
diff --git a/cartoframes/context.py b/cartoframes/context.py index <HASH>..<HASH> 100644 --- a/cartoframes/context.py +++ b/cartoframes/context.py @@ -1,4 +1,5 @@ """CartoContext and BatchJobStatus classes""" +from __future__ import absolute_import import json import os import random @@ -20,11 +21,11 @@ from carto....
add absolute_import to make imports clearer
diff --git a/consumer.go b/consumer.go index <HASH>..<HASH> 100644 --- a/consumer.go +++ b/consumer.go @@ -3,6 +3,7 @@ package cony import ( "fmt" "os" + "sync" "github.com/streadway/amqp" ) @@ -21,6 +22,8 @@ type Consumer struct { exclusive bool noLocal bool stop chan struct{} + dead bo...
Consumer will close its delivery channel once Close()-ed * Close deliveries channel * Guard closing channel with mutex and condition
diff --git a/src/dna-template-component.js b/src/dna-template-component.js index <HASH>..<HASH> 100644 --- a/src/dna-template-component.js +++ b/src/dna-template-component.js @@ -30,7 +30,7 @@ export const TemplateMixin = (SuperClass) => class extends SuperClass { constructor() { super(); let tem...
refactor: improve template property handling
diff --git a/src/L.Control.Locate.js b/src/L.Control.Locate.js index <HASH>..<HASH> 100644 --- a/src/L.Control.Locate.js +++ b/src/L.Control.Locate.js @@ -1,3 +1,9 @@ +/* +Copyright (c) 2013 Dominik Moritz + +This file is part of the leaflet locate control. It is licensed under the MIT license. +You can find the projec...
Add notice about origin to main js file
diff --git a/lib/Github/HttpClient/Message/ResponseMediator.php b/lib/Github/HttpClient/Message/ResponseMediator.php index <HASH>..<HASH> 100644 --- a/lib/Github/HttpClient/Message/ResponseMediator.php +++ b/lib/Github/HttpClient/Message/ResponseMediator.php @@ -46,5 +46,7 @@ class ResponseMediator if (null !=...
Add the missing return statement Simply return the 'X-RateLimit-Remaining' as expected.
diff --git a/bundles/org.eclipse.orion.client.core/web/orion/commonHTMLFragments.js b/bundles/org.eclipse.orion.client.core/web/orion/commonHTMLFragments.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.core/web/orion/commonHTMLFragments.js +++ b/bundles/org.eclipse.orion.client.core/web/orion/comm...
Fix bug <I> - Status Messages cannot be read by screen reader
diff --git a/ext/memory/src/main/java/org/minimalj/repository/memory/InMemoryRepository.java b/ext/memory/src/main/java/org/minimalj/repository/memory/InMemoryRepository.java index <HASH>..<HASH> 100644 --- a/ext/memory/src/main/java/org/minimalj/repository/memory/InMemoryRepository.java +++ b/ext/memory/src/main/java/...
InMemoryRepository: more meaningful exceptions for invalid fields
diff --git a/lib/arel/session.rb b/lib/arel/session.rb index <HASH>..<HASH> 100644 --- a/lib/arel/session.rb +++ b/lib/arel/session.rb @@ -11,26 +11,23 @@ module Arel @instance = nil end - module CRUD - def create(insert) - insert.call - end + def create(insert) + insert.call +...
CRUD is not being reused, so we should not expose it
diff --git a/src/wa_kat/zeo/request_info.py b/src/wa_kat/zeo/request_info.py index <HASH>..<HASH> 100755 --- a/src/wa_kat/zeo/request_info.py +++ b/src/wa_kat/zeo/request_info.py @@ -105,7 +105,25 @@ class RequestInfo(Persistent): @transaction_manager def get_log(self): - return "\n".join( + #...
#<I>: Log improved.
diff --git a/src/main/java/moa/tasks/EvaluatePeriodicHeldOutTest.java b/src/main/java/moa/tasks/EvaluatePeriodicHeldOutTest.java index <HASH>..<HASH> 100644 --- a/src/main/java/moa/tasks/EvaluatePeriodicHeldOutTest.java +++ b/src/main/java/moa/tasks/EvaluatePeriodicHeldOutTest.java @@ -169,7 +169,9 @@ public class Eval...
Updated EvaluatePeriodicHeldOutTest
diff --git a/src/ol/source/geojsonsource.js b/src/ol/source/geojsonsource.js index <HASH>..<HASH> 100644 --- a/src/ol/source/geojsonsource.js +++ b/src/ol/source/geojsonsource.js @@ -9,6 +9,7 @@ goog.require('ol.source.VectorFile'); * @constructor * @extends {ol.source.VectorFile} * @param {olx.source.GeoJSONOpti...
Add stability annotation to ol.source.GeoJSON
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -4,12 +4,7 @@ appinstance Active8 (04-03-15) license: GNU-GPL2 """ -from __future__ import unicode_literals -from __future__ import print_function -from __future__ import division -from __future__ import absolute_import -fr...
appinstance Friday <I> March <I> (week:9 day:<I>), <I>:<I>:<I>
diff --git a/grails-core/src/main/groovy/org/codehaus/groovy/grails/exceptions/DefaultStackTraceFilterer.java b/grails-core/src/main/groovy/org/codehaus/groovy/grails/exceptions/DefaultStackTraceFilterer.java index <HASH>..<HASH> 100644 --- a/grails-core/src/main/groovy/org/codehaus/groovy/grails/exceptions/DefaultStac...
filter resources plugin DevModeSanityFilter by default
diff --git a/lib/less/rhino.js b/lib/less/rhino.js index <HASH>..<HASH> 100644 --- a/lib/less/rhino.js +++ b/lib/less/rhino.js @@ -188,14 +188,15 @@ function writeFile(filename, content) { return false; } - if (match = arg.match(/^--?([a-z][0-9a-z-]*)(?:=(.*))?$/i)) { arg = match[1] } // ...
fixed some jshint errors
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -1,3 +1,5 @@ +#!/usr/bin/env/node + import modules from './modules/'; import MupAPI from './mup-api'; import checkUpdates from './updates';
Add hash-bang line to cli file
diff --git a/src/Piano.js b/src/Piano.js index <HASH>..<HASH> 100644 --- a/src/Piano.js +++ b/src/Piano.js @@ -27,7 +27,7 @@ class Piano extends React.Component { }; state = { - activeNotes: [], + activeNotes: this.props.activeNotes || [], }; componentDidUpdate(prevProps) {
make Piano use activeNotes prop for initial state
diff --git a/spyderlib/plugins/externalconsole.py b/spyderlib/plugins/externalconsole.py index <HASH>..<HASH> 100644 --- a/spyderlib/plugins/externalconsole.py +++ b/spyderlib/plugins/externalconsole.py @@ -519,7 +519,7 @@ class ExternalConsole(SpyderPluginWidget): _("You can't close an ...
Console: Fix minor wording in the message shown when trying to close an IPython kernel
diff --git a/rpc/args.go b/rpc/args.go index <HASH>..<HASH> 100644 --- a/rpc/args.go +++ b/rpc/args.go @@ -1061,7 +1061,7 @@ func (args *WhisperFilterArgs) UnmarshalJSON(b []byte) (err error) { for idx, field := range list { switch value := field.(type) { case nil: - topics[idx] = []string{""} + topics...
rpc: use nil topic wildcards instead of ""
diff --git a/src/jamesiarmes/PhpEws/Client.php b/src/jamesiarmes/PhpEws/Client.php index <HASH>..<HASH> 100644 --- a/src/jamesiarmes/PhpEws/Client.php +++ b/src/jamesiarmes/PhpEws/Client.php @@ -950,6 +950,22 @@ class Client } /** + * Retrieves configuration information for the specified type of service...
Added GetServiceConfiguration operation.
diff --git a/etcdserver/server.go b/etcdserver/server.go index <HASH>..<HASH> 100644 --- a/etcdserver/server.go +++ b/etcdserver/server.go @@ -734,7 +734,7 @@ func (s *EtcdServer) start() { s.applyWait = wait.NewTimeList() s.done = make(chan struct{}) s.stop = make(chan struct{}) - s.stopping = make(chan struct{}...
server: use buffered channel to avoid goroutine leak (#<I>)
diff --git a/manifest.go b/manifest.go index <HASH>..<HASH> 100644 --- a/manifest.go +++ b/manifest.go @@ -323,11 +323,23 @@ func (m *Manifest) FetchDependency(dep Dependency, outputFile string) error { return nil } +func (m *Manifest) entrySupportsCurrentStack(entry *ManifestEntry) bool { + stack := os.Getenv("CF...
Filter dependencies based on their stack
diff --git a/package.php b/package.php index <HASH>..<HASH> 100644 --- a/package.php +++ b/package.php @@ -4,7 +4,7 @@ require_once 'PEAR/PackageFileManager2.php'; -$version = '1.4.118'; +$version = '1.4.119'; $notes = <<<EOT No release notes for you! EOT;
prepare for release of <I> svn commit r<I>
diff --git a/lib/chars/chars.rb b/lib/chars/chars.rb index <HASH>..<HASH> 100644 --- a/lib/chars/chars.rb +++ b/lib/chars/chars.rb @@ -41,7 +41,7 @@ module Chars ] # The space character set - SPACE = CharSet.new(' ', "\f", "\n", "\r", "\t", "\v") + SPACE = CharSet[' ', "\f", "\n", "\r", "\t", "\v"] # The...
Use CharSet[] to initialize the char sets.
diff --git a/pytablewriter/style/_cell.py b/pytablewriter/style/_cell.py index <HASH>..<HASH> 100644 --- a/pytablewriter/style/_cell.py +++ b/pytablewriter/style/_cell.py @@ -10,3 +10,10 @@ class Cell: self.col = col self.value = value self.default_style = default_style + + def is_header_r...
Add is_header_row method to Cell class
diff --git a/lib/dpl/providers/lambda.rb b/lib/dpl/providers/lambda.rb index <HASH>..<HASH> 100644 --- a/lib/dpl/providers/lambda.rb +++ b/lib/dpl/providers/lambda.rb @@ -164,7 +164,7 @@ module Dpl end def split_vars(vars) - vars.map { |var| var.split('=') }.to_h + vars.map { |var|...
port <I> (preserve = in the rhs of env var, lambda)
diff --git a/src/Synapse/ApplicationInitializer.php b/src/Synapse/ApplicationInitializer.php index <HASH>..<HASH> 100644 --- a/src/Synapse/ApplicationInitializer.php +++ b/src/Synapse/ApplicationInitializer.php @@ -11,13 +11,6 @@ use Symfony\Component\Debug\Debug; class ApplicationInitializer { /** - * Appli...
Get application version from init config.
diff --git a/src/Illuminate/Queue/IronQueue.php b/src/Illuminate/Queue/IronQueue.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Queue/IronQueue.php +++ b/src/Illuminate/Queue/IronQueue.php @@ -77,7 +77,7 @@ class IronQueue extends Queue implements QueueInterface { * @param string $queue * @return mixed ...
Add missing tab Whoops, something went wrong here.
diff --git a/html5lib/treewalkers/__init__.py b/html5lib/treewalkers/__init__.py index <HASH>..<HASH> 100644 --- a/html5lib/treewalkers/__init__.py +++ b/html5lib/treewalkers/__init__.py @@ -13,7 +13,7 @@ from __future__ import absolute_import, division, unicode_literals from .. import constants from .._utils import ...
Remove items from __all__ that aren't in the namespace
diff --git a/src/Access/TagPolicy.php b/src/Access/TagPolicy.php index <HASH>..<HASH> 100755 --- a/src/Access/TagPolicy.php +++ b/src/Access/TagPolicy.php @@ -13,7 +13,6 @@ namespace Flarum\Tags\Access; use Flarum\Core\Access\AbstractPolicy; use Flarum\Core\User; use Flarum\Tags\Tag; -use Illuminate\Contracts\Events...
Only allow starting a discussion on a non-restricted tag if the user has the global permission
diff --git a/src/tracing/exporters/console.js b/src/tracing/exporters/console.js index <HASH>..<HASH> 100644 --- a/src/tracing/exporters/console.js +++ b/src/tracing/exporters/console.js @@ -76,7 +76,7 @@ class ConsoleTraceExporter extends BaseTraceExporter { this.printRequest(span.id); // remove old printed ...
fix span removing in console trace exporter
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,13 @@ -from setuptools import setup +from setuptools import setup, find_packages setup(name='dispatch', - version='0.1', + version='0.2.7', description='A publishing platform for modern newspapers'...
Find all packages with find_packages()
diff --git a/packages/openneuro-client/src/datasets.js b/packages/openneuro-client/src/datasets.js index <HASH>..<HASH> 100644 --- a/packages/openneuro-client/src/datasets.js +++ b/packages/openneuro-client/src/datasets.js @@ -107,3 +107,9 @@ export const updatePermissions = gql` updatePermissions(datasetId: $data...
removePermissions added to openneuro-client shared mutations
diff --git a/src/views/site/lockscreen.php b/src/views/site/lockscreen.php index <HASH>..<HASH> 100644 --- a/src/views/site/lockscreen.php +++ b/src/views/site/lockscreen.php @@ -24,8 +24,8 @@ $this->title = 'Lockscreen'; <!-- /.lockscreen-image --> <!-- lockscreen credentials (contains the form) --> - <...
used /site/back to return to site
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,8 @@ # python setup.py sdist # # To install distribution in current venv: -# pip install -U dist/elfstonelib-a.b.c.tar.gz +# pip install -U dist/pyudmx-x.y.z.tar.gz +# where x.y.z is the version number (e.g. 1.0...
Correct comment explaining how to install package into a venv.
diff --git a/app/models/agents/twitter_stream_agent.rb b/app/models/agents/twitter_stream_agent.rb index <HASH>..<HASH> 100644 --- a/app/models/agents/twitter_stream_agent.rb +++ b/app/models/agents/twitter_stream_agent.rb @@ -125,13 +125,13 @@ module Agents end def self.setup_worker - if Agents::Twitt...
TwitterStream only run dependency check when agents are configured Fixes #<I>
diff --git a/lib/puppet/interface/option_builder.rb b/lib/puppet/interface/option_builder.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/interface/option_builder.rb +++ b/lib/puppet/interface/option_builder.rb @@ -19,7 +19,7 @@ class Puppet::Interface::OptionBuilder Puppet::Interface::Option.instance_methods.grep(/...
(#<I>) Fix string method sub call on a symbol for Ruby <I> Ruby <I> is less forgiving about treating symbols like strings.
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 @@ -310,7 +310,8 @@ class ClassicalCalculator(base.HazardCalculator): self.datastore['csm_info'] = self.csm_info...
Fixed num_cores in classical [skip CI]
diff --git a/transport/http/src/main/java/org/kaazing/gateway/transport/http/HttpConnectProcessor.java b/transport/http/src/main/java/org/kaazing/gateway/transport/http/HttpConnectProcessor.java index <HASH>..<HASH> 100644 --- a/transport/http/src/main/java/org/kaazing/gateway/transport/http/HttpConnectProcessor.java +...
Added the request URI to the HttpRequestMessage from the path of the remote address
diff --git a/pkg/printers/common.go b/pkg/printers/common.go index <HASH>..<HASH> 100644 --- a/pkg/printers/common.go +++ b/pkg/printers/common.go @@ -34,7 +34,7 @@ func ShortHumanDuration(d time.Duration) string { return fmt.Sprintf("%dm", minutes) } else if hours := int(d.Hours()); hours < 24 { return fmt.Spr...
Fixed a tiny issue for ShortHumanDuration printer. Fixed a tiny issue for ShortHumanDuration printer to avoid "0y" message.
diff --git a/lib/rake-pipeline-web-filters/sass_filter.rb b/lib/rake-pipeline-web-filters/sass_filter.rb index <HASH>..<HASH> 100644 --- a/lib/rake-pipeline-web-filters/sass_filter.rb +++ b/lib/rake-pipeline-web-filters/sass_filter.rb @@ -63,14 +63,24 @@ module Rake::Pipeline::Web::Filters end.flatten end ...
Overwrite generate_rake_tasks method to avoid repeated searching in additional load path for every file in filter
diff --git a/tests/test_cli.py b/tests/test_cli.py index <HASH>..<HASH> 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -19,6 +19,7 @@ from tests.constants import test_bel_simple, mock_bel_resources, test_bel_thorou log = logging.getLogger(__name__) +@unittest.skipUnless('PYBEL_TEST_THOROUGH' in os.envir...
Remove CLI testing Will have to resume later
diff --git a/src/java/org/archive/wayback/accesscontrol/AdministrativeExclusionServlet.java b/src/java/org/archive/wayback/accesscontrol/AdministrativeExclusionServlet.java index <HASH>..<HASH> 100644 --- a/src/java/org/archive/wayback/accesscontrol/AdministrativeExclusionServlet.java +++ b/src/java/org/archive/wayback...
BUGFIX: (unreported) was not handling newly thrown database exception on put() git-svn-id: <URL>
diff --git a/protocol-servlet/src/test/java/org/jboss/arquillian/protocol/servlet/ProtocolTestCase.java b/protocol-servlet/src/test/java/org/jboss/arquillian/protocol/servlet/ProtocolTestCase.java index <HASH>..<HASH> 100644 --- a/protocol-servlet/src/test/java/org/jboss/arquillian/protocol/servlet/ProtocolTestCase.jav...
ARQ-<I> Updated protocol name
diff --git a/testsuite/run_cim_operations.py b/testsuite/run_cim_operations.py index <HASH>..<HASH> 100755 --- a/testsuite/run_cim_operations.py +++ b/testsuite/run_cim_operations.py @@ -3337,6 +3337,7 @@ class ClassOperations(ClientClassTest): type='uint8')}) ...
Add comment as to why we set propagated
diff --git a/new_english/bin/restintercept.py b/new_english/bin/restintercept.py index <HASH>..<HASH> 100755 --- a/new_english/bin/restintercept.py +++ b/new_english/bin/restintercept.py @@ -694,7 +694,9 @@ class JsonProxyRestHandler(splunk.rest.BaseRestHandler): self.response.setStatus(status) self.r...
Make new_english www-authenticate behavior (SPL-<I>) Don't send www-authenticate if Authorization: Splunk* header is in.
diff --git a/tests/test_repository_mining.py b/tests/test_repository_mining.py index <HASH>..<HASH> 100644 --- a/tests/test_repository_mining.py +++ b/tests/test_repository_mining.py @@ -189,10 +189,10 @@ def test_ignore_add_whitespaces_and_changed_file(): def test_clone_repo_to(): - tmp_folder = tempfile.Tempo...
in the attempt to fix python <I> on Windows. Using tempdirectory as a context manager
diff --git a/tests/functional/contexts/FeatureContext.php b/tests/functional/contexts/FeatureContext.php index <HASH>..<HASH> 100644 --- a/tests/functional/contexts/FeatureContext.php +++ b/tests/functional/contexts/FeatureContext.php @@ -38,7 +38,6 @@ class FeatureContext implements Context, SnippetAcceptingContext ...
Fix coding standards violation in functional tests Removed empty line before closing brace to fix Code Sniff violation.
diff --git a/src/Capsule.php b/src/Capsule.php index <HASH>..<HASH> 100644 --- a/src/Capsule.php +++ b/src/Capsule.php @@ -21,6 +21,16 @@ class Capsule implements \ArrayAccess private $granules = []; /** + * Constructor. + * + * @param array $initialData The initial data. + */ + public fu...
Added constructor with initial data in Capsule
diff --git a/plugins/item_licenses/server/__init__.py b/plugins/item_licenses/server/__init__.py index <HASH>..<HASH> 100644 --- a/plugins/item_licenses/server/__init__.py +++ b/plugins/item_licenses/server/__init__.py @@ -30,15 +30,15 @@ from .rest import getLicenses def validateString(value): """ - Make su...
Validate string as unicode consistently across Python versions
diff --git a/src/Tappleby/OAuth2/Repositories/RefreshTokenRepositoryEloquent.php b/src/Tappleby/OAuth2/Repositories/RefreshTokenRepositoryEloquent.php index <HASH>..<HASH> 100644 --- a/src/Tappleby/OAuth2/Repositories/RefreshTokenRepositoryEloquent.php +++ b/src/Tappleby/OAuth2/Repositories/RefreshTokenRepositoryEloque...
No longer to to switch key of refresh token.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -64,7 +64,7 @@ module.exports = function(options) { } ses.sendEmail({ - Source: "events@webmaker.org", + Source: "Webmaker <events@webmaker.org>", Destination: { To...
Fix bug <I> - Send emails from Webmaker
diff --git a/pyphi/network.py b/pyphi/network.py index <HASH>..<HASH> 100644 --- a/pyphi/network.py +++ b/pyphi/network.py @@ -109,7 +109,6 @@ class Network: def __init__(self, tpm, connectivity_matrix=None, node_labels=None, perturb_vector=None, purview_cache=None): self.tpm = tpm - ...
Compute `Network.size` dynamically
diff --git a/lib/mongo/server/connection_pool.rb b/lib/mongo/server/connection_pool.rb index <HASH>..<HASH> 100644 --- a/lib/mongo/server/connection_pool.rb +++ b/lib/mongo/server/connection_pool.rb @@ -383,6 +383,12 @@ module Mongo Monitoring::Event::Cmap::ConnectionCheckedOut.new(@server.address, connectio...
verify connection pool does not check out disconnected connections when linting (#<I>)
diff --git a/bundles/org.eclipse.orion.client.javascript/web/tern/plugin/modules.js b/bundles/org.eclipse.orion.client.javascript/web/tern/plugin/modules.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.javascript/web/tern/plugin/modules.js +++ b/bundles/org.eclipse.orion.client.javascript/web/tern...
Bug <I> - [regression] We need to add back support for tagging module names to resolved files in Tern - part one
diff --git a/examples/docgen/docs/.vuepress/config.js b/examples/docgen/docs/.vuepress/config.js index <HASH>..<HASH> 100644 --- a/examples/docgen/docs/.vuepress/config.js +++ b/examples/docgen/docs/.vuepress/config.js @@ -15,6 +15,7 @@ module.exports = async () => { ) return { + base: "/docgen/", dest: path....
docs: repair docgen example
diff --git a/chess/variant.py b/chess/variant.py index <HASH>..<HASH> 100644 --- a/chess/variant.py +++ b/chess/variant.py @@ -295,7 +295,7 @@ class AtomicBoard(chess.Board): yield move def status(self): - status = super(SuicideBoard, self).status() + status = super(AtomicBoard, se...
More coding style fixes by flake8
diff --git a/lib/on_membership_event.js b/lib/on_membership_event.js index <HASH>..<HASH> 100644 --- a/lib/on_membership_event.js +++ b/lib/on_membership_event.js @@ -21,7 +21,7 @@ var Member = require('./membership/member.js'); var MembershipEvents = require('./membership/events.js'); -var RingEvents = require('.....
Wrong path to ./ring/events
diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -1,6 +1,6 @@ class HomeController < ApplicationController def index - @count = Rubygem.total_count + @count = Ve...
Use Version.latest.count instead of total_count since AR hates DISTINCT
diff --git a/zap/src/main/java/org/parosproxy/paros/view/AbstractFrame.java b/zap/src/main/java/org/parosproxy/paros/view/AbstractFrame.java index <HASH>..<HASH> 100644 --- a/zap/src/main/java/org/parosproxy/paros/view/AbstractFrame.java +++ b/zap/src/main/java/org/parosproxy/paros/view/AbstractFrame.java @@ -25,6 +25,...
Allow to instantiate AbstractFrame Do not require to extend the class to use it, it's not needed.
diff --git a/src/angular-ui-query-builder-tables.js b/src/angular-ui-query-builder-tables.js index <HASH>..<HASH> 100644 --- a/src/angular-ui-query-builder-tables.js +++ b/src/angular-ui-query-builder-tables.js @@ -440,7 +440,7 @@ angular.module('angular-ui-query-builder') of {{showRange.total | number}} ...
BUGFIX: Dont show page display if there is only one page within the range anyway
diff --git a/src/Charcoal/Object/RoutableTrait.php b/src/Charcoal/Object/RoutableTrait.php index <HASH>..<HASH> 100644 --- a/src/Charcoal/Object/RoutableTrait.php +++ b/src/Charcoal/Object/RoutableTrait.php @@ -423,6 +423,7 @@ trait RoutableTrait $objectRoute->setData($data); $objectRoute->s...
Set lang to objectRoute.
diff --git a/pylint/checkers/base.py b/pylint/checkers/base.py index <HASH>..<HASH> 100644 --- a/pylint/checkers/base.py +++ b/pylint/checkers/base.py @@ -137,6 +137,10 @@ TYPE_QNAME = "%s.type" % BUILTINS PY33 = sys.version_info >= (3, 3) PY3K = sys.version_info >= (3, 0) PY35 = sys.version_info >= (3, 5) +ABC_META...
abstract-class-instantiated accounts for _py_abc.ABCMeta for Python <I>
diff --git a/galpy/potential_src/plotRotcurve.py b/galpy/potential_src/plotRotcurve.py index <HASH>..<HASH> 100644 --- a/galpy/potential_src/plotRotcurve.py +++ b/galpy/potential_src/plotRotcurve.py @@ -89,14 +89,8 @@ def calcRotcurve(Pot,Rs): grid=1 Rs= nu.array([Rs]) rotcurve= nu.zeros(grid) - ...
rewrite calcRotcurve
diff --git a/javascript/node/selenium-webdriver/http/index.js b/javascript/node/selenium-webdriver/http/index.js index <HASH>..<HASH> 100644 --- a/javascript/node/selenium-webdriver/http/index.js +++ b/javascript/node/selenium-webdriver/http/index.js @@ -213,6 +213,7 @@ function sendRequest(options, onOk, onError, opt_...
fix(nodejs): include auth in same domain redirects (#<I>)
diff --git a/src/bg/passwords.php b/src/bg/passwords.php index <HASH>..<HASH> 100644 --- a/src/bg/passwords.php +++ b/src/bg/passwords.php @@ -14,7 +14,7 @@ return [ 'reset' => 'Паролата е нулирана!', 'sent' => 'Изпратено е напомняне за вашата парола!', - 'throttled' => 'Моля изчакайте преди да ...
[bg] Update password.php throttled translation
diff --git a/lib/beanstalkd_view/beanstalkd_utils.rb b/lib/beanstalkd_view/beanstalkd_utils.rb index <HASH>..<HASH> 100644 --- a/lib/beanstalkd_view/beanstalkd_utils.rb +++ b/lib/beanstalkd_view/beanstalkd_utils.rb @@ -12,7 +12,7 @@ module BeanstalkdView def beanstalk_url return @@url if defined?(@@url) a...
Use <I> as the default host instead of localhost This should be used to avoid connection refused exceptions when trying to connect to IPv6 socket (since there is no code to handle ipv4 fallback).
diff --git a/middleware.go b/middleware.go index <HASH>..<HASH> 100644 --- a/middleware.go +++ b/middleware.go @@ -2,7 +2,6 @@ package req import ( "bytes" - "github.com/imroc/req/v3/internal/util" "io" "io/ioutil" "mime/multipart" @@ -14,6 +13,8 @@ import ( "reflect" "strings" "time" + + "github.com/i...
:bug: Fix non-pointer panic
diff --git a/skeleton.go b/skeleton.go index <HASH>..<HASH> 100644 --- a/skeleton.go +++ b/skeleton.go @@ -50,11 +50,11 @@ type conversation interface { } func (c *context) send(message []byte) { - // Dummy for now + // FIXME Dummy for now } func (c *context) receive() []byte { - // Dummy for now + // FIXME Dum...
Silly change to test CI config
diff --git a/pep8ify/pep8ify.py b/pep8ify/pep8ify.py index <HASH>..<HASH> 100755 --- a/pep8ify/pep8ify.py +++ b/pep8ify/pep8ify.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from lib2to3.main import main +import lib2to3.main try: import pep8ify.fixes @@ -14,7 +14,7 @@ except ImportError: def _main(): - r...
Clean-up: Use lib2to3.main.main qualified. Calling just `main(...)` is a bit irritating.
diff --git a/js/src/composer-autocomplete.js b/js/src/composer-autocomplete.js index <HASH>..<HASH> 100644 --- a/js/src/composer-autocomplete.js +++ b/js/src/composer-autocomplete.js @@ -152,15 +152,17 @@ export default function() { dropdown.active(true); clearTimeout(searchTimeout); - ...
No need to query the API about nothing
diff --git a/script/wee.chain.js b/script/wee.chain.js index <HASH>..<HASH> 100644 --- a/script/wee.chain.js +++ b/script/wee.chain.js @@ -83,6 +83,8 @@ */ each: function(fn, options) { W.$each(this, fn, options); + + return this; }, /**
Return Wee instance from chained each()
diff --git a/thinc/config.py b/thinc/config.py index <HASH>..<HASH> 100644 --- a/thinc/config.py +++ b/thinc/config.py @@ -316,7 +316,7 @@ class registry(object): # Handle spread arguments and use their annotation as Sequence[whatever] if param.kind == param.VAR_POSITIONAL: sp...
Don't make positional __args__ required if present Functions can totally define variable *args and not have any passed in
diff --git a/test/tests/OutputChannel.test.js b/test/tests/OutputChannel.test.js index <HASH>..<HASH> 100644 --- a/test/tests/OutputChannel.test.js +++ b/test/tests/OutputChannel.test.js @@ -185,4 +185,28 @@ describe("OutputChannel Object", function() { }); + describe("resetAllControllers()", function () { + + ...
Add tests for resetAllControllers() method
diff --git a/lib/search_engine.py b/lib/search_engine.py index <HASH>..<HASH> 100644 --- a/lib/search_engine.py +++ b/lib/search_engine.py @@ -2320,6 +2320,7 @@ def print_records(req, recIDs, jrec=1, rg=10, format='hb', ot='', ln=cdslang, re epilogue=format_epilogue, ...
When using the new format_records() function, set the record_separator argument to newline, fixing joined format nuisance formatting such as "</record><record>" in the search engine MARCXML output.
diff --git a/voice.go b/voice.go index <HASH>..<HASH> 100644 --- a/voice.go +++ b/voice.go @@ -135,7 +135,6 @@ func (v *VoiceConnection) ChangeChannel(channelID string, mute, deaf bool) (err // Disconnect disconnects from this voice channel and closes the websocket // and udp connections to Discord. -// !!! NOTE !...
Update Disconnect() comment It looks like dgo has moved away from ChannelVoiceLeave ever since discord allows bot to connect to more than one channel. Confusing comment seeing that it is very hard to find information about the function that it mentions.
diff --git a/specs-go/v1/layout.go b/specs-go/v1/layout.go index <HASH>..<HASH> 100644 --- a/specs-go/v1/layout.go +++ b/specs-go/v1/layout.go @@ -14,8 +14,6 @@ package v1 -import "regexp" - // ImageLayoutVersion is the version of ImageLayout const ImageLayoutVersion = "1.0.0" @@ -24,8 +22,3 @@ const ImageLayo...
specs-go/v1/layout: Remove RefsRegexp The restriction on names was removed by <I>a6be (image-layout: ./refs/ -> index.json, <I>-<I>-<I>, #<I>) and the replacement (org.opencontainers.ref.name) has no equivalent limitation.
diff --git a/src/Driver/Element/Wpphp/UserElement.php b/src/Driver/Element/Wpphp/UserElement.php index <HASH>..<HASH> 100644 --- a/src/Driver/Element/Wpphp/UserElement.php +++ b/src/Driver/Element/Wpphp/UserElement.php @@ -27,7 +27,7 @@ class UserElement extends BaseElement throw new UnexpectedValueExcepti...
Effect the user failure fix for the WPPHP driver also The wpphp user element class was attempting to access $user->id where $user was already the id of the user in question. As such a `Trying to get property of non-object` error was thrown. The create user method now simply access $user.
diff --git a/simple_elasticsearch/management/commands/es_manage.py b/simple_elasticsearch/management/commands/es_manage.py index <HASH>..<HASH> 100644 --- a/simple_elasticsearch/management/commands/es_manage.py +++ b/simple_elasticsearch/management/commands/es_manage.py @@ -5,6 +5,17 @@ from django.core.management.base...
Adding a 'flushing' sys.stdout wrapper to help with some command line text output.
diff --git a/lib/docusign_rest/client.rb b/lib/docusign_rest/client.rb index <HASH>..<HASH> 100644 --- a/lib/docusign_rest/client.rb +++ b/lib/docusign_rest/client.rb @@ -354,7 +354,7 @@ module DocusignRest listTabs: get_tabs(signer[:list_tabs], options, index), noteTabs: n...
Added support for the Radio Group Tab. Fixes jondkinney/docusign_rest#<I>
diff --git a/tasks/save.js b/tasks/save.js index <HASH>..<HASH> 100644 --- a/tasks/save.js +++ b/tasks/save.js @@ -36,7 +36,7 @@ function save(name, src = path.resolve(), options) { filter: pathToCopy => { const match = pathToCopy.match(/node_modules$|.git$/); if (match) { - console.lo...
Add dim modifier to filtered and removed content logs
diff --git a/frigg_worker/fetcher.py b/frigg_worker/fetcher.py index <HASH>..<HASH> 100644 --- a/frigg_worker/fetcher.py +++ b/frigg_worker/fetcher.py @@ -123,5 +123,5 @@ def upgrade(): pip.main(['install', '-U', 'frigg-worker']) pip.main(['install', '-U', 'frigg-settings']) pip.main(['install', '-U', 'f...
fix(deps): Set correct ref to docker-wrapper in fetcher
diff --git a/version.py b/version.py index <HASH>..<HASH> 100644 --- a/version.py +++ b/version.py @@ -4,7 +4,7 @@ _version_major = 0 _version_minor = 1 _version_micro = '' # use '' for first of series, number for 1 and above -_version_extra = 'dev' +_version_extra = 'rc1' #_version_extra = '' # Uncomment this fo...
Making a release candidate to test installation through pip.
diff --git a/jax/experimental/jax2tf/tests/primitive_harness.py b/jax/experimental/jax2tf/tests/primitive_harness.py index <HASH>..<HASH> 100644 --- a/jax/experimental/jax2tf/tests/primitive_harness.py +++ b/jax/experimental/jax2tf/tests/primitive_harness.py @@ -905,10 +905,10 @@ lax_conv_general_dilated = tuple( # Val...
[jax2tf] Disable some convolution tests (#<I>)
diff --git a/lib/oneview-sdk/resource/api800/synergy/server_hardware_type.rb b/lib/oneview-sdk/resource/api800/synergy/server_hardware_type.rb index <HASH>..<HASH> 100644 --- a/lib/oneview-sdk/resource/api800/synergy/server_hardware_type.rb +++ b/lib/oneview-sdk/resource/api800/synergy/server_hardware_type.rb @@ -15,7 ...
Removing whitespaces from server hardware type File
diff --git a/src/utils/ui/create-publishable-api-keys-ui.js b/src/utils/ui/create-publishable-api-keys-ui.js index <HASH>..<HASH> 100644 --- a/src/utils/ui/create-publishable-api-keys-ui.js +++ b/src/utils/ui/create-publishable-api-keys-ui.js @@ -148,7 +148,7 @@ export default function createPublishableApiKeysUi (a, b)...
Removed quotes from allowed domains example
diff --git a/dvc/version.py b/dvc/version.py index <HASH>..<HASH> 100644 --- a/dvc/version.py +++ b/dvc/version.py @@ -6,7 +6,7 @@ import os import subprocess -_BASE_VERSION = "2.0.0a0" +_BASE_VERSION = "2.0.0a1" def _generate_version(base_version):
dvc: bump to <I>a1
diff --git a/lib/spear/resource/talent_network.rb b/lib/spear/resource/talent_network.rb index <HASH>..<HASH> 100644 --- a/lib/spear/resource/talent_network.rb +++ b/lib/spear/resource/talent_network.rb @@ -5,12 +5,12 @@ module Spear raise Spear::ParametersRequired.new('TalentNetworkDID') if talent_network_did...
fix tn api create member bug.