diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/addon/components/docs-keyboard-shortcuts/index.js b/addon/components/docs-keyboard-shortcuts/index.js index <HASH>..<HASH> 100644 --- a/addon/components/docs-keyboard-shortcuts/index.js +++ b/addon/components/docs-keyboard-shortcuts/index.js @@ -22,9 +22,9 @@ export default class DocsKeyboardShortcutsCompo...
avoid using `this.set` (fixes #<I>) (#<I>) Right now, the DocsKeyboardShortcutsComponent attempts to use `this.set` to set a property. DocsKeyboardShortcutsComponent is a Glimmer Component, so this API is not available. To avoid the problem, let's use a regular assignment statement.
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -101,8 +101,8 @@ async function prerender (parentCompilation, request, options, inject, loader) { }; // Only copy over allowed plugins (excluding them breaks extraction entirely). - const allowedPlugin...
Switch to regex in case the casing was wrong
diff --git a/lib/active_remote/version.rb b/lib/active_remote/version.rb index <HASH>..<HASH> 100644 --- a/lib/active_remote/version.rb +++ b/lib/active_remote/version.rb @@ -1,3 +1,3 @@ module ActiveRemote - VERSION = "0.2.0" + VERSION = "0.2.1" end
Bumped version to <I>
diff --git a/zen-search/src/main/java/com/nominanuda/solr/SolrHelper.java b/zen-search/src/main/java/com/nominanuda/solr/SolrHelper.java index <HASH>..<HASH> 100644 --- a/zen-search/src/main/java/com/nominanuda/solr/SolrHelper.java +++ b/zen-search/src/main/java/com/nominanuda/solr/SolrHelper.java @@ -112,7 +112,11 @@ ...
configured dot aware paths correctly handled over dyn fields
diff --git a/acceptance/setup/packages/pre-suite/015_PackageHostsPresets.rb b/acceptance/setup/packages/pre-suite/015_PackageHostsPresets.rb index <HASH>..<HASH> 100644 --- a/acceptance/setup/packages/pre-suite/015_PackageHostsPresets.rb +++ b/acceptance/setup/packages/pre-suite/015_PackageHostsPresets.rb @@ -1,5 +1,5 ...
(maint) Include fedora as a platform to test with service packages. Fedora had been left out, through no fault of its own, and was being tested without starting and stopping via service scripts.
diff --git a/pydot.py b/pydot.py index <HASH>..<HASH> 100644 --- a/pydot.py +++ b/pydot.py @@ -416,7 +416,7 @@ def find_graphviz(): It will look for 'dot', 'twopi' and 'neato' in all the directories specified in the PATH environment variable. - Thirdly: Default install location (Windows only) + Thirdl...
DOC: last method tried to find graphviz is for linux and osx too
diff --git a/resources/views/partials/components.blade.php b/resources/views/partials/components.blade.php index <HASH>..<HASH> 100644 --- a/resources/views/partials/components.blade.php +++ b/resources/views/partials/components.blade.php @@ -1,14 +1,14 @@ <ul class="list-group components"> @if($component_groups-...
Call enabled scope on the builder, not the collection
diff --git a/lib/ember-qunit/test.js b/lib/ember-qunit/test.js index <HASH>..<HASH> 100644 --- a/lib/ember-qunit/test.js +++ b/lib/ember-qunit/test.js @@ -12,6 +12,11 @@ export default function test(testName, callback) { var message; if (reason instanceof Error) { message = reason.stack; + ...
Better exception messages on phantomjs Exceptions on phantomjs have a `stack` property that does not contain the exception message itself. Which causes us to print only the stack without the actual error message. This change ensures that the error message must appear withinn our output. I'm not sure how to test this...
diff --git a/parse.go b/parse.go index <HASH>..<HASH> 100644 --- a/parse.go +++ b/parse.go @@ -585,6 +585,11 @@ func (p *parser) readParts(ns *[]Node) { func (p *parser) wordPart() Node { switch { + case p.got(LIT): + return Lit{ + ValuePos: p.lpos, + Value: p.lval, + } case p.peek(DOLLBR): return p....
parse: check for LIT first in wordPart() It's the most basic and very probably most common occurence.
diff --git a/tests/plugins/keyword_test.py b/tests/plugins/keyword_test.py index <HASH>..<HASH> 100644 --- a/tests/plugins/keyword_test.py +++ b/tests/plugins/keyword_test.py @@ -81,6 +81,9 @@ class TestKeywordDetector(object): [ # FOLLOWED_BY_COLON_RE ( + 'private_key ...
Add a few more Keyword negative test-cases
diff --git a/test/helper.rb b/test/helper.rb index <HASH>..<HASH> 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -30,7 +30,7 @@ if ActiveRecord::Base.respond_to?(:raise_in_transactional_callbacks=) && Rails.v ActiveRecord::Base.raise_in_transactional_callbacks = true end -ActiveRecord::Base.configurations = ...
Make DB configuration RoR <I> compatible. The configuration does not accept symbols as a keys anymore, since <URL>
diff --git a/tests/cases/action/RequestTest.php b/tests/cases/action/RequestTest.php index <HASH>..<HASH> 100644 --- a/tests/cases/action/RequestTest.php +++ b/tests/cases/action/RequestTest.php @@ -1015,7 +1015,10 @@ class RequestTest extends \lithium\test\Unit { $request = new Request(array( 'url' => 'foo/bar'...
Minor fix for a failing Request test when ran from cli
diff --git a/src-setup/org/opencms/setup/comptest/CmsSetupTestServletContainer.java b/src-setup/org/opencms/setup/comptest/CmsSetupTestServletContainer.java index <HASH>..<HASH> 100644 --- a/src-setup/org/opencms/setup/comptest/CmsSetupTestServletContainer.java +++ b/src-setup/org/opencms/setup/comptest/CmsSetupTestSer...
Added Tomcat 9 as valid servlet container version in setup wizard.
diff --git a/lib/binary_parser.js b/lib/binary_parser.js index <HASH>..<HASH> 100644 --- a/lib/binary_parser.js +++ b/lib/binary_parser.js @@ -324,7 +324,7 @@ Object.keys(PRIMITIVE_TYPES).forEach(function(type) { Parser.prototype.generateBit = function(ctx) { ctx.bitFields.push(this); - if (this.next && !thi...
Fixed bug that parser ends with bit parser doesnt work correctly
diff --git a/tests/units/Client.php b/tests/units/Client.php index <HASH>..<HASH> 100644 --- a/tests/units/Client.php +++ b/tests/units/Client.php @@ -136,13 +136,16 @@ class Client extends \ElasticSearch\tests\Base $secondaryIndex = 'test-index2'; $doc = array('title' => $tag); $options = ar...
Fixes unit testing using an unimplemented fluent api on Client
diff --git a/h2network/src/test/java/org/h2gis/network/SpatialFunctionTest.java b/h2network/src/test/java/org/h2gis/network/SpatialFunctionTest.java index <HASH>..<HASH> 100644 --- a/h2network/src/test/java/org/h2gis/network/SpatialFunctionTest.java +++ b/h2network/src/test/java/org/h2gis/network/SpatialFunctionTest.ja...
Remove the extra call to ST_Graph (#<I>) I was calling it an extra time when I created the cormen graph, but I don't need the cormen graph for the st_graph tests!
diff --git a/master/buildbot/status/web/change_hook.py b/master/buildbot/status/web/change_hook.py index <HASH>..<HASH> 100644 --- a/master/buildbot/status/web/change_hook.py +++ b/master/buildbot/status/web/change_hook.py @@ -63,8 +63,8 @@ class ChangeHookResource(resource.Resource): except ValueError, err: ...
Better logging of errors from web change hooks. The error message was getting discarded, making debugging impossible.
diff --git a/assess_add_cloud.py b/assess_add_cloud.py index <HASH>..<HASH> 100755 --- a/assess_add_cloud.py +++ b/assess_add_cloud.py @@ -36,11 +36,26 @@ def assess_cloud(client, example_cloud): raise JujuAssertionError('Cloud mismatch') +def iter_clouds(clouds): + for cloud_name, cloud in clouds.items...
Test with <I>-char endpoints.
diff --git a/src/deploy/lambda/05-upload-zip.js b/src/deploy/lambda/05-upload-zip.js index <HASH>..<HASH> 100644 --- a/src/deploy/lambda/05-upload-zip.js +++ b/src/deploy/lambda/05-upload-zip.js @@ -17,7 +17,8 @@ module.exports = function uploadZip(params, callback) { }, // upload the function function _...
force env var (loaded by utils/init or we fail loudly)
diff --git a/medoo.php b/medoo.php index <HASH>..<HASH> 100644 --- a/medoo.php +++ b/medoo.php @@ -589,7 +589,7 @@ class medoo } } - $table_join[] = $join_array[ $match[2] ] . ' JOIN "' . $match[3] . '" ' . (isset($match[5]) ? ' AS "' . $match[5] . '"' : '') . $relation; + $table_join[] = $join_...
[fix] Table joining with alias bug
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -11,7 +11,7 @@ class EmojiFaviconPlugin { compiler.hooks.make.tapAsync( 'EmojiFaviconPlugin', (compilation, callback) => - render(this.emoji, [16, 32, 48]) + render(this.emoji, ...
Render more favicon sizes
diff --git a/bika/lims/content/client.py b/bika/lims/content/client.py index <HASH>..<HASH> 100644 --- a/bika/lims/content/client.py +++ b/bika/lims/content/client.py @@ -105,6 +105,13 @@ class Client(Organisation): def setTitle(self, value): return self.setName(value) + def getClientID(self): + ...
Retrieve ID as ClientID if database has no ClientID
diff --git a/models/user.go b/models/user.go index <HASH>..<HASH> 100644 --- a/models/user.go +++ b/models/user.go @@ -629,7 +629,7 @@ func GetUserIdsByNames(names []string) []int64 { // Get all email addresses func GetEmailAddresses(uid int64) ([]*EmailAddress, error) { emails := make([]*EmailAddress, 0, 5) - err ...
Fix for wrong email query Changing EmailAdress.OwnerId to EmailAddress.Uid should have accompanied this change
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ license: GNU-GPL2 from setuptools import setup setup(name='consoleprinter', - version='32', + version='34', description='Console printer with linenumbers, stacktraces, logging, conversions and...
pip Thursday <I> April <I> (week:<I> day:<I>), <I>:<I>:<I>
diff --git a/commands/get.go b/commands/get.go index <HASH>..<HASH> 100644 --- a/commands/get.go +++ b/commands/get.go @@ -7,7 +7,7 @@ import ( ) type GetCommand struct { - SecretIdentifier string `short:"n" long:"name" description:"Selects the secret being set"` + SecretIdentifier string `short:"n" long:"name" des...
Updated help text for `get` [#<I>] CLI user should be able to GET secret value
diff --git a/src/Behat/Mink/Exception/Exception.php b/src/Behat/Mink/Exception/Exception.php index <HASH>..<HASH> 100644 --- a/src/Behat/Mink/Exception/Exception.php +++ b/src/Behat/Mink/Exception/Exception.php @@ -103,7 +103,7 @@ abstract class Exception extends \Exception $driver = basename(str_replace('\\',...
Fix Exception::getResponseInfo with Selenium 2 driver
diff --git a/forms_builder/forms/admin.py b/forms_builder/forms/admin.py index <HASH>..<HASH> 100644 --- a/forms_builder/forms/admin.py +++ b/forms_builder/forms/admin.py @@ -1,4 +1,3 @@ - from csv import writer from mimetypes import guess_type from os.path import join @@ -130,7 +129,7 @@ class FormAdmin(admin.Model...
Bugfix: Excel export fail for long form titles. Workbook sheets created by xlwt must not contain more than <I> characters (I assume it's a limitation of Excel) - this should fix failing Excel exports for long form titles.
diff --git a/sphinx/docserver.py b/sphinx/docserver.py index <HASH>..<HASH> 100644 --- a/sphinx/docserver.py +++ b/sphinx/docserver.py @@ -54,7 +54,7 @@ def shutdown_server(): def ui(): time.sleep(0.5) - input("Press any key to exit...") + input("Press <ENTER> to exit...\n") if __name__ == "__main__"...
Changed docserver shutdown instruction. (#<I>)
diff --git a/lib/crawler.js b/lib/crawler.js index <HASH>..<HASH> 100644 --- a/lib/crawler.js +++ b/lib/crawler.js @@ -306,7 +306,7 @@ var Crawler = function(initialURL) { /** * Collection of regular expressions and functions that are applied in the - * default {@link Crawler#discoverRegex} method. + ...
Fixed errant reference to discoverResources method in inline docs
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -44,11 +44,12 @@ NotFoundError = function(options) { RelationshipError = function(options) { const type = options.type; const method = options.method; + const target = options.target; this.status = 400; this.na...
Add a target option for RelationshipError
diff --git a/packages/crafty-runner-webpack/src/webpack.js b/packages/crafty-runner-webpack/src/webpack.js index <HASH>..<HASH> 100644 --- a/packages/crafty-runner-webpack/src/webpack.js +++ b/packages/crafty-runner-webpack/src/webpack.js @@ -75,7 +75,9 @@ module.exports = function(crafty, bundle, webpackPort) { con...
Fix pnp issue in webpack with multiple bundles
diff --git a/tests/fixture/__init__.py b/tests/fixture/__init__.py index <HASH>..<HASH> 100644 --- a/tests/fixture/__init__.py +++ b/tests/fixture/__init__.py @@ -25,7 +25,7 @@ def start_tangelo(): "--host", host, "--port", port, ...
Fixing bug in tests resulting from deploying plugins into package
diff --git a/slick.editors.js b/slick.editors.js index <HASH>..<HASH> 100644 --- a/slick.editors.js +++ b/slick.editors.js @@ -285,12 +285,12 @@ }; this.loadValue = function(item) { - $input.val((defaultValue = item[args.column.field]) ? "yes" : "no"); - $input....
- FIXED: corrected variable reference in YesNoSelectCellEditor
diff --git a/src/js/components/InfiniteScroll/InfiniteScroll.js b/src/js/components/InfiniteScroll/InfiniteScroll.js index <HASH>..<HASH> 100644 --- a/src/js/components/InfiniteScroll/InfiniteScroll.js +++ b/src/js/components/InfiniteScroll/InfiniteScroll.js @@ -177,6 +177,11 @@ const InfiniteScroll = ({ } ...
Disabled missing dependency warning to InfiniteScroll useLayoutEffect (#<I>) * add dependency to useLayoutEffect * disabling eslint warning and adding documentation
diff --git a/src/engine.js b/src/engine.js index <HASH>..<HASH> 100644 --- a/src/engine.js +++ b/src/engine.js @@ -12,7 +12,7 @@ class Mover { class Health { start() { - + console.log("Initializing "+this.host.name+" health to max hps"); } update() { @@ -57,17 +57,35 @@ class Engine { start() { let d...
Added start method call to engine example
diff --git a/build/ci.go b/build/ci.go index <HASH>..<HASH> 100644 --- a/build/ci.go +++ b/build/ci.go @@ -236,6 +236,14 @@ func goToolArch(arch string, subcmd string, args ...string) *exec.Cmd { gocmd := filepath.Join(runtime.GOROOT(), "bin", "go") cmd := exec.Command(gocmd, subcmd) cmd.Args = append(cmd.Args, a...
build: work around CGO linker bug on pre-<I> Go
diff --git a/lib/service/extract-saz.js b/lib/service/extract-saz.js index <HASH>..<HASH> 100644 --- a/lib/service/extract-saz.js +++ b/lib/service/extract-saz.js @@ -34,7 +34,8 @@ function parseMetaInfo(result) { if (!req.headers.host) { req.headers.host = options.host; } - port = options.port || (...
fix: import saz file
diff --git a/lib/perobs/SpaceTree.rb b/lib/perobs/SpaceTree.rb index <HASH>..<HASH> 100644 --- a/lib/perobs/SpaceTree.rb +++ b/lib/perobs/SpaceTree.rb @@ -111,10 +111,12 @@ module PEROBS if size <= 0 PEROBS.log.fatal "Size (#{size}) must be larger than 0." end - if has_space?(address, size) ...
Remove costly but unnecessary check in SpaceTree code.
diff --git a/spyder_profiler/widgets/profilergui.py b/spyder_profiler/widgets/profilergui.py index <HASH>..<HASH> 100644 --- a/spyder_profiler/widgets/profilergui.py +++ b/spyder_profiler/widgets/profilergui.py @@ -570,12 +570,10 @@ class ProfilerDataTree(QTreeWidget): if len(x) == 2 and self.compare_file i...
Issue <I>: Fix negative deltas on profiler
diff --git a/lib/core/environment.js b/lib/core/environment.js index <HASH>..<HASH> 100644 --- a/lib/core/environment.js +++ b/lib/core/environment.js @@ -57,8 +57,8 @@ exports.getConfig = function (platform, env, project_dir, argv) { } // option to configure custom ports - if (argv.hasOwnProperty('custom_port...
fix(custom-ports): unify on `custom-ports` * * * This commit was sponsored by The Hoodie Firm. You can hire The Hoodie Firm: <URL>
diff --git a/src/Wardrobe/Core/Controllers/AdminController.php b/src/Wardrobe/Core/Controllers/AdminController.php index <HASH>..<HASH> 100644 --- a/src/Wardrobe/Core/Controllers/AdminController.php +++ b/src/Wardrobe/Core/Controllers/AdminController.php @@ -26,7 +26,7 @@ class AdminController extends BaseController { ...
Try to get the filter/view right
diff --git a/fastTSNE/nearest_neighbors.py b/fastTSNE/nearest_neighbors.py index <HASH>..<HASH> 100644 --- a/fastTSNE/nearest_neighbors.py +++ b/fastTSNE/nearest_neighbors.py @@ -64,7 +64,7 @@ class BallTree(KNNIndex): self.index.fit(data) def query_train(self, data, k): - distances, neighbors = ...
Compute proper number of neighbors in query_train
diff --git a/src/Message/ExpressPurchaseRequest.php b/src/Message/ExpressPurchaseRequest.php index <HASH>..<HASH> 100644 --- a/src/Message/ExpressPurchaseRequest.php +++ b/src/Message/ExpressPurchaseRequest.php @@ -34,14 +34,25 @@ class ExpressPurchaseRequest extends BasePurchaseRequest "_input_charset" ...
Update ExpressPurchaseRequest.php add "qr_pay_mode" to Qrcode pay & fix issue: when the value is zero(0) will be removed
diff --git a/twython/endpoints.py b/twython/endpoints.py index <HASH>..<HASH> 100644 --- a/twython/endpoints.py +++ b/twython/endpoints.py @@ -542,8 +542,8 @@ class EndpointsMixin(object): """ return self.get('mutes/users/ids', params=params) - list_mutes_ids.iter_mode = 'cursor' - list_mutes_...
Fixed typo with list_mute_ids.
diff --git a/types/result_code.go b/types/result_code.go index <HASH>..<HASH> 100644 --- a/types/result_code.go +++ b/types/result_code.go @@ -83,8 +83,8 @@ const ( // Client or server has timed out. TIMEOUT ResultCode = 9 - // XDS product is not available. - NO_XDS ResultCode = 10 + // Operation not allowed in c...
Rename ResultCode NO_XDS to ALWAYS_FORBIDDEN
diff --git a/samples/python/setup.py b/samples/python/setup.py index <HASH>..<HASH> 100644 --- a/samples/python/setup.py +++ b/samples/python/setup.py @@ -8,5 +8,5 @@ setup( author='Vyacheslav Gudkov', author_email='vyacheslav.gudkov@dsr-company.com', description='This is the sample of usage python wrapp...
Updated indy version in sample
diff --git a/src/amo-client.js b/src/amo-client.js index <HASH>..<HASH> 100644 --- a/src/amo-client.js +++ b/src/amo-client.js @@ -571,6 +571,9 @@ export class PseudoProgress { finish() { this.clearInterval(this.interval); this.fillBucket(); + // The bucket has already filled to the terminal width at th...
fix: Added missing new line after download progress bar
diff --git a/advanced_filters/__init__.py b/advanced_filters/__init__.py index <HASH>..<HASH> 100644 --- a/advanced_filters/__init__.py +++ b/advanced_filters/__init__.py @@ -1 +1 @@ -__version__ = '1.0.7.1' +__version__ = '1.1.0'
chore: bump to next minor release <I> Since we're breaking backward compatiblity, by dropping Python <I>
diff --git a/server/const.go b/server/const.go index <HASH>..<HASH> 100644 --- a/server/const.go +++ b/server/const.go @@ -41,7 +41,7 @@ var ( const ( // VERSION is the current version for the server. - VERSION = "2.2.0-RC.7.3" + VERSION = "2.2.0-RC.7.4" // PROTO is the currently supported protocol. // 0 was...
Bump to RC<I>
diff --git a/tornado/test/process_test.py b/tornado/test/process_test.py index <HASH>..<HASH> 100644 --- a/tornado/test/process_test.py +++ b/tornado/test/process_test.py @@ -235,7 +235,7 @@ class SubprocessTest(AsyncTestCase): os.kill(subproc.pid, signal.SIGTERM) try: - ret = self.wait(t...
test: Use default timeouts in sigchild test The 1s timeout used here has become flaky with the introduction of a sleep (before the timeout even starts).
diff --git a/salt/modules/systemd.py b/salt/modules/systemd.py index <HASH>..<HASH> 100644 --- a/salt/modules/systemd.py +++ b/salt/modules/systemd.py @@ -389,7 +389,8 @@ def unmask(name): ''' if _untracked_custom_unit_found(name) or _unit_file_changed(name): systemctl_reload() - return not __salt...
Unmask a runtime masked services too
diff --git a/src/Engine/MySQL/Quote.php b/src/Engine/MySQL/Quote.php index <HASH>..<HASH> 100644 --- a/src/Engine/MySQL/Quote.php +++ b/src/Engine/MySQL/Quote.php @@ -4,6 +4,7 @@ namespace G4\DataMapper\Engine\MySQL; use G4\DataMapper\Common\RangeValue; use G4\DataMapper\Common\SingleValue; +use G4\DataMapper\Excep...
<I> - Added more specific Exception class.
diff --git a/src/views/post/_form.php b/src/views/post/_form.php index <HASH>..<HASH> 100755 --- a/src/views/post/_form.php +++ b/src/views/post/_form.php @@ -42,7 +42,6 @@ $this->registerJS($script); 'draggable' => true, 'appendixView' => '/post/appendix.php', 'cropAllowed' ...
Any pictures can be uploaded for post (change 2 to 0 for Uploader::limit).
diff --git a/admin/index.php b/admin/index.php index <HASH>..<HASH> 100644 --- a/admin/index.php +++ b/admin/index.php @@ -285,7 +285,7 @@ echo '<input type="hidden" name="confirmupgrade" value="1" />'; echo '<input type="hidden" name="confirmrelease" value="1" />'; ...
MDL-<I> unattended upgrade fixed; merged from MOODLE_<I>_STABLE
diff --git a/lib/Algo/Methods/InstantRunoff/InstantRunoff.php b/lib/Algo/Methods/InstantRunoff/InstantRunoff.php index <HASH>..<HASH> 100644 --- a/lib/Algo/Methods/InstantRunoff/InstantRunoff.php +++ b/lib/Algo/Methods/InstantRunoff/InstantRunoff.php @@ -124,7 +124,7 @@ class InstantRunoff extends Method implements Met...
PHP <I> Optimization: Not use reset for InstantRunoff
diff --git a/src/test/java/org/minimalj/util/CsvReaderTest.java b/src/test/java/org/minimalj/util/CsvReaderTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/minimalj/util/CsvReaderTest.java +++ b/src/test/java/org/minimalj/util/CsvReaderTest.java @@ -82,6 +82,12 @@ public class CsvReaderTest { reader =...
Test escaped separator and escaping character
diff --git a/code/tasks/OrderMigrationTask.php b/code/tasks/OrderMigrationTask.php index <HASH>..<HASH> 100644 --- a/code/tasks/OrderMigrationTask.php +++ b/code/tasks/OrderMigrationTask.php @@ -35,7 +35,7 @@ class OrderMigrationTask extends MigrationTask { } } - $this->log("Updated {$upd...
Add more comprehensive message on delivery firstnames migration class
diff --git a/src/Malenki/Math/Stats/ParametricTest/Anova.php b/src/Malenki/Math/Stats/ParametricTest/Anova.php index <HASH>..<HASH> 100644 --- a/src/Malenki/Math/Stats/ParametricTest/Anova.php +++ b/src/Malenki/Math/Stats/ParametricTest/Anova.php @@ -90,9 +90,9 @@ class Anova implements \Countable public functio...
I am sure now, so, I removed TODO
diff --git a/shared/flex.go b/shared/flex.go index <HASH>..<HASH> 100644 --- a/shared/flex.go +++ b/shared/flex.go @@ -3,7 +3,7 @@ */ package shared -var Version = "2.0.0.rc5" +var Version = "2.0.0.rc6" var UserAgent = "LXD " + Version /*
Release LXD <I>.rc6
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ setup(name='httpretty', tests_require=test_packages(), install_requires=['urllib3'], license='MIT', + test_suite='nose.collector', classifiers=["Intended Audience :: Developers", ...
Tell setuptools to use nose testsuite This allows us to run the full test suite (unit and functional) by using the python setup.py test command.
diff --git a/lib/puppet/provider.rb b/lib/puppet/provider.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/provider.rb +++ b/lib/puppet/provider.rb @@ -551,6 +551,11 @@ class Puppet::Provider "#{@resource}(provider=#{self.class.name})" end + # @return [String] Returns a human readable string with information ...
(maint) Implement inspect method on base type provider. It looks like RSpec was changed to call inspect rather than to_s when displaying error messages on expected values. This results in uninformative error messages when a type provider is passed to expect, such as in: ``` expect(provider).to be_insync(is) ``` Thi...
diff --git a/lib/arjdbc/mysql/adapter.rb b/lib/arjdbc/mysql/adapter.rb index <HASH>..<HASH> 100644 --- a/lib/arjdbc/mysql/adapter.rb +++ b/lib/arjdbc/mysql/adapter.rb @@ -240,23 +240,6 @@ module ArJdbc end end - # DATABASE STATEMENTS ====================================== - - # @override - def ex...
[mysql] use prepared statement support with AR's exec_xxx methods
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -20,6 +20,6 @@ setup( author_email='jared.dillard@gmail.com', install_requires=['six', 'sphinx >= 1.2'], url="https://github.com/jdillard/sphinx-sitemap", - download_url="https://github.com/jdillard/sphinx-si...
update download version in setup.py
diff --git a/lib/gollum/app.rb b/lib/gollum/app.rb index <HASH>..<HASH> 100644 --- a/lib/gollum/app.rb +++ b/lib/gollum/app.rb @@ -95,7 +95,7 @@ module Precious @css = settings.wiki_options[:css] @js = settings.wiki_options[:js] @mathjax_config = settings.wiki_options[:mathjax_config] - @allo...
Set allow_editing in Precious::App to true by default. Closes #<I>
diff --git a/src/main/java/io/vlingo/actors/Directory.java b/src/main/java/io/vlingo/actors/Directory.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/vlingo/actors/Directory.java +++ b/src/main/java/io/vlingo/actors/Directory.java @@ -79,7 +79,7 @@ final class Directory { void register(final Address addres...
changes to more specific exception in Directory#register address already registered
diff --git a/acceptance/tests/resource/file/ticket_8740_should_not_enumerate_root_directory.rb b/acceptance/tests/resource/file/ticket_8740_should_not_enumerate_root_directory.rb index <HASH>..<HASH> 100644 --- a/acceptance/tests/resource/file/ticket_8740_should_not_enumerate_root_directory.rb +++ b/acceptance/tests/re...
re-fix acceptance test related to logging changes
diff --git a/app/models/deal_redemptions/redeem_code.rb b/app/models/deal_redemptions/redeem_code.rb index <HASH>..<HASH> 100644 --- a/app/models/deal_redemptions/redeem_code.rb +++ b/app/models/deal_redemptions/redeem_code.rb @@ -12,7 +12,7 @@ module DealRedemptions # Validate redemption code as an active vouch...
Removed code params requirement from validate code model action
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ author = u'abidibo' # built documents. # # The short X.Y version. -version = u'1.2.0' +version = u'1.2.1' # The full version, including alpha/beta/rc tags. -release = u'1.2.0' +release = u'1....
bumped version number to <I>
diff --git a/packages/ocap-util/jest.config.js b/packages/ocap-util/jest.config.js index <HASH>..<HASH> 100644 --- a/packages/ocap-util/jest.config.js +++ b/packages/ocap-util/jest.config.js @@ -171,10 +171,4 @@ module.exports = { // Indicates whether each individual test should be reported during the run // ve...
fake change to test lerna publish
diff --git a/logrus_test.go b/logrus_test.go index <HASH>..<HASH> 100644 --- a/logrus_test.go +++ b/logrus_test.go @@ -191,7 +191,7 @@ func TestUserSuppliedLevelFieldHasPrefix(t *testing.T) { log.WithField("level", 1).Info("test") }, func(fields Fields) { assert.Equal(t, fields["level"], "info") - assert.Equal...
assertify changed behavior and consider float<I> != int
diff --git a/simuvex/s_irop.py b/simuvex/s_irop.py index <HASH>..<HASH> 100644 --- a/simuvex/s_irop.py +++ b/simuvex/s_irop.py @@ -57,6 +57,11 @@ def generic_DivS(args, size): # TODO: not sure if this should be extended *before* or *after* multiplication return args[0] / args[1] +def generic_DivU(args, size): + #...
Implemented Iop_DivU.
diff --git a/cli/version.js b/cli/version.js index <HASH>..<HASH> 100644 --- a/cli/version.js +++ b/cli/version.js @@ -9,7 +9,7 @@ const logger = require('winston'); * @name version */ function version() { - const packageJson = require(path.resolve(__dirname, '..', '..', 'package.json')); + const packageJson = r...
Using SPA path instead of relying on ../../ (#<I>) * Using SPA path instead of relying on ../../ * Fixed ../../ reference in test
diff --git a/ChernoffFaces.js b/ChernoffFaces.js index <HASH>..<HASH> 100644 --- a/ChernoffFaces.js +++ b/ChernoffFaces.js @@ -170,12 +170,14 @@ ChernoffFaces.prototype.randomize = function() { var fv = FaceVector.random(); this.fp.redraw(fv); - var sc_options = { - features: JSUS.mergeOnValue(FaceVector.de...
Minor Changes in CF. Still not working
diff --git a/test/models/rememberable_test.rb b/test/models/rememberable_test.rb index <HASH>..<HASH> 100644 --- a/test/models/rememberable_test.rb +++ b/test/models/rememberable_test.rb @@ -18,19 +18,19 @@ class RememberableTest < ActiveSupport::TestCase test 'forget_me should clear remember token and save the reco...
Do not use ActiveRecord only methods in tests.
diff --git a/lib/stripe/engine.rb b/lib/stripe/engine.rb index <HASH>..<HASH> 100644 --- a/lib/stripe/engine.rb +++ b/lib/stripe/engine.rb @@ -81,7 +81,9 @@ environment file directly. end initializer 'stripe.assets.precompile' do |app| - app.config.assets.precompile += %w( stripe_elements.js stripe_ele...
Skip asset precompilation in test env
diff --git a/src/Sonata/ProductBundle/Entity/BaseProduct.php b/src/Sonata/ProductBundle/Entity/BaseProduct.php index <HASH>..<HASH> 100644 --- a/src/Sonata/ProductBundle/Entity/BaseProduct.php +++ b/src/Sonata/ProductBundle/Entity/BaseProduct.php @@ -485,7 +485,7 @@ abstract class BaseProduct implements ProductInterfac...
Added type to avoid issue if name is NULL
diff --git a/app/assets/javascripts/validations.js b/app/assets/javascripts/validations.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/validations.js +++ b/app/assets/javascripts/validations.js @@ -55,7 +55,7 @@ function validate(formContainer) { // Do not check disabled form fields. if (...
Stop validating when first error is found
diff --git a/Model/TokenConfig.php b/Model/TokenConfig.php index <HASH>..<HASH> 100644 --- a/Model/TokenConfig.php +++ b/Model/TokenConfig.php @@ -51,6 +51,10 @@ class TokenConfig return $this->defaultKey; } + if (!isset($this->tokens[$key])) { + throw new \LogicException(sprin...
Added exception if token name is not defiend
diff --git a/comments/request.js b/comments/request.js index <HASH>..<HASH> 100644 --- a/comments/request.js +++ b/comments/request.js @@ -17,6 +17,10 @@ function Request(req) { } Request.prototype = { + login: function(user, pass, callback) { + this.db.users().login(user, pass, callback); + }, + ...
Fix login. Regression caused by previous refactor.
diff --git a/mathparse/mathparse.py b/mathparse/mathparse.py index <HASH>..<HASH> 100644 --- a/mathparse/mathparse.py +++ b/mathparse/mathparse.py @@ -100,8 +100,13 @@ def replace_word_tokens(string, language): operators.update(words['unary_operators']) # Ensures unicode string processing - if not is...
Added portability between python versions
diff --git a/springy.js b/springy.js index <HASH>..<HASH> 100644 --- a/springy.js +++ b/springy.js @@ -1,7 +1,7 @@ /** * Springy v2.0.1 * - * Copyright (c) 2010 Dennis Hotson + * Copyright (c) 2010-2013 Dennis Hotson * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this s...
updated copyright year The <I> made me think that the project was abandoned. Also, arbor.js writes that it's based on springy. Only now that I take a closer look I see that there are recent commits.
diff --git a/lib/util/storage.js b/lib/util/storage.js index <HASH>..<HASH> 100644 --- a/lib/util/storage.js +++ b/lib/util/storage.js @@ -14,14 +14,14 @@ const proxyHandler = { return true; }, ownKeys(storage) { - return Reflect.ownKeys(storage.getAll()); + return Reflect.ownKeys(storage._store); }...
Use private property at proxy, deepClone is not required for it.
diff --git a/etcdserver/cluster.go b/etcdserver/cluster.go index <HASH>..<HASH> 100644 --- a/etcdserver/cluster.go +++ b/etcdserver/cluster.go @@ -223,6 +223,13 @@ func (c *cluster) Recover() { c.members, c.removed = membersFromStore(c.store) c.version = clusterVersionFromStore(c.store) MustDetectDowngrade(c.vers...
etcdserver: print out correct restored cluster info Before this PR, it always prints nil because cluster info has not been covered when print: ``` <I>-<I>-<I> <I>:<I>:<I> I | etcdserver: loaded cluster information from store: <nil> ```
diff --git a/keanu-project/src/test/java/io/improbable/keanu/algorithms/mcmc/MetropolisHastingsTest.java b/keanu-project/src/test/java/io/improbable/keanu/algorithms/mcmc/MetropolisHastingsTest.java index <HASH>..<HASH> 100644 --- a/keanu-project/src/test/java/io/improbable/keanu/algorithms/mcmc/MetropolisHastingsTest....
change MH test name to say full variable select like the variable selector
diff --git a/lib/regexp-examples/helpers.rb b/lib/regexp-examples/helpers.rb index <HASH>..<HASH> 100644 --- a/lib/regexp-examples/helpers.rb +++ b/lib/regexp-examples/helpers.rb @@ -26,10 +26,8 @@ module RegexpExamples end def self.generic_map_result(repeaters, method) - repeaters - .map { |repeater| r...
Minor refactor/simplification I was being unnecessarily clever here...
diff --git a/core-bundle/src/Framework/ContaoFramework.php b/core-bundle/src/Framework/ContaoFramework.php index <HASH>..<HASH> 100644 --- a/core-bundle/src/Framework/ContaoFramework.php +++ b/core-bundle/src/Framework/ContaoFramework.php @@ -265,7 +265,7 @@ class ContaoFramework implements ContaoFrameworkInterface, Co...
[Core] Catch all exceptions when generating a route (see #<I>).
diff --git a/spec/unit/transaction.rb b/spec/unit/transaction.rb index <HASH>..<HASH> 100755 --- a/spec/unit/transaction.rb +++ b/spec/unit/transaction.rb @@ -20,8 +20,8 @@ describe Puppet::Transaction do describe "when generating resources" do it "should finish all resources" do - generator ...
Fix failing tests introduced by #<I>
diff --git a/lib/fugit/cron.rb b/lib/fugit/cron.rb index <HASH>..<HASH> 100644 --- a/lib/fugit/cron.rb +++ b/lib/fugit/cron.rb @@ -97,19 +97,14 @@ module Fugit inc((24 - @t.hour) * 3600 - @t.min * 60 - @t.sec) - #inc( - @t.hour * 3600) if @t.hour != 0 # compensate for entering DST - #inc( - @...
Simplify inc_day, gh-<I>
diff --git a/eZ/Publish/API/Repository/Tests/RoleServiceTest.php b/eZ/Publish/API/Repository/Tests/RoleServiceTest.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/API/Repository/Tests/RoleServiceTest.php +++ b/eZ/Publish/API/Repository/Tests/RoleServiceTest.php @@ -1328,9 +1328,9 @@ class RoleServiceTest extends BaseT...
Fixed: Do not rely on hardcoded role IDs in role service tests
diff --git a/tasks/webdriver.js b/tasks/webdriver.js index <HASH>..<HASH> 100644 --- a/tasks/webdriver.js +++ b/tasks/webdriver.js @@ -27,9 +27,9 @@ module.exports = function(grunt) { timeout: 1000000, updateSauceJob: false }), - capabilities = deepmerge(options...
make task work with absolute minimum required options - closes #<I>
diff --git a/html/pfappserver/root/static/admin/users.js b/html/pfappserver/root/static/admin/users.js index <HASH>..<HASH> 100644 --- a/html/pfappserver/root/static/admin/users.js +++ b/html/pfappserver/root/static/admin/users.js @@ -63,7 +63,7 @@ function init() { return false; }); - /* Save a node...
Reset the save btn when user form is invalid
diff --git a/hug/redirect.py b/hug/redirect.py index <HASH>..<HASH> 100644 --- a/hug/redirect.py +++ b/hug/redirect.py @@ -45,7 +45,7 @@ def see_other(location): def temporary(location): - """Redirects to the specified location using HTTP 304 status code""" + """Redirects to the specified location using HTTP...
Update wrong status code stated in docstring
diff --git a/packages/upload-core/upload.js b/packages/upload-core/upload.js index <HASH>..<HASH> 100644 --- a/packages/upload-core/upload.js +++ b/packages/upload-core/upload.js @@ -49,6 +49,8 @@ class Upload { 'X-XSRF-TOKEN': this.getToken(), 'X-Availity-Customer-ID': this.options.customerId, ...
fix(upload-core): add additional headers
diff --git a/packages/ember/tests/helpers/setup-sentry.js b/packages/ember/tests/helpers/setup-sentry.js index <HASH>..<HASH> 100644 --- a/packages/ember/tests/helpers/setup-sentry.js +++ b/packages/ember/tests/helpers/setup-sentry.js @@ -28,9 +28,13 @@ export function setupSentryTest(hooks) { this.fetchStub = sin...
ref(ember): Fix Qunit causing flake A recent update to QUnit (<I>) changed onUnhandledRejection to onUncaughtException. Ember try seems to be re-installing the latest qunit. This fix should make both sides of the QUnit change work.
diff --git a/bindinfo/handle.go b/bindinfo/handle.go index <HASH>..<HASH> 100644 --- a/bindinfo/handle.go +++ b/bindinfo/handle.go @@ -1058,7 +1058,7 @@ func runSQL(ctx context.Context, sctx sessionctx.Context, sql string, resultChan } // HandleEvolvePlanTask tries to evolve one plan task. -// It only handle one ta...
bindinfo: fix the comment typo (#<I>)
diff --git a/PHPCI/Plugin/PhpMessDetector.php b/PHPCI/Plugin/PhpMessDetector.php index <HASH>..<HASH> 100755 --- a/PHPCI/Plugin/PhpMessDetector.php +++ b/PHPCI/Plugin/PhpMessDetector.php @@ -115,7 +115,7 @@ class PhpMessDetector implements \PHPCI\Plugin protected function overrideSetting($options, $key) { -...
Fix bug where options could not be overridden in PHPMessdetector plugin
diff --git a/eliot/tests/test_output.py b/eliot/tests/test_output.py index <HASH>..<HASH> 100644 --- a/eliot/tests/test_output.py +++ b/eliot/tests/test_output.py @@ -249,7 +249,7 @@ class MemoryLoggerTests(TestCase): for i in range(write_count): logger.write(msg, serializer) - ms...
Make the msg dicts distinct values Otherwise list.index always just picks the first one.
diff --git a/molgenis-data-migrate/src/main/java/org/molgenis/data/version/v1_5/Step1UpgradeMetaData.java b/molgenis-data-migrate/src/main/java/org/molgenis/data/version/v1_5/Step1UpgradeMetaData.java index <HASH>..<HASH> 100644 --- a/molgenis-data-migrate/src/main/java/org/molgenis/data/version/v1_5/Step1UpgradeMetaDa...
fix upgrading of attributes: use fullname instead of simplename for the entity
diff --git a/lib/libPDF.php b/lib/libPDF.php index <HASH>..<HASH> 100644 --- a/lib/libPDF.php +++ b/lib/libPDF.php @@ -222,7 +222,7 @@ class libPDF extends FPDF implements libPDFInterface { $doc->loadXML("<root/>"); - $html = preg_replace("/&(?![a-z\d]+|#\d+|#x[a-f\d]+);/i", "&amp;", $html); + $html = preg_rep...
Fix HTMLText()'s entity detection not working all the time
diff --git a/salt/modules/mac_ports.py b/salt/modules/mac_ports.py index <HASH>..<HASH> 100644 --- a/salt/modules/mac_ports.py +++ b/salt/modules/mac_ports.py @@ -306,13 +306,13 @@ def install(name=None, refresh=False, pkgs=None, **kwargs): if pkgs is None: version_num = kwargs.get('version') var...
emit port cli version, variants as separate args