diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/pavement.py b/pavement.py index <HASH>..<HASH> 100644 --- a/pavement.py +++ b/pavement.py @@ -38,7 +38,8 @@ def sdist(): @task def clean(): - for p in map(path, ('greenhouse.egg-info', 'dist', 'build', 'MANIFEST.in')): + for p in map(path, ( + 'greenhouse.egg-info', 'dist', 'build', 'MANIFEST.in...
purge docs builds on 'clean' command
diff --git a/lib/plucky/query.rb b/lib/plucky/query.rb index <HASH>..<HASH> 100644 --- a/lib/plucky/query.rb +++ b/lib/plucky/query.rb @@ -63,7 +63,7 @@ module Plucky end def reverse - self[:sort].map! { |s| [s[0], -s[1]] } + self[:sort].map! { |s| [s[0], -s[1]] } unless self[:sort].nil? se...
Do nothing if no sort provided.
diff --git a/code/model/jobs/DNDataTransfer.php b/code/model/jobs/DNDataTransfer.php index <HASH>..<HASH> 100644 --- a/code/model/jobs/DNDataTransfer.php +++ b/code/model/jobs/DNDataTransfer.php @@ -79,9 +79,10 @@ class DNDataTransfer extends DataObject { if($this->AuthorID) { $author = $this->Author(); $mes...
Add IP address into transfer log (completed HUMP-<I>)
diff --git a/src/Drupal/Driver/Cores/Drupal7.php b/src/Drupal/Driver/Cores/Drupal7.php index <HASH>..<HASH> 100644 --- a/src/Drupal/Driver/Cores/Drupal7.php +++ b/src/Drupal/Driver/Cores/Drupal7.php @@ -18,6 +18,7 @@ class Drupal7 implements CoreInterface { public function __construct($drupalRoot, $uri = 'default') ...
Updating D7 driver for core's random generator.
diff --git a/lib/platform/bitbucket-server/index.js b/lib/platform/bitbucket-server/index.js index <HASH>..<HASH> 100644 --- a/lib/platform/bitbucket-server/index.js +++ b/lib/platform/bitbucket-server/index.js @@ -257,11 +257,13 @@ async function deleteBranch(branchName, closePr = false) { if (closePr) { // ge...
fix(bitbucket-server): pr check after deleting branch Closes #<I>
diff --git a/actionpack/test/controller/new_base/metal_test.rb b/actionpack/test/controller/new_base/metal_test.rb index <HASH>..<HASH> 100644 --- a/actionpack/test/controller/new_base/metal_test.rb +++ b/actionpack/test/controller/new_base/metal_test.rb @@ -20,8 +20,8 @@ module MetalTest class TestMiddleware < Acti...
Update MetalTest for constant scoping change in <I>
diff --git a/src/transformers/tokenization_xlnet.py b/src/transformers/tokenization_xlnet.py index <HASH>..<HASH> 100644 --- a/src/transformers/tokenization_xlnet.py +++ b/src/transformers/tokenization_xlnet.py @@ -240,7 +240,7 @@ class XLNetTokenizer(PreTrainedTokenizer): cls_segment_id = [2] if to...
Correct segment ID for XLNet single sequence
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ REQUIRES = ["PyYAML"] PKG_ROOT = os.path.dirname(__file__) -VERSION = "0.2.16" +VERSION = "0.2.17" def get_long_description():
Bumped version in setup.py
diff --git a/src/BoomCMS/Core/Console/Commands/InstallTemplates.php b/src/BoomCMS/Core/Console/Commands/InstallTemplates.php index <HASH>..<HASH> 100644 --- a/src/BoomCMS/Core/Console/Commands/InstallTemplates.php +++ b/src/BoomCMS/Core/Console/Commands/InstallTemplates.php @@ -51,9 +51,10 @@ class InstallTemplates ext...
Updated install templates artisan command to only call vendor:publish if templates have been installed
diff --git a/clc/client.go b/clc/client.go index <HASH>..<HASH> 100644 --- a/clc/client.go +++ b/clc/client.go @@ -3,6 +3,7 @@ package clc import ( "bytes" "encoding/json" + "errors" "fmt" "io" "io/ioutil" @@ -80,6 +81,11 @@ func (c *Client) do(method, url string, body io.Reader, resp interface{}) error i...
evaluate server response for non-success error codes
diff --git a/library/BrowserDetector/BrowserDetector.php b/library/BrowserDetector/BrowserDetector.php index <HASH>..<HASH> 100644 --- a/library/BrowserDetector/BrowserDetector.php +++ b/library/BrowserDetector/BrowserDetector.php @@ -274,7 +274,7 @@ class BrowserDetector ); } - $...
fixed error when localfile is not set for Browscap input
diff --git a/lib/SendGrid.php b/lib/SendGrid.php index <HASH>..<HASH> 100644 --- a/lib/SendGrid.php +++ b/lib/SendGrid.php @@ -33,7 +33,7 @@ class SendGrid { $form['api_user'] = $this->api_user; $form['api_key'] = $this->api_key; - $response = $this->makeRequest($form); + $response = $this->mak...
Fix limitations which do not allow to send email with multiple bcc This request would help you to fix a nasty bug - limitations which do not allow to send email with multiple bcc. When we add multiple bcc, we get a multidimensional array and an error : [php] Array to string conversion in: vendor/sendgrid/se...
diff --git a/src/helpers/ModelSort.php b/src/helpers/ModelSort.php index <HASH>..<HASH> 100644 --- a/src/helpers/ModelSort.php +++ b/src/helpers/ModelSort.php @@ -13,7 +13,7 @@ class ModelSort { public static function byType(): \Closure { - $order = ['CHASSIS', 'MOTHERBOARD', 'CPU', 'RAM', 'HDD', 'SSD...
Enhanced hardware sorters: SERVER should be first
diff --git a/main.go b/main.go index <HASH>..<HASH> 100644 --- a/main.go +++ b/main.go @@ -33,6 +33,7 @@ func main() { defer close(threadDumpChan) go dumpGoRoutine(threadDumpChan) + log.Printf("Targeting datadog API URL: %s \n", config.DataDogURL) datadog_nozzle := datadogfirehosenozzle.NewDatadogFirehoseNozzle...
Logs API url on the start up [#<I>]
diff --git a/js/theocean.js b/js/theocean.js index <HASH>..<HASH> 100644 --- a/js/theocean.js +++ b/js/theocean.js @@ -170,7 +170,7 @@ module.exports = class theocean extends Exchange { parseOHLCV (ohlcv, market = undefined, timeframe = '5m', since = undefined, limit = undefined) { const baseDecimals = th...
theocean safeTimestamp
diff --git a/src/Types/PaymentMethod.php b/src/Types/PaymentMethod.php index <HASH>..<HASH> 100644 --- a/src/Types/PaymentMethod.php +++ b/src/Types/PaymentMethod.php @@ -44,7 +44,7 @@ class PaymentMethod const EPS = "eps"; /** - * Gift cards + * @link https://www.mollie.com/gift-cards */ ...
Fix error in giftcards payment link, and added it to podiumcadeaukaart constant.
diff --git a/src/v2/tasks/shell.js b/src/v2/tasks/shell.js index <HASH>..<HASH> 100644 --- a/src/v2/tasks/shell.js +++ b/src/v2/tasks/shell.js @@ -34,6 +34,7 @@ module.exports = (state) => new Promise((resolve, reject) => { const options = _.reduce(ACCEPTED_OPTIONS, (result, value) => _.set(result, value, state.get(...
Forcing python encoding when execing tasks
diff --git a/combine/checks/open_graph.py b/combine/checks/open_graph.py index <HASH>..<HASH> 100644 --- a/combine/checks/open_graph.py +++ b/combine/checks/open_graph.py @@ -69,7 +69,10 @@ class OpenGraphURLCheck(BaseOpenGraphCheck): # ) # ) - if not url.startswith("h...
Allow og:url and og:image to be http://<I> for now
diff --git a/framework/widgets/BaseListView.php b/framework/widgets/BaseListView.php index <HASH>..<HASH> 100644 --- a/framework/widgets/BaseListView.php +++ b/framework/widgets/BaseListView.php @@ -40,14 +40,14 @@ abstract class BaseListView extends Widget * @var array the configuration for the pager widget. By ...
Fixes #<I>: Added note clarifying config for ListView pager and sorter [skip ci]
diff --git a/emma2/msm/analysis/api.py b/emma2/msm/analysis/api.py index <HASH>..<HASH> 100644 --- a/emma2/msm/analysis/api.py +++ b/emma2/msm/analysis/api.py @@ -651,6 +651,7 @@ def mfpt(T, target): 0 & x=y \\ 1+\sum_{z} T_{x,z...
[msm/analysis] Added blank line
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,7 @@ import os html_context = { 'version' : '3.1', 'full_version' : '3.1.9', - 'maven_plugin_version' : '3.1.8', + 'maven_plugin_version' : '3.1.9', 'gradle_plugin_version' : '1.6.5', '...
bump up maven plugin version to the latest
diff --git a/admin/tests/LeftAndMainTest.php b/admin/tests/LeftAndMainTest.php index <HASH>..<HASH> 100644 --- a/admin/tests/LeftAndMainTest.php +++ b/admin/tests/LeftAndMainTest.php @@ -24,7 +24,7 @@ class LeftAndMainTest extends FunctionalTest { public function testSaveTreeNodeSorting() { $this->loginWithPermis...
When relying on the order of returned objects, sort explicitly as it is nondeterminate for non-MySQL.
diff --git a/src/utils/elasticDSL.js b/src/utils/elasticDSL.js index <HASH>..<HASH> 100644 --- a/src/utils/elasticDSL.js +++ b/src/utils/elasticDSL.js @@ -43,12 +43,10 @@ let simplifyBucket = _.flow( _.mapValues(flattenMetrics), _.mapKeys(renameMetrics) ) - let simplifyBuckets = _.flow( F.when(_.isPlainObjec...
fix: simplify buckets on rows and columns
diff --git a/lib/octokit/client.rb b/lib/octokit/client.rb index <HASH>..<HASH> 100644 --- a/lib/octokit/client.rb +++ b/lib/octokit/client.rb @@ -19,7 +19,7 @@ require 'octokit/client/users' module Octokit class Client - attr_accessor *Configuration::VALID_OPTIONS_KEYS + attr_accessor(*Configuration::VALID...
Avoid the following ruby warnings: .../lib/octokit/configuration.rb:<I>: warning: `*' interpreted as argument prefix .../lib/octokit/client.rb:<I>: warning: `*' interpreted as argument prefix (by helping out the ruby interpreter with some parentheses)
diff --git a/css-components/gulpfile.js b/css-components/gulpfile.js index <HASH>..<HASH> 100644 --- a/css-components/gulpfile.js +++ b/css-components/gulpfile.js @@ -80,7 +80,7 @@ function cssnext() { root: __dirname + '/src/components/' }), cssnextPlugin({ - browsers: babelrc.presets[0][1].targe...
chore(css-components): Fix serve command by using browserslist
diff --git a/cosmic_ray/version.py b/cosmic_ray/version.py index <HASH>..<HASH> 100644 --- a/cosmic_ray/version.py +++ b/cosmic_ray/version.py @@ -1,4 +1,4 @@ """Cosmic Ray version info.""" -__version_info__ = (3, 1, 1) +__version_info__ = (3, 1, 2) __version__ = '.'.join(map(str, __version_info__))
Bumped patch version to initiate new release.
diff --git a/lib/filestorage/local.rb b/lib/filestorage/local.rb index <HASH>..<HASH> 100644 --- a/lib/filestorage/local.rb +++ b/lib/filestorage/local.rb @@ -37,10 +37,11 @@ module Filestorage File.open(fullpath, "rb") end - def delete(path) + def delete(path, delete_dir: false) fullpath = @...
lib/filestorage/local.rb: Add keyword option 'delete_dir' to Local#delete.
diff --git a/src/SensiolabHelper.php b/src/SensiolabHelper.php index <HASH>..<HASH> 100644 --- a/src/SensiolabHelper.php +++ b/src/SensiolabHelper.php @@ -80,7 +80,7 @@ class SensiolabHelper $colorTag = $this->getColorTagForStatusCode($e->getResponse()->getStatusCode()); $this->command->line("...
insight.sensiolabs.com
diff --git a/www/tests/test_file.py b/www/tests/test_file.py index <HASH>..<HASH> 100644 --- a/www/tests/test_file.py +++ b/www/tests/test_file.py @@ -16,7 +16,7 @@ with open('compression/du cote de chez swann.txt', 'r') as f: counter = 0 for line in f: counter += 1 - assert counter == 2118 + a...
In test_file.py, change test on number of lines read on text mode. Related to issue #<I>.
diff --git a/src/Modus/FrontController/Http.php b/src/Modus/FrontController/Http.php index <HASH>..<HASH> 100644 --- a/src/Modus/FrontController/Http.php +++ b/src/Modus/FrontController/Http.php @@ -44,20 +44,11 @@ class Http { } protected function _configureAutoloaders() { - return; $co...
Initiate autoloaders correctly so that they correctly handle. Also, figure out what path is being echoed.
diff --git a/client/lib/media/list-store.js b/client/lib/media/list-store.js index <HASH>..<HASH> 100644 --- a/client/lib/media/list-store.js +++ b/client/lib/media/list-store.js @@ -134,7 +134,7 @@ MediaListStore.isItemMatchingQuery = function( siteId, item ) { matches = true; - if ( query.search ) { + if ( quer...
Don’t filter external media searches by filename External media searches occur across data other than the filename. For example, Google Photos analyzes the content of the photo and matches on that. This allows the API endpoint to determine if an item matches
diff --git a/lib/ooor/connection_handler.rb b/lib/ooor/connection_handler.rb index <HASH>..<HASH> 100644 --- a/lib/ooor/connection_handler.rb +++ b/lib/ooor/connection_handler.rb @@ -1,9 +1,10 @@ +require 'active_support/core_ext/hash/indifferent_access' require 'ooor/connection' module Ooor class ConnectionHand...
fixed a bug with connection_spec and connections not being properly reused
diff --git a/wallace/command_line.py b/wallace/command_line.py index <HASH>..<HASH> 100755 --- a/wallace/command_line.py +++ b/wallace/command_line.py @@ -105,7 +105,7 @@ def setup_experiment(debug=True, verbose=False, app=None): # Check that the version of Wallace specified in the config file is the one # th...
Use correct package name (#<I>)
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -85,7 +85,7 @@ var _startListening = function($done) { if (err || WWW._handle) // _handle means server is already listening return $done(err); - WWW.listen(CONF.port_www, function(err) { + WWW.listen(CO...
Teach deetoo to read hostname from config
diff --git a/emma2/msm/estimation/__init__.py b/emma2/msm/estimation/__init__.py index <HASH>..<HASH> 100644 --- a/emma2/msm/estimation/__init__.py +++ b/emma2/msm/estimation/__init__.py @@ -22,7 +22,7 @@ Connectivity connected_sets - Find connected subsets largest_connected_set - Find largest connected set -...
[doc] adopted method refactoring: connected_count_matrix -> largest_connected_submatrix
diff --git a/merb-gen/app_generators/merb/templates/autotest/merb_rspec.rb b/merb-gen/app_generators/merb/templates/autotest/merb_rspec.rb index <HASH>..<HASH> 100644 --- a/merb-gen/app_generators/merb/templates/autotest/merb_rspec.rb +++ b/merb-gen/app_generators/merb/templates/autotest/merb_rspec.rb @@ -45,7 +45,7 @@...
changes to the global_helpers should run every helper spec too
diff --git a/appliance/redis/cmd/flynn-redis/main_test.go b/appliance/redis/cmd/flynn-redis/main_test.go index <HASH>..<HASH> 100644 --- a/appliance/redis/cmd/flynn-redis/main_test.go +++ b/appliance/redis/cmd/flynn-redis/main_test.go @@ -41,6 +41,9 @@ func TestMain_Discoverd(t *testing.T) { return hb, nil } + /...
appliance/redis: Set a password in TestMain_Discoverd CI runs an old version of Redis which seems to handle empty passwords differently than newer versions (e.g. the version used in vagrant)
diff --git a/examples/basic_usage.py b/examples/basic_usage.py index <HASH>..<HASH> 100755 --- a/examples/basic_usage.py +++ b/examples/basic_usage.py @@ -10,7 +10,6 @@ def run(unihan_options={}): if not c.unihan.is_bootstrapped: # download and install Unihan to db c.unihan.bootstrap(unihan_options) - ...
Remove extraneous db reflection
diff --git a/lib/chef/provider/package/zypper.rb b/lib/chef/provider/package/zypper.rb index <HASH>..<HASH> 100644 --- a/lib/chef/provider/package/zypper.rb +++ b/lib/chef/provider/package/zypper.rb @@ -70,10 +70,6 @@ class Chef end def candidate_version - @candidate_version ||= package_nam...
Removed unused/repeated candidate version
diff --git a/src/org/jcodings/EncodingDB.java b/src/org/jcodings/EncodingDB.java index <HASH>..<HASH> 100644 --- a/src/org/jcodings/EncodingDB.java +++ b/src/org/jcodings/EncodingDB.java @@ -177,10 +177,15 @@ public class EncodingDB { public static void set_base(String name, String original) { } + public...
Add easier way to instantiate dummy encodings.
diff --git a/lib/sequent/core/tenant_event_store.rb b/lib/sequent/core/tenant_event_store.rb index <HASH>..<HASH> 100644 --- a/lib/sequent/core/tenant_event_store.rb +++ b/lib/sequent/core/tenant_event_store.rb @@ -8,11 +8,14 @@ module Sequent def replay_events_for(organization_id) replay_events do ...
Fix replaying events for organization Include all events for all aggregates associated with the organization (do not skip events that do not have `organization_id` set).
diff --git a/web3/types.py b/web3/types.py index <HASH>..<HASH> 100644 --- a/web3/types.py +++ b/web3/types.py @@ -161,7 +161,7 @@ TxData = TypedDict("TxData", { "gasPrice": Wei, "hash": HexBytes, "input": HexStr, - "nonce": int, + "nonce": Nonce, "r": HexBytes, "s": HexBytes, "to": ...
Some fixes to type definitions (#<I>)
diff --git a/lib/queryko/filterer.rb b/lib/queryko/filterer.rb index <HASH>..<HASH> 100644 --- a/lib/queryko/filterer.rb +++ b/lib/queryko/filterer.rb @@ -1,11 +1,21 @@ module Queryko module Filterer + # def filter_by_filters + # fields.each do |field, filter| + # if field == 'limit' || field == 'pag...
apply multiple filter instead of getting the first filter
diff --git a/src/transformers/integrations.py b/src/transformers/integrations.py index <HASH>..<HASH> 100644 --- a/src/transformers/integrations.py +++ b/src/transformers/integrations.py @@ -54,7 +54,7 @@ from .trainer_utils import PREFIX_CHECKPOINT_DIR, BestRun, EvaluationStrategy # # Integration functions: def i...
Fix WAND_DISABLED test (#<I>) * Fix WAND_DISABLED test * Remove duplicate import * Make a test that actually works... * Fix style
diff --git a/slackclient/_channel.py b/slackclient/_channel.py index <HASH>..<HASH> 100644 --- a/slackclient/_channel.py +++ b/slackclient/_channel.py @@ -6,7 +6,7 @@ class Channel(object): self.members = members def __eq__(self, compare_str): - if self.name == compare_str or self.id == compare_s...
allow channels to be found with leading #
diff --git a/lib/bibtex/entry/rdf_converter.rb b/lib/bibtex/entry/rdf_converter.rb index <HASH>..<HASH> 100644 --- a/lib/bibtex/entry/rdf_converter.rb +++ b/lib/bibtex/entry/rdf_converter.rb @@ -449,10 +449,8 @@ class BibTeX::Entry::RDFConverter if bibtex.type == :unpublished graph << [entry, RDF::DC.crea...
Remove bibo:created and bibo:issued from #year They do not exist. (Links to Dublin Core)
diff --git a/src/main/java/org/fxmisc/flowless/VirtualizedScrollPane.java b/src/main/java/org/fxmisc/flowless/VirtualizedScrollPane.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/fxmisc/flowless/VirtualizedScrollPane.java +++ b/src/main/java/org/fxmisc/flowless/VirtualizedScrollPane.java @@ -324,7 +324,7 @@ p...
Fix thin lines between cells 2 (#<I>)
diff --git a/app/drivers/prottable/info.py b/app/drivers/prottable/info.py index <HASH>..<HASH> 100644 --- a/app/drivers/prottable/info.py +++ b/app/drivers/prottable/info.py @@ -10,9 +10,11 @@ class AddProteinInfoDriver(ProttableAddData): super().__init__(**kwargs) self.headertypes = ['proteindata'] ...
Genecentric also for prottable add info
diff --git a/httputil/httputil.go b/httputil/httputil.go index <HASH>..<HASH> 100644 --- a/httputil/httputil.go +++ b/httputil/httputil.go @@ -1,5 +1,6 @@ /* Copyright 2011 Google Inc. +Modifications Copyright (c) 2014 Simon Zimmermann Licensed under the Apache License, Version 2.0 (the "License"); you may not us...
util: use application/json instead of text/javascript for JSON response
diff --git a/jaraco/windows/api/clipboard.py b/jaraco/windows/api/clipboard.py index <HASH>..<HASH> 100644 --- a/jaraco/windows/api/clipboard.py +++ b/jaraco/windows/api/clipboard.py @@ -45,3 +45,9 @@ GetClipboardData.restype = ctypes.wintypes.HANDLE SetClipboardData = ctypes.windll.user32.SetClipboardData SetClipboa...
Add type declarations for clipboard operations.
diff --git a/test/util/database.js b/test/util/database.js index <HASH>..<HASH> 100644 --- a/test/util/database.js +++ b/test/util/database.js @@ -9,7 +9,7 @@ var _nsv; var refreshDb = function(done) { disposableSeraph({ - version: '2.3.1', + version: '3.0.3', edition: 'community', port...
bump neo4j version in tests
diff --git a/lib/anycable/rails/railtie.rb b/lib/anycable/rails/railtie.rb index <HASH>..<HASH> 100644 --- a/lib/anycable/rails/railtie.rb +++ b/lib/anycable/rails/railtie.rb @@ -70,7 +70,7 @@ module AnyCable # Since Rails 6.1 if respond_to?(:server) server do - next unless AnyCable.conf...
fix: only run embedded server if AnyCable is enabled
diff --git a/core/client/routes/reset.js b/core/client/routes/reset.js index <HASH>..<HASH> 100644 --- a/core/client/routes/reset.js +++ b/core/client/routes/reset.js @@ -3,6 +3,12 @@ import loadingIndicator from 'ghost/mixins/loading-indicator'; var ResetRoute = Ember.Route.extend(styleBody, loadingIndicator, { ...
Reset/Signin while signed in no issue - added redirect and notification to reset route - added notification to signup route
diff --git a/lib/jitsu/commands/databases.js b/lib/jitsu/commands/databases.js index <HASH>..<HASH> 100644 --- a/lib/jitsu/commands/databases.js +++ b/lib/jitsu/commands/databases.js @@ -199,7 +199,8 @@ databases.list = function (username, callback) { // Allows arbitrary amount of arguments to deploy // if(arg...
[api][minor] added args variable to conform to other argument currying formats
diff --git a/spec/shared/evaluator_behavior.rb b/spec/shared/evaluator_behavior.rb index <HASH>..<HASH> 100644 --- a/spec/shared/evaluator_behavior.rb +++ b/spec/shared/evaluator_behavior.rb @@ -40,6 +40,9 @@ shared_examples_for 'predicate evaluator' do expect(evaluation.output).to be(true) evaluation =...
Add more expectations to predicate inverse shared behavior
diff --git a/fastlane/lib/fastlane/actions/prompt.rb b/fastlane/lib/fastlane/actions/prompt.rb index <HASH>..<HASH> 100644 --- a/fastlane/lib/fastlane/actions/prompt.rb +++ b/fastlane/lib/fastlane/actions/prompt.rb @@ -18,7 +18,11 @@ module Fastlane user_input = STDIN.gets(end_tag).chomp.gsub(end_tag, "").st...
added secure text input option (#<I>) * added secure text input option * Update prompt.rb
diff --git a/ford/output.py b/ford/output.py index <HASH>..<HASH> 100644 --- a/ford/output.py +++ b/ford/output.py @@ -249,14 +249,12 @@ class Documentation(object): shutil.copy(src.path, os.path.join(out_dir, "src", src.name)) if "mathjax_config" in self.data: - os.mkdir(os.path....
Don't fail when MathJax-config dir already exists Only create the directory MathJax-config when it doesn't exist yet. Avoids a crash with FileExistsError, which I don't see why it should be fatal.
diff --git a/pkg/minikube/reason/known_issues.go b/pkg/minikube/reason/known_issues.go index <HASH>..<HASH> 100644 --- a/pkg/minikube/reason/known_issues.go +++ b/pkg/minikube/reason/known_issues.go @@ -335,7 +335,7 @@ var providerIssues = []match{ ID: "PR_HYPERKIT_VMNET_FRAMEWORK", ExitCode: ExProviderEr...
Update pkg/minikube/reason/known_issues.go
diff --git a/php/class-template-hierarchy.php b/php/class-template-hierarchy.php index <HASH>..<HASH> 100644 --- a/php/class-template-hierarchy.php +++ b/php/class-template-hierarchy.php @@ -15,6 +15,7 @@ class Template_Hierarchy { 'attachment', 'single', 'page', + 'singular', 'category', 'tag', 'aut...
Added singular template to hierarchy. Fixes #3
diff --git a/lib/linters/comment.js b/lib/linters/comment.js index <HASH>..<HASH> 100644 --- a/lib/linters/comment.js +++ b/lib/linters/comment.js @@ -3,18 +3,11 @@ module.exports = { name: 'comment', nodeTypes: ['multilineComment'], - - // if we put this here, the specs don't need to copy/paste - // t...
Remove old comments in comment linter
diff --git a/symphony/lib/toolkit/include.install.php b/symphony/lib/toolkit/include.install.php index <HASH>..<HASH> 100644 --- a/symphony/lib/toolkit/include.install.php +++ b/symphony/lib/toolkit/include.install.php @@ -658,7 +658,7 @@ } $htaccess = ' -### Symphony 2.1.x ### +### Symphony 2.2.x ### Opti...
Correcting Symphony version number to be used in .htaccess file.
diff --git a/problems/11-dist-tag-removal.js b/problems/11-dist-tag-removal.js index <HASH>..<HASH> 100644 --- a/problems/11-dist-tag-removal.js +++ b/problems/11-dist-tag-removal.js @@ -26,8 +26,8 @@ Run `npm help dist-tag` to learn more about the command. } //exports.solution = function () {/* -//npm dist-tags ad...
remove typo in dist-tag suggestion
diff --git a/Db.php b/Db.php index <HASH>..<HASH> 100644 --- a/Db.php +++ b/Db.php @@ -111,7 +111,8 @@ class Db extends DbOps if ($hard) { $sql = '>DELETE FROM ' . $table . ' WHERE `id` ='; } else { - $sql = '>UPDATE ' . $table . ' SET `delete_date` = NOW() WHERE `id` ='; + ...
Add camel-casing to delete function
diff --git a/features/support/env.js b/features/support/env.js index <HASH>..<HASH> 100644 --- a/features/support/env.js +++ b/features/support/env.js @@ -31,7 +31,7 @@ module.exports = function () { this.DEFAULT_ENVIRONMENT = Object.assign({STXXLCFG: stxxl_config}, process.env); this.DEFAULT_PROFILE ...
revert 'directly' method on win<I>
diff --git a/presto-main/src/test/java/com/facebook/presto/spiller/TestGenericPartitioningSpiller.java b/presto-main/src/test/java/com/facebook/presto/spiller/TestGenericPartitioningSpiller.java index <HASH>..<HASH> 100644 --- a/presto-main/src/test/java/com/facebook/presto/spiller/TestGenericPartitioningSpiller.java +...
Allow spill tests to run when disk space is low
diff --git a/Tests/Functional/Service/HistoryManagerTest.php b/Tests/Functional/Service/HistoryManagerTest.php index <HASH>..<HASH> 100644 --- a/Tests/Functional/Service/HistoryManagerTest.php +++ b/Tests/Functional/Service/HistoryManagerTest.php @@ -15,6 +15,7 @@ use ONGR\ElasticsearchBundle\Test\AbstractElasticsearch...
wrote a test for message addition to history
diff --git a/test.py b/test.py index <HASH>..<HASH> 100644 --- a/test.py +++ b/test.py @@ -38,7 +38,7 @@ class TestKafka(unittest.TestCase): Test that no errors are thrown, and it doesn't hang when you send a message """ producer = HerokuKafkaProducer(**kafka_params) - #producer.send(T...
Removed comment on producer.send
diff --git a/tasks/build.gulp.js b/tasks/build.gulp.js index <HASH>..<HASH> 100644 --- a/tasks/build.gulp.js +++ b/tasks/build.gulp.js @@ -36,7 +36,7 @@ module.exports = function (gulp) { projectRoot = process.cwd(); gulp.task('inject', function (callback) { - sequence('inject-bower', 'inject-sty...
Moving config task to inject task, to run it in same sequence as other tasks that use inject
diff --git a/Repository/ResourceQueryBuilder.php b/Repository/ResourceQueryBuilder.php index <HASH>..<HASH> 100644 --- a/Repository/ResourceQueryBuilder.php +++ b/Repository/ResourceQueryBuilder.php @@ -162,7 +162,7 @@ class ResourceQueryBuilder $eol = PHP_EOL; $clause = "{$eol}({$eol}"; - ...
[CoreBundle] Fixing the whereRoleIn method.
diff --git a/tests/EasyDBTest.php b/tests/EasyDBTest.php index <HASH>..<HASH> 100644 --- a/tests/EasyDBTest.php +++ b/tests/EasyDBTest.php @@ -39,6 +39,8 @@ abstract class EasyDBTest */ public function GoodFactoryCreateArgumentProvider() { + switch (getenv('DB')) { + case false: ...
mark test as incomplete if we cannot determine appropriate arguments for ParagonIE\EasyDB\Factory::create() via getenv()
diff --git a/tests/ProxyManagerTest/Functional/FatalPreventionFunctionalTest.php b/tests/ProxyManagerTest/Functional/FatalPreventionFunctionalTest.php index <HASH>..<HASH> 100644 --- a/tests/ProxyManagerTest/Functional/FatalPreventionFunctionalTest.php +++ b/tests/ProxyManagerTest/Functional/FatalPreventionFunctionalTe...
Minor docblock fixes/clarifications
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,6 +12,8 @@ on_rtd = os.environ.get('READTHEDOCS', None) == 'True' year = datetime.datetime.now().strftime("%Y") +sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), os.pardir)) + ...
Add git root to python path for read the docs
diff --git a/malcolm/modules/builtin/controllers/managercontroller.py b/malcolm/modules/builtin/controllers/managercontroller.py index <HASH>..<HASH> 100644 --- a/malcolm/modules/builtin/controllers/managercontroller.py +++ b/malcolm/modules/builtin/controllers/managercontroller.py @@ -468,11 +468,12 @@ class ManagerCo...
Don't put .json in template design names
diff --git a/widgets/map/src/main/javascript/map.js b/widgets/map/src/main/javascript/map.js index <HASH>..<HASH> 100644 --- a/widgets/map/src/main/javascript/map.js +++ b/widgets/map/src/main/javascript/map.js @@ -232,6 +232,10 @@ $(function () { colorScale = d3.scale.linear().domain([min, max]).range...
NEON-<I> points layer is now sized based on range of data
diff --git a/src/input/input.js b/src/input/input.js index <HASH>..<HASH> 100644 --- a/src/input/input.js +++ b/src/input/input.js @@ -524,6 +524,7 @@ 'RIGHT' : 39, 'DOWN' : 40, 'ENTER' : 13, + 'TAB' : 9, 'SHIFT' : 16, 'CTRL' : 17, 'ALT' : 18,
added in tab key to the input bindings
diff --git a/lib/eventhub/heartbeat.rb b/lib/eventhub/heartbeat.rb index <HASH>..<HASH> 100644 --- a/lib/eventhub/heartbeat.rb +++ b/lib/eventhub/heartbeat.rb @@ -36,7 +36,7 @@ module EventHub heartbeat_cycle_in_ms: processor.heartbeat_cycle_in_s * 1000, served_queues: [processor.listene...
fix: "ip_adresses" has to be "addresses"
diff --git a/test/router.test.js b/test/router.test.js index <HASH>..<HASH> 100644 --- a/test/router.test.js +++ b/test/router.test.js @@ -240,5 +240,6 @@ module.exports = { app.match.get('/user/5/edit').should.have.length(2); app.match.get('/').should.have.be.empty; app.match.all('/user/123').should.hav...
Added app.match() as app.match.all()
diff --git a/lib/hanami/router.rb b/lib/hanami/router.rb index <HASH>..<HASH> 100644 --- a/lib/hanami/router.rb +++ b/lib/hanami/router.rb @@ -803,7 +803,9 @@ module Hanami if inspect? @inspector.add_route( - Route.new(http_method: http_method, path: path, to: to, as: as, constraints: constra...
Fix block not given to the route when no `to` option (#<I>)
diff --git a/actions/class.TestImport.php b/actions/class.TestImport.php index <HASH>..<HASH> 100755 --- a/actions/class.TestImport.php +++ b/actions/class.TestImport.php @@ -36,7 +36,7 @@ class taoTests_actions_TestImport extends tao_actions_Import * overwrite the parent index to add the requiresRight for Tests ...
fix: fix permissions to view buttons
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -243,11 +243,15 @@ var CodeMirror = (function() { }, getTokenAt: function(mode, state, ch) { var txt = this.text, stream = new StringStream(txt); - while (stream.pos <=...
revise getTokenAt to return token *before* the given pos it now also returns the parser state at that position
diff --git a/lib/Predis/Protocols/Text/TextProtocol.php b/lib/Predis/Protocols/Text/TextProtocol.php index <HASH>..<HASH> 100644 --- a/lib/Predis/Protocols/Text/TextProtocol.php +++ b/lib/Predis/Protocols/Text/TextProtocol.php @@ -79,11 +79,10 @@ class TextProtocol implements IProtocolProcessor { retur...
Fix missing change that should have been part of commit cc<I>c.
diff --git a/server/src/test/java/org/cloudfoundry/identity/uaa/web/CookieBasedCsrfTokenRepositoryTests.java b/server/src/test/java/org/cloudfoundry/identity/uaa/web/CookieBasedCsrfTokenRepositoryTests.java index <HASH>..<HASH> 100644 --- a/server/src/test/java/org/cloudfoundry/identity/uaa/web/CookieBasedCsrfTokenRepo...
refactor: make protocol default explicit
diff --git a/aeron-cluster/src/main/java/io/aeron/cluster/ClusterTool.java b/aeron-cluster/src/main/java/io/aeron/cluster/ClusterTool.java index <HASH>..<HASH> 100644 --- a/aeron-cluster/src/main/java/io/aeron/cluster/ClusterTool.java +++ b/aeron-cluster/src/main/java/io/aeron/cluster/ClusterTool.java @@ -71,7 +71,14 @...
[Java] Javadoc for ClusterTool.
diff --git a/weld/src/main/java/org/jboss/as/weld/deployment/processors/WeldPortableExtensionProcessor.java b/weld/src/main/java/org/jboss/as/weld/deployment/processors/WeldPortableExtensionProcessor.java index <HASH>..<HASH> 100644 --- a/weld/src/main/java/org/jboss/as/weld/deployment/processors/WeldPortableExtensionP...
WFLY-<I> Portable extensions that fail to load will prevent a deployment from completing
diff --git a/hey.go b/hey.go index <HASH>..<HASH> 100644 --- a/hey.go +++ b/hey.go @@ -19,6 +19,7 @@ import ( "flag" "fmt" "io/ioutil" + "math" "net/http" gourl "net/url" "os" @@ -26,10 +27,9 @@ import ( "regexp" "runtime" "strings" + "time" "github.com/rakyll/hey/requester" - "math" - "time" ) ...
Reorganize the imports in hey.go to be more go-style compliant (#<I>)
diff --git a/GiftedFormManager.js b/GiftedFormManager.js index <HASH>..<HASH> 100644 --- a/GiftedFormManager.js +++ b/GiftedFormManager.js @@ -51,6 +51,13 @@ function doValidateOne(k = '', value = undefined, validators = {}) { } } + // Validator ONLY accepts string arguments. + if (clonedArg...
Make sure arguments to validator are ALWAYS strings Fixes #<I>.
diff --git a/lib/danger/commands/init.rb b/lib/danger/commands/init.rb index <HASH>..<HASH> 100644 --- a/lib/danger/commands/init.rb +++ b/lib/danger/commands/init.rb @@ -93,7 +93,7 @@ module Danger ui.pause 1 if considered_an_oss_repo? - ui.say "#{@bot_name} does not need privilidged access to y...
Fixes typo in init.rb #trivial (#<I>) `s/privilidged/privileged/`
diff --git a/bridge/whatsapp/whatsapp.go b/bridge/whatsapp/whatsapp.go index <HASH>..<HASH> 100644 --- a/bridge/whatsapp/whatsapp.go +++ b/bridge/whatsapp/whatsapp.go @@ -293,7 +293,11 @@ func (b *Bwhatsapp) Send(msg config.Message) (string, error) { if msg.ID != "" { b.Log.Debugf("updating message with id %s", ms...
Make EditSuffix option actually work (whatsapp). Fixes #<I> (#<I>) To keep it backwards compatible we keep the "(edited)" message when no editsuffix is configured.
diff --git a/core-bundle/contao/dca/tl_style.php b/core-bundle/contao/dca/tl_style.php index <HASH>..<HASH> 100644 --- a/core-bundle/contao/dca/tl_style.php +++ b/core-bundle/contao/dca/tl_style.php @@ -53,8 +53,7 @@ $GLOBALS['TL_DCA']['tl_style'] = array 'keys' => array ( 'id' => 'primary', - 'pid' => ...
[Core] Remove the index from the `tl_style.selector` field (see #<I>)
diff --git a/fundamentals/__version__.py b/fundamentals/__version__.py index <HASH>..<HASH> 100644 --- a/fundamentals/__version__.py +++ b/fundamentals/__version__.py @@ -1 +1 @@ -__version__ = '1.6.2' +__version__ = '1.6.3'
small update to hidden yaml warnings
diff --git a/discord/client.py b/discord/client.py index <HASH>..<HASH> 100644 --- a/discord/client.py +++ b/discord/client.py @@ -165,7 +165,7 @@ class Client: - All member related events will be disabled. - :func:`on_member_update` - :func:`on_member_join` - ...
on_member_leave => on_member_remove
diff --git a/views/js/runner/proxy/qtiServiceProxy.js b/views/js/runner/proxy/qtiServiceProxy.js index <HASH>..<HASH> 100644 --- a/views/js/runner/proxy/qtiServiceProxy.js +++ b/views/js/runner/proxy/qtiServiceProxy.js @@ -43,21 +43,17 @@ define([ data: params, async: true, ...
TestRunner: use done/fail instead of then while using jQuery Deffered
diff --git a/synapse/cores/lmdb.py b/synapse/cores/lmdb.py index <HASH>..<HASH> 100644 --- a/synapse/cores/lmdb.py +++ b/synapse/cores/lmdb.py @@ -20,6 +20,7 @@ import synapse.lib.threads as s_threads import lmdb import xxhash +import msgpack logger = logging.getLogger(__name__) @@ -121,7 +122,7 @@ def _encIde...
Change how lmdb does propEnc encoding - drops the use of use_bin_type (which we do in msgenpack). This provides a consistent encoding for prop values across unicode/str types in python 2. Does not appear to have impact on existing cores for Python3.
diff --git a/nupic/algorithms/anomaly_likelihood.py b/nupic/algorithms/anomaly_likelihood.py index <HASH>..<HASH> 100644 --- a/nupic/algorithms/anomaly_likelihood.py +++ b/nupic/algorithms/anomaly_likelihood.py @@ -152,6 +152,12 @@ class AnomalyLikelihood(object): def _calcSkipRecords(numIngested, windowSize, learni...
Updated docstring in AnomalyLikelihood._calcSkipRecords() per Scott's code review feedback.
diff --git a/pkg/minikube/constants/constants.go b/pkg/minikube/constants/constants.go index <HASH>..<HASH> 100644 --- a/pkg/minikube/constants/constants.go +++ b/pkg/minikube/constants/constants.go @@ -54,6 +54,8 @@ var SupportedVMDrivers = [...]string{ "kvm", "xhyve", "hyperv", + "hyperkit", + "kvm2", } var...
config: make hyperkit and kvm2 available as supported drivers
diff --git a/flake8_mypy.py b/flake8_mypy.py index <HASH>..<HASH> 100644 --- a/flake8_mypy.py +++ b/flake8_mypy.py @@ -184,14 +184,22 @@ class MypyChecker: # unexpected clashes with other .py and .pyi files in the same original # directory. with TemporaryDirectory(prefix='flake8mypy_') as d: ...
Make temp file creation Windows compatible On Windows the temp file must be closed, otherwise mypy can't open it again. Unfortunately, we then loose the nice to read `with` sugar and obviously must call `os.remove` manually.
diff --git a/agent/features/support/hooks.rb b/agent/features/support/hooks.rb index <HASH>..<HASH> 100644 --- a/agent/features/support/hooks.rb +++ b/agent/features/support/hooks.rb @@ -27,3 +27,7 @@ Before("@stderr") do @stderr = StringIO.new eval("$stderr = @stderr") end + +After("@stdout") do + eval("...
not sure if we need these hooks
diff --git a/godet.go b/godet.go index <HASH>..<HASH> 100644 --- a/godet.go +++ b/godet.go @@ -246,13 +246,22 @@ func (remote *RemoteDebugger) socket() (ws *websocket.Conn) { } // Close the RemoteDebugger connection. -func (remote *RemoteDebugger) Close() error { - close(remote.closed) - err := remote.ws.Close() +f...
Tweaking Close() so that it support multiple closes
diff --git a/classes/Divergence/Controllers/RequestHandler.php b/classes/Divergence/Controllers/RequestHandler.php index <HASH>..<HASH> 100644 --- a/classes/Divergence/Controllers/RequestHandler.php +++ b/classes/Divergence/Controllers/RequestHandler.php @@ -14,6 +14,8 @@ abstract class RequestHandler protected stati...
Set $pathStack storage to RequestHandler instead of the no longer existant Site class
diff --git a/lib/discordrb/data.rb b/lib/discordrb/data.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/data.rb +++ b/lib/discordrb/data.rb @@ -1280,7 +1280,7 @@ module Discordrb @bitrate = data['bitrate'] @user_limit = data['user_limit'] @position = data['position'] - @nsfw = data['nsfw'] ...
default Channel#nsfw to false on initialization This is an optional field that may or may not be present. Particularly in GUILD_CREATE events for older guilds, it may be absent, and so channels would have a `nil` nsfw property. Since it could not have been set to `true`, we can default this to `false`.