diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/src/materials/DepthCopyMaterial.js b/src/materials/DepthCopyMaterial.js index <HASH>..<HASH> 100644 --- a/src/materials/DepthCopyMaterial.js +++ b/src/materials/DepthCopyMaterial.js @@ -111,6 +111,19 @@ export class DepthCopyMaterial extends ShaderMaterial { } /** + * Sets the screen position of the...
Add accessors for configurable uniforms Added setDepthBuffer() and setScreenPosition().
diff --git a/datasette/views/table.py b/datasette/views/table.py index <HASH>..<HASH> 100644 --- a/datasette/views/table.py +++ b/datasette/views/table.py @@ -200,11 +200,7 @@ class TableView(RowTableShared): "SELECT count(*) from sqlite_master WHERE type = 'view' and name=:n", ...
Undid some slightly weird code formatting by 'black'
diff --git a/phat-gui/src/main/java/phat/gui/logging/PrettyLogViewerPanel.java b/phat-gui/src/main/java/phat/gui/logging/PrettyLogViewerPanel.java index <HASH>..<HASH> 100644 --- a/phat-gui/src/main/java/phat/gui/logging/PrettyLogViewerPanel.java +++ b/phat-gui/src/main/java/phat/gui/logging/PrettyLogViewerPanel.java @...
Sim date is no longer showed on action preview
diff --git a/tests/Doctrine/Tests/OrmFunctionalTestCase.php b/tests/Doctrine/Tests/OrmFunctionalTestCase.php index <HASH>..<HASH> 100644 --- a/tests/Doctrine/Tests/OrmFunctionalTestCase.php +++ b/tests/Doctrine/Tests/OrmFunctionalTestCase.php @@ -219,7 +219,7 @@ abstract class OrmFunctionalTestCase extends OrmTestCase ...
Fixed identifier quoting in functional tests.
diff --git a/scenarios/kubernetes_e2e.py b/scenarios/kubernetes_e2e.py index <HASH>..<HASH> 100755 --- a/scenarios/kubernetes_e2e.py +++ b/scenarios/kubernetes_e2e.py @@ -329,7 +329,7 @@ if __name__ == '__main__': PARSER.add_argument( '--soak-test', action='store_true', help='If the test is a soak test jo...
Update kubekins to <I>-4ae<I>be9
diff --git a/autopep8.py b/autopep8.py index <HASH>..<HASH> 100755 --- a/autopep8.py +++ b/autopep8.py @@ -2248,7 +2248,9 @@ def is_python_file(filename): def main(): """Tool main.""" # Exit on broken pipe. - signal.signal(signal.SIGPIPE, signal.SIG_DFL) + + if sys.platform != 'win32': + signal....
SIGPIPE is not available on Windows
diff --git a/src/ol/renderer/canvas/VectorLayer.js b/src/ol/renderer/canvas/VectorLayer.js index <HASH>..<HASH> 100644 --- a/src/ol/renderer/canvas/VectorLayer.js +++ b/src/ol/renderer/canvas/VectorLayer.js @@ -224,7 +224,7 @@ class CanvasVectorLayerRenderer extends CanvasLayerRenderer { const multiWorld = vectorS...
Fix end world calculation if projection is not symmetric
diff --git a/volume/delete.go b/volume/delete.go index <HASH>..<HASH> 100644 --- a/volume/delete.go +++ b/volume/delete.go @@ -59,7 +59,9 @@ func (p *nfsProvisioner) ganeshaUnexport(volume *v1.PersistentVolume) error { return fmt.Errorf("PV doesn't have an annotation %s, can't remove the export from the server", ann...
Lock deletion from map just in case...
diff --git a/boolean/boolean.py b/boolean/boolean.py index <HASH>..<HASH> 100644 --- a/boolean/boolean.py +++ b/boolean/boolean.py @@ -507,7 +507,7 @@ class Expression(object): Include recursively subexpressions symbols. This includes duplicates. """ - return [s for s in self.literals ...
Ensure that symbols are returned in a stable order.
diff --git a/src/main/java/org/iq80/leveldb/table/TableBuilder.java b/src/main/java/org/iq80/leveldb/table/TableBuilder.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/iq80/leveldb/table/TableBuilder.java +++ b/src/main/java/org/iq80/leveldb/table/TableBuilder.java @@ -76,7 +76,7 @@ public class TableBuilder ...
Include unwritten block in TableBuilder.getFileSize() estimate
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -25,6 +25,7 @@ exports.register = function(plugin, options, next) { host: options.host || 'localhost', dialect: options.dialect || 'mysql', port: options.port || 3306, + storag...
Added storage option in object passed to Sequelize Added storage option in object passed to Sequelize for the sqlite dialect
diff --git a/pycbc/filter/matchedfilter.py b/pycbc/filter/matchedfilter.py index <HASH>..<HASH> 100644 --- a/pycbc/filter/matchedfilter.py +++ b/pycbc/filter/matchedfilter.py @@ -169,6 +169,26 @@ def sigma(htilde, psd = None, low_frequency_cutoff=None, return sqrt(sigmasq(htilde, psd, low_frequency_cutoff, high_fr...
Apply matchedfilter nyquist bug fix from Collin as reported in <URL>
diff --git a/lib/slingshot/results/item.rb b/lib/slingshot/results/item.rb index <HASH>..<HASH> 100644 --- a/lib/slingshot/results/item.rb +++ b/lib/slingshot/results/item.rb @@ -7,7 +7,7 @@ module Slingshot # and leaving everything else alone. # def initialize(args={}) - if args.is_a? Hash ...
[REFACTORING] Use message based type testing in Results::Item
diff --git a/src/Illuminate/Database/Query/Grammars/SqlServerGrammar.php b/src/Illuminate/Database/Query/Grammars/SqlServerGrammar.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Database/Query/Grammars/SqlServerGrammar.php +++ b/src/Illuminate/Database/Query/Grammars/SqlServerGrammar.php @@ -368,7 +368,29 @@ clas...
Added nested transactions support for SqlServer (#<I>)
diff --git a/mod/quiz/lib.php b/mod/quiz/lib.php index <HASH>..<HASH> 100644 --- a/mod/quiz/lib.php +++ b/mod/quiz/lib.php @@ -468,7 +468,7 @@ function quiz_print_question($number, $questionid, $grade, $courseid, foreach ($answerids as $key => $answerid) { $answer = $answers[$answerid]; - ...
Change MC answers to letters a, b, c etc ...
diff --git a/glue/ligolw/dbtables.py b/glue/ligolw/dbtables.py index <HASH>..<HASH> 100644 --- a/glue/ligolw/dbtables.py +++ b/glue/ligolw/dbtables.py @@ -494,9 +494,9 @@ class SearchSummaryTable(DBTable): for row in self: if process_ids is None or row.process_id in process_ids: if "," in row.ifos: - if...
In SearchSummaryTable.get_out_segmentlistdict(), strip white space from the start and stop of comma- and plus-delimited instrument names.
diff --git a/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java b/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java index <HASH>..<HASH> 100755 --- a/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java +++ b/client/src/ma...
fixed retry in case of an offline server
diff --git a/spec/ethon/easies/http/action_spec.rb b/spec/ethon/easies/http/action_spec.rb index <HASH>..<HASH> 100644 --- a/spec/ethon/easies/http/action_spec.rb +++ b/spec/ethon/easies/http/action_spec.rb @@ -4,8 +4,22 @@ describe Ethon::Easies::Http::Action do let(:easy) { Ethon::Easy.new } describe ".reset"...
Add more specs for Action.reset.
diff --git a/BackofficeBundle/Resources/public/js/backboneRouter.js b/BackofficeBundle/Resources/public/js/backboneRouter.js index <HASH>..<HASH> 100644 --- a/BackofficeBundle/Resources/public/js/backboneRouter.js +++ b/BackofficeBundle/Resources/public/js/backboneRouter.js @@ -103,7 +103,7 @@ var OrchestraBORouter = B...
[ci skip] Fix menu and poucet on F5
diff --git a/lib/mpd_client.rb b/lib/mpd_client.rb index <HASH>..<HASH> 100644 --- a/lib/mpd_client.rb +++ b/lib/mpd_client.rb @@ -53,7 +53,6 @@ module MPD 'deleteid' => 'fetch_nothing', 'move' => 'fetch_nothing', 'moveid' => 'fetch_nothing', - 'playlist' => 'fetch_playlist', 'playlistfind' => 'f...
remove playlist command, instead use playlistinfo
diff --git a/test/unquote-properties-test.js b/test/unquote-properties-test.js index <HASH>..<HASH> 100644 --- a/test/unquote-properties-test.js +++ b/test/unquote-properties-test.js @@ -11,4 +11,7 @@ var x = { 'class': 9, 1: 10, '2': 11, + [Math.random()]() { return 'oh no'; }, + [Math.random()]: 13, + ['q...
Add computed property test cases for unquote-properties transform.
diff --git a/src/FontAwesome.php b/src/FontAwesome.php index <HASH>..<HASH> 100755 --- a/src/FontAwesome.php +++ b/src/FontAwesome.php @@ -156,7 +156,7 @@ class FontAwesome * @return $this * @throws InvalidArgumentException */ - public function attr($attr, $val) + public function addAttr($attr, ...
Changing method names to include "add"
diff --git a/lib/SDPManagerUnified.js b/lib/SDPManagerUnified.js index <HASH>..<HASH> 100644 --- a/lib/SDPManagerUnified.js +++ b/lib/SDPManagerUnified.js @@ -339,18 +339,22 @@ class SDPManagerUnified extends SDPManager }; else //Update media info - transceiver.remote = mediaInfo; + transceiver.remo...
Tentative fix for remote track removal
diff --git a/h2o-persist-hdfs/src/main/java/water/persist/PersistHdfs.java b/h2o-persist-hdfs/src/main/java/water/persist/PersistHdfs.java index <HASH>..<HASH> 100644 --- a/h2o-persist-hdfs/src/main/java/water/persist/PersistHdfs.java +++ b/h2o-persist-hdfs/src/main/java/water/persist/PersistHdfs.java @@ -295,10 +295,9...
PUBDEV-<I>: Fix a race condition in Hdfs file import
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -21,7 +21,7 @@ if (pathlib.existsSync('server/rpc/middleware')) { " /server/rpc/actions to /server/rpc\n\n" + "so that websocket middleware can be used by other websocket responders (including forthcoming models)....
prevents command failing on osx because of .DS_Store
diff --git a/lib/pretty_diff/chunk.rb b/lib/pretty_diff/chunk.rb index <HASH>..<HASH> 100644 --- a/lib/pretty_diff/chunk.rb +++ b/lib/pretty_diff/chunk.rb @@ -21,7 +21,14 @@ module PrettyDiff def find_lines [].tap do |lines| - wdiff(contents.split(/\r?\n|\r/)).each do |line_str| + plain_line...
Experimental fix for per-word diffing that sometimes botches string encoding
diff --git a/sprd/entity/SpecialTextConfiguration.js b/sprd/entity/SpecialTextConfiguration.js index <HASH>..<HASH> 100644 --- a/sprd/entity/SpecialTextConfiguration.js +++ b/sprd/entity/SpecialTextConfiguration.js @@ -14,7 +14,7 @@ define(['sprd/entity/DesignConfigurationBase', "sprd/util/ProductUtil", "js/core ...
DEV-<I> made the conversion of regular text to fancy text to propagate and conserve the alignmentMatters flag
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ requirements = [ 'dill>0.2', 'sphinx', 'cython', - 'ipython==4.0.0', + 'ipython>=4.0.0', 'ipyparallel', 'ipykernel>=4.1', 'jupyter',
ipython <I> seems ok
diff --git a/modules/directives/date/date.js b/modules/directives/date/date.js index <HASH>..<HASH> 100644 --- a/modules/directives/date/date.js +++ b/modules/directives/date/date.js @@ -37,7 +37,9 @@ angular.module('ui.directives') var userHandler = opts.onSelect; opts.onSelect = function (va...
Fix missing scope.$apply() for user onSelect event
diff --git a/graphics/dotplot.py b/graphics/dotplot.py index <HASH>..<HASH> 100755 --- a/graphics/dotplot.py +++ b/graphics/dotplot.py @@ -31,7 +31,7 @@ from jcvi.compara.synteny import AnchorFile, batch_scan, check_beds from jcvi.utils.cbook import seqid_parse, thousands from jcvi.apps.base import OptionParser from...
make sure the labels don't crash the dotplot PDF
diff --git a/media/boom/js/boom.page.js b/media/boom/js/boom.page.js index <HASH>..<HASH> 100755 --- a/media/boom/js/boom.page.js +++ b/media/boom/js/boom.page.js @@ -569,6 +569,13 @@ $.extend($.boom.page, { $this .attr( 'tabindex', '0' ) .unbind('click mouseenter mouseleave') + .on( 'keydown', functi...
open the chunk editor when enter is pressed
diff --git a/backend/__8bit.py b/backend/__8bit.py index <HASH>..<HASH> 100644 --- a/backend/__8bit.py +++ b/backend/__8bit.py @@ -165,6 +165,9 @@ def _add8(ins): output.append('push af') return output + if op2[0] == '_': # stack optimization + op1, op2 = op2, op1 + output = _8bit_ope...
Optimization: ADD8 Optimized, so it rearranges the stack when the 2nd operand is an identifier.
diff --git a/lib/health_graph/models/user.rb b/lib/health_graph/models/user.rb index <HASH>..<HASH> 100644 --- a/lib/health_graph/models/user.rb +++ b/lib/health_graph/models/user.rb @@ -23,7 +23,7 @@ module HealthGraph HealthGraph::SleepFeed.new self.access_token, self.body["sleep"] end - def fitn...
default params on fitness_activities fetch
diff --git a/lib/graphql/client.rb b/lib/graphql/client.rb index <HASH>..<HASH> 100644 --- a/lib/graphql/client.rb +++ b/lib/graphql/client.rb @@ -48,8 +48,6 @@ module GraphQL case schema when GraphQL::Schema schema - when GraphQL::Query::Result - load_schema(schema.to_h) when ...
Avoid constant reference to support old graphql versions
diff --git a/providers/providers_manager.go b/providers/providers_manager.go index <HASH>..<HASH> 100644 --- a/providers/providers_manager.go +++ b/providers/providers_manager.go @@ -102,17 +102,17 @@ type getProv struct { // NewProviderManager constructor func NewProviderManager(ctx context.Context, local peer.ID,...
refactor: rename to cfg
diff --git a/test/asserts.js b/test/asserts.js index <HASH>..<HASH> 100644 --- a/test/asserts.js +++ b/test/asserts.js @@ -6,7 +6,7 @@ var _ = require('lodash-node') var asserts = { assertTrue: function (value, message) { - if (!value) { + if (value !== true) { throw new AssertionError(message, {}, asserts.a...
Primitive asserts test more specific
diff --git a/lib/i18n/tasks/scanners/ruby_ast_scanner.rb b/lib/i18n/tasks/scanners/ruby_ast_scanner.rb index <HASH>..<HASH> 100644 --- a/lib/i18n/tasks/scanners/ruby_ast_scanner.rb +++ b/lib/i18n/tasks/scanners/ruby_ast_scanner.rb @@ -40,7 +40,7 @@ module I18n::Tasks::Scanners @parser.parse(make_buffer(pat...
AST Scanner: fix magic comment location reporting
diff --git a/tests/QueryWhereTests.php b/tests/QueryWhereTests.php index <HASH>..<HASH> 100644 --- a/tests/QueryWhereTests.php +++ b/tests/QueryWhereTests.php @@ -83,7 +83,8 @@ class QueryWhereTests extends PHPUnit_Framework_TestCase public function testOrWhere() { $this->query->where('name', 'John') - ->orWhe...
Added some tests for where clauses supplied as arrays
diff --git a/lib/mongodb/gridfs/gridstore.js b/lib/mongodb/gridfs/gridstore.js index <HASH>..<HASH> 100644 --- a/lib/mongodb/gridfs/gridstore.js +++ b/lib/mongodb/gridfs/gridstore.js @@ -112,7 +112,7 @@ GridStore.prototype.write = function(string, close, callback) { var previousChunkNumber = self.currentChunk.ch...
Fixed bug with multiple writes of the first chunk
diff --git a/test/test_reader.py b/test/test_reader.py index <HASH>..<HASH> 100644 --- a/test/test_reader.py +++ b/test/test_reader.py @@ -99,3 +99,26 @@ def test_type(tmp_path): lines = list(reader.FortranReader(filename, docmark="!")) assert lines == expected + + +def test_unknown_include(tmp_path): + ...
Add unit test for ignoring unknown files in `include`
diff --git a/pyiso.py b/pyiso.py index <HASH>..<HASH> 100644 --- a/pyiso.py +++ b/pyiso.py @@ -1629,9 +1629,6 @@ class PyIso(object): if not self.initialized: raise Exception("This object is not yet initialized; call either open() or new() to create an ISO") - if self.pvd is None: - ...
Remove a redundant check from write()
diff --git a/master/buildbot/scripts/base.py b/master/buildbot/scripts/base.py index <HASH>..<HASH> 100644 --- a/master/buildbot/scripts/base.py +++ b/master/buildbot/scripts/base.py @@ -229,7 +229,7 @@ class SubcommandOptions(usage.Options): raise break - for k in...
pylint: disable warning
diff --git a/beta/beta.js b/beta/beta.js index <HASH>..<HASH> 100644 --- a/beta/beta.js +++ b/beta/beta.js @@ -1,3 +1,7 @@ +/** + * Documentation is not available as this is only in beta and it may change at any time. + */ + var irc = require('twitch-irc'); var client = new irc.client({
Added header to the beta example.
diff --git a/graylog2-server/src/main/java/org/graylog/plugins/views/search/engine/QueryEngine.java b/graylog2-server/src/main/java/org/graylog/plugins/views/search/engine/QueryEngine.java index <HASH>..<HASH> 100644 --- a/graylog2-server/src/main/java/org/graylog/plugins/views/search/engine/QueryEngine.java +++ b/gray...
Degrading query errors to `debug` instead of `error`. These can be related to invalid queries posted against the API, so they are not a general indicator of server malfunctioning.
diff --git a/lib/moodlelib.php b/lib/moodlelib.php index <HASH>..<HASH> 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -86,7 +86,10 @@ function reload_user_preferences() { foreach ($preferences as $preference) { $USER->preference[$preference->name] = $preference->value; } - ...
To fix problems with auth_forcepasswordchange
diff --git a/elasticsearch-dsl/test/integration/search_aggregations_test.rb b/elasticsearch-dsl/test/integration/search_aggregations_test.rb index <HASH>..<HASH> 100644 --- a/elasticsearch-dsl/test/integration/search_aggregations_test.rb +++ b/elasticsearch-dsl/test/integration/search_aggregations_test.rb @@ -186,10 +1...
[DSL] Update agg scripted metric test for deprecation in ES issue #<I>
diff --git a/settings/cache.settings.php b/settings/cache.settings.php index <HASH>..<HASH> 100644 --- a/settings/cache.settings.php +++ b/settings/cache.settings.php @@ -5,10 +5,6 @@ * Contains caching configuration. */ -if ($is_ah_env) { - switch ($ah_env) { - case 'prod': - $config['system.logging']['...
Make caching configuration hosting provider agnostic. (#<I>)
diff --git a/speech-to-text/v1.js b/speech-to-text/v1.js index <HASH>..<HASH> 100644 --- a/speech-to-text/v1.js +++ b/speech-to-text/v1.js @@ -455,7 +455,7 @@ SpeechToTextV1.prototype.createCustomization = function(params, callback) { ``` * * @param {Object} params The parameters - * @param {String} [params.langua...
removing outdated en-us only comments
diff --git a/src/Services/QueuedJobService.php b/src/Services/QueuedJobService.php index <HASH>..<HASH> 100644 --- a/src/Services/QueuedJobService.php +++ b/src/Services/QueuedJobService.php @@ -713,7 +713,7 @@ class QueuedJobService */ protected function markStarted() { - if ($this->startedAt) {...
Fix markStarted not calculating timeout correctly
diff --git a/src/ORM/Association.php b/src/ORM/Association.php index <HASH>..<HASH> 100644 --- a/src/ORM/Association.php +++ b/src/ORM/Association.php @@ -21,7 +21,6 @@ use Cake\Datasource\ResultSetDecorator; use Cake\ORM\Locator\LocatorAwareTrait; use Cake\ORM\Query; use Cake\ORM\Table; -use Cake\ORM\TableRegistry;...
Remove unnessesary TableRegistry use statement.
diff --git a/src/terra/Command/Environment/EnvironmentProxyEnable.php b/src/terra/Command/Environment/EnvironmentProxyEnable.php index <HASH>..<HASH> 100644 --- a/src/terra/Command/Environment/EnvironmentProxyEnable.php +++ b/src/terra/Command/Environment/EnvironmentProxyEnable.php @@ -20,7 +20,7 @@ class EnvironmentPr...
Fixing URL proxy being blocked when using SELinux by adding a label to skip security.
diff --git a/presto-main/src/main/java/com/facebook/presto/sql/planner/LiteralInterpreter.java b/presto-main/src/main/java/com/facebook/presto/sql/planner/LiteralInterpreter.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/sql/planner/LiteralInterpreter.java +++ b/presto-main/src/mai...
Use equals instead of == for Doubles in LiteralInterpreter
diff --git a/src/DefaultNode.php b/src/DefaultNode.php index <HASH>..<HASH> 100644 --- a/src/DefaultNode.php +++ b/src/DefaultNode.php @@ -7,6 +7,7 @@ use NoTee\Exceptions\PathOutdatedException; class DefaultNode implements Fertile, Node { + public static $validateAttributeNames = true; protected $tagName...
added switch for attribute name check for performance reasons
diff --git a/client/lib/abtest/active-tests.js b/client/lib/abtest/active-tests.js index <HASH>..<HASH> 100644 --- a/client/lib/abtest/active-tests.js +++ b/client/lib/abtest/active-tests.js @@ -99,10 +99,10 @@ export default { allowExistingUsers: true, }, verticalSuggestedThemes: { - datestamp: '20191011', + ...
Enable vertical-suggested themes ab test (#<I>)
diff --git a/src/main/java/org/mockito/internal/exceptions/Reporter.java b/src/main/java/org/mockito/internal/exceptions/Reporter.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/mockito/internal/exceptions/Reporter.java +++ b/src/main/java/org/mockito/internal/exceptions/Reporter.java @@ -870,8 +870,8 @@ publi...
Updated the exception message for clarity.
diff --git a/Service/EncryptionService.php b/Service/EncryptionService.php index <HASH>..<HASH> 100644 --- a/Service/EncryptionService.php +++ b/Service/EncryptionService.php @@ -399,10 +399,12 @@ class EncryptionService if ($keyData) { $encryptedContent = $fileEntity->getContent(); - ...
Check for the existence of the file before decrypting it
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -83,9 +83,11 @@ gulp.task('serve', 'starts a local webserver (--port specifies bound port)', const server = gls.static(paths.dist.dir, port); server.start(); gulp.watch([paths.dist.html], function(fi...
Fix live-reload (#<I>) Delay live reload for <I>ms after a file is changed to make sure that all changes have been written to the file. Fixes #<I>
diff --git a/tasks/test.js b/tasks/test.js index <HASH>..<HASH> 100644 --- a/tasks/test.js +++ b/tasks/test.js @@ -56,7 +56,7 @@ module.exports = function(grunt) { cmd: node, args: ['test/e2e/angular-scenario/server.js'] }, function() {}); } - + grun...
[fix] Depend only on itself not a global install of testacular for client tests. This closes #<I>.
diff --git a/libkbfs/bcache.go b/libkbfs/bcache.go index <HASH>..<HASH> 100644 --- a/libkbfs/bcache.go +++ b/libkbfs/bcache.go @@ -243,6 +243,11 @@ func (b *BlockCacheStandard) makeRoomForSize(size uint64, lifetime BlockCacheLif func (b *BlockCacheStandard) PutWithPrefetch( ptr BlockPointer, tlf tlf.ID, block Block,...
bcache: Check for NoCacheEntry lifetime before checking for block types.
diff --git a/etc/eslint/rules/index.js b/etc/eslint/rules/index.js index <HASH>..<HASH> 100644 --- a/etc/eslint/rules/index.js +++ b/etc/eslint/rules/index.js @@ -20,7 +20,8 @@ var rules = merge( require( './variables.js' ), require( './nodejs.js' ), require( './style.js' ), - require( './es2015.js' ) + require( ...
Add stdlib rule configurations to index file
diff --git a/Services/TimetableManager.php b/Services/TimetableManager.php index <HASH>..<HASH> 100644 --- a/Services/TimetableManager.php +++ b/Services/TimetableManager.php @@ -32,10 +32,11 @@ class TimetableManager private function initAdditionalData($externalRouteId, $externalCoverageId) { $data ...
Request for direction title in layouts updated. (now we use embedded_type)
diff --git a/src/Framework/BaseWebApplication.php b/src/Framework/BaseWebApplication.php index <HASH>..<HASH> 100644 --- a/src/Framework/BaseWebApplication.php +++ b/src/Framework/BaseWebApplication.php @@ -54,7 +54,7 @@ abstract class BaseWebApplication extends BaseConsoleApplication implements Fram $this->de...
Make BaseWebApplication methods protected vs private
diff --git a/src/main/java/org/getopentest/base/TestActor.java b/src/main/java/org/getopentest/base/TestActor.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/getopentest/base/TestActor.java +++ b/src/main/java/org/getopentest/base/TestActor.java @@ -1354,6 +1354,8 @@ public class TestActor extends Observable i...
fix(TestActor): provide proper description for macros in test results
diff --git a/src/angular-leaflet-directive.js b/src/angular-leaflet-directive.js index <HASH>..<HASH> 100644 --- a/src/angular-leaflet-directive.js +++ b/src/angular-leaflet-directive.js @@ -67,6 +67,8 @@ leafletDirective.directive("leaflet", ["$http", "$log", "$parse", function ($htt setupMarkers(); ...
add comment in source for setmap event
diff --git a/lib/commands/general.js b/lib/commands/general.js index <HASH>..<HASH> 100644 --- a/lib/commands/general.js +++ b/lib/commands/general.js @@ -178,7 +178,12 @@ commands.keys = async function (keys) { await this.setValue(keys, el.ELEMENT); }; -commands.setUrl = iosCommands.general.setUrl; +commands.set...
Fix url opening on real devices (#<I>) * Fix url opening on real devices * Fix method call
diff --git a/lib/barby/barcode/code_25.rb b/lib/barby/barcode/code_25.rb index <HASH>..<HASH> 100644 --- a/lib/barby/barcode/code_25.rb +++ b/lib/barby/barcode/code_25.rb @@ -97,6 +97,10 @@ module Barby end end + def encoding_for_bars_without_end_space(*a) + encoding_for_bars(*a).gsub(/0+$/, '') +...
Fix stop_encoding for IATA 2 of 5
diff --git a/query.go b/query.go index <HASH>..<HASH> 100644 --- a/query.go +++ b/query.go @@ -83,8 +83,8 @@ type Selector struct { // // By Options // -// The BySearch (default) option enables querying for elements with a CSS or -// XPath selector, wrapping DOM.performSearch. +// The BySearch (default) option enabl...
Document that BySearch matches by plain text too
diff --git a/lib/rack/app/params.rb b/lib/rack/app/params.rb index <HASH>..<HASH> 100644 --- a/lib/rack/app/params.rb +++ b/lib/rack/app/params.rb @@ -49,13 +49,9 @@ class Rack::App::Params ::Rack::Utils.parse_nested_query(query_string).merge!(params_that_presented_multiple_times) end - ARRAY_FORM = /^\w+\[\...
refactor: use explicit use case search instead of define everything that can't be for legacy array form based query string parsing support
diff --git a/system/core/Controller.php b/system/core/Controller.php index <HASH>..<HASH> 100644 --- a/system/core/Controller.php +++ b/system/core/Controller.php @@ -1261,7 +1261,7 @@ abstract class Controller } /** - * Controls access to retricted areas + * Controls access to restricted areas ...
Add missed template for buttom region
diff --git a/lib/Subscription.php b/lib/Subscription.php index <HASH>..<HASH> 100644 --- a/lib/Subscription.php +++ b/lib/Subscription.php @@ -54,11 +54,13 @@ class Subscription extends ApiResource * * @link https://stripe.com/docs/api#subscription_object-status */ - const STATUS_ACTIVE = 'active...
Added subscription status constants for "incomplete" and "incomplete_expired".
diff --git a/src/App.php b/src/App.php index <HASH>..<HASH> 100644 --- a/src/App.php +++ b/src/App.php @@ -16,7 +16,7 @@ class App // @var array|false Location where to load JS/CSS files public $cdn = [ - 'atk' => 'https://cdn.rawgit.com/atk4/ui/1.4.0/public', + 'atk' ...
Updated CDN and $version in App.php to <I>
diff --git a/test/test_rake_thread_pool.rb b/test/test_rake_thread_pool.rb index <HASH>..<HASH> 100644 --- a/test/test_rake_thread_pool.rb +++ b/test/test_rake_thread_pool.rb @@ -1,6 +1,5 @@ require File.expand_path('../helper', __FILE__) require 'rake/thread_pool' -require 'test/unit/assertions' class TestRakeTes...
Remove bogus require test/unit/assertions was never used by this file
diff --git a/test/marc_extractor_test.rb b/test/marc_extractor_test.rb index <HASH>..<HASH> 100644 --- a/test/marc_extractor_test.rb +++ b/test/marc_extractor_test.rb @@ -328,6 +328,19 @@ describe "Traject::MarcExtractor" do values = extractor.extract(@record) assert_equal ["27", "2710"], values end ...
MarcExtractor, test indicators on repeated tags in spec
diff --git a/textx/commands/console.py b/textx/commands/console.py index <HASH>..<HASH> 100644 --- a/textx/commands/console.py +++ b/textx/commands/console.py @@ -21,10 +21,12 @@ def textx(): self.print_help() sys.exit(2) - parser = MyParser(description="textX checker and visualizer") - ...
Case-insensitive option switch added to textx command.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -93,7 +93,7 @@ function startPlaylist(playlist, amount, callback) { osascript(stringify(lib.play.method).replace(/{{playlist}}/, playlist), function (err) { var result; if (err === null) { - result = callback(logSymb...
Implemented plural of `song` Closes #8
diff --git a/js/angular/components/iconic/iconic.js b/js/angular/components/iconic/iconic.js index <HASH>..<HASH> 100644 --- a/js/angular/components/iconic/iconic.js +++ b/js/angular/components/iconic/iconic.js @@ -26,6 +26,9 @@ function zfIconic(iconic) { var directive = { restrict: 'A', + scope: {...
Added back dynSrc option
diff --git a/test_parameters/test_unit/__init__.py b/test_parameters/test_unit/__init__.py index <HASH>..<HASH> 100644 --- a/test_parameters/test_unit/__init__.py +++ b/test_parameters/test_unit/__init__.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2013 by Alex Brandt <alunduil@alunduil.com> # # pa...
Add UTF-8 coding to unit test file. Python2 deosn't default to UTF-8 so we need to explicitly declare it.
diff --git a/guake/main.py b/guake/main.py index <HASH>..<HASH> 100644 --- a/guake/main.py +++ b/guake/main.py @@ -42,7 +42,11 @@ from optparse import OptionParser log = logging.getLogger(__name__) # Force use X11 backend under wayland before any import of GDK through dependencies +# This could fix weird problems u...
Add `GUAKE_ENABLE_WAYLAND` environment variable
diff --git a/clean_file_locks.py b/clean_file_locks.py index <HASH>..<HASH> 100755 --- a/clean_file_locks.py +++ b/clean_file_locks.py @@ -26,7 +26,7 @@ import logging import optparse from nova import flags -from nova import log +from nova.openstack.common import log from nova import utils
Switch to common logging. I only just moved logging from nova to common, so behavior should remain the same. Change-Id: I1d<I>ca<I>f9d<I>bb<I>d<I>be2f9a<I>fb
diff --git a/lib/virtualfs/version.rb b/lib/virtualfs/version.rb index <HASH>..<HASH> 100644 --- a/lib/virtualfs/version.rb +++ b/lib/virtualfs/version.rb @@ -1,3 +1,3 @@ module VirtualFS - VERSION = "0.0.2" + VERSION = "0.1.0" end
Bumped version to <I>.
diff --git a/src/plugin/handler.js b/src/plugin/handler.js index <HASH>..<HASH> 100644 --- a/src/plugin/handler.js +++ b/src/plugin/handler.js @@ -54,13 +54,8 @@ Handler.prototype.configure = function(options) { }; -Handler.prototype.canExecute = function(data) { - return this.matchers.canExecute(data); -}; - - ...
removed "handler.canExecute" to deferred that logic to be processed in the "handler.run" method
diff --git a/test/types/yumrepo.rb b/test/types/yumrepo.rb index <HASH>..<HASH> 100644 --- a/test/types/yumrepo.rb +++ b/test/types/yumrepo.rb @@ -63,6 +63,21 @@ class TestYumRepo < Test::Unit::TestCase assert_equal(CREATE_EXP, text) end + # Delete mirrorlist by setting it to :absent and enable baseu...
Test that setting a state to 'absent' really deletes it from the config git-svn-id: <URL>
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages setup( name = 'parsec', - version = '3.9', + version = '3.10', description = 'parser combinator.', long_description = 'A universal Python parser ...
Upgrade version to <I>.
diff --git a/system/src/Grav/Framework/Form/Interfaces/FormInterface.php b/system/src/Grav/Framework/Form/Interfaces/FormInterface.php index <HASH>..<HASH> 100644 --- a/system/src/Grav/Framework/Form/Interfaces/FormInterface.php +++ b/system/src/Grav/Framework/Form/Interfaces/FormInterface.php @@ -18,7 +18,7 @@ use Psr...
Regression: Fix serialize issues with forms
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,7 @@ setup( version=version, description="Python bindings for the docker credentials store API", url='https://github.com/shin-/docker-pycreds/', + license='Apache License 2.0', packages=[ ...
Update setup.py add missing license to setup.py
diff --git a/session.go b/session.go index <HASH>..<HASH> 100644 --- a/session.go +++ b/session.go @@ -775,6 +775,7 @@ func (s *session) scheduleSending() { func (s *session) tryQueueingUndecryptablePacket(p *receivedPacket) { if s.handshakeComplete { + utils.Debugf("Received undecryptable packet from %s after th...
log undecrytable packets after the handshake
diff --git a/db/migrate/20150605151945_create_pd_regime_bags.rb b/db/migrate/20150605151945_create_pd_regime_bags.rb index <HASH>..<HASH> 100644 --- a/db/migrate/20150605151945_create_pd_regime_bags.rb +++ b/db/migrate/20150605151945_create_pd_regime_bags.rb @@ -2,8 +2,8 @@ class CreatePDRegimeBags < ActiveRecord::Migr...
Added null: false to pd_regime_bags migration required fields.
diff --git a/lib/aerospike/query/filter.rb b/lib/aerospike/query/filter.rb index <HASH>..<HASH> 100644 --- a/lib/aerospike/query/filter.rb +++ b/lib/aerospike/query/filter.rb @@ -53,6 +53,14 @@ module Aerospike offset end + # + # Show the filter as String. This is util to show filters in logs. + ...
Added to_s method to filters to display it in a log
diff --git a/actionpack/lib/action_dispatch/testing/integration.rb b/actionpack/lib/action_dispatch/testing/integration.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_dispatch/testing/integration.rb +++ b/actionpack/lib/action_dispatch/testing/integration.rb @@ -336,7 +336,7 @@ module ActionDispatch ...
Simplify `as` passed check. `if !var.nil?` is the same as just `if var`
diff --git a/lib/chef/application/apply.rb b/lib/chef/application/apply.rb index <HASH>..<HASH> 100644 --- a/lib/chef/application/apply.rb +++ b/lib/chef/application/apply.rb @@ -21,6 +21,7 @@ require_relative "../../chef" require_relative "../application" require_relative "../client" require_relative "../config" +r...
Fixed broken chef-apply with -j that causes a `NameError: uninitialized constant Chef::ConfigFetcher`.
diff --git a/packages/neos-ui-ckeditor5-bindings/src/ckEditorApi.js b/packages/neos-ui-ckeditor5-bindings/src/ckEditorApi.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui-ckeditor5-bindings/src/ckEditorApi.js +++ b/packages/neos-ui-ckeditor5-bindings/src/ckEditorApi.js @@ -3,6 +3,11 @@ import DecoupledEditor from ...
BUGFIX: prevent &nbsp; on empty content from CKE5
diff --git a/lib/dpl/provider/modulus.rb b/lib/dpl/provider/modulus.rb index <HASH>..<HASH> 100644 --- a/lib/dpl/provider/modulus.rb +++ b/lib/dpl/provider/modulus.rb @@ -16,7 +16,7 @@ module DPL end def push_app - context.shell "MODULUS_TOKEN=#{option(:api_key)} modulus deploy -p #{option(:proje...
Fixes #<I> Modulus deploys failing without error The command was not setting the ENV variable for MODULUS_TOKEN and was failing with an exit status of <I>.
diff --git a/lib/rack/test.rb b/lib/rack/test.rb index <HASH>..<HASH> 100644 --- a/lib/rack/test.rb +++ b/lib/rack/test.rb @@ -27,6 +27,8 @@ module Rack end def request(uri, env = {}) + env["REQUEST_METHOD"] ||= "GET" + @last_request = Rack::Request.new(env) @last_response = Ra...
Make #request use GET by default
diff --git a/test/test_messaging.py b/test/test_messaging.py index <HASH>..<HASH> 100644 --- a/test/test_messaging.py +++ b/test/test_messaging.py @@ -5,6 +5,7 @@ from kombu import Exchange, Queue from mock import patch, Mock from nameko.dependencies import DependencyFactory +from nameko.exceptions import Container...
test for requeue on ContainerBeingKilled
diff --git a/broker.go b/broker.go index <HASH>..<HASH> 100644 --- a/broker.go +++ b/broker.go @@ -9,8 +9,8 @@ type ServiceCreationRequest struct { SpaceGUID string `json:"space_guid"` } -// ServiceCreationResponce describes Cloud Foundry service provisioning response -type ServiceCreationResponce struct { ...
fix Responce -> Response spelling
diff --git a/examples/export-map.js b/examples/export-map.js index <HASH>..<HASH> 100644 --- a/examples/export-map.js +++ b/examples/export-map.js @@ -64,13 +64,6 @@ document.getElementById('export-png').addEventListener('click', function () { const opacity = canvas.parentNode.style.opacity || c...
Set background after applying transform Reset transform in addition to globalAlpha
diff --git a/lib/milia/control.rb b/lib/milia/control.rb index <HASH>..<HASH> 100644 --- a/lib/milia/control.rb +++ b/lib/milia/control.rb @@ -26,7 +26,7 @@ module Milia old_id = ( Thread.current[:tenant_id].nil? ? '%' : Thread.current[:tenant_id] ) new_id = ( tid.nil? ? '%' : tid.to_s ) Thread.current[:...
improved logging/traces - 4
diff --git a/python/setup.py b/python/setup.py index <HASH>..<HASH> 100755 --- a/python/setup.py +++ b/python/setup.py @@ -58,7 +58,7 @@ def read_release_version(): MAJOR, MINOR, PATCH = read_release_version() -IS_RELEASED = True +IS_RELEASED = False VERSION = '%d.%d.%d' % (MAJOR, MINOR, PATCH)
Unset IS_RELEASED
diff --git a/mod/assign/locallib.php b/mod/assign/locallib.php index <HASH>..<HASH> 100644 --- a/mod/assign/locallib.php +++ b/mod/assign/locallib.php @@ -5493,6 +5493,7 @@ class assign { $adminconfig = $this->get_admin_config(); $gradebookplugin = $adminconfig->feedback_plugin_for_gradebook; + ...
MDL-<I> assign: Workflow & blind marking do not always show feedback Before this patch if an assignment has workflow and blind marking enabled if a teacher sets a submission to have its grades released to students before they reveal student identities the feedback they have given is not displayed to the student. The ...
diff --git a/src/Services/User.php b/src/Services/User.php index <HASH>..<HASH> 100644 --- a/src/Services/User.php +++ b/src/Services/User.php @@ -97,14 +97,6 @@ class User extends BaseRestService /** * {@inheritdoc} */ - public function getResources($only_handlers = false) - { - return ($...
Separating resources from resource handlers.