diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/wsgiservice/resource.py b/wsgiservice/resource.py index <HASH>..<HASH> 100644 --- a/wsgiservice/resource.py +++ b/wsgiservice/resource.py @@ -207,7 +207,7 @@ class Resource(object): else: self.response.vary.append('Accept') types = [mime for ext, mime in self.EXTENSION_MAP] -...
Replace first_match with best_match. first_match has been deprecated since WebOb <I>b1.
diff --git a/synapse/tests/test_lib_config.py b/synapse/tests/test_lib_config.py index <HASH>..<HASH> 100644 --- a/synapse/tests/test_lib_config.py +++ b/synapse/tests/test_lib_config.py @@ -115,8 +115,20 @@ class ConfTest(SynTest): with self.getTestDir() as fdir: fp0 = os.path.join(fdir, 'c0.json...
Add test coverage for loadConfPath
diff --git a/src/main/java/org/jboss/remotingjmx/protocol/v2/ServerCommon.java b/src/main/java/org/jboss/remotingjmx/protocol/v2/ServerCommon.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jboss/remotingjmx/protocol/v2/ServerCommon.java +++ b/src/main/java/org/jboss/remotingjmx/protocol/v2/ServerCommon.java @...
[REMJMX-<I>] Always reuse serverMessageInterceptor when closing channel so proper security identity is set up.
diff --git a/src/main/java/com/squareup/thumbor/ThumborUrl.java b/src/main/java/com/squareup/thumbor/ThumborUrl.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/squareup/thumbor/ThumborUrl.java +++ b/src/main/java/com/squareup/thumbor/ThumborUrl.java @@ -345,7 +345,12 @@ public final class ThumborUrl { // ...
Stylisting tweak to match other build methods.
diff --git a/metrics-core/src/main/java/com/codahale/metrics/Clock.java b/metrics-core/src/main/java/com/codahale/metrics/Clock.java index <HASH>..<HASH> 100644 --- a/metrics-core/src/main/java/com/codahale/metrics/Clock.java +++ b/metrics-core/src/main/java/com/codahale/metrics/Clock.java @@ -20,8 +20,6 @@ public abst...
Move the default UserTimeClock to a holder class This allows to avoid a deadlock when the user creates a new UserTimeClock by hand. By creating a holder class we defer the resolution of UserTimeClock class in the Clock class until the `defaultClock` method invocation, rather than classloading.
diff --git a/scapy/contrib/mpls.py b/scapy/contrib/mpls.py index <HASH>..<HASH> 100644 --- a/scapy/contrib/mpls.py +++ b/scapy/contrib/mpls.py @@ -17,7 +17,7 @@ from scapy.packet import Packet, bind_layers, Padding from scapy.fields import BitField, ByteField, ShortField -from scapy.layers.inet import IP +from scap...
adding support for MPLS over UDP
diff --git a/spacy/cli/package.py b/spacy/cli/package.py index <HASH>..<HASH> 100644 --- a/spacy/cli/package.py +++ b/spacy/cli/package.py @@ -16,8 +16,8 @@ def package(input_dir, output_dir, force): check_dirs(input_path, output_path) template_setup = get_template('setup.py') + template_manifest = get_t...
Fetch MANIFEST.in from GitHub as well
diff --git a/cmd/influxd/launcher/query_test.go b/cmd/influxd/launcher/query_test.go index <HASH>..<HASH> 100644 --- a/cmd/influxd/launcher/query_test.go +++ b/cmd/influxd/launcher/query_test.go @@ -44,8 +44,8 @@ mem,server=b value=45.2`)) } rawQ := fmt.Sprintf(`from(bucket:"%s") - |> filter(fn: (r) => r._measure...
test(launcher): fix ill-formatted query; range must come before filter Until <URL>
diff --git a/src/main/java/com/thinkaurelius/faunus/formats/rexster/FaunusRexsterExtension.java b/src/main/java/com/thinkaurelius/faunus/formats/rexster/FaunusRexsterExtension.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/thinkaurelius/faunus/formats/rexster/FaunusRexsterExtension.java +++ b/src/main/java/co...
Changed namespace of kibble to 'faunus'
diff --git a/web/concrete/config/app.php b/web/concrete/config/app.php index <HASH>..<HASH> 100644 --- a/web/concrete/config/app.php +++ b/web/concrete/config/app.php @@ -234,10 +234,7 @@ if (!defined('UPLOAD_FILE_EXTENSIONS_ALLOWED')) { } else { define('UPLOAD_FILE_EXTENSIONS_CONFIGURABLE', false); } -<<<<<<< HEAD...
resolved cherry-pick conflict Former-commit-id: c2f<I>c<I>d6a<I>c9ad<I>b<I>c3c<I>d2f<I>f
diff --git a/dingo/core/__init__.py b/dingo/core/__init__.py index <HASH>..<HASH> 100644 --- a/dingo/core/__init__.py +++ b/dingo/core/__init__.py @@ -692,6 +692,16 @@ class NetworkDingo: for grid_district in self.mv_grid_districts(): grid_district.mv_grid.routing(debug, anim) + def connect_g...
add call method for connecting generators to NetworkDingo class
diff --git a/lib/Server.php b/lib/Server.php index <HASH>..<HASH> 100644 --- a/lib/Server.php +++ b/lib/Server.php @@ -329,6 +329,12 @@ class sspmod_openidProvider_Server { public function loadState($stateId) { assert('is_string($stateId)'); + // sanitize the input + $restartURL = SimpleSAML_Utilities::getURLF...
Followup on previous commits. Use redirectUntrustedURL() as a shortcut, and let everything else make use of redirectTrustedURL(). Move the responsibility to check the input out of the library, to the places where URLs are grabbed from input parameters. git-svn-id: <URL>
diff --git a/lib/namespace.js b/lib/namespace.js index <HASH>..<HASH> 100644 --- a/lib/namespace.js +++ b/lib/namespace.js @@ -141,21 +141,25 @@ Namespace.prototype.add = function(client, fn){ var self = this; this.run(socket, function(err){ process.nextTick(function(){ - if (err) return socket.err(err....
namespace: make sure not to fire `connection` if underlying client closed after `next` is called from a middleware
diff --git a/.karma.conf.js b/.karma.conf.js index <HASH>..<HASH> 100644 --- a/.karma.conf.js +++ b/.karma.conf.js @@ -77,6 +77,31 @@ module.exports = function (config) { // { type: 'text', subdir: '.', file: 'text.txt' }, { type: 'text-summary', subdir: '.', file: 'text-summary.txt' }, ], + ...
test(.karma.conf.js): added code coverage check
diff --git a/Connection.php b/Connection.php index <HASH>..<HASH> 100644 --- a/Connection.php +++ b/Connection.php @@ -424,7 +424,10 @@ class Connection extends Component CURLOPT_RETURNTRANSFER => false, CURLOPT_HEADER => false, // http://www.php.net/manual/en/function.cur...
<I> (#<I>) * support "gt", ">", "lt", "<", "gte", ">=", "lte" and "<=" operator * reset the curl post fields and post method when resetting the curl handler * Remove deprecated warning "Content type detection for rest requests is deprecated. Specify the content type using the [Content-Type] header"
diff --git a/generators/heroku/index.js b/generators/heroku/index.js index <HASH>..<HASH> 100644 --- a/generators/heroku/index.js +++ b/generators/heroku/index.js @@ -191,28 +191,7 @@ module.exports = class extends BaseBlueprintGenerator { type: 'list', name: 'herokuJavaVersion', ...
support jdk<I> with heroku sub gen
diff --git a/python/ray/tests/test_advanced_9.py b/python/ray/tests/test_advanced_9.py index <HASH>..<HASH> 100644 --- a/python/ray/tests/test_advanced_9.py +++ b/python/ray/tests/test_advanced_9.py @@ -186,6 +186,10 @@ def test_function_table_gc_actor(call_ray_start): wait_for_condition(lambda: function_entry_num...
[core] Skip windows test for adjusting worker OOM score (#<I>) Fixes CI failure introduced in #<I>.
diff --git a/werkzeug/serving.py b/werkzeug/serving.py index <HASH>..<HASH> 100644 --- a/werkzeug/serving.py +++ b/werkzeug/serving.py @@ -481,7 +481,7 @@ def run_simple(hostname, port, application, use_reloader=False, from werkzeug.debug import DebuggedApplication application = DebuggedApplication(ap...
Fixed an import error in the serving support. This fixes #<I>
diff --git a/bolt/spark.py b/bolt/spark.py index <HASH>..<HASH> 100644 --- a/bolt/spark.py +++ b/bolt/spark.py @@ -41,20 +41,27 @@ class BoltArraySpark(BoltArray): Functional operators """ - # TODO make sure that operation preserves shape + # TODO handle shape changes + # TODO add axes def map...
Add todos and reorganize
diff --git a/modules/activiti-engine/src/test/java/org/activiti/engine/test/bpmn/mail/EmailTestCase.java b/modules/activiti-engine/src/test/java/org/activiti/engine/test/bpmn/mail/EmailTestCase.java index <HASH>..<HASH> 100644 --- a/modules/activiti-engine/src/test/java/org/activiti/engine/test/bpmn/mail/EmailTestCase....
(possible) fix for failing email tests
diff --git a/consul/mdb_table.go b/consul/mdb_table.go index <HASH>..<HASH> 100644 --- a/consul/mdb_table.go +++ b/consul/mdb_table.go @@ -28,12 +28,19 @@ const ( using a row id, while maintaining any number of secondary indexes. */ type MDBTable struct { - lastRowID uint64 // Last used rowID - Env *mdb.Env ...
consul: Add a NotifyGroup to the MDBTable
diff --git a/isort/settings.py b/isort/settings.py index <HASH>..<HASH> 100644 --- a/isort/settings.py +++ b/isort/settings.py @@ -402,7 +402,7 @@ def file_should_be_skipped( position = os.path.split(position[0]) for glob in config['skip_glob']: - if fnmatch.fnmatch(filename, glob): + if f...
Fix issue with */ style glob tests
diff --git a/pywws/Plot.py b/pywws/Plot.py index <HASH>..<HASH> 100755 --- a/pywws/Plot.py +++ b/pywws/Plot.py @@ -486,7 +486,7 @@ class BasePlotter(object): self.plot_count = len(plot_list) if self.plot_count < 1: # nothing to plot - self.logger.error('%s has no plot nodes' % ...
Reduce "no plot nodes" message from error to info The pywws.Tasks module always tries graph templates as plots first, before trying them as wind roses if the plot failed. This was generating spurious error messages for a situation that isn't really an error.
diff --git a/bokeh/server/application_context.py b/bokeh/server/application_context.py index <HASH>..<HASH> 100644 --- a/bokeh/server/application_context.py +++ b/bokeh/server/application_context.py @@ -7,6 +7,7 @@ import logging log = logging.getLogger(__name__) from .session import ServerSession +from .exceptions...
Add missing import to server/application_context.py This was only apparent when an error was raised.
diff --git a/labm8/py/dockerutil.py b/labm8/py/dockerutil.py index <HASH>..<HASH> 100644 --- a/labm8/py/dockerutil.py +++ b/labm8/py/dockerutil.py @@ -166,7 +166,9 @@ class BazelPy3Image(object): subprocess.check_call( _Docker(["tag", self.image_name, tmp_name], timeout=60), ) - subprocess.check_cal...
Force removal of docker image. github.com/ChrisCummins/phd/issues/<I>
diff --git a/lib/yard/generators/class_generator.rb b/lib/yard/generators/class_generator.rb index <HASH>..<HASH> 100644 --- a/lib/yard/generators/class_generator.rb +++ b/lib/yard/generators/class_generator.rb @@ -1,6 +1,8 @@ module YARD module Generators class ClassGenerator < Base + before_generate :is...
Add visibility grouping generators to class generator
diff --git a/libcontainer/cgroups/systemd/v2.go b/libcontainer/cgroups/systemd/v2.go index <HASH>..<HASH> 100644 --- a/libcontainer/cgroups/systemd/v2.go +++ b/libcontainer/cgroups/systemd/v2.go @@ -53,6 +53,10 @@ func genV2ResourcesProperties(c *configs.Cgroup) ([]systemdDbus.Property, error) properties = append(pr...
cgroupv2+systemd: set MemoryLow For some reason, this was not set before. Test case is added by the next commit.
diff --git a/eventsourcing/examples/test_parking_lot.py b/eventsourcing/examples/test_parking_lot.py index <HASH>..<HASH> 100644 --- a/eventsourcing/examples/test_parking_lot.py +++ b/eventsourcing/examples/test_parking_lot.py @@ -17,10 +17,10 @@ from eventsourcing.system import NotificationLogReader @dataclass class...
Moved regex to be a class attribute.
diff --git a/core/server/src/main/java/alluxio/master/file/FileSystemMaster.java b/core/server/src/main/java/alluxio/master/file/FileSystemMaster.java index <HASH>..<HASH> 100644 --- a/core/server/src/main/java/alluxio/master/file/FileSystemMaster.java +++ b/core/server/src/main/java/alluxio/master/file/FileSystemMaste...
Update the comment in loadMetadataIfNotExistAndJournal from exisits to exists.
diff --git a/lib/smartcoin/version.rb b/lib/smartcoin/version.rb index <HASH>..<HASH> 100644 --- a/lib/smartcoin/version.rb +++ b/lib/smartcoin/version.rb @@ -1,3 +1,3 @@ module Smartcoin - VERSION = "0.1.2" + VERSION = "0.1.3" end
SmartCoin library version <I>
diff --git a/org.carewebframework.shell/src/main/java/org/carewebframework/shell/layout/UIElementBase.java b/org.carewebframework.shell/src/main/java/org/carewebframework/shell/layout/UIElementBase.java index <HASH>..<HASH> 100644 --- a/org.carewebframework.shell/src/main/java/org/carewebframework/shell/layout/UIElemen...
Make NotifyParent and NotifyChildren public.
diff --git a/jquery-loadTemplate/jquery.loadTemplate-0.5.4.js b/jquery-loadTemplate/jquery.loadTemplate-0.5.4.js index <HASH>..<HASH> 100644 --- a/jquery-loadTemplate/jquery.loadTemplate-0.5.4.js +++ b/jquery-loadTemplate/jquery.loadTemplate-0.5.4.js @@ -229,6 +229,10 @@ $elem.attr("alt", applyFormatters($...
Added support for the "value" attribute (e.g. to fill form fields)
diff --git a/dist/createStore.js b/dist/createStore.js index <HASH>..<HASH> 100644 --- a/dist/createStore.js +++ b/dist/createStore.js @@ -55,9 +55,7 @@ function createStore(modules) { if (module.decorateReducer) moduleReducer = module.decorateReducer(moduleReducer); reducerList[module.name] = moduleReducer; ...
#<I>: fix bug where extra sagas passed in from config were not concatenating to the sagas array
diff --git a/node-binance-api.js b/node-binance-api.js index <HASH>..<HASH> 100644 --- a/node-binance-api.js +++ b/node-binance-api.js @@ -148,7 +148,7 @@ let api = function Binance( options = {} ) { const reqHandler = cb => ( error, response, body ) => { Binance.info.lastRequest = new Date().getTime();...
Fix for "cannot read property 'request' of undefined" during fatal errors
diff --git a/lib/web_translate_it.rb b/lib/web_translate_it.rb index <HASH>..<HASH> 100644 --- a/lib/web_translate_it.rb +++ b/lib/web_translate_it.rb @@ -16,14 +16,14 @@ require 'web_translate_it/command_line' require 'web_translate_it/project' module WebTranslateIt - + def self.fetch_translations config...
do not fetch locales for static requests
diff --git a/tests/test_contentsmanager.py b/tests/test_contentsmanager.py index <HASH>..<HASH> 100644 --- a/tests/test_contentsmanager.py +++ b/tests/test_contentsmanager.py @@ -1667,10 +1667,10 @@ def test_multiple_pairing(tmpdir): model_md = cm.get("notebook.md", content=False, load_alternative_format=False) ...
Seen an example with identical timestamps
diff --git a/spec/factory_bot/factory_spec.rb b/spec/factory_bot/factory_spec.rb index <HASH>..<HASH> 100644 --- a/spec/factory_bot/factory_spec.rb +++ b/spec/factory_bot/factory_spec.rb @@ -14,18 +14,6 @@ describe FactoryBot::Factory do expect(@factory.build_class).to eq @class end - it "passes a custom cre...
Remove unhelpful spec This spec was introduced back in <I>c<I>a1e6, at which point it was testing that the to_create block got passed to a proxy object. A lot has changed since then, and this test is no longer testing anything involving to_create (we can remove the call to to_create and it still passes). It is testing...
diff --git a/src/frontend/org/voltdb/ClientInterface.java b/src/frontend/org/voltdb/ClientInterface.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/ClientInterface.java +++ b/src/frontend/org/voltdb/ClientInterface.java @@ -371,13 +371,10 @@ public class ClientInterface implements SnapshotDaemon.DaemonIn...
Fix a deadlock when accepting new connections.
diff --git a/app/classes/lib.php b/app/classes/lib.php index <HASH>..<HASH> 100644 --- a/app/classes/lib.php +++ b/app/classes/lib.php @@ -879,7 +879,9 @@ function getConfig() // We add these later, because the order is important: By having theme/ourtheme first, // files in that folder will take precedence. F...
Change: removed the entire 'app/extensions/' path from Twig by default. From now on, it's the extensions responsibility to add a path, if its' needed: $this->app['twig.loader.filesystem']->addPath(__DIR__);
diff --git a/assembla/lib.py b/assembla/lib.py index <HASH>..<HASH> 100644 --- a/assembla/lib.py +++ b/assembla/lib.py @@ -11,6 +11,9 @@ class AssemblaObject(object): def __getitem__(self, key): return self.data[key] + def __setitem__(self, key, value): + self.data[key] = value + def keys...
Allow keys to be set (in anticipation of write commands). Better object __repr__() for spaces and tickets.
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -74,6 +74,8 @@ module.exports = function (grunt) { '!extensions/default/*/unittest-files/**/*', '!extensions/default/*/unittests.js', ...
add extensions/dev and extensions/samples to grunt build
diff --git a/lib/parslet/expression.rb b/lib/parslet/expression.rb index <HASH>..<HASH> 100644 --- a/lib/parslet/expression.rb +++ b/lib/parslet/expression.rb @@ -37,8 +37,8 @@ class Parslet::Expression rule(:string) { str('\'') >> ( - (str('\\') >> any) / - (str('\'').absnt? >> any) +...
+ Fixing the new examples with all the new code The treetop parser is experimental and will undergo some changes yet.
diff --git a/src/Http/Middleware/LaravelCaffeineDripMiddleware.php b/src/Http/Middleware/LaravelCaffeineDripMiddleware.php index <HASH>..<HASH> 100644 --- a/src/Http/Middleware/LaravelCaffeineDripMiddleware.php +++ b/src/Http/Middleware/LaravelCaffeineDripMiddleware.php @@ -47,6 +47,13 @@ class LaravelCaffeineDripMiddl...
Added functionality to account for missing body or html closing tags, thanks @tontonsb
diff --git a/service/s3/customizations.go b/service/s3/customizations.go index <HASH>..<HASH> 100644 --- a/service/s3/customizations.go +++ b/service/s3/customizations.go @@ -21,7 +21,7 @@ func init() { initRequest = func(r *request.Request) { switch r.Operation.Name { - case opPutBucketCors, opPutBucketLifecyc...
service/s3: Add Content-MD5 for PutBucketReplication Adds customizations to the S3 service client for generating MD5 for the PutBucketReplication operation. Fix #<I>
diff --git a/varify/samples/management/subcommands/queue.py b/varify/samples/management/subcommands/queue.py index <HASH>..<HASH> 100644 --- a/varify/samples/management/subcommands/queue.py +++ b/varify/samples/management/subcommands/queue.py @@ -9,7 +9,7 @@ from varify.samples.pipeline.handlers import load_samples ...
Use __name__ over __file__ in queue logger
diff --git a/worker/bridge.js b/worker/bridge.js index <HASH>..<HASH> 100644 --- a/worker/bridge.js +++ b/worker/bridge.js @@ -1,10 +1,6 @@ import PromiseWorker from 'promise-worker'; -const uri = process.env.NODE_ENV === 'development' ? - '/panels-worker.js' : - 'https://cdn.uxtemple.com/panels-worker.js'; - -con...
fix: always load worker from /panels-worker.js
diff --git a/cake/tests/cases/console/console_output.test.php b/cake/tests/cases/console/console_output.test.php index <HASH>..<HASH> 100644 --- a/cake/tests/cases/console/console_output.test.php +++ b/cake/tests/cases/console/console_output.test.php @@ -200,12 +200,4 @@ class ConsoleOutputTest extends CakeTestCase { ...
Removing a test that doesn't need to be implemented.
diff --git a/src/Command/DaemonCommand.php b/src/Command/DaemonCommand.php index <HASH>..<HASH> 100644 --- a/src/Command/DaemonCommand.php +++ b/src/Command/DaemonCommand.php @@ -91,16 +91,11 @@ class DaemonCommand extends BackgroundCommand try { $output->writeln('Daemon executing main process.');...
Use `finally` to remove duplication
diff --git a/lib/haml/version.rb b/lib/haml/version.rb index <HASH>..<HASH> 100644 --- a/lib/haml/version.rb +++ b/lib/haml/version.rb @@ -1,3 +1,3 @@ module Haml - VERSION = "3.2.0.alpha.14" + VERSION = "4.0.0.alpha.0" end
Bump to <I>.alpha<I> Note that I've just branch 3-2-stable from master, after a few beta RC's it will become stable. <I> will not be released for at least 6 more months, so don't mistake this for tangible progress on <I>; it's just housekeeping.
diff --git a/src/Symfony/Bridge/PhpUnit/SymfonyTestsListener.php b/src/Symfony/Bridge/PhpUnit/SymfonyTestsListener.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Bridge/PhpUnit/SymfonyTestsListener.php +++ b/src/Symfony/Bridge/PhpUnit/SymfonyTestsListener.php @@ -186,6 +186,10 @@ class SymfonyTestsListener extends \...
Count @expectedDeprecation as an assertion
diff --git a/lib/billy/ssl/certificate_helpers.rb b/lib/billy/ssl/certificate_helpers.rb index <HASH>..<HASH> 100644 --- a/lib/billy/ssl/certificate_helpers.rb +++ b/lib/billy/ssl/certificate_helpers.rb @@ -27,7 +27,7 @@ module Billy # and ensure the location is safely created. Pass # back the resulting path....
Include pid in names of temporary files (#<I>)
diff --git a/src/main/java/org/cp/elements/lang/SystemUtils.java b/src/main/java/org/cp/elements/lang/SystemUtils.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/cp/elements/lang/SystemUtils.java +++ b/src/main/java/org/cp/elements/lang/SystemUtils.java @@ -26,8 +26,8 @@ package org.cp.elements.lang; @Suppres...
Add class member constant referencing the System PATH separator. Remove the CURRENT_DIRECTORY pathname file system reference.
diff --git a/lib/conceptql/tree.rb b/lib/conceptql/tree.rb index <HASH>..<HASH> 100644 --- a/lib/conceptql/tree.rb +++ b/lib/conceptql/tree.rb @@ -10,7 +10,7 @@ module ConceptQL end def root(query) - @root ||= traverse(query.statement.symbolize_keys) + @root ||= traverse(query.statement.deep_symbo...
Tree: deep symbolize keys in a statement
diff --git a/pkg/apis/networking/types.go b/pkg/apis/networking/types.go index <HASH>..<HASH> 100644 --- a/pkg/apis/networking/types.go +++ b/pkg/apis/networking/types.go @@ -491,6 +491,7 @@ type IngressServiceBackend struct { // ServiceBackendPort is the service port being referenced. type ServiceBackendPort struct ...
Update types.go Minor comment on BackendPort Name that should follow IANA. Service port names do not have this restriction so there is a mismatch.
diff --git a/chess/position.py b/chess/position.py index <HASH>..<HASH> 100644 --- a/chess/position.py +++ b/chess/position.py @@ -23,7 +23,7 @@ import types # TODO: Find a sane order for the members. -san_regex = re.compile('^([NBKRQ])?([a-h])?([1-8])?x?([a-h][1-8])(=[NBRQ])?$') +san_regex = re.compile('^([NBKRQ]...
Let the SAN regex allow + and # suffixes.
diff --git a/parfait-spring/src/main/java/com/custardsource/parfait/spring/SelfStartingMonitoringView.java b/parfait-spring/src/main/java/com/custardsource/parfait/spring/SelfStartingMonitoringView.java index <HASH>..<HASH> 100644 --- a/parfait-spring/src/main/java/com/custardsource/parfait/spring/SelfStartingMonitorin...
Add new constructor that just provides standard default quiescent period, but also provide a static method to return the default period for static import, and Spring config file usage goodness.
diff --git a/src/commands/run.js b/src/commands/run.js index <HASH>..<HASH> 100644 --- a/src/commands/run.js +++ b/src/commands/run.js @@ -36,7 +36,7 @@ async function startIPFS () { Please install it by going to https://ipfs.io/docs/install`) } - return exec('ipfs', ['daemon']) + return execa('ipfs', ['d...
Fix IPFS daemon spawning
diff --git a/core/src/main/java/fi/iki/elonen/NanoHTTPD.java b/core/src/main/java/fi/iki/elonen/NanoHTTPD.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/fi/iki/elonen/NanoHTTPD.java +++ b/core/src/main/java/fi/iki/elonen/NanoHTTPD.java @@ -1102,9 +1102,12 @@ public abstract class NanoHTTPD { FOR...
Added some HTTP status codes. Closes #<I>
diff --git a/lib/metro/models/properties/animation_property.rb b/lib/metro/models/properties/animation_property.rb index <HASH>..<HASH> 100644 --- a/lib/metro/models/properties/animation_property.rb +++ b/lib/metro/models/properties/animation_property.rb @@ -27,7 +27,7 @@ module Metro # # class Hero < Met...
Updated animation property doc for correct use of units
diff --git a/dashboard_app/helpers.py b/dashboard_app/helpers.py index <HASH>..<HASH> 100644 --- a/dashboard_app/helpers.py +++ b/dashboard_app/helpers.py @@ -21,8 +21,9 @@ class DocumentError(ValueError): """ Document error is raised when JSON document is malformed in any way """ - def __init__(self,...
Add ability to chain exceptions to DocumentError
diff --git a/hooker/__main__.py b/hooker/__main__.py index <HASH>..<HASH> 100644 --- a/hooker/__main__.py +++ b/hooker/__main__.py @@ -5,7 +5,10 @@ from .api import EVENTS for arg in sys.argv[1:]: try: - importlib.import_module(arg) + if arg[-3:] == ".py": + importlib.import_module(arg[...
[main] Worked around the .py arguments
diff --git a/salt/utils/error.py b/salt/utils/error.py index <HASH>..<HASH> 100644 --- a/salt/utils/error.py +++ b/salt/utils/error.py @@ -6,8 +6,10 @@ Utilities to enable exception reraising across the master commands from __future__ import absolute_import # Import python libs -import exceptions - +try: + impor...
Checking if exceptions module can be imported as it's removed from Python3
diff --git a/get-poetry.py b/get-poetry.py index <HASH>..<HASH> 100644 --- a/get-poetry.py +++ b/get-poetry.py @@ -197,7 +197,7 @@ class Installer: dist = os.path.join(dir, 'dist') print(' - Getting dependencies') self.call( - 'pip', 'install', 'poetry=={}'.format(...
Update get-poetry.py script
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ setup( 'ginga.web', 'ginga.web.pgw', 'ginga.web.pgw.js', 'ginga.web.pgw.templates', # Common stuff - 'ginga.misc', 'ginga.misc.plugins', 'ginga.b...
Modified setup.py to remove 'base' directory from install
diff --git a/cli.js b/cli.js index <HASH>..<HASH> 100755 --- a/cli.js +++ b/cli.js @@ -42,7 +42,7 @@ CLI.prototype.run = function () { // There was no help options, get IP using canihazip and output it to stdout. else { var canihazip = require('./'); - return canihazip(console.log); + return canihazip(...
use promise.then rather than callback in cli.js
diff --git a/lib/ehon/version.rb b/lib/ehon/version.rb index <HASH>..<HASH> 100644 --- a/lib/ehon/version.rb +++ b/lib/ehon/version.rb @@ -1,3 +1,3 @@ module Ehon - VERSION = "0.0.1" + VERSION = "0.1.0" end
bumped up version <I>
diff --git a/lib/autowow/commands/vcs.rb b/lib/autowow/commands/vcs.rb index <HASH>..<HASH> 100644 --- a/lib/autowow/commands/vcs.rb +++ b/lib/autowow/commands/vcs.rb @@ -93,6 +93,11 @@ module Autowow cmd + ["reset", "--hard", branch] end + # Doesn't work on Windows + def current_branch_remo...
Adds command to check for branch remote
diff --git a/pkg/minikube/sysinit/systemd.go b/pkg/minikube/sysinit/systemd.go index <HASH>..<HASH> 100644 --- a/pkg/minikube/sysinit/systemd.go +++ b/pkg/minikube/sysinit/systemd.go @@ -18,6 +18,7 @@ limitations under the License. package sysinit import ( + "errors" "os/exec" "k8s.io/minikube/pkg/minikube/as...
make it impossible to enable the kubelet service
diff --git a/lib/jp_prefecture/prefecture.rb b/lib/jp_prefecture/prefecture.rb index <HASH>..<HASH> 100644 --- a/lib/jp_prefecture/prefecture.rb +++ b/lib/jp_prefecture/prefecture.rb @@ -115,6 +115,9 @@ module JpPrefecture # @return [Integer] 見つかった場合は都道府県コード # @return [nil] 見つからない場合は nil def self.find_co...
Appdend gurd to JpPrefecture::Prefecture.find_code_by_name.
diff --git a/core/common/src/test/java/alluxio/security/authorization/ModeBitsTest.java b/core/common/src/test/java/alluxio/security/authorization/ModeBitsTest.java index <HASH>..<HASH> 100644 --- a/core/common/src/test/java/alluxio/security/authorization/ModeBitsTest.java +++ b/core/common/src/test/java/alluxio/securi...
Update ModeBitsTest.java
diff --git a/cdm/src/main/java/ucar/nc2/NetcdfFileWriter.java b/cdm/src/main/java/ucar/nc2/NetcdfFileWriter.java index <HASH>..<HASH> 100644 --- a/cdm/src/main/java/ucar/nc2/NetcdfFileWriter.java +++ b/cdm/src/main/java/ucar/nc2/NetcdfFileWriter.java @@ -469,7 +469,7 @@ public class NetcdfFileWriter { shortName...
made nicer error message when illegal datatypes encountered trying to write netcdf-3
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -29,8 +29,8 @@ setup( description = "a modern parsing library", license = "MIT", keywords = "Earley LALR parser parsing ast", - url = "https://github.com/erezsh/lark", - download_url = "https://github.com/...
Update links in pypi (Issue #<I>)
diff --git a/Kwf/Assets/CommonJs/Underscore/TemplateProvider.php b/Kwf/Assets/CommonJs/Underscore/TemplateProvider.php index <HASH>..<HASH> 100644 --- a/Kwf/Assets/CommonJs/Underscore/TemplateProvider.php +++ b/Kwf/Assets/CommonJs/Underscore/TemplateProvider.php @@ -11,7 +11,7 @@ class Kwf_Assets_CommonJs_Underscore_Te...
Fix scss files getting included twice in commonjs when using underscore.tpl
diff --git a/commons/util/src/main/java/net/automatalib/commons/util/mappings/Mapping.java b/commons/util/src/main/java/net/automatalib/commons/util/mappings/Mapping.java index <HASH>..<HASH> 100644 --- a/commons/util/src/main/java/net/automatalib/commons/util/mappings/Mapping.java +++ b/commons/util/src/main/java/net/...
Mapping: move doc to correct method
diff --git a/pingparsing/cli.py b/pingparsing/cli.py index <HASH>..<HASH> 100644 --- a/pingparsing/cli.py +++ b/pingparsing/cli.py @@ -22,7 +22,9 @@ QUIET_LOG_LEVEL = logbook.NOTSET def parse_option(): - parser = argparse.ArgumentParser() + parser = argparse.ArgumentParser( + epilog="Issue tracker: ht...
Add issue tracker description to pingparsing command
diff --git a/elasticmock/fake_elasticsearch.py b/elasticmock/fake_elasticsearch.py index <HASH>..<HASH> 100644 --- a/elasticmock/fake_elasticsearch.py +++ b/elasticmock/fake_elasticsearch.py @@ -336,7 +336,7 @@ class FakeElasticsearch(Elasticsearch): i = 0 for searchable_index in searchable_indexes: ...
Fixed count not working with empty doc_type list This will help support Elasticsearch-dsl, which uses doc_type=[] (acceptable by elasticsearch client)
diff --git a/Branch-SDK/src/io/branch/referral/SystemObserver.java b/Branch-SDK/src/io/branch/referral/SystemObserver.java index <HASH>..<HASH> 100644 --- a/Branch-SDK/src/io/branch/referral/SystemObserver.java +++ b/Branch-SDK/src/io/branch/referral/SystemObserver.java @@ -227,7 +227,8 @@ public class SystemObserver {...
A charsequence.toString() is never null Modified this code so it still reflects the old test. However, appInfo.loadLabel(pm) will (currently) not be able to return a null value, as the name or packagename is returned if the label is null. That said, a manufacturer could break this function. Charsequence#toString on a...
diff --git a/topology/probes/lldp/lldp.go b/topology/probes/lldp/lldp.go index <HASH>..<HASH> 100644 --- a/topology/probes/lldp/lldp.go +++ b/topology/probes/lldp/lldp.go @@ -344,7 +344,10 @@ func (p *Probe) getOrCreate(id graph.Identifier, m graph.Metadata) *graph.Node { // - when the interface is listed in the confi...
lldp: use permanent mac address instead of mac if present
diff --git a/upload/system/library/cache.php b/upload/system/library/cache.php index <HASH>..<HASH> 100644 --- a/upload/system/library/cache.php +++ b/upload/system/library/cache.php @@ -10,7 +10,7 @@ class Cache { $class = 'Cache'. $driver; - $this->cache=new $class($expire); + $this->cache = n...
added spaces ( = ) and removed ?>
diff --git a/tasklib/backends.py b/tasklib/backends.py index <HASH>..<HASH> 100644 --- a/tasklib/backends.py +++ b/tasklib/backends.py @@ -155,7 +155,7 @@ class TaskWarrior(object): else: escaped_serialized_value = six.u("'{0}'").format(serialized_value) - format_default = lam...
TaskWarrior: Default formatter needs to take an argument
diff --git a/libraries/commerce/scanner/constants/index.js b/libraries/commerce/scanner/constants/index.js index <HASH>..<HASH> 100644 --- a/libraries/commerce/scanner/constants/index.js +++ b/libraries/commerce/scanner/constants/index.js @@ -28,6 +28,7 @@ export const SCANNER_FORMATS_BARCODE = [ 'CODE_128', 'PDF...
CCP-<I> added DATA_MATRIX support for scanner
diff --git a/pkg/tsdb/cloudwatch/metric_find_query.go b/pkg/tsdb/cloudwatch/metric_find_query.go index <HASH>..<HASH> 100644 --- a/pkg/tsdb/cloudwatch/metric_find_query.go +++ b/pkg/tsdb/cloudwatch/metric_find_query.go @@ -162,7 +162,7 @@ func init() { "AWS/IoT": {"ActionType", "BehaviorName", "CheckNa...
fix: modifying AWS Kafka dimension names to correct ones (#<I>)
diff --git a/django_afip/admin.py b/django_afip/admin.py index <HASH>..<HASH> 100644 --- a/django_afip/admin.py +++ b/django_afip/admin.py @@ -99,6 +99,7 @@ class ReceiptAdmin(admin.ModelAdmin): ) return + queryset = queryset.filter(batch__isnull=False) models.ReceiptBatch.ob...
Don't change the batch of a receipt when mass-editing
diff --git a/src/xterm.js b/src/xterm.js index <HASH>..<HASH> 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -1118,6 +1118,11 @@ Terminal.prototype.refresh = function(start, end) { } }; +/** + * Queues linkification for the specified rows. + * @param {number} start The row to start from (between 0 and this.rows ...
Add jsdoc back, was lost in merge
diff --git a/includes/version.php b/includes/version.php index <HASH>..<HASH> 100644 --- a/includes/version.php +++ b/includes/version.php @@ -3,7 +3,7 @@ * YOURLS version * */ -define( 'YOURLS_VERSION', '1.7.1' ); +define( 'YOURLS_VERSION', '1.7.2' ); /** * YOURLS DB version. Increments when changes are mad...
Prepare potential next bugfix release Next dot release stuff should get committed in their own branch
diff --git a/src/components/slider/index.js b/src/components/slider/index.js index <HASH>..<HASH> 100644 --- a/src/components/slider/index.js +++ b/src/components/slider/index.js @@ -121,6 +121,8 @@ export default class Slider extends PureBaseComponent { this.initialThumbSize = THUMB_SIZE; this.checkProps(p...
moving componentWillMount code to c'tor (#<I>)
diff --git a/karyon2-admin/src/main/java/netflix/adminresources/AdminResourcesContainer.java b/karyon2-admin/src/main/java/netflix/adminresources/AdminResourcesContainer.java index <HASH>..<HASH> 100644 --- a/karyon2-admin/src/main/java/netflix/adminresources/AdminResourcesContainer.java +++ b/karyon2-admin/src/main/ja...
create constructor for AdminResourcesContainer for use outside of guice
diff --git a/instaLooter.py b/instaLooter.py index <HASH>..<HASH> 100644 --- a/instaLooter.py +++ b/instaLooter.py @@ -32,7 +32,7 @@ try: import lxml PARSER = 'lxml' except ImportError: - PARSER = 'html' + PARSER = 'html.parser' class InstaDownloader(threading.Thread):
Fix parser naming for BeautifulSoup
diff --git a/clientv3/client.go b/clientv3/client.go index <HASH>..<HASH> 100644 --- a/clientv3/client.go +++ b/clientv3/client.go @@ -86,6 +86,7 @@ func NewFromConfigFile(path string) (*Client, error) { // Close shuts down the client's etcd connections. func (c *Client) Close() error { c.cancel() + c.Watcher.Close...
clientv3: only receive from closing streams in Watcher close Was overcounting the number of expected closing messages; the resuming list may have nil entries. Also the full client wasn't closing the watcher client, only canceling its context, so client closes weren't joining with the watcher shutdown. Fixes #<I>
diff --git a/lib/bud/collections.rb b/lib/bud/collections.rb index <HASH>..<HASH> 100644 --- a/lib/bud/collections.rb +++ b/lib/bud/collections.rb @@ -490,7 +490,6 @@ module Bud end end - require 'ruby-debug'; debugger if finals.length == 0 and agg_in.length > 0 if block_given? fi...
remove stray debugging statement
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -5,8 +5,6 @@ try: from setuptools import setup, Command, find_packages except ImportError: from distutils.core import setup -import pip -from pip.req import parse_requirements class PyTest(Command):
removed unused imports from setup.py
diff --git a/tests/plugins/test_flatpak_create_oci.py b/tests/plugins/test_flatpak_create_oci.py index <HASH>..<HASH> 100644 --- a/tests/plugins/test_flatpak_create_oci.py +++ b/tests/plugins/test_flatpak_create_oci.py @@ -474,7 +474,8 @@ COMMAND_PATTERNS = [ (['flatpak', 'build-bundle', '@repo', '--oci', '...
Comply with latest Flatpak changes flatpak-module-tools can now handle disabling Flatpak sandboxing when checking icons, which is needed to run atomic-reactor in a container for Flatpak >= <I>. For that, we assume Flatpak >= <I> if flatpak is mocked.
diff --git a/json_span.go b/json_span.go index <HASH>..<HASH> 100644 --- a/json_span.go +++ b/json_span.go @@ -124,7 +124,8 @@ func newW3CForeignParent(trCtx w3ctrace.Context) *ForeignParent { // Span represents the OpenTracing span document to be sent to the agent type Span struct { - TraceID int64 ...
Send <I>-bit trace IDs to the agent
diff --git a/lib/app.js b/lib/app.js index <HASH>..<HASH> 100644 --- a/lib/app.js +++ b/lib/app.js @@ -189,6 +189,7 @@ if (require.main === module) { config.load(argv._[0]) .then((cfg) => { exports.log(`Loaded configuration file: ${argv._[0]}`); + process.chdir(config.basePath); ...
chdir to the directory containing the config file on startup fixed #<I>
diff --git a/system/Model.php b/system/Model.php index <HASH>..<HASH> 100644 --- a/system/Model.php +++ b/system/Model.php @@ -1129,7 +1129,7 @@ class Model * * @return array|null */ - public function paginate(int $perPage = null, string $group = 'default', int $page = 0) + public function paginate(int $perPag...
add $segment option in pager call by Model.php add the $segment option when the Pager library is call by the model paginate function
diff --git a/Kwf_js/EyeCandy/Lightbox/Lightbox.js b/Kwf_js/EyeCandy/Lightbox/Lightbox.js index <HASH>..<HASH> 100644 --- a/Kwf_js/EyeCandy/Lightbox/Lightbox.js +++ b/Kwf_js/EyeCandy/Lightbox/Lightbox.js @@ -417,7 +417,7 @@ Lightbox.prototype = { var closeLightbox = (function() { //didn't c...
change the defer() to setTimeout() defer() is a ext function, but ext is not longer in koala-frontend. Instead of defer() we use simple setTimeout() now.
diff --git a/slither/tools/upgradeability/compare_function_ids.py b/slither/tools/upgradeability/compare_function_ids.py index <HASH>..<HASH> 100644 --- a/slither/tools/upgradeability/compare_function_ids.py +++ b/slither/tools/upgradeability/compare_function_ids.py @@ -12,7 +12,8 @@ logger = logging.getLogger("Slither...
upgradeability check: remove FP in case of fallback function collision (fix #<I>)
diff --git a/kafka_consumer/check.py b/kafka_consumer/check.py index <HASH>..<HASH> 100644 --- a/kafka_consumer/check.py +++ b/kafka_consumer/check.py @@ -30,7 +30,7 @@ DEFAULT_KAFKA_TIMEOUT = 5 DEFAULT_ZK_TIMEOUT = 5 DEFAULT_KAFKA_RETRIES = 3 -CONTEXT_UPPER_BOUND = 100 +CONTEXT_UPPER_BOUND = 200 class BadKafk...
[kafka_consumer] bumping up context limit upper bound.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -77,10 +77,6 @@ DynamoDBDOWN.prototype._open = function (options, cb) { } } -DynamoDBDOWN.prototype._close = function (cb) { - cb() -} - DynamoDBDOWN.prototype._put = function (key, value, options, cb) { const param...
refactor: use abstract implementation of `_close`
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -137,7 +137,8 @@ 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 = 'default' +html_the...
changed to alabaster theme for a while