hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
7842a8fff65528cb8b845586418a56258f94a9c4
diff --git a/Dispatcher.php b/Dispatcher.php index <HASH>..<HASH> 100644 --- a/Dispatcher.php +++ b/Dispatcher.php @@ -40,9 +40,12 @@ abstract class QM_Dispatcher { public function output( QM_Collector $collector ) { $filter = 'query_monitor_output_' . $this->id . '_' . $collector->id; - $output = apply_filte...
A dispatcher can return boolean `false` for a particular collector in order to not output it
johnbillion_query-monitor
train
php
be4c88692ea48595ba1317c2517431b891b0b1f0
diff --git a/erizo_controller/erizoController/roomController.js b/erizo_controller/erizoController/roomController.js index <HASH>..<HASH> 100644 --- a/erizo_controller/erizoController/roomController.js +++ b/erizo_controller/erizoController/roomController.js @@ -23,14 +23,14 @@ exports.RoomController = function (spec) ...
Corrected keepalive variable name
lynckia_licode
train
js
cc519adcfca5cdf447e482aec705b81694d62bdd
diff --git a/public/app/features/dashboard/shareSnapshotCtrl.js b/public/app/features/dashboard/shareSnapshotCtrl.js index <HASH>..<HASH> 100644 --- a/public/app/features/dashboard/shareSnapshotCtrl.js +++ b/public/app/features/dashboard/shareSnapshotCtrl.js @@ -41,10 +41,13 @@ function (angular, _) { $scope.cre...
(snapshot) restrict saving original url for local snapshot
grafana_grafana
train
js
5067d5232f5358456d4b8f17902d338174869a60
diff --git a/lib/proxy.js b/lib/proxy.js index <HASH>..<HASH> 100644 --- a/lib/proxy.js +++ b/lib/proxy.js @@ -69,7 +69,7 @@ module.exports.createProxy = function (host, ports, options, reqCallback) { } // Alter accept-encoding header to ensure plain-text response - req.headers['accept-encodi...
Add gzip support for proxy + spec
BrowserSync_browser-sync
train
js
cfb58f6cdc129976b2dc2d218ad025fcac7d1ed8
diff --git a/tests/test_mongoalchemy_object.py b/tests/test_mongoalchemy_object.py index <HASH>..<HASH> 100644 --- a/tests/test_mongoalchemy_object.py +++ b/tests/test_mongoalchemy_object.py @@ -95,6 +95,10 @@ class MongoAlchemyObjectTestCase(BaseTestCase): def should_be_able_to_create_two_decoupled_mongoalchemy...
Added test reproducing issue #<I>
cobrateam_flask-mongoalchemy
train
py
52241159703b6a4aa272da8eb44a8ea818d5ace8
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -24,7 +24,7 @@ var long_months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] - var short_months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'J...
whoops! short_months doesn't have october! unit tests ftw
nkcmr_phpdate
train
js
a8043d1abc5747d880daf16f60c61b67cc32c154
diff --git a/profiling/stats.py b/profiling/stats.py index <HASH>..<HASH> 100644 --- a/profiling/stats.py +++ b/profiling/stats.py @@ -308,7 +308,6 @@ class RecordingStatistics(RecordingStatistic, Statistics): self.wall_time = max(0, self.wall() - self._wall_time_started) except AttributeError: ...
RecordingStatistics doesn't increase own_count
what-studio_profiling
train
py
97459947163a631e5aa1dd3635d3adc7e2fadde2
diff --git a/menuconfig.py b/menuconfig.py index <HASH>..<HASH> 100755 --- a/menuconfig.py +++ b/menuconfig.py @@ -1610,8 +1610,8 @@ def _update_menu(): # changed. Changing a value might change which items in the menu are # visible. # - # Tries to preserve the location of the cursor when items disappe...
menuconfig: Make comment re. preserving cursor position more accurate Items being added above the selected item would mess with the cursor position too, if we didn't compensate.
ulfalizer_Kconfiglib
train
py
7db14bb824a47816e0c14e8d6f747fed0b1af140
diff --git a/lib/connection.js b/lib/connection.js index <HASH>..<HASH> 100644 --- a/lib/connection.js +++ b/lib/connection.js @@ -63,8 +63,8 @@ Connection.prototype.open = function (callback) { this.netClient.connect(this.options.port, this.options.host, function() { self.removeListener('error', errorConnectin...
Changed from keyspace to all lower case to fix #3
datastax_nodejs-driver
train
js
c3e0fb27eda5e1e3b3d8dd10c0da23981c2a0985
diff --git a/keyboard/_nixkeyboard.py b/keyboard/_nixkeyboard.py index <HASH>..<HASH> 100644 --- a/keyboard/_nixkeyboard.py +++ b/keyboard/_nixkeyboard.py @@ -64,6 +64,7 @@ def build_tables(): to_name[(scan_code, modifiers)] = name if is_keypad: keypad_scan_codes.add(scan_code) + ...
Allow sending of keypad events on nix
boppreh_keyboard
train
py
8a556df77076390ccec003a0d51cc5ed1792fd73
diff --git a/detect.go b/detect.go index <HASH>..<HASH> 100644 --- a/detect.go +++ b/detect.go @@ -10,23 +10,26 @@ import ( ) // The Host type represents all the supported host types. -type Host int +type Host string const ( // HostNull reprents a null host. - HostNull Host = iota + HostNull Host = "" // H...
Host type is now a string
kidoman_embd
train
go
3bbe6420e87a61e32fca28a0ba4cd9a3c1ed0a9e
diff --git a/flask_appbuilder/api/__init__.py b/flask_appbuilder/api/__init__.py index <HASH>..<HASH> 100644 --- a/flask_appbuilder/api/__init__.py +++ b/flask_appbuilder/api/__init__.py @@ -517,7 +517,7 @@ class BaseApi(object): """ Sets initialized inner views """ - pass + ...
[api] Exempt code coverage from unreachable code
dpgaspar_Flask-AppBuilder
train
py
bcca4602de0bd949c1bcb7648681fd14b47046cc
diff --git a/src/sortable.js b/src/sortable.js index <HASH>..<HASH> 100644 --- a/src/sortable.js +++ b/src/sortable.js @@ -5,8 +5,8 @@ */ angular.module('ui.sortable', []) .value('uiSortableConfig',{}) - .directive('uiSortable', [ 'uiSortableConfig', - function(uiSortableConfig) { + .directive('uiSortable...
Moved inside 'if (ngModel){}' any code that calls combineCallbacks and added $log.info() message in case ngModel is falsy. Possibly closes #<I> and #<I>.
angular-ui_ui-sortable
train
js
fff22348235e4891de770af6d9e116dece802b6f
diff --git a/discord/abc.py b/discord/abc.py index <HASH>..<HASH> 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -755,7 +755,7 @@ class GuildChannel: Returns a list of all active instant invites from this channel. - You must have :attr:`~Permissions.manage_guild` to get this information. + ...
Fix wrong documented permission for GuildChannel.invites() I tested it just now, and manage_guild is not the permission you need to fetch invites from a given channel. You need manage_channels. Note that this isn't the same as Guild.invites(), which DOES use manage_guild.
Rapptz_discord.py
train
py
f6f84db25392d823c0ca4b6c3fcc34d5936f63b3
diff --git a/pandas/io/tests/test_data.py b/pandas/io/tests/test_data.py index <HASH>..<HASH> 100644 --- a/pandas/io/tests/test_data.py +++ b/pandas/io/tests/test_data.py @@ -445,7 +445,10 @@ class TestFred(tm.TestCase): end = datetime(2013, 1, 27) received = web.DataReader("GDP", "fred", start, end...
NETWORK: change failing FRED test
pandas-dev_pandas
train
py
d316649247aa82dccfa4a601fb61a9ae6b9d5021
diff --git a/src/Components.php b/src/Components.php index <HASH>..<HASH> 100644 --- a/src/Components.php +++ b/src/Components.php @@ -219,6 +219,13 @@ final class Components // -------------------------------------------------------------------------- + /** + * Returns an instance of the app as a compo...
chore: Added docbloc
nails_common
train
php
5ed5dffd48f2b40c67af63564b2cf6749038c02c
diff --git a/src/MailhogClient.php b/src/MailhogClient.php index <HASH>..<HASH> 100644 --- a/src/MailhogClient.php +++ b/src/MailhogClient.php @@ -30,7 +30,7 @@ class MailhogClient { $this->httpClient = $client; $this->requestFactory = $requestFactory; - $this->baseUri = $baseUri; + ...
Remove trailing slashes from base URL In order to prevent double slashes in URL causing Mailhog to send redirect responses breaking everything.
rpkamp_mailhog-client
train
php
573dc6bd6b5c7c3c9ee08555b2226cca5e91978b
diff --git a/js/btcmarkets.js b/js/btcmarkets.js index <HASH>..<HASH> 100644 --- a/js/btcmarkets.js +++ b/js/btcmarkets.js @@ -695,7 +695,7 @@ module.exports = class btcmarkets extends Exchange { const status = this.parseOrderStatus (this.safeString (order, 'status')); let cost = undefined; i...
[btcmarkets] build cost calc
ccxt_ccxt
train
js
6950a788c01da31cbd9e7236992afe80e2c7083f
diff --git a/src/Algebra.php b/src/Algebra.php index <HASH>..<HASH> 100644 --- a/src/Algebra.php +++ b/src/Algebra.php @@ -332,11 +332,9 @@ class Algebra return [$z₁, $z₂, $z₃]; } - // One root is real, and two are are complex conjugates - if ($D > 0) { - $z₁ = $S + $T -...
Minor change to flow of cubic equation.
markrogoyski_math-php
train
php
606cca28990e1df737d16d0e44c0a3789246cbae
diff --git a/src/Options/class-options-manager.php b/src/Options/class-options-manager.php index <HASH>..<HASH> 100644 --- a/src/Options/class-options-manager.php +++ b/src/Options/class-options-manager.php @@ -231,7 +231,7 @@ class Options_Manager { public function should_nag() { // Option is stored as yes/no. ...
Ensure default should nag value is set
ssnepenthe_soter
train
php
6e76639992ae28f7e0fd1b94f43fb59a53060616
diff --git a/spyder/widgets/explorer.py b/spyder/widgets/explorer.py index <HASH>..<HASH> 100644 --- a/spyder/widgets/explorer.py +++ b/spyder/widgets/explorer.py @@ -437,9 +437,6 @@ class DirView(QTreeView): actions.append(None) if fnames and all([osp.isdir(_fn) for _fn in fnames]): ...
Remove global options from context menu Remove the following items from the file explorer context menu: * Edit filename filters... * Show all files * Show icons and text
spyder-ide_spyder
train
py
782c293f587a5e11cea19224d58cdfb453a605a6
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -178,10 +178,10 @@ class NoisePeer extends stream.Duplex { } _destroy (err, callback) { - this._handshake.destroy() + if (this._handshake.finished === false) this._handshake.destroy() if (this._transport) { ...
Only destroy handshake if not finished
emilbayes_noise-peer
train
js
0d7b2fdfb7b9e2c37fe7ede1ababab8f4dd4c442
diff --git a/src/observatoryControl/gpsFix.py b/src/observatoryControl/gpsFix.py index <HASH>..<HASH> 100755 --- a/src/observatoryControl/gpsFix.py +++ b/src/observatoryControl/gpsFix.py @@ -69,8 +69,8 @@ def fetchGPSfix(): 'longitude': gpsp.longitude, 'altitude': gpsp.altitude...
Increased time out when waiting for GPS fix to <I> secs
camsci_meteor-pi
train
py
6f161a7c77fe4dc123d7d99dbbf12713cba66f5d
diff --git a/salt/states/service.py b/salt/states/service.py index <HASH>..<HASH> 100644 --- a/salt/states/service.py +++ b/salt/states/service.py @@ -404,7 +404,13 @@ def enabled(name, **kwargs): name The name of the init or rc script used to manage the service ''' - return _enable(name, None, **...
Re-add stateful return for service.enabled and service.disabled Modifies `service.enabled` and `service.disabled` so they work properly with the changes to the return value of `_enable()` and `_disable()`.
saltstack_salt
train
py
9588d3f87285dd93e9bfb0b949d0b2d5e1b75bf1
diff --git a/app/assets/javascripts/peoplefinder/wordlimit.js b/app/assets/javascripts/peoplefinder/wordlimit.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/peoplefinder/wordlimit.js +++ b/app/assets/javascripts/peoplefinder/wordlimit.js @@ -1,3 +1,4 @@ +/* global jQuery */ jQuery(function ($){ 'use st...
Conform to jshint settings
ministryofjustice_peoplefinder
train
js
c531a3cc1e12118fb158366d9514e99573320440
diff --git a/installer/install.js b/installer/install.js index <HASH>..<HASH> 100644 --- a/installer/install.js +++ b/installer/install.js @@ -12,6 +12,10 @@ const platform = mapPlatform(process.env.NW_PLATFORM || process.platform); const arch = mapArch(process.env.NW_ARCH || process.arch); download(version, platfo...
Update to fix file permissions on driver.
fleg_nw-chromedriver
train
js
eadfdbdbde3d4d8363b69196bbe4dded956982c3
diff --git a/docs/examples/models_recursive.py b/docs/examples/models_recursive.py index <HASH>..<HASH> 100644 --- a/docs/examples/models_recursive.py +++ b/docs/examples/models_recursive.py @@ -1,10 +1,10 @@ -from typing import List +from typing import List, Optional from pydantic import BaseModel class Foo(Base...
Fix mypy error in models_recursive.py example. (#<I>)
samuelcolvin_pydantic
train
py
4f6c61e67eb0b5db0d344efbb026eb759054c2bc
diff --git a/lib/discordrb/api.rb b/lib/discordrb/api.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/api.rb +++ b/lib/discordrb/api.rb @@ -180,6 +180,16 @@ module Discordrb::API ) end + # Get a server's channels list + def channels(token, server_id) + request( + __method__, + :get, + "...
Add support for server's channel endpoint This change adds support for the channels endpoint for a server. The authorization token and server_id need to be supplied for this method.
meew0_discordrb
train
rb
2d194de6d0267e3312407506723fdf033f31a2d2
diff --git a/PHPCI/Plugin/Email.php b/PHPCI/Plugin/Email.php index <HASH>..<HASH> 100644 --- a/PHPCI/Plugin/Email.php +++ b/PHPCI/Plugin/Email.php @@ -108,7 +108,7 @@ class Email implements \PHPCI\Plugin if (is_array($ccList) && count($ccList)) { foreach ($ccList as $address) { - ...
Fixed code in CC mails.
dancryer_PHPCI
train
php
c93e1e21774be13a5c6585a42acef65db6892dd4
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/graph/traversal/step/map/MaxGlobalStep.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/graph/traversal/step/map/MaxGlobalStep.java index <HASH>..<HASH> 100644 --- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin...
replaced Double.MIN_VALUE with -Double.MAX_VALUE
apache_tinkerpop
train
java
d77ba7469951bd06dc96f2d1591ff4a6027c0b7a
diff --git a/spec/dummy/config/routes.rb b/spec/dummy/config/routes.rb index <HASH>..<HASH> 100644 --- a/spec/dummy/config/routes.rb +++ b/spec/dummy/config/routes.rb @@ -1,5 +1,5 @@ Rails.application.routes.draw do + mount NoCms::Admin::Pages::Engine => "/admin" mount NoCms::Pages::Engine => "/" - mount NoCms:...
Solved a routing misconception Mounting admin#pages in admin/pages would duplicate pages in the path
simplelogica_nocms-admin-pages
train
rb
d97f6cd0d8f02f345d2e3f30c75c1d684d1616d7
diff --git a/cmd/integration/integration.go b/cmd/integration/integration.go index <HASH>..<HASH> 100644 --- a/cmd/integration/integration.go +++ b/cmd/integration/integration.go @@ -19,7 +19,6 @@ limitations under the License. package main import ( - "encoding/json" "io/ioutil" "net" "net/http" @@ -238,7 +23...
Integration test was not decoding using api.Scheme
kubernetes_kubernetes
train
go
7cd247453f5ef8b628ef75796d2dac74221d81c8
diff --git a/tests/test_tree.py b/tests/test_tree.py index <HASH>..<HASH> 100644 --- a/tests/test_tree.py +++ b/tests/test_tree.py @@ -175,8 +175,11 @@ class BGTreeTestCase(unittest.TestCase): def test_get_tree_consistent_multicolors_unrooted_no_wgd_correct(self): # if `rooted` argument is set to `False`,...
updated the test suite to cover the case when root of the tree is `None`, but tree consistent colors are requested for a unrooted tree with no account for wgd, and so can be done with any root.
aganezov_bg
train
py
5a974ce75ab481df6b07958ad3f958eb0d6c1f4f
diff --git a/middleman-cli/lib/middleman-cli/console.rb b/middleman-cli/lib/middleman-cli/console.rb index <HASH>..<HASH> 100644 --- a/middleman-cli/lib/middleman-cli/console.rb +++ b/middleman-cli/lib/middleman-cli/console.rb @@ -1,7 +1,9 @@ # CLI Module module Middleman::Cli + # Alias "c" to "console" + Base.map(...
added an alias for `console` command Almost every other command has an alias except `console`. Also the comment above the class definition wrongly said `console` was a command for creating new projects. Corrected appropriately
middleman_middleman
train
rb
4eb09bd8317583f21aad9532efcbe13ab22278dc
diff --git a/vault/expiration.go b/vault/expiration.go index <HASH>..<HASH> 100644 --- a/vault/expiration.go +++ b/vault/expiration.go @@ -307,7 +307,7 @@ func (m *ExpirationManager) Restore(errorFunc func()) (retErr error) { switch { case retErr == nil: - case errwrap.Contains(retErr, context.Canceled.Error()...
Use strings.Contains for error possibly coming from storage They may not well errwrap Fixes #<I>
hashicorp_vault
train
go
bf8ea20f09c0ec55fc1d6873c47b839f2c893f4e
diff --git a/test/test_f90nml.py b/test/test_f90nml.py index <HASH>..<HASH> 100644 --- a/test/test_f90nml.py +++ b/test/test_f90nml.py @@ -347,6 +347,7 @@ class Test(unittest.TestCase): test_nml.indent = '\t' self.assert_write(test_nml, 'types_indent_tab.nml') + self.assertRaises(ValueError, ...
Column width testing (not yet implemented; gg tdd)
marshallward_f90nml
train
py
8535310a022291d209ebd5bf62a8735f71261b4b
diff --git a/lib/athena.js b/lib/athena.js index <HASH>..<HASH> 100644 --- a/lib/athena.js +++ b/lib/athena.js @@ -58,7 +58,7 @@ async.map = function (/* hlog, */ arr, method, resultsHandler) { if (finished && Object.keys(waiting).length === 0 && typeof args.resultsHandler === 'function') { - args.resultsHand...
Send this context for all result handlers.
bretcope_odyssey
train
js
4fd7f2e4c0257b01bcc8750034cb44cc3dbceea6
diff --git a/lib/nats/server/options.rb b/lib/nats/server/options.rb index <HASH>..<HASH> 100644 --- a/lib/nats/server/options.rb +++ b/lib/nats/server/options.rb @@ -120,14 +120,11 @@ module NATSD def open_syslog return unless @options[:syslog] - unless Syslog.opened? - Syslog.open("#...
modified open_syslog and close_syslog method
nats-io_ruby-nats
train
rb
f0ed9c12a85ab3ccea3170c49e77aede31fdbb96
diff --git a/src/test/java/com/hubspot/dropwizard/guice/InjectedResourcesTest.java b/src/test/java/com/hubspot/dropwizard/guice/InjectedResourcesTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/hubspot/dropwizard/guice/InjectedResourcesTest.java +++ b/src/test/java/com/hubspot/dropwizard/guice/InjectedReso...
Make sure this is set up before the test runs
HubSpot_dropwizard-guice
train
java
10e50718c344b49f0551b3ad72dec674ffb81ea1
diff --git a/pinax/documents/views.py b/pinax/documents/views.py index <HASH>..<HASH> 100644 --- a/pinax/documents/views.py +++ b/pinax/documents/views.py @@ -159,7 +159,7 @@ def folder_share(request, pk): if not folder.can_share(request.user): raise Http404() form_kwargs = { - "colleagues": U...
Share with all users for now This is far from ideal. We need to make this a configurable thing that is a hookset with a default implementation so it can be defined at the site level before we consider this a stable release.
pinax_pinax-documents
train
py
21c1693bb8f999af50348f16821658841af3d70c
diff --git a/gocloud/main.go b/gocloud/main.go index <HASH>..<HASH> 100644 --- a/gocloud/main.go +++ b/gocloud/main.go @@ -35,7 +35,9 @@ func init() { func main() { if e := router.RunWithArgs(); e != nil { - log.Println("ERROR: " + e.Error()) + if e != cli.NoRouteError { + log.Println("ERROR: " + e.Error()) + ...
do not print error message on route not found error
dynport_gocloud
train
go
290866cb934ecddb377e2aef3873e8e930647802
diff --git a/railties/lib/rails/commands/command.rb b/railties/lib/rails/commands/command.rb index <HASH>..<HASH> 100644 --- a/railties/lib/rails/commands/command.rb +++ b/railties/lib/rails/commands/command.rb @@ -27,10 +27,6 @@ module Rails @@command_options[command_name] = options_to_parse end - ...
Move `command_name_for` to private section. Users shouldn't have to lookup the command name for a task. Put it in the private section, so it doesn't show up in any generated documentation.
rails_rails
train
rb
7a40d4efb67b7e51d7c190ebf4830dfa24760929
diff --git a/src/main/java/com/lmax/disruptor/LiteBlockingWaitStrategy.java b/src/main/java/com/lmax/disruptor/LiteBlockingWaitStrategy.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/lmax/disruptor/LiteBlockingWaitStrategy.java +++ b/src/main/java/com/lmax/disruptor/LiteBlockingWaitStrategy.java @@ -39,18 +39...
Remove trailing whitespace from LiteBlockingWaitStrategy. This was causing checkstyle to complain.
LMAX-Exchange_disruptor
train
java
620480bff664c9958561ccaa1b1fa522dc4b89c6
diff --git a/template/helper/Form.php b/template/helper/Form.php index <HASH>..<HASH> 100644 --- a/template/helper/Form.php +++ b/template/helper/Form.php @@ -455,7 +455,11 @@ class Form extends \lithium\template\Helper { if (is_array($name)) { return $this->_fields($name, $options); } - list(, $options, $te...
Bugfix for Form->config() field settings Fixed an issue where if you wanted to set different defaults through Form->config for different field types (field-checkbox, field-radio) these settings would be ignored. These settings are now recognised and if they are not set it defaults back to just field for its settings ...
UnionOfRAD_lithium
train
php
4b3afc086ccf60fcd206aeb7d0855adac0dfb26c
diff --git a/lib/cork/board.rb b/lib/cork/board.rb index <HASH>..<HASH> 100644 --- a/lib/cork/board.rb +++ b/lib/cork/board.rb @@ -1,3 +1,5 @@ +require 'colored' + module Cork # Provides support for UI output. Cork provides support for nested # sections of information and for a verbose mode. diff --git a/spec/bo...
Added tests for the `notice` Board method
CocoaPods_Cork
train
rb,rb
1a46b09920c990cf623d196e2907a03d604e53ff
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( long_description=readme + '\n\n' + history, author='Beau Barker', author_email='beauinmelbourne@gmail.com', - url='http://jsonrpcserver.readthedocs.org/', + url='https://jsonrpcserver...
Replaced the http readthedocs link with https.
bcb_jsonrpcserver
train
py
5e34084161e3a0dc9599dbe04e49de02af58b6d8
diff --git a/redisson/src/main/java/org/redisson/codec/DefenceModule.java b/redisson/src/main/java/org/redisson/codec/DefenceModule.java index <HASH>..<HASH> 100644 --- a/redisson/src/main/java/org/redisson/codec/DefenceModule.java +++ b/redisson/src/main/java/org/redisson/codec/DefenceModule.java @@ -24,7 +24,6 @@ imp...
Fixed - reference to avro module has been removed. #<I>
redisson_redisson
train
java
8fdccfb33c449cb544b88ffba79958c2e83f86f4
diff --git a/base/src/main/java/uk/ac/ebi/atlas/model/experiment/baseline/BaselineExperimentConfiguration.java b/base/src/main/java/uk/ac/ebi/atlas/model/experiment/baseline/BaselineExperimentConfiguration.java index <HASH>..<HASH> 100644 --- a/base/src/main/java/uk/ac/ebi/atlas/model/experiment/baseline/BaselineExperi...
Split menuFilterFactorTypes by commas
ebi-gene-expression-group_atlas
train
java
54c2e816019945b577f1c10dbc4254f636a27d5e
diff --git a/source/rafcon/utils/plugins.py b/source/rafcon/utils/plugins.py index <HASH>..<HASH> 100644 --- a/source/rafcon/utils/plugins.py +++ b/source/rafcon/utils/plugins.py @@ -36,11 +36,15 @@ def load_plugins(): dir_name, plugin_name = os.path.split(plugin_path.rstrip('/')) logger.info("Found p...
Print error when loading plugin with the same name It is currently not possible to load two plugins with the same folder name, e.g. ~/rafcon_dds/plugin and ~/rafcon_verification/plugin at the same time.
DLR-RM_RAFCON
train
py
8c08b65ac5f3b3c58c91383aeb526555ed297d18
diff --git a/stellar/command.py b/stellar/command.py index <HASH>..<HASH> 100644 --- a/stellar/command.py +++ b/stellar/command.py @@ -195,6 +195,7 @@ def init(): print else: db_name = url.rsplit('/', 1)[-1] + url = url.rsplit('/', 1)[0] + '/' name = click.prompt( '...
Fix incorrect configuration file after init Url and stellar_url data in stellar.yaml configuration file data should not include database name.
fastmonkeys_stellar
train
py
dd4b9a021fd4877652a441dea1cc117d2534cf45
diff --git a/app/models/wupee/notifier.rb b/app/models/wupee/notifier.rb index <HASH>..<HASH> 100644 --- a/app/models/wupee/notifier.rb +++ b/app/models/wupee/notifier.rb @@ -47,7 +47,7 @@ module Wupee notification.save! subject_interpolations = interpolate_subject_vars(notification) - send_e...
fix dummy bug... wrong method was called to know if receiver wants email or not
sleede_wupee
train
rb
30cc67cd64defc7a398ae9f28a7908d6b8a6ba21
diff --git a/core/google/cloud/connection.py b/core/google/cloud/connection.py index <HASH>..<HASH> 100644 --- a/core/google/cloud/connection.py +++ b/core/google/cloud/connection.py @@ -28,7 +28,7 @@ API_BASE_URL = 'https://www.googleapis.com' """The base of the API call URL.""" DEFAULT_USER_AGENT = 'gcloud-python...
Changing user-agent to use the version from google-cloud-core. See #<I> for larger discussion.
googleapis_google-cloud-python
train
py,py
82102e656b10b12d7b93af2dfc9dd1de2a4ce708
diff --git a/airflow/providers_manager.py b/airflow/providers_manager.py index <HASH>..<HASH> 100644 --- a/airflow/providers_manager.py +++ b/airflow/providers_manager.py @@ -140,6 +140,16 @@ def _sanity_check(provider_package: str, class_name: str) -> bool: return False try: import_string(class_...
Log provider import errors as debug warnings (#<I>)
apache_airflow
train
py
89475b805d644e3b56e96cc1b88a5ce99d28eecd
diff --git a/backup/restorelib.php b/backup/restorelib.php index <HASH>..<HASH> 100644 --- a/backup/restorelib.php +++ b/backup/restorelib.php @@ -6197,7 +6197,7 @@ foreach ($assignments as $assignment) { $olduser = backup_getid($restore->backup_unique_code,"user",$assignment->userid); - ...
Fixed notice when restoring a backup file that was created with Users: none.
moodle_moodle
train
php
9bad9416f19040feeb1880b410e760dece4f921e
diff --git a/interfaces/associations/manyToMany/find.populate.where.js b/interfaces/associations/manyToMany/find.populate.where.js index <HASH>..<HASH> 100644 --- a/interfaces/associations/manyToMany/find.populate.where.js +++ b/interfaces/associations/manyToMany/find.populate.where.js @@ -83,6 +83,26 @@ describe('Asso...
Add test to ensure that child criteria are disambiguated in many-to-many joins refs <URL>
balderdashy_waterline-adapter-tests
train
js
07eedacf13e1c8cb91bda212007e81d35923d823
diff --git a/lib/mischacks.rb b/lib/mischacks.rb index <HASH>..<HASH> 100644 --- a/lib/mischacks.rb +++ b/lib/mischacks.rb @@ -127,14 +127,12 @@ module MiscHacks def self.try_n_times n=10 i = 0 begin - ret = yield + yield rescue i += 1 retry if i < n raise end - - ...
Simplify try_n_times
ion1_mischacks
train
rb
a5e58908aaa9e9514f655125a431fe0252f8516c
diff --git a/alerta/auth/basic.py b/alerta/auth/basic.py index <HASH>..<HASH> 100644 --- a/alerta/auth/basic.py +++ b/alerta/auth/basic.py @@ -108,13 +108,11 @@ def forgot(): try: email = request.json['email'] except KeyError: - raise ApiError("must supply 'email'", 401) + raise ApiErro...
Improve password reset flow (#<I>)
alerta_alerta
train
py
b89fe63a074a6f33923915cdd6d75ce356f2b594
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,8 +21,8 @@ source_suffix = '.rst' master_doc = 'index' project = 'django-treebeard' copyright = '2008-2013, Gustavo Picon' -version = '2.0a1' -release = '2.0a1' +version = '2.0b1' +release = '2.0b1' exc...
preparing <I>b1 release
django-treebeard_django-treebeard
train
py,py,py
b624c9cacecc6325dc52d3203528fbe870aeba16
diff --git a/test/nexmo/applications_test.rb b/test/nexmo/applications_test.rb index <HASH>..<HASH> 100644 --- a/test/nexmo/applications_test.rb +++ b/test/nexmo/applications_test.rb @@ -13,10 +13,6 @@ class NexmoApplicationsTest < Nexmo::Test 'https://api.nexmo.com/v1/applications/' + application_id end - d...
Remove NexmoApplicationsTest#application_id method
Nexmo_nexmo-ruby
train
rb,rb
ec4056bc4d0358170f0de463c1cdbf6c24e963fe
diff --git a/src/main/java/org/mariadb/jdbc/internal/common/packet/PacketOutputStream.java b/src/main/java/org/mariadb/jdbc/internal/common/packet/PacketOutputStream.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/mariadb/jdbc/internal/common/packet/PacketOutputStream.java +++ b/src/main/java/org/mariadb/jdbc/...
Fixed "MySQL Protocol limit reached" error (when sending data > 2GB) by setting MAX_SEQNO to max integer value.
MariaDB_mariadb-connector-j
train
java
59e56443c57e5165b908881566ee30902c36f71e
diff --git a/src/Extensions.php b/src/Extensions.php index <HASH>..<HASH> 100644 --- a/src/Extensions.php +++ b/src/Extensions.php @@ -210,7 +210,7 @@ class Extensions */ public function checkLocalAutoloader($force = false) { - if (!$force && (!$this->app['filesystem']->has('extensions://local/')...
Write the local extension autoload lock file out the the cache
bolt_bolt
train
php
4f599325fa59197559c7ef08b6a926946a36047e
diff --git a/src/main/java/com/qiniu/util/Etag.java b/src/main/java/com/qiniu/util/Etag.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/qiniu/util/Etag.java +++ b/src/main/java/com/qiniu/util/Etag.java @@ -49,8 +49,19 @@ public final class Etag { * @throws IOException 文件读取异常 */ public static S...
[ISSUE-<I>] close the input stream generated from the file object
qiniu_java-sdk
train
java
e4b622af4f307d5486abb0c4230fae9e84fb7cc3
diff --git a/src/system/modules/metamodels/MetaModels/BackendIntegration/Boot.php b/src/system/modules/metamodels/MetaModels/BackendIntegration/Boot.php index <HASH>..<HASH> 100644 --- a/src/system/modules/metamodels/MetaModels/BackendIntegration/Boot.php +++ b/src/system/modules/metamodels/MetaModels/BackendIntegratio...
adjust Environment call to be compatible with contao <I>
MetaModels_core
train
php
31ae4ab6396d5b9caf6fc12f08ef3f3ba1ec071d
diff --git a/python/sdss_access/sync/cli.py b/python/sdss_access/sync/cli.py index <HASH>..<HASH> 100644 --- a/python/sdss_access/sync/cli.py +++ b/python/sdss_access/sync/cli.py @@ -92,9 +92,10 @@ class Cli(object): running_files = n_tasks - finished_files if self.verbose: - ...
switching stdout to tqdm.write to fix verbose prints
sdss_sdss_access
train
py
a65614f90e62b859fb44af3eb06b0ec4394156f1
diff --git a/DoctrineMigrationsBundle.php b/DoctrineMigrationsBundle.php index <HASH>..<HASH> 100644 --- a/DoctrineMigrationsBundle.php +++ b/DoctrineMigrationsBundle.php @@ -21,19 +21,4 @@ use Symfony\Component\HttpKernel\Bundle\Bundle; */ class DoctrineMigrationsBundle extends Bundle { - /** - * {@inheritd...
removed the need to define getNamespace() and getPath() in bundles
doctrine_DoctrineMigrationsBundle
train
php
56446220ef6523c5bf979eb98b1d3fafe0c9df14
diff --git a/plaso/parsers/santa.py b/plaso/parsers/santa.py index <HASH>..<HASH> 100644 --- a/plaso/parsers/santa.py +++ b/plaso/parsers/santa.py @@ -72,7 +72,7 @@ class SantaProcessExitEventData(events.EventData): action (str): action recorded by Santa. pid (str): process identifier for the process. pi...
Corrected typo in Santa parser docstrings (#<I>)
log2timeline_plaso
train
py
07f072ead9a27e11cb1c15b100f0ce2b9a41b0b1
diff --git a/lib/kubeclient/common.rb b/lib/kubeclient/common.rb index <HASH>..<HASH> 100644 --- a/lib/kubeclient/common.rb +++ b/lib/kubeclient/common.rb @@ -399,12 +399,7 @@ module Kubeclient @entities[kind.to_s].resource_name end ns_prefix = build_namespace_prefix(namespace) - # TODO:...
Remove special handling for services when building th proxy URL
abonas_kubeclient
train
rb
b862159483c4b8b7898062efef66449b2f159187
diff --git a/aeron-driver/src/main/java/io/aeron/driver/MediaDriver.java b/aeron-driver/src/main/java/io/aeron/driver/MediaDriver.java index <HASH>..<HASH> 100644 --- a/aeron-driver/src/main/java/io/aeron/driver/MediaDriver.java +++ b/aeron-driver/src/main/java/io/aeron/driver/MediaDriver.java @@ -366,6 +366,8 @@ publi...
[Java] Bug fix in reportExistingErrors
real-logic_aeron
train
java
6e769749d23d0c44178f5a52c0e49bb1817b80dc
diff --git a/undertow/src/main/java/org/wildfly/extension/undertow/LocationService.java b/undertow/src/main/java/org/wildfly/extension/undertow/LocationService.java index <HASH>..<HASH> 100644 --- a/undertow/src/main/java/org/wildfly/extension/undertow/LocationService.java +++ b/undertow/src/main/java/org/wildfly/exten...
WFLY-<I> Fix the comparator implementation for sorting undertow filter-ref
wildfly_wildfly
train
java
9a331b7d66c63a9e1b163c1fadbfdf94a7e798ea
diff --git a/bika/lims/browser/js/bika.lims.site.js b/bika/lims/browser/js/bika.lims.site.js index <HASH>..<HASH> 100644 --- a/bika/lims/browser/js/bika.lims.site.js +++ b/bika/lims/browser/js/bika.lims.site.js @@ -383,16 +383,6 @@ function SiteView() { stop_spinner(); window.bika.lims.log("Er...
Do not deactivate submit buttons, causes unexpected behavior
senaite_senaite.core
train
js
35a5f95abf54c9e68492b3fd9c61089ff19e36d8
diff --git a/cli/Valet/Nginx.php b/cli/Valet/Nginx.php index <HASH>..<HASH> 100644 --- a/cli/Valet/Nginx.php +++ b/cli/Valet/Nginx.php @@ -118,7 +118,7 @@ class Nginx $this->cli->run( 'sudo nginx -c '.static::NGINX_CONF.' -t', function ($exitCode, $outputMessage) { - th...
Convert comma to semicolon
laravel_valet
train
php
b3425b8411995138d24d61dee6dae3522a35e4be
diff --git a/backbone.js b/backbone.js index <HASH>..<HASH> 100644 --- a/backbone.js +++ b/backbone.js @@ -1369,10 +1369,9 @@ return Backbone.ajax(_.extend(params, options)); }; - // Set the default ajax method if $ is defined. - if ($) Backbone.ajax = function () { - return $.ajax.apply(Backbone, argume...
Fixing Backbone.ajax implementation.
jashkenas_backbone
train
js
f4e5966608de4755b17196986491ef2f79614a88
diff --git a/plugins/Referrers/Columns/Keyword.php b/plugins/Referrers/Columns/Keyword.php index <HASH>..<HASH> 100644 --- a/plugins/Referrers/Columns/Keyword.php +++ b/plugins/Referrers/Columns/Keyword.php @@ -44,7 +44,11 @@ class Keyword extends Base $information = $this->getReferrerInformationFromRequest($r...
Internal / external search strings will be reduced more than <I> "bytes" without boundary.
matomo-org_matomo
train
php
7bd3521dbfab5f4b13efa7211cf40420726e0794
diff --git a/ribbon-archaius/src/main/java/com/netflix/client/config/DefaultClientConfigImpl.java b/ribbon-archaius/src/main/java/com/netflix/client/config/DefaultClientConfigImpl.java index <HASH>..<HASH> 100644 --- a/ribbon-archaius/src/main/java/com/netflix/client/config/DefaultClientConfigImpl.java +++ b/ribbon-arc...
add back API that was accidentally deleted in refactor
Netflix_ribbon
train
java
b43964d6061f4a31320906172f763dd3dd188f4d
diff --git a/actionpack/test/template/test_case_test.rb b/actionpack/test/template/test_case_test.rb index <HASH>..<HASH> 100644 --- a/actionpack/test/template/test_case_test.rb +++ b/actionpack/test/template/test_case_test.rb @@ -24,7 +24,7 @@ module ActionView test_case.class_eval do test "helpers...
Make some assertions in the ActionView::TestCase tests actually do something. [#<I> state:resolved]
rails_rails
train
rb
970e7f9314001313b52b0fe6ae1d172a897778e0
diff --git a/ntfy/__init__.py b/ntfy/__init__.py index <HASH>..<HASH> 100644 --- a/ntfy/__init__.py +++ b/ntfy/__init__.py @@ -7,13 +7,6 @@ try: except: __version__ = 'unknown' -try: - from dbus.exceptions import DBusException -except ImportError: - - class DBusException(Exception): - pass - def...
Don't give DBusExceptions special treament, would've avoided #<I>
dschep_ntfy
train
py
f969c393e3ea565d0c8ed5c979d710cc1a905549
diff --git a/src/Bugsnag/Error.php b/src/Bugsnag/Error.php index <HASH>..<HASH> 100644 --- a/src/Bugsnag/Error.php +++ b/src/Bugsnag/Error.php @@ -225,7 +225,7 @@ class Bugsnag_Error return $cleanArray; } elseif (is_string($obj)) { // UTF8-encode if not already encoded - if...
Only do encoding magic if mb_detect_encoding is available
bugsnag_bugsnag-php
train
php
941ccdbde074c127bd6a284fb975f2063fb2756e
diff --git a/flake8_import_order/stdlib_list.py b/flake8_import_order/stdlib_list.py index <HASH>..<HASH> 100644 --- a/flake8_import_order/stdlib_list.py +++ b/flake8_import_order/stdlib_list.py @@ -40,6 +40,7 @@ STDLIB_NAMES = set(( "__main__", "_dummy_thread", "_thread", + "_threading_local", "...
Add _threading_local to the stdlib list
PyCQA_flake8-import-order
train
py
becf0344d8bdfe0dea2c048e66a72b764b3ccb49
diff --git a/lib/formtools/form.js b/lib/formtools/form.js index <HASH>..<HASH> 100644 --- a/lib/formtools/form.js +++ b/lib/formtools/form.js @@ -106,12 +106,17 @@ var generateFormFromModel = exports.generateFormFromModel = function (m, r, form linz.mongoose.models[m.schema.tree[fieldName].ref].fi...
Ref property values now appear in the select lists.
linzjs_linz
train
js
aeb1cab633c5e78e9a867c68c9a48933c2caac74
diff --git a/open/exec_windows.go b/open/exec_windows.go index <HASH>..<HASH> 100644 --- a/open/exec_windows.go +++ b/open/exec_windows.go @@ -20,7 +20,7 @@ func cleaninput(input string) string { } func open(input string) *exec.Cmd { - return exec.Command(runDll32, cmd, cleaninput(input)) + return exec.Command(runD...
Fixing #9 - not replacing ampersand in calls to rundll<I>
skratchdot_open-golang
train
go
545db99cb432306d5a06c56bfe68c3a3d6380052
diff --git a/src/main/java/technology/tabula/json/TableSerializer.java b/src/main/java/technology/tabula/json/TableSerializer.java index <HASH>..<HASH> 100644 --- a/src/main/java/technology/tabula/json/TableSerializer.java +++ b/src/main/java/technology/tabula/json/TableSerializer.java @@ -30,6 +30,8 @@ public final cl...
Add right and bottom of area to JSON output
tabulapdf_tabula-java
train
java
2f1bcc96f53e06bb3696ab7c74de48f98921ba4c
diff --git a/charmhelpers/contrib/hahelpers/cluster.py b/charmhelpers/contrib/hahelpers/cluster.py index <HASH>..<HASH> 100644 --- a/charmhelpers/contrib/hahelpers/cluster.py +++ b/charmhelpers/contrib/hahelpers/cluster.py @@ -44,6 +44,7 @@ from charmhelpers.core.hookenv import ( ERROR, WARNING, unit_get...
Try using juju leadership for leadership determination
juju_charm-helpers
train
py
e9b0454a9df1d4a889a168b623abcfadbf3d6d47
diff --git a/pkg/kubelet/runtime.go b/pkg/kubelet/runtime.go index <HASH>..<HASH> 100644 --- a/pkg/kubelet/runtime.go +++ b/pkg/kubelet/runtime.go @@ -23,7 +23,7 @@ import ( ) type runtimeState struct { - sync.Mutex + sync.RWMutex lastBaseRuntimeSync time.Time baseRuntimeSyncThreshold time.Duration netwo...
optimize lock of runtimeState stuct
kubernetes_kubernetes
train
go
023bf499221d65d661090e9f4559b64a724d1459
diff --git a/edit_interface.php b/edit_interface.php index <HASH>..<HASH> 100644 --- a/edit_interface.php +++ b/edit_interface.php @@ -317,7 +317,7 @@ case 'editraw': // Notes are special - they may contain data on the first line $gedrec=preg_replace('/^(0 @'.WT_REGEX_XREF.'@ NOTE) (.+)/', "$1\n1 CONC $2", $gedre...
RTL: first line of record has wrong alignment in raw gedcom editing
fisharebest_webtrees
train
php
cf5e9ae1334db75af53e8ef0874adfea31bce458
diff --git a/src/Shader.js b/src/Shader.js index <HASH>..<HASH> 100644 --- a/src/Shader.js +++ b/src/Shader.js @@ -62,10 +62,6 @@ class Shader { const shader = this._shader = gl.createShader(glType); gl.shaderSource(shader, this._code); gl.compileShader(shader); - - if (process.env.NOD...
Remove shader get log methods (#<I>)
2gis_2gl
train
js,js
0b715a12124d8e4bab83c7fcf548393c8f94b70e
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -28,13 +28,15 @@ exports.attach = function (server) { } } }); - var listener = io.listen(server, { log: false }); + var sio = io.listen(server, { log: false }); var args = [].splice.call(a...
Added 'socket' property to options object before passing it to shotgun. This will allow shotgun command modules to access socket.io functionality if needed.
chevex-archived_shotgun-client
train
js
332b2779e4c212a3c953fd1f2b42e9473cc669e0
diff --git a/db/agents.go b/db/agents.go index <HASH>..<HASH> 100644 --- a/db/agents.go +++ b/db/agents.go @@ -250,12 +250,20 @@ func (db *DB) UpdateAgent(agent *Agent) error { func (db *DB) DeleteAgent(agent *Agent) error { return db.exclusively(func() error { - n, err := db.count(`SELECT uuid FROM jobs WHERE ag...
Fix Agent Deletion - Agents cannot be deleted if they are referenced by a storage system - Agents cannot be deleted if they are referenced by a target system - Agents can be deleted otherwise Fixes #<I>
starkandwayne_shield
train
go
bc5f03187ba095344552152185a98a0a52214329
diff --git a/Classes/ViewHelpers/ForViewHelper.php b/Classes/ViewHelpers/ForViewHelper.php index <HASH>..<HASH> 100644 --- a/Classes/ViewHelpers/ForViewHelper.php +++ b/Classes/ViewHelpers/ForViewHelper.php @@ -73,7 +73,7 @@ class ForViewHelper extends \F3\Fluid\Core\ViewHelper\AbstractViewHelper { $output = ''; ...
[~BUGFIX] Fluid (ViewHelpers): Fixed a failing test of the For view helper introduced in the last commit. Original-Commit-Hash: <I>c<I>d<I>a6c5c<I>d<I>e0e<I>ae<I>dd<I>
neos_fluid
train
php
6e09f8678f713c858885f540d85f4466e934a689
diff --git a/lyric.js b/lyric.js index <HASH>..<HASH> 100755 --- a/lyric.js +++ b/lyric.js @@ -85,7 +85,22 @@ Processor = function() { var processorName = mapped[0].processor , processed = processor[processorName](); - + if (argv.s) { + var script = 'tell application "iTunes" to set lyrics of curr...
Add --set for set lyric for current song.
NAzT_node-lyric
train
js
fa46970930e777c48ec6bb0c3f7c6c0aaa430deb
diff --git a/angr/cfg.py b/angr/cfg.py index <HASH>..<HASH> 100644 --- a/angr/cfg.py +++ b/angr/cfg.py @@ -261,10 +261,14 @@ class CFG(CFGBase): # Start execution! simexit = self._project.exit_to(function_addr, state=symbolic_initial_state) simrun = self._project.sim_run(simexit) - exi...
fixed a bug in CFG that it may use unsatisfiable state to perform symbolic execution.
angr_angr
train
py,py
d7c8f571a8fcc5d1471d215ad6d315569c25e775
diff --git a/Controller/Wizard/EditorController.php b/Controller/Wizard/EditorController.php index <HASH>..<HASH> 100644 --- a/Controller/Wizard/EditorController.php +++ b/Controller/Wizard/EditorController.php @@ -89,7 +89,6 @@ class EditorController * name = "innova_path_editor_wizard", * opt...
[PathBundle] do not restrict GET method to allow locale change in Path wizards
claroline_Distribution
train
php,php
29cfb3c1ec9ee366157fefd958faaeb2b3cb2f09
diff --git a/tests/Integration/Util/Tax/IntegrationTestTaxServiceLocator.php b/tests/Integration/Util/Tax/IntegrationTestTaxServiceLocator.php index <HASH>..<HASH> 100644 --- a/tests/Integration/Util/Tax/IntegrationTestTaxServiceLocator.php +++ b/tests/Integration/Util/Tax/IntegrationTestTaxServiceLocator.php @@ -2,14 ...
Issue #<I>: Import classes
lizards-and-pumpkins_catalog
train
php
f9b871ff2785e994d66c4e325dffdaf8314b9cbb
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ try: except ImportError: requirements.append("elementtree") -version = "0.9.5" +version = "0.9.6" f = open("README.rst") try:
BUMP <I> mostly some fixes to the c extension to work around reloading issues that came up in SW production
mongodb_mongo-python-driver
train
py
67838866c6c851adc8e39dbd20ff81a434cf6cc6
diff --git a/core/src/main/java/hudson/util/RingBufferLogHandler.java b/core/src/main/java/hudson/util/RingBufferLogHandler.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/util/RingBufferLogHandler.java +++ b/core/src/main/java/hudson/util/RingBufferLogHandler.java @@ -51,7 +51,7 @@ public class RingBu...
[FIXED JENKINS-<I>] RingBufferLogHandler has int that needs to be reset.
jenkinsci_jenkins
train
java
80f95ceeddcb180bfe65d673f304c9decb19f484
diff --git a/validator/sawtooth_validator/consensus/notifier.py b/validator/sawtooth_validator/consensus/notifier.py index <HASH>..<HASH> 100644 --- a/validator/sawtooth_validator/consensus/notifier.py +++ b/validator/sawtooth_validator/consensus/notifier.py @@ -32,13 +32,13 @@ class _NotifierService: self._co...
Only send updates to active engine in notifier Updates the ConsensusNotifier to only send updates to the active consensus engine. Previously, it sent notifications to all consensus engines.
hyperledger_sawtooth-core
train
py
34b229e99b219bc77e43c71372705c72a18dc6cc
diff --git a/resources/views/_template/master.blade.php b/resources/views/_template/master.blade.php index <HASH>..<HASH> 100644 --- a/resources/views/_template/master.blade.php +++ b/resources/views/_template/master.blade.php @@ -10,6 +10,7 @@ {{ Html::script('https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min....
Adding new sections: head & modals
ARCANESOFT_Foundation
train
php
80975ccc5d1681ef8166457bb142ac90e7fc65ff
diff --git a/structr-ui/src/main/resources/structr/js/init.js b/structr-ui/src/main/resources/structr/js/init.js index <HASH>..<HASH> 100644 --- a/structr-ui/src/main/resources/structr/js/init.js +++ b/structr-ui/src/main/resources/structr/js/init.js @@ -827,7 +827,7 @@ var Structr = { var horizontalOffset = 98; ...
Bugfix: While calculating the dialog size, take into account that the content might be scrolled. Otherwise the resulting dialog size might be a lot bigger.
structr_structr
train
js
d8c26c81659236ac61c08a252ce0b89df0b41917
diff --git a/templates/bootstrap/ApiRenderer.php b/templates/bootstrap/ApiRenderer.php index <HASH>..<HASH> 100644 --- a/templates/bootstrap/ApiRenderer.php +++ b/templates/bootstrap/ApiRenderer.php @@ -6,6 +6,7 @@ */ namespace yii\apidoc\templates\bootstrap; + use yii\apidoc\models\Context; use yii\console\Cont...
fixed file PHPdoc issue #<I>
yiisoft_yii2-apidoc
train
php,php,php
211d837d505a1bf59b302ade5453a0836929db9a
diff --git a/examples/logical_enclosures.py b/examples/logical_enclosures.py index <HASH>..<HASH> 100644 --- a/examples/logical_enclosures.py +++ b/examples/logical_enclosures.py @@ -123,3 +123,27 @@ print("Get all logical enclosures") logical_enclosures = oneview_client.logical_enclosures.get_all() for enc in logica...
Adds an example of how to use patch for Logical Enclosures
HewlettPackard_python-hpOneView
train
py
9a4785404f7519ac64305ee5658e9aaebe169f51
diff --git a/Service/Adapter/AmazonS3.php b/Service/Adapter/AmazonS3.php index <HASH>..<HASH> 100644 --- a/Service/Adapter/AmazonS3.php +++ b/Service/Adapter/AmazonS3.php @@ -207,7 +207,11 @@ class AmazonS3 implements AdapterInterface{ $headers = $this->s3->get_object_headers($this->bucketName, $this->getPath(...
modify content-type returned by sendFileToBrowser
kitpages_KitpagesFileSystemBundle
train
php