diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/src/SearchableTrait.php b/src/SearchableTrait.php
index <HASH>..<HASH> 100644
--- a/src/SearchableTrait.php
+++ b/src/SearchableTrait.php
@@ -87,7 +87,11 @@ trait SearchableTrait
$this->makeGroupBy($query);
+ $clone_bindings = $query->getBindings();
+ $query->setBindings([]);
+
... | fix for bindings order when using where clause
Bindings order were wrong. |
diff --git a/src/mesh.js b/src/mesh.js
index <HASH>..<HASH> 100644
--- a/src/mesh.js
+++ b/src/mesh.js
@@ -528,7 +528,7 @@ export default class Mesh {
break;
case Layout.UV.key:
dataView.setFloat32(offset, this.textures[i * 2], true);
- ... | Fix bug in Layout buffer data for UV textures. |
diff --git a/scripts/updateLicense.py b/scripts/updateLicense.py
index <HASH>..<HASH> 100644
--- a/scripts/updateLicense.py
+++ b/scripts/updateLicense.py
@@ -50,10 +50,12 @@ def update_go_license(name, force=False):
if year == CURRENT_YEAR:
break
- new_line = COPYRIGHT_RE.sub('Copyright ... | Do not update year for copyright in license (#<I>) |
diff --git a/jbpm-designer-client/src/main/java/org/jbpm/designer/client/DesignerPresenter.java b/jbpm-designer-client/src/main/java/org/jbpm/designer/client/DesignerPresenter.java
index <HASH>..<HASH> 100644
--- a/jbpm-designer-client/src/main/java/org/jbpm/designer/client/DesignerPresenter.java
+++ b/jbpm-designer-cl... | - adding to more modifications regarding:
- adapted to recent URIEncoder->URIUtil refactoring on uberfire |
diff --git a/IndexedRedis/__init__.py b/IndexedRedis/__init__.py
index <HASH>..<HASH> 100644
--- a/IndexedRedis/__init__.py
+++ b/IndexedRedis/__init__.py
@@ -549,13 +549,17 @@ class IndexedRedisModel(object):
key = None
for key, value in myDict.items():
- if key not in self.BINARY_FIELDS:
+ if key not in s... | Fix repr and bytes fields on python2 and 3 |
diff --git a/gtk_mock/combo_box_text.go b/gtk_mock/combo_box_text.go
index <HASH>..<HASH> 100644
--- a/gtk_mock/combo_box_text.go
+++ b/gtk_mock/combo_box_text.go
@@ -10,3 +10,6 @@ func (*MockComboBoxText) AppendText(v1 string) {
func (*MockComboBoxText) GetActiveText() string {
return ""
}
+
+func (*MockComboBoxTe... | Add support for removing all elements in a combobox text |
diff --git a/app/models/activation_key.rb b/app/models/activation_key.rb
index <HASH>..<HASH> 100644
--- a/app/models/activation_key.rb
+++ b/app/models/activation_key.rb
@@ -33,11 +33,16 @@ class ActivationKey < ActiveRecord::Base
validates :description, :katello_description_format => true
validates :environment... | <I> - validation in activation key model, can't be created for Locker env |
diff --git a/plugins/blackbox/index.js b/plugins/blackbox/index.js
index <HASH>..<HASH> 100644
--- a/plugins/blackbox/index.js
+++ b/plugins/blackbox/index.js
@@ -39,7 +39,12 @@ function blackbox(name, deps) {
parser.on('data', function(data) {
_writeVideo(data);
})
- client.getVideoStream().pipe(... | The video stream can sometimes break during flight. We have to try to reconnect it so the blackbox keeps recording. |
diff --git a/html2asketch/nodeToSketchLayers.js b/html2asketch/nodeToSketchLayers.js
index <HASH>..<HASH> 100644
--- a/html2asketch/nodeToSketchLayers.js
+++ b/html2asketch/nodeToSketchLayers.js
@@ -113,7 +113,8 @@ export default async function nodeToSketchLayers(node) {
opacity,
overflowX,
overflowY,
- ... | Skip node that has 'rect (0 0 0 0)' on clip and 'absolute' on positon (#<I>) |
diff --git a/lib/acts_as_enum.rb b/lib/acts_as_enum.rb
index <HASH>..<HASH> 100644
--- a/lib/acts_as_enum.rb
+++ b/lib/acts_as_enum.rb
@@ -80,7 +80,7 @@ module ActsAsEnum
const_set(method_name.upcase, attr_value)
- if Rails.version =~ /^[34]/
+ if Rails.version =~ /^[345]/
scope me... | rails 5 support
it does not work in rails 5, adding 5 support |
diff --git a/src/Entity/Ranking.php b/src/Entity/Ranking.php
index <HASH>..<HASH> 100644
--- a/src/Entity/Ranking.php
+++ b/src/Entity/Ranking.php
@@ -9,7 +9,7 @@ use Drupal\mespronos\RankingInterface;
use Drupal\mespronos\MPNEntityInterface;
use Drupal\mespronos_group\Entity\Group;
-abstract class Ranking extends ... | refactoring - clean Ranking |
diff --git a/lib/chef/knife/azure_server_create.rb b/lib/chef/knife/azure_server_create.rb
index <HASH>..<HASH> 100755
--- a/lib/chef/knife/azure_server_create.rb
+++ b/lib/chef/knife/azure_server_create.rb
@@ -1090,4 +1090,4 @@ class Chef
end
end
end
-end
+end
\ No newline at end of file | Removed extra line for travis pass |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -558,6 +558,9 @@ async function activate() {
let CHANGELOG = await askForChangelog( VERSION_TYPE, NEXT_VERSION );
+ if ( CHANGELOG )
+ fs.writeFileSync( 'CHANGELOG.md.draft', CHANGELOG, 'UTF-8' );
+
//
// ---... | A draft changelog will be saved for future use when the user writes an entry and then aborts the update |
diff --git a/php/Element.php b/php/Element.php
index <HASH>..<HASH> 100644
--- a/php/Element.php
+++ b/php/Element.php
@@ -247,7 +247,8 @@ class Element extends Tag {
};
array_walk_recursive( $config, $replaceElements );
// Set '_' last to ensure that subclasses can't accidentally step on it.
- $config['_'] =... | Strip all namespaces from infused PHP widgets
This will allow us to put custom MediaWiki specific widgets in their own
namespace, but still be able to infuse them.
Change-Id: I5d<I>e<I>efc<I>ad<I>c<I>e2b<I>dc |
diff --git a/examples/notifications.rb b/examples/notifications.rb
index <HASH>..<HASH> 100644
--- a/examples/notifications.rb
+++ b/examples/notifications.rb
@@ -13,3 +13,6 @@ client.category_set_user_notification_level(1, notification_level: 3)
# mute a topic
client.topic_set_user_notification_level(1, notificati... | Pass params to get notifications API (#<I>) |
diff --git a/src/Ukey1/ApiClient/Request.php b/src/Ukey1/ApiClient/Request.php
index <HASH>..<HASH> 100644
--- a/src/Ukey1/ApiClient/Request.php
+++ b/src/Ukey1/ApiClient/Request.php
@@ -222,8 +222,7 @@ class Request
$this->httpClient = new Client(
[
"base_uri" => $thi... | Redirects allowed
In near future we may change API URL, so it's necessary to allow redirects by default. |
diff --git a/src/host/browser.js b/src/host/browser.js
index <HASH>..<HASH> 100644
--- a/src/host/browser.js
+++ b/src/host/browser.js
@@ -5,8 +5,8 @@
/*#ifndef(UMD)*/
"use strict";
/*global _GPF_HOST*/ // Host types
+/*global _gpfBootImplByHost*/ // Boot host specific implementation per host
/*global _gpfExit:true... | Uses switch pattern to improve coverage / simplify code |
diff --git a/src/scripts/hubot-phrases.js b/src/scripts/hubot-phrases.js
index <HASH>..<HASH> 100644
--- a/src/scripts/hubot-phrases.js
+++ b/src/scripts/hubot-phrases.js
@@ -38,9 +38,9 @@ module.exports = function Plugin (robot) {
this.name = name;
this.tidbits = [];
this.alias = false;
- thi... | fix(*): make new facts open by default
Since the canEdit stuff doesn't really work without user roles, figured locking down by default
doesn't make much sense |
diff --git a/pybar/daq/fifo_readout.py b/pybar/daq/fifo_readout.py
index <HASH>..<HASH> 100644
--- a/pybar/daq/fifo_readout.py
+++ b/pybar/daq/fifo_readout.py
@@ -100,9 +100,8 @@ class FifoReadout(object):
else:
fifo_size = self.dut['SRAM']['FIFO_SIZE']
data = self.read_data()
- ... | ENH: optimize check, reduce memory, check for FE data word |
diff --git a/bingo/image.py b/bingo/image.py
index <HASH>..<HASH> 100644
--- a/bingo/image.py
+++ b/bingo/image.py
@@ -66,7 +66,7 @@ def get_texts(bingo_fields, font):
if bingo_field.is_middle():
text += _("\n{time}\nBingo #{board_id}").format(
time=bingo_field.board.get_created()... | fix: show the correct board_id on the images.
The correct id is board.board_id and not board.id,
as "id" is the internal id assigned by django,
and "board_id" is the board number on the current site. |
diff --git a/moco-core/src/main/java/com/github/dreamhead/moco/UnexpectedRequestMatcher.java b/moco-core/src/main/java/com/github/dreamhead/moco/UnexpectedRequestMatcher.java
index <HASH>..<HASH> 100644
--- a/moco-core/src/main/java/com/github/dreamhead/moco/UnexpectedRequestMatcher.java
+++ b/moco-core/src/main/java/c... | added missing final to unexpected request matcher |
diff --git a/src/Sculpin/Core/Permalink/SourcePermalinkFactory.php b/src/Sculpin/Core/Permalink/SourcePermalinkFactory.php
index <HASH>..<HASH> 100644
--- a/src/Sculpin/Core/Permalink/SourcePermalinkFactory.php
+++ b/src/Sculpin/Core/Permalink/SourcePermalinkFactory.php
@@ -116,7 +116,11 @@ class SourcePermalinkFactory... | Fixes bug with :basename tag in permalinks
When :basename was used for files in the root source directory, one character was removed from the beginning. This fixes this. |
diff --git a/app/patients/edit/controller.js b/app/patients/edit/controller.js
index <HASH>..<HASH> 100644
--- a/app/patients/edit/controller.js
+++ b/app/patients/edit/controller.js
@@ -520,7 +520,13 @@ export default AbstractEditController.extend(BloodTypes, DOBDays, GenderList, Po
},
afterUpdate: fun... | Changed patient save workflow
Changed to display modal on save instead of redirect to search. |
diff --git a/src/mouse.support.js b/src/mouse.support.js
index <HASH>..<HASH> 100644
--- a/src/mouse.support.js
+++ b/src/mouse.support.js
@@ -1,8 +1,8 @@
steal('src/synthetic.js', 'src/mouse.js', function checkSupport(Syn) {
if (!document.body) {
- Syn.schedule(function() {
- checkSupport(Syn);
+ Syn.schedul... | Remove extra trailing spaces in mouse.support.js |
diff --git a/src/pubsub.js b/src/pubsub.js
index <HASH>..<HASH> 100644
--- a/src/pubsub.js
+++ b/src/pubsub.js
@@ -63,7 +63,9 @@ module.exports = (common) => {
const getTopic = () => 'pubsub-tests-' + Math.random()
- describe('callback API', () => {
+ describe('callback API', function () {
+ this.ti... | chore: increase timeout for CI |
diff --git a/haversine/__init__.py b/haversine/__init__.py
index <HASH>..<HASH> 100644
--- a/haversine/__init__.py
+++ b/haversine/__init__.py
@@ -21,7 +21,7 @@ def haversine(point1, point2, miles=False):
lat2, lng2 = point2
# convert all latitudes/longitudes from decimal degrees to radians
- lat1, lng1,... | unpack coordinates without building a list |
diff --git a/routes/index.js b/routes/index.js
index <HASH>..<HASH> 100644
--- a/routes/index.js
+++ b/routes/index.js
@@ -32,6 +32,10 @@ var TEST_AND_DEPLOY = "TEST_AND_DEPLOY";
*/
exports.index = function(req, res){
+ // Work-around for Safari/Express etags bug on cookie logout.
+ // Without it, Safari will ca... | work-around Safari caching logged-in page after logout.
this is due to etag weirdness.
fixes #<I>. |
diff --git a/src/utils/mixins.js b/src/utils/mixins.js
index <HASH>..<HASH> 100644
--- a/src/utils/mixins.js
+++ b/src/utils/mixins.js
@@ -83,7 +83,7 @@ const on = (el, ev, fn, opts) => {
el = el instanceof Array ? el : [el];
for (let i = 0; i < ev.length; ++i) {
- el.forEach(elem => elem.addEventListener(ev... | Add checks in on/off mixins |
diff --git a/website/config.rb b/website/config.rb
index <HASH>..<HASH> 100644
--- a/website/config.rb
+++ b/website/config.rb
@@ -2,7 +2,7 @@ set :base_url, "https://www.consul.io/"
activate :hashicorp do |h|
h.name = "consul"
- h.version = "1.7.0"
+ h.version = "1.7.1"
h.github_slug = "hashi... | Update Consul version on website to <I> |
diff --git a/services/github/auth/admin.js b/services/github/auth/admin.js
index <HASH>..<HASH> 100644
--- a/services/github/auth/admin.js
+++ b/services/github/auth/admin.js
@@ -24,6 +24,7 @@ function setRoutes({ shieldsSecret }, { apiProvider, server }) {
end('Invalid secret.')
}, 10000)
}
+ a... | set 'Cache-Control: private' on token auth endpoint (#<I>) |
diff --git a/src/test/java/javax/time/calendar/format/TestCharLiteralPrinter.java b/src/test/java/javax/time/calendar/format/TestCharLiteralPrinter.java
index <HASH>..<HASH> 100644
--- a/src/test/java/javax/time/calendar/format/TestCharLiteralPrinter.java
+++ b/src/test/java/javax/time/calendar/format/TestCharLiteralPr... | CharLiteralPrinterParser is package scoped |
diff --git a/schema_salad/tests/test_examples.py b/schema_salad/tests/test_examples.py
index <HASH>..<HASH> 100644
--- a/schema_salad/tests/test_examples.py
+++ b/schema_salad/tests/test_examples.py
@@ -332,7 +332,7 @@ class TestSchemas(unittest.TestCase):
print(g.serialize(format="n3"))
def test_mixin(... | modified test mixin for correct base path |
diff --git a/lib/easyzpl/label.rb b/lib/easyzpl/label.rb
index <HASH>..<HASH> 100644
--- a/lib/easyzpl/label.rb
+++ b/lib/easyzpl/label.rb
@@ -88,6 +88,13 @@ module Easyzpl
y = 0 unless numeric?(y)
label_data.push('^FO' + x.to_s + ',' + y.to_s + '^B3N,Y,20,N,N^FD' +
bar_code_string ... | Prints barcode into the PDF if generated. |
diff --git a/src/utils/helper.js b/src/utils/helper.js
index <HASH>..<HASH> 100644
--- a/src/utils/helper.js
+++ b/src/utils/helper.js
@@ -273,6 +273,7 @@ export const parseHits = (hits) => {
_id: data._id,
_index: data._index,
_type: data._type,
+ _score: data._score,
highlight: data.highlight |... | feat: Expose _score in hits (#<I>) |
diff --git a/Kwf/Assets/Provider/Components.php b/Kwf/Assets/Provider/Components.php
index <HASH>..<HASH> 100644
--- a/Kwf/Assets/Provider/Components.php
+++ b/Kwf/Assets/Provider/Components.php
@@ -99,6 +99,9 @@ class Kwf_Assets_Provider_Components extends Kwf_Assets_Provider_Abstract
{
$ret = array();
... | add exception if invalid settings are returned |
diff --git a/src/main/java/com/zaxxer/hikari/HikariConfig.java b/src/main/java/com/zaxxer/hikari/HikariConfig.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/zaxxer/hikari/HikariConfig.java
+++ b/src/main/java/com/zaxxer/hikari/HikariConfig.java
@@ -767,6 +767,8 @@ public class HikariConfig implements HikariCo... | Add comment re: issue #<I> to prevent accidental breakage of Spring Boot's FailureAnalyzer. |
diff --git a/lib/sup/modes/line-cursor-mode.rb b/lib/sup/modes/line-cursor-mode.rb
index <HASH>..<HASH> 100644
--- a/lib/sup/modes/line-cursor-mode.rb
+++ b/lib/sup/modes/line-cursor-mode.rb
@@ -66,6 +66,7 @@ protected
return if @curpos == p
@curpos = p.clamp @cursor_top, lines
buffer.mark_dirty
+ set... | Update status on jump on line in line-cursor-mode
The line number isn't updated in the status field when you jump to the
end or beginning, or do page up or down before the next redraw is done.
Updating the status manually in set_cursor_pos. |
diff --git a/lib/test-utils.js b/lib/test-utils.js
index <HASH>..<HASH> 100644
--- a/lib/test-utils.js
+++ b/lib/test-utils.js
@@ -8,13 +8,16 @@ const fileUtils = require('./file-utils');
module.exports = {
defaults() {
+ const opts = {
+ framework: 'react',
+ modules: 'webpack',
+ js: 'js',
+ ... | Add props to this.context (#<I>) |
diff --git a/lib/determine-basal/determine-basal.js b/lib/determine-basal/determine-basal.js
index <HASH>..<HASH> 100644
--- a/lib/determine-basal/determine-basal.js
+++ b/lib/determine-basal/determine-basal.js
@@ -294,9 +294,9 @@ var determine_basal = function determine_basal(glucose_status, currenttemp, iob_
... | go back to using minDeviationSlope to decay UAM CI |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ def read(fname):
setup(
name='unleash',
- version='0.3.4.dev1',
+ version='0.3.5.dev1',
description=('Creates release commits directly in git, unleashes them on '
'PyPI and p... | Increased version to <I>.dev1 after release of <I>.
(commit by unleash <I>.dev1) |
diff --git a/lib/dragonfly/s3_data_store.rb b/lib/dragonfly/s3_data_store.rb
index <HASH>..<HASH> 100644
--- a/lib/dragonfly/s3_data_store.rb
+++ b/lib/dragonfly/s3_data_store.rb
@@ -1,6 +1,8 @@
require 'fog'
require 'dragonfly'
+Dragonfly::App.register_datastore(:s3){ Dragonfly::S3DataStore }
+
module Dragonfly
... | register :s3 symbol with Dragonfly::App |
diff --git a/lib/heroku/plugin.rb b/lib/heroku/plugin.rb
index <HASH>..<HASH> 100644
--- a/lib/heroku/plugin.rb
+++ b/lib/heroku/plugin.rb
@@ -13,7 +13,7 @@ module Heroku
end
def self.list
- Dir["#{directory}/*"].map do |folder|
+ Dir["#{directory}/*"].sort.map do |folder|
File.basename(f... | sort the output of Plugin.list so that plugins are always loaded in the same order |
diff --git a/examples/tesselation.py b/examples/tesselation.py
index <HASH>..<HASH> 100755
--- a/examples/tesselation.py
+++ b/examples/tesselation.py
@@ -13,6 +13,8 @@ def main():
glfw.window_hint(glfw.CONTEXT_VERSION_MAJOR, 4)
glfw.window_hint(glfw.CONTEXT_VERSION_MINOR, 0)
+ glfw.window_hint(glfw.OPEN... | Ensure the creating of forward compat core context
backwards compat non-core is default and somthing that will not work on a lot of setups. |
diff --git a/awesomplete.js b/awesomplete.js
index <HASH>..<HASH> 100644
--- a/awesomplete.js
+++ b/awesomplete.js
@@ -147,6 +147,10 @@ _.prototype = {
},
close: function () {
+ if (!this.opened) {
+ return;
+ }
+
this.ul.setAttribute("hidden", "");
this.index = -1;
diff --git a/test/api/closeSpec.js ... | Return early from close if not open
If the popup is already in a closed state, return early from
`Awesomplete.prototype.close` so as to guarantee that when
`awesomplete-close` events get triggered, the popup *was* actually
closed. |
diff --git a/cmd/minikube/cmd/start_flags.go b/cmd/minikube/cmd/start_flags.go
index <HASH>..<HASH> 100644
--- a/cmd/minikube/cmd/start_flags.go
+++ b/cmd/minikube/cmd/start_flags.go
@@ -575,7 +575,7 @@ func generateNewConfigFromFlags(cmd *cobra.Command, k8sVersion string, rtime str
exit.Message(reason.Usage, "Us... | fix grammar for common minikube start output |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ install_requires = [
]
mysqlbinlog_requires = [
- "mysql-replication>=0.4.1,<0.5.0",
+ "mysql-replication>=0.5,<0.6.0",
]
# nanomsg is still in beta | mysql replication ready to use <I> |
diff --git a/reactor-core/src/main/java/reactor/core/publisher/FluxWindowTimeout.java b/reactor-core/src/main/java/reactor/core/publisher/FluxWindowTimeout.java
index <HASH>..<HASH> 100644
--- a/reactor-core/src/main/java/reactor/core/publisher/FluxWindowTimeout.java
+++ b/reactor-core/src/main/java/reactor/core/publis... | Add windowTimeout sendNext early guard against maxSize overflow (#<I>)
This commit improves the InnerWindow.sendNext method to guard against
attempts at sending more than the window's maxSize elements, earlier in
the codepath.
It also removes an unused method that was left-in during iterations on
the backpressu... |
diff --git a/app/models/alchemy/picture/transformations.rb b/app/models/alchemy/picture/transformations.rb
index <HASH>..<HASH> 100644
--- a/app/models/alchemy/picture/transformations.rb
+++ b/app/models/alchemy/picture/transformations.rb
@@ -75,21 +75,30 @@ module Alchemy
def landscape_format?
image_file.l... | Deprecate image format methods
This deprecates `landscape_format?`, `portrait_format?` and
`square_format` as well as their aliases `landscape?`, `portrait?`
and `square?` in favor of the same methods on the `image_file`
object Dragonfly provides us. |
diff --git a/graylog2-server/src/main/java/org/graylog2/events/ClusterEventPeriodical.java b/graylog2-server/src/main/java/org/graylog2/events/ClusterEventPeriodical.java
index <HASH>..<HASH> 100644
--- a/graylog2-server/src/main/java/org/graylog2/events/ClusterEventPeriodical.java
+++ b/graylog2-server/src/main/java/o... | Log MongoDB query plan on TRACE level in ClusterEventPeriodical |
diff --git a/src/MakeJsonCommand.php b/src/MakeJsonCommand.php
index <HASH>..<HASH> 100644
--- a/src/MakeJsonCommand.php
+++ b/src/MakeJsonCommand.php
@@ -107,8 +107,7 @@ class MakeJsonCommand extends WP_CLI_Command {
}
}
-
- WP_CLI::success( sprintf( 'Created %d %s.', $result_count, Utils\pluralize( 'file', ... | Remove second arg to WP_CLI::success() |
diff --git a/src/main/java/org/elasticsearch/plugin/mapper/attachments/tika/LocaleChecker.java b/src/main/java/org/elasticsearch/plugin/mapper/attachments/tika/LocaleChecker.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/elasticsearch/plugin/mapper/attachments/tika/LocaleChecker.java
+++ b/src/main/java/org/e... | parse java.specification.version not java.version, so that it is robust |
diff --git a/sorl/thumbnail/engines/pgmagick.py b/sorl/thumbnail/engines/pgmagick.py
index <HASH>..<HASH> 100644
--- a/sorl/thumbnail/engines/pgmagick.py
+++ b/sorl/thumbnail/engines/pgmagick.py
@@ -3,7 +3,7 @@ from ..pgmagick import Image
from sorl.thumbnail.engines.base import EngineBase
try:
- from ..pgmagick... | adding simpler way to access blob data, thanks dotsbb. Since its not part of the public pgmagick, provide fallback |
diff --git a/glances/glances.py b/glances/glances.py
index <HASH>..<HASH> 100755
--- a/glances/glances.py
+++ b/glances/glances.py
@@ -44,7 +44,7 @@ import json
import collections
# Somes libs depends of OS
-is_Bsd = sys.platform.endswith('bsd')
+is_Bsd = sys.platform.find('bsd') != -1
is_Linux = sys.platform.star... | Correct #Issue #<I> |
diff --git a/src/RoboFileBase.php b/src/RoboFileBase.php
index <HASH>..<HASH> 100644
--- a/src/RoboFileBase.php
+++ b/src/RoboFileBase.php
@@ -166,7 +166,7 @@ class RoboFileBase extends AbstractRoboFile
. ($extra['config-import'] ? ' --config-import' : '');
if (!$force && $this->siteInstalledT... | #<I> Fixed comparison in bash command to check for siteInstalled |
diff --git a/plugins/rcpt_to.qmail_deliverable.js b/plugins/rcpt_to.qmail_deliverable.js
index <HASH>..<HASH> 100644
--- a/plugins/rcpt_to.qmail_deliverable.js
+++ b/plugins/rcpt_to.qmail_deliverable.js
@@ -9,9 +9,16 @@ var options = {
port: 8898,
};
+exports.register = function () {
+ var plugin = this;
+ ... | qmd: load config at register, with cb |
diff --git a/packages/onesignal/index.js b/packages/onesignal/index.js
index <HASH>..<HASH> 100755
--- a/packages/onesignal/index.js
+++ b/packages/onesignal/index.js
@@ -33,7 +33,7 @@ function addOneSignal (moduleOptions) {
cdn: true,
GcmSenderId: '482941778795',
importScripts: [
- '/sw.js'
+ ... | fix(onesignal): add cache query to sw.js |
diff --git a/lib/pork/context.rb b/lib/pork/context.rb
index <HASH>..<HASH> 100644
--- a/lib/pork/context.rb
+++ b/lib/pork/context.rb
@@ -1,12 +1,18 @@
+require 'pork/expect'
require 'pork/error'
module Pork
module Context
+ private
def initialize desc
@__pork__desc__ = desc
end
+ def... | context api should be private and expect api should work |
diff --git a/db/sql.php b/db/sql.php
index <HASH>..<HASH> 100644
--- a/db/sql.php
+++ b/db/sql.php
@@ -297,6 +297,13 @@ class SQL {
* @param $ttl int|array
**/
function schema($table,$fields=NULL,$ttl=0) {
+ $fw=\Base::instance();
+ $cache=\Cache::instance();
+ if ($fw->get('CACHE') && $ttl &&
+ ($cached=$ca... | Cache parsed schema for the TTL duration |
diff --git a/firefly-common/src/main/java/com/fireflysource/common/lifecycle/AbstractLifeCycle.java b/firefly-common/src/main/java/com/fireflysource/common/lifecycle/AbstractLifeCycle.java
index <HASH>..<HASH> 100644
--- a/firefly-common/src/main/java/com/fireflysource/common/lifecycle/AbstractLifeCycle.java
+++ b/fire... | [fix]: the start flag is null |
diff --git a/src/saml2/client_base.py b/src/saml2/client_base.py
index <HASH>..<HASH> 100644
--- a/src/saml2/client_base.py
+++ b/src/saml2/client_base.py
@@ -371,13 +371,12 @@ class Base(Entity):
except KeyError:
nsprefix = None
- try:
- force_authn = kwargs['force_authn']
- ... | Set force_authn only when the value is "true" |
diff --git a/web-server.js b/web-server.js
index <HASH>..<HASH> 100755
--- a/web-server.js
+++ b/web-server.js
@@ -40,8 +40,12 @@ function HttpServer(handlers) {
HttpServer.prototype.start = function(port) {
this.port = port;
- this.server.listen(port);
- util.puts('Http Server running at http://localhost:' + p... | Bug <I> - Print a friendly error message when port is already in use when web-server.js is run.
Adds a simple 'error' event listener to HttpServer.start. If
error code is "EADDRINUSE", the port is already in use, so prints
a message saying the port is in use, instead of just throwing out
the error. |
diff --git a/kayvee.go b/kayvee.go
index <HASH>..<HASH> 100644
--- a/kayvee.go
+++ b/kayvee.go
@@ -5,12 +5,15 @@ import (
)
// Log Levels:
-const Unknown = "unknown"
-const Critical = "critical"
-const Error = "error"
-const Warning = "warning"
-const Info = "info"
-const Trace = "trace"
+
+type LogLevel string
+
+... | use LogLevel type for log level constants |
diff --git a/src/XML2Array.php b/src/XML2Array.php
index <HASH>..<HASH> 100644
--- a/src/XML2Array.php
+++ b/src/XML2Array.php
@@ -32,7 +32,8 @@ class XML2Array
*
* @param string $inputXml - xml to convert
*
- * @return \DOMDocument
+ * @return array
+ *
* @throws \InvalidArgumentExc... | fix #1 - Return type of createArray is wrong |
diff --git a/lib/ariane.rb b/lib/ariane.rb
index <HASH>..<HASH> 100644
--- a/lib/ariane.rb
+++ b/lib/ariane.rb
@@ -53,7 +53,7 @@ module Ariane
@session = session
end
- # Internal: Gets the request environment.
+ # Internal: Gets the user session hash
#
# Returns the session object
def... | Removed ||= for boolean value check in @use_session_stack |
diff --git a/ssbio/core/protein.py b/ssbio/core/protein.py
index <HASH>..<HASH> 100644
--- a/ssbio/core/protein.py
+++ b/ssbio/core/protein.py
@@ -2111,8 +2111,6 @@ class Protein(Object):
structprop = self.representative_structure
chain_id = self.representative_chain
- chain = structp... | Move chain retrieval in get_residue_annotations to after structure check |
diff --git a/src/Routing/Route.php b/src/Routing/Route.php
index <HASH>..<HASH> 100644
--- a/src/Routing/Route.php
+++ b/src/Routing/Route.php
@@ -229,7 +229,7 @@ class Route
*/
public function isPartCountSame($url)
{
- return count(explode('/', $url)) === count(explode('/', $this->url));
+ ... | Removed trailing slashes in URLs in isPartCountSame
The isPartCountSame method made a difference between a URL with and without trailing slash. This occurred on a route like `/something/{parameter}`. `/something/<I>` matched but `/something/<I>/` did not. Now it does. |
diff --git a/mod/data/edit.php b/mod/data/edit.php
index <HASH>..<HASH> 100755
--- a/mod/data/edit.php
+++ b/mod/data/edit.php
@@ -310,7 +310,9 @@ if ($data->addtemplate){
$newtext = '';
}
-echo $newtext;
+$formatoptions = (object)array('noclean'=>true, 'para'=>false, 'filter'=>true);
+echo format_text($newtext... | filters MDL-<I> added filtering for when adding a database activity entry |
diff --git a/core/state/statedb.go b/core/state/statedb.go
index <HASH>..<HASH> 100644
--- a/core/state/statedb.go
+++ b/core/state/statedb.go
@@ -517,7 +517,17 @@ func (self *StateDB) GetRefund() uint64 {
// and clears the journal as well as the refunds.
func (s *StateDB) Finalise(deleteEmptyObjects bool) {
for ad... | state: handle nil in journal dirties |
diff --git a/src/filters/BasePSRFilter.php b/src/filters/BasePSRFilter.php
index <HASH>..<HASH> 100644
--- a/src/filters/BasePSRFilter.php
+++ b/src/filters/BasePSRFilter.php
@@ -52,7 +52,7 @@ abstract class BasePSRFilter implements Builder {
$classes =
(new Map($this->source->getAutoloadMap()['class']))->f... | Supporting PSR-{0,4} autoloading without a prefix
This is what Composer considers the "fallback" syntax.
<URL> |
diff --git a/astrocats/supernovae/tasks/general_data.py b/astrocats/supernovae/tasks/general_data.py
index <HASH>..<HASH> 100644
--- a/astrocats/supernovae/tasks/general_data.py
+++ b/astrocats/supernovae/tasks/general_data.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
"""General data import tasks.
"""
import os | MAINT: added coding for sphinx |
diff --git a/lib/models/room-state.js b/lib/models/room-state.js
index <HASH>..<HASH> 100644
--- a/lib/models/room-state.js
+++ b/lib/models/room-state.js
@@ -156,6 +156,7 @@ RoomState.prototype.setStateEvents = function(stateEvents) {
var members = utils.values(self.members);
utils.forEach(me... | Also emit a 'RoomState.members' event for m.room.power_levels |
diff --git a/src/Kiczort/PolishValidatorBundle/Validator/Constraints/PeselValidator.php b/src/Kiczort/PolishValidatorBundle/Validator/Constraints/PeselValidator.php
index <HASH>..<HASH> 100644
--- a/src/Kiczort/PolishValidatorBundle/Validator/Constraints/PeselValidator.php
+++ b/src/Kiczort/PolishValidatorBundle/Valida... | Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on <URL> |
diff --git a/scenarios/api.github.com/paginate-issues/test.js b/scenarios/api.github.com/paginate-issues/test.js
index <HASH>..<HASH> 100644
--- a/scenarios/api.github.com/paginate-issues/test.js
+++ b/scenarios/api.github.com/paginate-issues/test.js
@@ -18,7 +18,7 @@ test('paginate issues', async (t) => {
}
aw... | test: pass ?page=1 to first request of paginate issues |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -6,6 +6,7 @@ import shutil
import glob
import multiprocessing
from distutils.command.build import build as st_build
+from distutils.util import get_platform
from setuptools import setup
from setuptools.command.develop i... | Re-add platform tag to setup.py |
diff --git a/command/seal_migration_test.go b/command/seal_migration_test.go
index <HASH>..<HASH> 100644
--- a/command/seal_migration_test.go
+++ b/command/seal_migration_test.go
@@ -1,3 +1,5 @@
+// +build !enterprise
+
package command
import (
diff --git a/vault/core.go b/vault/core.go
index <HASH>..<HASH> 100644
... | Set request token entry within fetchACLTokenEntryAndEntity (#<I>) |
diff --git a/src/components/networked.js b/src/components/networked.js
index <HASH>..<HASH> 100644
--- a/src/components/networked.js
+++ b/src/components/networked.js
@@ -3,7 +3,7 @@ var deepEqual = require('fast-deep-equal');
var InterpolationBuffer = require('buffered-interpolation');
var DEG2RAD = THREE.Math.DEG2R... | Small refactoring to network update predicates |
diff --git a/multiqc/modules/picard/picard.py b/multiqc/modules/picard/picard.py
index <HASH>..<HASH> 100755
--- a/multiqc/modules/picard/picard.py
+++ b/multiqc/modules/picard/picard.py
@@ -123,7 +123,8 @@ class MultiqcModule(BaseMultiqcModule):
config = {
'title': 'Picard Deduplication Stats',
... | Picard MarkDups percent plot by default. Closes #<I>. |
diff --git a/lib/browser/element.js b/lib/browser/element.js
index <HASH>..<HASH> 100644
--- a/lib/browser/element.js
+++ b/lib/browser/element.js
@@ -93,7 +93,8 @@ exports.assertElement = function assertElement(selector, asserter) {
default:
throw new Error(
- 'Selector .message has 3 hits o... | Properly generate the too many elements error |
diff --git a/core/src/main/java/com/aspectran/core/component/bean/annotation/Transform.java b/core/src/main/java/com/aspectran/core/component/bean/annotation/Transform.java
index <HASH>..<HASH> 100755
--- a/core/src/main/java/com/aspectran/core/component/bean/annotation/Transform.java
+++ b/core/src/main/java/com/aspec... | Renamed annotation element transformId() to transform() |
diff --git a/test/test_helper.rb b/test/test_helper.rb
index <HASH>..<HASH> 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -48,9 +48,3 @@ module Kernel
puts "can't use KeyValue backend because: #{e.message}"
end
end
-
-Object.class_eval do
- def meta_class
- class << self; self; end
- end
-... | Get rid of unused method on test helper |
diff --git a/chef/lib/chef/knife/bootstrap.rb b/chef/lib/chef/knife/bootstrap.rb
index <HASH>..<HASH> 100644
--- a/chef/lib/chef/knife/bootstrap.rb
+++ b/chef/lib/chef/knife/bootstrap.rb
@@ -120,13 +120,13 @@ class Chef
:boolean => true,
:default => true
- Chef::Config[:knife][:hints] ||= Hash.... | Ensure Chef::Config[:knife][:hints] in proc
Unit tests for the hint system can fail if the entire bootstrap class isn't
loaded because the creation of the hints attribute was outside of the block. |
diff --git a/languagetool-language-modules/de/src/main/java/org/languagetool/tokenizers/de/GermanCompoundTokenizer.java b/languagetool-language-modules/de/src/main/java/org/languagetool/tokenizers/de/GermanCompoundTokenizer.java
index <HASH>..<HASH> 100644
--- a/languagetool-language-modules/de/src/main/java/org/langua... | [de] fix "Häkelnadel" split (#<I>) |
diff --git a/openTSNE/initialization.py b/openTSNE/initialization.py
index <HASH>..<HASH> 100644
--- a/openTSNE/initialization.py
+++ b/openTSNE/initialization.py
@@ -98,7 +98,7 @@ def pca(X, n_components=2, svd_solver="auto", random_state=None, verbose=False):
return np.ascontiguousarray(embedding)
-def spect... | Reintroduce random_state to spectral init for consistency |
diff --git a/test.js b/test.js
index <HASH>..<HASH> 100644
--- a/test.js
+++ b/test.js
@@ -273,13 +273,19 @@ describe('InfluxDB', function () {
})
describe('#dropDatabase', function () {
- this.timeout(25000)
+ beforeEach(function (done) {
+ client.createDatabase(info.db.name, done)
+ })
it('... | test: dropping a non-existant database should err |
diff --git a/pydsl/Interaction/Shell.py b/pydsl/Interaction/Shell.py
index <HASH>..<HASH> 100644
--- a/pydsl/Interaction/Shell.py
+++ b/pydsl/Interaction/Shell.py
@@ -111,7 +111,10 @@ class CommandLineToTransformerInteraction:
resultdic[key] = str(resultdic[key])
except Uni... | prints only value if the output has length 1 |
diff --git a/plugin.php b/plugin.php
index <HASH>..<HASH> 100755
--- a/plugin.php
+++ b/plugin.php
@@ -83,7 +83,10 @@ if ( ! class_exists( 'WP_REST_Comments_Controller' ) ) {
* WP_REST_Settings_Controller class.
*/
if ( ! class_exists( 'WP_REST_Settings_Controller' ) ) {
- require_once dirname( __FILE__ ) . '/lib/... | Only include the settings controller on <I> |
diff --git a/acceptancetests/assess_persistent_storage.py b/acceptancetests/assess_persistent_storage.py
index <HASH>..<HASH> 100755
--- a/acceptancetests/assess_persistent_storage.py
+++ b/acceptancetests/assess_persistent_storage.py
@@ -335,7 +335,7 @@ def assess_charm_removal_single_block_and_filesystem_storage(clie... | Increase the wait time for the storage to be detached in CI test
I haven't been able to directly reproduce the failure locally, but if
I take the wait time right down I can get the test to fail in the same
way. Doubling the wait time should get it to pass more reliably. |
diff --git a/config/environments/test.rb b/config/environments/test.rb
index <HASH>..<HASH> 100644
--- a/config/environments/test.rb
+++ b/config/environments/test.rb
@@ -30,6 +30,6 @@ config.action_controller.allow_forgery_protection = false
# ActionMailer::Base.deliveries array.
config.action_mailer.delivery_met... | update rspec-rails, webrat, and cucumber dependencies |
diff --git a/spec/support/test_model.rb b/spec/support/test_model.rb
index <HASH>..<HASH> 100644
--- a/spec/support/test_model.rb
+++ b/spec/support/test_model.rb
@@ -48,7 +48,7 @@ module TestModel
end
def method_missing(method_id, *args, &block)
- if attribute_method?(method_id.to_s)
+ if !matched_attrib... | Update TextModel method_missing with current ActiveModel methods |
diff --git a/lib/moan.js b/lib/moan.js
index <HASH>..<HASH> 100644
--- a/lib/moan.js
+++ b/lib/moan.js
@@ -598,10 +598,10 @@ class Moan extends EventEmitter {
task
.on('completed', (value) => {
- this.emit('completed', value, task.name)
+ this.emit('completed', task.name, value)
})
... | added tests to cover moan#task |
diff --git a/lib/puppet/status.rb b/lib/puppet/status.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/status.rb
+++ b/lib/puppet/status.rb
@@ -17,4 +17,12 @@ class Puppet::Status
def self.from_pson( pson )
self.new( pson )
end
+
+ def name
+ "status"
+ end
+
+ def name=(name)
+ ... | Fix a failing test in #<I> |
diff --git a/code/cart/CartForm.php b/code/cart/CartForm.php
index <HASH>..<HASH> 100644
--- a/code/cart/CartForm.php
+++ b/code/cart/CartForm.php
@@ -57,7 +57,7 @@ class CartForm extends Form{
continue;
}
//delete lines
- if(isset($fields['Remove'])){
+ if(isset($fields['Remove']) || (isset($fiel... | FIX: allow removing items via CartForm by entering 0 or less for quantity.
FIX: VaraitionField was always causing a ‘change’, even though nothing changed. |
diff --git a/tests/TestCase/Console/Command/Task/TestTaskTest.php b/tests/TestCase/Console/Command/Task/TestTaskTest.php
index <HASH>..<HASH> 100644
--- a/tests/TestCase/Console/Command/Task/TestTaskTest.php
+++ b/tests/TestCase/Console/Command/Task/TestTaskTest.php
@@ -216,6 +216,7 @@ class TestTaskTest extends TestCa... | Skip failing tests.
I'll revisit this when updating the test generator. |
diff --git a/bin/codecept.js b/bin/codecept.js
index <HASH>..<HASH> 100755
--- a/bin/codecept.js
+++ b/bin/codecept.js
@@ -24,7 +24,7 @@ program.command('list [path]')
.action(require('../lib/command/list'));
program.command('def [path]')
- .description('List all actions for I.')
+ .description('Generates TypeS... | Use proper def command description (#<I>) |
diff --git a/app/scripts/services/tile-proxy.js b/app/scripts/services/tile-proxy.js
index <HASH>..<HASH> 100644
--- a/app/scripts/services/tile-proxy.js
+++ b/app/scripts/services/tile-proxy.js
@@ -17,7 +17,12 @@ import {
const MAX_FETCH_TILES = 20;
+const str = document.currentScript.src
+const pathName = str.su... | Specify worker as an absolute path |
diff --git a/aegea/iam.py b/aegea/iam.py
index <HASH>..<HASH> 100644
--- a/aegea/iam.py
+++ b/aegea/iam.py
@@ -6,6 +6,8 @@ from __future__ import absolute_import, division, print_function, unicode_litera
import os, sys, argparse, collections, random, string
+import botocore
+
from . import config, logger
from .l... | Avoid crashing when no access is given to MFA status |
diff --git a/src/HexBoard.js b/src/HexBoard.js
index <HASH>..<HASH> 100644
--- a/src/HexBoard.js
+++ b/src/HexBoard.js
@@ -59,7 +59,7 @@ module.exports = function HexBoard(canvas, window, backgroundColor) {
board.scene
);
//Set up anti-aliasing (required in babylon.js 3.0+)
- //board.postProcess = new babyl... | Anti-aliasing makes the svg images look nicer |
diff --git a/packages/react/src/components/DatePicker/DatePicker.js b/packages/react/src/components/DatePicker/DatePicker.js
index <HASH>..<HASH> 100644
--- a/packages/react/src/components/DatePicker/DatePicker.js
+++ b/packages/react/src/components/DatePicker/DatePicker.js
@@ -382,7 +382,7 @@ function DatePicker({
... | fix(Datepicker): change role on calendar container to 'application' (#<I>) |
diff --git a/fsdb/config.py b/fsdb/config.py
index <HASH>..<HASH> 100644
--- a/fsdb/config.py
+++ b/fsdb/config.py
@@ -2,7 +2,7 @@ import json
from utils import calc_dir_mode
-ACCEPTED_HASH_ALG = ['md5', 'sha', 'sha1', 'sha224', 'sha2', 'sha256', 'sha384', 'sha512']
+ACCEPTED_HASH_ALG = ['md5', 'sha1', 'sha224', '... | removed `sha` and `sha2`
sha and sha2 are no more suported as hash_alg config value |
diff --git a/src/Bkwld/Decoy/Fields/Listing.php b/src/Bkwld/Decoy/Fields/Listing.php
index <HASH>..<HASH> 100644
--- a/src/Bkwld/Decoy/Fields/Listing.php
+++ b/src/Bkwld/Decoy/Fields/Listing.php
@@ -223,6 +223,9 @@ class Listing extends Field {
*/
public function wrapAndRender() {
+ // Don't set an id
+ $this-... | No longer setting an id on listings |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.