diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/lib/ronin/ui/command_line/commands/extension.rb b/lib/ronin/ui/command_line/commands/extension.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/ui/command_line/commands/extension.rb +++ b/lib/ronin/ui/command_line/commands/extension.rb @@ -69,6 +69,7 @@ module Ronin FileUtils.mkdir_p(path) ...
Also make a directory within the lib/ dir of an extension.
diff --git a/src/main/java/com/frostwire/jlibtorrent/IntSeries.java b/src/main/java/com/frostwire/jlibtorrent/IntSeries.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/frostwire/jlibtorrent/IntSeries.java +++ b/src/main/java/com/frostwire/jlibtorrent/IntSeries.java @@ -79,6 +79,16 @@ public final class IntSeri...
added IntSeries#last method
diff --git a/endpoints/__init__.py b/endpoints/__init__.py index <HASH>..<HASH> 100644 --- a/endpoints/__init__.py +++ b/endpoints/__init__.py @@ -34,4 +34,4 @@ from users_id_token import get_current_user, get_verified_jwt, convert_jwks_uri from users_id_token import InvalidGetUserCall from users_id_token import SKIP...
Version bump (<I> -> <I>) Rationale: Backwards-compatible but important changes to proxy.html serving.
diff --git a/caliper/src/main/java/com/google/caliper/runner/ExperimentingCaliperRun.java b/caliper/src/main/java/com/google/caliper/runner/ExperimentingCaliperRun.java index <HASH>..<HASH> 100644 --- a/caliper/src/main/java/com/google/caliper/runner/ExperimentingCaliperRun.java +++ b/caliper/src/main/java/com/google/c...
new Stopwatch(); -> Stopwatch.createUnstarted(); (Reverted the files which didn't import com.google.common.base.Stopwatch) ------------- Created by MOE: <URL>
diff --git a/lib/bolt/version.rb b/lib/bolt/version.rb index <HASH>..<HASH> 100644 --- a/lib/bolt/version.rb +++ b/lib/bolt/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Bolt - VERSION = '3.16.0' + VERSION = '3.16.1' end
(GEM) update bolt version to <I>
diff --git a/src/state.py b/src/state.py index <HASH>..<HASH> 100644 --- a/src/state.py +++ b/src/state.py @@ -20,6 +20,7 @@ class State(Module): processed_occ = {} with self.lock: for pc, state in occ.iteritems(): + pc = pc.lower() # normalize HG075PC47 -> hg075pc47 ...
state: normalize pc names to lowercase
diff --git a/hwt/code.py b/hwt/code.py index <HASH>..<HASH> 100644 --- a/hwt/code.py +++ b/hwt/code.py @@ -58,7 +58,8 @@ class If(IfContainer): self._now_is_event_dependent = arr_any( discoverEventDependency(cond_sig), lambda x: True) - + + self._inputs.append(cond_sig) c...
add condition in elif to if-statement _inputs
diff --git a/marshmallow_jsonapi/schema.py b/marshmallow_jsonapi/schema.py index <HASH>..<HASH> 100644 --- a/marshmallow_jsonapi/schema.py +++ b/marshmallow_jsonapi/schema.py @@ -107,6 +107,8 @@ class Schema(ma.Schema): raise IncorrectTypeError(actual=item['type'], expected=self.opts.type_) payl...
Marshaling payload id
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -112,7 +112,7 @@ setup(name='cldoc', description='clang based documentation generator for C/C++', author='Jesse van den Kieboom', author_email='jessevdk@gmail.com', - url='http://github.com/jessevdk/c...
Point website to cldoc website
diff --git a/src/python/grpcio/grpc/experimental/aio/_call.py b/src/python/grpcio/grpc/experimental/aio/_call.py index <HASH>..<HASH> 100644 --- a/src/python/grpcio/grpc/experimental/aio/_call.py +++ b/src/python/grpcio/grpc/experimental/aio/_call.py @@ -400,11 +400,11 @@ class _StreamRequestMixin(Call): i...
Aggregate common statement in both branches
diff --git a/lib/features/modeling/cmd/MoveConnectionHandler.js b/lib/features/modeling/cmd/MoveConnectionHandler.js index <HASH>..<HASH> 100644 --- a/lib/features/modeling/cmd/MoveConnectionHandler.js +++ b/lib/features/modeling/cmd/MoveConnectionHandler.js @@ -63,6 +63,8 @@ MoveConnectionHandler.prototype.revert = fu...
fix(modeling): update connection after move undo
diff --git a/config/routes.rb b/config/routes.rb index <HASH>..<HASH> 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -111,6 +111,16 @@ Rails.application.routes.draw do end end + resources :feedback, only: [:index, :edit, :create, :update, :destroy], format: false do + collection do + ...
Make feedback controller use resourceful routes.
diff --git a/menuinst/win32.py b/menuinst/win32.py index <HASH>..<HASH> 100644 --- a/menuinst/win32.py +++ b/menuinst/win32.py @@ -149,9 +149,9 @@ def to_bytes(var, codec=locale.getpreferredencoding()): return var -if u'\\envs\\' in to_unicode(sys.prefix): - logger.warn('menuinst called from non-root env %s...
fix logging traceback from #<I>
diff --git a/addons/docs/src/mdx/mdx-compiler-plugin.js b/addons/docs/src/mdx/mdx-compiler-plugin.js index <HASH>..<HASH> 100644 --- a/addons/docs/src/mdx/mdx-compiler-plugin.js +++ b/addons/docs/src/mdx/mdx-compiler-plugin.js @@ -218,8 +218,8 @@ function extractExports(node, options) { }, value: ...
code to use only the children of the <Preview components, maybe potential issue with line breaks?
diff --git a/draft-js-mention-plugin/src/SearchSuggestions/index.js b/draft-js-mention-plugin/src/SearchSuggestions/index.js index <HASH>..<HASH> 100644 --- a/draft-js-mention-plugin/src/SearchSuggestions/index.js +++ b/draft-js-mention-plugin/src/SearchSuggestions/index.js @@ -234,7 +234,7 @@ export default class Sear...
only show the list if there is a result
diff --git a/commerce-discount-service/src/main/java/com/liferay/commerce/discount/model/impl/CommerceDiscountCommerceAccountGroupRelImpl.java b/commerce-discount-service/src/main/java/com/liferay/commerce/discount/model/impl/CommerceDiscountCommerceAccountGroupRelImpl.java index <HASH>..<HASH> 100644 --- a/commerce-di...
COMMERCE-<I> Refactor commerce discount commerce account group rel implementation
diff --git a/pkg/cmd/server/origin/master.go b/pkg/cmd/server/origin/master.go index <HASH>..<HASH> 100644 --- a/pkg/cmd/server/origin/master.go +++ b/pkg/cmd/server/origin/master.go @@ -785,6 +785,7 @@ func (c *MasterConfig) RunDNSServer() { glog.Fatalf("Could not start DNS: %v", err) } config.DnsAddr = c.Optio...
SkyDNS: don't recurse requests
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -27,7 +27,7 @@ function PackeryComponent(React) { initializePackery: function(force) { if (!this.packery || force) { - this.packery = new Masonry( + this.pa...
Fix typo Use Packery instead of Masonry :)
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ except IOError: readme = '' setup( name = 'layered-yaml-attrdict-config', - version = '12.06.1', + version = '12.06.2', author = 'Mike Kazantsev', author_email = 'mk.fraggod@gmail.com', license = 'WTF...
setup: included README.txt in the tarball
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -2073,7 +2073,7 @@ function AudioCB(voiceSession, audioChannels, encoder, maxStreamSize) { }; this._read = function _read() {}; this.stop = function stop() { - return this._systemEncoder.stdout.push(null...
`Stream#stop` stops immediately
diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php @@ -1...
[FrameworkBundle] fix typo in CacheClearCommand
diff --git a/tests/cli/collectors.py b/tests/cli/collectors.py index <HASH>..<HASH> 100644 --- a/tests/cli/collectors.py +++ b/tests/cli/collectors.py @@ -26,6 +26,7 @@ class Collector(base.TDataCollector): ) outname = base.maybe_data_path(datadir / 'on', name, self.should_exist) ref = base.m...
change: add oo_opts member to TData and set it on load
diff --git a/bakery/management/commands/build.py b/bakery/management/commands/build.py index <HASH>..<HASH> 100644 --- a/bakery/management/commands/build.py +++ b/bakery/management/commands/build.py @@ -1,5 +1,6 @@ import os import six +import glob import shutil from django.conf import settings from optparse impor...
dirty attempt at regex searching for and gzipping static files
diff --git a/generic_positions/templatetags/position_tags.py b/generic_positions/templatetags/position_tags.py index <HASH>..<HASH> 100644 --- a/generic_positions/templatetags/position_tags.py +++ b/generic_positions/templatetags/position_tags.py @@ -19,6 +19,9 @@ def order_by_position(qs, reverse=False): posi...
fixed order by position tag if items have no position object
diff --git a/lib/test-server/test-server.js b/lib/test-server/test-server.js index <HASH>..<HASH> 100644 --- a/lib/test-server/test-server.js +++ b/lib/test-server/test-server.js @@ -151,7 +151,7 @@ var routeCoverage = function (req, res, next) { var jsonApi = function (req, res, next) { var testServer = this; ...
Fixing issue introduced in ba3aa<I>bd<I>aa<I>d<I>db<I>de6a<I> The status page was returned instead of <I> errors.
diff --git a/src/Codeception/Codecept.php b/src/Codeception/Codecept.php index <HASH>..<HASH> 100644 --- a/src/Codeception/Codecept.php +++ b/src/Codeception/Codecept.php @@ -7,7 +7,7 @@ use Symfony\Component\EventDispatcher\EventDispatcher; class Codecept { - const VERSION = "2.6.0"; + const VERSION = "3.0.0...
Set the VERSION constant to <I>
diff --git a/gsh/control_shell.py b/gsh/control_shell.py index <HASH>..<HASH> 100644 --- a/gsh/control_shell.py +++ b/gsh/control_shell.py @@ -104,6 +104,9 @@ def switch_readline_history(new_histo): add_history(line) return prev_histo +def handle_control_command(line): + singleton.onecmd(line) + cla...
Initial support of control commands prefixed by ':' in the main shell
diff --git a/connect.js b/connect.js index <HASH>..<HASH> 100644 --- a/connect.js +++ b/connect.js @@ -25,10 +25,10 @@ exports.connect = function (config, PassedClass) { return; } + var dirPath = path.resolve( + internals.argv['migrations-dir'] || 'migrations' + ); if (internal...
fix wrong reference to migration folder fixes #<I>
diff --git a/backbone.js b/backbone.js index <HASH>..<HASH> 100644 --- a/backbone.js +++ b/backbone.js @@ -374,7 +374,7 @@ var prevId = this.id; this.id = this.generateId(current); - if (prevId !== this.id) this.trigger('changeId', this, prevId, options); + if (prevId !== this.id) this.trigger...
#<I> -- use 'change-id' as the event name
diff --git a/src/Di/ClassInspector.php b/src/Di/ClassInspector.php index <HASH>..<HASH> 100644 --- a/src/Di/ClassInspector.php +++ b/src/Di/ClassInspector.php @@ -36,7 +36,7 @@ class ClassInspector if ($method === '__construct') { return $dependencies; } - throw new...
fix bug where MethodNotFoundException was not created correctly
diff --git a/runtime/v2/shim/util_unix.go b/runtime/v2/shim/util_unix.go index <HASH>..<HASH> 100644 --- a/runtime/v2/shim/util_unix.go +++ b/runtime/v2/shim/util_unix.go @@ -30,6 +30,7 @@ import ( "syscall" "time" + "github.com/containerd/containerd/defaults" "github.com/containerd/containerd/namespaces" "gi...
darwin: use the default values for socketRoot variable Since the /run directory on macOS is read-only, darwin containerd should use a different directory. Use the pre-defined default values instead to avoid this issue. Fixes: bd<I>acab ("Use path based unix socket for shims")
diff --git a/content/article.go b/content/article.go index <HASH>..<HASH> 100644 --- a/content/article.go +++ b/content/article.go @@ -55,7 +55,6 @@ type Article interface { Extract() ArticleExtract } -// TODO: merge with Article type ScoredArticle interface { Article
scores aren't used often enough to justify another join
diff --git a/lib/sy/quantity.rb b/lib/sy/quantity.rb index <HASH>..<HASH> 100644 --- a/lib/sy/quantity.rb +++ b/lib/sy/quantity.rb @@ -449,7 +449,9 @@ class SY::Quantity ɴλ.call % "Unit" # as for @Magnitude applies.) end end - ...
adapting to y_support/name_magic change
diff --git a/modelcluster/fields.py b/modelcluster/fields.py index <HASH>..<HASH> 100644 --- a/modelcluster/fields.py +++ b/modelcluster/fields.py @@ -62,7 +62,11 @@ def create_deferring_foreign_related_manager(related, original_manager_cls): try: results = self.instance._cluster_related_o...
Avoid accessing live queryset on unsaved instances In cases where a DeferringRelatedManager was read on an in-memory instance before being written to, it was accessing the real manager on an unsaved instance. This was tolerated up to Django <I>, but it's a hard fail as of <URL>
diff --git a/spec/public/reloading/directory/app/controllers/reload.rb b/spec/public/reloading/directory/app/controllers/reload.rb index <HASH>..<HASH> 100644 --- a/spec/public/reloading/directory/app/controllers/reload.rb +++ b/spec/public/reloading/directory/app/controllers/reload.rb @@ -1,7 +1,6 @@ - ...
merge hcatlins doc patches, \m/
diff --git a/index.js b/index.js index <HASH>..<HASH> 100755 --- a/index.js +++ b/index.js @@ -773,9 +773,9 @@ FSWatcher.prototype._addToFsEvents = function(file, pathTransform) { _this._readyCount++; _this._addToFsEvents(linkPath, function(path) { var ds = '.'...
Adjust paths of nested symlinks gh-<I>
diff --git a/core/server/master/src/test/java/alluxio/master/AlluxioMasterProcessTest.java b/core/server/master/src/test/java/alluxio/master/AlluxioMasterProcessTest.java index <HASH>..<HASH> 100644 --- a/core/server/master/src/test/java/alluxio/master/AlluxioMasterProcessTest.java +++ b/core/server/master/src/test/jav...
Fix test startStopPrimary failure from time to time Fix test startStopPrimary failure from time to time pr-link: Alluxio/alluxio#<I> change-id: cid-<I>fa<I>be<I>d5f9dd<I>c<I>f<I>d<I>ca<I>b2
diff --git a/src/main/java/org/telegram/botapi/api/internal/chat/updates/RequestUpdatesManager.java b/src/main/java/org/telegram/botapi/api/internal/chat/updates/RequestUpdatesManager.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/telegram/botapi/api/internal/chat/updates/RequestUpdatesManager.java +++ b/src/...
Set updateManager variable before starting update thread.
diff --git a/defender/test_settings.py b/defender/test_settings.py index <HASH>..<HASH> 100644 --- a/defender/test_settings.py +++ b/defender/test_settings.py @@ -29,6 +29,13 @@ INSTALLED_APPS = [ 'defender', ] +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + ...
Templates settings as recommended from Django <I>
diff --git a/elpy/jedibackend.py b/elpy/jedibackend.py index <HASH>..<HASH> 100644 --- a/elpy/jedibackend.py +++ b/elpy/jedibackend.py @@ -215,6 +215,12 @@ def run_with_debug(jedi, name, *args, **kwargs): # Bug in Python 2.6, see #275 if isinstance(e, OSError) and e.errno == 13: return No...
Catch a SyntaxError from Jedi. This is a workaround for a bug in Jedi. Fixes #<I>.
diff --git a/lib/components/form/default-search-form.js b/lib/components/form/default-search-form.js index <HASH>..<HASH> 100644 --- a/lib/components/form/default-search-form.js +++ b/lib/components/form/default-search-form.js @@ -26,7 +26,7 @@ export default class DefaultSearchForm extends Component { render () {...
fix(form): Update placeholder language in location field to reflect new mouse/tap interaction Refs conveyal/trimet-mod-otp#<I>
diff --git a/src/Record.php b/src/Record.php index <HASH>..<HASH> 100755 --- a/src/Record.php +++ b/src/Record.php @@ -255,6 +255,26 @@ class Record extends Origin implements IteratorAggregate } /** + * Update all data in Record + * + * @param array $public + * @param array $private + * ...
New method update to override all data into record
diff --git a/informationminer/__init__.py b/informationminer/__init__.py index <HASH>..<HASH> 100644 --- a/informationminer/__init__.py +++ b/informationminer/__init__.py @@ -5,4 +5,4 @@ The ClassifierBasedGermanTagger can be used for POS-Tagging on the German langua from .InformationMiner import InformationMiner fro...
Trying to figure out PyPI updates
diff --git a/test/net/fortuna/ical4j/model/property/ExDateTest.java b/test/net/fortuna/ical4j/model/property/ExDateTest.java index <HASH>..<HASH> 100644 --- a/test/net/fortuna/ical4j/model/property/ExDateTest.java +++ b/test/net/fortuna/ical4j/model/property/ExDateTest.java @@ -73,6 +73,7 @@ public class ExDateTest ext...
Reset compatibility flags on test completion
diff --git a/sk/passwords.php b/sk/passwords.php index <HASH>..<HASH> 100644 --- a/sk/passwords.php +++ b/sk/passwords.php @@ -21,6 +21,6 @@ return [ "sent" => "Pripomienka k zmene hesla bola odoslaná!", - "reset" => "Password has been reset!", + "reset" => "Heslo bolo zmenené!", ];
Translated key "reset" to slovak
diff --git a/src/Message/SecureXMLAbstractRequest.php b/src/Message/SecureXMLAbstractRequest.php index <HASH>..<HASH> 100644 --- a/src/Message/SecureXMLAbstractRequest.php +++ b/src/Message/SecureXMLAbstractRequest.php @@ -65,7 +65,7 @@ abstract class SecureXMLAbstractRequest extends AbstractRequest $xml = new...
Always encode entities in messageID and purchaseOrderNo This fixes an issue where a client submitting a transaction containing a purchaseOrderNo with an ampersand in it resulted in an 'unterminated entity reference' exception. Turns out that in SimpleXML 'addChild' doesn't encode entities however when assigning the v...
diff --git a/cake/tests/cases/libs/i18n.test.php b/cake/tests/cases/libs/i18n.test.php index <HASH>..<HASH> 100644 --- a/cake/tests/cases/libs/i18n.test.php +++ b/cake/tests/cases/libs/i18n.test.php @@ -2591,7 +2591,9 @@ class I18nTest extends CakeTestCase { function testTimeDefinition() { Configure::write('Conf...
Test case for date format definition using a LC_TIME locale file
diff --git a/example.js b/example.js index <HASH>..<HASH> 100644 --- a/example.js +++ b/example.js @@ -2,6 +2,7 @@ var xml = require('xml4node'); var dual = require('./index'); var _ = require('underscore'); +var EventEmitter = require('events').EventEmitter; var exampleHost = function () { @@ -27,7 +28,36 @@ v...
Add an example where hosts are connected by a socket.
diff --git a/jpx/src/main/java/io/jenetics/jpx/GPX.java b/jpx/src/main/java/io/jenetics/jpx/GPX.java index <HASH>..<HASH> 100644 --- a/jpx/src/main/java/io/jenetics/jpx/GPX.java +++ b/jpx/src/main/java/io/jenetics/jpx/GPX.java @@ -1805,7 +1805,6 @@ public final class GPX implements Serializable { } - /** * R...
#<I>: Some code formatting.
diff --git a/utils/eslint-config/index.js b/utils/eslint-config/index.js index <HASH>..<HASH> 100644 --- a/utils/eslint-config/index.js +++ b/utils/eslint-config/index.js @@ -4,7 +4,7 @@ * @see http://eslint.org/docs/user-guide/configuring.html */ -/* eslint-disable sort-keys */ +/* eslint-disable @typescript-esl...
Tweak lint rules
diff --git a/insights/client/__init__.py b/insights/client/__init__.py index <HASH>..<HASH> 100644 --- a/insights/client/__init__.py +++ b/insights/client/__init__.py @@ -535,9 +535,10 @@ def pre_update(): updated = InsightsSchedule().remove_scheduling() if updated: logger.info('Automatic...
Fix disable schedule when registering (#<I>) The `--disable-schedule` flag can now be run alongside `--register` so that the registration will not automatically enable the cron job.
diff --git a/lib/navigator/menu.rb b/lib/navigator/menu.rb index <HASH>..<HASH> 100644 --- a/lib/navigator/menu.rb +++ b/lib/navigator/menu.rb @@ -84,9 +84,9 @@ module Navigator end end - def method_missing name, *positionals, **keywords, &block + def method_missing(name, *positionals, **keywords, &...
Refactored implementation to use anonymous block forwarding Necessary to reduce typing and redundant code when we can use the shorthand anonymous block forwarding syntax introduced in Ruby <I>. These changes cause issues to crop up with the Rubocop Style/MethodDefParentheses cop which is why it's being disabled on ce...
diff --git a/restclients_core/util/mock.py b/restclients_core/util/mock.py index <HASH>..<HASH> 100644 --- a/restclients_core/util/mock.py +++ b/restclients_core/util/mock.py @@ -175,4 +175,4 @@ def attempt_open_query_permutations(url, orig_file_path, is_header_file): def _compare_file_name(orig_file_path, directory...
Switching both sides of file comparison to unquoted
diff --git a/lib/anycable/rails/action_cable_ext/channel.rb b/lib/anycable/rails/action_cable_ext/channel.rb index <HASH>..<HASH> 100644 --- a/lib/anycable/rails/action_cable_ext/channel.rb +++ b/lib/anycable/rails/action_cable_ext/channel.rb @@ -3,13 +3,15 @@ require "action_cable/channel" ActionCable::Channel::Ba...
fix: do not change signatures in the channel patch
diff --git a/core/editor.js b/core/editor.js index <HASH>..<HASH> 100644 --- a/core/editor.js +++ b/core/editor.js @@ -281,6 +281,10 @@ function convertHTML(blot, index, length, isRoot = false) { } const { outerHTML, innerHTML } = blot.domNode; const [start, end] = outerHTML.split(`>${innerHTML}<`); + ...
workaround for copying table into other app
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ # python-quilt - A Python implementation of the quilt patch system # -# Copyright (C) 2012 Björn Ricks <bjoern.ricks@googlemail.com> +# Copyright (C) 2012, 2017 Björn Ricks <bjoern.ricks@gmail.com> # # Thi...
Use setuptools instead of distutils setuptools are the standard to install python packages now.
diff --git a/kibitzr/transformer/factory.py b/kibitzr/transformer/factory.py index <HASH>..<HASH> 100644 --- a/kibitzr/transformer/factory.py +++ b/kibitzr/transformer/factory.py @@ -47,7 +47,9 @@ class TransformPipeline(object): if ok: ok, content = transform(content) else: -...
Fixed error reporting policy when no transforms defined
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,6 @@ setup( author_email="tjelvar.olsson@jic.ac.uk", url=url, install_requires=[ - "click", "dtoolcore>=2.4.0", ], entry_points={
Remove click requirment from setup.py
diff --git a/aiocqhttp/__init__.py b/aiocqhttp/__init__.py index <HASH>..<HASH> 100644 --- a/aiocqhttp/__init__.py +++ b/aiocqhttp/__init__.py @@ -183,6 +183,9 @@ class CQHttp: def run(self, host=None, port=None, *args, **kwargs): self._server_app.run(host=host, port=port, *args, **kwargs) + async de...
Add proxy for "call_action" method in CQHttp
diff --git a/Form/Type/SecurityRolesType.php b/Form/Type/SecurityRolesType.php index <HASH>..<HASH> 100644 --- a/Form/Type/SecurityRolesType.php +++ b/Form/Type/SecurityRolesType.php @@ -57,7 +57,7 @@ class SecurityRolesType extends AbstractType }); // POST METHOD - $formBuilder->addEventList...
Fix deprecated FormEvents::PRE_BIND usage
diff --git a/lib/wiselinks/rendering.rb b/lib/wiselinks/rendering.rb index <HASH>..<HASH> 100644 --- a/lib/wiselinks/rendering.rb +++ b/lib/wiselinks/rendering.rb @@ -7,7 +7,9 @@ module Wiselinks protected - def render_with_wiselinks(options = {}, *args, &block) + def render_with_wiselinks(*args) ...
#4 undefined method for :check:Symbol
diff --git a/pylibdmtx/pylibdmtx.py b/pylibdmtx/pylibdmtx.py index <HASH>..<HASH> 100644 --- a/pylibdmtx/pylibdmtx.py +++ b/pylibdmtx/pylibdmtx.py @@ -195,7 +195,12 @@ def decode(image, timeout=None, gap_size=None, shrink=1, shape=None, elif 'numpy.ndarray' in str(type(image)): if 'uint8' != str(image.dty...
[#9] Reinstate numpy version check
diff --git a/lib/dpl/ctx/bash.rb b/lib/dpl/ctx/bash.rb index <HASH>..<HASH> 100644 --- a/lib/dpl/ctx/bash.rb +++ b/lib/dpl/ctx/bash.rb @@ -410,9 +410,9 @@ module Dpl `git log #{git_sha} -n 1 --pretty=%ae`.chomp end - # Whether or not the git working directory is dirty + # Whether or not the ...
do not skip if new or only deleted files are present
diff --git a/gutenberg/gutenberg.py b/gutenberg/gutenberg.py index <HASH>..<HASH> 100644 --- a/gutenberg/gutenberg.py +++ b/gutenberg/gutenberg.py @@ -192,32 +192,3 @@ class EText(ORM_BASE): title=self.title, path=self.path, )) - - -def _main(): - """This fu...
Remove CLI functionality - use as module only
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,7 @@ -from pip.req import parse_requirements +try: # for pip >= 10 + from pip._internal.req import parse_requirements +except ImportError: # for pip <= 9.0.3 + from pip.req import parse_requirements from setup...
pip <I> support.
diff --git a/src/decorators/on.js b/src/decorators/on.js index <HASH>..<HASH> 100644 --- a/src/decorators/on.js +++ b/src/decorators/on.js @@ -38,10 +38,12 @@ export default function on(eventDomain) { let eventHandler = Eventhandler.create({ events: domNode.$appDecorators.on.events, element: domNode, + ...
Bugfix: it was not a good idea to use the shortform of object assigning, see {n}th pre commit
diff --git a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/RunCommand.java b/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/RunCommand.java index <HASH>..<HASH> 100644 --- a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/RunCommand.java +++ b/spring-boot-cli/...
Add hint to user about 'stop' command Improves gh-<I>
diff --git a/test/rngout/main.go b/test/rngout/main.go index <HASH>..<HASH> 100644 --- a/test/rngout/main.go +++ b/test/rngout/main.go @@ -23,12 +23,12 @@ package main import ( "bufio" - "github.com/skarllot/raiqub" + "github.com/skarllot/raiqub/crypt" "os" ) func main() { - rng := raiqub.NewRandom() + rng :...
Fixed rngout test to match last changes
diff --git a/telethon/client/downloads.py b/telethon/client/downloads.py index <HASH>..<HASH> 100644 --- a/telethon/client/downloads.py +++ b/telethon/client/downloads.py @@ -962,7 +962,7 @@ class DownloadMethods: f = file try: - with aiohttp.ClientSession() as session: + a...
Add missing async when downloading from URL (#<I>)
diff --git a/src/ol/Geolocation.js b/src/ol/Geolocation.js index <HASH>..<HASH> 100644 --- a/src/ol/Geolocation.js +++ b/src/ol/Geolocation.js @@ -1,7 +1,6 @@ /** * @module ol/Geolocation */ -import {inherits} from './util.js'; import GeolocationProperty from './GeolocationProperty.js'; import BaseObject, {getCh...
Use extends and super for Geolocation
diff --git a/src/Norm/Filter/Filter.php b/src/Norm/Filter/Filter.php index <HASH>..<HASH> 100644 --- a/src/Norm/Filter/Filter.php +++ b/src/Norm/Filter/Filter.php @@ -157,7 +157,8 @@ class Filter $innerMethodName = 'filter'.strtoupper($method[0]).substr($method, 1); ...
fixed empty post submission caused error for Filter
diff --git a/multi_form_view/base.py b/multi_form_view/base.py index <HASH>..<HASH> 100644 --- a/multi_form_view/base.py +++ b/multi_form_view/base.py @@ -2,7 +2,6 @@ Django class based views for using more than one Form or ModelForm in a single view. """ from django.http import HttpResponseRedirect -from django.sho...
prefer render_to_response over render Matches FormView --> ProcessFormView implementation and allows other rendering implementations
diff --git a/src/Illuminate/Support/ViewErrorBag.php b/src/Illuminate/Support/ViewErrorBag.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Support/ViewErrorBag.php +++ b/src/Illuminate/Support/ViewErrorBag.php @@ -10,6 +10,17 @@ class ViewErrorBag implements Countable { * @var array */ protected $bags = []...
Add method hasBag to ViewErrorBag When redirecting withErrors($validator) the edit form can show individual messages. But to show a generic message, something like: please check the red marked field below I don't know anything else but to flash a extra variable. This method would remedy that. Now I could check: $error...
diff --git a/gns3server/compute/docker/docker_vm.py b/gns3server/compute/docker/docker_vm.py index <HASH>..<HASH> 100644 --- a/gns3server/compute/docker/docker_vm.py +++ b/gns3server/compute/docker/docker_vm.py @@ -361,7 +361,7 @@ class DockerVM(BaseNode): try: yield from s...
Fix an error when logging Docker container fail to start
diff --git a/src/Drivers/JsonDriver.php b/src/Drivers/JsonDriver.php index <HASH>..<HASH> 100644 --- a/src/Drivers/JsonDriver.php +++ b/src/Drivers/JsonDriver.php @@ -18,7 +18,7 @@ class JsonDriver implements Driver throw new CantBeSerialized('Resources can not be serialized to json'); } - ...
Fix inconsistent EOLs in JSON snapshots on Windows It replaces OS dependent `PHP_EOL` with `\n`. `json_encode` with `JSON_PRETTY_PRINT` flag always use `\n` regardless of OS, but `PHP_EOL` yields `\r\n` on Windows causing inconsistent line ends and unnecessary diff for git, if files are regenerated.
diff --git a/openquake/hazardlib/lt.py b/openquake/hazardlib/lt.py index <HASH>..<HASH> 100644 --- a/openquake/hazardlib/lt.py +++ b/openquake/hazardlib/lt.py @@ -773,15 +773,13 @@ class CompositeLogicTree(object): """ def __init__(self, branchsets): self.branchsets = branchsets - self.shorten...
Added .short_id
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,5 +1,5 @@ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) -require 'acme_client' +require 'acme-client' require 'rspec' require 'vcr' @@ -9,6 +9,9 @@ require 'webr...
Try again when failing to generate RSA key
diff --git a/Resources/public/js/MMMediaBundle.js b/Resources/public/js/MMMediaBundle.js index <HASH>..<HASH> 100644 --- a/Resources/public/js/MMMediaBundle.js +++ b/Resources/public/js/MMMediaBundle.js @@ -275,10 +275,7 @@ function MMMediaBundleFileDropzoneInitiateEvents() { } -/** - * Start loading the dom is rd...
Callback event moved into a separate function -> MMMediaBundleInit
diff --git a/src/engine/engine-state.js b/src/engine/engine-state.js index <HASH>..<HASH> 100644 --- a/src/engine/engine-state.js +++ b/src/engine/engine-state.js @@ -231,7 +231,7 @@ export class EngineState { let i = 0 const servers = this.pluginState - .sortStratumServers(this.io.Socket !== null, thi...
Do not crash when TLS is unavailable
diff --git a/nomad/structs/diff.go b/nomad/structs/diff.go index <HASH>..<HASH> 100644 --- a/nomad/structs/diff.go +++ b/nomad/structs/diff.go @@ -79,10 +79,6 @@ func (j *Job) Diff(other *Job, contextual bool) (*JobDiff, error) { oldPrimitiveFlat = flatmap.Flatten(j, filter, true) diff.ID = j.ID } else { - if ...
Fix determining whether a job is edited
diff --git a/app/assets/javascripts/thin_man.js b/app/assets/javascripts/thin_man.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/thin_man.js +++ b/app/assets/javascripts/thin_man.js @@ -130,6 +130,10 @@ var initThinMan = function(){ $(this.emptyOnSuccess()).empty(); } } + ...
remove error class and inline-help after successful response
diff --git a/lib/dm-core/adapters/data_objects_adapter.rb b/lib/dm-core/adapters/data_objects_adapter.rb index <HASH>..<HASH> 100644 --- a/lib/dm-core/adapters/data_objects_adapter.rb +++ b/lib/dm-core/adapters/data_objects_adapter.rb @@ -551,7 +551,7 @@ module DataMapper Query::Conditions::Comparison.ne...
Condition statement construction should be controlled by conditions_statement
diff --git a/js/tests/unit/wee.dom.js b/js/tests/unit/wee.dom.js index <HASH>..<HASH> 100644 --- a/js/tests/unit/wee.dom.js +++ b/js/tests/unit/wee.dom.js @@ -304,6 +304,10 @@ define(function(require) { 'Closest element was not identified' ); + assert.strictEqual(Wee.$closest('#inner', '#inner').length, 1,...
Add test to $closest method
diff --git a/CmsManager/CmsSnapshotManager.php b/CmsManager/CmsSnapshotManager.php index <HASH>..<HASH> 100644 --- a/CmsManager/CmsSnapshotManager.php +++ b/CmsManager/CmsSnapshotManager.php @@ -11,7 +11,6 @@ namespace Sonata\PageBundle\CmsManager; -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;...
Remove <I> from the CmsSnapshotManager
diff --git a/gunicorn_console.py b/gunicorn_console.py index <HASH>..<HASH> 100755 --- a/gunicorn_console.py +++ b/gunicorn_console.py @@ -125,19 +125,23 @@ def handle_keypress(screen): move_selection(reverse=True) elif key in ("A", "+"): send_signal("TTIN") - gunicorns[selected_pid]["work...
Add more "no gunicorn selected" protection. Trying a command before cursoring into a selection was aborting.
diff --git a/component-1-util-1-object.js b/component-1-util-1-object.js index <HASH>..<HASH> 100644 --- a/component-1-util-1-object.js +++ b/component-1-util-1-object.js @@ -161,7 +161,7 @@ _cs.clone = function (source, continue_recursion) { /* helper functions */ var myself = arguments.callee; var cl...
function clones occur in stack traces, so give the function clone a ComponentJS-indicating name
diff --git a/src/utils.js b/src/utils.js index <HASH>..<HASH> 100644 --- a/src/utils.js +++ b/src/utils.js @@ -23,8 +23,8 @@ exports.serverFromURL = function(url) { parts.host = parts.host.split(':'); sagRes = exports.server( - parts.host.shift(), - parts.host.shift() || (useSSL) ? 443 : 80, + p...
Fixing ternary in c5a<I>f0ba0dc<I>cf<I>cd<I>bd4dd<I>ed3b (#<I>)
diff --git a/telethon/client/telegrambaseclient.py b/telethon/client/telegrambaseclient.py index <HASH>..<HASH> 100644 --- a/telethon/client/telegrambaseclient.py +++ b/telethon/client/telegrambaseclient.py @@ -433,6 +433,9 @@ class TelegramBaseClient(abc.ABC): if not sender: sender = awai...
Assume exported auths last forever This implies that export senders will NOT be deleted from memory once all borrows are returned, thus their auth_key remains as well. When borrowing them if they existed they will be connect()ed if it's the first borrow. This probably fixes #<I>.
diff --git a/superset/assets/javascripts/dashboard/reducers.js b/superset/assets/javascripts/dashboard/reducers.js index <HASH>..<HASH> 100644 --- a/superset/assets/javascripts/dashboard/reducers.js +++ b/superset/assets/javascripts/dashboard/reducers.js @@ -39,16 +39,21 @@ export function getInitialState(bootstrapData...
for <I> columns layout, adjust default size and layout for newly added slices (#<I>)
diff --git a/cereslib/_version.py b/cereslib/_version.py index <HASH>..<HASH> 100644 --- a/cereslib/_version.py +++ b/cereslib/_version.py @@ -1,2 +1,2 @@ # Versions compliant with PEP 440 https://www.python.org/dev/peps/pep-0440 -__version__ = "0.1.13" +__version__ = "0.1.14"
Update version number to <I>
diff --git a/lib/chore/queues/filesystem/publisher.rb b/lib/chore/queues/filesystem/publisher.rb index <HASH>..<HASH> 100644 --- a/lib/chore/queues/filesystem/publisher.rb +++ b/lib/chore/queues/filesystem/publisher.rb @@ -25,12 +25,11 @@ module Chore begin f.write(job.to_json) ...
Remove ambiguous control-flow in error handling The 'break' in the ensure block actually aborts the bubbling of errors to higher level code. So even though we don't explicitly catch errors, they are still swallowed.
diff --git a/src/ZfcUser/Controller/UserController.php b/src/ZfcUser/Controller/UserController.php index <HASH>..<HASH> 100644 --- a/src/ZfcUser/Controller/UserController.php +++ b/src/ZfcUser/Controller/UserController.php @@ -156,7 +156,11 @@ class UserController extends AbstractActionController // redire...
Update src/ZfcUser/Controller/UserController.php The view was only place where was checked if registration was disabled. Sending post data would still register new user.
diff --git a/output/html/languages.php b/output/html/languages.php index <HASH>..<HASH> 100644 --- a/output/html/languages.php +++ b/output/html/languages.php @@ -77,7 +77,11 @@ class QM_Output_Html_Languages extends QM_Output_Html { echo '<td class="qm-ltr">'; if ( $mofile['file'] ) { - echo esc_html( ...
Allow JED translation file paths to be clickable.
diff --git a/tests/src/test/java/alluxio/master/file/FileSystemMasterIntegrationTest.java b/tests/src/test/java/alluxio/master/file/FileSystemMasterIntegrationTest.java index <HASH>..<HASH> 100644 --- a/tests/src/test/java/alluxio/master/file/FileSystemMasterIntegrationTest.java +++ b/tests/src/test/java/alluxio/master...
[SMALLFIX] Add comments in ConcurrentFree test.
diff --git a/HISTORY.rst b/HISTORY.rst index <HASH>..<HASH> 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ------- +0.5.2 (2015-10-22) +------------------ + +* added `management` to `MANIFEST.in` + 0.5.1 (2015-10-22) ------------------ diff --git a/liquimigrate/__init__.py b/liquimigrate/__...
Bumped version to <I>
diff --git a/lib/cocoapods-deploy/deploy_transformer.rb b/lib/cocoapods-deploy/deploy_transformer.rb index <HASH>..<HASH> 100644 --- a/lib/cocoapods-deploy/deploy_transformer.rb +++ b/lib/cocoapods-deploy/deploy_transformer.rb @@ -3,10 +3,12 @@ module Pod attr_accessor :lockfile attr_accessor :sandbox + ...
Compatibility with the new CocoaPods Spec layout
diff --git a/gcsio/src/test/java/com/google/cloud/hadoop/gcsio/GoogleCloudStorageFileSystemIntegrationTest.java b/gcsio/src/test/java/com/google/cloud/hadoop/gcsio/GoogleCloudStorageFileSystemIntegrationTest.java index <HASH>..<HASH> 100644 --- a/gcsio/src/test/java/com/google/cloud/hadoop/gcsio/GoogleCloudStorageFileS...
Fix test flakiness. Failed test example: []
diff --git a/lib/wupee/notifier.rb b/lib/wupee/notifier.rb index <HASH>..<HASH> 100644 --- a/lib/wupee/notifier.rb +++ b/lib/wupee/notifier.rb @@ -77,16 +77,22 @@ module Wupee end end + notifications = [] + notif_type_configs.each do |notif_type_config| notification = Wupee::Notif...
Wupee::Notifier#execute method now returns an array of sent notifications
diff --git a/dev/io.openliberty.concurrent.cdi/src/io/openliberty/concurrent/cdi/interceptor/AsyncInterceptor.java b/dev/io.openliberty.concurrent.cdi/src/io/openliberty/concurrent/cdi/interceptor/AsyncInterceptor.java index <HASH>..<HASH> 100644 --- a/dev/io.openliberty.concurrent.cdi/src/io/openliberty/concurrent/cdi...
Void.class is different from void
diff --git a/chess/pgn.py b/chess/pgn.py index <HASH>..<HASH> 100644 --- a/chess/pgn.py +++ b/chess/pgn.py @@ -1597,7 +1597,10 @@ def read_game(handle: TextIO, *, Visitor: Any = GameBuilder) -> Any: board.pop() board_stack.append(board) elif token == ")": -...
Call matching end_variation while skipping (#<I>)