diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/pkg/index/corpus.go b/pkg/index/corpus.go index <HASH>..<HASH> 100644 --- a/pkg/index/corpus.go +++ b/pkg/index/corpus.go @@ -540,9 +540,14 @@ type pnAndTime struct { type byPermanodeModtime []pnAndTime -func (s byPermanodeModtime) Len() int { return len(s) } -func (s byPermanodeModtime) Les...
Sort recent permanodes first by time, then by blobref. Just in case two permanodes were modified in the same nanosecond (or more likely: the client's clock resolution sucks when they created the mutation). Fixes <URL>
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,6 @@ DOCS_REQS = [SPHINX_REQ] TEST_REQS = [ 'hypothesis < 4', - 'hypothesis-pytest < 1', 'py < 2', 'pytest < 5', 'pytest-benchmark >= 3.2.0, < 4',
Remove hypothesis-pytest dependency According to <URL>
diff --git a/upload/catalog/language/en-gb/checkout/checkout.php b/upload/catalog/language/en-gb/checkout/checkout.php index <HASH>..<HASH> 100644 --- a/upload/catalog/language/en-gb/checkout/checkout.php +++ b/upload/catalog/language/en-gb/checkout/checkout.php @@ -3,6 +3,7 @@ $_['heading_title'] = '...
added missing word translation The same text translation may be available in other language files as well, but it is missing here.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,7 @@ setup( python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", project_urls={ "Bug Tracker": "https://github.com/stripe/stripe-python/issues", + "Changes": "https://github.com/stri...
PyPI / project URLs: Link to CHANGES.md (#<I>)
diff --git a/src/main/date-functions.js b/src/main/date-functions.js index <HASH>..<HASH> 100644 --- a/src/main/date-functions.js +++ b/src/main/date-functions.js @@ -460,6 +460,10 @@ Date.formatCodeToRegex = function(character, currentGroup) { return {g:0, c:null, s:"[+-]\\d{1,5}"} + case "...
Handle dot as escaped in regexp formatter
diff --git a/firebase_token_generator.py b/firebase_token_generator.py index <HASH>..<HASH> 100644 --- a/firebase_token_generator.py +++ b/firebase_token_generator.py @@ -84,12 +84,16 @@ def _create_options_claims(opts): raise ValueError('Unrecognized Option: %s' % k) return claims -def _encode(byte...
Improve the previous <I> fix: use bytes rather, than string. Also, optimize for better speed.
diff --git a/py8583.py b/py8583.py index <HASH>..<HASH> 100644 --- a/py8583.py +++ b/py8583.py @@ -193,6 +193,9 @@ class Iso8583: if(Len > MaxLength): raise ParseError("F{0} is larger than maximum length ({1}>{2})".format(field, Len, MaxLength)) + # In case of zero length, don't t...
if length is zero don't try to parse the field because it might fail
diff --git a/src/Flex.php b/src/Flex.php index <HASH>..<HASH> 100644 --- a/src/Flex.php +++ b/src/Flex.php @@ -95,10 +95,10 @@ class Flex implements PluginInterface, EventSubscriberInterface } // to avoid issues when Flex is upgraded, we load all PHP classes now - // that way, we are sure to ...
Fix "Cannot declare class because the name is already in use" errors
diff --git a/lib/javaReflection.js b/lib/javaReflection.js index <HASH>..<HASH> 100644 --- a/lib/javaReflection.js +++ b/lib/javaReflection.js @@ -3,14 +3,35 @@ var java = require('java'), function getMethod(obj, methodName, paramsClass, callback) { var javaParamsClass = newClassArray(paramsClass); - var method ...
javaReflection library made Async
diff --git a/pyrtl/rtllib/muxes.py b/pyrtl/rtllib/muxes.py index <HASH>..<HASH> 100644 --- a/pyrtl/rtllib/muxes.py +++ b/pyrtl/rtllib/muxes.py @@ -189,9 +189,10 @@ def demux(select): return _demux_2(select) wires = demux(select[:-1]) - not_select = ~select + sel = select[-1] + not_select = ~sel...
Demultiplexor was making result wires with too many bits each
diff --git a/framework/core/src/Extend/Formatter.php b/framework/core/src/Extend/Formatter.php index <HASH>..<HASH> 100644 --- a/framework/core/src/Extend/Formatter.php +++ b/framework/core/src/Extend/Formatter.php @@ -21,7 +21,7 @@ class Formatter implements ExtenderInterface, LifecycleInterface { protected $cal...
Allow passing strings (names of invokable classes) to Formatter extender In preparation for fixing #<I>.
diff --git a/packages/cli/lib/lib/babel-config.js b/packages/cli/lib/lib/babel-config.js index <HASH>..<HASH> 100644 --- a/packages/cli/lib/lib/babel-config.js +++ b/packages/cli/lib/lib/babel-config.js @@ -36,7 +36,7 @@ module.exports = function (env, options = {}) { overrides: [ // Transforms to apply only to ...
Update packages/cli/lib/lib/babel-config.js
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,10 @@ from setuptools import setup,find_packages +import os + NAME = 'liveandletdie' +HERE = os.path.dirname(__file__) + setup( name=NAME, @@ -11,7 +15,7 @@ setup( author_email='peterhudec@peterhudec.c...
The readme path is now relative to setup.py location.
diff --git a/components/tree/node.js b/components/tree/node.js index <HASH>..<HASH> 100644 --- a/components/tree/node.js +++ b/components/tree/node.js @@ -1,8 +1,9 @@ let uniqueId = 0; +const prefix = '__$_'; export default class Node { static createNode = function(data, parent, tree, needRecheckNodes) { - ...
fix(Tree): avoid conflicting with custom number key, close #<I>
diff --git a/oled/emulator.py b/oled/emulator.py index <HASH>..<HASH> 100644 --- a/oled/emulator.py +++ b/oled/emulator.py @@ -130,7 +130,8 @@ class gifanim(emulator): with open(self._filename, "w+b") as fp: self._images[0].save(fp, save_all=True, loop=self._loop, ...
Set format=GIF when writing image sequences (affects Python <I>)
diff --git a/tools/c7n_org/c7n_org/cli.py b/tools/c7n_org/c7n_org/cli.py index <HASH>..<HASH> 100644 --- a/tools/c7n_org/c7n_org/cli.py +++ b/tools/c7n_org/c7n_org/cli.py @@ -47,7 +47,7 @@ from c7n.utils import UnicodeWriter log = logging.getLogger('c7n_org') -WORKER_COUNT = os.environ.get('C7N_ORG_PARALLEL', mult...
tools/c7n_org - fix worker count type when set via env var (#<I>)
diff --git a/src/TournamentsServiceProvider.php b/src/TournamentsServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/TournamentsServiceProvider.php +++ b/src/TournamentsServiceProvider.php @@ -29,7 +29,6 @@ class TournamentsServiceProvider extends ServiceProvider $router->post('/championships/{champi...
Apply fixes from StyleCI (#<I>)
diff --git a/androguard/core/bytecodes/apk.py b/androguard/core/bytecodes/apk.py index <HASH>..<HASH> 100644 --- a/androguard/core/bytecodes/apk.py +++ b/androguard/core/bytecodes/apk.py @@ -1767,17 +1767,14 @@ class ARSCParser(object): if header.type == RES_TABLE_TYPE_TYPE: ...
apk: build locale code properly
diff --git a/lib/coffeecup.js b/lib/coffeecup.js index <HASH>..<HASH> 100644 --- a/lib/coffeecup.js +++ b/lib/coffeecup.js @@ -40,7 +40,7 @@ elements = { html i iframe ins kbd label legend li map mark menu meter nav noscript object\ ol optgroup option output p pre progress q rp rt ruby s samp script section\ sele...
Added XML elements for sitemaps
diff --git a/src/GameEngine.js b/src/GameEngine.js index <HASH>..<HASH> 100644 --- a/src/GameEngine.js +++ b/src/GameEngine.js @@ -338,6 +338,8 @@ class GameEngine { */ removeObjectFromWorld(id) { let ob = this.world.objects[id]; + if (!ob) + throw new Error(`Game attempted to remo...
friendly error on double-remove
diff --git a/revproxy/utils.py b/revproxy/utils.py index <HASH>..<HASH> 100644 --- a/revproxy/utils.py +++ b/revproxy/utils.py @@ -19,7 +19,7 @@ HTML_CONTENT_TYPES = ( 'application/xhtml+xml' ) -MIN_STREAMING_LENGTH = 128 * 1024 # 128KB +MIN_STREAMING_LENGTH = 4 * 1024 # 4KB _get_charset_re = re.compile(...
Only stream if content-length > MIN_STREAMING_LENGTH
diff --git a/nanocomp/NanoComp.py b/nanocomp/NanoComp.py index <HASH>..<HASH> 100644 --- a/nanocomp/NanoComp.py +++ b/nanocomp/NanoComp.py @@ -153,7 +153,7 @@ def make_plots(df, settings): if "start_time" in df: plots.extend( compplots.compare_cumulative_yields( - df=sub_df, + ...
don't use subdf for cumulative yield and pores over time
diff --git a/package.php b/package.php index <HASH>..<HASH> 100644 --- a/package.php +++ b/package.php @@ -4,7 +4,7 @@ require_once 'PEAR/PackageFileManager2.php'; -$version = '1.4.132'; +$version = '1.4.133'; $notes = <<<EOT No release notes for you! EOT;
prepare for release of <I> svn commit r<I>
diff --git a/openquake/baselib/parallel.py b/openquake/baselib/parallel.py index <HASH>..<HASH> 100644 --- a/openquake/baselib/parallel.py +++ b/openquake/baselib/parallel.py @@ -772,7 +772,8 @@ class Starmap(object): self.sent = AccumDict(accum=AccumDict()) # fname -> argname -> nbytes self.monitor....
Using gethostname in the receiver URL
diff --git a/test/adapters/influxdb_test.rb b/test/adapters/influxdb_test.rb index <HASH>..<HASH> 100644 --- a/test/adapters/influxdb_test.rb +++ b/test/adapters/influxdb_test.rb @@ -1,9 +1,5 @@ require_relative "../test_helper" -# USE blazer_test -# DROP SERIES FROM items -# INSERT items,hello=world value=1 - clas...
Improved InfluxDB test [skip ci]
diff --git a/revive.js b/revive.js index <HASH>..<HASH> 100644 --- a/revive.js +++ b/revive.js @@ -2,30 +2,41 @@ var createKey = require('./createKey'), keyKey = createKey(-1); function revive(input){ - objects = {}; + var objects = {}, scannedObjects = []; function scan(input){ + ...
reviver is non-destuctive
diff --git a/nntp/nntp.py b/nntp/nntp.py index <HASH>..<HASH> 100644 --- a/nntp/nntp.py +++ b/nntp/nntp.py @@ -59,7 +59,7 @@ class NNTPReplyError(NNTPError): return self.args[1] def __str__(self): - return "%d: %s" % self.args + return "%d %s" % self.args class NNTPTemporaryError(NNTPRe...
Changed __str__ for NNTPReplyError It now matches the format of the original response i.e. theres no colon
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ setuptools.setup( url="https://github.com/ecmwf/cfgrib", packages=setuptools.find_packages(), include_package_data=True, - install_requires=["attrs>=19.2", "cffi", "click", "eccodes", "numpy"],...
Drop cffi from setup dependencies
diff --git a/examples/bookstore/bookstore.js b/examples/bookstore/bookstore.js index <HASH>..<HASH> 100644 --- a/examples/bookstore/bookstore.js +++ b/examples/bookstore/bookstore.js @@ -113,7 +113,7 @@ function createTabFolder() { createBooksList(books).appendTo(relatedTab); var commentsTab = tabris.create("Tab"...
Fix broken layout of bookstore demo The new TextView behaves different on iOS and Android. On iOS the text will be displayed vertically centered. Thus the bottom property of the TextView in the bookstore demo needs to be removed. Change-Id: Iba1d5a0c1dd<I>c<I>fb2bfb<I>e7f3ac3c<I>f3
diff --git a/lib/dbf/column/base.rb b/lib/dbf/column/base.rb index <HASH>..<HASH> 100644 --- a/lib/dbf/column/base.rb +++ b/lib/dbf/column/base.rb @@ -39,19 +39,6 @@ module DBF meth ? send(meth, value) : encode_string(value, true) end - def type_cast_methods - { - 'N' => :unpack_n...
make type_cast_methods private
diff --git a/lib/celerity/elements/table_row.rb b/lib/celerity/elements/table_row.rb index <HASH>..<HASH> 100644 --- a/lib/celerity/elements/table_row.rb +++ b/lib/celerity/elements/table_row.rb @@ -9,6 +9,7 @@ module Celerity def locate super @cells = @object.getCells if @object + @object ...
Make TableRow.locate conform with Element.locate.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,8 @@ 'use strict'; var childProcess = require('child_process'); -var execFileSync = childProcess.execFileSync; var lcid = require('lcid'); + +var execFileSync = childProcess.execFileSync; var defaultOpts = {spawn: ...
fix XO lint issue
diff --git a/response.go b/response.go index <HASH>..<HASH> 100644 --- a/response.go +++ b/response.go @@ -41,7 +41,6 @@ type GetInstanceResponse struct { type UpdateResponse struct { DashboardURL string `json:"dashboard_url,omitempty"` OperationData string `json:"operation,omitempty"` - DashboardURL string `jso...
Remove duplicated DashboardURL from struct definition [#<I>]
diff --git a/version/version.go b/version/version.go index <HASH>..<HASH> 100644 --- a/version/version.go +++ b/version/version.go @@ -25,7 +25,7 @@ import ( ) var ( - Version = "2.0.4+git" + Version = "2.1.0-alpha.0" ) // WalVersion is an enum for versions of etcd logs.
*: bump to <I>-alpha<I>
diff --git a/viewer.js b/viewer.js index <HASH>..<HASH> 100644 --- a/viewer.js +++ b/viewer.js @@ -127,7 +127,7 @@ // draw target if(this.target !== null){ - this._drawTarget(); + this._drawTarget(this.context); } }; @@ -145,9 +145,8 @@ this.dirty = true; }; - ImageViewer.prot...
changed context from local variable to parameter like in the other draw functions
diff --git a/resource/resourceadapters/opener.go b/resource/resourceadapters/opener.go index <HASH>..<HASH> 100644 --- a/resource/resourceadapters/opener.go +++ b/resource/resourceadapters/opener.go @@ -15,6 +15,9 @@ import ( // NewResourceOpener returns a new resource.Opener for the given unit. // +// The caller o...
resource/resourceadapters: Clarify State ownership
diff --git a/src/python/atomistica/io.py b/src/python/atomistica/io.py index <HASH>..<HASH> 100644 --- a/src/python/atomistica/io.py +++ b/src/python/atomistica/io.py @@ -80,7 +80,9 @@ def write(fn, a, **kwargs): if ext[0] == '.out' or ext[0] == '.dat': return write_atoms(fn, a) elif ext[0] == '.lamm...
Added NetCDF support to write function of atomistica.io.
diff --git a/lxd/storage/drivers/driver_dir.go b/lxd/storage/drivers/driver_dir.go index <HASH>..<HASH> 100644 --- a/lxd/storage/drivers/driver_dir.go +++ b/lxd/storage/drivers/driver_dir.go @@ -28,14 +28,15 @@ type dir struct { // Info returns info about the driver and its environment. func (d *dir) Info() Info { ...
lxd/storage/drivers/driver/dir: Defines dir driver needs freeze during snapshot
diff --git a/leveldb/db/batch.go b/leveldb/db/batch.go index <HASH>..<HASH> 100644 --- a/leveldb/db/batch.go +++ b/leveldb/db/batch.go @@ -18,6 +18,7 @@ import ( "encoding/binary" "io" "leveldb" + "leveldb/memdb" ) var ( @@ -53,6 +54,14 @@ func (b *Batch) Delete(key []byte) { b.kvSize += len(key) } +func...
fb: batch: introduce *Batch.Reset() and *Batch.memReplay() methods
diff --git a/test/feedforward_test.py b/test/feedforward_test.py index <HASH>..<HASH> 100644 --- a/test/feedforward_test.py +++ b/test/feedforward_test.py @@ -82,9 +82,8 @@ class TestWeightedClassifier(TestClassifier): def test_score_onelayer(self): net = self._build(13) - z = net.score(self.imag...
Make weights for test deterministic.
diff --git a/src/Query/Builder.php b/src/Query/Builder.php index <HASH>..<HASH> 100644 --- a/src/Query/Builder.php +++ b/src/Query/Builder.php @@ -171,7 +171,7 @@ class Builder extends \Illuminate\Database\Query\Builder { $name = $this->connection->getName(); - return md5($name.$this->toSql().ser...
Switch to sha<I> for the cache key
diff --git a/luigi/interface.py b/luigi/interface.py index <HASH>..<HASH> 100644 --- a/luigi/interface.py +++ b/luigi/interface.py @@ -27,6 +27,7 @@ import re import argparse import sys import os +import tempfile from task import Register @@ -79,7 +80,7 @@ class EnvironmentParamsContainer(task.Task): i...
Set default temp directory in a Windows friendly way. Using tempfile.gettempdir() makes sure that a proper temporary directory will be picked up with respect to os and even env variables like TMPDIR, TEMP, TMP etc. Fix #<I>
diff --git a/salt/pillar/nodegroups.py b/salt/pillar/nodegroups.py index <HASH>..<HASH> 100644 --- a/salt/pillar/nodegroups.py +++ b/salt/pillar/nodegroups.py @@ -1,8 +1,5 @@ -#!/usr/bin/env python # -*- coding: utf-8 -*- - ''' -================= Nodegroups Pillar =================
Remove overline from section title This causes a warning on newer Sphinx releases
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -45,7 +45,10 @@ module.exports = function (grunt) { } }, files: { - 'dist/fuelux.js': ['src/*.js', '!src/all.js'] + // manually concatenate JS files (due to dependency management) + ...
Manually ordered concatenated JS files in build process due to dependencies
diff --git a/src/TwigBridge/TwigServiceProvider.php b/src/TwigBridge/TwigServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/TwigBridge/TwigServiceProvider.php +++ b/src/TwigBridge/TwigServiceProvider.php @@ -10,7 +10,7 @@ use Twig_Lexer; class TwigServiceProvider extends ViewServiceProvider { - const VERS...
Bumped TwigBridge version number
diff --git a/aws/auth.go b/aws/auth.go index <HASH>..<HASH> 100644 --- a/aws/auth.go +++ b/aws/auth.go @@ -191,7 +191,9 @@ type iamProvider struct { var metadataCredentialsEndpoint = "http://169.254.169.254/latest/meta-data/iam/security-credentials/" -var client = http.Client{ +// IAMClient is the HTTP client used...
Expose IAM cred client. Closes #<I>.
diff --git a/ooxml/importer.py b/ooxml/importer.py index <HASH>..<HASH> 100644 --- a/ooxml/importer.py +++ b/ooxml/importer.py @@ -193,7 +193,11 @@ def get_chapters(doc): export_chapters.append(_serialize_chapter(doc.elements[:chapters[0]['index']-1])) for n in range(len(chapters)-1): - ...
BK-<I> Slicing elements according to header position fails
diff --git a/rsapi/auth.go b/rsapi/auth.go index <HASH>..<HASH> 100644 --- a/rsapi/auth.go +++ b/rsapi/auth.go @@ -362,7 +362,7 @@ func (a *ssAuthenticator) SetHost(host string) { a.host = host return } - elems[len(elems)-2] = strings.Replace(elems[len(elems)-2], "us", "selfservice", 1) + elems[len(elems)-2] = ...
Fix SS host substitution for SS minimoo hosts Not all endpoints use the 'us-3.rightscale.com' style host -- some minimoos in particular use ss2-moo-<I>.test.rightscale.com. This commit removes the assumption that there will be a 'us' substring in the login host. Fixes #<I>.
diff --git a/pandas/core/base.py b/pandas/core/base.py index <HASH>..<HASH> 100644 --- a/pandas/core/base.py +++ b/pandas/core/base.py @@ -753,7 +753,7 @@ class IndexOpsMixin: dtype : str or numpy.dtype, optional The dtype to pass to :meth:`numpy.asarray`. copy : bool, default False - ...
DOC/CLN: Fix to_numpy docstrings (#<I>)
diff --git a/pyjfuzz/core/pjf_mutators.py b/pyjfuzz/core/pjf_mutators.py index <HASH>..<HASH> 100644 --- a/pyjfuzz/core/pjf_mutators.py +++ b/pyjfuzz/core/pjf_mutators.py @@ -96,6 +96,7 @@ class PJFMutators(object): bool: self.boolean_mutator, int: self.int_mutator, float: self.fl...
fixed python <I> type and import issues
diff --git a/peyotl/phylesystem/git_workflows.py b/peyotl/phylesystem/git_workflows.py index <HASH>..<HASH> 100644 --- a/peyotl/phylesystem/git_workflows.py +++ b/peyotl/phylesystem/git_workflows.py @@ -40,7 +40,7 @@ def acquire_lock_raise(git_action, fail_msg=''): _LOG.debug(msg) raise GitWorkflowErr...
adding kwargs for max_num_tree arg
diff --git a/tests/test_analytics.py b/tests/test_analytics.py index <HASH>..<HASH> 100644 --- a/tests/test_analytics.py +++ b/tests/test_analytics.py @@ -77,7 +77,7 @@ class CookiePolicyTestCase(SimpleTestCase): @modify_settings( MIDDLEWARE={ - 'append': 'tests.utils.AcceptCookiePolicyMiddle...
Rename a middleware class to make it clear that it's only for testing purposes
diff --git a/client/js/shout.js b/client/js/shout.js index <HASH>..<HASH> 100644 --- a/client/js/shout.js +++ b/client/js/shout.js @@ -374,7 +374,7 @@ $(function() { }); chan.css({ transition: "none", - opacity: .4 + opacity: 0.4 }); return false; });
Don't use bare fractions
diff --git a/opentrons/instruments/pipette.py b/opentrons/instruments/pipette.py index <HASH>..<HASH> 100644 --- a/opentrons/instruments/pipette.py +++ b/opentrons/instruments/pipette.py @@ -297,15 +297,11 @@ class Pipette(Instrument): self.current_tip_home_well = location - # TODO: actual p...
modified pick_up_tip to assume .bottom() is the point of contact
diff --git a/lib/coverage.js b/lib/coverage.js index <HASH>..<HASH> 100644 --- a/lib/coverage.js +++ b/lib/coverage.js @@ -37,7 +37,7 @@ function jscoverageFromIstanbulCoverage(coverage) { jscov[filename]['source'] = fs.readFileSync(file).toString().split('\n'); for (var line = 0; line < jscov[filename]['so...
Clean up coverage display for HTML reporter Pro: - HTML view of code coverage shows only lines that Istanbul actually instruments. Con: - This change alters the figures reported. A <I>-line file with many comments, for example, may appear as though it only has <I> lines.
diff --git a/examples/test_ffi_struct.rb b/examples/test_ffi_struct.rb index <HASH>..<HASH> 100644 --- a/examples/test_ffi_struct.rb +++ b/examples/test_ffi_struct.rb @@ -2,28 +2,18 @@ require 'ffi' require 'forwardable' module Blub - class Struct < FFI::Struct - class << self - def find_type(type, mod = n...
Stop overriding find_type. This is not compatible with ffi's master, nor with jruby's ffi. Probably also not with rubinius' ffi, once that works with nested structs again.
diff --git a/src/Symfony/Component/Workflow/Workflow.php b/src/Symfony/Component/Workflow/Workflow.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Workflow/Workflow.php +++ b/src/Symfony/Component/Workflow/Workflow.php @@ -22,7 +22,7 @@ use Symfony\Component\Workflow\Exception\LogicException; use Symfony\C...
[Workflow] Fixed default marking store value of Workflow
diff --git a/src/Pool.php b/src/Pool.php index <HASH>..<HASH> 100644 --- a/src/Pool.php +++ b/src/Pool.php @@ -471,7 +471,12 @@ class Pool implements PoolInterface, ProducerInterface, ContainerAccessInterface $return_by_value = $type; } - return $this->connection->advancedExec...
Set container to result instance when doing advanced execute
diff --git a/polyaxon_client/client.py b/polyaxon_client/client.py index <HASH>..<HASH> 100644 --- a/polyaxon_client/client.py +++ b/polyaxon_client/client.py @@ -29,7 +29,7 @@ class PolyaxonClient(object): port=None, http_port=None, ws_port=None, - ...
Fix issue detecting correct https config
diff --git a/core/server/proxy/src/main/java/alluxio/proxy/s3/S3RestServiceHandler.java b/core/server/proxy/src/main/java/alluxio/proxy/s3/S3RestServiceHandler.java index <HASH>..<HASH> 100644 --- a/core/server/proxy/src/main/java/alluxio/proxy/s3/S3RestServiceHandler.java +++ b/core/server/proxy/src/main/java/alluxio/...
Fix wrong owner when creating directory object in S3 API pr-link: Alluxio/alluxio#<I> change-id: cid-e<I>ba7db<I>c<I>c<I>e<I>
diff --git a/shell/expand.go b/shell/expand.go index <HASH>..<HASH> 100644 --- a/shell/expand.go +++ b/shell/expand.go @@ -15,6 +15,8 @@ import ( // ${#var}, but also to arithmetic expansions like $((var + 3)), and // command substitutions like $(echo foo). // +// If env is nil, the current environment variables are...
shell: clarify that Expand(s, nil) is a valid use
diff --git a/examples/example_run_manager/example_run_manager.py b/examples/example_run_manager/example_run_manager.py index <HASH>..<HASH> 100644 --- a/examples/example_run_manager/example_run_manager.py +++ b/examples/example_run_manager/example_run_manager.py @@ -52,9 +52,9 @@ if __name__ == "__main__": for del...
MAINT: adding some comment to avoid confusion
diff --git a/angular-file-upload.js b/angular-file-upload.js index <HASH>..<HASH> 100644 --- a/angular-file-upload.js +++ b/angular-file-upload.js @@ -1,7 +1,7 @@ /**! * AngularJS file upload directive and http post * @author Danial <danial.farid@gmail.com> - * @version 0.1.3 + * @version 0.1.4 */ var angular...
Update angular-file-upload.js Updated the version number
diff --git a/src/components/tabs/js/tabDirective.js b/src/components/tabs/js/tabDirective.js index <HASH>..<HASH> 100644 --- a/src/components/tabs/js/tabDirective.js +++ b/src/components/tabs/js/tabDirective.js @@ -67,12 +67,11 @@ function MdTab () { label = angular.element('<md-tab-label></md-tab-label>'); ...
fix(tabs): adds proper detection for bodyless tabs Closes #<I>
diff --git a/src/Panda/Contracts/Bootstrap/BootLoader.php b/src/Panda/Contracts/Bootstrap/BootLoader.php index <HASH>..<HASH> 100644 --- a/src/Panda/Contracts/Bootstrap/BootLoader.php +++ b/src/Panda/Contracts/Bootstrap/BootLoader.php @@ -24,5 +24,5 @@ interface BootLoader * * @param Request $request ...
[Contracts] Set request to be nullable in BootLoader::boot() This setting allows mocking and testing without mocking a request
diff --git a/unsafe/src/main/java/org/apache/spark/unsafe/map/BytesToBytesMap.java b/unsafe/src/main/java/org/apache/spark/unsafe/map/BytesToBytesMap.java index <HASH>..<HASH> 100644 --- a/unsafe/src/main/java/org/apache/spark/unsafe/map/BytesToBytesMap.java +++ b/unsafe/src/main/java/org/apache/spark/unsafe/map/BytesT...
[SPARK-<I>] isDefined should not marked too early in putNewKey JIRA: <URL>
diff --git a/src/css.js b/src/css.js index <HASH>..<HASH> 100644 --- a/src/css.js +++ b/src/css.js @@ -15,7 +15,7 @@ var ralpha = /alpha\([^)]*\)/i, // order is important! cssExpand = jQuery.cssExpand, - cssPrefixes = [ "O", "Webkit", "Moz", "ms" ], + cssPrefixes = [ "Webkit", "O", "Moz", "ms" ], curCSS;
Opera announced they will start supporting the -webkit- prefix for a selected set of css properties. Let's put the inspection of -webkit- prefix properties as the last one in case this propagates to the style object and/or other browsers (the cssPrefixes array is inspected from right to left).
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,6 @@ if len(argv) > 1 and argv[1] != "sdist": # PyPI doesn't like raw html with open("README.rst", encoding="UTF-8") as f: readme = re.sub(r"\.\. \|.+\| raw:: html(?:\s{4}.+)+\n\n", "", f.read()) - readme =...
Fix logo not showing up on PyPI website
diff --git a/lib/core/manager.rb b/lib/core/manager.rb index <HASH>..<HASH> 100644 --- a/lib/core/manager.rb +++ b/lib/core/manager.rb @@ -138,6 +138,8 @@ class Manager :event => :regex, # Utility :template => :json, # Utility :translator => :json ...
Allowing for dynamic definition of namsapaces and types after core in the plugin manager reload method.
diff --git a/contribs/gmf/src/directives/search.js b/contribs/gmf/src/directives/search.js index <HASH>..<HASH> 100644 --- a/contribs/gmf/src/directives/search.js +++ b/contribs/gmf/src/directives/search.js @@ -566,6 +566,7 @@ gmf.SearchController.prototype.createAndInitBloodhound_ = function(config, gmf.SearchControl...
Move the rateLimitWait option from ngeo to gmf
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ with open('requirements.txt') as f: setup( name='rip', - version='0.0.92', + version='0.0.93', description='A python framework for writing restful APIs.', long_description=readme + '\n\n'...
Bump up version to <I>
diff --git a/command/agent/consul/syncer.go b/command/agent/consul/syncer.go index <HASH>..<HASH> 100644 --- a/command/agent/consul/syncer.go +++ b/command/agent/consul/syncer.go @@ -319,9 +319,14 @@ func (c *Syncer) Shutdown() error { cr.Stop() } - // De-register all the services from consul - for _, service :=...
On Syncer Shutdown, remove all services that match a Syncer's prefix.
diff --git a/builtin/providers/google/image.go b/builtin/providers/google/image.go index <HASH>..<HASH> 100644 --- a/builtin/providers/google/image.go +++ b/builtin/providers/google/image.go @@ -49,7 +49,7 @@ func resolveImageFamilyExists(c *Config, project, name string) (bool, error) { func sanityTestRegexMatches(e...
Update typo. We never updated the error to use the expectation, not hardcode it to 2.
diff --git a/test/index.js b/test/index.js index <HASH>..<HASH> 100644 --- a/test/index.js +++ b/test/index.js @@ -6,6 +6,7 @@ var format = require('../lib'); var testDate = new Date(Date.UTC(2012, 11, 14, 13, 6, 43, 152)); var testArray = [ 'abc', 1, true, null, testDate ]; +var testIdentArray = [ 'abc', 'AbC', 1,...
Update tests to match support for identifier arrays.
diff --git a/boards.js b/boards.js index <HASH>..<HASH> 100644 --- a/boards.js +++ b/boards.js @@ -5,7 +5,7 @@ var boards = { pageSize: 128, numPages: 256, timeout: 400, - productId: ['0x0043', '0x7523'], + productId: ['0x0043', '0x7523','0x0001'], protocol: 'stk500v1' }, 'micro': {
Added new ProductID in "uno" for Freduino UNO compatibility
diff --git a/cors.go b/cors.go index <HASH>..<HASH> 100644 --- a/cors.go +++ b/cors.go @@ -13,6 +13,7 @@ type Config struct { AllowAllOrigins bool // AllowedOrigins is a list of origins a cross-domain request can be executed from. + // If the special "*" value is present in the list, all origins will be allowed. ...
undo comments, cross support for wildcard origin
diff --git a/src/wtf/db/eventiterator.js b/src/wtf/db/eventiterator.js index <HASH>..<HASH> 100644 --- a/src/wtf/db/eventiterator.js +++ b/src/wtf/db/eventiterator.js @@ -13,6 +13,7 @@ goog.provide('wtf.db.EventIterator'); +goog.require('goog.asserts'); goog.require('wtf.data.EventFlag'); goog.require('wtf.db.Ev...
Asserting and handling better a broken case of event data. Issue #<I> filed to track it.
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -99,7 +99,7 @@ master_doc = 'index' # General information about the project. project = 'MetPy' # noinspection PyShadowingBuiltins -copyright = (f'{cur_date:%Y}-2020, MetPy Developers. ' +copyright = (f'2008\...
DOC: Fix copyright range (Fixes #<I>) Somehow we replace the origination year instead of the final year in 2e3f<I>. Also use the right Unicode character for the range.
diff --git a/test/e2e/dns.go b/test/e2e/dns.go index <HASH>..<HASH> 100644 --- a/test/e2e/dns.go +++ b/test/e2e/dns.go @@ -321,10 +321,10 @@ var _ = framework.KubeDescribe("DNS", func() { "kubernetes.default", "kubernetes.default.svc", "kubernetes.default.svc.cluster.local", - "google.com", } // Add...
Add google.com to e2e test only under gce/gke We should limit the lookup/resolve for google.com when provider is gce or gke. We should be able to run the test in environments where this is not allowed or not available.
diff --git a/tests/Support/SupportClassLoaderTest.php b/tests/Support/SupportClassLoaderTest.php index <HASH>..<HASH> 100644 --- a/tests/Support/SupportClassLoaderTest.php +++ b/tests/Support/SupportClassLoaderTest.php @@ -27,12 +27,11 @@ class SupportClassLoaderTest extends PHPUnit_Framework_TestCase { $php53Class ...
Tweaking the autoloader test to not actually autoload but test the load() method works as expected.
diff --git a/imagemounter/__init__.py b/imagemounter/__init__.py index <HASH>..<HASH> 100644 --- a/imagemounter/__init__.py +++ b/imagemounter/__init__.py @@ -6,7 +6,7 @@ __version__ = '1.5.1' BLOCK_SIZE = 512 VOLUME_SYSTEM_TYPES = ('detect', 'dos', 'bsd', 'sun', 'mac', 'gpt', 'dbfiller') -FILE_SYSTEM_TYPES = ('ext...
Update __init__.py Adder xfs to known file systems
diff --git a/hs_restclient/__init__.py b/hs_restclient/__init__.py index <HASH>..<HASH> 100644 --- a/hs_restclient/__init__.py +++ b/hs_restclient/__init__.py @@ -122,6 +122,8 @@ class HydroShare(object): self.url_base = self._URL_PROTO_WITHOUT_PORT.format(scheme=self.scheme, ...
getResourceTypes() now returns a set rather than a list getResourceTypes() is now called by the HydroShare constructor
diff --git a/lib/charlotte.js b/lib/charlotte.js index <HASH>..<HASH> 100755 --- a/lib/charlotte.js +++ b/lib/charlotte.js @@ -2200,7 +2200,7 @@ _.each([browser.onBack, tab.onBack, onBack], function(onBack) { if (onBack && onBack.callback) { onBackCallbackSeries.push(f...
set page as `this` when calling onBack callbacks
diff --git a/jspdf.js b/jspdf.js index <HASH>..<HASH> 100644 --- a/jspdf.js +++ b/jspdf.js @@ -1688,18 +1688,6 @@ function jsPDF(/** String */ orientation, /** String */ unit, /** String */ form return buildDocument(); case 'save': - // If Safari - fallback to Data URL, sorry there's no way to feature det...
Replaced call to BlobBuilder with call to Blob [File API]
diff --git a/lib/parser.js b/lib/parser.js index <HASH>..<HASH> 100644 --- a/lib/parser.js +++ b/lib/parser.js @@ -135,6 +135,9 @@ Parser.prototype = { this.context(parser); var ast = parser.parse(); this.context(); + // hoist mixins + for (var name in this.mixins) + ast.unshift(th...
Make mixins available if defined in the same file as `extends`
diff --git a/network.go b/network.go index <HASH>..<HASH> 100644 --- a/network.go +++ b/network.go @@ -1181,7 +1181,8 @@ func (n *network) createEndpoint(name string, options ...EndpointOption) (Endpoi ep.locator = n.getController().clusterHostID() ep.network, err = ep.getNetworkFromStore() if err != nil { - ret...
Fix 'failed to get network during CreateEndpoint' Fix 'failed to get network during CreateEndpoint' during container starting. Change the error type to `libnetwork.ErrNoSuchNetwork`, so `Start()` in `daemon/cluster/executor/container/controller.go` will recreate the network.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -155,6 +155,7 @@ icescrum.getAllStories = function(params, callback) { }; var req = http.request(options, function(result) { + var responseParts = []; result.setEncoding('utf8'); result.on(...
The get all stories API returns the result in multiple chunks, the wrapper returns it (now) as a whole.
diff --git a/setup-jottacloudclient.py b/setup-jottacloudclient.py index <HASH>..<HASH> 100644 --- a/setup-jottacloudclient.py +++ b/setup-jottacloudclient.py @@ -53,7 +53,8 @@ setup(name='jottacloudclient', ], # see https://pythonhosted.org/setuptools/setuptools.html#declaring-extras-op...
Adding dependencies to fast cache and xattr .. for faster and smarter code
diff --git a/tests/unit/src/RunnerTest.php b/tests/unit/src/RunnerTest.php index <HASH>..<HASH> 100644 --- a/tests/unit/src/RunnerTest.php +++ b/tests/unit/src/RunnerTest.php @@ -150,8 +150,9 @@ class RunnerTest extends PHPUnit_Framework_TestCase { } public function testErrorsSilencedWhenErrorReportingOff()...
Skipping a test for HHVM.
diff --git a/Model/TaskServer.php b/Model/TaskServer.php index <HASH>..<HASH> 100644 --- a/Model/TaskServer.php +++ b/Model/TaskServer.php @@ -159,6 +159,9 @@ class TaskServer extends TaskModel { return; } $statistics = array_values(array_filter(preg_split('/\s+/', `ps -o '%mem,%cpu,stat' --ppid {$task['proce...
Fix getting statistics caused different execution handler on different OS #<I>
diff --git a/lib/grunt/tasks/release.js b/lib/grunt/tasks/release.js index <HASH>..<HASH> 100644 --- a/lib/grunt/tasks/release.js +++ b/lib/grunt/tasks/release.js @@ -23,7 +23,7 @@ var path = require("path"), // remove redundancies in css filenames fs.renameSync(path.join(paths.dist, "lib/fine-uploade...
feat(build): better name for modern row-layout stylesheet Only used in new lib directory. #<I>
diff --git a/remodel/connection.py b/remodel/connection.py index <HASH>..<HASH> 100644 --- a/remodel/connection.py +++ b/remodel/connection.py @@ -10,16 +10,26 @@ from .utils import Counter class Connection(object): - def __init__(self, db='test', host='localhost', port=28015, auth_key=''): + def __init__(se...
Support for RethinkDB <I>'s new user model
diff --git a/lib/frontend/rest-adaptor.js b/lib/frontend/rest-adaptor.js index <HASH>..<HASH> 100644 --- a/lib/frontend/rest-adaptor.js +++ b/lib/frontend/rest-adaptor.js @@ -1,3 +1,5 @@ +var debug = require('../debug'); + var model = require('../model'); var defaultCommands = require('./default-commands/rest'); @@...
rest-adaptor: add debug logs
diff --git a/ghost/admin/controllers/modals/leave-editor.js b/ghost/admin/controllers/modals/leave-editor.js index <HASH>..<HASH> 100644 --- a/ghost/admin/controllers/modals/leave-editor.js +++ b/ghost/admin/controllers/modals/leave-editor.js @@ -50,7 +50,7 @@ var LeaveEditorController = Ember.Controller.extend({ ...
Change text on leave modal cancel button issue #<I>
diff --git a/src/api/center.js b/src/api/center.js index <HASH>..<HASH> 100644 --- a/src/api/center.js +++ b/src/api/center.js @@ -1,8 +1,8 @@ const toArray = require('../core/utils/toArray') -/** +/** NOTE: this is not functional YET !! * centers the given object(s) on the given axis - * @param {[Object]} object(...
fix(docstring): fixed a few bad docstrings which prevented docs from being generated (#<I>)
diff --git a/filer/server/urls.py b/filer/server/urls.py index <HASH>..<HASH> 100644 --- a/filer/server/urls.py +++ b/filer/server/urls.py @@ -1,5 +1,5 @@ #-*- coding: utf-8 -*- -from django.conf.urls import patterns, url, include +from django.conf.urls.defaults import patterns, url, include from filer import setting...
fix url import to work in django<<I>
diff --git a/src/values/PrimitiveValue.js b/src/values/PrimitiveValue.js index <HASH>..<HASH> 100644 --- a/src/values/PrimitiveValue.js +++ b/src/values/PrimitiveValue.js @@ -27,11 +27,11 @@ class PrimitiveValue extends Value { return out; } - *get(what, realm) { - return yield * this.derivePrototype(realm).get...
PrimitiveValue: remove duplicated `get` method
diff --git a/lib/chef/provider/package/aix.rb b/lib/chef/provider/package/aix.rb index <HASH>..<HASH> 100644 --- a/lib/chef/provider/package/aix.rb +++ b/lib/chef/provider/package/aix.rb @@ -60,6 +60,7 @@ class Chef @new_resource.version(fields[2]) end end + ...
Raise exception if a package provided by 'source' doesn't actually provide that package
diff --git a/tests/HtmlHeadingNormalizerTest.php b/tests/HtmlHeadingNormalizerTest.php index <HASH>..<HASH> 100644 --- a/tests/HtmlHeadingNormalizerTest.php +++ b/tests/HtmlHeadingNormalizerTest.php @@ -128,6 +128,7 @@ class HtmlHeadingNormalizerTest extends \PHPUnit_Framework_TestCase public function minSimpleHtm...
Added test case where no headings exists in HTML.
diff --git a/src/algoliasearch.helper.js b/src/algoliasearch.helper.js index <HASH>..<HASH> 100644 --- a/src/algoliasearch.helper.js +++ b/src/algoliasearch.helper.js @@ -1268,7 +1268,7 @@ AlgoliaSearchHelper.prototype.getClient = function() { * is `SearchParameters -> SearchParameters`. * * This method returns a...
doc(derivation): Fix typo (fix #<I>) DerivedHelper fires `result` event, not `results`.