diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/claripy/ast/base.py b/claripy/ast/base.py index <HASH>..<HASH> 100644 --- a/claripy/ast/base.py +++ b/claripy/ast/base.py @@ -285,11 +285,11 @@ class Base: return b'\x2e' elif type(arg) is int: if arg < 0: - if arg >= -0xffff: + if arg >= -0x...
_arg_serialize(): Don't serialize negative numbers beyond their respective ranges.
diff --git a/classes/PodsComponents.php b/classes/PodsComponents.php index <HASH>..<HASH> 100644 --- a/classes/PodsComponents.php +++ b/classes/PodsComponents.php @@ -90,7 +90,7 @@ class PodsComponents { if ( empty( $component_data[ 'MenuPage' ] ) && ( !isset( $component_data[ 'object' ] ) || !method_exist...
More tweaks to handling now that components transient is cleared
diff --git a/src/main/java/org/dasein/cloud/google/compute/server/ServerSupport.java b/src/main/java/org/dasein/cloud/google/compute/server/ServerSupport.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/dasein/cloud/google/compute/server/ServerSupport.java +++ b/src/main/java/org/dasein/cloud/google/compute/ser...
Fix possible NPE listing VMs with no description
diff --git a/src/Image/Service.php b/src/Image/Service.php index <HASH>..<HASH> 100644 --- a/src/Image/Service.php +++ b/src/Image/Service.php @@ -31,10 +31,10 @@ class Service */ public function upload($image, $path = null, $makeDiffSizes = true) { - $this->directory(public_path($path)); + ...
updated to use storage path now for images
diff --git a/src/JsonStreamingParser/Listener.php b/src/JsonStreamingParser/Listener.php index <HASH>..<HASH> 100644 --- a/src/JsonStreamingParser/Listener.php +++ b/src/JsonStreamingParser/Listener.php @@ -15,8 +15,8 @@ interface JsonStreamingParser_Listener { // Key will always be a string public function key($...
update misleading comment as arrays are never passed into Listener
diff --git a/performance/cache_runner.rb b/performance/cache_runner.rb index <HASH>..<HASH> 100644 --- a/performance/cache_runner.rb +++ b/performance/cache_runner.rb @@ -4,7 +4,6 @@ require 'active_support/core_ext' require 'active_support/cache' require 'identity_cache' require 'memcache' -require 'debugger' if...
Remove some unneeded code post-review
diff --git a/src/geo/ui/widgets/histogram/content-view.js b/src/geo/ui/widgets/histogram/content-view.js index <HASH>..<HASH> 100644 --- a/src/geo/ui/widgets/histogram/content-view.js +++ b/src/geo/ui/widgets/histogram/content-view.js @@ -224,11 +224,14 @@ module.exports = WidgetContent.extend({ this.histogramChar...
Prevents from accessing the limits of an array
diff --git a/packages/idyll-cli/bin/idyll.js b/packages/idyll-cli/bin/idyll.js index <HASH>..<HASH> 100755 --- a/packages/idyll-cli/bin/idyll.js +++ b/packages/idyll-cli/bin/idyll.js @@ -12,7 +12,13 @@ var cmd if (!idyll) { cmd = p.join(__dirname, './cli.js'); } else { - cmd = p.join(idyll, '..', '..', 'bin', 'cl...
Fix for backwards-compat issue
diff --git a/chef/lib/chef/knife/data_bag_from_file.rb b/chef/lib/chef/knife/data_bag_from_file.rb index <HASH>..<HASH> 100644 --- a/chef/lib/chef/knife/data_bag_from_file.rb +++ b/chef/lib/chef/knife/data_bag_from_file.rb @@ -46,7 +46,7 @@ class Chef option :all, :short => "-a", :long => "--all",...
Add a note about a secret knife data bag from file feature knife data bag from file -a ; loads all data bags and items knife data bag from file users -a ; loads all data bag items for data bag users
diff --git a/ceph_deploy/install.py b/ceph_deploy/install.py index <HASH>..<HASH> 100644 --- a/ceph_deploy/install.py +++ b/ceph_deploy/install.py @@ -69,7 +69,7 @@ def install_debian(codename, version_kind, version): key = 'autobuild' subprocess.check_call( - args='wget -q -O- https://raw.github...
install: use new build key URL on ceph.com The new URL is on ceph.com and uses https.
diff --git a/concrete/blocks/express_entry_list/controller.php b/concrete/blocks/express_entry_list/controller.php index <HASH>..<HASH> 100644 --- a/concrete/blocks/express_entry_list/controller.php +++ b/concrete/blocks/express_entry_list/controller.php @@ -158,6 +158,7 @@ class Controller extends BlockController ...
Require pagination asset from express entry list block
diff --git a/lib/active_resource/base_ext.rb b/lib/active_resource/base_ext.rb index <HASH>..<HASH> 100644 --- a/lib/active_resource/base_ext.rb +++ b/lib/active_resource/base_ext.rb @@ -17,10 +17,5 @@ module ActiveResource connection.delete(element_path(id, options), headers) end end - - def se...
don't bother overriding ActiveResource::Base.build
diff --git a/spec/bin_spec.rb b/spec/bin_spec.rb index <HASH>..<HASH> 100644 --- a/spec/bin_spec.rb +++ b/spec/bin_spec.rb @@ -61,11 +61,14 @@ describe "the sortah executable" do end it "should print to STDOUT the location it intends to write the file" do - run_with('--dry-run', @email.to_s)[:result].s...
clean up the lines on bin_spec so they aren't so long.
diff --git a/pmxbot/util.py b/pmxbot/util.py index <HASH>..<HASH> 100644 --- a/pmxbot/util.py +++ b/pmxbot/util.py @@ -69,19 +69,12 @@ def splitem(query): >>> splitem('stuff: a, b, c') ['a', 'b', 'c'] """ - s = query.rstrip('?.!') - if ':' in s: - question, choices = s.rsplit(':', 1) - else: - choices = s + pro...
Simplify the implementation to just a few lines.
diff --git a/lib/logan/client.rb b/lib/logan/client.rb index <HASH>..<HASH> 100644 --- a/lib/logan/client.rb +++ b/lib/logan/client.rb @@ -91,6 +91,13 @@ module Logan handle_response(response, Proc.new {|h| Logan::Person.new(h) }) end + def person(id) + response = self.class.get "/people/#{id}.js...
Add person (singular) to the client class.
diff --git a/eliot/_util.py b/eliot/_util.py index <HASH>..<HASH> 100644 --- a/eliot/_util.py +++ b/eliot/_util.py @@ -6,7 +6,7 @@ from __future__ import unicode_literals from types import ModuleType -from six import exec_, text_type as unicode +from six import exec_, text_type as unicode, PY3 def safeunicode...
Support PyInstaller on Python 3.
diff --git a/lib/aws/shared_credentials.rb b/lib/aws/shared_credentials.rb index <HASH>..<HASH> 100644 --- a/lib/aws/shared_credentials.rb +++ b/lib/aws/shared_credentials.rb @@ -44,8 +44,8 @@ module Aws end # @return [Boolean] Returns `true` if a credential file - # exists and has appropriate read per...
Fixed a few yard warnings.
diff --git a/src/Provider/AbstractProvider.php b/src/Provider/AbstractProvider.php index <HASH>..<HASH> 100644 --- a/src/Provider/AbstractProvider.php +++ b/src/Provider/AbstractProvider.php @@ -641,7 +641,13 @@ abstract class AbstractProvider return $parsed; } - return $content; + ...
Always attempt to parse as JSON and fallback on failure
diff --git a/WrightTools/collection/_collection.py b/WrightTools/collection/_collection.py index <HASH>..<HASH> 100644 --- a/WrightTools/collection/_collection.py +++ b/WrightTools/collection/_collection.py @@ -37,7 +37,7 @@ class Collection(Group): def __next__(self): if self.__n < len(self): - ...
Collections next return key, rather than value (Closes #<I>) (#<I>)
diff --git a/src/Application.php b/src/Application.php index <HASH>..<HASH> 100644 --- a/src/Application.php +++ b/src/Application.php @@ -48,6 +48,7 @@ class Application extends Silex\Application $this['resources']->setApp($this); $this->initConfig(); + $this->initSession(); $this['...
Move config initialization to it's own method.
diff --git a/lib/ui/Modal.js b/lib/ui/Modal.js index <HASH>..<HASH> 100644 --- a/lib/ui/Modal.js +++ b/lib/ui/Modal.js @@ -1,6 +1,7 @@ -var React = require('react/addons'), - classnames = require('classnames'), - Tappable = require('react-tappable'); +var classnames = require('classnames'); + +var React = require('reac...
Modal: enforce modal is mounted for setState
diff --git a/lib/tcp.js b/lib/tcp.js index <HASH>..<HASH> 100644 --- a/lib/tcp.js +++ b/lib/tcp.js @@ -10,19 +10,19 @@ function TCP(options) { // Start socket var sock; var successCallback = function () { + if(!sock.authorized) { + sock.end(); + return; + } + sock.setNoDelay(true); so...
remove references to old self-signed SSL cert from tcp.js
diff --git a/src/CommandPool.php b/src/CommandPool.php index <HASH>..<HASH> 100644 --- a/src/CommandPool.php +++ b/src/CommandPool.php @@ -82,7 +82,7 @@ class CommandPool implements PromisorInterface return (new self($client, $commands, $config)) ->promise() - ->then(function () use (...
Using a delay in CommandPool to ensure future tick
diff --git a/src/CapabilityTrait.php b/src/CapabilityTrait.php index <HASH>..<HASH> 100644 --- a/src/CapabilityTrait.php +++ b/src/CapabilityTrait.php @@ -41,6 +41,7 @@ trait CapabilityTrait public static function getCapabilities($controllerName = null, array $actions = []) { $capabilitiesAccess = ne...
Fixed codestyle as per phpcs report
diff --git a/Str.php b/Str.php index <HASH>..<HASH> 100644 --- a/Str.php +++ b/Str.php @@ -403,7 +403,7 @@ class Str public static function startsWith($haystack, $needles) { foreach ((array) $needles as $needle) { - if ($needle != '' && strpos((string) $haystack, (string) $needle) === 0) {...
Revert changes to startsWith() (#<I>)
diff --git a/lib/artsy-eventservice/artsy/event_service/rabbitmq_connection.rb b/lib/artsy-eventservice/artsy/event_service/rabbitmq_connection.rb index <HASH>..<HASH> 100644 --- a/lib/artsy-eventservice/artsy/event_service/rabbitmq_connection.rb +++ b/lib/artsy-eventservice/artsy/event_service/rabbitmq_connection.rb @...
renegotiate connection if connection exists but is closed
diff --git a/app/models/agent.rb b/app/models/agent.rb index <HASH>..<HASH> 100644 --- a/app/models/agent.rb +++ b/app/models/agent.rb @@ -384,7 +384,7 @@ class Agent < ActiveRecord::Base agent.last_receive_at = Time.now agent.save! rescue => e - agent.error "Exception during receive: #{...
seperate error logs with new lines
diff --git a/lib/ood_core/job/adapters/linux_host/launcher.rb b/lib/ood_core/job/adapters/linux_host/launcher.rb index <HASH>..<HASH> 100644 --- a/lib/ood_core/job/adapters/linux_host/launcher.rb +++ b/lib/ood_core/job/adapters/linux_host/launcher.rb @@ -75,7 +75,7 @@ class OodCore::Job::Adapters::LinuxHost::Launcher ...
Remove requirement that grep dependency support -P flag
diff --git a/packages/neos-ui-editors/src/Reference/index.js b/packages/neos-ui-editors/src/Reference/index.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui-editors/src/Reference/index.js +++ b/packages/neos-ui-editors/src/Reference/index.js @@ -18,7 +18,7 @@ export default class ReferenceEditor extends PureCompon...
TASK: Adjust proptype validation for ReferenceEditor The nodetpye option in ReferenceEditor props can be a strig with a single nodetype as well as an array
diff --git a/nunaliit2-js/src/main/js/nunaliit2/n2.couchModule.js b/nunaliit2-js/src/main/js/nunaliit2/n2.couchModule.js index <HASH>..<HASH> 100644 --- a/nunaliit2-js/src/main/js/nunaliit2/n2.couchModule.js +++ b/nunaliit2-js/src/main/js/nunaliit2/n2.couchModule.js @@ -461,6 +461,9 @@ var ModuleDisplay = $n2.Class({ ...
Open sliding panel when search initiated (#<I>)
diff --git a/src/Parser/State.php b/src/Parser/State.php index <HASH>..<HASH> 100644 --- a/src/Parser/State.php +++ b/src/Parser/State.php @@ -69,6 +69,8 @@ class State */ protected $new_statement_character_found = false; + protected $valid_placeholder_characters = []; + /** * * Con...
Removed the call to State->capture from State->getIdentifier
diff --git a/model/connect/DBSchemaManager.php b/model/connect/DBSchemaManager.php index <HASH>..<HASH> 100644 --- a/model/connect/DBSchemaManager.php +++ b/model/connect/DBSchemaManager.php @@ -591,7 +591,7 @@ abstract class DBSchemaManager { if (!isset($this->tableList[strtolower($table)])) $newTable = true; ...
Bugfix: Complex (curly) syntax
diff --git a/pyoos/utils/asatime.py b/pyoos/utils/asatime.py index <HASH>..<HASH> 100644 --- a/pyoos/utils/asatime.py +++ b/pyoos/utils/asatime.py @@ -59,4 +59,4 @@ class AsaTime(object): date = dateparser.parse(date_string, tzinfos=cls.tzd) return date except: - raise ...
Raise a short stack when we can't parse a date
diff --git a/index.php b/index.php index <HASH>..<HASH> 100644 --- a/index.php +++ b/index.php @@ -17,6 +17,11 @@ ? 'administration' : 'frontend'); + header('Expires: Mon, 12 Dec 1982 06:14:00 GMT'); + header('Last-Modified: ' . gmdate('r')); + header('Cache-Control: no-cache, must-revalidate, max-age=0'); +...
Moved cache preventing headers from bundle.php to index.php. Allows scripts to include the Symphony engine without getting unwanted headers set.
diff --git a/app/models/specialist_document_edition.rb b/app/models/specialist_document_edition.rb index <HASH>..<HASH> 100644 --- a/app/models/specialist_document_edition.rb +++ b/app/models/specialist_document_edition.rb @@ -22,7 +22,7 @@ class SpecialistDocumentEdition field :state, type: String - embeds_man...
Ensure attachment callbacks fire on edition save
diff --git a/app/services/never_logged_in_notifier.rb b/app/services/never_logged_in_notifier.rb index <HASH>..<HASH> 100644 --- a/app/services/never_logged_in_notifier.rb +++ b/app/services/never_logged_in_notifier.rb @@ -3,7 +3,7 @@ module NeverLoggedInNotifier def self.send_reminders return unless Rails.conf...
Replace each with find_each in existing notifiers
diff --git a/plugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/sreinstall/StandardSREPage.java b/plugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/sreinstall/StandardSREPage.java index <HASH>..<HASH> 100644 --- a/plugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/sreinstall/StandardSREPage.java +++ b/plugins/io.sa...
[eclipse] Add logging messages for debugging SRE file selection. see #<I>
diff --git a/lib/airrecord/table.rb b/lib/airrecord/table.rb index <HASH>..<HASH> 100644 --- a/lib/airrecord/table.rb +++ b/lib/airrecord/table.rb @@ -180,7 +180,7 @@ module Airrecord end def save - raise Error, "Unable to save a new record" if new_record? + return create if new_record? r...
Create new records instead of raising in #save
diff --git a/src/runner.js b/src/runner.js index <HASH>..<HASH> 100644 --- a/src/runner.js +++ b/src/runner.js @@ -3,6 +3,7 @@ var Runner = require('screener-runner'); var cloneDeep = require('lodash/cloneDeep'); var omit = require('lodash/omit'); var url = require('url'); +var pkg = require('../package.json'); /...
add screener-storybook version to meta
diff --git a/lib/simple_form/components/labels.rb b/lib/simple_form/components/labels.rb index <HASH>..<HASH> 100644 --- a/lib/simple_form/components/labels.rb +++ b/lib/simple_form/components/labels.rb @@ -28,7 +28,7 @@ module SimpleForm end def label_text - SimpleForm.label_text.call(raw_label_...
fix a couple of escaping issues in edge rails
diff --git a/aioice/exceptions.py b/aioice/exceptions.py index <HASH>..<HASH> 100644 --- a/aioice/exceptions.py +++ b/aioice/exceptions.py @@ -1,7 +1,3 @@ -class ConnectionError(Exception): - pass - - class TransactionError(Exception): response = None
[exceptions] don't define custom ConnectionError, it's not used
diff --git a/livestyle-client.js b/livestyle-client.js index <HASH>..<HASH> 100644 --- a/livestyle-client.js +++ b/livestyle-client.js @@ -191,7 +191,7 @@ toWatch = [], url, i; - cssIncludes.unshift({ href: loc...
Disabled the client subscribing to the current page url, which introduced a lot of errors. See Issue #<I> to reimplement it.
diff --git a/lib/metadata/MIQExtract/MIQExtract.rb b/lib/metadata/MIQExtract/MIQExtract.rb index <HASH>..<HASH> 100644 --- a/lib/metadata/MIQExtract/MIQExtract.rb +++ b/lib/metadata/MIQExtract/MIQExtract.rb @@ -26,7 +26,7 @@ class MIQExtract def initialize(filename, ost = nil) # TODO: Always pass in MiqVm ost |...
Refactor " : nil" used in ternary operators Add removed whitespace Revert refactor Revert refactor Revert refactor (transferred from ManageIQ/manageiq-gems-pending@7a<I>b<I>de<I>c7bc3e<I>cef<I>dbbea9ce<I>a<I>d)
diff --git a/src/SuffixExtractor.php b/src/SuffixExtractor.php index <HASH>..<HASH> 100644 --- a/src/SuffixExtractor.php +++ b/src/SuffixExtractor.php @@ -113,7 +113,7 @@ class SuffixExtractor } } - return [$host, '']; + return [$host, null]; }
Fix to result: null on incorrect TLD now
diff --git a/src/Composer/Command/InitCommand.php b/src/Composer/Command/InitCommand.php index <HASH>..<HASH> 100644 --- a/src/Composer/Command/InitCommand.php +++ b/src/Composer/Command/InitCommand.php @@ -705,8 +705,18 @@ EOT )); } + // Check for similar names/typos ...
Fix warning for packages not existing while they exist but not at the required stability, fixes #<I>
diff --git a/lib/knapsack/adapters/minitest_adapter.rb b/lib/knapsack/adapters/minitest_adapter.rb index <HASH>..<HASH> 100644 --- a/lib/knapsack/adapters/minitest_adapter.rb +++ b/lib/knapsack/adapters/minitest_adapter.rb @@ -52,7 +52,11 @@ module Knapsack def self.test_path(obj) # Pick the first publi...
Add support got Minitest::SharedExamples
diff --git a/lib/vagrant/action/vm/nfs.rb b/lib/vagrant/action/vm/nfs.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/action/vm/nfs.rb +++ b/lib/vagrant/action/vm/nfs.rb @@ -110,7 +110,6 @@ module Vagrant # up to the host class to define the specific behavior. def export_folders @env[:ui]....
A much cleaner way to find NFS folders to mount
diff --git a/src/edeposit/amqp/ftp/__init__.py b/src/edeposit/amqp/ftp/__init__.py index <HASH>..<HASH> 100644 --- a/src/edeposit/amqp/ftp/__init__.py +++ b/src/edeposit/amqp/ftp/__init__.py @@ -5,9 +5,7 @@ # Interpreter version: python 2.7 # #= Imports ===============================================================...
Added CreateUser and RemoveUser messages.
diff --git a/salt/modules/hipchat.py b/salt/modules/hipchat.py index <HASH>..<HASH> 100644 --- a/salt/modules/hipchat.py +++ b/salt/modules/hipchat.py @@ -20,7 +20,7 @@ import requests import logging from urlparse import urljoin as _urljoin from requests.exceptions import ConnectionError -from six.moves import range...
Replaced module six in file /salt/modules/hipchat.py
diff --git a/salt/states/network.py b/salt/states/network.py index <HASH>..<HASH> 100644 --- a/salt/states/network.py +++ b/salt/states/network.py @@ -164,7 +164,7 @@ all interfaces are ignored unless specified. - max_bonds: 1 - updelay: 0 - use_carrier: on - - xmit_hash_policy: layer2...
Update network states doc Previously it was xmit_hash_policy, but that's not what the code is actually looking for.
diff --git a/modules/__tests__/Router-test.js b/modules/__tests__/Router-test.js index <HASH>..<HASH> 100644 --- a/modules/__tests__/Router-test.js +++ b/modules/__tests__/Router-test.js @@ -158,6 +158,27 @@ describe('Router', function () { }); }); + it('does not double escape when nested', function(do...
added a test for nested routes
diff --git a/pkg/services/ngalert/schedule/schedule.go b/pkg/services/ngalert/schedule/schedule.go index <HASH>..<HASH> 100644 --- a/pkg/services/ngalert/schedule/schedule.go +++ b/pkg/services/ngalert/schedule/schedule.go @@ -700,26 +700,11 @@ func (r *alertRuleRegistry) del(key models.AlertRuleKey) (*alertRuleInfo, b...
simplify getting a slice of keys (#<I>)
diff --git a/lib/parameters/instance_param.rb b/lib/parameters/instance_param.rb index <HASH>..<HASH> 100644 --- a/lib/parameters/instance_param.rb +++ b/lib/parameters/instance_param.rb @@ -31,7 +31,7 @@ module Parameters # The value of the instance param. # def value - @object.instance_variable_...
Reduce usage of to_sym.
diff --git a/test/test_commands.py b/test/test_commands.py index <HASH>..<HASH> 100644 --- a/test/test_commands.py +++ b/test/test_commands.py @@ -194,15 +194,8 @@ invocation. subprocess.check_output( ['git', 'remote', 'set-url', 'origin', 'http://foo.com/bar.git'], stderr=subprocess....
fix logic in test since the commands are expected to have a return code of zero (#<I>)
diff --git a/src/astral.py b/src/astral.py index <HASH>..<HASH> 100644 --- a/src/astral.py +++ b/src/astral.py @@ -668,6 +668,7 @@ class Location(object): return locals() tz = property(**tz()) + tzinfo = tz def solar_depression(): doc = """The number of degrees the sun must be b...
Added `tzinfo` as an alias for `tz`
diff --git a/test/unit/utils-tests.js b/test/unit/utils-tests.js index <HASH>..<HASH> 100644 --- a/test/unit/utils-tests.js +++ b/test/unit/utils-tests.js @@ -143,4 +143,17 @@ test('libpq connection string building', function() { })) }) + test('password contains < and/or > characters', function () { + v...
test case for password containing a < or > sign
diff --git a/lib/request.js b/lib/request.js index <HASH>..<HASH> 100644 --- a/lib/request.js +++ b/lib/request.js @@ -205,10 +205,9 @@ class Request extends AsyncResource { } if ( - this.streaming && this.body && - !this.body.destroyed && - typeof this.body.destroy === 'function' + ...
refactor: simplify req body destroy
diff --git a/Examples/Calculator/features/roles/calculating_individual.rb b/Examples/Calculator/features/roles/calculating_individual.rb index <HASH>..<HASH> 100644 --- a/Examples/Calculator/features/roles/calculating_individual.rb +++ b/Examples/Calculator/features/roles/calculating_individual.rb @@ -18,10 +18,6 @@ cl...
Refactoring: Apparently noone needs the Calculating Individual to respond to 'equals'
diff --git a/admin/settings/appearance.php b/admin/settings/appearance.php index <HASH>..<HASH> 100644 --- a/admin/settings/appearance.php +++ b/admin/settings/appearance.php @@ -45,7 +45,7 @@ if ($hassiteconfig) { // speedup for non-admins, add all caps used on this page $temp->add(new admin_setting_configtext('c...
MDL-<I> longer default salt; merged from MOODLE_<I>_STABLE
diff --git a/lib/puppet/rails/param_name.rb b/lib/puppet/rails/param_name.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/rails/param_name.rb +++ b/lib/puppet/rails/param_name.rb @@ -9,7 +9,7 @@ class Puppet::Rails::ParamName < ActiveRecord::Base hash = {} hash[:name] = self.name.to_sym hash[...
Fixed #<I> by applying patch by vvidic.
diff --git a/src/Schema/Extensions/GraphQLExtension.php b/src/Schema/Extensions/GraphQLExtension.php index <HASH>..<HASH> 100644 --- a/src/Schema/Extensions/GraphQLExtension.php +++ b/src/Schema/Extensions/GraphQLExtension.php @@ -14,7 +14,7 @@ abstract class GraphQLExtension implements \JsonSerializable * ...
Remove return type to match Laravel style
diff --git a/Branch-SDK/src/io/branch/referral/ServerRequestActionCompleted.java b/Branch-SDK/src/io/branch/referral/ServerRequestActionCompleted.java index <HASH>..<HASH> 100644 --- a/Branch-SDK/src/io/branch/referral/ServerRequestActionCompleted.java +++ b/Branch-SDK/src/io/branch/referral/ServerRequestActionComplete...
log warning for non purchase event sent to usercompletedaction
diff --git a/src/main/java/com/flipkart/zjsonpatch/PathUtils.java b/src/main/java/com/flipkart/zjsonpatch/PathUtils.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/flipkart/zjsonpatch/PathUtils.java +++ b/src/main/java/com/flipkart/zjsonpatch/PathUtils.java @@ -21,8 +21,8 @@ class PathUtils { private st...
Switched `tilda (~)` and `slash(/)` decode order.
diff --git a/instana/__init__.py b/instana/__init__.py index <HASH>..<HASH> 100644 --- a/instana/__init__.py +++ b/instana/__init__.py @@ -24,7 +24,7 @@ __author__ = 'Instana Inc.' __copyright__ = 'Copyright 2017 Instana Inc.' __credits__ = ['Pavlo Baron', 'Peter Giacomo Lombardo'] __license__ = 'MIT' -__version__ =...
Bump package version to <I>
diff --git a/cmsplugin_zinnia/__init__.py b/cmsplugin_zinnia/__init__.py index <HASH>..<HASH> 100644 --- a/cmsplugin_zinnia/__init__.py +++ b/cmsplugin_zinnia/__init__.py @@ -1,5 +1,5 @@ """cmsplugin_zinnia""" -__version__ = '0.4' +__version__ = '0.4.1' __license__ = 'BSD License' __author__ = 'Fantomas42'
Bump to version <I>
diff --git a/DependencyInjection/EasyAdminExtension.php b/DependencyInjection/EasyAdminExtension.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/EasyAdminExtension.php +++ b/DependencyInjection/EasyAdminExtension.php @@ -62,6 +62,11 @@ class EasyAdminExtension extends Extension $parts = explode('...
Allow to have different entities with the same exact name This is very rare, except for entities like "Category" which can be defined in different bundles for different purposes. The proposed solution is very simple, but it should do the trick.
diff --git a/ui/app/mixins/searchable.js b/ui/app/mixins/searchable.js index <HASH>..<HASH> 100644 --- a/ui/app/mixins/searchable.js +++ b/ui/app/mixins/searchable.js @@ -48,7 +48,7 @@ export default Mixin.create({ }), listSearched: computed('searchTerm', 'listToSearch.[]', 'searchProps.[]', function() { - c...
Trim whitespace on the search term Trailing whitespace messes with tokenization
diff --git a/communicator/winrm/communicator.go b/communicator/winrm/communicator.go index <HASH>..<HASH> 100644 --- a/communicator/winrm/communicator.go +++ b/communicator/winrm/communicator.go @@ -217,7 +217,7 @@ func (c *Communicator) newCopyClient() (*winrmcp.Winrmcp, error) { OperationTimeout: c.Timeout(),...
code reformatted with gofmt
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -7,7 +7,6 @@ const stylelint = require('stylelint'); const debug = require('debug')('prettier-stylelint:main'); // const explorer = cosmiconfig('stylelint'); -const linterAPI = stylelint.createLinter({ fix:...
fix: dont re use the same linter instance because we can't invalidate the config cache
diff --git a/pypiper/pypiper.py b/pypiper/pypiper.py index <HASH>..<HASH> 100755 --- a/pypiper/pypiper.py +++ b/pypiper/pypiper.py @@ -888,15 +888,24 @@ class PipelineManager(object): if not annotation: annotation = self.pipeline_name + annotation = str(annotation) + # In case the value is passed with trai...
Finalize report_figure to relative paths
diff --git a/src/main/java/org/asteriskjava/manager/internal/ManagerReaderImpl.java b/src/main/java/org/asteriskjava/manager/internal/ManagerReaderImpl.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/asteriskjava/manager/internal/ManagerReaderImpl.java +++ b/src/main/java/org/asteriskjava/manager/internal/Mana...
Remove a check-then-act in ManagerReaderImpl
diff --git a/src/Client/Middleware/MiddlewareClient.php b/src/Client/Middleware/MiddlewareClient.php index <HASH>..<HASH> 100644 --- a/src/Client/Middleware/MiddlewareClient.php +++ b/src/Client/Middleware/MiddlewareClient.php @@ -22,7 +22,7 @@ trait MiddlewareClient /** * @var IOAuthClient */ - pri...
fix(Middleware): Change middleware client accessibility
diff --git a/staging/src/k8s.io/legacy-cloud-providers/gce/gce_zones.go b/staging/src/k8s.io/legacy-cloud-providers/gce/gce_zones.go index <HASH>..<HASH> 100644 --- a/staging/src/k8s.io/legacy-cloud-providers/gce/gce_zones.go +++ b/staging/src/k8s.io/legacy-cloud-providers/gce/gce_zones.go @@ -20,6 +20,7 @@ package gce...
Fix ListZonesInRegion() after client BasePath change This path fixes region Regex for listing zones. Compute client BasePath changed to compute.googleapis.com, but resource URI were left as www.googleapis.com
diff --git a/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialSideNav.java b/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialSideNav.java index <HASH>..<HASH> 100644 --- a/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialSideNav.java +++ b/gwt-material/src/main/java/gwt/...
Added method setActive(int index) to automatically select sidenav items.
diff --git a/client/extensions/woocommerce/app/dashboard/pre-setup-view.js b/client/extensions/woocommerce/app/dashboard/pre-setup-view.js index <HASH>..<HASH> 100644 --- a/client/extensions/woocommerce/app/dashboard/pre-setup-view.js +++ b/client/extensions/woocommerce/app/dashboard/pre-setup-view.js @@ -8,7 +8,7 @@ i...
Store: Fix store address setup for CA addresses by using the correct `find`
diff --git a/testsuite.py b/testsuite.py index <HASH>..<HASH> 100644 --- a/testsuite.py +++ b/testsuite.py @@ -40,6 +40,7 @@ from __future__ import print_function +import errno import kconfiglib import os import platform @@ -2433,8 +2434,16 @@ def equal_confs(): with open(".config") as menu_conf: ...
Warn if the Makefile patch hasn't been applied The old error from the test suite was cryptic.
diff --git a/session/bootstrap.go b/session/bootstrap.go index <HASH>..<HASH> 100644 --- a/session/bootstrap.go +++ b/session/bootstrap.go @@ -1421,7 +1421,7 @@ func doDMLWorks(s Session) { } func mustExecute(s Session, sql string) { - _, err := s.Execute(context.Background(), sql) + _, err := s.ExecuteInternal(con...
session: use ExecuteInternal to execute the bootstrap SQLs (#<I>)
diff --git a/test/suite/Integration/Counterpart/CounterpartMatcherDriverTest.php b/test/suite/Integration/Counterpart/CounterpartMatcherDriverTest.php index <HASH>..<HASH> 100644 --- a/test/suite/Integration/Counterpart/CounterpartMatcherDriverTest.php +++ b/test/suite/Integration/Counterpart/CounterpartMatcherDriverTe...
Add Counterpart matcher driver test requirement for easy version switching.
diff --git a/hazelcast/src/main/java/com/hazelcast/instance/Node.java b/hazelcast/src/main/java/com/hazelcast/instance/Node.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/main/java/com/hazelcast/instance/Node.java +++ b/hazelcast/src/main/java/com/hazelcast/instance/Node.java @@ -166,7 +166,6 @@ public class Node...
Moved version check after node starts.
diff --git a/test/test_helper.rb b/test/test_helper.rb index <HASH>..<HASH> 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -62,3 +62,7 @@ end require "active_storage/attached" ActiveRecord::Base.send :extend, ActiveStorage::Attached::Macros + +require "global_id" +GlobalID.app = "ActiveStorageExample...
Still need GlobalID for PurgeJob serialization
diff --git a/lib/unix_daemon.rb b/lib/unix_daemon.rb index <HASH>..<HASH> 100644 --- a/lib/unix_daemon.rb +++ b/lib/unix_daemon.rb @@ -76,7 +76,9 @@ module ActsAsFerret # checked on ubuntu and OSX only def process_exists(pid) ps = IO.popen("ps -fp #{pid}", "r") - ps.to_a[1] =~ /ferret_serv...
close pipe so defunct ps process is not left hanging around
diff --git a/webapps/client/scripts/filter/modals/cam-tasklist-filter-modal.js b/webapps/client/scripts/filter/modals/cam-tasklist-filter-modal.js index <HASH>..<HASH> 100644 --- a/webapps/client/scripts/filter/modals/cam-tasklist-filter-modal.js +++ b/webapps/client/scripts/filter/modals/cam-tasklist-filter-modal.js @...
fix(filter): fix typo in filter dialog related to CAM-<I>
diff --git a/lib/findJsModulesFor.js b/lib/findJsModulesFor.js index <HASH>..<HASH> 100644 --- a/lib/findJsModulesFor.js +++ b/lib/findJsModulesFor.js @@ -116,6 +116,14 @@ function findJsModulesFor(config, pathToCurrentFile, variableName) { }); }); + config.environmentCoreModules().forEach((dep) => { + if...
Move finding environmentCoreModules above dependencies Conceptually these should be considered first, since they are part of the environment. Furthermore, this is how we group things so it is nice to have the symmetry here.
diff --git a/packages/hw-transport-webhid/src/TransportWebHID.js b/packages/hw-transport-webhid/src/TransportWebHID.js index <HASH>..<HASH> 100644 --- a/packages/hw-transport-webhid/src/TransportWebHID.js +++ b/packages/hw-transport-webhid/src/TransportWebHID.js @@ -115,10 +115,10 @@ export default class TransportWebHI...
call observer.error instead of throwing an error
diff --git a/common/src/test/java/io/netty/util/concurrent/DefaultPromiseTest.java b/common/src/test/java/io/netty/util/concurrent/DefaultPromiseTest.java index <HASH>..<HASH> 100644 --- a/common/src/test/java/io/netty/util/concurrent/DefaultPromiseTest.java +++ b/common/src/test/java/io/netty/util/concurrent/DefaultPr...
DefaultPromiseTest dead code removal Motivation: DefaultPromiseTest has dead code which was left over from a code restructure. Shared code between 2 tests was moved into a common method, but some code which was not cleaned up in each of these methods after the code was moved. Modifications: - Delete dead code in Defa...
diff --git a/code/plugins/system/koowa.php b/code/plugins/system/koowa.php index <HASH>..<HASH> 100644 --- a/code/plugins/system/koowa.php +++ b/code/plugins/system/koowa.php @@ -37,9 +37,10 @@ class plgSystemKoowa extends JPlugin JLoader::import('libraries.koowa.koowa', JPATH_ROOT); JLoader::import('libraries.k...
re #<I> : KRequest is now a singleton. Added instanciate call.
diff --git a/src/Application.php b/src/Application.php index <HASH>..<HASH> 100644 --- a/src/Application.php +++ b/src/Application.php @@ -262,7 +262,7 @@ class Application extends Container implements ApplicationContract, HttpKernelIn $this->loadedProviders[$providerName] = true; $provider->registe...
Call providers boot method via IoC.
diff --git a/api/backups/restore.go b/api/backups/restore.go index <HASH>..<HASH> 100644 --- a/api/backups/restore.go +++ b/api/backups/restore.go @@ -126,9 +126,6 @@ func (c *Client) restore(backupId string, newClient ClientConnection) error { return errors.Annotatef(err, "cannot perform restore: %v", remoteError)...
Removed erroneous check
diff --git a/src/Conductors/Concerns/ConductsAbilities.php b/src/Conductors/Concerns/ConductsAbilities.php index <HASH>..<HASH> 100644 --- a/src/Conductors/Concerns/ConductsAbilities.php +++ b/src/Conductors/Concerns/ConductsAbilities.php @@ -86,10 +86,8 @@ trait ConductsAbilities // In an ideal world, we'd ...
Use "array_filter" instead of "contains" The order of the arguments passed to the "contains" callback has changed between versions of Laravel making it impossible to use in Bouncer.......
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java b/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java index <HASH>..<HASH> 100644 --- a/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java +++ b/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java @@ -169,6 +169,9 @@ public class BugInstance ...
OK, web cloud tests use both MISSING and FOUND as bug types... sigh.... Accomodate both git-svn-id: <URL>
diff --git a/lib/instance/executable_sequence_proxy.rb b/lib/instance/executable_sequence_proxy.rb index <HASH>..<HASH> 100644 --- a/lib/instance/executable_sequence_proxy.rb +++ b/lib/instance/executable_sequence_proxy.rb @@ -68,7 +68,7 @@ module RightScale AuditCookStub.instance.setup_audit_forwarding(@thread_...
acu<I> do not run boot bundle if it is empty This prevent server without any RightScript or recipe from stranding when repose is down
diff --git a/src/main/java/uk/ac/bolton/spaws/model/impl/Ratings.java b/src/main/java/uk/ac/bolton/spaws/model/impl/Ratings.java index <HASH>..<HASH> 100644 --- a/src/main/java/uk/ac/bolton/spaws/model/impl/Ratings.java +++ b/src/main/java/uk/ac/bolton/spaws/model/impl/Ratings.java @@ -24,7 +24,7 @@ public class Rating...
Set initial sample size for a set of ratings to 0
diff --git a/salt/modules/useradd.py b/salt/modules/useradd.py index <HASH>..<HASH> 100644 --- a/salt/modules/useradd.py +++ b/salt/modules/useradd.py @@ -391,9 +391,6 @@ def _format_info(data): ''' # Put GECOS info into a list gecos_field = data.pw_gecos.split(',', 3) - # Assign empty strings for any...
Making the gecos stuff easier to read
diff --git a/indra/assemblers/pybel/assembler.py b/indra/assemblers/pybel/assembler.py index <HASH>..<HASH> 100644 --- a/indra/assemblers/pybel/assembler.py +++ b/indra/assemblers/pybel/assembler.py @@ -400,7 +400,7 @@ def belgraph_to_signed_graph( rel = edge_data.get('relation') pos_edge = \ ...
Fix creation of annotation propogated pybeledge Since this v will always be an instance of a dictionary where the keys are the annotations, just directly tuple(v) to get the tuple of all values for that annotation
diff --git a/lib/OpenLayers/Util.js b/lib/OpenLayers/Util.js index <HASH>..<HASH> 100644 --- a/lib/OpenLayers/Util.js +++ b/lib/OpenLayers/Util.js @@ -879,6 +879,7 @@ OpenLayers.Util.createUniqueID = function(prefix) { /** * Constant: INCHES_PER_UNIT * {Object} Constant inches per unit -- borrowed from MapServer m...
add yards and nautical miles to OpenLayers units. (Closes #<I>) git-svn-id: <URL>
diff --git a/src/modules/getAnimationPromises.js b/src/modules/getAnimationPromises.js index <HASH>..<HASH> 100644 --- a/src/modules/getAnimationPromises.js +++ b/src/modules/getAnimationPromises.js @@ -3,7 +3,7 @@ import { transitionEnd } from '../helpers'; const getAnimationPromises = function() { const promises...
Scope animated elements selector to body
diff --git a/linebot/event.go b/linebot/event.go index <HASH>..<HASH> 100644 --- a/linebot/event.go +++ b/linebot/event.go @@ -230,9 +230,10 @@ func (e *Event) UnmarshalJSON(body []byte) (err error) { case EventTypePostback: e.Postback = rawEvent.Postback case EventTypeBeacon: - deviceMessage, err := hex.Decode...
Update return statement of EventTypeBeacon
diff --git a/lib/db/services.php b/lib/db/services.php index <HASH>..<HASH> 100644 --- a/lib/db/services.php +++ b/lib/db/services.php @@ -946,7 +946,6 @@ $services = array( 'core_webservice_get_site_info', 'core_notes_create_notes', 'core_user_get_course_user_profiles', - ...
MDL-<I> webservices: Deleted duplicated function in mobile service
diff --git a/lib/specinfra/command/base/service.rb b/lib/specinfra/command/base/service.rb index <HASH>..<HASH> 100644 --- a/lib/specinfra/command/base/service.rb +++ b/lib/specinfra/command/base/service.rb @@ -12,6 +12,10 @@ class Specinfra::Command::Base::Service < Specinfra::Command::Base "initctl status #{es...
Support daemontools Support daemontools (djb-ware) for checking service.
diff --git a/src/HasTags.php b/src/HasTags.php index <HASH>..<HASH> 100644 --- a/src/HasTags.php +++ b/src/HasTags.php @@ -100,11 +100,11 @@ trait HasTags $tags = $className::findOrCreate($tags); - collect($tags)->each(function (Tag $tag) { - if (! $this->tags()->get()->contains('id', $ta...
Use syncWithoutDetaching instead of conditionally attaching tags