diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/backports/datetime_timestamp/__init__.py b/backports/datetime_timestamp/__init__.py
index <HASH>..<HASH> 100644
--- a/backports/datetime_timestamp/__init__.py
+++ b/backports/datetime_timestamp/__init__.py
@@ -27,6 +27,9 @@ def timestamp(dt):
>>> timestamp(datetime.datetime.now()) > 1494638812
True
+... | Add test ensuring that fractional seconds are present on naive datetimes. |
diff --git a/tests/test_tools.py b/tests/test_tools.py
index <HASH>..<HASH> 100644
--- a/tests/test_tools.py
+++ b/tests/test_tools.py
@@ -37,7 +37,7 @@ def compare_nifti(nifti_file_1, nifti_file_2):
if nifti_1.get_data_dtype() != nifti_2.get_data_dtype():
logging.warning('dtype mismatch')
... | icometrix/dicom2nifti#<I>:
Allow for rounding differences |
diff --git a/lib/spree/adyen/engine.rb b/lib/spree/adyen/engine.rb
index <HASH>..<HASH> 100644
--- a/lib/spree/adyen/engine.rb
+++ b/lib/spree/adyen/engine.rb
@@ -8,6 +8,7 @@ module Spree
initializer "spree.spree-adyen.payment_methods", :after => "spree.register.payment_methods" do |app|
app.config.spre... | Add additional payment method using Client Side Encrytion |
diff --git a/modeltranslation/admin.py b/modeltranslation/admin.py
index <HASH>..<HASH> 100644
--- a/modeltranslation/admin.py
+++ b/modeltranslation/admin.py
@@ -215,7 +215,7 @@ class TranslationBaseModelAdmin(BaseModelAdmin):
TranslationAdmin and TranslationInlineModelAdmin.
"""
base_fields... | Fix TypeError in admin when all fields are read-only |
diff --git a/src/mutable.js b/src/mutable.js
index <HASH>..<HASH> 100644
--- a/src/mutable.js
+++ b/src/mutable.js
@@ -1,4 +1,4 @@
-import ItemSelection from './immutable'
+import { ItemSelection } from './immutable'
class MutableItemSelection extends ItemSelection {
set (selection, lastIndex) { | extend MutableItemSelection from superclass instead of factory function |
diff --git a/site/src/_layout.js b/site/src/_layout.js
index <HASH>..<HASH> 100644
--- a/site/src/_layout.js
+++ b/site/src/_layout.js
@@ -260,7 +260,7 @@ const Hits = ({ searchResults }) => {
},
},
}
- const slug = highlightedHit.url.replace(/https:\/\/cli.netlify.com/, '')
+ const slug = hi... | chore(site): fix wrong regex (#<I>) |
diff --git a/lib/puppet/version.rb b/lib/puppet/version.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/version.rb
+++ b/lib/puppet/version.rb
@@ -7,7 +7,7 @@
module Puppet
- PUPPETVERSION = '3.3.1-rc3'
+ PUPPETVERSION = '3.3.1'
##
# version is a public API method intended to always provide a fast and | (packaging) Update PUPPETVERSION for <I> |
diff --git a/liquibase-core/src/test/java/liquibase/verify/AbstractVerifyTest.java b/liquibase-core/src/test/java/liquibase/verify/AbstractVerifyTest.java
index <HASH>..<HASH> 100644
--- a/liquibase-core/src/test/java/liquibase/verify/AbstractVerifyTest.java
+++ b/liquibase-core/src/test/java/liquibase/verify/AbstractV... | Fixed problem where maven was using a different root for running the VerifyTests |
diff --git a/photutils/aperture/mask.py b/photutils/aperture/mask.py
index <HASH>..<HASH> 100644
--- a/photutils/aperture/mask.py
+++ b/photutils/aperture/mask.py
@@ -237,14 +237,14 @@ class ApertureMask:
input ``data``.
"""
- # make a copy to prevent changing the input data
- cuto... | Improve performance of ApetureMask.multiply |
diff --git a/commands/commands.rb b/commands/commands.rb
index <HASH>..<HASH> 100644
--- a/commands/commands.rb
+++ b/commands/commands.rb
@@ -68,8 +68,13 @@ command :fetch do |user, branch|
branch ||= 'master'
GitHub.invoke(:track, user) unless helper.tracking?(user)
+ die "Unknown branch (#{branch}) specif... | Make sure it exists on the remote and force it to update on the local.
These changes ensures that the branch actually exists on the remote
repository and that the locally created branch is a pristine copy
of the remote branch. |
diff --git a/lib/middleware/init.js b/lib/middleware/init.js
index <HASH>..<HASH> 100644
--- a/lib/middleware/init.js
+++ b/lib/middleware/init.js
@@ -20,6 +20,8 @@ module.exports = function (req, res, next) {
// 本次请求附加的静态模版变量
res.templateData = {};
+ res.set('X-Powered-By', 'Rebas');
+
... | Add `X-Powered-By` |
diff --git a/lib/common/error_codes.js b/lib/common/error_codes.js
index <HASH>..<HASH> 100644
--- a/lib/common/error_codes.js
+++ b/lib/common/error_codes.js
@@ -13,6 +13,7 @@ module.exports = {
unexpectedEqualsSignBeforeAttributeName: 'unexpected-equals-sign-before-attribute-name',
missingEndTagName: 'missi... | Add Hexademical character reference state errors. |
diff --git a/brothon/analysis/dataframe_to_matrix.py b/brothon/analysis/dataframe_to_matrix.py
index <HASH>..<HASH> 100644
--- a/brothon/analysis/dataframe_to_matrix.py
+++ b/brothon/analysis/dataframe_to_matrix.py
@@ -107,6 +107,10 @@ class DataFrameToMatrix(object):
def _normalize_series(series):
smin =... | fix possible div by zero in normalization |
diff --git a/client-js/QueryResultDataTable.js b/client-js/QueryResultDataTable.js
index <HASH>..<HASH> 100644
--- a/client-js/QueryResultDataTable.js
+++ b/client-js/QueryResultDataTable.js
@@ -86,7 +86,7 @@ var QueryResultDataTable = React.createClass({
top: 0,
bottom: 0,
... | change cell bar to light blue
orange isn’t really used anywhere else so it looks out of place |
diff --git a/elytron/src/main/java/org/wildfly/extension/elytron/CertificateAuthorityAccountDefinition.java b/elytron/src/main/java/org/wildfly/extension/elytron/CertificateAuthorityAccountDefinition.java
index <HASH>..<HASH> 100644
--- a/elytron/src/main/java/org/wildfly/extension/elytron/CertificateAuthorityAccountDe... | [WFCORE-<I>] Fix the staging URL for the Let's Encrypt certificate-authority |
diff --git a/spec/unit/mongoid/identity_map_spec.rb b/spec/unit/mongoid/identity_map_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/mongoid/identity_map_spec.rb
+++ b/spec/unit/mongoid/identity_map_spec.rb
@@ -439,6 +439,7 @@ describe Mongoid::IdentityMap do
end
it "gets the object from the ide... | Pend spec getting segfault on Lion |
diff --git a/actionview/lib/action_view/helpers/form_helper.rb b/actionview/lib/action_view/helpers/form_helper.rb
index <HASH>..<HASH> 100644
--- a/actionview/lib/action_view/helpers/form_helper.rb
+++ b/actionview/lib/action_view/helpers/form_helper.rb
@@ -1619,7 +1619,7 @@ module ActionView
@index = options... | Fix warning: method redefined; discarding old fields
Follow up to #<I>. |
diff --git a/build.php b/build.php
index <HASH>..<HASH> 100755
--- a/build.php
+++ b/build.php
@@ -3,7 +3,7 @@
chdir(__DIR__);
$returnStatus = null;
-passthru('composer install --dev', $returnStatus);
+passthru('composer install', $returnStatus);
if ($returnStatus !== 0) {
exit(1);
} | Remove --dev from composer install.
--dev is the default. |
diff --git a/lib/environmentlib.php b/lib/environmentlib.php
index <HASH>..<HASH> 100644
--- a/lib/environmentlib.php
+++ b/lib/environmentlib.php
@@ -630,8 +630,8 @@ function environment_check_database($version) {
*/
function process_environment_bypass($xml, &$result) {
-/// Only try to bypass if we were in error... | We only allow to bypass "required" checks. |
diff --git a/pypet/storageservice.py b/pypet/storageservice.py
index <HASH>..<HASH> 100644
--- a/pypet/storageservice.py
+++ b/pypet/storageservice.py
@@ -1950,7 +1950,7 @@ class HDF5StorageService(StorageService, HasLogger):
if col_name == 'example_item_run_name':
# The ... | fixed unicode/str problem in python 3 in test |
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,7 @@
+require 'rubygems'
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
+require 'sequel'
require 'sequel/mi... | Requiring sequel in spec helper. |
diff --git a/salt/cloud/clouds/azurearm.py b/salt/cloud/clouds/azurearm.py
index <HASH>..<HASH> 100644
--- a/salt/cloud/clouds/azurearm.py
+++ b/salt/cloud/clouds/azurearm.py
@@ -390,7 +390,7 @@ def list_nodes(conn=None, call=None): # pylint: disable=unused-argument
try:
provider, driver = __active_provi... | Add "KeyError" to bare except in azurearm
Fixes pylint, refs #<I>. |
diff --git a/src/pusher_connection.js b/src/pusher_connection.js
index <HASH>..<HASH> 100644
--- a/src/pusher_connection.js
+++ b/src/pusher_connection.js
@@ -34,7 +34,7 @@
}
connection.connectedTimeout = 2000;
connection.connectionSecure = connection.compulsorySecure;
- connection.connectionAttempts ... | Refactor waitingPre code
The logic should now be clearer to understand |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -41,7 +41,7 @@ function slang(opt) {
}
// create full URL for curl path
- URL = 'http://' + USER + ':' + PASS + '@' +
+ URL = 'http://' + USER + ':' + encodeURIComponent(PASS) + '@' +
... | UPDATE: Apply the encodeURIComponent function to Password
- If a special character is used in an URL without encoding, a bug that can not be
accessed normally has been found and fixed. |
diff --git a/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java b/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java
index <HASH>..<HASH> 100644
--- a/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java
+++ b/spri... | Allow snapshot repositories in integration tests
Update CLI SampleIntegrationTests to no longer disable snapshot repos. |
diff --git a/lib/Stripe/ApiResource.php b/lib/Stripe/ApiResource.php
index <HASH>..<HASH> 100644
--- a/lib/Stripe/ApiResource.php
+++ b/lib/Stripe/ApiResource.php
@@ -118,10 +118,10 @@ abstract class Stripe_ApiResource extends Stripe_Object
return Stripe_Util::convertToStripeObject($response, $apiKey);
}
- p... | Always try to pass a local API key when saving |
diff --git a/src/Sentry/Laravel/EventHandler.php b/src/Sentry/Laravel/EventHandler.php
index <HASH>..<HASH> 100644
--- a/src/Sentry/Laravel/EventHandler.php
+++ b/src/Sentry/Laravel/EventHandler.php
@@ -173,7 +173,7 @@ class EventHandler
*/
public function __call($method, $arguments)
{
- $handler... | Fix variable duplication (#<I>) |
diff --git a/pandas/tests/test_frame.py b/pandas/tests/test_frame.py
index <HASH>..<HASH> 100644
--- a/pandas/tests/test_frame.py
+++ b/pandas/tests/test_frame.py
@@ -1798,6 +1798,16 @@ class TestDataFrame(unittest.TestCase, CheckIndexing,
self.assert_(not self.frame._is_mixed_type)
self.assert_(self.... | TST: DataFrame ctor should respect col order when given OrderedDict |
diff --git a/lib/rabl/builder.rb b/lib/rabl/builder.rb
index <HASH>..<HASH> 100644
--- a/lib/rabl/builder.rb
+++ b/lib/rabl/builder.rb
@@ -110,7 +110,7 @@ module Rabl
def extends(file, options={}, &block)
options = @options.slice(:child_root).merge(:object => @_object).merge(options)
result = self.pa... | [builder] Only merge in a result if the result is a hash |
diff --git a/src/Silex/Controller.php b/src/Silex/Controller.php
index <HASH>..<HASH> 100644
--- a/src/Silex/Controller.php
+++ b/src/Silex/Controller.php
@@ -16,6 +16,17 @@ use Silex\Exception\ControllerFrozenException;
/**
* A wrapper for a controller, mapped to a route.
*
+ * __call() forwards method-calls to R... | Define "magic" methods of \Silex\Controller
This makes IDEs (PHPStorm, in particular) a bit happier about route-definitions.
see <URL> |
diff --git a/aemsync.js b/aemsync.js
index <HASH>..<HASH> 100644
--- a/aemsync.js
+++ b/aemsync.js
@@ -308,8 +308,8 @@ function Pusher(targets, interval, sync) {
// Add NT_FOLDER if needed.
var contentXml = subItem + "/.content.xml";
var hasContentXml = fs.existsSync(contentXml);
- var isContentFolder = p... | Updated _jcr_content folder handling. |
diff --git a/app/controllers/garage/docs/resources_controller.rb b/app/controllers/garage/docs/resources_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/garage/docs/resources_controller.rb
+++ b/app/controllers/garage/docs/resources_controller.rb
@@ -40,20 +40,20 @@ class Garage::Docs::ResourcesControll... | Revert the code auth flow and use Implicit Grant. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -78,7 +78,7 @@ extras_require = {
'cluster': ["python-pam",
"django-pam",
"gunicorn",
- "python-prctl ==1.6.1",
+ "python-prctl",
"setprocti... | remove specific version of python-prctl inside setup.py |
diff --git a/src/neon.js b/src/neon.js
index <HASH>..<HASH> 100644
--- a/src/neon.js
+++ b/src/neon.js
@@ -20,5 +20,5 @@ module.exports.Entity = require('./entity');
module.exports.Map = require('./map');
module.exports.CHAIN = DecoderClass.CHAIN;
module.exports.BLOCK = EncoderClass.BLOCK;
-module.exports.dumper = r... | api: dumper renamed to Dumper |
diff --git a/lib/vimrunner/client.rb b/lib/vimrunner/client.rb
index <HASH>..<HASH> 100644
--- a/lib/vimrunner/client.rb
+++ b/lib/vimrunner/client.rb
@@ -198,5 +198,12 @@ module Vimrunner
def kill
server.kill
end
+
+ # Bring the server to foreground
+ def foreground
+ server.remote_expr("fo... | Add client.foreground to Bring the server to foreground |
diff --git a/mythril/ethereum/util.py b/mythril/ethereum/util.py
index <HASH>..<HASH> 100644
--- a/mythril/ethereum/util.py
+++ b/mythril/ethereum/util.py
@@ -78,9 +78,11 @@ def solc_exists(version):
os.environ.get("HOME", str(Path.home())),
".py-solc/solc-v" + version,
"bin/solc"... | updated with temp fix for solc <I>.x |
diff --git a/spec/lib/protobuf/rpc/stat_spec.rb b/spec/lib/protobuf/rpc/stat_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/lib/protobuf/rpc/stat_spec.rb
+++ b/spec/lib/protobuf/rpc/stat_spec.rb
@@ -1,6 +1,6 @@
require 'spec_helper'
require 'timecop'
-require 'active_support/core_ext/numeric/time'
+require 'active_su... | Use activesupport/all in tests (>= 6 causes load errors) |
diff --git a/tofu/data/_class1_Diagnostic.py b/tofu/data/_class1_Diagnostic.py
index <HASH>..<HASH> 100644
--- a/tofu/data/_class1_Diagnostic.py
+++ b/tofu/data/_class1_Diagnostic.py
@@ -35,6 +35,20 @@ class Diagnostic(_class0_Plasma2D.Plasma2D):
# _show_in_summary_core = ['shape', 'ref', 'group']
_show_in_... | [#<I>] added _dshow for aperture and camera |
diff --git a/test/plugins_test.rb b/test/plugins_test.rb
index <HASH>..<HASH> 100644
--- a/test/plugins_test.rb
+++ b/test/plugins_test.rb
@@ -33,7 +33,7 @@ class PluginsTest < MiniTest::Test
suffix = '... #lolcommits'
Lolcommits::LolTwitter.send(:define_method, :max_tweet_size, Proc.new { max_... | switch to assert_equal to see fail condition |
diff --git a/src/createReduxForm.js b/src/createReduxForm.js
index <HASH>..<HASH> 100755
--- a/src/createReduxForm.js
+++ b/src/createReduxForm.js
@@ -646,7 +646,7 @@ const createReduxForm = (structure: Structure<*, *>) => {
submitFailed = (error: any): void => {
delete this.submitPromise
- ... | fix of the uncaught exception in promise within asyncValidation (#<I>) |
diff --git a/src/widgets/form/Select.php b/src/widgets/form/Select.php
index <HASH>..<HASH> 100755
--- a/src/widgets/form/Select.php
+++ b/src/widgets/form/Select.php
@@ -90,6 +90,8 @@ class Select extends BaseInputWidget
* @var boolean whether the select shall allow multiple selections.
*
* Please no... | added since doc to property multiple on Select |
diff --git a/src/main/java/io/iron/ironmq/Message.java b/src/main/java/io/iron/ironmq/Message.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/iron/ironmq/Message.java
+++ b/src/main/java/io/iron/ironmq/Message.java
@@ -17,6 +17,7 @@ public class Message implements Serializable {
// it.
@SerializedName... | Add reservation_id to message model |
diff --git a/activesupport/lib/active_support/inflector/methods.rb b/activesupport/lib/active_support/inflector/methods.rb
index <HASH>..<HASH> 100644
--- a/activesupport/lib/active_support/inflector/methods.rb
+++ b/activesupport/lib/active_support/inflector/methods.rb
@@ -36,7 +36,7 @@ module ActiveSupport
# str... | Fix doc for singularize - `pluralized` => `singularized` |
diff --git a/tidb-server/main.go b/tidb-server/main.go
index <HASH>..<HASH> 100644
--- a/tidb-server/main.go
+++ b/tidb-server/main.go
@@ -419,7 +419,7 @@ func overrideConfig(cfg *config.Config) {
if actualFlags[nmAdvertiseAddress] {
cfg.AdvertiseAddress = *advertiseAddress
}
- if len(cfg.AdvertiseAddress) == 0 ... | *:Bug fix/Sign in failed: Failed to connect to TiDB in tiup dashboard (#<I>) |
diff --git a/src/assets/js/core.js b/src/assets/js/core.js
index <HASH>..<HASH> 100644
--- a/src/assets/js/core.js
+++ b/src/assets/js/core.js
@@ -50,6 +50,11 @@ class Core {
if ('select2' in $.fn) {
$('.inside .papi-table tr .papi-component-select2').select2();
+
+ // Fix issue with browsers where s... | Fix issue with browsers where selected attribute is not removed correct |
diff --git a/lib/trestle/evaluation_context.rb b/lib/trestle/evaluation_context.rb
index <HASH>..<HASH> 100644
--- a/lib/trestle/evaluation_context.rb
+++ b/lib/trestle/evaluation_context.rb
@@ -9,9 +9,9 @@ module Trestle
#
# We include private methods as methods such as current_user
# are usually declar... | Forward keyword arguments in `method_missing`
This is a breaking change introduced in Ruby <I> |
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -117,6 +117,12 @@ module ActiveRecord
# Clears out the association ca... | Remove associated objects from IM when clearing them from association cache. |
diff --git a/codequality/main.py b/codequality/main.py
index <HASH>..<HASH> 100755
--- a/codequality/main.py
+++ b/codequality/main.py
@@ -89,6 +89,9 @@ class CodeQuality(object):
for filename, location in scmhandler.srcs_to_check(
paths, rev=self.options.rev):
+ if self._should_i... | Fix ignore not applying to paths generated by SCM |
diff --git a/spec/cleaner_spec.rb b/spec/cleaner_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/cleaner_spec.rb
+++ b/spec/cleaner_spec.rb
@@ -6,6 +6,8 @@ describe Bugsnag::Cleaner do
subject { described_class.new(nil) }
describe "#clean_object" do
+ is_jruby = defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby'... | Skip infinite recursion tests on JRuby
We can't recover from stack overflows so there's not much we can do
here other than skip these tests |
diff --git a/test/03-lib/migrationManager.js b/test/03-lib/migrationManager.js
index <HASH>..<HASH> 100644
--- a/test/03-lib/migrationManager.js
+++ b/test/03-lib/migrationManager.js
@@ -12,7 +12,7 @@ describe('MigrationManager', () => {
expect(MigrationManager.prototype).ok();
});
- const publicMethodNames = [
... | check at tests that migrator should not contain any other public methods |
diff --git a/lib/logstasher/active_job/log_subscriber.rb b/lib/logstasher/active_job/log_subscriber.rb
index <HASH>..<HASH> 100644
--- a/lib/logstasher/active_job/log_subscriber.rb
+++ b/lib/logstasher/active_job/log_subscriber.rb
@@ -1,7 +1,8 @@
-if ActiveJob::VERSION::MAJOR >= 6 && ActiveJob::VERSION::MINOR >= 1
- r... | Fix potential issue for Rails 7 in require (#<I>)
The older condition wouldn't require the newer location for Rails 7 in the future. Caught by @petergoldstein |
diff --git a/spec/dummy/config/application.rb b/spec/dummy/config/application.rb
index <HASH>..<HASH> 100644
--- a/spec/dummy/config/application.rb
+++ b/spec/dummy/config/application.rb
@@ -53,7 +53,7 @@ module Dummy
# This will create an empty whitelist of attributes available for mass-assignment for all models
... | turn off whitelist-attributes in spec dummy (not used in Rails 4) |
diff --git a/python_modules/dagster/dagster_tests/core_tests/storage_tests/utils/event_log_storage.py b/python_modules/dagster/dagster_tests/core_tests/storage_tests/utils/event_log_storage.py
index <HASH>..<HASH> 100644
--- a/python_modules/dagster/dagster_tests/core_tests/storage_tests/utils/event_log_storage.py
+++ ... | skipping test (#<I>) |
diff --git a/spec/models/twitter_review.rb b/spec/models/twitter_review.rb
index <HASH>..<HASH> 100644
--- a/spec/models/twitter_review.rb
+++ b/spec/models/twitter_review.rb
@@ -1,6 +1,6 @@
class TwitterReview < Review
counter_culture :product, column_name: 'twitter_reviews_count'
- counter_culture :user, column_... | replace test code which use Proc.new |
diff --git a/blockstack/lib/operations/revoke.py b/blockstack/lib/operations/revoke.py
index <HASH>..<HASH> 100644
--- a/blockstack/lib/operations/revoke.py
+++ b/blockstack/lib/operations/revoke.py
@@ -85,11 +85,16 @@ def check( state_engine, nameop, block_id, checked_ops ):
log.debug("Name '%s' is revoked" %... | don't allow revoke if we're in the name renewal grace period |
diff --git a/pkg/chartutil/create.go b/pkg/chartutil/create.go
index <HASH>..<HASH> 100644
--- a/pkg/chartutil/create.go
+++ b/pkg/chartutil/create.go
@@ -304,7 +304,7 @@ kind: ServiceAccount
metadata:
name: {{ include "<CHARTNAME>.serviceAccountName" . }}
labels:
-{{ include "<CHARTNAME>.labels" . | nindent 4 }... | fix(chartutil): remove empty lines and a space from rendered chart templates (#<I>) |
diff --git a/bin/php/updateniceurls.php b/bin/php/updateniceurls.php
index <HASH>..<HASH> 100755
--- a/bin/php/updateniceurls.php
+++ b/bin/php/updateniceurls.php
@@ -742,7 +742,7 @@ if ( $urlCount > 0 )
list( $actionType, $actionValue ) = explode( ":", $action, 2 );
$aliases = eZURLAl... | - Fix typo introduced in commit #<I>, '=' -> '=='. |
diff --git a/lib/awesome_bot/check.rb b/lib/awesome_bot/check.rb
index <HASH>..<HASH> 100644
--- a/lib/awesome_bot/check.rb
+++ b/lib/awesome_bot/check.rb
@@ -22,13 +22,11 @@ module AwesomeBot
log.add "> White list: #{white_listed.join ', '}" if r.white_listing
- r.dupes = r.links.select { |e| r.links.c... | [output] always display unique links |
diff --git a/dist/index.js b/dist/index.js
index <HASH>..<HASH> 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -98,9 +98,12 @@ module.exports = {
body: JSON.stringify(params || {})
});
},
- raw: function raw(url, options) {
+ raw: function raw(url, options, deleteContentType) {
options.credentials = opti... | Add deleteContentType param to raw |
diff --git a/alot/db/utils.py b/alot/db/utils.py
index <HASH>..<HASH> 100644
--- a/alot/db/utils.py
+++ b/alot/db/utils.py
@@ -132,8 +132,12 @@ def decode_header(header, normalize=False):
except UnicodeEncodeError:
return value
+ # some mailers send out incorrectly escaped headers
+ # and double q... | fix: be more relaxed wrt non-rfc-compliant headers
this makes db.utils.decode_header remove superflous double quotes around header values before
decoding them |
diff --git a/nion/instrumentation/camera_base.py b/nion/instrumentation/camera_base.py
index <HASH>..<HASH> 100644
--- a/nion/instrumentation/camera_base.py
+++ b/nion/instrumentation/camera_base.py
@@ -856,7 +856,7 @@ def update_intensity_calibration(data_element, stem_controller, camera):
calibration_con... | Fix issue in calibration control for counts per electron. |
diff --git a/lib/vagrant/plugin/v2/trigger.rb b/lib/vagrant/plugin/v2/trigger.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/plugin/v2/trigger.rb
+++ b/lib/vagrant/plugin/v2/trigger.rb
@@ -36,11 +36,11 @@ module Vagrant
triggers = []
if stage == :before
triggers = config.before_trig... | Use inclunde? instead of any? for ruby <I> |
diff --git a/worker/agent.go b/worker/agent.go
index <HASH>..<HASH> 100644
--- a/worker/agent.go
+++ b/worker/agent.go
@@ -74,6 +74,7 @@ func (a *agent) work() {
}
if inpack, l, err = decodeInPack(data); err != nil {
a.worker.err(err)
+ leftdata = data
continue
}
leftdata = nil | keep already received data if not enough to decode |
diff --git a/tests/integration.test.js b/tests/integration.test.js
index <HASH>..<HASH> 100644
--- a/tests/integration.test.js
+++ b/tests/integration.test.js
@@ -48,6 +48,7 @@ describe('integration tests', () => {
// the implementation of each of the specific classes via conditionals.
if (testcase.cache && t... | verifies that TTLs are set in integration tests |
diff --git a/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/rules/UnpairedQuotesBracketsRule.java b/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/rules/UnpairedQuotesBracketsRule.java
index <HASH>..<HASH> 100644
--- a/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/rules/UnpairedQuotesBrac... | small update to English quotation marks (conflict with typographical apostrophe) |
diff --git a/bundle/Templating/Twig/Extension/SiteExtension.php b/bundle/Templating/Twig/Extension/SiteExtension.php
index <HASH>..<HASH> 100644
--- a/bundle/Templating/Twig/Extension/SiteExtension.php
+++ b/bundle/Templating/Twig/Extension/SiteExtension.php
@@ -33,6 +33,10 @@ class SiteExtension extends AbstractExtens... | NGSTACK-<I> implement reading time twig function |
diff --git a/examples/idle.py b/examples/idle.py
index <HASH>..<HASH> 100644
--- a/examples/idle.py
+++ b/examples/idle.py
@@ -4,10 +4,15 @@
#
#http://www.musicpd.org/doc/protocol/ch02.html#id525963
#Example
+from select import select
client.send_idle()
-select([client], [], [])
-changed = client.fetch_idle()
+# ... | Improved the idle.py example.
It now becomes clear what to do with the output of select(), and how
to call that function properly. |
diff --git a/lib/Model.js b/lib/Model.js
index <HASH>..<HASH> 100644
--- a/lib/Model.js
+++ b/lib/Model.js
@@ -220,19 +220,6 @@ Model.prototype.invalidate = function invalidate() {
Model.prototype.deref = require("./deref");
/**
- * Synchronously returns a clone of the {@link Model} bound to a location within the {... | Removing softDeref/bind |
diff --git a/src/Str.php b/src/Str.php
index <HASH>..<HASH> 100644
--- a/src/Str.php
+++ b/src/Str.php
@@ -525,6 +525,7 @@ final class Str implements \Countable {
* Returns whether this string is entirely lowercase
*
* @return bool
+ * @deprecated use `equals` and `toLowerCase` instead
*/
public function... | Deprecate method 'isLowerCase' |
diff --git a/spec/build-url-spec.js b/spec/build-url-spec.js
index <HASH>..<HASH> 100644
--- a/spec/build-url-spec.js
+++ b/spec/build-url-spec.js
@@ -294,4 +294,19 @@ describe('buildUrl', function () {
})).toEqual('http://example.com?foo=bar&bar=one%2Ctwo%2Cthree');
});
+ it('should maintain trailing slash ... | Add tests for trailing slash bug |
diff --git a/lib/sensu/api.rb b/lib/sensu/api.rb
index <HASH>..<HASH> 100644
--- a/lib/sensu/api.rb
+++ b/lib/sensu/api.rb
@@ -443,11 +443,12 @@ module Sensu
response = Array.new
$redis.smembers('aggregates').callback do |checks|
unless checks.empty?
+ params[:last] ? last = params[:last... | return only ?last=N aggregates + return not found instead of empty set for non exising check aggregates |
diff --git a/logagg/nsqsender.py b/logagg/nsqsender.py
index <HASH>..<HASH> 100644
--- a/logagg/nsqsender.py
+++ b/logagg/nsqsender.py
@@ -17,7 +17,7 @@ class NSQSender(object):
self.nsq_max_depth = nsq_max_depth
self.log = log
- self.session = requests.Session()
+ self.session = reque... | fixed logagg creating multiple connections when nsq is down |
diff --git a/src/OAuth2/GrantType/RefreshToken.php b/src/OAuth2/GrantType/RefreshToken.php
index <HASH>..<HASH> 100644
--- a/src/OAuth2/GrantType/RefreshToken.php
+++ b/src/OAuth2/GrantType/RefreshToken.php
@@ -60,7 +60,7 @@ class RefreshToken implements GrantTypeInterface
public function getUserId()
{
- ... | make user_id not required for refresh_token grant |
diff --git a/src/WP/ScriptsAndStyles.php b/src/WP/ScriptsAndStyles.php
index <HASH>..<HASH> 100644
--- a/src/WP/ScriptsAndStyles.php
+++ b/src/WP/ScriptsAndStyles.php
@@ -81,7 +81,7 @@ class ScriptsAndStyles
*/
public function hospitalRegisterStyle($file)
{
- wp_register_style('hospital_admin_sty... | 'all' for wp register styles |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -51,7 +51,7 @@ data_files=[
('cherrypy/scaffold', ['cherrypy/scaffold/example.conf',
'cherrypy/scaffold/site.conf',
]),
- ('cherrypy/scaffold/static', ['made_with... | Oops. Buglet in setup.py. |
diff --git a/mrq/dashboard/app.py b/mrq/dashboard/app.py
index <HASH>..<HASH> 100644
--- a/mrq/dashboard/app.py
+++ b/mrq/dashboard/app.py
@@ -180,7 +180,7 @@ def api_datatables(unit):
if with_mongodb_size:
jobs = connections.mongodb_jobs.mrq_jobs.count({
"queue": name... | Allow querying jobs with a different status than "queued" |
diff --git a/ColonyDSL/GlobalConfig.py b/ColonyDSL/GlobalConfig.py
index <HASH>..<HASH> 100644
--- a/ColonyDSL/GlobalConfig.py
+++ b/ColonyDSL/GlobalConfig.py
@@ -41,15 +41,6 @@ def generate_memory_list() -> list:
result.append(ProcedureFileLibrary("/usr/share/ColonyDSL/lib_contrib/procedure/"))
result.append... | library is no longer loaded from WD |
diff --git a/dispatch/static/manager/src/js/components/ContentEditor/ContentStateHelper.js b/dispatch/static/manager/src/js/components/ContentEditor/ContentStateHelper.js
index <HASH>..<HASH> 100644
--- a/dispatch/static/manager/src/js/components/ContentEditor/ContentStateHelper.js
+++ b/dispatch/static/manager/src/js/... | refactor switch statement in content editor |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -41,7 +41,7 @@ setup(
],
keywords="PEP 287, pep287, docstrings, rst, reStructuredText",
py_modules=["flake8_rst_docstrings"],
- python_requires=">=3.6",
+ python_requires=">=3.7",
install_requires=[
... | Require Python <I> or later |
diff --git a/lib/fog/aws/requests/rds/modify_db_instance.rb b/lib/fog/aws/requests/rds/modify_db_instance.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/aws/requests/rds/modify_db_instance.rb
+++ b/lib/fog/aws/requests/rds/modify_db_instance.rb
@@ -24,6 +24,7 @@ module Fog
# * MultiAZ <~Boolean> Specifies if the... | Support VPC security group modifictions for RDS |
diff --git a/scout/models/case/case.py b/scout/models/case/case.py
index <HASH>..<HASH> 100644
--- a/scout/models/case/case.py
+++ b/scout/models/case/case.py
@@ -83,7 +83,7 @@ class Case(Document):
distinct_genes = set()
for panel in self.default_panels:
for gene in panel.gene_objects.va... | correct getting hgnc id |
diff --git a/oidc_provider/admin.py b/oidc_provider/admin.py
index <HASH>..<HASH> 100644
--- a/oidc_provider/admin.py
+++ b/oidc_provider/admin.py
@@ -1,9 +1,8 @@
from django.contrib import admin
-from oidc_provider.models import Client, Code, Token, UserInfo
+from oidc_provider.models import Client, Code, Token
... | Remove UserInfo from admin.py. |
diff --git a/carbonate/util.py b/carbonate/util.py
index <HASH>..<HASH> 100644
--- a/carbonate/util.py
+++ b/carbonate/util.py
@@ -14,14 +14,18 @@ def common_parser(description='untitled'):
description=description,
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
+ config_file = os.environ... | Read config-file and cluster options from environ
This would make it DRY in scripts/wrappers with non-default values. |
diff --git a/Spreadsheet.php b/Spreadsheet.php
index <HASH>..<HASH> 100644
--- a/Spreadsheet.php
+++ b/Spreadsheet.php
@@ -497,6 +497,8 @@ class Spreadsheet extends Base
case 'h2':
case 'h3':
case 'h4':
+ case 'h5':
+ case 'h6':
$currentForma... | Improve support for H1-H6 |
diff --git a/tornado/autoreload.py b/tornado/autoreload.py
index <HASH>..<HASH> 100644
--- a/tornado/autoreload.py
+++ b/tornado/autoreload.py
@@ -71,6 +71,7 @@ import logging
import os
import pkgutil
import sys
+import traceback
import types
import subprocess
@@ -275,7 +276,16 @@ def main():
logging.in... | Improve autoreload for import-time errors.
We already had a special case for SyntaxErrors, but NameErrors and other
import-time errors could leave a file unwatched. |
diff --git a/src/Psalm/Internal/Analyzer/Statements/Expression/BinaryOp/CoalesceAnalyzer.php b/src/Psalm/Internal/Analyzer/Statements/Expression/BinaryOp/CoalesceAnalyzer.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Analyzer/Statements/Expression/BinaryOp/CoalesceAnalyzer.php
+++ b/src/Psalm/Internal/Analyz... | Avoid false-positives while analysing memoised coalesce |
diff --git a/src/Tooltip.js b/src/Tooltip.js
index <HASH>..<HASH> 100644
--- a/src/Tooltip.js
+++ b/src/Tooltip.js
@@ -150,6 +150,10 @@ Titon.Tooltip = new Class({
* Hide the tooltip and set all relevant values to null.
*/
hide: function() {
+ if (!this.isVisible) {
+ return;
+ }
+
this.isVisible = fal... | <I>
Added a static top level hide() method that will hide all instances on the page |
diff --git a/src/main/java/com/cloudbees/jenkins/GitHubWebHook.java b/src/main/java/com/cloudbees/jenkins/GitHubWebHook.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/cloudbees/jenkins/GitHubWebHook.java
+++ b/src/main/java/com/cloudbees/jenkins/GitHubWebHook.java
@@ -153,7 +153,7 @@ public class GitHubWebHoo... | Needs to look for all the projects recursively. |
diff --git a/core/lib/refinery/crud.rb b/core/lib/refinery/crud.rb
index <HASH>..<HASH> 100644
--- a/core/lib/refinery/crud.rb
+++ b/core/lib/refinery/crud.rb
@@ -18,16 +18,16 @@ module Refinery
this_class = class_name.constantize.base_class
{
- :title_attribute => "title",
- :order => ('p... | Ordered the default attributes in crudify alphabetically. |
diff --git a/actionview/lib/action_view/template/types.rb b/actionview/lib/action_view/template/types.rb
index <HASH>..<HASH> 100644
--- a/actionview/lib/action_view/template/types.rb
+++ b/actionview/lib/action_view/template/types.rb
@@ -6,13 +6,7 @@ module ActionView
class Types
class Type
cattr_... | Remove register abstraction.
The template types is a private abstraction to fill in basic blanks from Action Dispatch's
mime types. As such we can modify the data structure ourselves. |
diff --git a/lib/alchemy/essence.rb b/lib/alchemy/essence.rb
index <HASH>..<HASH> 100644
--- a/lib/alchemy/essence.rb
+++ b/lib/alchemy/essence.rb
@@ -61,7 +61,7 @@ module Alchemy #:nodoc:
delegate :restricted?, to: :page, allow_nil: true
delegate :public?, to: :element, allow_nil: true
-... | Performance: Only touch element after update
When creating an element, we do not need to touch it for every time it
creates a content. |
diff --git a/mobile/bindings.go b/mobile/bindings.go
index <HASH>..<HASH> 100644
--- a/mobile/bindings.go
+++ b/mobile/bindings.go
@@ -79,6 +79,19 @@ func Start(extraArgs string, unlockerReady, rpcReady Callback) {
go func() {
<-rpcListening
+
+ // Now that the RPC server is ready, we can get the needed
+ // a... | mobile: authenticate with rpc server
This makes the mobile bindings work with TLS and macaroons enabled,
which is supported from falafel <I>. |
diff --git a/test/test_audio.rb b/test/test_audio.rb
index <HASH>..<HASH> 100644
--- a/test/test_audio.rb
+++ b/test/test_audio.rb
@@ -41,7 +41,7 @@ class TestAudio < Test::Unit::TestCase
end
def test_analyze
- # We don't test the full ESTER2 algorithm for now
+ # TODO - We don't test the full ESTER2 algo... | Changing message as a TODO |
diff --git a/libraries/lithium/test/Unit.php b/libraries/lithium/test/Unit.php
index <HASH>..<HASH> 100644
--- a/libraries/lithium/test/Unit.php
+++ b/libraries/lithium/test/Unit.php
@@ -543,6 +543,9 @@ class Unit extends \lithium\core\Object {
$data[] = $compare;
}
}
+ if (empty($data)) {
+ return ... | return all data if unit compare can not figure out differences |
diff --git a/src/Controller/UsersController.php b/src/Controller/UsersController.php
index <HASH>..<HASH> 100644
--- a/src/Controller/UsersController.php
+++ b/src/Controller/UsersController.php
@@ -368,6 +368,7 @@ class UsersController extends BackendAppController
if (!$this->request->isAll(['ajax', 'post']))... | set viewclass to null in heartbeat action |
diff --git a/test/test_job.py b/test/test_job.py
index <HASH>..<HASH> 100644
--- a/test/test_job.py
+++ b/test/test_job.py
@@ -1,5 +1,7 @@
'''Basic tests about the Job class'''
+import sys
+
from common import TestQless
from qless.job import Job, BaseJob
@@ -188,7 +190,10 @@ class TestJob(TestQless):
se... | Python3 cannot distinguish functions from class instances |
diff --git a/framework/db/ColumnSchema.php b/framework/db/ColumnSchema.php
index <HASH>..<HASH> 100644
--- a/framework/db/ColumnSchema.php
+++ b/framework/db/ColumnSchema.php
@@ -126,6 +126,7 @@ class ColumnSchema extends Object
return $value;
}
if (is_float($value... | Update ColumnSchema.php
added comment |
diff --git a/spec/unit/lib/itamae/resource/remote_file_spec.rb b/spec/unit/lib/itamae/resource/remote_file_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/lib/itamae/resource/remote_file_spec.rb
+++ b/spec/unit/lib/itamae/resource/remote_file_spec.rb
@@ -27,6 +27,7 @@ module Itamae
expect(subject).to recei... | Fix remote_file_spec.rb
If pre_action is not executed, @temppath is not set and spec fails. |
diff --git a/ioc_writer/ioc_api.py b/ioc_writer/ioc_api.py
index <HASH>..<HASH> 100644
--- a/ioc_writer/ioc_api.py
+++ b/ioc_writer/ioc_api.py
@@ -47,7 +47,7 @@ date_regex = r'^[12][9012][0-9]{2}-[0-1][0-9]-[0-3][0-9]T[0-2][0-9]:[0-6][0-9]:[
class IOCParseError(Exception):
pass
... | IOC class should inherit from object. |
diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -63,6 +63,7 @@ func (c *Client) Subscribe(stream string, handler func(msg *Event)) error {
func (c *Client) SubscribeChan(stream string, ch chan *Event) error {
resp, err := c.request(stream)
if err != nil {
+ close(... | Consistently close channel on error |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.