diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/js/client/api.js b/js/client/api.js index <HASH>..<HASH> 100644 --- a/js/client/api.js +++ b/js/client/api.js @@ -153,12 +153,12 @@ fin = Singleton(function(){ })) } - this.appendToList = function(itemId, propName /*, val1, val2, ... */) { + this.append = function(itemId, propName /*, val1, val2, ....
Rename appendToList and prependToList to append and prepend
diff --git a/common/src/main/java/tachyon/replay/ReplayCache.java b/common/src/main/java/tachyon/replay/ReplayCache.java index <HASH>..<HASH> 100644 --- a/common/src/main/java/tachyon/replay/ReplayCache.java +++ b/common/src/main/java/tachyon/replay/ReplayCache.java @@ -111,7 +111,7 @@ public final class ReplayCache<V>...
[SMALLFIX] Added missing bracket in Javadoc in 'ReplayCache'
diff --git a/js/coincheck.js b/js/coincheck.js index <HASH>..<HASH> 100644 --- a/js/coincheck.js +++ b/js/coincheck.js @@ -4,6 +4,7 @@ const Exchange = require ('./base/Exchange'); const { BadSymbol, ExchangeError, AuthenticationError } = require ('./base/errors'); +const { TICK_SIZE } = require ('./base/functions/...
TICK_SIZE re-set
diff --git a/test/OIPIndex.test.js b/test/OIPIndex.test.js index <HASH>..<HASH> 100644 --- a/test/OIPIndex.test.js +++ b/test/OIPIndex.test.js @@ -61,5 +61,15 @@ describe('OIPIndex API', () => { expect(mp instanceof MPSingle).toBeTruthy() } }) + it('GET Multiparts via Reference w/ Limit', async () => { + ...
test: get mps via ref with limit
diff --git a/flask_exceptions/__init__.py b/flask_exceptions/__init__.py index <HASH>..<HASH> 100644 --- a/flask_exceptions/__init__.py +++ b/flask_exceptions/__init__.py @@ -2,5 +2,6 @@ Import items here that are necessary to make imports cleaner when using app. """ +# pylint: disable=wildcard-import from . impor...
:house: Modified package imports To allow easy access to Exception classes.
diff --git a/plugins/CorePluginsAdmin/angularjs/field/field.directive.js b/plugins/CorePluginsAdmin/angularjs/field/field.directive.js index <HASH>..<HASH> 100644 --- a/plugins/CorePluginsAdmin/angularjs/field/field.directive.js +++ b/plugins/CorePluginsAdmin/angularjs/field/field.directive.js @@ -134,6 +134,14 @@ ...
when placeholder is changed, show the updated text
diff --git a/src/Builder/BuilderAbstract.php b/src/Builder/BuilderAbstract.php index <HASH>..<HASH> 100644 --- a/src/Builder/BuilderAbstract.php +++ b/src/Builder/BuilderAbstract.php @@ -6,13 +6,18 @@ abstract class BuilderAbstract implements BuilderInterface { /** - * Description. + * Build the command...
Add docblocks to BuilderAbstract and BuilderInterface
diff --git a/src/Youtube.php b/src/Youtube.php index <HASH>..<HASH> 100644 --- a/src/Youtube.php +++ b/src/Youtube.php @@ -4,6 +4,7 @@ namespace Mrofi\VideoInfo; use DateInterval; use GuzzleHttp\Client; +use GuzzleHttp\Exception\TransferException; use Mrofi\VideoInfo\VideoInfoInterface as VideoContract; class Y...
typo (again) :-(
diff --git a/tocncx.py b/tocncx.py index <HASH>..<HASH> 100644 --- a/tocncx.py +++ b/tocncx.py @@ -77,6 +77,6 @@ def generateTOC(fm): navlist = doc.createElement('navList') root.appendChild(navlist) - outdoc = open('{0}/toc.ncx'.format(utils.OUT_DIR),'w') + outdoc = open('{0}/OPS/toc.ncx'.format(u...
Quick fix to place toc.ncx in the right location
diff --git a/resources/lang/th-TH/forms.php b/resources/lang/th-TH/forms.php index <HASH>..<HASH> 100644 --- a/resources/lang/th-TH/forms.php +++ b/resources/lang/th-TH/forms.php @@ -153,15 +153,15 @@ return [ 'display-graphs' => 'แสดงกราฟในหน้าสถานะหรือไม่', 'about-this...
New translations forms.php (Thai)
diff --git a/src/Normalizer/Normalizer.php b/src/Normalizer/Normalizer.php index <HASH>..<HASH> 100644 --- a/src/Normalizer/Normalizer.php +++ b/src/Normalizer/Normalizer.php @@ -131,11 +131,11 @@ final class Normalizer implements NormalizerInterface ): array { $data = []; foreach ($normalization...
chore: make some bool comparisons more explicit
diff --git a/course/tests/courselib_test.php b/course/tests/courselib_test.php index <HASH>..<HASH> 100644 --- a/course/tests/courselib_test.php +++ b/course/tests/courselib_test.php @@ -863,7 +863,7 @@ class core_course_courselib_testcase extends advanced_testcase { // Test move the marked section down.. ...
MDL-<I> course: fix typo on courselib test
diff --git a/tests/unit/io/test_libevreactor.py b/tests/unit/io/test_libevreactor.py index <HASH>..<HASH> 100644 --- a/tests/unit/io/test_libevreactor.py +++ b/tests/unit/io/test_libevreactor.py @@ -20,7 +20,7 @@ except ImportError, exc: raise unittest.SkipTest('libev does not appear to be installed correctly: %s'...
Fix libevreactor unit test mock patching
diff --git a/pyam_analysis/core.py b/pyam_analysis/core.py index <HASH>..<HASH> 100644 --- a/pyam_analysis/core.py +++ b/pyam_analysis/core.py @@ -192,10 +192,6 @@ class IamDataFrame(object): df = df.append(self.check(var, check, filters, ret_true=False)) if ...
excluding 'exclude' scenarios from validation is included by default in 'select()'
diff --git a/test/helpers/cilium.go b/test/helpers/cilium.go index <HASH>..<HASH> 100644 --- a/test/helpers/cilium.go +++ b/test/helpers/cilium.go @@ -800,13 +800,13 @@ func (s *SSHMeta) RestartCilium() error { // AddIPToLoopbackDevice adds the specified IP (assumed to be in form <ip>/<mask>) // to the loopback devic...
test/helpers: change `ip addr` commands to use `ExecWithSudo`
diff --git a/firefox/src/java/com/googlecode/webdriver/firefox/FirefoxProfile.java b/firefox/src/java/com/googlecode/webdriver/firefox/FirefoxProfile.java index <HASH>..<HASH> 100644 --- a/firefox/src/java/com/googlecode/webdriver/firefox/FirefoxProfile.java +++ b/firefox/src/java/com/googlecode/webdriver/firefox/Firef...
SimonStewart: It's now possible to add a single additional preference to the firefox driver r<I>
diff --git a/prepublish.js b/prepublish.js index <HASH>..<HASH> 100644 --- a/prepublish.js +++ b/prepublish.js @@ -44,7 +44,11 @@ ast.body.forEach(function (node) { } }); -fs.writeFileSync(__dirname + '/lib/dependencies.js', 'module.exports = ' + JSON.stringify(dependencies)); +Object.keys(dependencies).forEach(f...
prepublish: Pretty print generated JSON files
diff --git a/bolt/onboarding.go b/bolt/onboarding.go index <HASH>..<HASH> 100644 --- a/bolt/onboarding.go +++ b/bolt/onboarding.go @@ -117,11 +117,15 @@ func (c *Client) Generate(ctx context.Context, req *platform.OnboardingRequest) if err = c.CreateBucket(ctx, bucket); err != nil { return nil, err } + + perms ...
fix(bolt): grand first user org admin privileges during onboarding
diff --git a/src/main/java/org/jdbdt/QueryBuilder.java b/src/main/java/org/jdbdt/QueryBuilder.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jdbdt/QueryBuilder.java +++ b/src/main/java/org/jdbdt/QueryBuilder.java @@ -14,7 +14,7 @@ public final class QueryBuilder { /** * Clauses/parameters that may be ...
QueryBuilder: Param enum can be private
diff --git a/src/Illuminate/Console/Scheduling/Event.php b/src/Illuminate/Console/Scheduling/Event.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Console/Scheduling/Event.php +++ b/src/Illuminate/Console/Scheduling/Event.php @@ -354,8 +354,8 @@ class Event /** * Schedule the event to run twice daily. ...
Updated the PHPDoc block Updated the PHPDoc block
diff --git a/src/TwoFactorAuth/TwoFactorAuthHelper.php b/src/TwoFactorAuth/TwoFactorAuthHelper.php index <HASH>..<HASH> 100644 --- a/src/TwoFactorAuth/TwoFactorAuthHelper.php +++ b/src/TwoFactorAuth/TwoFactorAuthHelper.php @@ -408,11 +408,6 @@ class TwoFactorAuthHelper */ public function setCookie($response)...
Tweak TwoFactorAuthHelper.php. #<I>
diff --git a/python_modules/dagster-graphql/dagster_graphql/implementation/execution.py b/python_modules/dagster-graphql/dagster_graphql/implementation/execution.py index <HASH>..<HASH> 100644 --- a/python_modules/dagster-graphql/dagster_graphql/implementation/execution.py +++ b/python_modules/dagster-graphql/dagster_g...
fix viewing logs for a "live" UnknownPipeline Test Plan: load a run not in a terminal state for a pipeline not in scopea Reviewers: prha, nate, max Reviewed By: nate Differential Revision: <URL>
diff --git a/lib/core_tabs.js b/lib/core_tabs.js index <HASH>..<HASH> 100644 --- a/lib/core_tabs.js +++ b/lib/core_tabs.js @@ -688,6 +688,7 @@ var core_tabs = function(spec, my) { var tabs = []; Object.keys(my.tabs).forEach(function(id) { tabs.push({ + id: id, state: my.tabs[i...
Add tab ID to 'tabs_get' method response As discussed in issue #<I> this fix will add the tab ID to the response object when not specifying a tab.
diff --git a/book.js b/book.js index <HASH>..<HASH> 100644 --- a/book.js +++ b/book.js @@ -3,7 +3,7 @@ var pkg = require('./package.json') module.exports = { root: "./docs", title: "Botpress Official Documentation", - plugins: ["noembed", "sitemap", "expandable-chapters", "hints", "anchors"], + plugins: ["noem...
Added robots.txt
diff --git a/manage.py b/manage.py index <HASH>..<HASH> 100644 --- a/manage.py +++ b/manage.py @@ -197,7 +197,7 @@ def start_daemon(): # Get the waiting jobs (STATUS_WAITING) ordered by the age-in-minutes/priority DESC # Jobs with a priority of `1` will sort above equally-old jobs with...
Queue running was in reverse order
diff --git a/lib/analytical.rb b/lib/analytical.rb index <HASH>..<HASH> 100644 --- a/lib/analytical.rb +++ b/lib/analytical.rb @@ -35,7 +35,8 @@ module Analytical def analytical @analytical ||= begin options = self.class.analytical_options.merge({ - :ssl => request.ssl? + :ssl => ...
Adding :controller to options, so modules can access the current controller if they need to
diff --git a/client/state/ui/editor/test/edit-save-flow.js b/client/state/ui/editor/test/edit-save-flow.js index <HASH>..<HASH> 100644 --- a/client/state/ui/editor/test/edit-save-flow.js +++ b/client/state/ui/editor/test/edit-save-flow.js @@ -15,6 +15,8 @@ import nock from 'nock'; */ import posts from 'state/posts/r...
Fix Post Editor unit tests (#<I>) Caused by changes introduced by #<I> (dependency on `getPodcastingCategoryId` selector). The tests in #<I> were authored before that PR was merged and it introduces new Redux dependencies: the test store needs also `sites` and `siteSettings` reducers now.
diff --git a/hydpy/core/parametertools.py b/hydpy/core/parametertools.py index <HASH>..<HASH> 100644 --- a/hydpy/core/parametertools.py +++ b/hydpy/core/parametertools.py @@ -360,15 +360,16 @@ class Parameter(objecttools.ValueMath): lines = [] if pub.options.reprcomments: if self.__doc__ ...
Fix multi line comments of string representations of class "Parameter". Multiline class docstrings like class Test(Parameter): """line 1 and line2 [-]. """ resulted in class representations like # line 1 and line 2 [-]. test(?) which are not valid Python code. This has been corrected to # line 1 and ...
diff --git a/semantic_release/__init__.py b/semantic_release/__init__.py index <HASH>..<HASH> 100644 --- a/semantic_release/__init__.py +++ b/semantic_release/__init__.py @@ -1,6 +1,6 @@ """Semantic Release """ -__version__ = "7.2.0" +__version__ = "7.2.1" from .errors import UnknownCommitMessageStyleError # no...
<I> Automatically generated by python-semantic-release
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -166,7 +166,7 @@ def setupNupic(): "Topic :: Scientific/Engineering :: Artificial Intelligence" ], long_description = """\ -Numenta Platform for Intelligent Computing: a brain-inspired machine intelligence pla...
Using text from numenta.com for description
diff --git a/pymatgen/symmetry/analyzer.py b/pymatgen/symmetry/analyzer.py index <HASH>..<HASH> 100644 --- a/pymatgen/symmetry/analyzer.py +++ b/pymatgen/symmetry/analyzer.py @@ -770,7 +770,6 @@ class SpacegroupAnalyzer: List of weights, in the SAME order as kpoints. """ kpts = np.array(k...
remove accidental print statement from symmetry.analyzer
diff --git a/libraries/ui-shared/index.js b/libraries/ui-shared/index.js index <HASH>..<HASH> 100644 --- a/libraries/ui-shared/index.js +++ b/libraries/ui-shared/index.js @@ -1,4 +1,4 @@ -export { default as Accordion } from './icons/Accordion'; +export { default as Accordion } from './Accordion'; export { default as ...
PWA-<I> Corrected export path
diff --git a/lib/disney/disneylegacyapi.js b/lib/disney/disneylegacyapi.js index <HASH>..<HASH> 100644 --- a/lib/disney/disneylegacyapi.js +++ b/lib/disney/disneylegacyapi.js @@ -10,11 +10,6 @@ const Location = require('../location'); class DisneyLegacyPark extends DisneyAPIBase { constructor(options = {}) { - ...
[!] Need the facility channel for the calendar data. Add back in!
diff --git a/spec/support/coverage_loader.rb b/spec/support/coverage_loader.rb index <HASH>..<HASH> 100644 --- a/spec/support/coverage_loader.rb +++ b/spec/support/coverage_loader.rb @@ -3,4 +3,4 @@ require 'simplecov-rcov' require 'coveralls' require 'coverage/kit' -Coverage::Kit.setup(minimum_coverage: 70.25) +Cov...
TT-<I>: don't bump coverage as much
diff --git a/plaso/multi_processing/analysis_process.py b/plaso/multi_processing/analysis_process.py index <HASH>..<HASH> 100644 --- a/plaso/multi_processing/analysis_process.py +++ b/plaso/multi_processing/analysis_process.py @@ -79,6 +79,10 @@ class AnalysisProcess(base_process.MultiProcessBaseProcess): if self....
Changes to analysis process RPC support #<I> (#<I>)
diff --git a/openid/consumer/parse.py b/openid/consumer/parse.py index <HASH>..<HASH> 100644 --- a/openid/consumer/parse.py +++ b/openid/consumer/parse.py @@ -247,3 +247,26 @@ def findFirstHref(link_attrs_list, target_rel): return None first = matches[0] return first.get('href') + +class ParseError(V...
[project @ Add implementation of OpenID settings parsing as an independent function]
diff --git a/script/upload.py b/script/upload.py index <HASH>..<HASH> 100755 --- a/script/upload.py +++ b/script/upload.py @@ -14,7 +14,7 @@ from lib.util import atom_gyp, execute, get_atom_shell_version, parse_version, \ from lib.github import GitHub -ATOM_SHELL_REPO = 'atom/electron' +ATOM_SHELL_REPO = 'electron...
atom => electron in upload script
diff --git a/tests/transliterator.php b/tests/transliterator.php index <HASH>..<HASH> 100644 --- a/tests/transliterator.php +++ b/tests/transliterator.php @@ -222,6 +222,19 @@ $data = array( ), ), ), + array( + 'description' => 'hotfix #14', +...
Add unit test for issue #<I>
diff --git a/src/Medoo.php b/src/Medoo.php index <HASH>..<HASH> 100644 --- a/src/Medoo.php +++ b/src/Medoo.php @@ -1482,7 +1482,7 @@ class Medoo } } - public function aggregate($type, $table, $join = null, $column = null, $where = null) + private function aggregate($type, $table, $join = null, $column = null, $w...
[update] Make aggregate as private
diff --git a/SwatDB/SwatDB.php b/SwatDB/SwatDB.php index <HASH>..<HASH> 100644 --- a/SwatDB/SwatDB.php +++ b/SwatDB/SwatDB.php @@ -1044,11 +1044,18 @@ class SwatDB // }}} // {{{ private static function initFields() + /** + * Transforms an array of text field identifiers ('type:name') into + * an array of SwatDB...
Update documentation. svn commit r<I>
diff --git a/src/main/java/org/asciidoctor/Asciidoctor.java b/src/main/java/org/asciidoctor/Asciidoctor.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/asciidoctor/Asciidoctor.java +++ b/src/main/java/org/asciidoctor/Asciidoctor.java @@ -5,6 +5,7 @@ import java.io.IOException; import java.io.Reader; import j...
Asciidoctor Factory can be used to create an instance of Asciidoctor setting gem path or load path
diff --git a/lib/overcommit/hook/base.rb b/lib/overcommit/hook/base.rb index <HASH>..<HASH> 100644 --- a/lib/overcommit/hook/base.rb +++ b/lib/overcommit/hook/base.rb @@ -111,6 +111,10 @@ module Overcommit::Hook Overcommit::Utils.execute(cmd) end + def execute_in_background(cmd) + Overcommit::Util...
Expose execute_in_background in hooks This was forgotten in f2c<I>ef. Add it. Change-Id: Iff<I>f1a6b<I>e<I>daba<I>ac6b1d3a Reviewed-on: <URL>
diff --git a/src/js/pannellum.js b/src/js/pannellum.js index <HASH>..<HASH> 100644 --- a/src/js/pannellum.js +++ b/src/js/pannellum.js @@ -1988,6 +1988,7 @@ function load() { */ function loadScene(sceneId, targetPitch, targetYaw, targetHfov, fadeDone) { loaded = false; + animatedMove = {}; // Set ...
Clear move animation when changing scenes (fixes #<I>).
diff --git a/code/jobs/ScheduledExecutionJob.php b/code/jobs/ScheduledExecutionJob.php index <HASH>..<HASH> 100644 --- a/code/jobs/ScheduledExecutionJob.php +++ b/code/jobs/ScheduledExecutionJob.php @@ -11,7 +11,7 @@ class ScheduledExecutionJob extends AbstractQueuedJob { /** * @param DataObject $dataObject - * ...
minor codestyle: Fixing integer to int in phpdoc block
diff --git a/action/find.go b/action/find.go index <HASH>..<HASH> 100644 --- a/action/find.go +++ b/action/find.go @@ -17,8 +17,9 @@ func (s *Action) Find(c *cli.Context) error { if err != nil { return err } + needle := strings.ToLower(c.Args().First()) for _, value := range l { - if strings.Contains(value, c...
Make find compare entries case insensitive Fixes #<I>
diff --git a/admin_site_config.php b/admin_site_config.php index <HASH>..<HASH> 100644 --- a/admin_site_config.php +++ b/admin_site_config.php @@ -44,7 +44,7 @@ case 'site': Site::setPreference('TIMEZONE', Filter::post('TIMEZONE')); FlashMessages::addMessage(I18N::translate('The website preferences have been upda...
Should fix: #<I> - wrong addition operator
diff --git a/src/toil/lib/docker.py b/src/toil/lib/docker.py index <HASH>..<HASH> 100644 --- a/src/toil/lib/docker.py +++ b/src/toil/lib/docker.py @@ -160,7 +160,7 @@ def subprocessDockerCall(job, 'set -eo pipefail && {}'.format(' | '.join(chain_params))] else: call = bas...
_logger -> logger.
diff --git a/guppi.py b/guppi.py index <HASH>..<HASH> 100644 --- a/guppi.py +++ b/guppi.py @@ -60,6 +60,7 @@ class GuppiRaw(object): def __init__(self, filename, n_blocks=None): self.filename = filename self.file_obj = open(filename, 'r') + self.filesize = os.path.getsize(filename) if not n_blocks: se...
Updated file read logic for better compatibility
diff --git a/core/src/main/java/com/google/errorprone/bugpatterns/threadsafety/WellKnownMutability.java b/core/src/main/java/com/google/errorprone/bugpatterns/threadsafety/WellKnownMutability.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/google/errorprone/bugpatterns/threadsafety/WellKnownMutability.jav...
Mark AbstractHashFunction as a well-known Immutable type. RELNOTES: N/A ------------- Created by MOE: <URL>
diff --git a/lib/gds_api/json_client.rb b/lib/gds_api/json_client.rb index <HASH>..<HASH> 100644 --- a/lib/gds_api/json_client.rb +++ b/lib/gds_api/json_client.rb @@ -88,7 +88,7 @@ module GdsApi end def delete_json!(url, params = nil, additional_headers = {}) - do_request(:delete, url, params, addition...
Fix delete_json to actually call do_json_request. This makes it consistent with put_json, post_json, and is the expected behaviour given the method name.
diff --git a/lib/tessel/deploy.js b/lib/tessel/deploy.js index <HASH>..<HASH> 100644 --- a/lib/tessel/deploy.js +++ b/lib/tessel/deploy.js @@ -69,10 +69,13 @@ Tessel.prototype.deployScript = function(opts, push) { self.connection.end(); }); streams.stdin.on('data', f...
Supports full stdout/stderr. Kills conn on CTRL+C.
diff --git a/cmd/gateway-main.go b/cmd/gateway-main.go index <HASH>..<HASH> 100644 --- a/cmd/gateway-main.go +++ b/cmd/gateway-main.go @@ -38,6 +38,7 @@ FLAGS: {{end}}{{end}} BACKEND: azure: Microsoft Azure Blob Storage. Default ENDPOINT is https://core.windows.net + s3: Amazon Simple Storage Service (S3). E...
Add s3 backend to help, fixes #<I> (#<I>) * Add s3 backend to help, fixes #<I> * Add samples for Gateway usage with S3
diff --git a/src/bosh-director/spec/unit/worker_spec.rb b/src/bosh-director/spec/unit/worker_spec.rb index <HASH>..<HASH> 100644 --- a/src/bosh-director/spec/unit/worker_spec.rb +++ b/src/bosh-director/spec/unit/worker_spec.rb @@ -86,7 +86,11 @@ module Bosh::Director it 'raises error if migrations are never curr...
Capture error log in test vs printing to console for worker [#<I>](<URL>)
diff --git a/switch/core.js b/switch/core.js index <HASH>..<HASH> 100644 --- a/switch/core.js +++ b/switch/core.js @@ -116,24 +116,24 @@ Switch = new Class({ bind('init', self); // initialization queue for dynamicly loading plugins - self._initializer = new ASQueue.Converter(self, [{ - name...
change switch/core according to the API alternation of ASQueue
diff --git a/chevron/renderer.py b/chevron/renderer.py index <HASH>..<HASH> 100644 --- a/chevron/renderer.py +++ b/chevron/renderer.py @@ -1,4 +1,3 @@ -#!/usr/bin/python # -*- coding: utf-8 -*- try: diff --git a/chevron/tokenizer.py b/chevron/tokenizer.py index <HASH>..<HASH> 100644 --- a/chevron/tokenizer.py +++ b...
Remove shebang from renderer and tokenizer These files are not intended to be run by themselves anyways
diff --git a/core-bundle/src/Resources/contao/modules/Module.php b/core-bundle/src/Resources/contao/modules/Module.php index <HASH>..<HASH> 100644 --- a/core-bundle/src/Resources/contao/modules/Module.php +++ b/core-bundle/src/Resources/contao/modules/Module.php @@ -203,6 +203,7 @@ abstract class Module extends \Fronte...
[Core] Pass the CSS ID of the navigation module to the partial (see #<I>)
diff --git a/vcstool/clients/svn.py b/vcstool/clients/svn.py index <HASH>..<HASH> 100644 --- a/vcstool/clients/svn.py +++ b/vcstool/clients/svn.py @@ -125,7 +125,7 @@ class SvnClient(VcsClientBase): url = command.url if command.version: - url += '@%d' % command.version + url +=...
fix usage of version with svn import (#<I>)
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -1120,27 +1120,27 @@ describe('TeslaJS', function () { }); }); - describe('#startStreaming()', function () { - it('should succeed', function (done) { - tjs.startStreaming(options, - function...
removed streaming tests for now #<I>
diff --git a/plugins/rest/rest.go b/plugins/rest/rest.go index <HASH>..<HASH> 100644 --- a/plugins/rest/rest.go +++ b/plugins/rest/rest.go @@ -151,5 +151,17 @@ func (c Client) Do(ctx context.Context, method, path string) (*http.Response, er "headers": req.Header, }).Debug("Sending request.") - return c.Client.Do...
Add response debug logging to REST client
diff --git a/lib/gcli/commands/help.js b/lib/gcli/commands/help.js index <HASH>..<HASH> 100644 --- a/lib/gcli/commands/help.js +++ b/lib/gcli/commands/help.js @@ -51,16 +51,16 @@ function getHelpManData(commandData, context) { }.bind(this)); }, getSynopsis: function(param) { - var short = param.sh...
refactor-<I>: Simplify how we create param name in help A small simplification to create the name at the top rather than in 2 parts which we concatenate later.
diff --git a/azurerm/internal/services/frontdoor/tests/front_door_resource_test.go b/azurerm/internal/services/frontdoor/tests/front_door_resource_test.go index <HASH>..<HASH> 100644 --- a/azurerm/internal/services/frontdoor/tests/front_door_resource_test.go +++ b/azurerm/internal/services/frontdoor/tests/front_door_re...
r/frontdoor: fixing an issue where the checkdestroy function was checking the wrong resource name
diff --git a/exchange/bitswap/bitswap.go b/exchange/bitswap/bitswap.go index <HASH>..<HASH> 100644 --- a/exchange/bitswap/bitswap.go +++ b/exchange/bitswap/bitswap.go @@ -24,13 +24,17 @@ import ( var log = eventlog.Logger("bitswap") -// Number of providers to request for sending a wantlist to -// TODO: if a 'non-n...
style constify variables good to const until it's required for them to be variable. TODO pass them in as configuration options
diff --git a/cicoclient/wrapper.py b/cicoclient/wrapper.py index <HASH>..<HASH> 100644 --- a/cicoclient/wrapper.py +++ b/cicoclient/wrapper.py @@ -97,7 +97,7 @@ class CicoWrapper(client.CicoClient): real_self_inventory = dict() for host in self_inventory: - real_self_inventory[host[0]] = ...
fix bug in self_inventory
diff --git a/tests/test_fixtures.py b/tests/test_fixtures.py index <HASH>..<HASH> 100644 --- a/tests/test_fixtures.py +++ b/tests/test_fixtures.py @@ -21,9 +21,28 @@ class TestFoo(unittest.TestCase, FixturesMixin): # Your tests go here + def setUp(self): + # Make sure that the user defined setUp meth...
Modified the tests to make sure that setup and tear down functions work properly
diff --git a/app/form_builders/monologue_admin_form_builder.rb b/app/form_builders/monologue_admin_form_builder.rb index <HASH>..<HASH> 100644 --- a/app/form_builders/monologue_admin_form_builder.rb +++ b/app/form_builders/monologue_admin_form_builder.rb @@ -29,7 +29,7 @@ class MonologueAdminFormBuilder < ActionView::H...
Making the layout consistent throughout -- using the twitter-bootstrap class.
diff --git a/src/pixi/renderers/canvas/CanvasRenderer.js b/src/pixi/renderers/canvas/CanvasRenderer.js index <HASH>..<HASH> 100644 --- a/src/pixi/renderers/canvas/CanvasRenderer.js +++ b/src/pixi/renderers/canvas/CanvasRenderer.js @@ -23,7 +23,7 @@ PIXI.CanvasRenderer = function(width, height, options) { ...
Fix for overwriting falsy values.. or even (possibly) undefined ones.
diff --git a/ruby_event_store/lib/ruby_event_store/client.rb b/ruby_event_store/lib/ruby_event_store/client.rb index <HASH>..<HASH> 100644 --- a/ruby_event_store/lib/ruby_event_store/client.rb +++ b/ruby_event_store/lib/ruby_event_store/client.rb @@ -17,6 +17,12 @@ module RubyEventStore end + # Persists eve...
Document #publish Issue: #<I> [ci skip]
diff --git a/lib/sof/writer.rb b/lib/sof/writer.rb index <HASH>..<HASH> 100644 --- a/lib/sof/writer.rb +++ b/lib/sof/writer.rb @@ -42,6 +42,7 @@ module Sof end immediate , extended = atts.partition {|a,val| val.is_a?(SimpleNode) } head += immediate.collect {|a,val| "#{a.to_sof()} => #{val.data}"}.j...
made a simple node for small objects. bad news is that tests pass unchanged
diff --git a/Auth/OpenID/DiffieHellman.php b/Auth/OpenID/DiffieHellman.php index <HASH>..<HASH> 100644 --- a/Auth/OpenID/DiffieHellman.php +++ b/Auth/OpenID/DiffieHellman.php @@ -61,15 +61,6 @@ class Auth_OpenID_DiffieHellman { $this->lib =& Auth_OpenID_getMathLib(); - if (!$this->lib) { - ...
[project @ Remove unnecessary code from DiffieHellman.php]
diff --git a/lib/ohai/plugins/chef.rb b/lib/ohai/plugins/chef.rb index <HASH>..<HASH> 100644 --- a/lib/ohai/plugins/chef.rb +++ b/lib/ohai/plugins/chef.rb @@ -33,7 +33,7 @@ Ohai.plugin(:Chef) do begin require "chef/version" require "chef-config/config" unless defined?(ChefConfig::Config) - rescue ...
Fix the exception handling in the chef plugin This wasn't actually rescuing.
diff --git a/py/nupic/research/flat_spatial_pooler.py b/py/nupic/research/flat_spatial_pooler.py index <HASH>..<HASH> 100644 --- a/py/nupic/research/flat_spatial_pooler.py +++ b/py/nupic/research/flat_spatial_pooler.py @@ -109,7 +109,9 @@ class FlatSpatialPooler(SpatialPooler): # set of columns to be 'hungry' for le...
added comments to flat spatial pooler constructor
diff --git a/src/Leaves/CrudLeaf.php b/src/Leaves/CrudLeaf.php index <HASH>..<HASH> 100644 --- a/src/Leaves/CrudLeaf.php +++ b/src/Leaves/CrudLeaf.php @@ -25,7 +25,7 @@ abstract class CrudLeaf extends ModelBoundLeaf protected function saveRestModel() { $this->model->restModel->save(); - + ...
small refactor of crudleaf as agreed with AC
diff --git a/xwiki-rendering-syntaxes/xwiki-rendering-syntax-event/src/main/java/org/xwiki/rendering/internal/renderer/event/EventsChainingRenderer.java b/xwiki-rendering-syntaxes/xwiki-rendering-syntax-event/src/main/java/org/xwiki/rendering/internal/renderer/event/EventsChainingRenderer.java index <HASH>..<HASH> 1006...
[Misc] Also escape chars in special symbol event
diff --git a/tests/runtests.py b/tests/runtests.py index <HASH>..<HASH> 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -160,7 +160,7 @@ TEST_SUITES = { 'path': 'integration/netapi'}, 'cloud_provider': {'display_name': 'Cloud Provider', - 'path': 'integration/cloud/providers'}, + ...
Rename "providers" dir to "clouds" to respect naming convention
diff --git a/src/fkooman/Rest/Plugin/IndieAuth/IndieAuthAuthentication.php b/src/fkooman/Rest/Plugin/IndieAuth/IndieAuthAuthentication.php index <HASH>..<HASH> 100644 --- a/src/fkooman/Rest/Plugin/IndieAuth/IndieAuthAuthentication.php +++ b/src/fkooman/Rest/Plugin/IndieAuth/IndieAuthAuthentication.php @@ -179,6 +179,7 ...
also disable authentication plugin on registered URLs
diff --git a/core/src/main/java/com/google/common/truth/TruthJUnit.java b/core/src/main/java/com/google/common/truth/TruthJUnit.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/google/common/truth/TruthJUnit.java +++ b/core/src/main/java/com/google/common/truth/TruthJUnit.java @@ -58,18 +58,6 @@ public fin...
Remove throwAssumptionError, which was deprecated in Truth <I>. ------------- Created by MOE: <URL>
diff --git a/library/src/com/sothree/slidinguppanel/SlidingUpPanelLayout.java b/library/src/com/sothree/slidinguppanel/SlidingUpPanelLayout.java index <HASH>..<HASH> 100644 --- a/library/src/com/sothree/slidinguppanel/SlidingUpPanelLayout.java +++ b/library/src/com/sothree/slidinguppanel/SlidingUpPanelLayout.java @@ -1...
Recompute slide offset from sliding view top when drag state becomes idle. Some slower devices were missing the final onPanelDragged events so the onPanelExpanded, onPanelAnchored & onPanelCollapsed events were not being fired.
diff --git a/dvc/version.py b/dvc/version.py index <HASH>..<HASH> 100644 --- a/dvc/version.py +++ b/dvc/version.py @@ -6,7 +6,7 @@ import os import subprocess -_BASE_VERSION = "2.7.2" +_BASE_VERSION = "2.7.3" def _generate_version(base_version):
dvc: bump to <I>
diff --git a/sikuli.py b/sikuli.py index <HASH>..<HASH> 100644 --- a/sikuli.py +++ b/sikuli.py @@ -23,5 +23,5 @@ mouseMove = global_screen.mouseMove wheel = global_screen.wheel keyDown = global_screen.keyDown keyUp = global_screen.keyUp -debug_preview = global_screen.debugPreview +debugPreview = global_screen.debugP...
Fixed refactoring (again)
diff --git a/opal/clearwater/application.rb b/opal/clearwater/application.rb index <HASH>..<HASH> 100644 --- a/opal/clearwater/application.rb +++ b/opal/clearwater/application.rb @@ -20,6 +20,7 @@ module Clearwater router.set_outlets controller.call trap_clicks + watch_url end def ...
Watch URL for changes This helps keep us from breaking the back button. I'd like to come up with a better way to do this, though, since executing a callback function every <I>ms can wake up the process unnecessarily, leading to battery drain.
diff --git a/lib/support/cli.js b/lib/support/cli.js index <HASH>..<HASH> 100644 --- a/lib/support/cli.js +++ b/lib/support/cli.js @@ -204,7 +204,7 @@ module.exports.parseCommandLine = function parseCommandLine() { }) .option('chrome.traceCategory', { describe: - 'Add a trace category to the def...
Add example how to add your own trace category
diff --git a/lib/dev_mode_app.js b/lib/dev_mode_app.js index <HASH>..<HASH> 100644 --- a/lib/dev_mode_app.js +++ b/lib/dev_mode_app.js @@ -178,9 +178,12 @@ App.prototype = { } , onInputChar: function(chr, i) { var self = this - if (chr === 'q') + if (chr === 'q') { + log.info('Got keyboard Quit c...
Make keyboard commands and compile errors show up in the debug log
diff --git a/clc-java-sdk/sdk/src/test/java/com/centurylink/cloud/sdk/tests/mocks/BindMocksModule.java b/clc-java-sdk/sdk/src/test/java/com/centurylink/cloud/sdk/tests/mocks/BindMocksModule.java index <HASH>..<HASH> 100644 --- a/clc-java-sdk/sdk/src/test/java/com/centurylink/cloud/sdk/tests/mocks/BindMocksModule.java +...
<I> design and implement integration tests framework
diff --git a/tests/e2e/PestTestFramework/tests/ForPestWithDataProviderTest.php b/tests/e2e/PestTestFramework/tests/ForPestWithDataProviderTest.php index <HASH>..<HASH> 100644 --- a/tests/e2e/PestTestFramework/tests/ForPestWithDataProviderTest.php +++ b/tests/e2e/PestTestFramework/tests/ForPestWithDataProviderTest.php @...
Add special char for Pest e2e test to make sure it works as expected
diff --git a/lib/text_helpers/translation.rb b/lib/text_helpers/translation.rb index <HASH>..<HASH> 100644 --- a/lib/text_helpers/translation.rb +++ b/lib/text_helpers/translation.rb @@ -35,7 +35,7 @@ module TextHelpers def html(key, options = {}) rendered = GitHub::Markdown.render(text(key, options)) ...
Handle `p` tag stripping in a more robust manner
diff --git a/features/edb/core/src/test/java/org/openengsb/edb/core/test/unit/repository/GitRepositoryTest.java b/features/edb/core/src/test/java/org/openengsb/edb/core/test/unit/repository/GitRepositoryTest.java index <HASH>..<HASH> 100644 --- a/features/edb/core/src/test/java/org/openengsb/edb/core/test/unit/reposito...
replaced assertEquals with assertFalse
diff --git a/test/unit/test_service_models.py b/test/unit/test_service_models.py index <HASH>..<HASH> 100644 --- a/test/unit/test_service_models.py +++ b/test/unit/test_service_models.py @@ -41,7 +41,7 @@ class UrlTesterTestMixin(UrlTesterTestBase): ('filter_matching') ...
Rename test_invalid_url_error_is_raised_by The method is being renamed to test_query_for_invalid_url_with
diff --git a/kong/management/commands/assume.py b/kong/management/commands/assume.py index <HASH>..<HASH> 100644 --- a/kong/management/commands/assume.py +++ b/kong/management/commands/assume.py @@ -26,6 +26,9 @@ class Command(BaseCommand): help="Print all options"), ) + def complete(self...
Add bash completion (with a patched django). Otherwise this should just be ignored.
diff --git a/lib/driver/mysql.js b/lib/driver/mysql.js index <HASH>..<HASH> 100644 --- a/lib/driver/mysql.js +++ b/lib/driver/mysql.js @@ -403,8 +403,8 @@ var MysqlDriver = Base.extend({ var columns = Object.keys(fieldMapping); var referencedColumns = columns.map(function (key) { return fieldMapping[key]; });...
fix wrong quoting resulted from wrong quotationFunction
diff --git a/enhydrator/src/main/java/com/airhacks/enhydrator/transform/ColumnTransformer.java b/enhydrator/src/main/java/com/airhacks/enhydrator/transform/ColumnTransformer.java index <HASH>..<HASH> 100644 --- a/enhydrator/src/main/java/com/airhacks/enhydrator/transform/ColumnTransformer.java +++ b/enhydrator/src/main...
ColumnTransformer got initialization with bindings for consistency sake
diff --git a/src/Controller.js b/src/Controller.js index <HASH>..<HASH> 100644 --- a/src/Controller.js +++ b/src/Controller.js @@ -296,8 +296,7 @@ meta.ctrl = loadCtrls: function() { var ctrl; - var numCtrl = this._ctrlsLoad.length; - for(var i = 0; i < numCtrl; i++) { + for(var i = 0; i < this._ctrlsLoad.len...
Controllers loaded in another controllers load should now work properly.
diff --git a/inc/roots-cleanup.php b/inc/roots-cleanup.php index <HASH>..<HASH> 100644 --- a/inc/roots-cleanup.php +++ b/inc/roots-cleanup.php @@ -176,7 +176,7 @@ function roots_remove_recent_comments_style() { // remove CSS from gallery function roots_gallery_style($css) { - return preg_replace("/<style type='text...
escaped slashes in preg_replace pattern
diff --git a/tinybus/src/com/halfbit/tinybus/TinyBus.java b/tinybus/src/com/halfbit/tinybus/TinyBus.java index <HASH>..<HASH> 100644 --- a/tinybus/src/com/halfbit/tinybus/TinyBus.java +++ b/tinybus/src/com/halfbit/tinybus/TinyBus.java @@ -150,10 +150,9 @@ public class TinyBus implements Bus { private void processQ...
removing unnesseary object cast
diff --git a/app/src/Bolt/Config.php b/app/src/Bolt/Config.php index <HASH>..<HASH> 100644 --- a/app/src/Bolt/Config.php +++ b/app/src/Bolt/Config.php @@ -612,7 +612,7 @@ class Config $this->paths['app'] . 'view/css/ckeditor.css' )); $this->set('general/wysiwyg/filebrowser/browseUrl', $th...
in setCkPath use the request to files url instead of constructing it here
diff --git a/components/Kladr/util.js b/components/Kladr/util.js index <HASH>..<HASH> 100644 --- a/components/Kladr/util.js +++ b/components/Kladr/util.js @@ -34,6 +34,21 @@ export function placeName(region: PlaceDescription, _for: ?Place = null) { case 'ул': return (_for !== 'street' ? 'улица ' : '') + reg...
[Kladr] More abbreviations.
diff --git a/core/Version.php b/core/Version.php index <HASH>..<HASH> 100644 --- a/core/Version.php +++ b/core/Version.php @@ -20,7 +20,7 @@ final class Version * The current Piwik version. * @var string */ - const VERSION = '3.0.0-rc5'; + const VERSION = '3.0.0-rc4'; public function isSt...
<I>-rc4 was never released
diff --git a/fireplace/cards/classic/rogue.py b/fireplace/cards/classic/rogue.py index <HASH>..<HASH> 100644 --- a/fireplace/cards/classic/rogue.py +++ b/fireplace/cards/classic/rogue.py @@ -34,7 +34,7 @@ class NEW1_005: # Master of Disguise class NEW1_014: - play = SetTag(TARGET, {GameTag.STEALTH: False}) + play =...
Fix Master of Disguise and add test
diff --git a/example.py b/example.py index <HASH>..<HASH> 100644 --- a/example.py +++ b/example.py @@ -12,11 +12,10 @@ bot = SirBot(token) # Example quote of the day plugin async def get_quote_of_the_day(): url = 'http://api.theysaidso.com/qod.json' - async with aiohttp.ClientSession() as session: - as...
Remove client session from example bot, we only need a single request
diff --git a/lib/rubylog/context_modules/predicates.rb b/lib/rubylog/context_modules/predicates.rb index <HASH>..<HASH> 100644 --- a/lib/rubylog/context_modules/predicates.rb +++ b/lib/rubylog/context_modules/predicates.rb @@ -11,12 +11,6 @@ module Rubylog super end - - - - - # directives ...
removed check_modules, made create_procedure protected
diff --git a/course/index.php b/course/index.php index <HASH>..<HASH> 100644 --- a/course/index.php +++ b/course/index.php @@ -116,7 +116,7 @@ print_category_edit_header(); print_heading($heading); - if ($datadelete) { + if ($data->fulldelete) { category_delete_full($delet...
course categories: fix typo introduced when fixing MDL-<I>