diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/src/test/locale/pa-in.js b/src/test/locale/pa-in.js index <HASH>..<HASH> 100644 --- a/src/test/locale/pa-in.js +++ b/src/test/locale/pa-in.js @@ -311,18 +311,6 @@ test('lenient ordinal parsing of number', function (assert) { } }); -test('meridiem', function (assert) { - var h, m, t1, t2; - fo...
Remove duplicate unit test This is already in common-locale.js and runs for all locales
diff --git a/.eslintrc.js b/.eslintrc.js index <HASH>..<HASH> 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -38,6 +38,9 @@ module.exports = { // I don't know how to get this to work with peerDependencies 'import/no-extraneous-dependencies': 0, + // going to try this going forward since I normally want ...
chore(eslint): disabled prefer-default-export rule Going to play with this disabled for a bit since I normally need to do: ```ts export * from "./file"; ``` Right now I have to do multiple exports because of this rule: ```ts export { default as THING } from "./file" export * from "./file" ```
diff --git a/javascript/CMSMain.AddForm.js b/javascript/CMSMain.AddForm.js index <HASH>..<HASH> 100644 --- a/javascript/CMSMain.AddForm.js +++ b/javascript/CMSMain.AddForm.js @@ -69,10 +69,11 @@ this.setSelected(true); }, setSelected: function(bool) { + var input = this.find('input'); this.toggleCl...
MINOR Don't allow page type selection in add form when radio button is disabled
diff --git a/lib/controls/document.js b/lib/controls/document.js index <HASH>..<HASH> 100644 --- a/lib/controls/document.js +++ b/lib/controls/document.js @@ -21,3 +21,24 @@ function Document(container) { Document.prototype = Object.create(UIElement.prototype); Document.prototype.constructor = Document; + +Document...
Added `addDef` method
diff --git a/src/Test/WebTest/WebTestBase.php b/src/Test/WebTest/WebTestBase.php index <HASH>..<HASH> 100644 --- a/src/Test/WebTest/WebTestBase.php +++ b/src/Test/WebTest/WebTestBase.php @@ -205,7 +205,8 @@ class WebTestBase extends WebTestCase $doCheck = self::$client && !self::$conditionsChecked && $this->us...
[Test] no failureCheck when SmokeTests reports "failure" of outdated _routes.yml
diff --git a/lib/muster/version.rb b/lib/muster/version.rb index <HASH>..<HASH> 100644 --- a/lib/muster/version.rb +++ b/lib/muster/version.rb @@ -1,5 +1,5 @@ # Muster module Muster # Current version of Muster - VERSION = '0.0.11' + VERSION = '0.0.12' end
Updated version to <I>
diff --git a/src/structures/Message.js b/src/structures/Message.js index <HASH>..<HASH> 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -386,10 +386,10 @@ class Message extends Base { * @readonly */ get deletable() { - return ( + return Boolean( !this.deleted && - ...
fix(Message): update getters to take null permissions into account (#<I>) * fix(Message): update message#delete * refactor(Message): message#deletable avoid duplicate call * Update Message.js * fix(message): resolve syntax errors * chore(message): resolve linting issues (death to the gh web panel) * Upd...
diff --git a/lib/Core/Service/Mapper/ConfigMapper.php b/lib/Core/Service/Mapper/ConfigMapper.php index <HASH>..<HASH> 100644 --- a/lib/Core/Service/Mapper/ConfigMapper.php +++ b/lib/Core/Service/Mapper/ConfigMapper.php @@ -7,7 +7,7 @@ use Netgen\BlockManager\Config\Registry\ConfigDefinitionRegistryInterface; use Netge...
Remove unused extending of abstract Mapper class in ConfigMapper
diff --git a/Collection.php b/Collection.php index <HASH>..<HASH> 100644 --- a/Collection.php +++ b/Collection.php @@ -224,25 +224,13 @@ class Collection implements ArrayAccess, Arrayable, Countable, IteratorAggregate if (func_num_args() == 2) { $value = $operator; - $operator = '==='...
Make Collection@where use loose comparison by default
diff --git a/spec/kamerling/server/tcp_spec.rb b/spec/kamerling/server/tcp_spec.rb index <HASH>..<HASH> 100644 --- a/spec/kamerling/server/tcp_spec.rb +++ b/spec/kamerling/server/tcp_spec.rb @@ -25,9 +25,7 @@ module Kamerling describe Server::TCP do describe '#stop' do it 'stops the server' do - tcp = S...
simplify Server::TCP#stop spec
diff --git a/lib/sitemap.rb b/lib/sitemap.rb index <HASH>..<HASH> 100644 --- a/lib/sitemap.rb +++ b/lib/sitemap.rb @@ -160,7 +160,7 @@ module Sitemap private def get_data(object, data) - data.respond_to?(:call) ? data.call(object) : data + data.is_a?(Proc) ? data.call(object) : data end ...
Using a more reliable way of determining if received data is a block.
diff --git a/intercom/__init__.py b/intercom/__init__.py index <HASH>..<HASH> 100644 --- a/intercom/__init__.py +++ b/intercom/__init__.py @@ -16,7 +16,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. __author__ = 'OKso http://okso.me' -__version__ = '0.2' +__version__ = '0.2.1' from ....
[enh] New bugfixes release
diff --git a/buildAll_config.py b/buildAll_config.py index <HASH>..<HASH> 100755 --- a/buildAll_config.py +++ b/buildAll_config.py @@ -9,7 +9,7 @@ import subprocess # The build scripts expect the OpenSSL and Zlib src packages # to be in nassl's root folder -OPENSSL_DIR = join(getcwd(), 'openssl-1.0.2d') +OPEN...
Switched to OpenSSL <I>e in build config
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -5,6 +5,7 @@ require "navigator/action_view/instance_methods" require "pry" RSpec.configure do |config| - config.filter_run focus: true config.run_all_when_everything_filtere...
Treat symbols and true values by default when running RSpec specs. [ci skip]
diff --git a/impl/src/main/java/com/groupon/lex/metrics/timeseries/expression/RateExpression.java b/impl/src/main/java/com/groupon/lex/metrics/timeseries/expression/RateExpression.java index <HASH>..<HASH> 100644 --- a/impl/src/main/java/com/groupon/lex/metrics/timeseries/expression/RateExpression.java +++ b/impl/src/m...
Change how rate expression finds the previous collection.
diff --git a/pyPodcastParser/Podcast.py b/pyPodcastParser/Podcast.py index <HASH>..<HASH> 100644 --- a/pyPodcastParser/Podcast.py +++ b/pyPodcastParser/Podcast.py @@ -254,10 +254,7 @@ class Podcast(): def set_owner(self): """Parses owner name and email then sets value""" - try: - owner...
fixed unneeded try block in set_owner()
diff --git a/out_request.js b/out_request.js index <HASH>..<HASH> 100644 --- a/out_request.js +++ b/out_request.js @@ -515,12 +515,12 @@ TChannelOutRequest.prototype.onTimeout = function onTimeout(now) { } if (!self.res || self.res.state === States.Initial) { - self.end = now; self.timedOut ...
out_request: set self.end in emitError() only
diff --git a/src/com/caverock/androidsvg/SVGParser.java b/src/com/caverock/androidsvg/SVGParser.java index <HASH>..<HASH> 100644 --- a/src/com/caverock/androidsvg/SVGParser.java +++ b/src/com/caverock/androidsvg/SVGParser.java @@ -590,6 +590,8 @@ public class SVGParser extends DefaultHandler radialGradient(at...
Added nominal support for <a> so that its contents can be rendered.
diff --git a/src/main/java/net/openhft/chronicle/network/internal/lookuptable/FileBasedHostnamePortLookupTable.java b/src/main/java/net/openhft/chronicle/network/internal/lookuptable/FileBasedHostnamePortLookupTable.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/openhft/chronicle/network/internal/lookuptable/...
Add toString method to ProcessScopedMapping
diff --git a/src/Drupal/DrupalExtension/Context/DrupalContext.php b/src/Drupal/DrupalExtension/Context/DrupalContext.php index <HASH>..<HASH> 100644 --- a/src/Drupal/DrupalExtension/Context/DrupalContext.php +++ b/src/Drupal/DrupalExtension/Context/DrupalContext.php @@ -147,7 +147,7 @@ class DrupalContext extends MinkC...
Issue #<I> by langworthy: Fixed locatePath() should be public.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def read(fname): setup( name='unleash', - version='0.4.3.dev1', + version='0.5.1.dev1', description=('Creates release commits directly in git, unleashes them on ' 'PyPI and p...
Increased version to <I>.dev1 after release of <I>. (commit by unleash <I>.dev1)
diff --git a/carrot/backends/pyamqplib.py b/carrot/backends/pyamqplib.py index <HASH>..<HASH> 100644 --- a/carrot/backends/pyamqplib.py +++ b/carrot/backends/pyamqplib.py @@ -172,6 +172,8 @@ class Backend(BaseBackend): def establish_connection(self): """Establish connection to the AMQP broker.""" ...
amqplib: Raise KeyError if hostname isn't set, for a more friendly error message.
diff --git a/peewee_migrate/auto.py b/peewee_migrate/auto.py index <HASH>..<HASH> 100644 --- a/peewee_migrate/auto.py +++ b/peewee_migrate/auto.py @@ -143,14 +143,17 @@ def diff_many(models1, models2, migrator=None, reverse=False): def model_to_code(Model, **kwargs): template = """class {classname}(pw.Model): {f...
Support db_table in auto migrations.
diff --git a/lib/dbf/record.rb b/lib/dbf/record.rb index <HASH>..<HASH> 100644 --- a/lib/dbf/record.rb +++ b/lib/dbf/record.rb @@ -42,7 +42,7 @@ module DBF key = key.to_s if attributes.has_key?(key) attributes[key] - elsif index = column_names.index(key) + elsif index = underscored_colu...
rename private column_names method
diff --git a/src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.php b/src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.ph...
Clarify a comment. The previous comment was lying since collectViewVariables() doesn't really call the buildPreliminaryFormTree() nor the buildFinalFormTree().
diff --git a/test/renderer/epics/github-publish-spec.js b/test/renderer/epics/github-publish-spec.js index <HASH>..<HASH> 100644 --- a/test/renderer/epics/github-publish-spec.js +++ b/test/renderer/epics/github-publish-spec.js @@ -156,7 +156,7 @@ describe('handleGistError', () => { }); describe('publishEpic', () =>...
chore(EpicsTesting): Actually test epic.
diff --git a/lib/sfn/command/destroy.rb b/lib/sfn/command/destroy.rb index <HASH>..<HASH> 100644 --- a/lib/sfn/command/destroy.rb +++ b/lib/sfn/command/destroy.rb @@ -53,7 +53,7 @@ module Sfn nested_stack_cleanup!(n_stack) end nest_stacks = stack.template.fetch('Resources', {}).values.find_...
Fix constant fetching for stack type comparison
diff --git a/lib/search_engine.py b/lib/search_engine.py index <HASH>..<HASH> 100644 --- a/lib/search_engine.py +++ b/lib/search_engine.py @@ -3241,7 +3241,8 @@ def perform_request_search(req=None, cc=cdsname, c=None, p="", f="", rg="10", sf search_unit_in_...
removed another source of noise in the XML stream
diff --git a/src/org/jgroups/blocks/TCPConnectionMap.java b/src/org/jgroups/blocks/TCPConnectionMap.java index <HASH>..<HASH> 100644 --- a/src/org/jgroups/blocks/TCPConnectionMap.java +++ b/src/org/jgroups/blocks/TCPConnectionMap.java @@ -84,7 +84,7 @@ public class TCPConnectionMap{ this.conn_expire_time = con...
passed in incorrect SocketFactory
diff --git a/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm/services/task/commands/GetTaskContentCommand.java b/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm/services/task/commands/GetTaskContentCommand.java index <HASH>..<HASH> 100644 --- a/jbpm-human-task/jbpm-human-task-core/src/main/java/...
BZ-<I> - NPE in GetTaskContentCommand.java:<I> when trying to get task content for second human task in own web app
diff --git a/tests/test_flow.py b/tests/test_flow.py index <HASH>..<HASH> 100644 --- a/tests/test_flow.py +++ b/tests/test_flow.py @@ -13,6 +13,7 @@ # limitations under the License. import concurrent.futures +from functools import partial import json import os @@ -165,11 +166,12 @@ class TestInstalledAppFlow(ob...
Uses a test port that is less likely to be taken (#<I>) After running this in a different CI environment, I had issues with the test being unable to open port <I> as it was already in use. This doesn't fix the problem perfectly but is less likely to encounter a collision.
diff --git a/internal/pixels/pixels.go b/internal/pixels/pixels.go index <HASH>..<HASH> 100644 --- a/internal/pixels/pixels.go +++ b/internal/pixels/pixels.go @@ -15,6 +15,7 @@ package pixels import ( + "errors" "image" "image/color" @@ -148,6 +149,9 @@ func (p *Pixels) HasDependency() bool { // // Restore ...
pixels: Ensure pixels is not stale when restoring
diff --git a/lib/OpenLayers/Map.js b/lib/OpenLayers/Map.js index <HASH>..<HASH> 100644 --- a/lib/OpenLayers/Map.js +++ b/lib/OpenLayers/Map.js @@ -1008,7 +1008,10 @@ OpenLayers.Map.prototype = { var dY = -parseInt(this.layerContainerDiv.style.top); layerPx = viewPortPx.add(dX, dY); } ...
Don't ever return NaN from getLayerContainerPxFromViewPortPx, since that can cause problems in multiple different layers -- instead, just return null, which is handled more gracefully. git-svn-id: <URL>
diff --git a/modules/social_features/social_topic/src/Controller/SocialTopicController.php b/modules/social_features/social_topic/src/Controller/SocialTopicController.php index <HASH>..<HASH> 100644 --- a/modules/social_features/social_topic/src/Controller/SocialTopicController.php +++ b/modules/social_features/social_...
Issue #<I> by frankgraave: fixed the filter for the topic types
diff --git a/lib/runner/run.js b/lib/runner/run.js index <HASH>..<HASH> 100644 --- a/lib/runner/run.js +++ b/lib/runner/run.js @@ -67,10 +67,13 @@ _.extend(Run.prototype, { return callback(new Error('run: already running')); } - _.isFinite(_.get(this.options, 'timeout.global')) && - ...
ensure that the timeout is respected and used
diff --git a/lib/active_fulfillment/version.rb b/lib/active_fulfillment/version.rb index <HASH>..<HASH> 100644 --- a/lib/active_fulfillment/version.rb +++ b/lib/active_fulfillment/version.rb @@ -1,4 +1,4 @@ # encoding: utf-8 module ActiveFulfillment - VERSION = "3.0.0.pre5" + VERSION = "3.0.0.pre6" end
Bump to <I>.pre6
diff --git a/test/collection.js b/test/collection.js index <HASH>..<HASH> 100644 --- a/test/collection.js +++ b/test/collection.js @@ -178,7 +178,7 @@ test('find > should project only specified fields using fields options', t => { { a: 1, b: 2 }, { a: 1, b: 1 } ]).then(() => { - return users.find({ sort...
Fixed find test. According to the prototype, first argument must be a query: (query, opts, fn)
diff --git a/lib/twofishes/client.rb b/lib/twofishes/client.rb index <HASH>..<HASH> 100644 --- a/lib/twofishes/client.rb +++ b/lib/twofishes/client.rb @@ -11,9 +11,10 @@ module Twofishes # @example # Twofishes::Client.geocode('Zurich, Switzerland') # - def self.geocode(location, response_includes = ...
reverse_geocode should accept responseIncludes too
diff --git a/test/conftest.py b/test/conftest.py index <HASH>..<HASH> 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -25,5 +25,6 @@ def app(): SCRIPTDIR, "testdata/dem_to_hillshade.mapchete") args = Namespace( port=5000, mapchete_file=example_process, zoom=None, bounds=None, - inp...
fixed serve tests with new debug flag
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -21,6 +21,7 @@ module.exports = function (_cb) { handshake: { read: reader.read, abort: function (err) { + writer.end(err) reader.abort(err, function (err) { }) _cb(err)
abort source and sink on an error
diff --git a/src/colorMapper.js b/src/colorMapper.js index <HASH>..<HASH> 100644 --- a/src/colorMapper.js +++ b/src/colorMapper.js @@ -109,19 +109,17 @@ export function differentialColorMapper (d, originalColor) { if (delta === value) { // likely a new frame, color orange - r = 190 + Math.round(6...
refactor: differential color mapper improvement
diff --git a/src/foremast/utils/find_elb.py b/src/foremast/utils/find_elb.py index <HASH>..<HASH> 100644 --- a/src/foremast/utils/find_elb.py +++ b/src/foremast/utils/find_elb.py @@ -32,4 +32,5 @@ def find_elb(name='', env='', region=''): raise SpinnakerElbNotFound( 'Elb for "{0}" in region {1} no...
fix: INFO for found ELB See also: PSOBAT-<I>
diff --git a/src/Pdox.php b/src/Pdox.php index <HASH>..<HASH> 100644 --- a/src/Pdox.php +++ b/src/Pdox.php @@ -13,6 +13,7 @@ namespace Buki; use Buki\Cache; +use Exception; use PDO; use PDOException; use Closure; @@ -496,13 +497,11 @@ class Pdox $msg = '<h1>Database Error</h1>'; $msg .= '<h4>Query: <em...
Updated error() methods and fixed error messages in Pdox.
diff --git a/lib/ecstatic/opts.js b/lib/ecstatic/opts.js index <HASH>..<HASH> 100644 --- a/lib/ecstatic/opts.js +++ b/lib/ecstatic/opts.js @@ -4,7 +4,7 @@ module.exports = function (opts) { var autoIndex = true, showDir = false, - humanReadable = false, + humanReadable = true, si = false, ...
Opts for human-readable and si
diff --git a/generators/newapp/new.go b/generators/newapp/new.go index <HASH>..<HASH> 100644 --- a/generators/newapp/new.go +++ b/generators/newapp/new.go @@ -19,7 +19,6 @@ import ( // Run returns a generator to create a new application func (a Generator) Run(root string, data makr.Data) error { g := makr.New() - d...
make sure fmt/imports is run before git init
diff --git a/lib/solargraph/language_server/host.rb b/lib/solargraph/language_server/host.rb index <HASH>..<HASH> 100644 --- a/lib/solargraph/language_server/host.rb +++ b/lib/solargraph/language_server/host.rb @@ -136,7 +136,7 @@ module Solargraph def open? uri result = nil @change_semaphore.s...
Host deletes out of order changes to closed files.
diff --git a/Controller/Tool/RolesController.php b/Controller/Tool/RolesController.php index <HASH>..<HASH> 100644 --- a/Controller/Tool/RolesController.php +++ b/Controller/Tool/RolesController.php @@ -406,8 +406,7 @@ class RolesController extends Controller { $this->checkAccess($workspace); $th...
[CoreBundle] Fixes competence bug when registering user to workspace
diff --git a/library/src/pivotal-ui-react/tabs/tabs.js b/library/src/pivotal-ui-react/tabs/tabs.js index <HASH>..<HASH> 100644 --- a/library/src/pivotal-ui-react/tabs/tabs.js +++ b/library/src/pivotal-ui-react/tabs/tabs.js @@ -178,7 +178,6 @@ class Tabs extends mixin(React.Component).with(Animation) { actions, ...
chore(Tabs): Remove crufty props [#<I>]
diff --git a/TYPO3.Flow/Classes/Persistence/DataMapper.php b/TYPO3.Flow/Classes/Persistence/DataMapper.php index <HASH>..<HASH> 100644 --- a/TYPO3.Flow/Classes/Persistence/DataMapper.php +++ b/TYPO3.Flow/Classes/Persistence/DataMapper.php @@ -199,9 +199,9 @@ class DataMapper { * @author Karsten Dambekalns <karsten@t...
[~TASK] FLOW3 (Persistence): Followup to r<I> regarding timestamp detection in mapDateTime(). Original-Commit-Hash: db<I>c<I>e<I>b4fa<I>af<I>da7f<I>dbd8e
diff --git a/src/Twig/Handler/RecordHandler.php b/src/Twig/Handler/RecordHandler.php index <HASH>..<HASH> 100644 --- a/src/Twig/Handler/RecordHandler.php +++ b/src/Twig/Handler/RecordHandler.php @@ -188,7 +188,7 @@ class RecordHandler ->notPath('node_modules') ->notPath('bower_components') ...
Look for template files in deeper folders. Fixes #<I>
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -51,6 +51,7 @@ export default class Drawer extends Component { onCloseStart: PropTypes.func, onOpen: PropTypes.func, onOpenStart: PropTypes.func, + onDragStart: PropTypes.func, openDrawerOffset: PropType...
Add support for onDragStart
diff --git a/src/main/java/com/google/cloud/genomics/dataflow/utils/GenomicsDatasetOptions.java b/src/main/java/com/google/cloud/genomics/dataflow/utils/GenomicsDatasetOptions.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/google/cloud/genomics/dataflow/utils/GenomicsDatasetOptions.java +++ b/src/main/java/co...
Update UCSC transcript set to reimported version This version of the transcriptset has gene IDs populated.
diff --git a/git.go b/git.go index <HASH>..<HASH> 100644 --- a/git.go +++ b/git.go @@ -11,7 +11,6 @@ import ( "errors" "unsafe" "strings" - "fmt" ) const ( diff --git a/packbuilder.go b/packbuilder.go index <HASH>..<HASH> 100644 --- a/packbuilder.go +++ b/packbuilder.go @@ -121,7 +121,7 @@ func (pb *Packbuild...
Packbuilder: compilation fixes Don't name the return values, as they conflict with the names we want inside and the types don't match what we want to have inside. We need them to be two-way channels in the function, and then pass unidirectional references to the different functions.
diff --git a/src/Testing/RuleTestCase.php b/src/Testing/RuleTestCase.php index <HASH>..<HASH> 100644 --- a/src/Testing/RuleTestCase.php +++ b/src/Testing/RuleTestCase.php @@ -28,9 +28,11 @@ abstract class RuleTestCase extends \PHPUnit_Framework_TestCase $count = count($violations); $expectedCount = co...
Ignore coverage of code unreachable during tests
diff --git a/bin/add_machine.rb b/bin/add_machine.rb index <HASH>..<HASH> 100755 --- a/bin/add_machine.rb +++ b/bin/add_machine.rb @@ -1,5 +1,5 @@ #!/usr/bin/env ruby -require_relative '../lib/boxcutter' +require File.dirname(__FILE__) + '/../lib/boxcutter' require 'trollop' opts = Trollop::options do diff --git a...
Remove <I> dependency from scripts
diff --git a/model/src/main/java/org/jboss/pnc/model/Base32LongID.java b/model/src/main/java/org/jboss/pnc/model/Base32LongID.java index <HASH>..<HASH> 100644 --- a/model/src/main/java/org/jboss/pnc/model/Base32LongID.java +++ b/model/src/main/java/org/jboss/pnc/model/Base32LongID.java @@ -83,6 +83,7 @@ public class Ba...
[NCLSUP-<I>] add readDefaultObject and writeDefaultObject This is a suggestion from Paul Ferraro to ensure that the requisite class descriptors (as well as any non-transient fields) are written to the stream (which are required by JBoss Marshalling for deserialization).
diff --git a/src/nodes.js b/src/nodes.js index <HASH>..<HASH> 100644 --- a/src/nodes.js +++ b/src/nodes.js @@ -20,7 +20,7 @@ export default function virtualizeNodes(element, options = {}) { function convertNode(element, createdVNodes, context) { // If our node is a text node, then we only want to set the `text` p...
Use the context to access Node constants, instead of relying on global.
diff --git a/src/Client.php b/src/Client.php index <HASH>..<HASH> 100755 --- a/src/Client.php +++ b/src/Client.php @@ -39,7 +39,7 @@ class Client if (isset($options['auth_timeout_seconds'])) { $this->authTimeoutSeconds = $options['auth_timeout_seconds']; } else { - $this->authT...
Spacing problem fixed. #scrutinizer-ci
diff --git a/src/Admin/AdminAccount.php b/src/Admin/AdminAccount.php index <HASH>..<HASH> 100644 --- a/src/Admin/AdminAccount.php +++ b/src/Admin/AdminAccount.php @@ -38,7 +38,8 @@ class AdminAccount { } /** - * @return mixed + * [RO] Preia o lista cu informatii generale ale contului de afiliat (htt...
Added comments for account information retrieval
diff --git a/test/models/person.rb b/test/models/person.rb index <HASH>..<HASH> 100644 --- a/test/models/person.rb +++ b/test/models/person.rb @@ -14,6 +14,6 @@ class Person end def ==(other_person) - other_person.is_a?(Person) && id = other_person.id + other_person.is_a?(Person) && id == other_person.i...
Fix `Person#==` method in test.
diff --git a/main/main.go b/main/main.go index <HASH>..<HASH> 100644 --- a/main/main.go +++ b/main/main.go @@ -165,9 +165,13 @@ and this stack trace: %s ` - + stackByteCount := 0 + STACK_SIZE_LIMIT := 1024 * 1024 var bytes []byte - runtime.Stack(bytes, true) + for stackSize := 1024; (stackByteCount == 0 || stack...
added code to allocate bytes for runtime.Stack() call
diff --git a/lib/gcli/test/automators/requisition.js b/lib/gcli/test/automators/requisition.js index <HASH>..<HASH> 100644 --- a/lib/gcli/test/automators/requisition.js +++ b/lib/gcli/test/automators/requisition.js @@ -31,8 +31,6 @@ exports.createRequisitionAutomator = function(requisition) { updateCursor(); };...
jsterm-<I>: Remove onTextChange from Requisition Automator For command line testing we don’t need this event either.
diff --git a/lib/heroku/command/pg_backups.rb b/lib/heroku/command/pg_backups.rb index <HASH>..<HASH> 100644 --- a/lib/heroku/command/pg_backups.rb +++ b/lib/heroku/command/pg_backups.rb @@ -112,13 +112,13 @@ class Heroku::Command::Pg < Heroku::Command::Base end def size_pretty(bytes) - suffixes = { - '...
Fix size_pretty on <I> since it doesn't guarantee hash key order
diff --git a/tests/Environment.php b/tests/Environment.php index <HASH>..<HASH> 100644 --- a/tests/Environment.php +++ b/tests/Environment.php @@ -27,15 +27,11 @@ trait Environment '--all' => true, ]); - $this->artisan('orchid:link'); - - //$this->loadLaravelMigrations('orchid'); -...
ErrorException: symlink(): No such file or directory
diff --git a/spec/request/base/request_attach_spec.rb b/spec/request/base/request_attach_spec.rb index <HASH>..<HASH> 100644 --- a/spec/request/base/request_attach_spec.rb +++ b/spec/request/base/request_attach_spec.rb @@ -11,7 +11,7 @@ describe 'RubyRabbitmqJanus::RRJ -- message type attach' do describe '#start_tra...
Change spec in broken mode :(
diff --git a/lib/GameWindow.js b/lib/GameWindow.js index <HASH>..<HASH> 100644 --- a/lib/GameWindow.js +++ b/lib/GameWindow.js @@ -898,7 +898,7 @@ oldPos = this.headerPosition; - // Store the new position in a reference variable + // Store the new position in a reference variable //...
Added notice to GameWindow.loadFrame about resetting of VisualTimer
diff --git a/salt/pillar/ec2_pillar.py b/salt/pillar/ec2_pillar.py index <HASH>..<HASH> 100644 --- a/salt/pillar/ec2_pillar.py +++ b/salt/pillar/ec2_pillar.py @@ -242,6 +242,10 @@ def ext_pillar( # Get the Master's instance info, primarily the region (_, region) = _get_instance_info() + # If the Minion's...
Use the minion's region if use_grain is enabled This makes it possible for the master to be in a different region than the minion and still fetch ec2 pillars. This requires the use_grain configuration to be set to True and will fall back to the master's region if there is no region grain. Credit to John Nielsen for t...
diff --git a/railties/lib/rails/application.rb b/railties/lib/rails/application.rb index <HASH>..<HASH> 100644 --- a/railties/lib/rails/application.rb +++ b/railties/lib/rails/application.rb @@ -442,7 +442,7 @@ module Rails # the file with the master key. # The master key is either stored in `config/master.ke...
Fixed example of `Rails.application.encrypted` method usage [ci skip]
diff --git a/law/config.py b/law/config.py index <HASH>..<HASH> 100644 --- a/law/config.py +++ b/law/config.py @@ -55,7 +55,7 @@ class Config(ConfigParser): "singularity_volumes": {}, } - _config_files = ["$LAW_CONFIG_FILE", "$HOME/.law/config", "etc/law/config"] + _config_files = ["$LAW_CONFIG_FI...
Add additional fallback config in current dir.
diff --git a/src/Devture/Bundle/LocalizationBundle/Routing/LocaleAwareUrlGenerator.php b/src/Devture/Bundle/LocalizationBundle/Routing/LocaleAwareUrlGenerator.php index <HASH>..<HASH> 100644 --- a/src/Devture/Bundle/LocalizationBundle/Routing/LocaleAwareUrlGenerator.php +++ b/src/Devture/Bundle/LocalizationBundle/Routi...
Don't break when not running in a request context
diff --git a/thinc/neural/util.py b/thinc/neural/util.py index <HASH>..<HASH> 100644 --- a/thinc/neural/util.py +++ b/thinc/neural/util.py @@ -52,12 +52,14 @@ def copy_array(dst, src, casting='same_kind', where=None): else: numpy.copyto(dst, src) - def ensure_path(path): - if isinstance(path, basest...
Try/Except around use of basestring that doesn't exist in python3
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,6 @@ setup( classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :...
We no longer support Python <I>
diff --git a/views/mdc/assets/js/components/events/posts.js b/views/mdc/assets/js/components/events/posts.js index <HASH>..<HASH> 100644 --- a/views/mdc/assets/js/components/events/posts.js +++ b/views/mdc/assets/js/components/events/posts.js @@ -1,5 +1,6 @@ import {VSnackbar} from '../snackbar'; import {VBase} from ...
(#<I>) Set POST request headers from configuration
diff --git a/src/Provider/Google.php b/src/Provider/Google.php index <HASH>..<HASH> 100644 --- a/src/Provider/Google.php +++ b/src/Provider/Google.php @@ -43,7 +43,7 @@ class Google extends AbstractProvider { return 'https://www.googleapis.com/plus/v1/people/me?'. - 'fields=name(fa...
id was not being returned by Google
diff --git a/pychromecast/__init__.py b/pychromecast/__init__.py index <HASH>..<HASH> 100644 --- a/pychromecast/__init__.py +++ b/pychromecast/__init__.py @@ -363,10 +363,8 @@ class Chromecast: def ignore_cec(self): """ Returns whether the CEC data should be ignored. """ return self.device is not...
Adapt to pylint <I> (#<I>)
diff --git a/avakas/avakas.py b/avakas/avakas.py index <HASH>..<HASH> 100644 --- a/avakas/avakas.py +++ b/avakas/avakas.py @@ -49,6 +49,7 @@ class Avakas(): @property def version(self): """Get version""" + tag_prefix = self.options.get('tag_prefix', '') return "%s%s" % (tag_prefix, ...
Whitespace: added a break after docstring
diff --git a/src/grid/GridView.php b/src/grid/GridView.php index <HASH>..<HASH> 100644 --- a/src/grid/GridView.php +++ b/src/grid/GridView.php @@ -78,6 +78,9 @@ class GridView extends \hiqdev\higrid\GridView 'class' => ClientColumn::class, 'attribute' => 'client_id', ], + ...
Added search by client_like to default GridView
diff --git a/src/notebook/reducers/document.js b/src/notebook/reducers/document.js index <HASH>..<HASH> 100644 --- a/src/notebook/reducers/document.js +++ b/src/notebook/reducers/document.js @@ -21,9 +21,25 @@ export default { const { notebook } = state; const cellOrder = notebook.get('cellOrder'); const...
When at end of doc, create new cell after run cell
diff --git a/sirtrevor/views.py b/sirtrevor/views.py index <HASH>..<HASH> 100644 --- a/sirtrevor/views.py +++ b/sirtrevor/views.py @@ -47,6 +47,7 @@ def attachment(request): data['path'] = default_storage.save(name, file_) data['url'] = default_storage.url(data['path']) + data['name'] = os.pa...
Also return the file name for each attachment.
diff --git a/bulbs/indexable/indexable.py b/bulbs/indexable/indexable.py index <HASH>..<HASH> 100644 --- a/bulbs/indexable/indexable.py +++ b/bulbs/indexable/indexable.py @@ -170,9 +170,11 @@ class PolymorphicIndexable(object): return "%s_%s" % (cls._meta.app_label, cls._meta.module_name) @classmethod -...
Added option to exclude base type from get_mapping_type_names
diff --git a/packages/@vue/cli/lib/Migrator.js b/packages/@vue/cli/lib/Migrator.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli/lib/Migrator.js +++ b/packages/@vue/cli/lib/Migrator.js @@ -1,8 +1,6 @@ const Generator = require('./Generator') const MigratorAPI = require('./MigratorAPI') -const inferRootOptions...
fix: fix Migrator implementation due to Generator internal change
diff --git a/lib/rest-graph.rb b/lib/rest-graph.rb index <HASH>..<HASH> 100644 --- a/lib/rest-graph.rb +++ b/lib/rest-graph.rb @@ -427,7 +427,8 @@ class RestGraph < RestGraphStruct r } EM::MultiRequest.new(rs){ |m| - clients = m.responses.values.flatten + # TODO: how to deal with the failed? ...
TODO: how to deal with the failed?
diff --git a/pronto/utils/io.py b/pronto/utils/io.py index <HASH>..<HASH> 100644 --- a/pronto/utils/io.py +++ b/pronto/utils/io.py @@ -124,11 +124,21 @@ def decompress( # Attempt to detect the encoding and decode the stream det: Dict[str, Union[str, float]] = chardet.detect(decompressed.peek()) - if enco...
Change behaviour of `io.decompress` to use chardet encoding
diff --git a/common.go b/common.go index <HASH>..<HASH> 100644 --- a/common.go +++ b/common.go @@ -5,6 +5,7 @@ import ( "archive/zip" "errors" "fmt" + "github.com/dmotylev/goproperties" "io" "io/ioutil" "log" @@ -39,8 +40,6 @@ const ( curl = "curl" appData = "APPDATA" ...
Removing config details from common
diff --git a/stdlib/sql.go b/stdlib/sql.go index <HASH>..<HASH> 100644 --- a/stdlib/sql.go +++ b/stdlib/sql.go @@ -126,6 +126,12 @@ var ( fakeTxConns map[*pgx.Conn]*sql.Tx ) +// GetDefaultDriver return the driver initialize in the init function +// and used when register pgx driver +func GetDefaultDriver() *Driver...
Close issue #<I> : Give access to the registered driver instance Some library use a driver to wrap its behavior and give additional functionality, as the datadog tracing library ("gopkg.in/DataDog/dd-trace-go.v1/contrib/database/sql") This commit aims to give access to this instance which can't be correctly initializ...
diff --git a/classes/fields/link.php b/classes/fields/link.php index <HASH>..<HASH> 100644 --- a/classes/fields/link.php +++ b/classes/fields/link.php @@ -204,18 +204,7 @@ class PodsField_Link extends PodsField_Website { // Ensure proper format $value = $this->pre_save( $value, $id, $name, $options, null, $pod );...
Update link field type to not use DFV
diff --git a/lib/Subscription.php b/lib/Subscription.php index <HASH>..<HASH> 100644 --- a/lib/Subscription.php +++ b/lib/Subscription.php @@ -10,6 +10,17 @@ namespace Stripe; class Subscription extends ApiResource { /** + * These constants are possible representations of the status field. + * + * @l...
Add few class' constants corresponding to subscription statuses (#<I>)
diff --git a/lib/pdk/validate/yaml/syntax.rb b/lib/pdk/validate/yaml/syntax.rb index <HASH>..<HASH> 100644 --- a/lib/pdk/validate/yaml/syntax.rb +++ b/lib/pdk/validate/yaml/syntax.rb @@ -62,6 +62,8 @@ module PDK return_val = 0 create_spinner(targets, options) + PDK.logger.debug(_('Valid...
(MAINT) Add debug logging of yaml files being validated
diff --git a/lib/jirahelper/misc.rb b/lib/jirahelper/misc.rb index <HASH>..<HASH> 100644 --- a/lib/jirahelper/misc.rb +++ b/lib/jirahelper/misc.rb @@ -8,7 +8,8 @@ module JiraHelper password: config.password, site: config.site, context_path: config.context, - auth_type: :basic + ...
Adding options to disable SSL Using correct method
diff --git a/lib/countly.js b/lib/countly.js index <HASH>..<HASH> 100644 --- a/lib/countly.js +++ b/lib/countly.js @@ -418,7 +418,7 @@ log(logLevelEnums.DEBUG, "initialize, enableOrientationTracking:[" + this.enableOrientationTracking + "]"); } if (!useSessionCookie) { - ...
log text was wrong, changed disabled to enabled (#<I>)
diff --git a/test/com/google/javascript/jscomp/IntegrationTest.java b/test/com/google/javascript/jscomp/IntegrationTest.java index <HASH>..<HASH> 100644 --- a/test/com/google/javascript/jscomp/IntegrationTest.java +++ b/test/com/google/javascript/jscomp/IntegrationTest.java @@ -1406,8 +1406,6 @@ public final class Inte...
Fix TODO in IntegrationTest. ------------- Created by MOE: <URL>
diff --git a/docs/source/conf.py b/docs/source/conf.py index <HASH>..<HASH> 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ author = "The Font Bakery Authors" # The short X.Y version version = "0.7" # The full version, including alpha/beta/rc tags -release = "0.7.22" +release = "0.7.23" ...
update version on docs/source/conf.py
diff --git a/pyghmi/ipmi/oem/lenovo/config.py b/pyghmi/ipmi/oem/lenovo/config.py index <HASH>..<HASH> 100644 --- a/pyghmi/ipmi/oem/lenovo/config.py +++ b/pyghmi/ipmi/oem/lenovo/config.py @@ -265,6 +265,9 @@ class LenovoFirmwareConfig(object): sortid = 0 for config in xml.iter("config"): l...
iSCSI settings aren't viable, mask for now The iSCSI attempts require special consideration that is not currently implemented. Mask it out for now. Change-Id: I<I>de1ddce<I>cd<I>d1d9e7ecf0bcbf<I>f
diff --git a/lib/rackstash/encoder/message.rb b/lib/rackstash/encoder/message.rb index <HASH>..<HASH> 100644 --- a/lib/rackstash/encoder/message.rb +++ b/lib/rackstash/encoder/message.rb @@ -37,7 +37,7 @@ module Rackstash include Rackstash::Encoder::Helper::Timestamp # @param tagged [Array<#to_s>] An ar...
Add method reference to docs for Message#initialize
diff --git a/lib/bumbleworks/configuration.rb b/lib/bumbleworks/configuration.rb index <HASH>..<HASH> 100644 --- a/lib/bumbleworks/configuration.rb +++ b/lib/bumbleworks/configuration.rb @@ -299,10 +299,10 @@ module Bumbleworks def framework_root case - when defined?(Rails) then Rails.root - ...
Check root-level constants for framework root Don't confuse constants defined within our namespace (such as for the Bumbleworks::Rails engine) with the constant defined on Object.
diff --git a/bokeh/models/annotations.py b/bokeh/models/annotations.py index <HASH>..<HASH> 100644 --- a/bokeh/models/annotations.py +++ b/bokeh/models/annotations.py @@ -236,6 +236,11 @@ class Label(Annotation): The %s values for the text. """) + render_mode = Enum(RenderMode, default="canvas", help="""...
Add render_mode var to Label
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -25,7 +25,7 @@ function quoteIdent(value) { } else if (value === true) { return '"t"'; } else if (value instanceof Date) { - value = formatDate(value.toISOString()); + return '"...
For dates, surround ISO string with quotes rather than treat it as an ordinary string.
diff --git a/tests/CalendR/Test/CalendarTest.php b/tests/CalendR/Test/CalendarTest.php index <HASH>..<HASH> 100644 --- a/tests/CalendR/Test/CalendarTest.php +++ b/tests/CalendR/Test/CalendarTest.php @@ -145,4 +145,13 @@ class CalendarTest extends \PHPUnit_Framework_TestCase array(2013, 8, Day::SUNDAY, '201...
Add Unit Test Add the unit test 'strictDates' to the core calendar test case. Ensure that the 'strict_dates' option can be set and retrieved.
diff --git a/src/nu/validator/servlet/VerifierServletTransaction.java b/src/nu/validator/servlet/VerifierServletTransaction.java index <HASH>..<HASH> 100644 --- a/src/nu/validator/servlet/VerifierServletTransaction.java +++ b/src/nu/validator/servlet/VerifierServletTransaction.java @@ -995,7 +995,6 @@ class VerifierSer...
Stop dumping TooManyErrorsException to log There are many real-world documents on the Web with a number of errors exceeding the limit (currently <I>) at which TooManyErrorsException is thrown. So the error messages for this case (along with the accompanying stack trace) just generate a lot of unwelcome noise in the lo...
diff --git a/pwkit/cli/imtool.py b/pwkit/cli/imtool.py index <HASH>..<HASH> 100644 --- a/pwkit/cli/imtool.py +++ b/pwkit/cli/imtool.py @@ -268,12 +268,16 @@ class SetrectCommand (multitool.Command): class ShowCommand (multitool.Command): name = 'show' - argspec = '<image> [images...]' + argspec = '[--no-c...
pwkit/cli/imtool.py: hacky workaround for my lame WCS code