diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/client/js/s3/uploader.js b/client/js/s3/uploader.js index <HASH>..<HASH> 100644 --- a/client/js/s3/uploader.js +++ b/client/js/s3/uploader.js @@ -18,9 +18,6 @@ qq.s3.FineUploader = function(o) { // Inherit instance data from FineUploader, which should in turn inherit from s3.FineUploaderBasic. qq...
fix(client/js/s3/uploader.js): Fix overwrite of instance values set by parent uploader in S3 FU mode
diff --git a/test_piplicenses.py b/test_piplicenses.py index <HASH>..<HASH> 100644 --- a/test_piplicenses.py +++ b/test_piplicenses.py @@ -604,13 +604,12 @@ def test_allow_only(monkeypatch): assert '' == mocked_stdout.printed assert 'license MIT License not in allow-only licenses was found for ' \ - ...
Fix test to prevent flakiness The tests assumed an ordering of the dependencies which worked on my machine but failed on the CI machines. So I've removed the package name from the assertion. Limiting the fail_on test to a single license should also prevent issues with ordering.
diff --git a/fc/__init__.py b/fc/__init__.py index <HASH>..<HASH> 100644 --- a/fc/__init__.py +++ b/fc/__init__.py @@ -1,7 +1,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_...
Increased version number to <I>
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( license='BSD', author='Tim van der Linden', tests_require=['pytest'], - install_requires=['WTForms>=2.0.1'], + install_requires=['WTForms>=2.0.1', 'WebOb>=1.4'], cmdclass={'test'...
Added WebOb dependency and made the module class availabe at top level.
diff --git a/spec/unit/provider/mount/mount_spec.rb b/spec/unit/provider/mount/mount_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/provider/mount/mount_spec.rb +++ b/spec/unit/provider/mount/mount_spec.rb @@ -107,7 +107,7 @@ describe Chef::Provider::Mount::Mount do expect { @provider.load_current_resource(...
linux mount spec - skip device detection for zfs (and vboxsf)
diff --git a/polymodels/__init__.py b/polymodels/__init__.py index <HASH>..<HASH> 100644 --- a/polymodels/__init__.py +++ b/polymodels/__init__.py @@ -2,6 +2,6 @@ from __future__ import unicode_literals from django.utils.version import get_version -VERSION = (1, 4, 4, 'alpha', 0) +VERSION = (1, 4, 4, 'final', 0) ...
Bumped version number to <I>.
diff --git a/src/dbFunctions.js b/src/dbFunctions.js index <HASH>..<HASH> 100644 --- a/src/dbFunctions.js +++ b/src/dbFunctions.js @@ -447,11 +447,12 @@ var self = module.exports = { var dbRequest = "INSERT INTO USRFLWINFL (FLWRID, INFLID) VALUES (" + userID + "," + influencerID + ");"; databaseClie...
Fixed a bug in dbFunctions, add_follow_influencers
diff --git a/astrobase/plotbase.py b/astrobase/plotbase.py index <HASH>..<HASH> 100644 --- a/astrobase/plotbase.py +++ b/astrobase/plotbase.py @@ -892,7 +892,7 @@ def make_checkplot(lspinfo, # bump the ylim of the LSP plot so that the overplotted finder and # objectinfo can fit in this axes plot ...
checkplot has nicer LSP offset for objectinfo
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,16 @@ +import io + from distutils.core import setup setup( name='txZMQ', - version=open('VERSION').read().strip(), + version=io.open('VERSION', encoding='utf-8').read().strip(), packages=['txzmq', ...
Use io.open when reading UTF-8 encoded file for Python3 compatibility. This way both Python2 and Python3 can use setup.py to handle the package.
diff --git a/ghost/members-api/index.js b/ghost/members-api/index.js index <HASH>..<HASH> 100644 --- a/ghost/members-api/index.js +++ b/ghost/members-api/index.js @@ -202,14 +202,17 @@ module.exports = function MembersApi({ }); } } + let extraPayload = {}; ...
🐛 Fixed incorrect payload creation for magic link token no issue - The extra payload added to magic link token included `name`, `labels` and `oldEmail` - Refactor in commit [here](<URL>) changed the `body` variable assignment causing the payload objection creation to not include the extra data from request body - Up...
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,8 @@ def setup_package(): url="http://www.statgen.org", license="GPL", packages=["pyplink"], + package_data={"pyplink.tests": ["data/test_data.*"], }, + test_suite="pyplink.te...
Added the test suite to the setup.py
diff --git a/presto-main/src/main/java/com/facebook/presto/operator/PartitionedLookupSourceFactory.java b/presto-main/src/main/java/com/facebook/presto/operator/PartitionedLookupSourceFactory.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/operator/PartitionedLookupSourceFactory.jav...
Add minor state check to PartitionedLookupSourceFactory PartitionedLookupSourceFactory#createLookupSourceProvider() should be called before the factory is destroyed. Otherwise, the returned future will never complete.
diff --git a/src/structures/MessagePayload.js b/src/structures/MessagePayload.js index <HASH>..<HASH> 100644 --- a/src/structures/MessagePayload.js +++ b/src/structures/MessagePayload.js @@ -209,7 +209,7 @@ class MessagePayload { /** * Resolves a single file into an object sendable to the API. * @param {Buff...
docs(MessagePayload): Correct return type of `resolveFile()` (#<I>)
diff --git a/tests/test_constructor.py b/tests/test_constructor.py index <HASH>..<HASH> 100644 --- a/tests/test_constructor.py +++ b/tests/test_constructor.py @@ -4,12 +4,12 @@ from mastodon.Mastodon import MastodonIllegalArgumentError def test_constructor_from_filenames(tmpdir): client = tmpdir.join('client') ...
shouting!!!!!! ahhh python 2 is bad
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,11 +55,10 @@ author = 'Robin Thomas' # built documents. # import os.path -import re with open(os.path.join(os.path.dirname(__file__), '../VERSION'), 'r') as f: # The full version, including alpha...
corrected version reference in sphinx docs
diff --git a/lib/topologies/mongos.js b/lib/topologies/mongos.js index <HASH>..<HASH> 100644 --- a/lib/topologies/mongos.js +++ b/lib/topologies/mongos.js @@ -807,17 +807,17 @@ Mongos.prototype.command = function(ns, cmd, options, callback) { // Pick a proxy var server = pickProxy(self); - // No server returne...
fixed command execution issue for mongos
diff --git a/lib/web/files.go b/lib/web/files.go index <HASH>..<HASH> 100644 --- a/lib/web/files.go +++ b/lib/web/files.go @@ -49,6 +49,7 @@ type fileTransferRequest struct { func (h *Handler) transferFile(w http.ResponseWriter, r *http.Request, p httprouter.Params, ctx *SessionContext, site reversetunnel.RemoteSite) ...
Pass site name along in fileTransferRequest.
diff --git a/apio/managers/installer.py b/apio/managers/installer.py index <HASH>..<HASH> 100644 --- a/apio/managers/installer.py +++ b/apio/managers/installer.py @@ -240,23 +240,24 @@ class Installer(object): releases = api_request('{}/releases'.format(name), organization) if req_version: + ...
Elevate force tag for install command
diff --git a/cli/lib/cli/commands/base.rb b/cli/lib/cli/commands/base.rb index <HASH>..<HASH> 100644 --- a/cli/lib/cli/commands/base.rb +++ b/cli/lib/cli/commands/base.rb @@ -1,6 +1,5 @@ require "yaml" require "terminal-table/import" -require "blobstore_client" module Bosh::Cli module Command @@ -23,10 +22,6 @@...
Removed unused stuff from base command
diff --git a/tensorflow_datasets/translate/wmt19.py b/tensorflow_datasets/translate/wmt19.py index <HASH>..<HASH> 100644 --- a/tensorflow_datasets/translate/wmt19.py +++ b/tensorflow_datasets/translate/wmt19.py @@ -42,7 +42,7 @@ class Wmt19Translate(wmt.WmtTranslate): url=_URL, citation=_CITATION,...
Increment WMT<I> version since a missing subset was added to RU-EN (commoncrawl). PiperOrigin-RevId: <I>
diff --git a/category/models.py b/category/models.py index <HASH>..<HASH> 100644 --- a/category/models.py +++ b/category/models.py @@ -35,7 +35,7 @@ class Category(models.Model): ) def __unicode__(self): - return self.title + return self.subtitle if self.subtitle else self.title class M...
use subtitle as unicode if available
diff --git a/registration/models.py b/registration/models.py index <HASH>..<HASH> 100644 --- a/registration/models.py +++ b/registration/models.py @@ -151,7 +151,7 @@ class RegistrationProfile(models.Model): pass def __str__(self): - return "User profile for %s" % self.user.username + ...
Tweak RegistrationProfile.__str__ to be a bit more informative
diff --git a/advanced_filters/forms.py b/advanced_filters/forms.py index <HASH>..<HASH> 100644 --- a/advanced_filters/forms.py +++ b/advanced_filters/forms.py @@ -56,7 +56,7 @@ class AdvancedFilterQueryForm(CleanWhiteSpacesMixin, forms.Form): ("lt", _("Less Than")), ("gt", _("Greater Than")), ...
Fixed labeling error with 'Greater Than or Equal To'
diff --git a/pygccxml/declarations/scopedef.py b/pygccxml/declarations/scopedef.py index <HASH>..<HASH> 100644 --- a/pygccxml/declarations/scopedef.py +++ b/pygccxml/declarations/scopedef.py @@ -246,7 +246,6 @@ class scopedef_t(declaration.declaration_t): """implementation details""" types = [] ...
Remove unused code path The set is never updated, so that the continue can never be called in the loop. There seem to be no purpose for this code path, it is probably some legacy code that did not get cleaned up.
diff --git a/albumentations/augmentations/functional.py b/albumentations/augmentations/functional.py index <HASH>..<HASH> 100644 --- a/albumentations/augmentations/functional.py +++ b/albumentations/augmentations/functional.py @@ -328,7 +328,7 @@ def optical_distortion(img, k=0, dx=0, dy=0, interpolation=cv2.INTER_LINE...
Apparently, when computing sum of squares we get a very small number that in occasion cases triggers a runtime warning "RuntimeWarning: invalid value encountered in sqrt". This commit adds tiny positive number to ensure a sum will be positive.
diff --git a/zinnia/urls/authors.py b/zinnia/urls/authors.py index <HASH>..<HASH> 100644 --- a/zinnia/urls/authors.py +++ b/zinnia/urls/authors.py @@ -12,10 +12,10 @@ urlpatterns = patterns( url(r'^$', AuthorList.as_view(), name='zinnia_author_list'), - url(r'^(?P<username>[.+-@\w]+)/$', - ...
Proper username resolution This re r'^(?P<username>[.+-@\w]+)/$' resolve username as the whole last part of URL. Mean this: If URL is "/blog/authors/someusername/page/<I>/" than username is "someusername/page/<I>/" Placing paginated view URL before UNpaginated will fix the problem.
diff --git a/app.js b/app.js index <HASH>..<HASH> 100644 --- a/app.js +++ b/app.js @@ -1,2 +1,2 @@ require('./index')(); -console.log(new Date().toLocaleString()) +console.log(new Date().toLocaleString());
refactor: fix eslint
diff --git a/contribs/gmf/src/print/component.js b/contribs/gmf/src/print/component.js index <HASH>..<HASH> 100644 --- a/contribs/gmf/src/print/component.js +++ b/contribs/gmf/src/print/component.js @@ -670,7 +670,7 @@ class Controller { togglePrintPanel_(active) { if (active) { if (!this.capabilities_) ...
Always add a role id in print get capabilities
diff --git a/calendar-bundle/src/Resources/contao/dca/tl_calendar_events.php b/calendar-bundle/src/Resources/contao/dca/tl_calendar_events.php index <HASH>..<HASH> 100644 --- a/calendar-bundle/src/Resources/contao/dca/tl_calendar_events.php +++ b/calendar-bundle/src/Resources/contao/dca/tl_calendar_events.php @@ -311,7...
[Calendar] Add an empty option to the image size select menu (see #<I>)
diff --git a/flat/style/flat.editor.js b/flat/style/flat.editor.js index <HASH>..<HASH> 100644 --- a/flat/style/flat.editor.js +++ b/flat/style/flat.editor.js @@ -1335,10 +1335,8 @@ function editor_submit(addtoqueue) { parentselector += " FOR"; v...
fixed issue #<I> (prevent duplicate comments...bit patchy, may be something wrong in FQL library)
diff --git a/test/config/config.go b/test/config/config.go index <HASH>..<HASH> 100644 --- a/test/config/config.go +++ b/test/config/config.go @@ -70,5 +70,5 @@ func (c *CiliumTestConfigType) ParseFlags() { "Specifies timeout for test run") flag.StringVar(&c.Kubeconfig, "cilium.kubeconfig", "", "Kubeconfig to b...
CI: Fix typo setting kubeconfig variable from registry This caused some off errors, particularly around how we determine whether we are in the CI or running with a custom kubeconfig.
diff --git a/client-side/src/core/js/modules/loadEvents.js b/client-side/src/core/js/modules/loadEvents.js index <HASH>..<HASH> 100644 --- a/client-side/src/core/js/modules/loadEvents.js +++ b/client-side/src/core/js/modules/loadEvents.js @@ -18,7 +18,7 @@ define(["modules/module", "modules/utils"], function(module, ut...
loadEvents ie8 fix
diff --git a/packages/posts/photos/instagram/photoSource.js b/packages/posts/photos/instagram/photoSource.js index <HASH>..<HASH> 100644 --- a/packages/posts/photos/instagram/photoSource.js +++ b/packages/posts/photos/instagram/photoSource.js @@ -46,7 +46,7 @@ class InstagramSource extends CachedDataSource { ...
fix(posts): Instagram `allPostsGetter` passes an id into `beforeId`. We're only grabbing <I> posts anyways so it's not like we actually have to have this implementation...
diff --git a/src/com/google/caliper/LinearTranslation.java b/src/com/google/caliper/LinearTranslation.java index <HASH>..<HASH> 100644 --- a/src/com/google/caliper/LinearTranslation.java +++ b/src/com/google/caliper/LinearTranslation.java @@ -16,8 +16,6 @@ package com.google.caliper; -import com.google.common.base...
Remove guava dependency of LinearTranslation so it can be used by GWT git-svn-id: <URL>
diff --git a/aiogram/utils/exceptions.py b/aiogram/utils/exceptions.py index <HASH>..<HASH> 100644 --- a/aiogram/utils/exceptions.py +++ b/aiogram/utils/exceptions.py @@ -1,9 +1,11 @@ +_PREFIXES = ['Error: ', '[Error]: ', 'Bad Request: '] + + def _clean_message(text): - return text. \ - lstrip('Error: '). \ ...
Oops. Fix error message cleaner. (In past it can strip first symbol in message)
diff --git a/bindings.js b/bindings.js index <HASH>..<HASH> 100644 --- a/bindings.js +++ b/bindings.js @@ -115,7 +115,9 @@ function bindings(opts) { } return b; } catch (e) { - if (e.code !== 'MODULE_NOT_FOUND' && e.code !== 'QUALIFIED_PATH_RESOLUTION_FAILED') { + if (e.code !== 'MODULE_NOT...
Add back the old module not found check So that we don't have to do a major version bump by dropping support for older Node.js versions.
diff --git a/go/service/main.go b/go/service/main.go index <HASH>..<HASH> 100644 --- a/go/service/main.go +++ b/go/service/main.go @@ -549,7 +549,7 @@ func (d *Service) runHomePoller(ctx context.Context) { } func (d *Service) runMerkleAudit(ctx context.Context) { - if !libkb.IsMobilePlatform() { + if libkb.IsMobile...
Fixed a bug where the audits would run only on mobile
diff --git a/findbugs/src/gui/edu/umd/cs/findbugs/gui2/MainFrameTree.java b/findbugs/src/gui/edu/umd/cs/findbugs/gui2/MainFrameTree.java index <HASH>..<HASH> 100644 --- a/findbugs/src/gui/edu/umd/cs/findbugs/gui2/MainFrameTree.java +++ b/findbugs/src/gui/edu/umd/cs/findbugs/gui2/MainFrameTree.java @@ -618,6 +618,11 @@ ...
bug#<I>: sync bug view when clicking on the already selected tree node (useful when you scrolled away from bug position)
diff --git a/activerecord/lib/active_record/coders/yaml_column.rb b/activerecord/lib/active_record/coders/yaml_column.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/coders/yaml_column.rb +++ b/activerecord/lib/active_record/coders/yaml_column.rb @@ -45,14 +45,20 @@ module ActiveRecord ra...
Improve performance by removing respond_to? from runtime code respond_to? is inherently slow, and the YAML class won't change whether it does or does not respond to unsafe_load, so just check it once during file load, and define methods accordingly.
diff --git a/lib/maruku/input/parse_block.rb b/lib/maruku/input/parse_block.rb index <HASH>..<HASH> 100644 --- a/lib/maruku/input/parse_block.rb +++ b/lib/maruku/input/parse_block.rb @@ -603,7 +603,7 @@ module MaRuKu; module In; module Markdown; module BlockLevelParser # empty cells increase the colspan of t...
Corrected a possible crash during processing a table with a blank first column.
diff --git a/spec/controllers/theme_controller_spec.rb b/spec/controllers/theme_controller_spec.rb index <HASH>..<HASH> 100644 --- a/spec/controllers/theme_controller_spec.rb +++ b/spec/controllers/theme_controller_spec.rb @@ -30,7 +30,8 @@ describe ThemeController do assert @response.body =~ /Static View Test fro...
Make disabled spec show up in test output.
diff --git a/src/View/View.php b/src/View/View.php index <HASH>..<HASH> 100644 --- a/src/View/View.php +++ b/src/View/View.php @@ -175,13 +175,6 @@ class View implements EventDispatcherInterface protected $theme; /** - * True when the view has been rendered. - * - * @var bool - */ - prote...
Remove unneeded View::$hasRendered flag. Calling View::render() multiple times should simply render again with given arguments and existing context.
diff --git a/router/galeb/router.go b/router/galeb/router.go index <HASH>..<HASH> 100644 --- a/router/galeb/router.go +++ b/router/galeb/router.go @@ -289,6 +289,9 @@ func (r *galebRouter) SetHealthcheck(name string, data router.HealthcheckData) e if err != nil { return err } + if data.Path == "" { + data.Path ...
router/galeb: default to healthcheck on /
diff --git a/lib/passport-userapp/strategy.js b/lib/passport-userapp/strategy.js index <HASH>..<HASH> 100644 --- a/lib/passport-userapp/strategy.js +++ b/lib/passport-userapp/strategy.js @@ -92,18 +92,6 @@ Strategy.prototype.authenticate = function (req, options) { } function parseProfile(userappUser) { - ...
Modified the user profile fields (see docs).
diff --git a/src/main/java/com/buschmais/jqassistant/scm/cli/task/AbstractTask.java b/src/main/java/com/buschmais/jqassistant/scm/cli/task/AbstractTask.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/buschmais/jqassistant/scm/cli/task/AbstractTask.java +++ b/src/main/java/com/buschmais/jqassistant/scm/cli/task...
#<I> split up scanning of model and artifacts
diff --git a/lib/utils.js b/lib/utils.js index <HASH>..<HASH> 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -9,19 +9,20 @@ var child_process = require('child_process') exports.execSync = (function (command) { 'use strict'; + var execCommand = ''; switch(os.platform()) { case 'win32': case 'win64':...
ahh, what the hell is wrong with me today.
diff --git a/src/Controller/Controller.php b/src/Controller/Controller.php index <HASH>..<HASH> 100644 --- a/src/Controller/Controller.php +++ b/src/Controller/Controller.php @@ -442,10 +442,6 @@ class Controller extends Object implements EventListener { * @return void */ protected function _mergeControllerVars()...
Removed 4 lines of useless code.
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -21,7 +21,7 @@ module.exports = function (fileName, globalOptions) { // new copy of globalOptions for each file options = extend({}, globalOptions || {}); - options.includ...
Let globalOptions be undefined If globalOptions is undefined, referencing something on it throws an error. This lets the globalOptions be undefined, as it will only reference the includePaths if it is defined.
diff --git a/src/engine/currencyEngine.js b/src/engine/currencyEngine.js index <HASH>..<HASH> 100644 --- a/src/engine/currencyEngine.js +++ b/src/engine/currencyEngine.js @@ -465,12 +465,20 @@ export class CurrencyEngine { } addGapLimitAddresses (addresses: Array<string>, options: any): void { - const script...
try and get the "scriptHash" from the engineState cache but in case it's not there, manually calculate it.
diff --git a/database/certificate.go b/database/certificate.go index <HASH>..<HASH> 100644 --- a/database/certificate.go +++ b/database/certificate.go @@ -217,7 +217,7 @@ func (db *DB) UpdateCACertTruststore(id int64, tsName string) error { // In that case it returns -1 with no error. func (db *DB) GetCertIDBySHA1Fin...
Limit GetCert queries to the first result sorted by ID
diff --git a/src/config/newsletter.php b/src/config/newsletter.php index <HASH>..<HASH> 100644 --- a/src/config/newsletter.php +++ b/src/config/newsletter.php @@ -56,8 +56,8 @@ return [ * */ 'link' => [ - 'arret' => url('jurisprudence'), - 'analyse' => url('jurisprudence') + 'arr...
fix url problem with artisan in config file
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,7 @@ #!/usr/bin/env python +"""setup.py.""" + import setuptools if __name__ == '__main__':
Add docstring to satisfy linter
diff --git a/apiserver/facades/client/modelmanager/modelmanager.go b/apiserver/facades/client/modelmanager/modelmanager.go index <HASH>..<HASH> 100644 --- a/apiserver/facades/client/modelmanager/modelmanager.go +++ b/apiserver/facades/client/modelmanager/modelmanager.go @@ -781,9 +781,12 @@ func (m *ModelManagerAPI) Li...
Owner is just a user string, not a tag.
diff --git a/src/store/indexeddb.js b/src/store/indexeddb.js index <HASH>..<HASH> 100644 --- a/src/store/indexeddb.js +++ b/src/store/indexeddb.js @@ -20,6 +20,7 @@ limitations under the License. import Promise from 'bluebird'; import {MemoryStore} from "./memory"; import utils from "../utils"; +import {EventEmitter...
Emit event when `IndexedDBStore` degrades This allows for optional tracking of when the store degrades to see how often it happens in the field.
diff --git a/datetime_tz/__init__.py b/datetime_tz/__init__.py index <HASH>..<HASH> 100644 --- a/datetime_tz/__init__.py +++ b/datetime_tz/__init__.py @@ -226,6 +226,8 @@ def _detect_timezone_windows(): olson_name = win32tz_map.win32timezones.get(win32tz_key_name, None) if not olson_name: return None + if n...
Hopefully fix a weird error which only happens with pytz <I>b without breaking Python 3 support
diff --git a/autoflake.py b/autoflake.py index <HASH>..<HASH> 100644 --- a/autoflake.py +++ b/autoflake.py @@ -38,7 +38,7 @@ import pyflakes.messages import pyflakes.reporter -__version__ = '0.6' +__version__ = '0.6.1' ATOMS = frozenset([tokenize.NAME, tokenize.NUMBER, tokenize.STRING])
Increment patch version to <I>
diff --git a/lib/gastropod/active_record/validations.rb b/lib/gastropod/active_record/validations.rb index <HASH>..<HASH> 100644 --- a/lib/gastropod/active_record/validations.rb +++ b/lib/gastropod/active_record/validations.rb @@ -3,7 +3,7 @@ module Gastropod module Validations def self.included(base) ...
Updates regex to fix Rails 4 security whine.
diff --git a/Sniffs/Arrays/ArrayDeclarationSniff.php b/Sniffs/Arrays/ArrayDeclarationSniff.php index <HASH>..<HASH> 100644 --- a/Sniffs/Arrays/ArrayDeclarationSniff.php +++ b/Sniffs/Arrays/ArrayDeclarationSniff.php @@ -411,7 +411,7 @@ class WordPress_Sniffs_Arrays_ArrayDeclarationSniff implements PHP_CodeSniffer_S ...
Fix trailing comma issue in array definition where it choked on closures and multiline functions
diff --git a/library/CM/Process.php b/library/CM/Process.php index <HASH>..<HASH> 100644 --- a/library/CM/Process.php +++ b/library/CM/Process.php @@ -69,7 +69,7 @@ class CM_Process { * @param int $signal */ public function killChildren($signal) { - foreach ($this->_forkHandlerList as $processId...
Rename $workload to $forkHandler in loop
diff --git a/tests/TestCase/Database/Driver/SqlserverTest.php b/tests/TestCase/Database/Driver/SqlserverTest.php index <HASH>..<HASH> 100644 --- a/tests/TestCase/Database/Driver/SqlserverTest.php +++ b/tests/TestCase/Database/Driver/SqlserverTest.php @@ -126,7 +126,7 @@ class SqlserverTest extends TestCase ...
add setConnection to mocked Method list
diff --git a/lib/fog/openstack/models/storage/directory.rb b/lib/fog/openstack/models/storage/directory.rb index <HASH>..<HASH> 100644 --- a/lib/fog/openstack/models/storage/directory.rb +++ b/lib/fog/openstack/models/storage/directory.rb @@ -10,7 +10,7 @@ module Fog attribute :bytes, :aliases => 'X-Container-...
fix mistyping in openstack storage directory model
diff --git a/lib/preview.js b/lib/preview.js index <HASH>..<HASH> 100644 --- a/lib/preview.js +++ b/lib/preview.js @@ -15,7 +15,7 @@ const { module.exports = run; -function run(input, size, vivliostyleTimeout) { +function run(input, sandbox = true) { const stat = fs.statSync(input); const root = stat.isDirec...
make previewer enable to launch without sandbox
diff --git a/searx/static/default/js/searx.js b/searx/static/default/js/searx.js index <HASH>..<HASH> 100644 --- a/searx/static/default/js/searx.js +++ b/searx/static/default/js/searx.js @@ -9,7 +9,7 @@ if(searx.autocompleter) { timeout: 5 // Correct option? }, 'minLength': 4, - // 'sele...
[mod] select autocomplete results with mouse click
diff --git a/spinoff/actor/actor.py b/spinoff/actor/actor.py index <HASH>..<HASH> 100644 --- a/spinoff/actor/actor.py +++ b/spinoff/actor/actor.py @@ -261,8 +261,6 @@ class Actor(BaseActor): self.exit(('error', self, (result.value, result.tb or result.getTraceback()), False)) super(Actor, ...
Removed the unused returning of a Deferred in Actor.start
diff --git a/dist/Button.js b/dist/Button.js index <HASH>..<HASH> 100644 --- a/dist/Button.js +++ b/dist/Button.js @@ -41,7 +41,8 @@ var AriaMenuButtonButton = function (_React$Component) { case 'ArrowDown': event.preventDefault(); if (!ambManager.isOpen) { - ambManager.openMen...
adds remaining changes to let menu focus first item
diff --git a/glue/ligolw/ligolw.py b/glue/ligolw/ligolw.py index <HASH>..<HASH> 100644 --- a/glue/ligolw/ligolw.py +++ b/glue/ligolw/ligolw.py @@ -106,7 +106,7 @@ class Element(object): Remove a child from this element. The child element is returned, and it's parentNode element is reset. """ - del self.child...
This might be a bit faster...
diff --git a/spec/lib/roots/engine_route_collection_spec.rb b/spec/lib/roots/engine_route_collection_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/roots/engine_route_collection_spec.rb +++ b/spec/lib/roots/engine_route_collection_spec.rb @@ -18,6 +18,25 @@ module Roots it 'adds the engine name to each route...
More specs about how engine route collection works
diff --git a/server/src/main/java/io/atomix/copycat/server/state/ServerSession.java b/server/src/main/java/io/atomix/copycat/server/state/ServerSession.java index <HASH>..<HASH> 100644 --- a/server/src/main/java/io/atomix/copycat/server/state/ServerSession.java +++ b/server/src/main/java/io/atomix/copycat/server/state/...
Ensure last applied index for each session is used as the last event index if no events are queued.
diff --git a/lib/stream/leo-stream.js b/lib/stream/leo-stream.js index <HASH>..<HASH> 100644 --- a/lib/stream/leo-stream.js +++ b/lib/stream/leo-stream.js @@ -430,7 +430,7 @@ module.exports = function(configure) { eid: rOpts.eid || obj.eid, correlation_id: { source: obj.event, - star...
EN-<I> - allows for setting partial_start attribute If we pass in partial === true, then we set the partial_start attribute instead of start. This enables us to do one to many events in the enrich that we need for new lambda load listeners.
diff --git a/src/facebook.py b/src/facebook.py index <HASH>..<HASH> 100644 --- a/src/facebook.py +++ b/src/facebook.py @@ -87,6 +87,15 @@ class GraphAPI(object): """Fetchs the given object from the graph.""" return self.request(id, args) + def get_objects(self, ids, **args): + """Fetchs al...
Add multi-get support to Python SDK
diff --git a/testsuite/integration/clustering/src/test/java/org/jboss/as/test/clustering/cluster/jpa2lc/DummyEntity.java b/testsuite/integration/clustering/src/test/java/org/jboss/as/test/clustering/cluster/jpa2lc/DummyEntity.java index <HASH>..<HASH> 100644 --- a/testsuite/integration/clustering/src/test/java/org/jbos...
WFLY-<I> ClusteredJPA2LCTestCase fails intermittently
diff --git a/test/unit/vagrant/action/builtin/handle_forwarded_port_collisions_test.rb b/test/unit/vagrant/action/builtin/handle_forwarded_port_collisions_test.rb index <HASH>..<HASH> 100644 --- a/test/unit/vagrant/action/builtin/handle_forwarded_port_collisions_test.rb +++ b/test/unit/vagrant/action/builtin/handle_for...
Remove test double We don't actually need a test double here because `#ipv4_loopback?` will return true for any address in the `<I>/8` space.
diff --git a/src/com/google/javascript/jscomp/DefaultPassConfig.java b/src/com/google/javascript/jscomp/DefaultPassConfig.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/DefaultPassConfig.java +++ b/src/com/google/javascript/jscomp/DefaultPassConfig.java @@ -2717,6 +2717,11 @@ public final class...
Run flowSensitiveInlineVariables pass when language_out is ES6+. ------------- Created by MOE: <URL>
diff --git a/test/nested-model.js b/test/nested-model.js index <HASH>..<HASH> 100644 --- a/test/nested-model.js +++ b/test/nested-model.js @@ -493,6 +493,23 @@ $(document).ready(function() { ok(callbackFired, "callback wasn't fired"); }); + test("#add() on nested array should trigger 'add' event after model ...
Added failing test for #<I>
diff --git a/src/replace.js b/src/replace.js index <HASH>..<HASH> 100644 --- a/src/replace.js +++ b/src/replace.js @@ -79,13 +79,13 @@ export class Slice { return new Slice(Fragment.fromJSON(schema, json.content), json.openStart || 0, json.openEnd || 0) } - // :: (Fragment) → Slice + // :: (Fragment, ?bool)...
Add an `openIsolating` argument to Slice.maxOpen FEATURE: [`Slice.maxOpen`](##model.Slice^maxOpen) now has a second argument that can be used to prevent it from opening isolating nodes.
diff --git a/modules/cmsadmin/apis/NavController.php b/modules/cmsadmin/apis/NavController.php index <HASH>..<HASH> 100644 --- a/modules/cmsadmin/apis/NavController.php +++ b/modules/cmsadmin/apis/NavController.php @@ -51,7 +51,7 @@ class NavController extends \admin\base\RestController $model = \cmsadmin\...
fixed bug where admin properties with 0 values have been deleted.
diff --git a/src/TextField/TextField.js b/src/TextField/TextField.js index <HASH>..<HASH> 100644 --- a/src/TextField/TextField.js +++ b/src/TextField/TextField.js @@ -11,7 +11,7 @@ import TextFieldLabel from './TextFieldLabel'; import TextFieldUnderline from './TextFieldUnderline'; import warning from 'warning'; -c...
[TextField] Fix incorrect state in getStyles() getStyles() was reading state, from context, so dynamic styling was not being applied correctly.
diff --git a/config/hoe.rb b/config/hoe.rb index <HASH>..<HASH> 100644 --- a/config/hoe.rb +++ b/config/hoe.rb @@ -52,6 +52,7 @@ $hoe = Hoe.spec(GEM_NAME) do |p| p.summary = SUMMARY p.url = HOMEPATH p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT + p.readme_file = "README.markdown" p.test_globs =...
let hoe know about the renamed readme
diff --git a/src/main/java/org/jboss/netty/buffer/DynamicChannelBuffer.java b/src/main/java/org/jboss/netty/buffer/DynamicChannelBuffer.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jboss/netty/buffer/DynamicChannelBuffer.java +++ b/src/main/java/org/jboss/netty/buffer/DynamicChannelBuffer.java @@ -275,7 +27...
Fixed a bug where a dynamic buffer's readerIndex goes out of sync on expansion
diff --git a/src/Chord.js b/src/Chord.js index <HASH>..<HASH> 100644 --- a/src/Chord.js +++ b/src/Chord.js @@ -73,9 +73,14 @@ class ConductorChord { this.conductor = Conductor.create(this.config.conductorConfig); u.log(this, "Channel and conductor created? "+this.conductor!=null); - //Set onconnection event. +...
Testing new ondatachannel event of conductor.
diff --git a/system/core/models/Language.php b/system/core/models/Language.php index <HASH>..<HASH> 100644 --- a/system/core/models/Language.php +++ b/system/core/models/Language.php @@ -335,7 +335,7 @@ class Language extends Model public function text($string, array $arguments = array(), $class = '') { ...
Bug fix \core\models\Language::text()
diff --git a/war/resources/scripts/hudson-behavior.js b/war/resources/scripts/hudson-behavior.js index <HASH>..<HASH> 100644 --- a/war/resources/scripts/hudson-behavior.js +++ b/war/resources/scripts/hudson-behavior.js @@ -284,7 +284,7 @@ function expandTextArea(button,id) { function refreshPart(id,url) { window....
don't know if this causes a problem, but in other places GET->POST change seemed to make things work, so I'm just changing it here as a precaution. git-svn-id: <URL>
diff --git a/src/java/org/apache/cassandra/service/StorageService.java b/src/java/org/apache/cassandra/service/StorageService.java index <HASH>..<HASH> 100644 --- a/src/java/org/apache/cassandra/service/StorageService.java +++ b/src/java/org/apache/cassandra/service/StorageService.java @@ -169,15 +169,6 @@ public class...
r/m unused consistencyManager executor (obsoleted by #<I>) git-svn-id: <URL>
diff --git a/lib/tjbot.js b/lib/tjbot.js index <HASH>..<HASH> 100644 --- a/lib/tjbot.js +++ b/lib/tjbot.js @@ -156,8 +156,8 @@ TJBot.prototype.defaultConfiguration = { }, speak: { language: 'en-US', // see TJBot.prototype.languages.speak - voice: undefined // use a specific voice; if undefined...
add support specifying speaker device id
diff --git a/peewee.py b/peewee.py index <HASH>..<HASH> 100644 --- a/peewee.py +++ b/peewee.py @@ -560,11 +560,16 @@ class ReverseForeignRelatedObject(object): class ForeignKeyField(IntegerField): - field_template = '%(db_field)s NOT NULL REFERENCES "%(to_table)s" ("id")' + field_template = '%(db_field)s %(n...
Adding nullable fks
diff --git a/js/gateio.js b/js/gateio.js index <HASH>..<HASH> 100755 --- a/js/gateio.js +++ b/js/gateio.js @@ -692,8 +692,7 @@ module.exports = class gateio extends Exchange { for (let i = 0; i < response.length; i++) { const market = response[i]; const id = this.safeString2 (market, ...
one split for gateio loadMarkets
diff --git a/src/rinoh/font/google.py b/src/rinoh/font/google.py index <HASH>..<HASH> 100644 --- a/src/rinoh/font/google.py +++ b/src/rinoh/font/google.py @@ -106,7 +106,7 @@ def download_file(name, url): break f.write(buffer) except HTTPError as e: - if e.code ...
Google Fonts: handle <I> error Sometimes the server returns error <I> (forbidden) instead of <I> for an unknown reason. This happens when looking for 'Comic Sans MS', for example.
diff --git a/bin/get-webpack-config.js b/bin/get-webpack-config.js index <HASH>..<HASH> 100644 --- a/bin/get-webpack-config.js +++ b/bin/get-webpack-config.js @@ -1,8 +1,5 @@ const webpack = require('webpack'); const path = require('path'); -const requireFromString = require('require-from-string'); -const MemoryFS = ...
Fix lints on electron based IDEs, closes #<I>
diff --git a/signer/api/ecdsa_hardware_crypto_service.go b/signer/api/ecdsa_hardware_crypto_service.go index <HASH>..<HASH> 100644 --- a/signer/api/ecdsa_hardware_crypto_service.go +++ b/signer/api/ecdsa_hardware_crypto_service.go @@ -243,6 +243,7 @@ func sign(ctx *pkcs11.Ctx, session pkcs11.SessionHandle, pkcs11KeyID ...
add message when user is required to touch yubikey to sign. N.B. touch is required during Sign, not SignInit
diff --git a/Controller/StepController.php b/Controller/StepController.php index <HASH>..<HASH> 100644 --- a/Controller/StepController.php +++ b/Controller/StepController.php @@ -110,7 +110,11 @@ class StepController extends Controller /** * - * @Route("/plop/", name="innova_user_resources", options =...
[PathBundle] change route used to load claro resources
diff --git a/core/ClientController.js b/core/ClientController.js index <HASH>..<HASH> 100644 --- a/core/ClientController.js +++ b/core/ClientController.js @@ -156,6 +156,8 @@ class ClientController extends EventEmitter { this._previouslyRendered = true; debug('React Rendered'); this.emit('render'); + }).ca...
Triton API Refactor: Added some tests for promises of ReactElement
diff --git a/OpenPNM/__init__.py b/OpenPNM/__init__.py index <HASH>..<HASH> 100644 --- a/OpenPNM/__init__.py +++ b/OpenPNM/__init__.py @@ -54,7 +54,7 @@ import scipy as _sp if _sys.version_info < (3, 4): raise Exception('OpenPNM requires Python 3.4 or greater to run') -__version__ = '1.6.2' +__version__ = '1.7....
Bumping version number to <I>
diff --git a/src/com/mebigfatguy/fbcontrib/detect/PossibleConstantAllocationInLoop.java b/src/com/mebigfatguy/fbcontrib/detect/PossibleConstantAllocationInLoop.java index <HASH>..<HASH> 100755 --- a/src/com/mebigfatguy/fbcontrib/detect/PossibleConstantAllocationInLoop.java +++ b/src/com/mebigfatguy/fbcontrib/detect/Pos...
Github #<I> drop unread field
diff --git a/treetime/clock_tree.py b/treetime/clock_tree.py index <HASH>..<HASH> 100644 --- a/treetime/clock_tree.py +++ b/treetime/clock_tree.py @@ -476,7 +476,7 @@ class ClockTree(TreeAnc): LH -= node.branch_length_interpolator(node.branch_length) # add the root sequence LH and return - ...
only add sequence LH to total if reconstruction has been performed
diff --git a/library/Phrozn/Site/View/Base.php b/library/Phrozn/Site/View/Base.php index <HASH>..<HASH> 100644 --- a/library/Phrozn/Site/View/Base.php +++ b/library/Phrozn/Site/View/Base.php @@ -90,6 +90,12 @@ abstract class Base private $siteConfig; /** + * Loaded content of configs/phrozn.yml + * ...
Added phr section to exposed global vars
diff --git a/lib/infograph.js b/lib/infograph.js index <HASH>..<HASH> 100644 --- a/lib/infograph.js +++ b/lib/infograph.js @@ -95,6 +95,9 @@ class InfoGraph { addEdge(fromId, toId) { + if (!fromId || !toId) + throw new Error(`Cannot add edge from ${fromId} to ${toId}`) + const edges = this.adjacency...
InfoGraph#addEdge: throws errors when information is missing
diff --git a/bundles/org.eclipse.orion.client.javascript/web/javascript/plugins/javascriptPlugin.js b/bundles/org.eclipse.orion.client.javascript/web/javascript/plugins/javascriptPlugin.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.javascript/web/javascript/plugins/javascriptPlugin.js +++ b/bund...
[nobug] remove accidental addition to hook JS hover to HTML files
diff --git a/src/Valkyrja/View/Templates/Template.php b/src/Valkyrja/View/Templates/Template.php index <HASH>..<HASH> 100644 --- a/src/Valkyrja/View/Templates/Template.php +++ b/src/Valkyrja/View/Templates/Template.php @@ -18,7 +18,6 @@ use Valkyrja\View\Template as Contract; use Valkyrja\View\View; use function ar...
View: Fix bug with blocks' endBlock functionality.
diff --git a/cfpiva.js b/cfpiva.js index <HASH>..<HASH> 100644 --- a/cfpiva.js +++ b/cfpiva.js @@ -44,7 +44,8 @@ cfpiva.controllaPIVA = function (piva, callback) { if (piva == '') return ''; if (piva.length != 11) return formatReturn(false, 'La lunghezza della partita IVA non è corretta: la partita I...
declaring undeclared vars fix #3
diff --git a/lib/sass/engine.rb b/lib/sass/engine.rb index <HASH>..<HASH> 100755 --- a/lib/sass/engine.rb +++ b/lib/sass/engine.rb @@ -205,6 +205,8 @@ END return node, index end + node.line = @line + if node.is_a? Tree::CommentNode while has_children line, index = raw_n...
Fix a line-numbering error error in Sass. Reported by Mike Judge. Thanks, Mike!