diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/packer/new_stuff.go b/packer/new_stuff.go index <HASH>..<HASH> 100644 --- a/packer/new_stuff.go +++ b/packer/new_stuff.go @@ -9,7 +9,8 @@ type GetBuildsOptions struct { } type BuildGetter interface { - // GetBuilds return all possible builds for a config. It also starts them. + // GetBuilds return all ...
Update new_stuff.go
diff --git a/lib/heroku/pg_resolver.rb b/lib/heroku/pg_resolver.rb index <HASH>..<HASH> 100644 --- a/lib/heroku/pg_resolver.rb +++ b/lib/heroku/pg_resolver.rb @@ -36,7 +36,7 @@ module PGResolver end resolver = Resolver.new(db_id, config_vars) - display resolver.message + display(resolver.message) if r...
cleanup pg resolver message printing for consistency
diff --git a/Query/Builder.php b/Query/Builder.php index <HASH>..<HASH> 100755 --- a/Query/Builder.php +++ b/Query/Builder.php @@ -947,7 +947,7 @@ class Builder { */ public function offset($value) { - $this->offset = $value > 0 ? $value : 0; + $this->offset = max(0, $value); return $this; }
Use max() instead of ternary in DB offset.
diff --git a/Lib/ufo2ft/outlineCompiler.py b/Lib/ufo2ft/outlineCompiler.py index <HASH>..<HASH> 100644 --- a/Lib/ufo2ft/outlineCompiler.py +++ b/Lib/ufo2ft/outlineCompiler.py @@ -1474,7 +1474,16 @@ class OutlineTTFCompiler(BaseOutlineCompiler, InstructionCompiler): hmtx = self.otf.get("hmtx") ttGlyp...
Compile simple glyphs first to avoid missing base glyphs in composites
diff --git a/src/Assetic/Filter/Yui/BaseCompressorFilter.php b/src/Assetic/Filter/Yui/BaseCompressorFilter.php index <HASH>..<HASH> 100644 --- a/src/Assetic/Filter/Yui/BaseCompressorFilter.php +++ b/src/Assetic/Filter/Yui/BaseCompressorFilter.php @@ -80,7 +80,7 @@ abstract class BaseCompressorFilter implements FilterIn...
Ensure uniqueness of temporary files created by the compressor filter. Fixed #<I>
diff --git a/scapy/arch/__init__.py b/scapy/arch/__init__.py index <HASH>..<HASH> 100644 --- a/scapy/arch/__init__.py +++ b/scapy/arch/__init__.py @@ -28,7 +28,8 @@ except ImportError: def str2mac(s): - return ("%02x:"*6)[:-1] % tuple(map(ord, s)) + #return ("%02x:"*6)[:-1] % tuple(map(ord, s)) + return...
Fixed setting src mac address
diff --git a/Utilities/Clock.php b/Utilities/Clock.php index <HASH>..<HASH> 100644 --- a/Utilities/Clock.php +++ b/Utilities/Clock.php @@ -6,6 +6,7 @@ namespace Ouzo\Utilities; use DateTime; +use DateTimeZone; /** * Class Clock @@ -186,4 +187,10 @@ class Clock { return $this->getTimestamp() < $ot...
Added setTimezone to Clock.
diff --git a/src/main/java/org/mythtv/services/api/frontend/impl/FrontendTemplate.java b/src/main/java/org/mythtv/services/api/frontend/impl/FrontendTemplate.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/mythtv/services/api/frontend/impl/FrontendTemplate.java +++ b/src/main/java/org/mythtv/services/api/front...
removed Log reference from code. Log is specific to Android and this library is intended not to be tied to android specifically.
diff --git a/lib/outputcomponents.php b/lib/outputcomponents.php index <HASH>..<HASH> 100644 --- a/lib/outputcomponents.php +++ b/lib/outputcomponents.php @@ -2342,9 +2342,13 @@ class custom_menu extends custom_menu_item { if (preg_match('/^(\-*)/', $line, $match) && $lastchild != null && $lastdepth !== nu...
output-custommenu MDL-<I> Fixed up the processing of the custom menu removing the hard-coded single step down
diff --git a/cmd/web-handlers.go b/cmd/web-handlers.go index <HASH>..<HASH> 100644 --- a/cmd/web-handlers.go +++ b/cmd/web-handlers.go @@ -471,7 +471,7 @@ func (web *webAPIHandlers) ListObjects(r *http.Request, args *ListObjectsArgs, r AccountName: claims.Subject, Action: iampolicy.ListBucketAction...
Make sure to pass the right username for correct ConditionValues (#<I>) Without passing proper username value would result in AccessDenied errors when policies with `{aws:username}` substitutions are used. Fixes #<I>
diff --git a/loggers.go b/loggers.go index <HASH>..<HASH> 100644 --- a/loggers.go +++ b/loggers.go @@ -13,7 +13,11 @@ type IoLogger struct { } func (l *IoLogger) Log(data Data) error { - _, err := l.stream.Write(l.BuildLog(data)) + return l.Write(l.BuildLog(data)) +} + +func (l *IoLogger) Write(data []byte) err { +...
expose how an IoLogger writes to the stream
diff --git a/search/actions/getSearchResults.js b/search/actions/getSearchResults.js index <HASH>..<HASH> 100644 --- a/search/actions/getSearchResults.js +++ b/search/actions/getSearchResults.js @@ -6,6 +6,7 @@ */ import { ITEMS_PER_LOAD } from '@shopgate/pwa-common/constants/DisplayOptions'; +import { getSortOrde...
CON-<I>: fixed missing sort order in product search pipeline requests
diff --git a/src/Select.js b/src/Select.js index <HASH>..<HASH> 100644 --- a/src/Select.js +++ b/src/Select.js @@ -537,7 +537,7 @@ const Select = React.createClass({ if (options && options.length) { let Option = this.props.optionComponent; let renderLabel = this.props.optionRenderer || this.getOptionLabel; -...
Prevent duplicate react keys when multiple options have the same value Ref #<I>
diff --git a/etc/MelisDemoCms/src/MelisDemoCms/Controller/MelisSetupPostDownloadController.php b/etc/MelisDemoCms/src/MelisDemoCms/Controller/MelisSetupPostDownloadController.php index <HASH>..<HASH> 100755 --- a/etc/MelisDemoCms/src/MelisDemoCms/Controller/MelisSetupPostDownloadController.php +++ b/etc/MelisDemoCms/sr...
fixed error duplicate site-entry during installation
diff --git a/tests/CommandBus/SimpleCommandBusTest.php b/tests/CommandBus/SimpleCommandBusTest.php index <HASH>..<HASH> 100644 --- a/tests/CommandBus/SimpleCommandBusTest.php +++ b/tests/CommandBus/SimpleCommandBusTest.php @@ -47,13 +47,10 @@ class SimpleCommandBusTest extends \PHPUnit_Framework_TestCase * @test ...
Minor SimpleCommandBus test improvement. - Renamed method to be more accurate - Removed unneeded execute call
diff --git a/lib/tocer/rake/tasks.rb b/lib/tocer/rake/tasks.rb index <HASH>..<HASH> 100644 --- a/lib/tocer/rake/tasks.rb +++ b/lib/tocer/rake/tasks.rb @@ -1,6 +1,7 @@ # frozen_string_literal: true require "rake" +require "tocer" module Tocer module Rake
Fixed rake task requirements. Necessary for dependent gems/projects to load these tasks and not hit runtime issues with gem dependencies not loaded (i.e. `Runner` and other objects).
diff --git a/pythonforandroid/recipes/hostpython3/__init__.py b/pythonforandroid/recipes/hostpython3/__init__.py index <HASH>..<HASH> 100644 --- a/pythonforandroid/recipes/hostpython3/__init__.py +++ b/pythonforandroid/recipes/hostpython3/__init__.py @@ -6,7 +6,7 @@ import sh class Hostpython3Recipe(Recipe): - ...
Updated python3 recipe target version to <I>
diff --git a/lib/podio/models/app_store_share.rb b/lib/podio/models/app_store_share.rb index <HASH>..<HASH> 100644 --- a/lib/podio/models/app_store_share.rb +++ b/lib/podio/models/app_store_share.rb @@ -12,18 +12,17 @@ class Podio::AppStoreShare < ActivePodio::Base property :integration, :string property :categor...
Added find_all_by_reference method to AppStoreShare model
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name = "pyapi-gitlab", - version = "6.1-2", + version = "6.1-4", packages = find_packages(), install_requires = ['requests', 'markdown'], ...
upped pypi version to <I>-4
diff --git a/config/environments/development.rb b/config/environments/development.rb index <HASH>..<HASH> 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -27,6 +27,8 @@ Cortex::Application.configure do # number of complex assets. config.assets.debug = true + config.c...
Use Redis caching in dev
diff --git a/prototypes/examples/ipnbdoctest.py b/prototypes/examples/ipnbdoctest.py index <HASH>..<HASH> 100755 --- a/prototypes/examples/ipnbdoctest.py +++ b/prototypes/examples/ipnbdoctest.py @@ -273,7 +273,7 @@ def test_notebook(nb, generate_png_diffs=True): sys.stdout.write('S') ...
removed re.IGNORECASE
diff --git a/lib/sgr.js b/lib/sgr.js index <HASH>..<HASH> 100644 --- a/lib/sgr.js +++ b/lib/sgr.js @@ -43,14 +43,10 @@ sgr.mods = mods; , onlyKey = require('es5-ext/object/first-key') , uniq = require('es5-ext/array/#/uniq.js'); - sgr.toModPair = function (mod) { - return mod[onlyKey(mod)]; - }; - var open...
get rid of modPair fn.
diff --git a/java/client/test/org/openqa/selenium/CookieImplementationTest.java b/java/client/test/org/openqa/selenium/CookieImplementationTest.java index <HASH>..<HASH> 100644 --- a/java/client/test/org/openqa/selenium/CookieImplementationTest.java +++ b/java/client/test/org/openqa/selenium/CookieImplementationTest.ja...
[java] Changing @Ignore to @NotYetImplemented for some non-destructive failures
diff --git a/lib/generamba/code_generation/content_generator.rb b/lib/generamba/code_generation/content_generator.rb index <HASH>..<HASH> 100755 --- a/lib/generamba/code_generation/content_generator.rb +++ b/lib/generamba/code_generation/content_generator.rb @@ -22,7 +22,9 @@ module Generamba 'name' => code_modul...
Added info about project and test targets to content generator (Issue #<I>)
diff --git a/wafer/static/js/edit_schedule.js b/wafer/static/js/edit_schedule.js index <HASH>..<HASH> 100644 --- a/wafer/static/js/edit_schedule.js +++ b/wafer/static/js/edit_schedule.js @@ -75,6 +75,21 @@ var newItem = document.querySelectorAll('[id=scheduleItemnull]')[0]; newItem.id = 'scheduleIte...
Plug a close button back onto newly dropped items in the schedule
diff --git a/lib/locabulary.rb b/lib/locabulary.rb index <HASH>..<HASH> 100644 --- a/lib/locabulary.rb +++ b/lib/locabulary.rb @@ -3,7 +3,7 @@ require 'json' # @since 0.1.0 module Locabulary - VERSION='0.1.4'.freeze + VERSION='0.1.5'.freeze DATA_DIRECTORY = File.expand_path("../../data/", __FILE__).freeze ...
Bumping to version <I>
diff --git a/guacamole/src/main/frontend/src/app/rest/services/patchService.js b/guacamole/src/main/frontend/src/app/rest/services/patchService.js index <HASH>..<HASH> 100644 --- a/guacamole/src/main/frontend/src/app/rest/services/patchService.js +++ b/guacamole/src/main/frontend/src/app/rest/services/patchService.js @...
GUACAMOLE-<I>: Stop including the auth token when making requests to the /api/patches endpoint.
diff --git a/store.go b/store.go index <HASH>..<HASH> 100644 --- a/store.go +++ b/store.go @@ -368,7 +368,7 @@ func (i *itemLoc) read(o *Store, withValue bool) (err error) { if loc.isEmpty() { return nil } - b := make([]byte, loc.Length) + b := make([]byte, loc.Length) // TODO: Read less when not withValue....
TODO comment on withValue optimization.
diff --git a/aa_composer.js b/aa_composer.js index <HASH>..<HASH> 100644 --- a/aa_composer.js +++ b/aa_composer.js @@ -853,6 +853,8 @@ function handleTrigger(conn, batch, trigger, stateVars, arrDefinition, address, } function handleSuccessfulEmptyResponseUnit() { + if (!objStateUpdate) + return bounce("no sta...
bounce when there would be no messages and no state changes
diff --git a/src/Exceptions/Handlers/ExceptionHandler.php b/src/Exceptions/Handlers/ExceptionHandler.php index <HASH>..<HASH> 100644 --- a/src/Exceptions/Handlers/ExceptionHandler.php +++ b/src/Exceptions/Handlers/ExceptionHandler.php @@ -86,6 +86,10 @@ abstract class ExceptionHandler // Make sure we handle ...
Disabled shutdown function execution if exception trapping is turned off
diff --git a/server/src/main/java/io/atomix/copycat/server/state/ClusterState.java b/server/src/main/java/io/atomix/copycat/server/state/ClusterState.java index <HASH>..<HASH> 100644 --- a/server/src/main/java/io/atomix/copycat/server/state/ClusterState.java +++ b/server/src/main/java/io/atomix/copycat/server/state/Clu...
Ensure server transitions to RESERVE upon join.
diff --git a/src/webroot/cms/media-library/medialibrary/MedialibraryAction.php b/src/webroot/cms/media-library/medialibrary/MedialibraryAction.php index <HASH>..<HASH> 100644 --- a/src/webroot/cms/media-library/medialibrary/MedialibraryAction.php +++ b/src/webroot/cms/media-library/medialibrary/MedialibraryAction.php @...
Fixed media library creating folders with empty name
diff --git a/liquibase-core/src/main/java/liquibase/integration/commandline/Main.java b/liquibase-core/src/main/java/liquibase/integration/commandline/Main.java index <HASH>..<HASH> 100644 --- a/liquibase-core/src/main/java/liquibase/integration/commandline/Main.java +++ b/liquibase-core/src/main/java/liquibase/integra...
We do not need to connect to the DB for registerChangeLog even if there is a URL specified LB-<I>
diff --git a/examples/module-native/test.js b/examples/module-native/test.js index <HASH>..<HASH> 100644 --- a/examples/module-native/test.js +++ b/examples/module-native/test.js @@ -1,4 +1,4 @@ -var dockerLambda = require('..') +var dockerLambda = require('../..') var match = dockerLambda({event: {password: 'lambda...
Fix path for module-native example
diff --git a/plugins/homepage/server/__init__.py b/plugins/homepage/server/__init__.py index <HASH>..<HASH> 100644 --- a/plugins/homepage/server/__init__.py +++ b/plugins/homepage/server/__init__.py @@ -54,7 +54,7 @@ def getOrCreateAssetsFolder(): collection = ModelImporter.model('collection').createCollection( ...
Public folder. Remove trailing comma.
diff --git a/fusionbox/fabric_helpers.py b/fusionbox/fabric_helpers.py index <HASH>..<HASH> 100644 --- a/fusionbox/fabric_helpers.py +++ b/fusionbox/fabric_helpers.py @@ -39,7 +39,7 @@ def update_git(branch): try: loc = tempfile.mkdtemp() put(StringIO(local('git rev-parse %s' % branch, capture=Tr...
cd to git root before archiving, the whole project always needs to be updated
diff --git a/storage/storagepb/kv.pb.go b/storage/storagepb/kv.pb.go index <HASH>..<HASH> 100644 --- a/storage/storagepb/kv.pb.go +++ b/storage/storagepb/kv.pb.go @@ -68,8 +68,9 @@ type Event struct { // a put event contains the current key-value // a delete/expire event contains the previous // key-value - Kv ...
storagepb: minor updates from genproto I ran genproto with the most recent protocol buffer and it adds one line of missing comment.
diff --git a/lib/rake/file_utils.rb b/lib/rake/file_utils.rb index <HASH>..<HASH> 100644 --- a/lib/rake/file_utils.rb +++ b/lib/rake/file_utils.rb @@ -3,7 +3,7 @@ # added to the FileUtils utility functions. # module FileUtils - # Path to the currently running ruby. + # Path to the currently running Ruby program ...
Added comment about the RUBY constant
diff --git a/client/index.js b/client/index.js index <HASH>..<HASH> 100644 --- a/client/index.js +++ b/client/index.js @@ -5,7 +5,7 @@ const url = require('url'); const stripAnsi = require('strip-ansi'); -const log = require('loglevel'); +const log = require('loglevel').getLogger('webpack-dev-server'); const socke...
Fixes issue #<I> by switching to a named logger (#<I>)
diff --git a/src/main/java/com/typesafe/config/impl/AbstractConfigValue.java b/src/main/java/com/typesafe/config/impl/AbstractConfigValue.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/typesafe/config/impl/AbstractConfigValue.java +++ b/src/main/java/com/typesafe/config/impl/AbstractConfigValue.java @@ -4,6 +...
add comment about not having ConfigValue.parent()
diff --git a/ca/config.go b/ca/config.go index <HASH>..<HASH> 100644 --- a/ca/config.go +++ b/ca/config.go @@ -29,13 +29,13 @@ const ( ) const ( - rootCN = "cluster-ca" + rootCN = "swarm-ca" // ManagerRole represents the Manager node type, and is used for authorization to endpoints - ManagerRole = "cluster-manage...
Changing cluster to swarm. For the third time
diff --git a/lib/ridgepole/version.rb b/lib/ridgepole/version.rb index <HASH>..<HASH> 100644 --- a/lib/ridgepole/version.rb +++ b/lib/ridgepole/version.rb @@ -1,3 +1,3 @@ module Ridgepole - VERSION = '0.7.0.beta2' + VERSION = '0.7.0.beta3' end
Bump up version [ci skip]
diff --git a/lib/metacrunch/elasticsearch/index_creator.rb b/lib/metacrunch/elasticsearch/index_creator.rb index <HASH>..<HASH> 100644 --- a/lib/metacrunch/elasticsearch/index_creator.rb +++ b/lib/metacrunch/elasticsearch/index_creator.rb @@ -14,7 +14,7 @@ class Metacrunch::Elasticsearch::IndexCreator < Metacrunch::Pro...
Added number of shards/replicas option to index creator
diff --git a/generate.js b/generate.js index <HASH>..<HASH> 100755 --- a/generate.js +++ b/generate.js @@ -5,7 +5,6 @@ set("-e"); cd(`${__dirname}`); -const fs = require("fs"); const package = require("./package.json"); const thisFolder = $("pwd"); const specFilename = `spec-v1-swagger.json`; @@ -30,7 +29,7 @@ ...
Use jBash writeFile helper
diff --git a/spec/platform/helpers/extensions/test.rb b/spec/platform/helpers/extensions/test.rb index <HASH>..<HASH> 100644 --- a/spec/platform/helpers/extensions/test.rb +++ b/spec/platform/helpers/extensions/test.rb @@ -17,8 +17,4 @@ ronin_extension do :method end - def run_method - @var = :running - ...
Removed an unused method from the test extension.
diff --git a/tests/TestCase.php b/tests/TestCase.php index <HASH>..<HASH> 100755 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -196,6 +196,13 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase /** * @return string */ + public static function wsdlYandexDirectApiLivePath() + { + ...
issue #<I> - add utility method for direct api live wsdl
diff --git a/src/trumbowyg.js b/src/trumbowyg.js index <HASH>..<HASH> 100644 --- a/src/trumbowyg.js +++ b/src/trumbowyg.js @@ -1376,10 +1376,25 @@ Object.defineProperty(jQuery.trumbowyg, 'defaultOptions', { var t = this, prefix = t.o.prefix, fullscreenCssClass = prefix + '...
fix: add a placeholder while fullscreen to keep editor space fix #<I>
diff --git a/src/detectSeries.js b/src/detectSeries.js index <HASH>..<HASH> 100644 --- a/src/detectSeries.js +++ b/src/detectSeries.js @@ -5,7 +5,7 @@ export default function detectSeries(collection, predicate, notFound = undefined return collection.reduce( (promise, item, index, collection) => { ...
Fix lint issue in detectSeries
diff --git a/core-bundle/contao/drivers/DC_Table.php b/core-bundle/contao/drivers/DC_Table.php index <HASH>..<HASH> 100644 --- a/core-bundle/contao/drivers/DC_Table.php +++ b/core-bundle/contao/drivers/DC_Table.php @@ -15,7 +15,7 @@ namespace Contao; * Provide methods to modify the database. * * @author Leo Feyer...
[Core] Fixed two minor issues found by @aschempp
diff --git a/src/Shell/Task/ExtractTask.php b/src/Shell/Task/ExtractTask.php index <HASH>..<HASH> 100644 --- a/src/Shell/Task/ExtractTask.php +++ b/src/Shell/Task/ExtractTask.php @@ -522,7 +522,9 @@ class ExtractTask extends Shell $occurrences = []; foreach ($files as $file => ...
Improve generated .pot references compatibility with editors Most PO editors do not support references like File.php:<I>;<I>, each line must be listed separately as File.php:<I> File.php:<I>.
diff --git a/src/tagadvance/gilligan/text/Ordinal.php b/src/tagadvance/gilligan/text/Ordinal.php index <HASH>..<HASH> 100644 --- a/src/tagadvance/gilligan/text/Ordinal.php +++ b/src/tagadvance/gilligan/text/Ordinal.php @@ -33,7 +33,7 @@ class Ordinal { self::RD ]; $index = $n % 10; - return isset ( $suffix...
replace ternary operator with null coalesce operator
diff --git a/cherrypy/lib/cptools.py b/cherrypy/lib/cptools.py index <HASH>..<HASH> 100644 --- a/cherrypy/lib/cptools.py +++ b/cherrypy/lib/cptools.py @@ -370,7 +370,8 @@ Message: %(error_msg)s if path.endswith('login_screen'): if self.debug: cherrypy.log('routing %r to login_scre...
cptools.SessionAuth: fix login_screen page handler The login_screen page handler erroneously returned the formatted HTML page, which was simply interpreted as a boolean that controls whether the call to the controller function was suppressed or not. Set the response.body instead and return a literal True that suppres...
diff --git a/pkg/kubelet/rkt/rkt.go b/pkg/kubelet/rkt/rkt.go index <HASH>..<HASH> 100644 --- a/pkg/kubelet/rkt/rkt.go +++ b/pkg/kubelet/rkt/rkt.go @@ -998,6 +998,7 @@ func (r *Runtime) GetPods(all bool) ([]*kubecontainer.Pod, error) { } pods := make(map[types.UID]*kubecontainer.Pod) + var podIDs []types.UID for...
Fix rkt GetPods() order Use an array to store the pod IDs and use that to build the pod array with consistent ordering, instead of map ordering, which is random and causes test flakes.
diff --git a/packages/core/renderers/renderer-hyperhtml.js b/packages/core/renderers/renderer-hyperhtml.js index <HASH>..<HASH> 100644 --- a/packages/core/renderers/renderer-hyperhtml.js +++ b/packages/core/renderers/renderer-hyperhtml.js @@ -34,11 +34,13 @@ export function BoltComponent(Base = HTMLElement) { //...
fix: updating hyperhtml renderer to prevent extra connectedCallbacks from running unexpectedly
diff --git a/tests/ResultTest.php b/tests/ResultTest.php index <HASH>..<HASH> 100644 --- a/tests/ResultTest.php +++ b/tests/ResultTest.php @@ -91,7 +91,7 @@ class ResultTest extends TestCase{ * @expectedExceptionMessage invalid callback */ public function testEachInvalidCallback(){ - $this->result->__each('foo...
:octocat: WTB consistent behaviour of the "callable" type hint
diff --git a/tests/UriTemplateTest.php b/tests/UriTemplateTest.php index <HASH>..<HASH> 100644 --- a/tests/UriTemplateTest.php +++ b/tests/UriTemplateTest.php @@ -119,7 +119,7 @@ class UriTemplateTest extends \PHPUnit_Framework_TestCase */ public function testExpandsUriTemplates($template, $expansion, $param...
Fix UriTemplate does not have constructor args
diff --git a/src/exceptions/Handler.php b/src/exceptions/Handler.php index <HASH>..<HASH> 100644 --- a/src/exceptions/Handler.php +++ b/src/exceptions/Handler.php @@ -25,8 +25,12 @@ class Handler { */ public static function error( $severity, $message, $file, $line ) { + // Latest Twig raises a warning when acce...
Ignore stupid Twig warnings
diff --git a/lib/fast-tcpn/tcpn.rb b/lib/fast-tcpn/tcpn.rb index <HASH>..<HASH> 100644 --- a/lib/fast-tcpn/tcpn.rb +++ b/lib/fast-tcpn/tcpn.rb @@ -142,14 +142,8 @@ module FastTCPN end def add_marking_for(name, m) - if m.kind_of? Hash - token = m[:val] - timestamp = m[:ts] - find_pl...
Removed obsolete Hash handing form TCPN#add_marking_for
diff --git a/src/Tonic/Request.php b/src/Tonic/Request.php index <HASH>..<HASH> 100644 --- a/src/Tonic/Request.php +++ b/src/Tonic/Request.php @@ -98,6 +98,8 @@ class Request { $uri = $options['uri']; } elseif (isset($_SERVER['REDIRECT_URL']) && isset($_SERVER['SCRIPT_NAME'])) { // use redirection...
Use REQUEST_URI to get URI also
diff --git a/src/js/color.js b/src/js/color.js index <HASH>..<HASH> 100644 --- a/src/js/color.js +++ b/src/js/color.js @@ -209,8 +209,8 @@ l: 1, a: 1 }; - if (r.hasOwnProperty('s')) hsl.g = clamp(number(r.s), 255); - if (r.hasOwnPr...
* fix color constructor with hsl object.
diff --git a/scripts/homestead.rb b/scripts/homestead.rb index <HASH>..<HASH> 100644 --- a/scripts/homestead.rb +++ b/scripts/homestead.rb @@ -91,7 +91,10 @@ class Homestead # Register All Of The Configured Shared Folders if settings.include? 'folders' settings["folders"].each do |folder| - moun...
Adding the option of setting mount_opts on Homestead.yaml
diff --git a/pretrainedmodels/models/utils.py b/pretrainedmodels/models/utils.py index <HASH>..<HASH> 100644 --- a/pretrainedmodels/models/utils.py +++ b/pretrainedmodels/models/utils.py @@ -4,7 +4,7 @@ from .resnext import pretrained_settings as resnext_settings from .inceptionv4 import pretrained_settings as incepti...
bugfix: nasnet mobile was not listed in pretrainedmodels.model_names
diff --git a/steamfiles/appinfo.py b/steamfiles/appinfo.py index <HASH>..<HASH> 100644 --- a/steamfiles/appinfo.py +++ b/steamfiles/appinfo.py @@ -179,6 +179,8 @@ class AppinfoDecoder: return byte def read_string(self): + # This method is pretty fast, provided we iterate over a memoryview. + ...
Add a bit of an explanation to a string-parsing function
diff --git a/lib/agent/actions/lock/index.js b/lib/agent/actions/lock/index.js index <HASH>..<HASH> 100644 --- a/lib/agent/actions/lock/index.js +++ b/lib/agent/actions/lock/index.js @@ -78,7 +78,7 @@ function open(password, cb) { child = lock; child.stdout.on('data', function(data) { - if (child.imper...
Two small validations in lock and system libs.
diff --git a/src/Processes/Model.php b/src/Processes/Model.php index <HASH>..<HASH> 100644 --- a/src/Processes/Model.php +++ b/src/Processes/Model.php @@ -35,7 +35,7 @@ class Model public static function set($class , $table) { $txt = "<?php\n\nuse Vinala\Kernel\MVC\ORM;\n\n"; - $txt.="class $class extends ORM\n...
update table prop name to deal with new orm names
diff --git a/buildprocess/configureWebpack.js b/buildprocess/configureWebpack.js index <HASH>..<HASH> 100644 --- a/buildprocess/configureWebpack.js +++ b/buildprocess/configureWebpack.js @@ -183,7 +183,7 @@ function configureWebpack(terriaJSBasePath, config, devMode, hot) { req.url.indexOf('/co...
Make webpack server pass /init to normal server.
diff --git a/tests/test_localfs.py b/tests/test_localfs.py index <HASH>..<HASH> 100644 --- a/tests/test_localfs.py +++ b/tests/test_localfs.py @@ -8,6 +8,7 @@ import stat import sys from unittest import TestCase from abl.vpath.base import URI +from .common import mac_only #--------------------------------------...
Only run symlink test on Mac OSX Linux doesn't provide lchmod and we don't want to fail silently either.
diff --git a/lib/grape_entity/entity.rb b/lib/grape_entity/entity.rb index <HASH>..<HASH> 100644 --- a/lib/grape_entity/entity.rb +++ b/lib/grape_entity/entity.rb @@ -153,7 +153,7 @@ module Grape # # @example as: a proc or lambda # - # object = OpenStruct(awesomness: 'awesome_key', awesome: 'not-my-...
Fix typo in comments in lib/grape_entity/entity.rb (#<I>)
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -1614,11 +1614,6 @@ MSG self end - def initialize_clone(other) - super - ...
initialize_clone can go away
diff --git a/config/Netcraft.php b/config/Netcraft.php index <HASH>..<HASH> 100644 --- a/config/Netcraft.php +++ b/config/Netcraft.php @@ -26,6 +26,7 @@ return [ 'Source', 'Date', 'Domain', + 'Ip', ], ], @@ -39,6 +40,7 @@ return [...
remove extra newline and protect IP field
diff --git a/lib/consts/consts.go b/lib/consts/consts.go index <HASH>..<HASH> 100644 --- a/lib/consts/consts.go +++ b/lib/consts/consts.go @@ -8,7 +8,7 @@ import ( ) // Version contains the current semantic version of k6. -var Version = "0.26.1" //nolint:gochecknoglobals +var Version = "0.26.2" //nolint:gochecknogl...
Actually bump the version to <I>
diff --git a/Generator/Generator.php b/Generator/Generator.php index <HASH>..<HASH> 100644 --- a/Generator/Generator.php +++ b/Generator/Generator.php @@ -4,7 +4,7 @@ namespace Admingenerator\GeneratorBundle\Generator; use Symfony\Component\Finder\Finder; use Symfony\Component\Routing\RouterInterface; -use Symfony\...
Update Generator.php Fix scrutinizer issues
diff --git a/src/nls/root/strings.js b/src/nls/root/strings.js index <HASH>..<HASH> 100644 --- a/src/nls/root/strings.js +++ b/src/nls/root/strings.js @@ -515,7 +515,7 @@ define({ "EXTENSION_NOT_INSTALLED" : "Couldn't remove extension {0} because it wasn't installed.", "NO_EXTENSIONS" ...
Updated notice per comments and review.
diff --git a/glue/ligolw/lsctables.py b/glue/ligolw/lsctables.py index <HASH>..<HASH> 100644 --- a/glue/ligolw/lsctables.py +++ b/glue/ligolw/lsctables.py @@ -536,7 +536,7 @@ class ExperimentTable(table.Table): "experiment_id": "ilwd:char", "search_group": "lstring", "search": "lstring", - "lars_id": "ilwd:ch...
Changed lars_id in experiment table to lstring.
diff --git a/superset/config.py b/superset/config.py index <HASH>..<HASH> 100644 --- a/superset/config.py +++ b/superset/config.py @@ -656,7 +656,7 @@ DISPLAY_MAX_ROW = 10000 # Default row limit for SQL Lab queries. Is overridden by setting a new limit in # the SQL Lab UI -DEFAULT_SQLLAB_LIMIT = 10000 +DEFAULT_SQLL...
fix: revert DEFAULT_SQLLAB_LIMIT to default (#<I>)
diff --git a/lib/origami/graphics/xobject.rb b/lib/origami/graphics/xobject.rb index <HASH>..<HASH> 100644 --- a/lib/origami/graphics/xobject.rb +++ b/lib/origami/graphics/xobject.rb @@ -666,15 +666,15 @@ module Origami raise ArgumentError, "Missing file format" if format.nil? case f...
graphics/xobject: fix extensions in from_image_file
diff --git a/lib/jekyll/site.rb b/lib/jekyll/site.rb index <HASH>..<HASH> 100644 --- a/lib/jekyll/site.rb +++ b/lib/jekyll/site.rb @@ -23,12 +23,12 @@ module Jekyll self.pygments = config['pygments'] self.baseurl = config['baseurl'] self.permalink_style = config['permalink'].to_sym -...
Remove short-circuits from Site
diff --git a/src/ef-version.py b/src/ef-version.py index <HASH>..<HASH> 100755 --- a/src/ef-version.py +++ b/src/ef-version.py @@ -597,7 +597,7 @@ def cmd_set(context): print("would set key: {} with value: {} {} {} {} {}".format(s3_key, context.value, context.build_number, context.commit_hash, context.location, s3...
Changing ef-version s3 policy to have object be bucket-owner-full-control (#<I>)
diff --git a/models/classes/preview/ItemPreviewerService.php b/models/classes/preview/ItemPreviewerService.php index <HASH>..<HASH> 100644 --- a/models/classes/preview/ItemPreviewerService.php +++ b/models/classes/preview/ItemPreviewerService.php @@ -72,10 +72,7 @@ class ItemPreviewerService extends ConfigurableService...
refactor: use null coalescing operator
diff --git a/init.js b/init.js index <HASH>..<HASH> 100644 --- a/init.js +++ b/init.js @@ -1,5 +1,5 @@ "use strict"; -var mode = 'dev'; +var mode = process.env['ROADS_ENV'] || 'dev'; var Models = require('roads-models'); require('./libs/roadsmodelpromise.js').mixin(Models.ModelRequest.prototype); @@ -113,4 +113,4 ...
allow environment to be defined through the ROADS_ENV variable
diff --git a/lib/transit/rolling_cache.rb b/lib/transit/rolling_cache.rb index <HASH>..<HASH> 100644 --- a/lib/transit/rolling_cache.rb +++ b/lib/transit/rolling_cache.rb @@ -51,15 +51,11 @@ module Transit def encache(name) clear if cache_full? - if existing_key = @value_to_key[name] - existin...
slightly cleaner, no faster or slower (again)
diff --git a/python-package/lightgbm/basic.py b/python-package/lightgbm/basic.py index <HASH>..<HASH> 100644 --- a/python-package/lightgbm/basic.py +++ b/python-package/lightgbm/basic.py @@ -803,7 +803,7 @@ class Dataset(object): assert num_data == len(used_indices) for i in range_(len...
[python] Variable Typo: redictor -> predictor (#<I>) I believe that this should be a typo, right?
diff --git a/src/service/translate.js b/src/service/translate.js index <HASH>..<HASH> 100644 --- a/src/service/translate.js +++ b/src/service/translate.js @@ -532,6 +532,7 @@ function $translate($STORAGE_KEY, $windowProvider, $translateSanitizationProvide return $storageKey; } $storageKey = key; + r...
fix(service): make provider's storageKey chainable Solves #<I>
diff --git a/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java b/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java index <HASH>..<HASH> 100755 --- a/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java +++ b/client/src/ma...
add offline node handling on reopen operation
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -29,7 +29,7 @@ } } } else if (argType === 'object') { - if (arg.toString === Object.prototype.toString) { + if (!arg.hasOwnProperty('toString')) { for (var key in arg) { if (hasOwn.call(arg, k...
Bugfix - Class names being returned as [object Object] Updated to use `hasOwnProperty` over trying to compare the Object prototype which fails with some build pipelines after transpilation. See issue #<I>.
diff --git a/doc/source/conf.py b/doc/source/conf.py index <HASH>..<HASH> 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -18,7 +18,7 @@ import os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the ...
Enh: Doc - Make compilation work on rtd
diff --git a/src/Sham/DataGenerator.php b/src/Sham/DataGenerator.php index <HASH>..<HASH> 100644 --- a/src/Sham/DataGenerator.php +++ b/src/Sham/DataGenerator.php @@ -466,6 +466,22 @@ class DataGenerator } /** + * Generates and adds fake data for a choice attribute on a entity. + * + * @param En...
Support for Choice in DataGenerator
diff --git a/Neos.Flow/Classes/Core/Bootstrap.php b/Neos.Flow/Classes/Core/Bootstrap.php index <HASH>..<HASH> 100644 --- a/Neos.Flow/Classes/Core/Bootstrap.php +++ b/Neos.Flow/Classes/Core/Bootstrap.php @@ -547,7 +547,7 @@ class Bootstrap } define('FLOW_ONLY_COMPOSER_LOADER', $onlyUseComposerAutoLoa...
BUGFIX: Set FLOW_VERSION_BRANCH to <I>
diff --git a/src/Hodor/MessageQueue/Adapter/Amqp/Factory.php b/src/Hodor/MessageQueue/Adapter/Amqp/Factory.php index <HASH>..<HASH> 100644 --- a/src/Hodor/MessageQueue/Adapter/Amqp/Factory.php +++ b/src/Hodor/MessageQueue/Adapter/Amqp/Factory.php @@ -17,7 +17,7 @@ class Factory implements FactoryInterface /** ...
Rename channel manager variable to be consistent The object is called channel factory everywhere else, and I think 'channel manager' is a relic from the past
diff --git a/cutlass/cf.go b/cutlass/cf.go index <HASH>..<HASH> 100644 --- a/cutlass/cf.go +++ b/cutlass/cf.go @@ -184,11 +184,16 @@ func CountBuildpack(language string) (int, error) { } func CreateOrUpdateBuildpack(language, file, stack string) error { - if err := createBuildpack(language, file); err != nil { - r...
Corrects create/update buildpack logic Should always update, and only create if it does not exist
diff --git a/src/Core/Database/Exporter/MysqlExporter.php b/src/Core/Database/Exporter/MysqlExporter.php index <HASH>..<HASH> 100644 --- a/src/Core/Database/Exporter/MysqlExporter.php +++ b/src/Core/Database/Exporter/MysqlExporter.php @@ -80,12 +80,15 @@ class MysqlExporter extends AbstractExporter * @param $table ...
Fix Export SQL cannot restore #<I>
diff --git a/rpc_util.go b/rpc_util.go index <HASH>..<HASH> 100644 --- a/rpc_util.go +++ b/rpc_util.go @@ -685,23 +685,17 @@ func rpcInfoFromContext(ctx context.Context) (s *rpcInfo, ok bool) { // Code returns the error code for err if it was produced by the rpc system. // Otherwise, it returns codes.Unknown. // -//...
rpc_util: update deprecated messages (#<I>) The status package now has `Convert()` and `Code()` utilities. This patch updates the deprecation description for `ErrorDesc()` and `Code()` to recommend using those functions, and forward the deprecated functions to use the `status.Code()` and `status.Convert()` functi...
diff --git a/src/main/java/org/fluentd/logger/Config.java b/src/main/java/org/fluentd/logger/Config.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/fluentd/logger/Config.java +++ b/src/main/java/org/fluentd/logger/Config.java @@ -17,8 +17,5 @@ // package org.fluentd.logger; -public class Config { - - pu...
changed Config and Constants classes
diff --git a/l/tests/test_core.py b/l/tests/test_core.py index <HASH>..<HASH> 100644 --- a/l/tests/test_core.py +++ b/l/tests/test_core.py @@ -3,23 +3,7 @@ from unittest import TestCase from bp.memory import MemoryFS, MemoryPath -from l.core import ls, show - - -class TestLS(TestCase): - def setUp(self): - ...
Remove this for now, it's useless.
diff --git a/example/elements.js b/example/elements.js index <HASH>..<HASH> 100644 --- a/example/elements.js +++ b/example/elements.js @@ -10,6 +10,11 @@ regl.clear({ depth: 1 }) +var lineWidth = 3 +if (lineWidth > regl.limits.lineWidthDims[1]) { + lineWidth = regl.limits.lineWidthDims[1] +} + regl({ frag: `...
Fix so that 'elements' and 'graph' respect the max lineWidth of the device.
diff --git a/aws-java-sdk-sqs/src/main/java/com/amazonaws/services/sqs/buffered/QueueBuffer.java b/aws-java-sdk-sqs/src/main/java/com/amazonaws/services/sqs/buffered/QueueBuffer.java index <HASH>..<HASH> 100644 --- a/aws-java-sdk-sqs/src/main/java/com/amazonaws/services/sqs/buffered/QueueBuffer.java +++ b/aws-java-sdk-...
When bypassing buffered receives, pass through the AsyncHandler to receiveMessageAsync if present.
diff --git a/src/Auth/User/Provider.php b/src/Auth/User/Provider.php index <HASH>..<HASH> 100644 --- a/src/Auth/User/Provider.php +++ b/src/Auth/User/Provider.php @@ -9,13 +9,13 @@ final class Provider implements \Illuminate\Contracts\Auth\UserProvider, \Auth0\ /** * A repository instance. */ - priv...
Update `Auth\User\Provider::__construct()` to accept a Repository Interface, rather than Class (#<I>)
diff --git a/tests/unit/Dotenv_FileTest.php b/tests/unit/Dotenv_FileTest.php index <HASH>..<HASH> 100644 --- a/tests/unit/Dotenv_FileTest.php +++ b/tests/unit/Dotenv_FileTest.php @@ -54,7 +54,9 @@ class Dotenv_FileTest extends PHPUnit_Framework_TestCase */ public function it_throws_an_exception_if_the_file_i...
ensure file is not writable in test
diff --git a/lib/tower_cli/resources/group.py b/lib/tower_cli/resources/group.py index <HASH>..<HASH> 100644 --- a/lib/tower_cli/resources/group.py +++ b/lib/tower_cli/resources/group.py @@ -226,6 +226,20 @@ class Resource(models.Resource): isid = self._get_inventory_source_id(group) return isrc.updat...
Allow associate/disassociate on group to allow for child groups.
diff --git a/internal/services/automation/automation_account_data_source.go b/internal/services/automation/automation_account_data_source.go index <HASH>..<HASH> 100644 --- a/internal/services/automation/automation_account_data_source.go +++ b/internal/services/automation/automation_account_data_source.go @@ -51,7 +51,...
Automation datasource initialization Invert resource group name and account name for datasource Automation account to fix an not found error.