diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/netpyne/analysis/spikes.py b/netpyne/analysis/spikes.py index <HASH>..<HASH> 100644 --- a/netpyne/analysis/spikes.py +++ b/netpyne/analysis/spikes.py @@ -31,7 +31,7 @@ from .utils import exception #, getInclude, getSpktSpkid from .tools import getInclude, getSpktSpkid from .tools import saveData as saveF...
imported Dict from specs in analysis/spikes.py to try to resolve popAvgRates() Dict() error
diff --git a/mailjet/api.py b/mailjet/api.py index <HASH>..<HASH> 100644 --- a/mailjet/api.py +++ b/mailjet/api.py @@ -30,6 +30,11 @@ class ApiMethodFunction(object): def __call__(self, **kwargs): if kwargs.pop('method', 'GET') == 'POST': postdata = kwargs + for key in postdata: + ...
Workarround to pass tuple as argument in the form that mailjet api understand : Ex food=('chocolate', 'cookie') is now transform in request to food[0]=chocolate&food[1]=cookie
diff --git a/panoptes_client/utils.py b/panoptes_client/utils.py index <HASH>..<HASH> 100644 --- a/panoptes_client/utils.py +++ b/panoptes_client/utils.py @@ -24,6 +24,8 @@ def isiterable(v): def split(to_batch, batch_size): + if type(to_batch) == set: + to_batch = tuple(to_batch) for batch in [ ...
Convert sets to tuples before trying to split them
diff --git a/hugolib/filesystems/basefs.go b/hugolib/filesystems/basefs.go index <HASH>..<HASH> 100644 --- a/hugolib/filesystems/basefs.go +++ b/hugolib/filesystems/basefs.go @@ -68,7 +68,7 @@ type BaseFs struct { // This usually maps to /my-project/public. PublishFs afero.Fs - // A read-only filesystem from the ...
Remove the decorator from the fs used in ReadDir There have been a site breakage reported in the wild after <I>. With this commit we shoudl be back to how it behaved in <I>. Closes #<I>
diff --git a/cake/tests/cases/libs/debugger.test.php b/cake/tests/cases/libs/debugger.test.php index <HASH>..<HASH> 100644 --- a/cake/tests/cases/libs/debugger.test.php +++ b/cake/tests/cases/libs/debugger.test.php @@ -189,6 +189,8 @@ class DebuggerTest extends CakeTestCase { '/error' ); $this->assertTags($re...
Adding a restore_error_handler() so the Debugger test doesn't interfere with other tests.
diff --git a/azure-servicemanagement-legacy/azure/servicemanagement/servicemanagementclient.py b/azure-servicemanagement-legacy/azure/servicemanagement/servicemanagementclient.py index <HASH>..<HASH> 100644 --- a/azure-servicemanagement-legacy/azure/servicemanagement/servicemanagementclient.py +++ b/azure-servicemanage...
Extend get_path to handle more granular endpoints Publishing details, for example, are nested below a typical endpoint path. An optional suffix on the path makes more granular endpoints reachable without requiring any change to existing code.
diff --git a/src/utils/tenant-cache.js b/src/utils/tenant-cache.js index <HASH>..<HASH> 100644 --- a/src/utils/tenant-cache.js +++ b/src/utils/tenant-cache.js @@ -1,6 +1,6 @@ 'use strict'; -const deepClone = require('./deep-clone'); +const { deepClone } = require('./deep-clone'); let TenantClient; let TenantsOrP...
minor fixes (#<I>) * since there is never a reason to pass user-claims when getting tenant data, remove them if they exist so as to not cause a <I> * add support for JWT authentication * bug fix in tenant-cache (typo) * remove jwt from context in tenant-cache
diff --git a/test/test_roo.rb b/test/test_roo.rb index <HASH>..<HASH> 100644 --- a/test/test_roo.rb +++ b/test/test_roo.rb @@ -75,7 +75,7 @@ class TestRoo < Test::Unit::TestCase fixture_filename(options[:name], format))) end rescue => e - raise e, "#{e.message} for #{format}" + ...
Preserve the original backtrace on with_each_spreadsheet re-raise.
diff --git a/connection.go b/connection.go index <HASH>..<HASH> 100644 --- a/connection.go +++ b/connection.go @@ -542,7 +542,7 @@ func (cn *connection) updatePiecePriority(piece int) { default: panic(tpp) } - prio += piece / 2 + prio += piece / 3 cn.pieceRequestOrder.Set(piece, prio) cn.updateRequests() }
Reduce the priority given to earlier pieces. Maximum priority reads at the end of the file aren’t getting enough attention.
diff --git a/allennlp/data/fields/label_field.py b/allennlp/data/fields/label_field.py index <HASH>..<HASH> 100644 --- a/allennlp/data/fields/label_field.py +++ b/allennlp/data/fields/label_field.py @@ -78,4 +78,4 @@ class LabelField(Field[numpy.ndarray]): @overrides def empty_field(self): - return L...
Fixes empty_field method of LabelField and adds a test (#<I>) * fixed empty_field method of label_field and added a test * Changed empty_field test for LabelField to test value of padding
diff --git a/src/Kunstmaan/SeoBundle/Tests/Entity/SeoTest.php b/src/Kunstmaan/SeoBundle/Tests/Entity/SeoTest.php index <HASH>..<HASH> 100644 --- a/src/Kunstmaan/SeoBundle/Tests/Entity/SeoTest.php +++ b/src/Kunstmaan/SeoBundle/Tests/Entity/SeoTest.php @@ -132,18 +132,6 @@ class SeoTest extends \PHPUnit_Framework_TestCas...
Since the CIM keyword was removed, remove the tests as well.
diff --git a/driver/src/test/java/org/neo4j/driver/util/Neo4jSettings.java b/driver/src/test/java/org/neo4j/driver/util/Neo4jSettings.java index <HASH>..<HASH> 100644 --- a/driver/src/test/java/org/neo4j/driver/util/Neo4jSettings.java +++ b/driver/src/test/java/org/neo4j/driver/util/Neo4jSettings.java @@ -30,7 +30,7 @@...
Fix server configuration affecting <I> builds (#<I>)
diff --git a/packages/node_modules/@webex/internal-plugin-ediscovery/src/report-generator.js b/packages/node_modules/@webex/internal-plugin-ediscovery/src/report-generator.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/internal-plugin-ediscovery/src/report-generator.js +++ b/packages/node_modules/@we...
feat(ediscovery): bump maxsize to <I> mb
diff --git a/tests/engine_test.py b/tests/engine_test.py index <HASH>..<HASH> 100644 --- a/tests/engine_test.py +++ b/tests/engine_test.py @@ -341,29 +341,6 @@ class CreateRiskCalculationTestCase(unittest.TestCase): '-0.5000000000000000 0.5000000000000000))')) -class ReadJobProfileFromConfigFileTestCa...
tests/engine_test: Removed a useless test case.
diff --git a/src/renderer-enhancer.js b/src/renderer-enhancer.js index <HASH>..<HASH> 100644 --- a/src/renderer-enhancer.js +++ b/src/renderer-enhancer.js @@ -45,7 +45,7 @@ module.exports = overrides => storeCreator => (reducer, providedInitialState) => if (!getInitialState) throw new Error('Could not find electronE...
Fix InitialState bug. (#<I>) This commit fixes the issue where electronEnhancer returns the preloadedState of an application instead of the provided initial state.
diff --git a/lib/caracal/document.rb b/lib/caracal/document.rb index <HASH>..<HASH> 100644 --- a/lib/caracal/document.rb +++ b/lib/caracal/document.rb @@ -196,7 +196,7 @@ module Caracal def render_media(zip) images = relationships.select { |r| r.relationship_type == :image } images.each do |rel| - ...
Actually fixed issue with image media rendering.
diff --git a/tasks/release.rb b/tasks/release.rb index <HASH>..<HASH> 100644 --- a/tasks/release.rb +++ b/tasks/release.rb @@ -186,7 +186,7 @@ task :announce do raise "Only valid for patch releases" end - sums = "$ shasum *-#{version}.gem\n" + `shasum *-#{version}.gem` + sums = "$ shasum -a 256 *-#{...
Use shasum <I> on the release
diff --git a/cordova-js-src/confighelper.js b/cordova-js-src/confighelper.js index <HASH>..<HASH> 100644 --- a/cordova-js-src/confighelper.js +++ b/cordova-js-src/confighelper.js @@ -25,7 +25,7 @@ var utils = require('cordova/utils'); var isPhone = (cordova.platformId === 'windows') && WinJS.Utilities.isPhone; var ...
fix(win<I>): read splashscreen correctly from manifest (#<I>)
diff --git a/sendgrid/sendgrid.py b/sendgrid/sendgrid.py index <HASH>..<HASH> 100644 --- a/sendgrid/sendgrid.py +++ b/sendgrid/sendgrid.py @@ -20,7 +20,6 @@ class SendGridAPIClient(object): headers = { "Authorization": 'Bearer {0}'.format(self._apikey), - "Content-Type": "applicati...
Udpdated dependency, content-type now gets set in the client automatically
diff --git a/src/Zephyrus/Application/RouterEngine.php b/src/Zephyrus/Application/RouterEngine.php index <HASH>..<HASH> 100644 --- a/src/Zephyrus/Application/RouterEngine.php +++ b/src/Zephyrus/Application/RouterEngine.php @@ -122,6 +122,7 @@ abstract class RouterEngine return $route; } ...
Light refactoring for StyleCI
diff --git a/test/test_motor_grid_file.py b/test/test_motor_grid_file.py index <HASH>..<HASH> 100644 --- a/test/test_motor_grid_file.py +++ b/test/test_motor_grid_file.py @@ -55,8 +55,9 @@ class MotorGridFileTest(MotorTest): yield motor.Op( self.check_optional_callback, partial(f.writelines, [b('a...
Fix race condition in test_motor_grid_file
diff --git a/examples/simple_agent.py b/examples/simple_agent.py index <HASH>..<HASH> 100755 --- a/examples/simple_agent.py +++ b/examples/simple_agent.py @@ -147,12 +147,16 @@ firstTable = agent.Table( agent.DisplayString() ], columns = [ + # Columns begin with an index of 2 here because 1 is actually + # use...
simple_agent.py: Add additional explanatory comments
diff --git a/core/src/main/java/com/google/common/truth/Correspondence.java b/core/src/main/java/com/google/common/truth/Correspondence.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/google/common/truth/Correspondence.java +++ b/core/src/main/java/com/google/common/truth/Correspondence.java @@ -317,8 +31...
Deprecate the constructor of Correspondence internally, and hide it externally. RELNOTES=Hid constuctor of `Correspondence`. Use the class's static factory methods instead. The most mechanical migration is usually to `Correspondence.from`. ------------- Created by MOE: <URL>
diff --git a/plugin/wavesurfer.timeline.js b/plugin/wavesurfer.timeline.js index <HASH>..<HASH> 100644 --- a/plugin/wavesurfer.timeline.js +++ b/plugin/wavesurfer.timeline.js @@ -106,8 +106,8 @@ var width = this.drawer.getWidth(); var pixelsPerSecond = width/duration; } el...
fix to timeline.js drawing bug
diff --git a/lib/rfuse/version.rb b/lib/rfuse/version.rb index <HASH>..<HASH> 100644 --- a/lib/rfuse/version.rb +++ b/lib/rfuse/version.rb @@ -1,3 +1,3 @@ module RFuse - VERSION = "1.2.2" + VERSION = "1.2.3" end
Bump rfuse to <I>
diff --git a/hendrix/facilities/services.py b/hendrix/facilities/services.py index <HASH>..<HASH> 100644 --- a/hendrix/facilities/services.py +++ b/hendrix/facilities/services.py @@ -161,7 +161,7 @@ class HendrixTCPServiceWithTLS(internet.SSLServer): context_factory = context_factory or ssl.DefaultOpenSSLConte...
Preserving tls_context for use with websocket factory.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -123,7 +123,7 @@ setup( 'rejester', 'protobuf', 'requests', - 'streamcorpus>=0.3.38', + 'streamcorpus>=0.3.39', 'pyyaml', 'nltk', 'lxml',
requiring streamcorpus>=<I>, i.e. cbor>=<I> with the fixes for sigsgv and bigname leak
diff --git a/src/inputmask.js b/src/inputmask.js index <HASH>..<HASH> 100644 --- a/src/inputmask.js +++ b/src/inputmask.js @@ -100,6 +100,16 @@ function init(Survey) { surveyElement.customWidgetData.isNeedRender = true; }; + $(el).on('focusout change', function () { + + if ($(el).inputmask...
Fix for the T<I> - Survey Creator - Currency InputMask value not saving in the JSON
diff --git a/lib/server/plugins/api/index.js b/lib/server/plugins/api/index.js index <HASH>..<HASH> 100644 --- a/lib/server/plugins/api/index.js +++ b/lib/server/plugins/api/index.js @@ -77,7 +77,7 @@ var internals = { } // hapi eats newlines. We like newlines. For POSIX and such. - data = data + '...
fix(api): do not force newlines * * * This commit was sponsored by The Hoodie Firm. You can hire The Hoodie Firm: <URL>
diff --git a/intervaltree/intervaltree.py b/intervaltree/intervaltree.py index <HASH>..<HASH> 100644 --- a/intervaltree/intervaltree.py +++ b/intervaltree/intervaltree.py @@ -401,7 +401,11 @@ class IntervalTree(collections.MutableSet): Returns a new tree, comprising all intervals in self but not in ot...
rm: set comprehensions in set operations, use for-loop instead
diff --git a/packages/Photos/src/site/components/com_photos/templates/stories/photo_comment.php b/packages/Photos/src/site/components/com_photos/templates/stories/photo_comment.php index <HASH>..<HASH> 100644 --- a/packages/Photos/src/site/components/com_photos/templates/stories/photo_comment.php +++ b/packages/Photos/...
Fixed a bug: $photo changed to $object
diff --git a/a10_neutron_lbaas/tests/unit/plumbing/test_portbinding_vlan.py b/a10_neutron_lbaas/tests/unit/plumbing/test_portbinding_vlan.py index <HASH>..<HASH> 100644 --- a/a10_neutron_lbaas/tests/unit/plumbing/test_portbinding_vlan.py +++ b/a10_neutron_lbaas/tests/unit/plumbing/test_portbinding_vlan.py @@ -21,7 +21,...
Actually fixed the import error this time, like I ran tests and all
diff --git a/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php b/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php +++ b/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php @@ -109,7 +109,7 @@ c...
Update the Controller to be consistent We are always using $this->container->get() and now we're using the short-cut sometimes to access to a service. It could be nice to stay with $this->container->get(), so for those who copy and paste the Controller to create a ControllerUtils, they wont have to change it (in fact...
diff --git a/util.py b/util.py index <HASH>..<HASH> 100644 --- a/util.py +++ b/util.py @@ -369,6 +369,7 @@ byte_compile(files, optimize=%s, force=%s, elif optimize == 2: cmd.insert(1, "-OO") spawn(cmd, verbose=verbose, dry_run=dry_run) + os.remove(script_name) # "Dir...
Remove the temporary byte-compilation script when we're done with it.
diff --git a/test/rain/git_tools_test.rb b/test/rain/git_tools_test.rb index <HASH>..<HASH> 100644 --- a/test/rain/git_tools_test.rb +++ b/test/rain/git_tools_test.rb @@ -31,9 +31,6 @@ class Rain::GitToolsTest < ActiveSupport::TestCase should "return false when there are uncommitted changes" do assert %x(ec...
Remove ability for these tests to go out of order
diff --git a/src/Nchan.php b/src/Nchan.php index <HASH>..<HASH> 100644 --- a/src/Nchan.php +++ b/src/Nchan.php @@ -55,16 +55,4 @@ final class Nchan { return new Status($this->baseUrl->append($path), $this->client); } - - /** - * Create the api for the given group name. - * - * @param s...
Remove Nchan::group() because it's for version <I>
diff --git a/hbmqtt/test_client.py b/hbmqtt/test_client.py index <HASH>..<HASH> 100644 --- a/hbmqtt/test_client.py +++ b/hbmqtt/test_client.py @@ -20,4 +20,4 @@ def test_coro(): if __name__ == '__main__': logging.basicConfig(level=logging.DEBUG) - asyncio.get_event_loop().run_until_complete(test_coro()) \ No...
disable (temporarly) testing
diff --git a/plugins/Login/Controller.php b/plugins/Login/Controller.php index <HASH>..<HASH> 100644 --- a/plugins/Login/Controller.php +++ b/plugins/Login/Controller.php @@ -441,8 +441,9 @@ class Controller extends \Piwik\Plugin\ControllerAdmin try { $passwordHash = $this->passwordResetter->check...
Use brute force detection for reset password action (#<I>)
diff --git a/kie-api/src/main/java/org/kie/api/pmml/PMMLRequestData.java b/kie-api/src/main/java/org/kie/api/pmml/PMMLRequestData.java index <HASH>..<HASH> 100644 --- a/kie-api/src/main/java/org/kie/api/pmml/PMMLRequestData.java +++ b/kie-api/src/main/java/org/kie/api/pmml/PMMLRequestData.java @@ -81,6 +81,7 @@ public ...
RHPAM-<I> Guided Score card rules not executed via test scenario (#<I>) Adding a paramater now replaces a parameter with the same name.
diff --git a/decidim-core/lib/decidim/core.rb b/decidim-core/lib/decidim/core.rb index <HASH>..<HASH> 100644 --- a/decidim-core/lib/decidim/core.rb +++ b/decidim-core/lib/decidim/core.rb @@ -86,7 +86,7 @@ module Decidim # Exposes a configuration option: The application name String. config_accessor :available_lo...
Adding italian language to default locale (#<I>)
diff --git a/lib/faalis/version.rb b/lib/faalis/version.rb index <HASH>..<HASH> 100755 --- a/lib/faalis/version.rb +++ b/lib/faalis/version.rb @@ -18,5 +18,5 @@ # ----------------------------------------------------------------------------- module Faalis - VERSION = '2.0.0.rc3' + VERSION = '2.0.0.rc4' end
version <I>.rc4
diff --git a/skew/backends/redis_backend.py b/skew/backends/redis_backend.py index <HASH>..<HASH> 100644 --- a/skew/backends/redis_backend.py +++ b/skew/backends/redis_backend.py @@ -48,7 +48,7 @@ class RedisBlockingQueue(RedisQueue): def read(self): try: - return self.conn.brpop(self.queue_n...
Fixing a bug in the redis blocking queue
diff --git a/Classes/Neos/Neos/Ui/Aspects/AugmentationAspect.php b/Classes/Neos/Neos/Ui/Aspects/AugmentationAspect.php index <HASH>..<HASH> 100644 --- a/Classes/Neos/Neos/Ui/Aspects/AugmentationAspect.php +++ b/Classes/Neos/Neos/Ui/Aspects/AugmentationAspect.php @@ -118,7 +118,7 @@ class AugmentationAspect /**...
TASK: Adapt aspect to changed argument name in Neos
diff --git a/system/src/Grav/Framework/Flex/Storage/FolderStorage.php b/system/src/Grav/Framework/Flex/Storage/FolderStorage.php index <HASH>..<HASH> 100644 --- a/system/src/Grav/Framework/Flex/Storage/FolderStorage.php +++ b/system/src/Grav/Framework/Flex/Storage/FolderStorage.php @@ -360,7 +360,9 @@ class FolderStora...
FlexFolderStorage: fixed error on deleting file
diff --git a/mode/clojure/clojure.js b/mode/clojure/clojure.js index <HASH>..<HASH> 100644 --- a/mode/clojure/clojure.js +++ b/mode/clojure/clojure.js @@ -166,7 +166,7 @@ CodeMirror.defineMode("clojure", function (options) { var qualifiedSymbol = /^(?:(?:[^\\\/\[\]\d\s"#'(),;@^`{}~][^\\\[\]\s"(),;@^`{}~]*(?:\.[^\\\/...
[clojure mode] Treat commas as whitespace Closes #<I>
diff --git a/core/renderMiddleware.js b/core/renderMiddleware.js index <HASH>..<HASH> 100644 --- a/core/renderMiddleware.js +++ b/core/renderMiddleware.js @@ -639,11 +639,19 @@ function endResponse(req, res, context, start, page) { function logRequestStats(req, res, context, start){ var allRequests = TritonAgent.cac...
RED-<I> Better I/O accounting with keepalive
diff --git a/c7n/resources/account.py b/c7n/resources/account.py index <HASH>..<HASH> 100644 --- a/c7n/resources/account.py +++ b/c7n/resources/account.py @@ -600,6 +600,7 @@ class RequestLimitIncrease(BaseAction): 'VPC': 'amazon-virtual-private-cloud', 'IAM': 'aws-identity-and-access-management', ...
aws - service-limit-increase add kinesis to service code mapping (#<I>)
diff --git a/.eslintrc.js b/.eslintrc.js index <HASH>..<HASH> 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -10,6 +10,7 @@ module.exports = { }], 'no-param-reassign': ['error', { props: false, - }] + }], + 'prefer-destructuring': 'off', } };
lint: prefer-destructuring: off
diff --git a/lib/airbrake-ruby/tdigest.rb b/lib/airbrake-ruby/tdigest.rb index <HASH>..<HASH> 100644 --- a/lib/airbrake-ruby/tdigest.rb +++ b/lib/airbrake-ruby/tdigest.rb @@ -247,7 +247,7 @@ module Airbrake end def to_a - @centroids.map { |_, c| c } + @centroids.each_value.to_a end # r...
tdigest: refactor #to_a to use more idiomatic Ruby
diff --git a/src/main/java/com/hackoeur/jglm/Mat4.java b/src/main/java/com/hackoeur/jglm/Mat4.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/hackoeur/jglm/Mat4.java +++ b/src/main/java/com/hackoeur/jglm/Mat4.java @@ -24,7 +24,10 @@ import com.hackoeur.jglm.support.Precision; * * @author James Royalty *...
Added constants for IDENTITY and ZERO. Made class final.
diff --git a/test/nexttext.js b/test/nexttext.js index <HASH>..<HASH> 100644 --- a/test/nexttext.js +++ b/test/nexttext.js @@ -1,9 +1,6 @@ -var _ = require('lodash'); -var async = require('async'); var chai = require('chai'); var expect = chai.expect; var lacona; -var sinon = require('sinon'); chai.use(require('s...
lint test/nexttest.js succeeds
diff --git a/cmd/prometheus/main_test.go b/cmd/prometheus/main_test.go index <HASH>..<HASH> 100644 --- a/cmd/prometheus/main_test.go +++ b/cmd/prometheus/main_test.go @@ -226,6 +226,7 @@ func TestWALSegmentSizeBounds(t *testing.T) { t.Errorf("prometheus should be still running: %v", err) case <-time.After(5 * ...
cmd/prometheus: wait for Prometheus to shutdown in tests So temporary data directory can be successfully removed, as on Windows, directory cannot be in used while removal.
diff --git a/packages/functionals/botpress-qna/src/views/index.js b/packages/functionals/botpress-qna/src/views/index.js index <HASH>..<HASH> 100755 --- a/packages/functionals/botpress-qna/src/views/index.js +++ b/packages/functionals/botpress-qna/src/views/index.js @@ -203,7 +203,7 @@ export default class QnaAdmin ext...
fix(qna): on flow deletion or rename, QNA still works
diff --git a/lib/cms9/engine.rb b/lib/cms9/engine.rb index <HASH>..<HASH> 100644 --- a/lib/cms9/engine.rb +++ b/lib/cms9/engine.rb @@ -1,6 +1,14 @@ module Cms9 class Engine < ::Rails::Engine isolate_namespace Cms9 + require 'sass-rails' + require 'uglifier' + require 'coffee-rails' + require 'jquer...
- fix engine.rb 8th
diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/core.rb +++ b/activerecord/lib/active_record/core.rb @@ -162,6 +162,9 @@ module ActiveRecord v.nil? || Array === v || Hash === v } + ...
Fix find_by with associations not working with adequate record For now, we will just skip the cache when a non-column key is used in the hash. If the future, we can probably move some of the logic in PredicateBuilder.expand up the chain to make caching possible for association queries. Closes #<I> Fixes #<I>
diff --git a/src/Models/History.php b/src/Models/History.php index <HASH>..<HASH> 100644 --- a/src/Models/History.php +++ b/src/Models/History.php @@ -1,8 +1,8 @@ <?php namespace TypiCMS\Modules\History\Models; +use Laracasts\Presenter\PresentableTrait; use TypiCMS\Models\Base; -use TypiCMS\Presenters\PresentableT...
use of laracasts/presenter
diff --git a/packages/ember-routing/lib/system/route.js b/packages/ember-routing/lib/system/route.js index <HASH>..<HASH> 100644 --- a/packages/ember-routing/lib/system/route.js +++ b/packages/ember-routing/lib/system/route.js @@ -410,6 +410,8 @@ function normalizeOptions(route, name, template, options) { options.na...
Assert when rendering to root with an outletName
diff --git a/scripts/parse_proto.py b/scripts/parse_proto.py index <HASH>..<HASH> 100755 --- a/scripts/parse_proto.py +++ b/scripts/parse_proto.py @@ -44,6 +44,7 @@ class ProtoMetadata: java_api_version = 2 java_alt_api_package = '' outer_class = '' + optimize_for = 'SPEED' def __init__(self): self....
Parse and handle the "optimize_for" proto option.
diff --git a/query.go b/query.go index <HASH>..<HASH> 100644 --- a/query.go +++ b/query.go @@ -3,8 +3,8 @@ package notifications import ( "encoding/json" - peer "gx/ipfs/QmQGwpJy9P4yXZySmqkZEXCmbBpJUb8xntCv8Ca4taZwDC/go-libp2p-peer" - pstore "gx/ipfs/QmXHUpFsnpCmanRnacqYkFoLoFfEq5yS2nUgGkAjJ1Nj9j/go-libp2p-peersto...
Update go-log in whole dependency tree (#<I>) * Update golog in go-ipfs License: MIT
diff --git a/upup/pkg/fi/cloudup/bootstrapchannelbuilder.go b/upup/pkg/fi/cloudup/bootstrapchannelbuilder.go index <HASH>..<HASH> 100644 --- a/upup/pkg/fi/cloudup/bootstrapchannelbuilder.go +++ b/upup/pkg/fi/cloudup/bootstrapchannelbuilder.go @@ -682,7 +682,7 @@ func (b *BootstrapChannelBuilder) buildAddons() *channels...
Bump Calico and Canal version tags for older k8s
diff --git a/Tests/Transport/CurlTransportTest.php b/Tests/Transport/CurlTransportTest.php index <HASH>..<HASH> 100644 --- a/Tests/Transport/CurlTransportTest.php +++ b/Tests/Transport/CurlTransportTest.php @@ -25,7 +25,7 @@ class CurlTransportTest extends \PHPUnit_Framework_TestCase $this->object = new CurlTr...
Fixed breaking CurlTransport unit test
diff --git a/test/commit-message.js b/test/commit-message.js index <HASH>..<HASH> 100644 --- a/test/commit-message.js +++ b/test/commit-message.js @@ -174,6 +174,7 @@ var nonImperativeCases = [ 'Implementing new feature', 'Implements new feature', 'Merged changes into master branch', + // 'Manually me...
Add non-imperative failing test (commented out)
diff --git a/dream.js b/dream.js index <HASH>..<HASH> 100644 --- a/dream.js +++ b/dream.js @@ -90,8 +90,8 @@ function Dream() { return dreamInstance; }; - self.input = function input(input) { - self._dreamHelper.input = input; + self.input = function input(value) { + self._dreamHelper.input = value; ...
- Fixed errors preventing PhantomJS to start properly
diff --git a/csp.py b/csp.py index <HASH>..<HASH> 100644 --- a/csp.py +++ b/csp.py @@ -300,7 +300,7 @@ usa = MapColoringCSP(list('RGBY'), TX: AR LA; MN: WI IA; IA: WI IL MO; MO: IL KY TN AR; AR: MS TN LA; LA: MS; WI: MI IL; IL: IN; IN: KY; MS: TN AL; AL: TN GA FL; MI: OH; OH: PA WV KY; KY: WV...
Changed NY's neighbor to be CT, not CA
diff --git a/lib/API.php b/lib/API.php index <HASH>..<HASH> 100644 --- a/lib/API.php +++ b/lib/API.php @@ -22,7 +22,7 @@ class API { private $API_VERSION = '1'; private $API_HEADER_KEY = 'X-SWU-API-KEY'; private $API_HEADER_CLIENT = 'X-SWU-API-CLIENT'; - private $API_CLIENT_VERSION = "2.6.1"; + pri...
Can get logs specified by before/after timestamp
diff --git a/aaf2/ama.py b/aaf2/ama.py index <HASH>..<HASH> 100644 --- a/aaf2/ama.py +++ b/aaf2/ama.py @@ -171,6 +171,8 @@ def guess_edit_rate(metadata): codec_type = st['codec_type'] if codec_type == 'video': return AAFRational(st['avg_frame_rate']) + elif codec_type == 'audio': +...
guess_edit_rate() now also implemented for audio types This should allow create_ama_link() to work with audio files.
diff --git a/view/frontend/web/js/view/payment/method-renderer/applepay.js b/view/frontend/web/js/view/payment/method-renderer/applepay.js index <HASH>..<HASH> 100755 --- a/view/frontend/web/js/view/payment/method-renderer/applepay.js +++ b/view/frontend/web/js/view/payment/method-renderer/applepay.js @@ -174,16 +174,1...
Apple Pay shopper fileds Added the name field to billing contact and shipping contact requirements.
diff --git a/peerconn.go b/peerconn.go index <HASH>..<HASH> 100644 --- a/peerconn.go +++ b/peerconn.go @@ -1107,7 +1107,9 @@ func (c *PeerConn) mainReadLoop() (err error) { c.peerChoking = true // We can now reset our interest. I think we do this after setting the flag in case the // peerImpl updates synchr...
Reduce idle request updates due to choke and unchoke messages
diff --git a/iris.go b/iris.go index <HASH>..<HASH> 100644 --- a/iris.go +++ b/iris.go @@ -64,7 +64,6 @@ import ( "sync" "time" - "github.com/gavv/httpexpect" "github.com/kataras/go-errors" "github.com/kataras/go-fs" "github.com/kataras/go-serializer" @@ -196,9 +195,6 @@ type ( Plugins PluginContainer ...
For <I> - Remove unused testFramework from the previous commit Read HISTORY.md for changes: <URL>
diff --git a/ingredients_http/errors/validation.py b/ingredients_http/errors/validation.py index <HASH>..<HASH> 100644 --- a/ingredients_http/errors/validation.py +++ b/ingredients_http/errors/validation.py @@ -21,8 +21,11 @@ def json_errors_to_json(validation_errors, root=None): }) elif i...
Fix validation error with nested documents
diff --git a/flask_sqlalchemy_booster/queryable_mixin.py b/flask_sqlalchemy_booster/queryable_mixin.py index <HASH>..<HASH> 100644 --- a/flask_sqlalchemy_booster/queryable_mixin.py +++ b/flask_sqlalchemy_booster/queryable_mixin.py @@ -13,6 +13,14 @@ class QueryableMixin(object): _no_overwrite_ = [] + + def ...
adding update without commit and also adding keys argument to find_or_build
diff --git a/connector/setup.py b/connector/setup.py index <HASH>..<HASH> 100755 --- a/connector/setup.py +++ b/connector/setup.py @@ -182,7 +182,7 @@ setup( 'paramiko >= 1.15.1', 'lxml >= 3.3.0', 'ncclient >= 0.6.6', - 'grpcio <= 1.36.1', + 'grpcio <= 1.28.1', 'cisco-g...
revert grpcio to <I>
diff --git a/credentials/backends.py b/credentials/backends.py index <HASH>..<HASH> 100644 --- a/credentials/backends.py +++ b/credentials/backends.py @@ -1,6 +1,11 @@ import os import json +try: + import configparser +except ImportError: + import ConfigParser as configparser + class EnvBackend(object): ...
Add config file based backend.
diff --git a/builtin/logical/pki/path_issue_sign.go b/builtin/logical/pki/path_issue_sign.go index <HASH>..<HASH> 100644 --- a/builtin/logical/pki/path_issue_sign.go +++ b/builtin/logical/pki/path_issue_sign.go @@ -188,7 +188,7 @@ func (b *backend) pathSignVerbatim(ctx context.Context, req *logical.Request, da func ...
Forward cert signing requests to the primary on perf secondaries as well as perf standbys (#<I>)
diff --git a/commons/components/commons-mule/src/main/java/org/soitoolkit/commons/mule/log/DefaultEventLogger.java b/commons/components/commons-mule/src/main/java/org/soitoolkit/commons/mule/log/DefaultEventLogger.java index <HASH>..<HASH> 100644 --- a/commons/components/commons-mule/src/main/java/org/soitoolkit/common...
Fixes issue <I> performance problem in DefaultEventLogger
diff --git a/itests/standalone/basic/src/test/java/org/wildfly/camel/test/optaplanner/OptaPlannerIntegrationTest.java b/itests/standalone/basic/src/test/java/org/wildfly/camel/test/optaplanner/OptaPlannerIntegrationTest.java index <HASH>..<HASH> 100644 --- a/itests/standalone/basic/src/test/java/org/wildfly/camel/test/...
[Ignore #<I>] Kie assumes that the TCCL can load its services
diff --git a/autograd/grads.py b/autograd/grads.py index <HASH>..<HASH> 100644 --- a/autograd/grads.py +++ b/autograd/grads.py @@ -98,7 +98,7 @@ np.mean = P(np.mean, make_grad_np_mean) def make_grad_chooser(ans, x, axis=None, keepdims=None): """Builds gradient of functions that choose a single item, such as min o...
Realized that min and max already handle exact equality in the way we'd expect them to, but that the gradient isn't well-defined in that case anyways.
diff --git a/lib/cf/version.rb b/lib/cf/version.rb index <HASH>..<HASH> 100644 --- a/lib/cf/version.rb +++ b/lib/cf/version.rb @@ -1,3 +1,3 @@ module CF - VERSION = "5.2.1.rc6".freeze + VERSION = "5.2.1.rc7".freeze end
Bumping to version <I>.rc7.
diff --git a/core/selection.js b/core/selection.js index <HASH>..<HASH> 100644 --- a/core/selection.js +++ b/core/selection.js @@ -167,8 +167,8 @@ class Selection { return index + blot.index(node, offset); } }); - let start = Math.min(...indexes), end = Math.max(...indexes); - end = Math.min(...
fix range having negative length when scroll.length() == 0
diff --git a/src/main/java/com/imsweb/naaccrxml/sas/SasCsvToXml.java b/src/main/java/com/imsweb/naaccrxml/sas/SasCsvToXml.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/imsweb/naaccrxml/sas/SasCsvToXml.java +++ b/src/main/java/com/imsweb/naaccrxml/sas/SasCsvToXml.java @@ -149,7 +149,7 @@ public class SasCsvTo...
Trying to figure out why option is not working
diff --git a/_pydev_runfiles/pydev_runfiles_pytest2.py b/_pydev_runfiles/pydev_runfiles_pytest2.py index <HASH>..<HASH> 100644 --- a/_pydev_runfiles/pydev_runfiles_pytest2.py +++ b/_pydev_runfiles/pydev_runfiles_pytest2.py @@ -164,10 +164,16 @@ except ImportError: def _get_error_contents_from_report(report): if...
Fix to support latest pytest
diff --git a/platform/android/build/android_tools.rb b/platform/android/build/android_tools.rb index <HASH>..<HASH> 100644 --- a/platform/android/build/android_tools.rb +++ b/platform/android/build/android_tools.rb @@ -345,7 +345,7 @@ def load_app_and_run(device_flag, apkfile, pkgname) while count < 20 theoutpu...
platform/android/build/android_tools.rb: install timeout is increased to <I>s (framework_spec on Win<I> Virtual Box)
diff --git a/lib/filelib.php b/lib/filelib.php index <HASH>..<HASH> 100644 --- a/lib/filelib.php +++ b/lib/filelib.php @@ -475,14 +475,6 @@ function put_records_csv($file, $records, $table = NULL) { } -if (!function_exists('file_get_contents')) { - function file_get_contents($file) { - $file = file($file);...
MDL-<I> obsoleted file_get_contents() emulation removed from filelib
diff --git a/.jsdoc.js b/.jsdoc.js index <HASH>..<HASH> 100644 --- a/.jsdoc.js +++ b/.jsdoc.js @@ -31,7 +31,8 @@ module.exports = { source: { excludePattern: '(^|\\/|\\\\)[._]', include: [ - 'build/src' + 'build/src', + 'protos' ], includePattern: '\\.js$' }, @@ -42,7 +43,7 @@ m...
chore: update .jsdoc.js by add protos and remove double quotes (#<I>)
diff --git a/components/http.php b/components/http.php index <HASH>..<HASH> 100644 --- a/components/http.php +++ b/components/http.php @@ -12,6 +12,7 @@ class QM_Component_HTTP extends QM_Component { add_action( 'http_api_debug', array( $this, 'http_debug' ), 99, 5 ); add_filter( 'http_request_args', ar...
Catch the return value of the `pre_http_request` filter so we can log any `WP_Error`s returned here by plugins
diff --git a/src/Message/Response/AbstractRabobankResponse.php b/src/Message/Response/AbstractRabobankResponse.php index <HASH>..<HASH> 100644 --- a/src/Message/Response/AbstractRabobankResponse.php +++ b/src/Message/Response/AbstractRabobankResponse.php @@ -43,9 +43,10 @@ class AbstractRabobankResponse extends Abstrac...
Update AbstractRabobankResponse.php Changed the building of the signatureData array. Since only the redirectURl is needed to validate the purchase response url we should make sure its the only thing in the array.
diff --git a/lib/config/presets.js b/lib/config/presets.js index <HASH>..<HASH> 100644 --- a/lib/config/presets.js +++ b/lib/config/presets.js @@ -20,7 +20,7 @@ async function resolveConfigPresets( ); let config = {}; // First, merge all the preset configs from left to right - if (inputConfig.extends) { + if...
fix: do not resolve packageFile content (#<I>)
diff --git a/jaraco/__init__.py b/jaraco/__init__.py index <HASH>..<HASH> 100644 --- a/jaraco/__init__.py +++ b/jaraco/__init__.py @@ -1 +1 @@ -__path__ = __import__('pkgutil').extend_path(__path__, __name__) +__path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore diff --git a/jaraco/util/exce...
🧎‍♀️ Genuflect to the types.
diff --git a/Sniffs/Commenting/FunctionCommentSniff.php b/Sniffs/Commenting/FunctionCommentSniff.php index <HASH>..<HASH> 100644 --- a/Sniffs/Commenting/FunctionCommentSniff.php +++ b/Sniffs/Commenting/FunctionCommentSniff.php @@ -221,8 +221,11 @@ class ONGR_Sniffs_Commenting_FunctionCommentSniff implements PHP_CodeSni...
Allow getters / setters without short doc
diff --git a/src/main/java/com/github/davidcarboni/cryptolite/GenerateRandom.java b/src/main/java/com/github/davidcarboni/cryptolite/GenerateRandom.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/davidcarboni/cryptolite/GenerateRandom.java +++ b/src/main/java/com/github/davidcarboni/cryptolite/GenerateR...
Because the number of bits in a byte isn't going to change and because it's clear enough with a magic number.
diff --git a/app/models/devise_token_auth/concerns/user.rb b/app/models/devise_token_auth/concerns/user.rb index <HASH>..<HASH> 100644 --- a/app/models/devise_token_auth/concerns/user.rb +++ b/app/models/devise_token_auth/concerns/user.rb @@ -99,11 +99,7 @@ module DeviseTokenAuth::Concerns::User end def dat...
Better implementation to test if connection to db is active
diff --git a/eZ/Publish/Core/REST/Server/index.php b/eZ/Publish/Core/REST/Server/index.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/REST/Server/index.php +++ b/eZ/Publish/Core/REST/Server/index.php @@ -249,6 +249,8 @@ $valueObjectVisitors = array( '\\eZ\\Publish\\Core\\REST\\Server\\Values\\PolicyList' ...
REST: Add User(Group)RoleAssignment visitors
diff --git a/Swat/SwatPercentageEntry.php b/Swat/SwatPercentageEntry.php index <HASH>..<HASH> 100644 --- a/Swat/SwatPercentageEntry.php +++ b/Swat/SwatPercentageEntry.php @@ -39,7 +39,7 @@ class SwatPercentageEntry extends SwatFloatEntry { parent::process(); - if (($this->value >= 0) and ($this->value <= 100)) ...
Use '&&' as the logical AND operator. svn commit r<I>
diff --git a/python_modules/dagster/dagster/core/host_representation/repository_location.py b/python_modules/dagster/dagster/core/host_representation/repository_location.py index <HASH>..<HASH> 100644 --- a/python_modules/dagster/dagster/core/host_representation/repository_location.py +++ b/python_modules/dagster/dagst...
[celery-k8s] fix solid subset part 2 Summary: just like D<I> Test Plan: eyes Reviewers: yuhan Reviewed By: yuhan Differential Revision: <URL>
diff --git a/lib/stripe_mock/request_handlers/payment_methods.rb b/lib/stripe_mock/request_handlers/payment_methods.rb index <HASH>..<HASH> 100644 --- a/lib/stripe_mock/request_handlers/payment_methods.rb +++ b/lib/stripe_mock/request_handlers/payment_methods.rb @@ -1,7 +1,6 @@ module StripeMock module RequestHandl...
Remove empty and duplicated methods from payment methods #<I>
diff --git a/src/remoteStorage.js b/src/remoteStorage.js index <HASH>..<HASH> 100644 --- a/src/remoteStorage.js +++ b/src/remoteStorage.js @@ -91,11 +91,11 @@ define([ // // // to use that code from an app, you need to add: // - // remoteStorage.claimAccess('beers', 'rw'); + // remoteStorage....
remoteStorage doc: updated claimAccess/displayWidget example code to chain promises as well
diff --git a/setuptools/tests/test_msvc9compiler.py b/setuptools/tests/test_msvc9compiler.py index <HASH>..<HASH> 100644 --- a/setuptools/tests/test_msvc9compiler.py +++ b/setuptools/tests/test_msvc9compiler.py @@ -1,8 +1,5 @@ -"""msvc9compiler monkey patch test - -This test ensures that importing setuptools is suffici...
Move docstring to test class.
diff --git a/src/csv_export_util.js b/src/csv_export_util.js index <HASH>..<HASH> 100644 --- a/src/csv_export_util.js +++ b/src/csv_export_util.js @@ -29,7 +29,7 @@ function toString(data, keys, separator, excludeCSVHeader) { for (let i = firstRow; i <= rowCount; i++) { dataString += headCells.map(x => { ...
Add quotation marks to header cells on CSV export
diff --git a/src/ServiceManager.php b/src/ServiceManager.php index <HASH>..<HASH> 100644 --- a/src/ServiceManager.php +++ b/src/ServiceManager.php @@ -678,10 +678,7 @@ class ServiceManager implements ServiceLocatorInterface } } - throw new ServiceNotFoundException(sprintf( - 'U...
Changed exception creation to named constructor.
diff --git a/TYPO3.Eel/Classes/TYPO3/Eel/FlowQuery/Operations/Object/FilterOperation.php b/TYPO3.Eel/Classes/TYPO3/Eel/FlowQuery/Operations/Object/FilterOperation.php index <HASH>..<HASH> 100644 --- a/TYPO3.Eel/Classes/TYPO3/Eel/FlowQuery/Operations/Object/FilterOperation.php +++ b/TYPO3.Eel/Classes/TYPO3/Eel/FlowQuery...
[TASK] Adjust doc comment for FlowQuery filter operation Change-Id: I<I>a<I>dbe<I>df<I>d<I>a5a<I>b<I>e1 Releases: master Reviewed-on: <URL>