diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/lib/system/windows/index.js b/lib/system/windows/index.js
index <HASH>..<HASH> 100644
--- a/lib/system/windows/index.js
+++ b/lib/system/windows/index.js
@@ -24,8 +24,9 @@ var clean_string = function(str){
exports.process_running = function(process_name, callback){
var cmd = 'tasklist /fi "imagenam... | Make sure process_running in Windows returns a bool. |
diff --git a/src/edeposit/amqp/ftp/decoders/fields.py b/src/edeposit/amqp/ftp/decoders/fields.py
index <HASH>..<HASH> 100755
--- a/src/edeposit/amqp/ftp/decoders/fields.py
+++ b/src/edeposit/amqp/ftp/decoders/fields.py
@@ -8,7 +8,18 @@
#= Variables ==================================================================... | Added REQUIRED_FIELDS as mentioned in #7. |
diff --git a/pip_module_scanner/scanner.py b/pip_module_scanner/scanner.py
index <HASH>..<HASH> 100644
--- a/pip_module_scanner/scanner.py
+++ b/pip_module_scanner/scanner.py
@@ -20,7 +20,7 @@ class Scanner:
def __init__(self, path=os.getcwd(), output=None):
# Compiled import regular expression
- ... | Issue #3. Find packages with underscore in the name |
diff --git a/subprojects/groovy-test/src/main/java/org/codehaus/groovy/transform/NotYetImplementedASTTransformation.java b/subprojects/groovy-test/src/main/java/org/codehaus/groovy/transform/NotYetImplementedASTTransformation.java
index <HASH>..<HASH> 100644
--- a/subprojects/groovy-test/src/main/java/org/codehaus/groo... | removed static class reference from builtin AST transform implementation class to third-party class junit.framework.AssertionFailedError
- this solves a class loading error for compiler environments (like Gradle) which separate class loading of the compiler from that of the compile class path |
diff --git a/src/syncers/collection.js b/src/syncers/collection.js
index <HASH>..<HASH> 100644
--- a/src/syncers/collection.js
+++ b/src/syncers/collection.js
@@ -124,6 +124,8 @@ export default class CollectionSyncer extends BaseSyncer {
return items
}
+ this.state = this._initialState()
+
items.forEac... | clear this.state before _loadState() in collection.js (#<I>)
* clear this.state before _loadState() in collection.js |
diff --git a/spec/constraint_spec.rb b/spec/constraint_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/constraint_spec.rb
+++ b/spec/constraint_spec.rb
@@ -19,22 +19,36 @@ describe PGExaminer do
c = examine <<-SQL
CREATE TABLE test_table (
+ a integer CONSTRAINT con CHECK (a > 0)
+ );
+ SQL
... | Flesh out constraint differentiation a bit. |
diff --git a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigLoaderPass.php b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigLoaderPass.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/TwigLoaderPass.php
+++ b/src/Symfony/Bundle/TwigBundle/D... | [FrameworkBundle] tweaked previous merge |
diff --git a/ghost/admin/mixins/pagination-view-infinite-scroll.js b/ghost/admin/mixins/pagination-view-infinite-scroll.js
index <HASH>..<HASH> 100644
--- a/ghost/admin/mixins/pagination-view-infinite-scroll.js
+++ b/ghost/admin/mixins/pagination-view-infinite-scroll.js
@@ -22,9 +22,14 @@ var PaginationViewInfiniteScro... | Load next page if scrollHeight <= clientHeight
closes #<I>
- call loadNextPage in attachCheckScroll, if element scrollHeight <=
clientHeight |
diff --git a/scripts/bundle.config.js b/scripts/bundle.config.js
index <HASH>..<HASH> 100644
--- a/scripts/bundle.config.js
+++ b/scripts/bundle.config.js
@@ -70,9 +70,10 @@ const config = {
loader: 'babel-loader',
include: /src/,
options: {
- presets: [
- ['@babel/preset-... | Optimize bundle size (#<I>) |
diff --git a/mapclassify/classifiers.py b/mapclassify/classifiers.py
index <HASH>..<HASH> 100644
--- a/mapclassify/classifiers.py
+++ b/mapclassify/classifiers.py
@@ -1825,12 +1825,8 @@ class FisherJenksSampled(MapClassifier):
counts : array
(k,1), the number of observations falling in each class
... | [MAINT] remove Example& hardware comment in FisherJenksSampled |
diff --git a/src/predef.js b/src/predef.js
index <HASH>..<HASH> 100644
--- a/src/predef.js
+++ b/src/predef.js
@@ -98,7 +98,7 @@ module.exports = {
code: [
'function $has(obj, key) {',
' if (obj === null || obj === undefined) {',
- ' return false;',
+ '... | Make $has throw an error on null and undefined |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -67,7 +67,7 @@ WPOAuth.prototype.urlToConnect = function(resource, params){
* @api public
*/
-WPOAuth.prototype.setCode = function(code){
+WPOAuth.prototype.code = function(code){
this._code = code;
debug('code: `%... | core: rename setCode() by code() |
diff --git a/URL.php b/URL.php
index <HASH>..<HASH> 100644
--- a/URL.php
+++ b/URL.php
@@ -171,7 +171,7 @@ class URL implements iURL
// Попытаемся получить переменную с указанным именем в текущем модуле
// Если переменная модуля не существует тогда используем строковое представление аргумента
// добав... | Fixed URL:build() method, added check for object to string convertion |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -10,6 +10,11 @@ var cached = require('gulp-cached');
var remember = require('gulp-remember');
var streamqueue = require('streamqueue');
+function handleError(e) {
+ console.log(e.toString());
+ this.emit('end');
+}
+
mo... | Gracefully handle errors during gulp watch |
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
@@ -5,6 +5,7 @@ module Rabl
# Constructs a new ejs hash based on given object and options
def initialize(data, options={}, &block)
@options = options
+ @_scope ... | Adds scope ivar to builder |
diff --git a/src/howler.core.js b/src/howler.core.js
index <HASH>..<HASH> 100644
--- a/src/howler.core.js
+++ b/src/howler.core.js
@@ -782,6 +782,9 @@
self._emit('play', sound._id);
}
+ // Setting rate before playing won't work in IE, so we set it again here.
+ node.p... | Fix rate not working in IE
Fixes #<I> |
diff --git a/validator/testcases/javascript/traverser.py b/validator/testcases/javascript/traverser.py
index <HASH>..<HASH> 100644
--- a/validator/testcases/javascript/traverser.py
+++ b/validator/testcases/javascript/traverser.py
@@ -160,10 +160,7 @@ class Traverser:
"http://blog.mozil... | JS Pollution should not have line/column/context data. |
diff --git a/IPython/html/static/notebook/js/widget.js b/IPython/html/static/notebook/js/widget.js
index <HASH>..<HASH> 100644
--- a/IPython/html/static/notebook/js/widget.js
+++ b/IPython/html/static/notebook/js/widget.js
@@ -64,7 +64,7 @@ define(["components/underscore/underscore-min",
}
},
... | Fixed typo in widget model code causing notebook to not load |
diff --git a/src/Import/XmlParser/ProductJsonToXml.php b/src/Import/XmlParser/ProductJsonToXml.php
index <HASH>..<HASH> 100644
--- a/src/Import/XmlParser/ProductJsonToXml.php
+++ b/src/Import/XmlParser/ProductJsonToXml.php
@@ -1,6 +1,6 @@
<?php
-declare(strict_types=1);
+declare(strict_types = 1);
namespace Lizar... | Issue #<I>: Refactor Catalog Import
- Correct type hint |
diff --git a/bin/nopt.js b/bin/nopt.js
index <HASH>..<HASH> 100755
--- a/bin/nopt.js
+++ b/bin/nopt.js
@@ -1,5 +1,6 @@
#!/usr/bin/env node
var nopt = require("../lib/nopt")
+ , path = require("path")
, types = { num: Number
, bool: Boolean
, help: Boolean
@@ -11,6 +12,7 @@ var nopt = req... | Add a path arg to example script |
diff --git a/web-bundle/src/main/js/custom-model-editor/src/custom_model_editor.js b/web-bundle/src/main/js/custom-model-editor/src/custom_model_editor.js
index <HASH>..<HASH> 100644
--- a/web-bundle/src/main/js/custom-model-editor/src/custom_model_editor.js
+++ b/web-bundle/src/main/js/custom-model-editor/src/custom_m... | Custom model editor: Enable matched bracket highlighting |
diff --git a/closure/goog/ui/abstractspellchecker.js b/closure/goog/ui/abstractspellchecker.js
index <HASH>..<HASH> 100644
--- a/closure/goog/ui/abstractspellchecker.js
+++ b/closure/goog/ui/abstractspellchecker.js
@@ -318,19 +318,6 @@ goog.ui.AbstractSpellChecker.prototype.getSpellCheck = function() {
return this.s... | Remove method that doesn't typecheck.
It already has suppress checkTypes, but it doesn't look used anyways.
RELNOTES: Removing deprecated method,
goog.ui.AbstractSpellChecker.prototype.getHandler
-------------
Created by MOE: <URL> |
diff --git a/src/maker.js b/src/maker.js
index <HASH>..<HASH> 100644
--- a/src/maker.js
+++ b/src/maker.js
@@ -1,4 +1,5 @@
const Solver = require( "./solver.js" );
+const Publisher = require( "./publisher.js" );
function Maker(){
}
@@ -8,15 +9,20 @@ Start the application reading the tsmake.json to create the tscon... | Keep <I> column, add comments and reference to publisher |
diff --git a/src/rabird/core/distutils/command/install.py b/src/rabird/core/distutils/command/install.py
index <HASH>..<HASH> 100644
--- a/src/rabird/core/distutils/command/install.py
+++ b/src/rabird/core/distutils/command/install.py
@@ -149,7 +149,7 @@ class GithubUwbpepPackages(object):
raise KeyError("Can'... | Version of Uwbpep on pypi should be <I> now |
diff --git a/src/components/level/level.js b/src/components/level/level.js
index <HASH>..<HASH> 100644
--- a/src/components/level/level.js
+++ b/src/components/level/level.js
@@ -7,6 +7,11 @@ export default class Level extends Component {
style: PropTypes.object,
children: PropTypes.any,
className: PropT... | Added option to set responsive attribute on Level (#<I>) |
diff --git a/azurerm/internal/services/web/resource_arm_function_app.go b/azurerm/internal/services/web/resource_arm_function_app.go
index <HASH>..<HASH> 100644
--- a/azurerm/internal/services/web/resource_arm_function_app.go
+++ b/azurerm/internal/services/web/resource_arm_function_app.go
@@ -852,11 +852,14 @@ func ex... | azurerm_function_app - prevent a panic from an empty IPSecurity… (#<I>) |
diff --git a/src/datab-data.js b/src/datab-data.js
index <HASH>..<HASH> 100644
--- a/src/datab-data.js
+++ b/src/datab-data.js
@@ -13,10 +13,14 @@
* drop_col - drop a column
* drop_row - drop a row
*
- * append_to - append as an html table to a d3 selection
* to_json - create ... | Added datab.data.from_input to handle file selection input |
diff --git a/satpy/tests/compositor_tests/__init__.py b/satpy/tests/compositor_tests/__init__.py
index <HASH>..<HASH> 100644
--- a/satpy/tests/compositor_tests/__init__.py
+++ b/satpy/tests/compositor_tests/__init__.py
@@ -654,6 +654,13 @@ class TestGenericCompositor(unittest.TestCase):
check_areas.assert_call... | Test that a given alpha channel disables common channel masking |
diff --git a/lib/model_base/version.rb b/lib/model_base/version.rb
index <HASH>..<HASH> 100644
--- a/lib/model_base/version.rb
+++ b/lib/model_base/version.rb
@@ -1,3 +1,3 @@
module ModelBase
- VERSION = "0.3.8"
+ VERSION = "0.3.9"
end | Bump up the version from <I> to <I> |
diff --git a/activerecord/lib/active_record/associations/builder/association.rb b/activerecord/lib/active_record/associations/builder/association.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/associations/builder/association.rb
+++ b/activerecord/lib/active_record/associations/builder/association.... | Use the reflection name instead of the accessor |
diff --git a/rows.go b/rows.go
index <HASH>..<HASH> 100644
--- a/rows.go
+++ b/rows.go
@@ -271,7 +271,7 @@ func (f *File) getRowHeight(sheet string, row int) int {
ws, _ := f.workSheetReader(sheet)
for i := range ws.SheetData.Row {
v := &ws.SheetData.Row[i]
- if v.R == row+1 && v.Ht != 0 {
+ if v.R == row && v... | fix getRowHeight actually get the height of the next row (#<I>) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -57,7 +57,10 @@ setup(
keywords='crypto pki',
- install_requires=['asn1crypto', 'oscrypto'],
+ install_requires=[
+ 'asn1crypto>=0.13',
+ 'oscrypto>=0.12'
+ ],
packages=find_packages(exclud... | Minimum asn1crypto and oscrypto versions |
diff --git a/src/HAB/Pica/Record/Field.php b/src/HAB/Pica/Record/Field.php
index <HASH>..<HASH> 100644
--- a/src/HAB/Pica/Record/Field.php
+++ b/src/HAB/Pica/Record/Field.php
@@ -133,6 +133,13 @@ class Field
protected $_shorthand;
/**
+ * Subfields.
+ *
+ * @var array
+ */
+ protected $_s... | Declare $_subfields property
* src/HAB/Pica/Record/Field.php: Declare $_subfields property.
...after all this years... ;) |
diff --git a/src/Cartalyst/AsseticFilters/UriRewriteFilter.php b/src/Cartalyst/AsseticFilters/UriRewriteFilter.php
index <HASH>..<HASH> 100644
--- a/src/Cartalyst/AsseticFilters/UriRewriteFilter.php
+++ b/src/Cartalyst/AsseticFilters/UriRewriteFilter.php
@@ -264,7 +264,7 @@ class UriRewriteFilter implements FilterInter... | check for REQUEST_URI before assigning it
prevents exceptions from being thrown if executed through cli |
diff --git a/cts/analytics/ab_testing_test.go b/cts/analytics/ab_testing_test.go
index <HASH>..<HASH> 100644
--- a/cts/analytics/ab_testing_test.go
+++ b/cts/analytics/ab_testing_test.go
@@ -7,6 +7,7 @@ import (
"github.com/stretchr/testify/require"
"github.com/algolia/algoliasearch-client-go/v3/algolia/analytics... | test: prevent flakiness for TestABTesting test |
diff --git a/lib/deep_cover/cli/exec.rb b/lib/deep_cover/cli/exec.rb
index <HASH>..<HASH> 100755
--- a/lib/deep_cover/cli/exec.rb
+++ b/lib/deep_cover/cli/exec.rb
@@ -24,7 +24,7 @@ module DeepCover
require 'yaml'
env_var = {'DEEP_COVER' => 't',
- 'DEEP_COVER_OPTIONS' => YAML.dump(process... | Fix exec in <I>, looks like backport was helping us more than Ruby<I> |
diff --git a/lib/active_scaffold/config/core.rb b/lib/active_scaffold/config/core.rb
index <HASH>..<HASH> 100644
--- a/lib/active_scaffold/config/core.rb
+++ b/lib/active_scaffold/config/core.rb
@@ -354,12 +354,20 @@ module ActiveScaffold::Config
end
def [](name)
+ return nil unless @global_colum... | fix iterating on config.user.columns, needs to wrap column in case column is changed |
diff --git a/lib/capybara/driver/rack_test_driver.rb b/lib/capybara/driver/rack_test_driver.rb
index <HASH>..<HASH> 100644
--- a/lib/capybara/driver/rack_test_driver.rb
+++ b/lib/capybara/driver/rack_test_driver.rb
@@ -1,4 +1,5 @@
require 'rack/test'
+require 'rack/utils'
require 'mime/types'
require 'nokogiri'
req... | Teach rack test driver to work with comlex field names such as user[pictures][][path]. See <URL> |
diff --git a/tests/integration/components/sl-alert-test.js b/tests/integration/components/sl-alert-test.js
index <HASH>..<HASH> 100644
--- a/tests/integration/components/sl-alert-test.js
+++ b/tests/integration/components/sl-alert-test.js
@@ -119,9 +119,9 @@ test( 'Dismiss Action is called on button click', function( a... | Closes softlayer/sl-ember-components#<I> |
diff --git a/okhttp/src/main/java/com/squareup/okhttp/CertificatePinner.java b/okhttp/src/main/java/com/squareup/okhttp/CertificatePinner.java
index <HASH>..<HASH> 100644
--- a/okhttp/src/main/java/com/squareup/okhttp/CertificatePinner.java
+++ b/okhttp/src/main/java/com/squareup/okhttp/CertificatePinner.java
@@ -100,6... | Add Javadoc about self-signed certificates |
diff --git a/tacl/results.py b/tacl/results.py
index <HASH>..<HASH> 100644
--- a/tacl/results.py
+++ b/tacl/results.py
@@ -162,7 +162,6 @@ class Results:
[constants.LABEL_COUNT_FIELDNAME, DELETE_FIELDNAME]
self._matches = pd.concat(new_results, ignore_index=True).reindex(
columns=all_... | Removed stray useless line. |
diff --git a/src/phpGPX/Serializers/TrackXmlSerializer.php b/src/phpGPX/Serializers/TrackXmlSerializer.php
index <HASH>..<HASH> 100644
--- a/src/phpGPX/Serializers/TrackXmlSerializer.php
+++ b/src/phpGPX/Serializers/TrackXmlSerializer.php
@@ -25,6 +25,12 @@ abstract class TrackXmlSerializer
$srcNode = $domDocument-... | Add collection name to XML saved track |
diff --git a/sh.py b/sh.py
index <HASH>..<HASH> 100644
--- a/sh.py
+++ b/sh.py
@@ -498,6 +498,16 @@ class RunningCommand(object):
finishes, RunningCommand is smart enough to translate exit codes to
exceptions. """
+ # these are attributes that we allow to passthrough to OProc for
+ _OProc_attr_whiteli... | refactor out OProc passthrough whitelist |
diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -916,8 +916,9 @@ if (shadowDomV1) {
Object.keys(members).forEach(memberName => {
const memberProperty = members[memberName];
- // All properties should be configurable.
+ // All properties shoul... | fix(enumeration): make all added member properties enumerable |
diff --git a/docker/models/images.py b/docker/models/images.py
index <HASH>..<HASH> 100644
--- a/docker/models/images.py
+++ b/docker/models/images.py
@@ -140,6 +140,7 @@ class ImageCollection(Collection):
``"0-3"``, ``"0,1"``
decode (bool): If set to ``True``, the returned stream will... | Add cachefrom to build docstring |
diff --git a/lib/fog/rackspace/requests/queues/get_queue.rb b/lib/fog/rackspace/requests/queues/get_queue.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/rackspace/requests/queues/get_queue.rb
+++ b/lib/fog/rackspace/requests/queues/get_queue.rb
@@ -1,8 +1,8 @@
module Fog
module Rackspace
class Queues
- clas... | Mock the get_queue call. |
diff --git a/src/plugins/Transloadit/index.js b/src/plugins/Transloadit/index.js
index <HASH>..<HASH> 100644
--- a/src/plugins/Transloadit/index.js
+++ b/src/plugins/Transloadit/index.js
@@ -156,7 +156,9 @@ module.exports = class Transloadit extends Plugin {
const tus = Object.assign({}, file.tus, {
... | Reuse upload URL by default for tus, reset it for each new :tl: assembly. |
diff --git a/src/DiDom/StyleAttribute.php b/src/DiDom/StyleAttribute.php
index <HASH>..<HASH> 100644
--- a/src/DiDom/StyleAttribute.php
+++ b/src/DiDom/StyleAttribute.php
@@ -73,7 +73,7 @@ class StyleAttribute
$properties = explode(';', $styleString);
foreach ($properties as $property) {
- ... | Fix parsing of a style property in "style" attribute when the value contains a colon |
diff --git a/src/webpack/presets/index.spec.js b/src/webpack/presets/index.spec.js
index <HASH>..<HASH> 100644
--- a/src/webpack/presets/index.spec.js
+++ b/src/webpack/presets/index.spec.js
@@ -49,7 +49,7 @@ describe('configure', function () {
module: {
loaders: [
{
- test... | Fix unit test broken after new Babel extension |
diff --git a/config/routes.rb b/config/routes.rb
index <HASH>..<HASH> 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,4 +1,3 @@
Roboto::Engine.routes.draw do
- get '/' => 'Robots#show'
+ get '/' => 'robots#show'
end
- | make routes compatible with Rails <I> |
diff --git a/lib/editor/htmlarea/coursefiles.php b/lib/editor/htmlarea/coursefiles.php
index <HASH>..<HASH> 100644
--- a/lib/editor/htmlarea/coursefiles.php
+++ b/lib/editor/htmlarea/coursefiles.php
@@ -22,6 +22,7 @@
$oldname = optional_param('oldname', '', PARAM_FILE);
$usecheckboxes = optional_param('usech... | fixed register globals issue with $text; merged from MOODLE_<I>_STABLE |
diff --git a/ebooklib/epub.py b/ebooklib/epub.py
index <HASH>..<HASH> 100644
--- a/ebooklib/epub.py
+++ b/ebooklib/epub.py
@@ -1579,7 +1579,10 @@ class EpubReader(object):
nav_node = html_node.xpath("//nav[@*='toc']")[0]
else:
# parsing the list of pages
- nav_node = html_n... | Fixed #<I> - Parsing files fails because of page-list |
diff --git a/invocations/console.py b/invocations/console.py
index <HASH>..<HASH> 100644
--- a/invocations/console.py
+++ b/invocations/console.py
@@ -10,7 +10,7 @@ from invoke.vendor.six.moves import input
# NOTE: originally cribbed from fab 1's contrib.console.confirm
-def confirm(question, affirmative=True):
+d... | Rename a kwarg...it wasn't intuitive after leaving it for weeks |
diff --git a/restcomm/restcomm.application/src/main/java/org/mobicents/servlet/restcomm/Ping.java b/restcomm/restcomm.application/src/main/java/org/mobicents/servlet/restcomm/Ping.java
index <HASH>..<HASH> 100644
--- a/restcomm/restcomm.application/src/main/java/org/mobicents/servlet/restcomm/Ping.java
+++ b/restcomm/r... | RESTCOMM-<I> #Resolve-Issue Fixed |
diff --git a/org/xbill/DNS/BitString.java b/org/xbill/DNS/BitString.java
index <HASH>..<HASH> 100644
--- a/org/xbill/DNS/BitString.java
+++ b/org/xbill/DNS/BitString.java
@@ -130,10 +130,6 @@ BitString(String s) throws IOException {
data = new byte[bytes()];
for (int i = 0; i < nbits; i++)
data[i/8] |= ((set.get... | Some invalid bitstring labels were being accepted.
git-svn-id: <URL> |
diff --git a/src/Card/Card.js b/src/Card/Card.js
index <HASH>..<HASH> 100644
--- a/src/Card/Card.js
+++ b/src/Card/Card.js
@@ -13,6 +13,10 @@ class Card extends Component {
*/
children: PropTypes.node,
/**
+ * Override the inline-styles of the container element.
+ */
+ containerStyle: PropTyp... | [Card] add containerStyle prop
add containerStyle prop to have the ability to customize inner div styles.
i needed this to give the div width of <I>% then i can align the header to center and the body to left.
Update Card.js
Update Card.js
Update Card.js
rename childrenStyle to containerStyle
Update Card.js
[Car... |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -2,13 +2,13 @@ from setuptools import setup
setup(
name = 'dharma',
- packages = ['dharma'],
- version = '1.0',
+ packages = ['dharma', 'dharma.core'],
+ version = '1.1',
description = 'A generation-based, context-free ... | Changed setup.py to work with the <I> version |
diff --git a/migrations/create_bouncer_tables.php b/migrations/create_bouncer_tables.php
index <HASH>..<HASH> 100644
--- a/migrations/create_bouncer_tables.php
+++ b/migrations/create_bouncer_tables.php
@@ -41,6 +41,7 @@ class CreateBouncerTables extends Migration
Schema::create(Models::table('permissions'), f... | Add forbidden column to the permissions table, for future ability denials |
diff --git a/plan/refiner.go b/plan/refiner.go
index <HASH>..<HASH> 100644
--- a/plan/refiner.go
+++ b/plan/refiner.go
@@ -220,7 +220,6 @@ func detachIndexScanConditions(conditions []expression.Expression, indexScan *Ph
var curIndex int
for curIndex = indexScan.accessEqualCount; curIndex < len(indexScan.Index.Colum... | plan: clean code. (#<I>) |
diff --git a/test/unit/css.js b/test/unit/css.js
index <HASH>..<HASH> 100644
--- a/test/unit/css.js
+++ b/test/unit/css.js
@@ -1558,10 +1558,12 @@ QUnit.test( "Do not throw on frame elements from css method (#15098)", function(
( function() {
var supportsCssVars,
- div = jQuery( "<div>" ).appendTo( "#qunit-fixtur... | Tests: Clean up after the CSS Custom Properties support test
Ref bcec<I>ee<I>e2d0e<I>bcb<I>e3d<I>a8f<I>f9
Ref <I>bf<I>d5b<I>f<I>dbc<I>b<I>f1c5a<I> |
diff --git a/duolingo.py b/duolingo.py
index <HASH>..<HASH> 100644
--- a/duolingo.py
+++ b/duolingo.py
@@ -46,7 +46,6 @@ class Duolingo(object):
requests.
"""
self.username = username
- self.originalUsername = username
self.password = password
self.session_file = sess... | removed unnecessary original username variable and its setter |
diff --git a/lib/custom/src/MW/View/Helper/Jincluded/Standard.php b/lib/custom/src/MW/View/Helper/Jincluded/Standard.php
index <HASH>..<HASH> 100644
--- a/lib/custom/src/MW/View/Helper/Jincluded/Standard.php
+++ b/lib/custom/src/MW/View/Helper/Jincluded/Standard.php
@@ -146,6 +146,7 @@ class Standard extends \Aimeos\MW... | Don't create wrong links for data sub-domains |
diff --git a/ReText/window.py b/ReText/window.py
index <HASH>..<HASH> 100644
--- a/ReText/window.py
+++ b/ReText/window.py
@@ -58,7 +58,8 @@ class ReTextWindow(QMainWindow):
if globalSettings.iconTheme:
QIcon.setThemeName(globalSettings.iconTheme)
if QIcon.themeName() in ('hicolor', ''):
- QIcon.setThemeNam... | Do not try to get the icon theme when the icons pack is present |
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
@@ -59,8 +59,9 @@ module Rabl
# Replace nil values with empty strings if configured
if Rabl.configuration.replace_nil_values_with_empty_strings
- @_result = @_res... | Use inject instead of each_with_object to maintain Ruby <I> compatibility |
diff --git a/lib/tree.js b/lib/tree.js
index <HASH>..<HASH> 100644
--- a/lib/tree.js
+++ b/lib/tree.js
@@ -30,8 +30,18 @@ var _Tree = function( obj, tree ) {
, i
, len = self.length
, repo = repo || self.repo
- , event = new events.EventEmitter();
+ , event = new events.EventEmitter()
+ ... | Fix Loading Issue in lib/tree.js
This code fixes a bug whereby some tree elements will not yet
have loaded when the 'end' event is signalled. |
diff --git a/symphony/content/content.logout.php b/symphony/content/content.logout.php
index <HASH>..<HASH> 100644
--- a/symphony/content/content.logout.php
+++ b/symphony/content/content.logout.php
@@ -16,6 +16,26 @@ class contentLogout extends HTMLPage
public function view()
{
Administration::insta... | Add AuthorLogout delegate
Picked from c<I>a<I>af<I>
Picked from e<I>ba<I>a4b |
diff --git a/benchmark/benchmark.js b/benchmark/benchmark.js
index <HASH>..<HASH> 100644
--- a/benchmark/benchmark.js
+++ b/benchmark/benchmark.js
@@ -11,7 +11,7 @@ process.env.NODE_ENV = "production";
const CONCURRENCY = 10;
-const DEPTH = 7;
+const DEPTH = 8;
const CACHE_DIVS = "CACHE_DIVS";
const CACHE_COMPON... | Give benchmark a bit more work to do. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from setuptools import setup
setup(
name="threat_intel",
- version='0.1.25',
+ version='0.1.26',
provides=['threat_intel'],
author="Yelp Security",
url='https://github.com/Yelp/threat_... | Bumping the version to <I> |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -85,6 +85,8 @@ var RedisStorage = createStorage(queue, unqueue, log);
*/
RedisStorage.prototype.redis = function() {
if (!this.cn) this.cn = redis.createClient();
+ // catch connection errors as service and so we ca... | Adding error handler to avoid service kill when redis gone
Could be perhaps improved with some error loggings for higher verbose levels.
Conflicts:
index.js |
diff --git a/src/sap.ui.core/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js b/src/sap.ui.core/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js
index <HASH>..<HASH> 100644
--- a/src/sap.ui.core/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js
+++ b/src/sap.ui.core/test/sap/... | [INTERNAL] ODataModel.integration.qunit: Improve loading time for tests using Table
Should fix the issue that the first test using Table goes red as it
needs more than one second due to resource loading.
PS1: PKS solo
PS1: remove checkFinish from checkRequest (remainder from 1st try)
Change-Id: Ie<I>d9d<I>ca<I>c9d<I... |
diff --git a/modules/backend/assets/js/october.dragscroll.js b/modules/backend/assets/js/october.dragscroll.js
index <HASH>..<HASH> 100644
--- a/modules/backend/assets/js/october.dragscroll.js
+++ b/modules/backend/assets/js/october.dragscroll.js
@@ -84,7 +84,7 @@
return false
})
- $(... | Update october.dragscroll.js |
diff --git a/requery-test/src/main/java/io/requery/test/FunctionalTest.java b/requery-test/src/main/java/io/requery/test/FunctionalTest.java
index <HASH>..<HASH> 100644
--- a/requery-test/src/main/java/io/requery/test/FunctionalTest.java
+++ b/requery-test/src/main/java/io/requery/test/FunctionalTest.java
@@ -771,11 +7... | Resolve #<I> Update test case with orderBy/limit |
diff --git a/fenzo-core/src/test/java/com/netflix/fenzo/AutoScalerTest.java b/fenzo-core/src/test/java/com/netflix/fenzo/AutoScalerTest.java
index <HASH>..<HASH> 100644
--- a/fenzo-core/src/test/java/com/netflix/fenzo/AutoScalerTest.java
+++ b/fenzo-core/src/test/java/com/netflix/fenzo/AutoScalerTest.java
@@ -234,6 +23... | fix unit test to not input same lease twice to scheduler |
diff --git a/parser.go b/parser.go
index <HASH>..<HASH> 100644
--- a/parser.go
+++ b/parser.go
@@ -936,14 +936,6 @@ func (p *Parser) normalizeColumn(col model.TableColumn) error {
l := model.NewLength("8")
l.SetDecimal("2")
col.SetLength(l)
- case model.ColumnTypeTinyText, model.ColumnTypeTinyBlob:
- col... | TEXT and BLOB do not have length |
diff --git a/tcex/tcex_ti/tcex_ti.py b/tcex/tcex_ti/tcex_ti.py
index <HASH>..<HASH> 100644
--- a/tcex/tcex_ti/tcex_ti.py
+++ b/tcex/tcex_ti/tcex_ti.py
@@ -172,9 +172,9 @@ class TcExTi(object):
else:
try:
if upper_indicator_type in self._custom_indicator_classes.keys():
- ... | making it so that cusom indicators unique_id are url safe |
diff --git a/go/chat/storage/inbox.go b/go/chat/storage/inbox.go
index <HASH>..<HASH> 100644
--- a/go/chat/storage/inbox.go
+++ b/go/chat/storage/inbox.go
@@ -23,7 +23,7 @@ import (
"golang.org/x/net/context"
)
-const inboxVersion = 23
+const inboxVersion = 24
var defaultMemberStatusFilter = []chat1.Conversatio... | Bump inbox storage version (#<I>) |
diff --git a/Eloquent/Relations/MorphToMany.php b/Eloquent/Relations/MorphToMany.php
index <HASH>..<HASH> 100644
--- a/Eloquent/Relations/MorphToMany.php
+++ b/Eloquent/Relations/MorphToMany.php
@@ -116,6 +116,19 @@ class MorphToMany extends BelongsToMany
}
/**
+ * Get the pivot models that are currentl... | fix bug with update existing pivot and polymorphic many to many |
diff --git a/openquake/calculators/tests/classical_test.py b/openquake/calculators/tests/classical_test.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/tests/classical_test.py
+++ b/openquake/calculators/tests/classical_test.py
@@ -512,7 +512,7 @@ hazard_uhs-std.csv
'hazard_map-mean.csv'], case_... | Fixed misprint in comment [skip CI] |
diff --git a/bin/cargo-tessel.js b/bin/cargo-tessel.js
index <HASH>..<HASH> 100755
--- a/bin/cargo-tessel.js
+++ b/bin/cargo-tessel.js
@@ -42,15 +42,15 @@ parser.command('build')
.help('Cross-compile a binary for Tessel.');
parser.command('sdk')
+ .callback(options => {
+ rust.cargo[options.subcommand](option... | Make callback first (consistent) |
diff --git a/src/tabs/index.js b/src/tabs/index.js
index <HASH>..<HASH> 100644
--- a/src/tabs/index.js
+++ b/src/tabs/index.js
@@ -267,7 +267,7 @@ export default createComponent({
},
// emit event when clicked
- onClick(index) {
+ onClick(item, index) {
const { title, disabled, computedName } =... | fix(Tab): should not trigger route when disabled (#<I>) |
diff --git a/rivescript/sorting.py b/rivescript/sorting.py
index <HASH>..<HASH> 100644
--- a/rivescript/sorting.py
+++ b/rivescript/sorting.py
@@ -47,7 +47,7 @@ class TriggerObj(object):
self.option = self.alphabet.count('[') + self.alphabet.count('(') # Number of option 0 < 1
if self.star > 0:
- ... | #<I> Fix proper use of bitwise operator |
diff --git a/pygerduty.py b/pygerduty.py
index <HASH>..<HASH> 100755
--- a/pygerduty.py
+++ b/pygerduty.py
@@ -126,7 +126,10 @@ class Collection(object):
response = self.pagerduty.request(
"GET", path, query_params=kwargs)
- return self.container(self, **response.get(self.sname, {}))
+ ... | Handle cases such as /incidents/<ID> which return a single object rather
than a collection. |
diff --git a/pulse.go b/pulse.go
index <HASH>..<HASH> 100644
--- a/pulse.go
+++ b/pulse.go
@@ -64,7 +64,6 @@ type coreModule interface {
}
func main() {
- gitversion = "0.0.1" // TODO parse git tags
app := cli.NewApp()
app.Name = "pulsed"
app.Version = gitversion
@@ -76,7 +75,7 @@ func main() {
}
func act... | Removing gitversion variable declaration. Gitversion set during make of pulse |
diff --git a/src/packbits.py b/src/packbits.py
index <HASH>..<HASH> 100644
--- a/src/packbits.py
+++ b/src/packbits.py
@@ -59,7 +59,7 @@ def encode(data):
result.append(256-(repeat_count - 1))
result.append(data[pos])
- while pos < len(data)-1:
+ while pos < len(data)-1:
current_byte... | rename test (it was not executed before) |
diff --git a/src/main/java/com/couchbase/client/core/env/DefaultCoreEnvironment.java b/src/main/java/com/couchbase/client/core/env/DefaultCoreEnvironment.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/couchbase/client/core/env/DefaultCoreEnvironment.java
+++ b/src/main/java/com/couchbase/client/core/env/Defau... | Use correct default value for endpoints.
This is just a correctness fix, since the constants right now
are all the same.
Change-Id: Icae<I>d9bf3f<I>e<I>fdbfe<I>c8b<I>
Reviewed-on: <URL> |
diff --git a/src/Sylius/Bundle/CoreBundle/Application/Kernel.php b/src/Sylius/Bundle/CoreBundle/Application/Kernel.php
index <HASH>..<HASH> 100644
--- a/src/Sylius/Bundle/CoreBundle/Application/Kernel.php
+++ b/src/Sylius/Bundle/CoreBundle/Application/Kernel.php
@@ -31,12 +31,12 @@ use Webmozart\Assert\Assert;
class... | Change application's version to <I>-DEV |
diff --git a/client/js/azure/uploader.basic.js b/client/js/azure/uploader.basic.js
index <HASH>..<HASH> 100644
--- a/client/js/azure/uploader.basic.js
+++ b/client/js/azure/uploader.basic.js
@@ -194,6 +194,7 @@
}),
getSas = new qq.azure.GetSas({
cors: this._options... | fix(azure/uploader.basic): customHeaders omitted from delete SAS
closes #<I> |
diff --git a/goagen/codegen/workspace.go b/goagen/codegen/workspace.go
index <HASH>..<HASH> 100644
--- a/goagen/codegen/workspace.go
+++ b/goagen/codegen/workspace.go
@@ -310,7 +310,7 @@ func PackagePath(path string) (string, error) {
if gp, err := filepath.Abs(gopath); err == nil {
gopath = gp
}
- if string... | Fix path prefix check. (#<I>)
Windows paths are case-insensitive. |
diff --git a/spec/lol/champion_spec.rb b/spec/lol/champion_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/lol/champion_spec.rb
+++ b/spec/lol/champion_spec.rb
@@ -1,5 +1,5 @@
-require "lol"
require "spec_helper"
+require "lol"
include Lol
diff --git a/spec/lol/client_spec.rb b/spec/lol/client_spec.rb
index <HASH>... | moved spec_helper on top to get simplecov running correctly |
diff --git a/lib/canonical-rails.rb b/lib/canonical-rails.rb
index <HASH>..<HASH> 100644
--- a/lib/canonical-rails.rb
+++ b/lib/canonical-rails.rb
@@ -20,9 +20,6 @@ module CanonicalRails
mattr_accessor :collection_actions
@@collection_actions = [:index]
- mattr_accessor :member_actions
- @@member_actions = [:... | Remove member_actions as it is not being used. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -69,6 +69,8 @@ setup(
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
+ 'Programming Language :: Python :: 2.... | added py<I>/<I> classifiers as travis-ci tests these versions |
diff --git a/mistune/util.py b/mistune/util.py
index <HASH>..<HASH> 100644
--- a/mistune/util.py
+++ b/mistune/util.py
@@ -20,7 +20,12 @@ def escape(s, quote=True):
def escape_url(link):
- safe = '/#:()*?=%@+,&'
+ safe = (
+ ':/?#@' # gen-delims - '[]' (rfc3986)
+ '!$&()*+,;=' # ... | Make mistune.util.escape_url less aggressive
This adds ';', '!', and '$' to the set of characters which will be
passed unmolested by escape_url. These are all in RFC <I> reserved
character list — that is to say: escaping these may change the meaning
of a URL. |
diff --git a/lib/loaders/LoaderBase.js b/lib/loaders/LoaderBase.js
index <HASH>..<HASH> 100644
--- a/lib/loaders/LoaderBase.js
+++ b/lib/loaders/LoaderBase.js
@@ -191,12 +191,12 @@ var LoaderBase = new Class({
*/
_onStateChange: function () {
if (this.xhr.readyState > 1) {
- var status = ''
+ var ... | Bugfix wrong status type comparision |
diff --git a/lib/flor/instruction.rb b/lib/flor/instruction.rb
index <HASH>..<HASH> 100644
--- a/lib/flor/instruction.rb
+++ b/lib/flor/instruction.rb
@@ -37,17 +37,6 @@ class Flor::Instruction
:over
end
- def self.names(*names)
-
- names.each { |n| (@@instructions ||= {})[n] = self }
- end
- class << s... | set Flor::Instruction class methods apart |
diff --git a/lib/toto.rb b/lib/toto.rb
index <HASH>..<HASH> 100644
--- a/lib/toto.rb
+++ b/lib/toto.rb
@@ -143,7 +143,7 @@ module Toto
end
def self.articles ext
- Dir["#{Paths[:articles]}/*.#{ext}"].sort { |file_name| File.basename(file_name) }
+ Dir["#{Paths[:articles]}/*.#{ext}"].sort_by { |file... | Ops, wrong call to .sort_by |
diff --git a/symbols/funcdecl.py b/symbols/funcdecl.py
index <HASH>..<HASH> 100644
--- a/symbols/funcdecl.py
+++ b/symbols/funcdecl.py
@@ -11,7 +11,9 @@
from api import global_
from api.constants import TYPE_SIZES
+import api.symboltable
from symbol_ import Symbol
+from function import SymbolFUNCTION
class Sy... | Little fixes for bugs discovered by TDD |
diff --git a/src/lib/exceptions.js b/src/lib/exceptions.js
index <HASH>..<HASH> 100644
--- a/src/lib/exceptions.js
+++ b/src/lib/exceptions.js
@@ -85,7 +85,8 @@ module.exports = {
'filename': this.cleanFileUrl(stack.fileName),
'lineno': stack.lineNumber,
'colno': stack.columnNumber,
- ... | Add abs_path param to stack frames |
diff --git a/gandi/conf.py b/gandi/conf.py
index <HASH>..<HASH> 100644
--- a/gandi/conf.py
+++ b/gandi/conf.py
@@ -143,11 +143,13 @@ class GandiContextHelper(object):
if ret is None:
return default
- def call(self, method, args):
+ def call(self, method, *args):
""" call a remote ... | Fixes args passing to api call |
diff --git a/lib/ditty/controllers/component.rb b/lib/ditty/controllers/component.rb
index <HASH>..<HASH> 100644
--- a/lib/ditty/controllers/component.rb
+++ b/lib/ditty/controllers/component.rb
@@ -42,7 +42,7 @@ module Ditty
end
# Create Form
- get '/new' do
+ get '/new/?' do
authorize setting... | chore: Allow trailing / on certain component routes |
diff --git a/discord/invite.py b/discord/invite.py
index <HASH>..<HASH> 100644
--- a/discord/invite.py
+++ b/discord/invite.py
@@ -53,7 +53,7 @@ class Invite(Hashable):
max_age: int
How long the before the invite expires in seconds. A value of 0 indicates that it doesn't expire.
code: str
- Th... | Fix parsing of Invite.user |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.