hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
4f385e60ac0fd9e69557a2c010985a052676a7e0
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -3087,15 +3087,14 @@ focusInput(cm); resetInput(cm); // Adds "Select all" to context menu in FF - var hasSelection = cm.somethingSelected(); - if (!hasSelection) display...
Re-query selection state in onContextMenu Issue #<I>
codemirror_CodeMirror
train
d6b49577dde57a002e8a8482c759636394138543
diff --git a/test/integration/test.js b/test/integration/test.js index <HASH>..<HASH> 100644 --- a/test/integration/test.js +++ b/test/integration/test.js @@ -128,7 +128,10 @@ const execute = name => { title: 'Clean up', task: () => del(dest, {force: true}) } - ], { + ].map(({title, task}) => ({ + title: `$...
Update integration test script (#<I>)
avajs_eslint-plugin-ava
train
a8fdf500cffb1e7402be8db05d179964a53e6697
diff --git a/snet_cli/mpe_channel_command.py b/snet_cli/mpe_channel_command.py index <HASH>..<HASH> 100644 --- a/snet_cli/mpe_channel_command.py +++ b/snet_cli/mpe_channel_command.py @@ -164,11 +164,12 @@ class MPEChannelCommand(MPEServiceCommand): return rez[1][0]["args"]["channelId"], channel_info def...
add filtering by payment_address (recipient) in _find_already_opened_channel
singnet_snet-cli
train
82e47edb0f981902a3e2399c7523b165eadfb373
diff --git a/src/request.php b/src/request.php index <HASH>..<HASH> 100644 --- a/src/request.php +++ b/src/request.php @@ -8,10 +8,12 @@ class request { * redirect a browser session to a new url * also exists flow * - * @param string $location relative to the host + * @param string $location relative to...
allows to send an explicit http status for redirects
lode_fem
train
49dce0ea5a74399b90ff4c325e376fb32133c674
diff --git a/dusty/command_file.py b/dusty/command_file.py index <HASH>..<HASH> 100644 --- a/dusty/command_file.py +++ b/dusty/command_file.py @@ -13,6 +13,8 @@ def _write_commands_to_file(list_of_commands, file_location): os.makedirs(file_location_parent) with open(file_location, 'w+') as f: for...
do not cd or export path with that directory if mount is not specified
gamechanger_dusty
train
7c21905247b663347057125ea038d6cec72facf2
diff --git a/src/Tests/TestHelperTrait.php b/src/Tests/TestHelperTrait.php index <HASH>..<HASH> 100644 --- a/src/Tests/TestHelperTrait.php +++ b/src/Tests/TestHelperTrait.php @@ -25,6 +25,9 @@ trait TestHelperTrait */ protected $authMock; + /** @var \Illuminate\Http\Response|null */ + protected $res...
fixed missing global func and added assertResponseStatus
nodes-php_api
train
6aaa86b31df0307034df6d2590d51cfb9c8265f8
diff --git a/intranet/apps/eighth/urls.py b/intranet/apps/eighth/urls.py index <HASH>..<HASH> 100644 --- a/intranet/apps/eighth/urls.py +++ b/intranet/apps/eighth/urls.py @@ -13,6 +13,7 @@ urlpatterns = [ # Students url(r"^/signup(?:/(?P<block_id>\d+))?$", signup.eighth_signup_view, name="eighth_signup"), +...
add to urls.py
tjcsl_ion
train
a1753c52b171e68614c191103642e22cb6e5453b
diff --git a/src/main/java/org/jboss/pressgang/ccms/utils/common/XMLUtilities.java b/src/main/java/org/jboss/pressgang/ccms/utils/common/XMLUtilities.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jboss/pressgang/ccms/utils/common/XMLUtilities.java +++ b/src/main/java/org/jboss/pressgang/ccms/utils/common/XML...
Fixed a bug where the findDoctype() method wouldn't return the entire doctype declaration.
pressgang-ccms_PressGangCCMSCommonUtilities
train
1123633277efa7bd70e0cbf8198f3eaf80133b5b
diff --git a/tika/src/main/java/org/gagravarr/tika/FlacParser.java b/tika/src/main/java/org/gagravarr/tika/FlacParser.java index <HASH>..<HASH> 100644 --- a/tika/src/main/java/org/gagravarr/tika/FlacParser.java +++ b/tika/src/main/java/org/gagravarr/tika/FlacParser.java @@ -13,9 +13,14 @@ */ package org.gagravarr.ti...
Use different mimetypes for Flac Native and Ogg
Gagravarr_VorbisJava
train
265fec15b661a13d1f4816e8daf40dc270f048d5
diff --git a/lib/packetgen/packet.rb b/lib/packetgen/packet.rb index <HASH>..<HASH> 100644 --- a/lib/packetgen/packet.rb +++ b/lib/packetgen/packet.rb @@ -181,7 +181,7 @@ module PacketGen # Recalculate all packet length fields # @return [void] def calc_length - headers.each do |header| + header...
Fix Packet#calc_length. Compute length from last header to first (reverse order), as some header may change their size on #calc_length (padding length is actually computed by this method).
sdaubert_packetgen
train
c180065a847a9b4523b7b7996b7b1e60d195a025
diff --git a/htlcswitch/link.go b/htlcswitch/link.go index <HASH>..<HASH> 100644 --- a/htlcswitch/link.go +++ b/htlcswitch/link.go @@ -1714,14 +1714,15 @@ func (l *channelLink) HtlcSatifiesPolicy(payHash [32]byte, incomingHtlcAmt, amtToForward lnwire.MilliSatoshi) lnwire.FailureMessage { l.RLock() - defer l.RUnlo...
htlcswitch/link: remove deadlock in htlc validation This commit removes a possible deadlock in the switch, which can be triggered under certain failure conditions. Previously, we would acquire the link's read lock for the duration of HtlcSatisfiesPolicy, though we only need to use it grab the current policy. The deadl...
lightningnetwork_lnd
train
f426ab2162ff9fc74aded1302d8f898021cce68a
diff --git a/hanlp/common/component.py b/hanlp/common/component.py index <HASH>..<HASH> 100644 --- a/hanlp/common/component.py +++ b/hanlp/common/component.py @@ -10,27 +10,27 @@ from hanlp_common.configurable import Configurable class Component(Configurable, ABC): @abstractmethod - def predict(self, data: A...
Remove `data` and `batch_size` arguments from component
hankcs_HanLP
train
820ac2a98fb23a657d2d57c5708adc152299fd66
diff --git a/spec/support/response.rb b/spec/support/response.rb index <HASH>..<HASH> 100644 --- a/spec/support/response.rb +++ b/spec/support/response.rb @@ -34,7 +34,7 @@ def response_body(id, action, factory_name, options, http_method) elsif action == 'history' build_list(factory_name, 5).to_json else - ...
Refactor retrieve stubs into StubbedResponse
BlockScore_blockscore-ruby
train
3a2082c7e3be099b5a481878ddb1ccc3f5c9bae6
diff --git a/drools-compiler/src/main/java/org/drools/lang/dsl/DefaultExpander.java b/drools-compiler/src/main/java/org/drools/lang/dsl/DefaultExpander.java index <HASH>..<HASH> 100644 --- a/drools-compiler/src/main/java/org/drools/lang/dsl/DefaultExpander.java +++ b/drools-compiler/src/main/java/org/drools/lang/dsl/De...
[DROOLS-<I>] avoid infinite loop during DSL expansion
kiegroup_drools
train
0683d8140e6df3743da8435ce385c0e5229eca52
diff --git a/Rakefile b/Rakefile index <HASH>..<HASH> 100644 --- a/Rakefile +++ b/Rakefile @@ -92,6 +92,7 @@ file "target/webfont.js" => SourceJs + ["target"] do |t| ["-jar", JsCompilerJar], ["--compilation_level", "ADVANCED_OPTIMIZATIONS"], ["--js_output_file", t.name], + "--generate_exports", [...
Export symbols using annotations instead of using bracket notation.
typekit_webfontloader
train
ce8bdb18e05645e4a6cacab9c167f7f23586f347
diff --git a/instaloader.py b/instaloader.py index <HASH>..<HASH> 100755 --- a/instaloader.py +++ b/instaloader.py @@ -344,7 +344,7 @@ def check_id(profile, session, json_data, quiet): os.makedirs(profile.lower(), exist_ok=True) with open(profile + "/id", 'w') as text_file: profile_id = j...
Have newline in id files This is better. A line in a textfile must terminate with a \n character.
instaloader_instaloader
train
a79bfc41a6bd767197206f8d17a3588fdde0163a
diff --git a/app/api/v1/resources/posts.rb b/app/api/v1/resources/posts.rb index <HASH>..<HASH> 100644 --- a/app/api/v1/resources/posts.rb +++ b/app/api/v1/resources/posts.rb @@ -21,7 +21,7 @@ module V1 authorize! :view, ::Post @posts = ::GetPosts.call(params: declared(clean_params(params), includ...
Restrict sorting to only Posts Feed and Readd Date Logic
cortex-cms_cortex
train
d73cce6e1832a32d8e236a6fcbdce777596ce823
diff --git a/checks/check_add_to_hue_and_saturation.py b/checks/check_add_to_hue_and_saturation.py index <HASH>..<HASH> 100644 --- a/checks/check_add_to_hue_and_saturation.py +++ b/checks/check_add_to_hue_and_saturation.py @@ -31,6 +31,12 @@ def main(): images_aug = iaa.AddToHueAndSaturation(value=(-255, 255), per...
Set defaults for AddTo- and Multiply- Hue/Saturation
aleju_imgaug
train
0e68371494da5c26b4f7f0caf640d981dace4d86
diff --git a/tests/ConfusableTest.php b/tests/ConfusableTest.php index <HASH>..<HASH> 100644 --- a/tests/ConfusableTest.php +++ b/tests/ConfusableTest.php @@ -8,7 +8,12 @@ class ConfusableTest extends Base { public function testIsMixedScript() { - $confusables = new Confusable(); + try { + ...
Finished porting Test from vhf/confusable_homoglyphs
photogabble_php-confusable-homoglyphs
train
c34a7ea8d179afb40992ec24261d835ed5e9ae92
diff --git a/new_english/bin/restintercept.py b/new_english/bin/restintercept.py index <HASH>..<HASH> 100755 --- a/new_english/bin/restintercept.py +++ b/new_english/bin/restintercept.py @@ -56,6 +56,7 @@ class JsonProxyRestHandler(splunk.rest.BaseRestHandler): )) self.router.add(Route('/properties/<f...
Add support for receivers/simple to new_english Part of SPL-<I>
splunk_splunk-sdk-javascript
train
3e0cdfbfcc0abfc682eb5eba50184cf7fd42af81
diff --git a/src/Oauth2ClientManager.php b/src/Oauth2ClientManager.php index <HASH>..<HASH> 100644 --- a/src/Oauth2ClientManager.php +++ b/src/Oauth2ClientManager.php @@ -3,7 +3,7 @@ namespace HtLeagueOauthClientModule; use Zend\ServiceManager\AbstractPluginManager; use Zend\ServiceManager\ConfigInterface; -use Lea...
compatibility with latest stable oauth2-client library
hrevert_HtLeagueOauthClientModule
train
b71562276eb5018bb7eae8236999af37bdaf232b
diff --git a/lxc/publish.go b/lxc/publish.go index <HASH>..<HASH> 100644 --- a/lxc/publish.go +++ b/lxc/publish.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/gosexy/gettext" + "github.com/chai2010/gettext-go/gettext" "github.com/lxc/lxd" "github.com/lxc/lxd/internal/gnuflag"
Should fix issue #<I>, refs issue #<I>.
lxc_lxd
train
f21a38ef8dfe735880773b06382ff3cf9fd7df06
diff --git a/src/Http/Parser/Accept.php b/src/Http/Parser/Accept.php index <HASH>..<HASH> 100644 --- a/src/Http/Parser/Accept.php +++ b/src/Http/Parser/Accept.php @@ -9,6 +9,13 @@ use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; class Accept implements Parser { /** + * Standards tree. + ...
Update Accept parsing to allow versions with hypens, add test to confirm prefixes with hyphens work. This closes #<I>
dingo_api
train
493b51931819957a2e507d8ff646a249d7f9dc06
diff --git a/Classes/Lib/Db.php b/Classes/Lib/Db.php index <HASH>..<HASH> 100644 --- a/Classes/Lib/Db.php +++ b/Classes/Lib/Db.php @@ -2,7 +2,6 @@ namespace TeaminmediasPluswerk\KeSearch\Lib; use TeaminmediasPluswerk\KeSearch\Plugins\SearchboxPlugin; -use TeaminmediasPluswerk\KeSearch\Plugins\txkesearchpi1; use TY...
[TASK] remove not used class in use statement.
teaminmedias-pluswerk_ke_search
train
10aa13eac2c9658d8013272f1b04573b5990f9f0
diff --git a/test/html-hint-test.js b/test/html-hint-test.js index <HASH>..<HASH> 100644 --- a/test/html-hint-test.js +++ b/test/html-hint-test.js @@ -30,17 +30,14 @@ } ]; - function escapeHtmlList(o) { return '<code>' + JSON.stringify(o.list,null,2) .replace(/</g, "&lt;") .replac...
Small cleanups for d<I>e<I>
codemirror_CodeMirror
train
6d3441ca405f81ff85a0dfae18c798d8e06fb847
diff --git a/classes/helper/redirect/MobileRedirect.php b/classes/helper/redirect/MobileRedirect.php index <HASH>..<HASH> 100644 --- a/classes/helper/redirect/MobileRedirect.php +++ b/classes/helper/redirect/MobileRedirect.php @@ -104,7 +104,7 @@ class Shopgate_Helper_Redirect_MobileRedirect /** * Suppresses the r...
refs LIBRARY-<I> Fixed PHPDoc pointing to wrong method.
shopgate_cart-integration-sdk
train
9055834acbaa119be9cbc54aa33995352335bbaa
diff --git a/massedit.py b/massedit.py index <HASH>..<HASH> 100755 --- a/massedit.py +++ b/massedit.py @@ -24,7 +24,7 @@ # THE SOFTWARE. -__version__ = '0.61' # UPDATE setup.py when changing version. +__version__ = '0.62' # UPDATE setup.py when changing version. __author__ = 'Jerome Lecomte' __license__ ...
Improved synopsis (added examples). Bumped version to <I>
elmotec_massedit
train
2622d3171dba42c79ecd787ad83a17af729bda14
diff --git a/squad/api/rest.py b/squad/api/rest.py index <HASH>..<HASH> 100644 --- a/squad/api/rest.py +++ b/squad/api/rest.py @@ -531,12 +531,12 @@ class BuildViewSet(ModelViewSet): data = { "message": "Build %s does not exist" % baseline_id } - ret...
api: respond with <I> (Bad Request) on bad input Responding with <I> Internal Server Request makes those special cases indistinguishable from an actual server-side crash.
Linaro_squad
train
f26fdfc80c568c33584ff98484b2afae746275ba
diff --git a/samples/memfs/fs.go b/samples/memfs/fs.go index <HASH>..<HASH> 100644 --- a/samples/memfs/fs.go +++ b/samples/memfs/fs.go @@ -5,6 +5,7 @@ package memfs import ( "fmt" + "reflect" "github.com/jacobsa/fuse" "github.com/jacobsa/fuse/fuseutil" @@ -57,6 +58,35 @@ func NewMemFS( } func (fs *memFS)...
Implemented some of memFS.checkInvariants.
jacobsa_fuse
train
163f53ea077841a51487d7384e515ceca7f7b358
diff --git a/promiz.micro.js b/promiz.micro.js index <HASH>..<HASH> 100644 --- a/promiz.micro.js +++ b/promiz.micro.js @@ -3,7 +3,7 @@ /** * @constructor */ - function promise(fn, er) { + function Deferred(fn, er) { // states // 0: pending // 1: resolving @@ -36,17 +36,17 @@ } se...
Only export the deferred function.
Zolmeister_promiz
train
dacb796078dfdb77c1e17f058d48e46e5c41e42a
diff --git a/src/MetaModels/Item.php b/src/MetaModels/Item.php index <HASH>..<HASH> 100644 --- a/src/MetaModels/Item.php +++ b/src/MetaModels/Item.php @@ -320,7 +320,7 @@ class Item implements IItem // Include CSS. $arrCss = $objSettings->get('additionalCss'); - foreach ((array)$arrCss as $ar...
Fix code style issues in Item.php
MetaModels_core
train
7154c61f0b3e09a879c20d445235233b2741fd90
diff --git a/terraform/transform_reference.go b/terraform/transform_reference.go index <HASH>..<HASH> 100644 --- a/terraform/transform_reference.go +++ b/terraform/transform_reference.go @@ -303,6 +303,8 @@ func (m ReferenceMap) References(v dag.Vertex) []dag.Vertex { subject = ri.ContainingResource() case add...
reduce module instances refs to the module call There aren't going to be any nodes specifically for module call instances during plan, so we have to switch the reference subject to the general module call.
hashicorp_terraform
train
9459dc05d927ac11a76497861132b9c2db923ddd
diff --git a/dist/zect.js b/dist/zect.js index <HASH>..<HASH> 100644 --- a/dist/zect.js +++ b/dist/zect.js @@ -1,5 +1,5 @@ /** -* Zect v1.0.4 +* Zect v1.0.5 * (c) 2015 guankaishe * Released under the MIT License. */ diff --git a/dist/zect.min.js b/dist/zect.min.js index <HASH>..<HASH> 100644 --- a/dist/zect.min.js ...
version is corrected to <I>
switer_Zect
train
1a4d909c6845c091a04e2533ab89502de4130c1b
diff --git a/railties/lib/rails/generators/rails/app/app_generator.rb b/railties/lib/rails/generators/rails/app/app_generator.rb index <HASH>..<HASH> 100644 --- a/railties/lib/rails/generators/rails/app/app_generator.rb +++ b/railties/lib/rails/generators/rails/app/app_generator.rb @@ -3,6 +3,10 @@ require 'active_supp...
Add rails app --edge and rails app --dev
rails_rails
train
95db6ee451a943c353978c38a50013f6faa7356a
diff --git a/ui/web/src/main/java/org/openengsb/ui/web/ruleeditor/RuleEditorPanel.java b/ui/web/src/main/java/org/openengsb/ui/web/ruleeditor/RuleEditorPanel.java index <HASH>..<HASH> 100644 --- a/ui/web/src/main/java/org/openengsb/ui/web/ruleeditor/RuleEditorPanel.java +++ b/ui/web/src/main/java/org/openengsb/ui/web/r...
enable process-branch in the webinterface
openengsb_openengsb
train
506084f3153476d4c400767a9880728ae1c53a16
diff --git a/subsystem/api.js b/subsystem/api.js index <HASH>..<HASH> 100644 --- a/subsystem/api.js +++ b/subsystem/api.js @@ -148,7 +148,7 @@ phoxy._.api = } var escaped_send_string = EscapeReserved(send_string, "()?#\\"); - return encodeURIComponent(escaped_send_string); + return encodeURI(e...
Fix serialization issue on multiply params
phoxy_phoxy
train
3071d3f49fe932e50baa7bf6b06a9467b5063842
diff --git a/resources/lang/fi-FI/forms.php b/resources/lang/fi-FI/forms.php index <HASH>..<HASH> 100644 --- a/resources/lang/fi-FI/forms.php +++ b/resources/lang/fi-FI/forms.php @@ -49,6 +49,7 @@ return [ 'name' => 'Nimi', 'status' => 'Tila', 'component' =>...
New translations forms.php (Finnish)
CachetHQ_Cachet
train
4fbbb05a4c4cf4edb6644b9fe06aa2fb26b3a805
diff --git a/src/Shell/Task/SyncTask.php b/src/Shell/Task/SyncTask.php index <HASH>..<HASH> 100644 --- a/src/Shell/Task/SyncTask.php +++ b/src/Shell/Task/SyncTask.php @@ -90,6 +90,7 @@ class SyncTask extends Shell $this->out(null); $this->out('<success>Synchronization complete!</success>'); + ...
Replacing birthday generic title for calendar (task #<I>)
QoboLtd_cakephp-calendar
train
62eeb306c7de10579e9f4b12fc127c77d1d52fd4
diff --git a/app/services/katello/pulp/repository.rb b/app/services/katello/pulp/repository.rb index <HASH>..<HASH> 100644 --- a/app/services/katello/pulp/repository.rb +++ b/app/services/katello/pulp/repository.rb @@ -12,7 +12,7 @@ module Katello sync_options = {} sync_options[:max_speed] = SETTINGS....
Fixes #<I> - Repo sync doesn't pass source url
Katello_katello
train
777402bb5deed115f72e43c7d8e179af966cc109
diff --git a/test/unit/model.js b/test/unit/model.js index <HASH>..<HASH> 100644 --- a/test/unit/model.js +++ b/test/unit/model.js @@ -22,13 +22,17 @@ describe('Model', function () { it('should have the expected history', function () { assert.deepEqual(model.history, { ftu: true, ...
Resolve unit test for model lib
mozilla_webmaker-android
train
8b45d9a00df9d9147b367195ec5ca3ead39bd1c9
diff --git a/src/main/java/com/github/jnidzwetzki/bitfinex/v2/entity/BitfinexCurrencyPair.java b/src/main/java/com/github/jnidzwetzki/bitfinex/v2/entity/BitfinexCurrencyPair.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/jnidzwetzki/bitfinex/v2/entity/BitfinexCurrencyPair.java +++ b/src/main/java/com/g...
Fixed race condition on hash map access
jnidzwetzki_bitfinex-v2-wss-api-java
train
357da4a09d9619e5e03c9a8869137a23086ce471
diff --git a/src/ContaoCommunityAlliance/DcGeneral/DC/General.php b/src/ContaoCommunityAlliance/DcGeneral/DC/General.php index <HASH>..<HASH> 100644 --- a/src/ContaoCommunityAlliance/DcGeneral/DC/General.php +++ b/src/ContaoCommunityAlliance/DcGeneral/DC/General.php @@ -3,7 +3,7 @@ /** * This file is part of contao-...
Find the parent id for the Contao breadcrumb
contao-community-alliance_dc-general
train
005574349d8707635839a05469f00947f385a7f0
diff --git a/test/Sentry/SentryBundle/Test/EventListener/ExceptionListenerTest.php b/test/Sentry/SentryBundle/Test/EventListener/ExceptionListenerTest.php index <HASH>..<HASH> 100644 --- a/test/Sentry/SentryBundle/Test/EventListener/ExceptionListenerTest.php +++ b/test/Sentry/SentryBundle/Test/EventListener/ExceptionLi...
Rename variable to better reflect Exception content
getsentry_sentry-symfony
train
72412163ecf6fa4723eb39d5d66261c3aae14afb
diff --git a/firefox/src/java/com/googlecode/webdriver/firefox/FirefoxLauncher.java b/firefox/src/java/com/googlecode/webdriver/firefox/FirefoxLauncher.java index <HASH>..<HASH> 100644 --- a/firefox/src/java/com/googlecode/webdriver/firefox/FirefoxLauncher.java +++ b/firefox/src/java/com/googlecode/webdriver/firefox/Fi...
SimonStewart: Moving the ability to clean a profile from the launcher into the binary for firefox r<I>
SeleniumHQ_selenium
train
65a3931bef498713d0ee6ff184e325de9b0ebb4c
diff --git a/peewee.py b/peewee.py index <HASH>..<HASH> 100644 --- a/peewee.py +++ b/peewee.py @@ -5745,12 +5745,16 @@ class ModelSelect(BaseModelSelect, Select): attr = on._alias on = on.alias() + # Obtain references to the source and destination models being joined. src_mod...
Slight re-org and cleanup in join code.
coleifer_peewee
train
df64d1c3ae18d7dbff4af28d1055e8ea0089c6a3
diff --git a/README.mdown b/README.mdown index <HASH>..<HASH> 100644 --- a/README.mdown +++ b/README.mdown @@ -30,7 +30,7 @@ To make installing Intercom as easy as possible, where possible a `<script>` tag To disable automatic insertion for a particular controller or action you can: ```ruby - skip_after_filter :in...
Fix after_filter deprecation warning on Rails 5 In Rails 4, the after_filter method was renamed to after_action. The older method was still supported until Rails 5, which now prints a deprecation warning when after_filter is used: > DEPRECATION WARNING: after_filter is deprecated and will be removed in > Rails <I>. U...
intercom_intercom-rails
train
c148f9a1adc3c8efe153f526e4b45de811a79f79
diff --git a/plugins/rise.js b/plugins/rise.js index <HASH>..<HASH> 100644 --- a/plugins/rise.js +++ b/plugins/rise.js @@ -13,8 +13,7 @@ class RISE { } isActive() { - return this.page.evaluate(_ => - typeof $ !== 'undefined' && typeof $('#start_livereveal') === 'object'); + return this.page.eval...
Fix discrepancy in RISE plugin activation
astefanutti_decktape
train
cc561986791cd888e734c9dc2cb60dd4ebf7a300
diff --git a/src/main/java/com/buschmais/jqassistant/plugin/tycho/impl/scanner/TychoProjectScannerPlugin.java b/src/main/java/com/buschmais/jqassistant/plugin/tycho/impl/scanner/TychoProjectScannerPlugin.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/buschmais/jqassistant/plugin/tycho/impl/scanner/TychoProjec...
#<I> moved file related descriptors to jqassistant.plugin.common
buschmais_jqa-tycho-plugin
train
a66bbca8eacde24e31f5454a0c9e13595e1d1ea5
diff --git a/lib/service.js b/lib/service.js index <HASH>..<HASH> 100644 --- a/lib/service.js +++ b/lib/service.js @@ -78,7 +78,7 @@ function rr_txt (service) { function rr_a (service,ip_address) { return { - name: service.fqdn, + name: service.host, type: 'A', ttl: 120, data: ip_address @@ -...
fix A and AAAA name (match machine hostname instead of service)
watson_bonjour
train
f4cffd1690e7f98b2b43f0dd9fcaca24a65133c3
diff --git a/hazelcast-client-legacy/src/main/java/com/hazelcast/client/spi/ProxyManager.java b/hazelcast-client-legacy/src/main/java/com/hazelcast/client/spi/ProxyManager.java index <HASH>..<HASH> 100644 --- a/hazelcast-client-legacy/src/main/java/com/hazelcast/client/spi/ProxyManager.java +++ b/hazelcast-client-legac...
Client proxy initialization should take care of any failure Currently proxy creation/initialization only handles `Exception` but when it fails with an `Error`, `ClientProxyFuture` is remains unset and client shutdown and a subsequent getProxy call will hang forever.
hazelcast_hazelcast
train
25d156572c92982a15e5bb0fa56c8a1984946ce7
diff --git a/config/routes.rb b/config/routes.rb index <HASH>..<HASH> 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -2,10 +2,12 @@ Flip::Engine.routes.draw do scope module: "Flip" do - root to: "features#index" + resources :features, path: "/", only: [ :index ] do - resources :feature_strate...
Resourceful routes; feature_id is required by FeatureStrategiesController.
voormedia_flipflop
train
494e56a6de7f5a00b4e88fdf4b91634bcb0821b1
diff --git a/test/html_preview_test.rb b/test/html_preview_test.rb index <HASH>..<HASH> 100644 --- a/test/html_preview_test.rb +++ b/test/html_preview_test.rb @@ -72,7 +72,7 @@ class TestHtmlPreview < Minitest::Test def test_default_mode_anchors write(@source_file_path, "# foo\n## bar") markdown_preview = ...
Update test to reflect new anchor markup
dmarcotte_github-markdown-preview
train
b4326b37f30f2263f89c2e5afb1a2721d0970882
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -179,6 +179,7 @@ function httpQuery(db, fun, opts) { addHttpParam('group', opts, params); addHttpParam('group_level', opts, params); addHttpParam('skip', opts, params); + addHttpParam('stale', opts, params); addHt...
(#<I> #<I>) - add stale to http, fix update_after Currently update_after doesn't actually update after, and the stale option isn't even passed to the http adapter.
nolanlawson_pouchdb-mapreduce-no-ddocs
train
b19d07802e42e1375e6393073d78ba08c1f19e25
diff --git a/examples/csv_example/csv_evaluation.py b/examples/csv_example/csv_evaluation.py index <HASH>..<HASH> 100644 --- a/examples/csv_example/csv_evaluation.py +++ b/examples/csv_example/csv_evaluation.py @@ -23,8 +23,10 @@ def dupePairs(filename, rowname) : with open(filename) as f: reader = csv....
Create index of the records with the help of a counter variable row_id
dedupeio_dedupe
train
9e8e6314dac0f26b3c2100ae9bf2f7676bba7976
diff --git a/admin/client/lang/en.js b/admin/client/lang/en.js index <HASH>..<HASH> 100644 --- a/admin/client/lang/en.js +++ b/admin/client/lang/en.js @@ -26,12 +26,12 @@ if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') { "LeftAndMain.SEARCHCLEARRESULTS": "Clear search", "LeftAndMain.SEARCHR...
Changed capitalisation of search filter names
silverstripe_silverstripe-framework
train
9c2093487f34efa9a95e9cc0ed240d820d33b80e
diff --git a/CHANGES.txt b/CHANGES.txt index <HASH>..<HASH> 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,4 @@ v0.1.0, 05-22-2014 -- Initial release. v0.1.1, 05-22-2014 -- Moved example.py from bin directory. -v0.1.2, 05-22-2014 -- fixed TypeError in to_json_stat() +v0.1.2, 05-22-2014 -- fixed TypeError in to...
Removed bin references from setup.py
predicador37_pyjstat
train
7f97afefdb2a9b0d396b883563f9054dbb632dec
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -142,10 +142,6 @@ setup(name = "sos", 'ipykernel', 'notebook', 'ptpython', - # spyder is not strictly required by the jupyter kernel - # but install spyder would save the trou...
Move spyder from required to optional package
vatlab_SoS
train
a08bd0bc03ad6c22b5b52ffeaca0e48c2b8ff5bc
diff --git a/src/main/java/com/mercadopago/resources/Payment.java b/src/main/java/com/mercadopago/resources/Payment.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/mercadopago/resources/Payment.java +++ b/src/main/java/com/mercadopago/resources/Payment.java @@ -112,6 +112,8 @@ public class Payment extends MPBa...
- Add sponsorId and processingMode in Payment
mercadopago_dx-java
train
673369b4cdb02b4cb59f35fff521190c1cb24d9e
diff --git a/graylog2-server/src/main/java/org/graylog2/rest/resources/system/radio/RadiosResource.java b/graylog2-server/src/main/java/org/graylog2/rest/resources/system/radio/RadiosResource.java index <HASH>..<HASH> 100644 --- a/graylog2-server/src/main/java/org/graylog2/rest/resources/system/radio/RadiosResource.jav...
Replacing reference to implementation class with call to service.
Graylog2_graylog2-server
train
ec689563d0bc280687366c7ec54bfefabd4b4c5c
diff --git a/react-mixin-manager.js b/react-mixin-manager.js index <HASH>..<HASH> 100644 --- a/react-mixin-manager.js +++ b/react-mixin-manager.js @@ -48,29 +48,30 @@ * @param the mixin name */ function addTo(name) { - if (!index[name]) { - var mixinName = name, - mixinParams, - ...
bug fix: include dependencies when mixin parameters are used
jhudson8_react-mixin-manager
train
fafc1903614e96f6ee35e22ea95fffadc11e4b68
diff --git a/dallinger/command_line.py b/dallinger/command_line.py index <HASH>..<HASH> 100755 --- a/dallinger/command_line.py +++ b/dallinger/command_line.py @@ -692,7 +692,7 @@ def bot(app): (id, tmp) = setup_experiment() from dallinger_experiment import Bot host = app_name(app) - wo...
use random id for worker, to allow running the bot repeatedly
Dallinger_Dallinger
train
f142223a9b5ebf78a6da60c6ca8c8f081608d0a2
diff --git a/tests/end2end/test_port.py b/tests/end2end/test_port.py index <HASH>..<HASH> 100644 --- a/tests/end2end/test_port.py +++ b/tests/end2end/test_port.py @@ -59,15 +59,20 @@ def test_port_find_list(dpm_mode_cpcs): # noqa: F811 session = cpc.manager.session - # Pick an adapter and port - ...
End2end tests: Fixes for ports, storage volumes
zhmcclient_python-zhmcclient
train
58e0753c10c8ab85384c0d2f9ab5c3612f5a71d1
diff --git a/src/DI/FormsExtension.php b/src/DI/FormsExtension.php index <HASH>..<HASH> 100644 --- a/src/DI/FormsExtension.php +++ b/src/DI/FormsExtension.php @@ -198,7 +198,14 @@ class FormsExtension extends CompilerExtension ->addTag(ValidatorExtension::TAG_LOADER); } - if ($this->g...
Move Twig path initialization to loadConfiguration
Arachne_Forms
train
42ca84b1266de3f8465a0e6cc5e96bee8f888c57
diff --git a/Configuration/TCA/tx_styleguide_elements_basic.php b/Configuration/TCA/tx_styleguide_elements_basic.php index <HASH>..<HASH> 100644 --- a/Configuration/TCA/tx_styleguide_elements_basic.php +++ b/Configuration/TCA/tx_styleguide_elements_basic.php @@ -292,11 +292,12 @@ return [ ], 'input_28...
[TASK] input_<I>: Add default=null for a fully working solution on new records
TYPO3_styleguide
train
613af6833773760a250da151cade630582734ac8
diff --git a/flask_redis.py b/flask_redis.py index <HASH>..<HASH> 100644 --- a/flask_redis.py +++ b/flask_redis.py @@ -47,7 +47,20 @@ def parse_url(url): hostname = split.hostname path = split.path password = split.password - port = split.port + try: + port = split.port + except ValueErro...
Windows fix. The stdlib urlsplit doesn't really work on Windows. It doesn't handle Windows file paths correctly. Introduced a work around when running on Windows to fix this bug that is not actually my fault.
Robpol86_Flask-Redis-Helper
train
da196d3c0c9e424ef5dcfd2d8ca583f823a500fc
diff --git a/sum.go b/sum.go index <HASH>..<HASH> 100644 --- a/sum.go +++ b/sum.go @@ -73,6 +73,17 @@ func sumBlake2s(data []byte, size int) ([]byte, error) { return d[:], nil } func sumBlake2b(data []byte, size int) ([]byte, error) { + // special case these lengths to avoid allocations. + switch size { + case 32: ...
feat: reduce blake2b allocations by special-casing the <I>/<I> variants These special-case functions don't allocate internally.
multiformats_go-multihash
train
e0848b69b61d89e0c10e1fb80e60e3af886b7cac
diff --git a/lib/puppet.rb b/lib/puppet.rb index <HASH>..<HASH> 100644 --- a/lib/puppet.rb +++ b/lib/puppet.rb @@ -192,7 +192,6 @@ module Puppet { :environments => Puppet::Environments::Cached.new(*loaders) -# :environments => Puppet::Environments::Combined.new(*loaders) } end diff --git ...
(PUP-<I>) Remove dead code, fix documentation. This fixes a number of comments from review.
puppetlabs_puppet
train
9483822c2e5e9a3c1a4a5dd5426265bac91ea56a
diff --git a/currency_converter/currency_converter.py b/currency_converter/currency_converter.py index <HASH>..<HASH> 100644 --- a/currency_converter/currency_converter.py +++ b/currency_converter/currency_converter.py @@ -285,7 +285,14 @@ class CurrencyConverter(object): def convert(self, amount, currency, new_cu...
Expand the docstring for CurrencyConverter.convert Elaborate on the arguments and their types.
alexprengere_currencyconverter
train
033a0f208d82f2cd893659f310bc8e3c08f33842
diff --git a/bibliopixel/drivers/serial/devices.py b/bibliopixel/drivers/serial/devices.py index <HASH>..<HASH> 100644 --- a/bibliopixel/drivers/serial/devices.py +++ b/bibliopixel/drivers/serial/devices.py @@ -50,7 +50,7 @@ class Devices(object): device, version = self.devices[id] else: - ...
Fix error reporting issue on serial.Devices
ManiacalLabs_BiblioPixel
train
c638ffc99db97dc784782d3ffa9a053ba3a10ef9
diff --git a/MatisseComponents/Handlers/ImageFieldHandler.php b/MatisseComponents/Handlers/ImageFieldHandler.php index <HASH>..<HASH> 100644 --- a/MatisseComponents/Handlers/ImageFieldHandler.php +++ b/MatisseComponents/Handlers/ImageFieldHandler.php @@ -42,19 +42,14 @@ class ImageFieldHandler implements ModelControlle...
Improved submodel support for files upload.
electro-modules_matisse-components
train
032f6a5cf4ed1389e0017d282c5a5a4765c85d2b
diff --git a/pycoin/contrib/msg_signing.py b/pycoin/contrib/msg_signing.py index <HASH>..<HASH> 100644 --- a/pycoin/contrib/msg_signing.py +++ b/pycoin/contrib/msg_signing.py @@ -26,13 +26,13 @@ signature_template = '''\ def parse_signed_message(msg_in): """ - Take an "armoured" message and split into th...
Make a few things more consistent.
richardkiss_pycoin
train
82b01c86441cb553175a330e674a3ea75d045411
diff --git a/glue/lal.py b/glue/lal.py index <HASH>..<HASH> 100644 --- a/glue/lal.py +++ b/glue/lal.py @@ -430,9 +430,9 @@ class CacheEntry(object): Return a segmentlistdict object describing the instruments and time spanned by this CacheEntry. """ - if "," in self.observatory: + if observatory and "," in se...
Fix CacheEntry.to_segmentlistdict() for case when observatory attribute is None.
gwastro_pycbc-glue
train
1c609396f868a912fa7e80e82dd273df06ff8f30
diff --git a/tcex/service/service.py b/tcex/service/service.py index <HASH>..<HASH> 100644 --- a/tcex/service/service.py +++ b/tcex/service/service.py @@ -112,6 +112,7 @@ class Service(object): playbook.db.key = session_id playbook.output_variables = config.get('tc_playbook_out_variabl...
+ added thread id to logger, removed redundant call in service.
ThreatConnect-Inc_tcex
train
7dc638f6ac77d40791edd1ffde995d0746e14bf6
diff --git a/Form/WordResponseType.php b/Form/WordResponseType.php index <HASH>..<HASH> 100755 --- a/Form/WordResponseType.php +++ b/Form/WordResponseType.php @@ -12,7 +12,7 @@ class WordResponseType extends AbstractType { $builder ->add('response', 'text') - ->add('score', 'text')...
[ExoBundle] change layout
claroline_Distribution
train
81b978765cc1909de6c861bd6e0b9f72c1567ac2
diff --git a/test/gir_ffi/builders/argument_builder_test.rb b/test/gir_ffi/builders/argument_builder_test.rb index <HASH>..<HASH> 100644 --- a/test/gir_ffi/builders/argument_builder_test.rb +++ b/test/gir_ffi/builders/argument_builder_test.rb @@ -286,7 +286,7 @@ describe GirFFI::Builders::ArgumentBuilder do it...
Fix tests to deal with changed argument names
mvz_gir_ffi
train
04b6c0c4f27623d778956ae3500138651c660f94
diff --git a/lib/cliver.rb b/lib/cliver.rb index <HASH>..<HASH> 100644 --- a/lib/cliver.rb +++ b/lib/cliver.rb @@ -26,7 +26,7 @@ module Cliver false rescue Assertion::DependencyNotMet => error # Cliver::Assertion::VersionMismatch -> 'Version Mismatch' - reason = error.class.name.split('::').last.gsub(/(...
style fix: use single quotes where possible
yaauie_cliver
train
1512578ca57caae8309e290f760cc1a333ef0d8c
diff --git a/examples/OnyxSampler/App.js b/examples/OnyxSampler/App.js index <HASH>..<HASH> 100644 --- a/examples/OnyxSampler/App.js +++ b/examples/OnyxSampler/App.js @@ -37,13 +37,13 @@ enyo.kind({ {tag: "br"}, {classes: "divider", content: "Buttons"}, {classes: "tools", defaultKind: "onyx.Button", compone...
Remove trailing commas from OnyxSampler
enyojs_onyx
train
acc224a8a468fc8896ff49215b029c7ea2cfe109
diff --git a/moa/src/main/java/moa/tasks/active/ALMultiParamTask.java b/moa/src/main/java/moa/tasks/active/ALMultiParamTask.java index <HASH>..<HASH> 100644 --- a/moa/src/main/java/moa/tasks/active/ALMultiParamTask.java +++ b/moa/src/main/java/moa/tasks/active/ALMultiParamTask.java @@ -20,6 +20,7 @@ package moa.tasks....
Only modify dump file option if a file was specified
Waikato_moa
train
c0356e28c2dbf5856e587ad84794229dce910249
diff --git a/liquibase-core/src/main/java/liquibase/util/DependencyUtil.java b/liquibase-core/src/main/java/liquibase/util/DependencyUtil.java index <HASH>..<HASH> 100644 --- a/liquibase-core/src/main/java/liquibase/util/DependencyUtil.java +++ b/liquibase-core/src/main/java/liquibase/util/DependencyUtil.java @@ -3,7 +...
Use LinkedHashMap for a deterministic iteration order (cherry picked from commit <I>bf0fbc<I>fb1cdfcc5a7d<I>bdbcdc0)
liquibase_liquibase
train
38083a420a2fc8f5bf57775566d504bd04f94a29
diff --git a/packages/veritone-widgets/src/widgets/EngineOutputExport/EngineCategoryConfig.js b/packages/veritone-widgets/src/widgets/EngineOutputExport/EngineCategoryConfig.js index <HASH>..<HASH> 100644 --- a/packages/veritone-widgets/src/widgets/EngineOutputExport/EngineCategoryConfig.js +++ b/packages/veritone-widg...
VTN-<I> - Changed root elements of the components to use data-veritone-component instead of data-veritone-element
veritone_veritone-sdk
train
ea13aa5cc228cd13571115f34c880b90a6b51e36
diff --git a/src/Symfony/Installer/NewCommand.php b/src/Symfony/Installer/NewCommand.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Installer/NewCommand.php +++ b/src/Symfony/Installer/NewCommand.php @@ -381,18 +381,18 @@ class NewCommand extends DownloadCommand $name = $name.'/'.$name; } - ...
Minor tweaks for the previous commit.
symfony_symfony-installer
train
b3c923b816fffbf16972a6c02580004b3c676f3b
diff --git a/aeron-driver/src/main/java/io/aeron/driver/PublicationImage.java b/aeron-driver/src/main/java/io/aeron/driver/PublicationImage.java index <HASH>..<HASH> 100644 --- a/aeron-driver/src/main/java/io/aeron/driver/PublicationImage.java +++ b/aeron-driver/src/main/java/io/aeron/driver/PublicationImage.java @@ -8...
[Java] Update active transport count when a destination is removed.
real-logic_aeron
train
d0cb797c5f4782032b6196cf7603afbb5ce756e9
diff --git a/src/connection/social/index.js b/src/connection/social/index.js index <HASH>..<HASH> 100644 --- a/src/connection/social/index.js +++ b/src/connection/social/index.js @@ -45,7 +45,7 @@ export const STRATEGIES = { "weibo": "新浪微博" }; -const { get, initNS } = dataFns(["social"]); +const { get, tget, init...
allow to override socialButtonStyle
auth0_lock
train
c0f622638308412cf59449b02581b1ee587a483b
diff --git a/dev/fattest.simplicity/src/componenttest/topology/utils/ExternalTestServiceDockerClientStrategy.java b/dev/fattest.simplicity/src/componenttest/topology/utils/ExternalTestServiceDockerClientStrategy.java index <HASH>..<HASH> 100644 --- a/dev/fattest.simplicity/src/componenttest/topology/utils/ExternalTestS...
Issue <I>: Allow local docker on windows
OpenLiberty_open-liberty
train
60f297e34104d45bafc75f7915f7c569cc941248
diff --git a/ecs-init/docker/docker.go b/ecs-init/docker/docker.go index <HASH>..<HASH> 100644 --- a/ecs-init/docker/docker.go +++ b/ecs-init/docker/docker.go @@ -36,6 +36,8 @@ const ( defaultDockerEndpoint = "/var/run" // networkMode specifies the networkmode to create the agent container networkMode = "host" + ...
Support docker running with userns-remap
aws_amazon-ecs-agent
train
85d69efbce70d022d64dbed84a6cc78a0de70e7a
diff --git a/yelp_kafka_tool/kafka_consumer_manager/commands/copy_group.py b/yelp_kafka_tool/kafka_consumer_manager/commands/copy_group.py index <HASH>..<HASH> 100644 --- a/yelp_kafka_tool/kafka_consumer_manager/commands/copy_group.py +++ b/yelp_kafka_tool/kafka_consumer_manager/commands/copy_group.py @@ -30,6 +30,19 @...
Copy offsets for given topic partitions only to given destination group
Yelp_kafka-utils
train
dffc02a12600ff670d4278e1e9fe94f481516586
diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCodeSystemDstu3.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/dstu3/BaseJpaResourceProviderCodeSystemDstu3.java index <HASH>..<HASH> 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/u...
Missing fixes for DSTU3 and R5.
jamesagnew_hapi-fhir
train
601bbfc3d8ee7ba78a7786eb0ee16aadb8d5d4e3
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -30,7 +30,7 @@ module.exports = function koaBetterRatelimit (opts) { duration: 1000 * 60 * 60 * 24, limited: 'Too Many Requests', max: 500 - }, options) + }, opts) const id = ctx.identifier ...
fix options assignment (#<I>) (#<I>)
tunnckoCore_koa-better-ratelimit
train
117c8b67591763f928b437bc077a4471d37a3b34
diff --git a/seleniumbase/fixtures/base_case.py b/seleniumbase/fixtures/base_case.py index <HASH>..<HASH> 100755 --- a/seleniumbase/fixtures/base_case.py +++ b/seleniumbase/fixtures/base_case.py @@ -89,6 +89,8 @@ class BaseCase(unittest.TestCase): element = page_actions.wait_for_element_visible( s...
Scroll to page objects before interacting with them
seleniumbase_SeleniumBase
train
2bd75974bae61159fd61b6472fa6dbfa105e4b86
diff --git a/src/main/java/com/github/fge/grappa/stack/DefaultValueStack.java b/src/main/java/com/github/fge/grappa/stack/DefaultValueStack.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/fge/grappa/stack/DefaultValueStack.java +++ b/src/main/java/com/github/fge/grappa/stack/DefaultValueStack.java @@ -1...
ValueStackBase: implement checkIndex() No reason for it to be left to implementations. Only .size() is required.
fge_grappa
train
8c7863298ba7c87aedacbe7131b753d386205c6f
diff --git a/treeswift/Tree.py b/treeswift/Tree.py index <HASH>..<HASH> 100644 --- a/treeswift/Tree.py +++ b/treeswift/Tree.py @@ -257,7 +257,7 @@ def read_tree_newick(tree_string): Returns: Tree: The tree represented by `tree_string` ''' - ts = tree_string; t = Tree(); n = t.root + ts = tree_s...
Strip tree string before trying to parse
niemasd_TreeSwift
train
6ae006c32d835d7cb6e5bcbc70251eca270a4269
diff --git a/src/frontend/org/voltdb/dbmonitor/js/voltdb.ui.js b/src/frontend/org/voltdb/dbmonitor/js/voltdb.ui.js index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/dbmonitor/js/voltdb.ui.js +++ b/src/frontend/org/voltdb/dbmonitor/js/voltdb.ui.js @@ -268,7 +268,7 @@ var loadPage = function (serverName, portid) ...
VMC-<I>: AAUIW catalog report in VMC updated in IE.
VoltDB_voltdb
train
9b77270502908736faca41b06f535e893efad0c4
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index <HASH>..<HASH> 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8, 3.9.0-rc - 3.9, pypy3] + ...
Removed code relevant to versions below <I>
lark-parser_lark
train
6f420daa1c1f248740305986683a028b3640a289
diff --git a/src/view/items/Partial.js b/src/view/items/Partial.js index <HASH>..<HASH> 100644 --- a/src/view/items/Partial.js +++ b/src/view/items/Partial.js @@ -40,6 +40,10 @@ export default class Partial extends Mustache { }).bind(); } + destroyed () { + this.fragment.destroyed(); + } + detach () { retu...
amending extra destruction cases because git hates me today
ractivejs_ractive
train
438ab2e1e053db8eb503338d64d4988f2f581d3c
diff --git a/lib/deas/sinatra_app.rb b/lib/deas/sinatra_app.rb index <HASH>..<HASH> 100644 --- a/lib/deas/sinatra_app.rb +++ b/lib/deas/sinatra_app.rb @@ -109,7 +109,7 @@ module Deas # `self` is the sinatra call in this context if env['sinatra.error'] env['deas.error'] = if env['sinat...
return the request method in Deas::NotFound error messages This is to give more context on the error and why it is not found. You may have routed the path but not with the method and that is why it is not found. The error looks something like this: ``` GET /not-found-path (backtrace...) ```
redding_deas
train
da3f4dd401f9f1a1aff8aefae350be5e4b7e6049
diff --git a/satpy/readers/seviri_l1b_native.py b/satpy/readers/seviri_l1b_native.py index <HASH>..<HASH> 100644 --- a/satpy/readers/seviri_l1b_native.py +++ b/satpy/readers/seviri_l1b_native.py @@ -172,9 +172,9 @@ class NativeMSGFileHandler(BaseFileHandler, SEVIRICalibrationHandler): self.mda['channel_list'] ...
Update SEVIRI Native reader to follow same platform id format as the HRIT reader, allows calibration of the data.
pytroll_satpy
train
3960f6d38252e837be83341ce43e42d13fbe4ad3
diff --git a/lib/moonshine/manifest/rails.rb b/lib/moonshine/manifest/rails.rb index <HASH>..<HASH> 100644 --- a/lib/moonshine/manifest/rails.rb +++ b/lib/moonshine/manifest/rails.rb @@ -31,6 +31,10 @@ class Moonshine::Manifest::Rails < Moonshine::Manifest :require => reference(:package, "whois"), ...
install rubygems and rails
railsmachine_shadow_puppet
train
33044412c9174d6e0de44b52bcf6bf5a2a3dda6d
diff --git a/src/Admin/Traits/AdminImage.php b/src/Admin/Traits/AdminImage.php index <HASH>..<HASH> 100644 --- a/src/Admin/Traits/AdminImage.php +++ b/src/Admin/Traits/AdminImage.php @@ -2,22 +2,23 @@ namespace Despark\Cms\Admin\Traits; -use Image; -use File as FileFacade; -use Despark\Cms\Models\File\Temp; -use I...
Revert image manipulated event. Cannot serialize that for queues
despark_ignicms
train
9af15d7b119f5fafb848963281a9297ca2da3d32
diff --git a/inc/wp-admin.php b/inc/wp-admin.php index <HASH>..<HASH> 100644 --- a/inc/wp-admin.php +++ b/inc/wp-admin.php @@ -6,9 +6,14 @@ */ -/* UnderStrap news dashboard widget */ +/* Actions etc. */ + +add_action('wp_dashboard_setup', 'understrap_dashboard_news_meta_box'); +add_action('admin_menu', 'understap...
Update wp-admin.php
understrap_understrap
train
342298c4f9fcb2874d4017219a472ddf37dbfc6b
diff --git a/lib/puppet/util/settings.rb b/lib/puppet/util/settings.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/util/settings.rb +++ b/lib/puppet/util/settings.rb @@ -386,7 +386,7 @@ class Puppet::Util::Settings when String, Integer, Float # nothing klass = Setting else - ...
Bug: Broken codepath in util/settings An incorrect variable name is used in an error message, causing the error to throw an error. This can't appear in the wild, since it's actually just an argument check for the defaults.rb file.
puppetlabs_puppet
train