diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/src/scripts/dashboard/dashboard.jobs.store.js b/src/scripts/dashboard/dashboard.jobs.store.js index <HASH>..<HASH> 100644 --- a/src/scripts/dashboard/dashboard.jobs.store.js +++ b/src/scripts/dashboard/dashboard.jobs.store.js @@ -84,7 +84,7 @@ let DashboardJobStore = Reflux.createStore({ f...
Don't pass unused argument to getJobs.
diff --git a/samples/blueprint/filter/src/main/java/org/ops4j/pax/wicket/samples/blueprint/filter/internal/SampleFilterFactory.java b/samples/blueprint/filter/src/main/java/org/ops4j/pax/wicket/samples/blueprint/filter/internal/SampleFilterFactory.java index <HASH>..<HASH> 100644 --- a/samples/blueprint/filter/src/main...
Adjust for changes made by PAXWICKET-<I>
diff --git a/lib/couch_potato/railtie.rb b/lib/couch_potato/railtie.rb index <HASH>..<HASH> 100644 --- a/lib/couch_potato/railtie.rb +++ b/lib/couch_potato/railtie.rb @@ -6,8 +6,8 @@ module CouchPotato CouchPotato::Config.database_name = YAML::load(File.read(Rails.root.join('config/couchdb.yml')))[Rails.env] en...
more robust check for ::Rails::Railtie
diff --git a/lxd/storage/drivers/interface.go b/lxd/storage/drivers/interface.go index <HASH>..<HASH> 100644 --- a/lxd/storage/drivers/interface.go +++ b/lxd/storage/drivers/interface.go @@ -57,9 +57,8 @@ type Driver interface { SetVolumeQuota(vol Volume, size string, op *operations.Operation) error GetVolumeDiskPa...
lxd/storage/drivers/interface: Removes "our mount" bool return value from MountVolume Ref counting keeps track of whether an unmount should proceed or not, so no need for indicating to caller whether they need to unmount or not.
diff --git a/src/Command/GenerateCommand.php b/src/Command/GenerateCommand.php index <HASH>..<HASH> 100644 --- a/src/Command/GenerateCommand.php +++ b/src/Command/GenerateCommand.php @@ -18,6 +18,7 @@ class GenerateCommand extends ProxyCommand $this->command = new \Doctrine\DBAL\Migrations\Tools\Console\Comman...
command aliases (to be swapped)
diff --git a/will/acl.py b/will/acl.py index <HASH>..<HASH> 100644 --- a/will/acl.py +++ b/will/acl.py @@ -22,7 +22,7 @@ def get_acl_members(acl): def is_acl_allowed(nick, acl): if not getattr(settings, "ACL", None): - logging.warn( + logging.warning( "%s was just allowed to perform a...
warn is deprecated, change to warning in logging module
diff --git a/packages/openneuro-server/graphql/schema.js b/packages/openneuro-server/graphql/schema.js index <HASH>..<HASH> 100644 --- a/packages/openneuro-server/graphql/schema.js +++ b/packages/openneuro-server/graphql/schema.js @@ -263,6 +263,8 @@ const typeDefs = ` analytics: Analytic # Dataset README ...
Add 'hexsha' field to Snapshot API
diff --git a/lib/ngoverrides.js b/lib/ngoverrides.js index <HASH>..<HASH> 100644 --- a/lib/ngoverrides.js +++ b/lib/ngoverrides.js @@ -432,7 +432,7 @@ function registerModule(context) { if (isJSONP) { // Assume everything up to the op...
Allow for trailing whitespace in JSON-P response
diff --git a/src/Asserts/ReflectionAsserts.php b/src/Asserts/ReflectionAsserts.php index <HASH>..<HASH> 100644 --- a/src/Asserts/ReflectionAsserts.php +++ b/src/Asserts/ReflectionAsserts.php @@ -4,6 +4,18 @@ namespace Illuminated\Testing\Asserts; trait ReflectionAsserts { + protected function assertSubclassOf($c...
ITT: New reflection asserts added.
diff --git a/src/cttvApi.js b/src/cttvApi.js index <HASH>..<HASH> 100644 --- a/src/cttvApi.js +++ b/src/cttvApi.js @@ -219,7 +219,7 @@ var cttvApi = function () { }; _.url.target = function (obj) { - return config.prefix + config.version + "/" + prefixTarget + obj.target_id; + return config.pr...
target endpoint can have other params
diff --git a/lib/middleware/body_size_limiter.js b/lib/middleware/body_size_limiter.js index <HASH>..<HASH> 100644 --- a/lib/middleware/body_size_limiter.js +++ b/lib/middleware/body_size_limiter.js @@ -40,7 +40,11 @@ exports.attach = function attachBodySizeLimiter(options) { log.msg('Denying client for too la...
Only call close on transport if transport is available. (it's only available in node < <I>)
diff --git a/eZ/Publish/API/Repository/Tests/ContentTypeServiceTest.php b/eZ/Publish/API/Repository/Tests/ContentTypeServiceTest.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/API/Repository/Tests/ContentTypeServiceTest.php +++ b/eZ/Publish/API/Repository/Tests/ContentTypeServiceTest.php @@ -2161,7 +2161,14 @@ class ...
Implemented error condition on load by remote ID.
diff --git a/google/google.go b/google/google.go index <HASH>..<HASH> 100644 --- a/google/google.go +++ b/google/google.go @@ -179,13 +179,13 @@ func (g *GoogleCloud) getTopic(ctx context.Context, name string) (*pubsub.Topic, var err error t := g.client.Topic(name) - ok, err := t.Exists(ctx) + ok, err := t.Exists...
Use new context for publish to async operations work outside of rpc's
diff --git a/builtin/credential/okta/cli.go b/builtin/credential/okta/cli.go index <HASH>..<HASH> 100644 --- a/builtin/credential/okta/cli.go +++ b/builtin/credential/okta/cli.go @@ -38,6 +38,15 @@ func (h *CLIHandler) Auth(c *api.Client, m map[string]string) (*api.Secret, erro "password": password, } + mfa_meth...
Add the ability to pass in mfa parameters when authenticating via the… (#<I>)
diff --git a/lib/discordrb/events/roles.rb b/lib/discordrb/events/roles.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/events/roles.rb +++ b/lib/discordrb/events/roles.rb @@ -68,33 +68,8 @@ module Discordrb::Events end # Event raised when a role updates on a server - class ServerRoleUpdateEvent < Event - ...
Make ServerRoleUpdateEvent simply inherit from ServerRoleCreate event as both do exactly the same thing
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( include_package_data = True, # Package dependencies. - install_requires = ['setuptools', 'simplejson'], + install_requires = ['simplejson'], # Metadata for PyPI. author = 'Ryan McGrath',
Don't need to include `setuptools`, heh.
diff --git a/intranet/settings/base.py b/intranet/settings/base.py index <HASH>..<HASH> 100644 --- a/intranet/settings/base.py +++ b/intranet/settings/base.py @@ -114,7 +114,7 @@ MIDDLEWARE_CLASSES = ( "intranet.middleware.ldap_db.CheckLDAPBindMiddleware", "django.contrib.messages.middleware.MessageMiddleware...
Re-enable selectize middleware
diff --git a/framework/helpers/base/ArrayHelper.php b/framework/helpers/base/ArrayHelper.php index <HASH>..<HASH> 100644 --- a/framework/helpers/base/ArrayHelper.php +++ b/framework/helpers/base/ArrayHelper.php @@ -272,7 +272,7 @@ class ArrayHelper foreach ($keys as $i => $key) { $flag = $sortFlag[$i]; $cs =...
Fix unsupported flag in php <I>.x environment [ArrayHelper::multisort]
diff --git a/lib/instrumentation/span.js b/lib/instrumentation/span.js index <HASH>..<HASH> 100644 --- a/lib/instrumentation/span.js +++ b/lib/instrumentation/span.js @@ -122,10 +122,9 @@ Span.prototype._encode = function (cb) { timestamp: self.timestamp, duration: self.duration(), context: undefin...
refactor: improve span payload encoding (#<I>)
diff --git a/lib/qu/backend/mongo.rb b/lib/qu/backend/mongo.rb index <HASH>..<HASH> 100644 --- a/lib/qu/backend/mongo.rb +++ b/lib/qu/backend/mongo.rb @@ -21,7 +21,8 @@ module Qu def connection @connection ||= begin - uri = URI.parse(ENV['MONGOHQ_URL'].to_s) + host_uri = (ENV['MONGOH...
Add mongolab environment variable to mongo backend
diff --git a/dramatiq/message.py b/dramatiq/message.py index <HASH>..<HASH> 100644 --- a/dramatiq/message.py +++ b/dramatiq/message.py @@ -48,9 +48,9 @@ class Message(namedtuple("Message", ( """Create a copy of this message. """ updated_options = attributes.pop("options", {}) - options...
revert: make Message.copy work under Python <I> This reverts commit <I>d<I>e5f<I>f<I>cd8c<I>a1de<I>a<I>.
diff --git a/src/webpack.js b/src/webpack.js index <HASH>..<HASH> 100644 --- a/src/webpack.js +++ b/src/webpack.js @@ -3,7 +3,6 @@ * @flow */ -import invariant from 'invariant'; import {renderToString} from './index'; import { findConfig, @@ -22,4 +21,4 @@ module.exports = function reactdown(source: string):...
style(webpack): lint errors
diff --git a/src/benchsuite/rest/app.py b/src/benchsuite/rest/app.py index <HASH>..<HASH> 100644 --- a/src/benchsuite/rest/app.py +++ b/src/benchsuite/rest/app.py @@ -20,11 +20,13 @@ import logging import signal import sys +import json from flask import Flask +from flask_restplus import Swagger from benchsuite...
added function to dump swagger api specs
diff --git a/lib/Pagon/App.php b/lib/Pagon/App.php index <HASH>..<HASH> 100644 --- a/lib/Pagon/App.php +++ b/lib/Pagon/App.php @@ -55,7 +55,7 @@ class App extends EventEmitter 'route' => array(), 'buffer' => true, 'timezone' => 'UTC', - 'charset' => 'UTF-8' + 'charset' =>...
Set app to view variable "_"
diff --git a/circuit/circuit.py b/circuit/circuit.py index <HASH>..<HASH> 100644 --- a/circuit/circuit.py +++ b/circuit/circuit.py @@ -678,10 +678,10 @@ class circuit(): if outputs is None or len(outputs) == 0: return 0 else: - return 1 + max([ # pylint: disable...
Resolve Pylint-R<I>: pass generator to `max(`
diff --git a/test/Specs.js b/test/Specs.js index <HASH>..<HASH> 100644 --- a/test/Specs.js +++ b/test/Specs.js @@ -1,4 +1,4 @@ -var convertor = require('../index'), +var convertor = require('../chncrs'), expect = require('expect.js'); describe('ProjectionTransform', function () { it('convert coordinates from...
update Specs to chncrs.js
diff --git a/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb b/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb index <HASH>..<HASH> 100644 --- a/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb +++ b/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb @@ -26,6 ...
Add support for OS version in Appetize options (#<I>)
diff --git a/lib/art-decomp/fsm.rb b/lib/art-decomp/fsm.rb index <HASH>..<HASH> 100644 --- a/lib/art-decomp/fsm.rb +++ b/lib/art-decomp/fsm.rb @@ -42,13 +42,11 @@ module ArtDecomp class FSM end def beta_x ins - return Blanket[B[*0...@state.size]] if ins.empty? - ins.map { |i| Blanket.from_array @inputs[i]...
factor out FSM#beta
diff --git a/sniffy-core/src/main/java/io/sniffy/LegacySpy.java b/sniffy-core/src/main/java/io/sniffy/LegacySpy.java index <HASH>..<HASH> 100644 --- a/sniffy-core/src/main/java/io/sniffy/LegacySpy.java +++ b/sniffy-core/src/main/java/io/sniffy/LegacySpy.java @@ -5,7 +5,6 @@ import io.sniffy.sql.SqlStatement; import io...
Avoid unused imports such as 'java.lang.ref.WeakReference'
diff --git a/demos/paymentDirect/payment.php b/demos/paymentDirect/payment.php index <HASH>..<HASH> 100644 --- a/demos/paymentDirect/payment.php +++ b/demos/paymentDirect/payment.php @@ -50,10 +50,10 @@ try { // payment type as CARD $payIn->PaymentDetails = new \MangoPay\PayInPaymentDetailsCard(); $payIn...
set cardId on PaymentDetails in place of ExecutionDetails As CardId is not a property of PayInExecutionDetailsDirect but is property of PayInPaymentDetailsCard
diff --git a/src/transformers/trainer.py b/src/transformers/trainer.py index <HASH>..<HASH> 100755 --- a/src/transformers/trainer.py +++ b/src/transformers/trainer.py @@ -843,6 +843,8 @@ class Trainer: if getattr(self, "objective", None) is None: metrics = self.evaluate() ...
Lat fix for Ray HP search (#<I>)
diff --git a/lib/hazel/cli.rb b/lib/hazel/cli.rb index <HASH>..<HASH> 100644 --- a/lib/hazel/cli.rb +++ b/lib/hazel/cli.rb @@ -114,7 +114,7 @@ module Hazel unless @no_bundle_install rvm_env.chdir(@app_path) do - puts "\n Installing dependencies into #{rvm_ruby}\n\n" + sa...
Better looking output when installing dependencies into a RVM Gemset.
diff --git a/src/View/Helper/EmailHelper.php b/src/View/Helper/EmailHelper.php index <HASH>..<HASH> 100644 --- a/src/View/Helper/EmailHelper.php +++ b/src/View/Helper/EmailHelper.php @@ -59,8 +59,8 @@ class EmailHelper extends HtmlHelper public function beforeRenderFile(Event $event, $viewFile) { - $...
Improve auto-detection of email type
diff --git a/ants/utils/quantile.py b/ants/utils/quantile.py index <HASH>..<HASH> 100644 --- a/ants/utils/quantile.py +++ b/ants/utils/quantile.py @@ -23,7 +23,7 @@ from .. import utils from .. import core -def rank_intensity( x, mask=None, get_mask=True, method='max', ): +def rank_intensity( x, mask=None, get_ma...
BUG: was masking be default. Dammit!
diff --git a/suspect/io/twix.py b/suspect/io/twix.py index <HASH>..<HASH> 100644 --- a/suspect/io/twix.py +++ b/suspect/io/twix.py @@ -96,7 +96,10 @@ def load_twix_vb(fin, builder): # read the rest of the header minus the four bytes we already read header = fin.read(header_size - 4) # for some reason the...
using two encoding for twix files
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 @@ -603,7 +603,7 @@ module Discordrb role_ids = role_id_array(role) if role_ids.count == 1 - API::Server.add_member_role(@bot.token, @server.id, @user.id,...
Fix reasons being hashes in calls to add/remove_member_role
diff --git a/MANIFEST.in b/MANIFEST.in index <HASH>..<HASH> 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include README.* setup.py setup.cfg +include README.* setup.py setup.cfg LICENSE.txt recursive-include pymemcache *.py global-exclude *.pyc global-exclude *.pyo diff --git a/pymemcache/__init__.py ...
Adding the LICENSE.txt file to the distribution
diff --git a/generators/app/templates/app.js b/generators/app/templates/app.js index <HASH>..<HASH> 100644 --- a/generators/app/templates/app.js +++ b/generators/app/templates/app.js @@ -21,7 +21,7 @@ const appHooks = require('./app.hooks'); const app = feathers(); // Load app configuration -app.configure(configura...
Remove path argument from configuration (#<I>) Argument is no longer in use. Fixes #<I>.
diff --git a/seed_stage_based_messaging/__init__.py b/seed_stage_based_messaging/__init__.py index <HASH>..<HASH> 100644 --- a/seed_stage_based_messaging/__init__.py +++ b/seed_stage_based_messaging/__init__.py @@ -1,2 +1,2 @@ -__version__ = '0.9.5.dev0' +__version__ = '0.9.5' VERSION = __version__
bumped release version to <I>
diff --git a/server/src/site/js/orientdb-api.js b/server/src/site/js/orientdb-api.js index <HASH>..<HASH> 100755 --- a/server/src/site/js/orientdb-api.js +++ b/server/src/site/js/orientdb-api.js @@ -173,7 +173,7 @@ function ODatabase(databasePath) { } $.ajax({ beforeSend: function(xhr){ - if( userName != ...
Resolves #<I> - JS API library doesn't support empty passwords
diff --git a/gems/rake-support/share/rails/template.rb b/gems/rake-support/share/rails/template.rb index <HASH>..<HASH> 100644 --- a/gems/rake-support/share/rails/template.rb +++ b/gems/rake-support/share/rails/template.rb @@ -84,9 +84,9 @@ end INIT end -# Create directories for tasks, jobs, services, and process...
Don't generate an app/tasks/ dir since tasks have been deprecated.
diff --git a/blockstack_client/zonefile.py b/blockstack_client/zonefile.py index <HASH>..<HASH> 100644 --- a/blockstack_client/zonefile.py +++ b/blockstack_client/zonefile.py @@ -211,6 +211,8 @@ def load_name_zonefile(name, expected_zonefile_hash, storage_drivers=None, raw_z # try atlas node first res = get_...
log failure to find zonefiles in atlas
diff --git a/cmd/server-mux.go b/cmd/server-mux.go index <HASH>..<HASH> 100644 --- a/cmd/server-mux.go +++ b/cmd/server-mux.go @@ -350,7 +350,7 @@ func (m *ServerMux) ListenAndServe(certFile, keyFile string) (err error) { RawQuery: r.URL.RawQuery, Fragment: r.URL.Fragment, } - http.Redirect(w, r, u.Stri...
Use <I> StatusTemporaryRedirect to redirect clients from http to https with forcing them to keep HTTP Verb (#<I>)
diff --git a/lib/jazzy/config.rb b/lib/jazzy/config.rb index <HASH>..<HASH> 100644 --- a/lib/jazzy/config.rb +++ b/lib/jazzy/config.rb @@ -222,8 +222,8 @@ module Jazzy config_attr :skip_undocumented, command_line: '--[no-]skip-undocumented', - description: "Don't document declarations that have no do...
Fix whitespace error in :skip_undocumented config. Before: Don't document declarations that have no documentation ' 'comments. After: Don't document declarations that have no documentation comments.
diff --git a/lib/yao/resources/server.rb b/lib/yao/resources/server.rb index <HASH>..<HASH> 100644 --- a/lib/yao/resources/server.rb +++ b/lib/yao/resources/server.rb @@ -21,6 +21,11 @@ module Yao::Resources self.service = "compute" self.resource_name = "server" self.resources_name = "servers" + ...
added Yao::Server#old_samples
diff --git a/spotinst/aws_group.go b/spotinst/aws_group.go index <HASH>..<HASH> 100644 --- a/spotinst/aws_group.go +++ b/spotinst/aws_group.go @@ -82,6 +82,7 @@ type AwsGroupScalingPolicy struct { EvaluationPeriods *int `json:"evaluationPeriods,omitempty"` Period *int ...
feature: Add support for scaling policy operator
diff --git a/lib/prey/connection.js b/lib/prey/connection.js index <HASH>..<HASH> 100644 --- a/lib/prey/connection.js +++ b/lib/prey/connection.js @@ -10,19 +10,14 @@ var logger = require('./common').logger, util = require('util'), Emitter = require('events').EventEmitter; -var Connection = function(proxy_confi...
Use {port: port, host: host} options structure for connection.js.
diff --git a/salt/utils/verify.py b/salt/utils/verify.py index <HASH>..<HASH> 100644 --- a/salt/utils/verify.py +++ b/salt/utils/verify.py @@ -154,12 +154,12 @@ def verify_files(files, user): try: pwnam = pwd.getpwnam(user) uid = pwnam[2] - except KeyError: err = ('Failed to prepare...
Have a nice error message if running as the wrong user. This is a nice-to-have to avoid exception tracebacks in the output if running Salt as the wrong user, which I tend to do by accident a lot. The actual exception message is no longer shown because it is redundant.
diff --git a/test/unit/basic-tests.js b/test/unit/basic-tests.js index <HASH>..<HASH> 100644 --- a/test/unit/basic-tests.js +++ b/test/unit/basic-tests.js @@ -80,7 +80,10 @@ describe('types', function () { ['00c31e', '49950'], ['0500e3c2cef9eaaab3', '922978293...
Test: positive varints with msb on NODEJS-<I>
diff --git a/examples/app.js b/examples/app.js index <HASH>..<HASH> 100644 --- a/examples/app.js +++ b/examples/app.js @@ -6,7 +6,7 @@ var sys = require('sys'), jade = require('./../lib/jade'); -jade.renderFile(__dirname + '/layout.jade', function(err, html){ +jade.renderFile(__dirname + '/layout.jade', { debug...
Added "debug" option back
diff --git a/spec/punit/trap_spec.rb b/spec/punit/trap_spec.rb index <HASH>..<HASH> 100644 --- a/spec/punit/trap_spec.rb +++ b/spec/punit/trap_spec.rb @@ -97,10 +97,11 @@ describe 'Flor punit' do 'here(0_1_0_0) terminated(f:0)' ) - tm = @unit.journal.select { |m| m['point'] == 'trigger' }.first +...
Make trap trigger spec more adaptable
diff --git a/src/app/Classes/Builder.php b/src/app/Classes/Builder.php index <HASH>..<HASH> 100644 --- a/src/app/Classes/Builder.php +++ b/src/app/Classes/Builder.php @@ -63,13 +63,13 @@ class Builder private function appendConfigParams() { - $this->template->authorize = isset($this->template->author...
refactors `appendConfigParams` from the builder
diff --git a/salt/renderers/stateconf.py b/salt/renderers/stateconf.py index <HASH>..<HASH> 100644 --- a/salt/renderers/stateconf.py +++ b/salt/renderers/stateconf.py @@ -411,7 +411,8 @@ def add_goal_state(data): return else: reqlist = [] - for sid, _, state, _ in statelist(data): + ...
Fix a bug in goal generation that forgot to ignore the 'extend' special sid.
diff --git a/spec/views/shared/_atom_feed_spec.rb b/spec/views/shared/_atom_feed_spec.rb index <HASH>..<HASH> 100644 --- a/spec/views/shared/_atom_feed_spec.rb +++ b/spec/views/shared/_atom_feed_spec.rb @@ -34,13 +34,19 @@ describe "shared/atom_feed.atom.builder" do end end - describe "rendering trackbacks" ...
Split large atom feed view spec for trackbacks.
diff --git a/livetests.py b/livetests.py index <HASH>..<HASH> 100755 --- a/livetests.py +++ b/livetests.py @@ -52,7 +52,7 @@ def _initialize(api): @pytest.fixture( - scope="module", params=["2.16.22", "3.0.13", "3.1.8", "3.2.3", "3.3.0-rc2"] + scope="module", params=["2.16.22", "3.0.13", "3.1.8", "3.2.3", "3...
Set the <I>-rc3 version in livetests
diff --git a/elasticsearch-model/lib/elasticsearch/model/response/base.rb b/elasticsearch-model/lib/elasticsearch/model/response/base.rb index <HASH>..<HASH> 100644 --- a/elasticsearch-model/lib/elasticsearch/model/response/base.rb +++ b/elasticsearch-model/lib/elasticsearch/model/response/base.rb @@ -48,7 +48,11 @@ mo...
[MODEL] Handle total hits as an object in search response
diff --git a/src/Entities/Menu.php b/src/Entities/Menu.php index <HASH>..<HASH> 100644 --- a/src/Entities/Menu.php +++ b/src/Entities/Menu.php @@ -1,6 +1,7 @@ <?php namespace Arcanedev\Menus\Entities; use Closure; +use IteratorAggregate; /** * Class Menu @@ -8,7 +9,7 @@ use Closure; * @package Arcanedev...
Adding IteratorAggregate Interface to Menu Entity
diff --git a/aws/resource_aws_kinesis_firehose_delivery_stream.go b/aws/resource_aws_kinesis_firehose_delivery_stream.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_kinesis_firehose_delivery_stream.go +++ b/aws/resource_aws_kinesis_firehose_delivery_stream.go @@ -2497,7 +2497,7 @@ func firehoseDeliveryStreamSSEW...
Update aws/resource_aws_kinesis_firehose_delivery_stream.go
diff --git a/packages/typography/src/__stories__/Typography.new-stories.js b/packages/typography/src/__stories__/Typography.new-stories.js index <HASH>..<HASH> 100644 --- a/packages/typography/src/__stories__/Typography.new-stories.js +++ b/packages/typography/src/__stories__/Typography.new-stories.js @@ -15,15 +15,15 ...
feat: use latest theme-data - forcing a missed release, this should be a docs: commit for new storybook stories
diff --git a/api.js b/api.js index <HASH>..<HASH> 100644 --- a/api.js +++ b/api.js @@ -81,6 +81,12 @@ define([ }); }, + deauthorize_url: function (done) { + this.get('/info', {}, function (err, res) { + done(res.body.authorization_endpoint + '...
define deauthorize_url which is for logging out of uaa
diff --git a/lib/quickbooks/service/reports.rb b/lib/quickbooks/service/reports.rb index <HASH>..<HASH> 100644 --- a/lib/quickbooks/service/reports.rb +++ b/lib/quickbooks/service/reports.rb @@ -6,6 +6,7 @@ module Quickbooks if(options == {}) return "#{url_for_base}/reports/#{which_report}?date_macr...
default for 'options' in fetch_collection, and set reports_string to "" initially
diff --git a/packages/core/core/src/BundlerRunner.js b/packages/core/core/src/BundlerRunner.js index <HASH>..<HASH> 100644 --- a/packages/core/core/src/BundlerRunner.js +++ b/packages/core/core/src/BundlerRunner.js @@ -238,21 +238,15 @@ export default class BundlerRunner { } }); - let entryIsRefe...
Update runtimes to reflect removals aren't references anymore
diff --git a/undocker.py b/undocker.py index <HASH>..<HASH> 100644 --- a/undocker.py +++ b/undocker.py @@ -95,11 +95,11 @@ def main(): args = parse_args() logging.basicConfig(level=args.loglevel) - stdin = io.open(sys.stdin.fileno(), 'rb') - - with tempfile.NamedTemporaryFile() as fd: + with tempfi...
stop lying about supporting an "image" argument
diff --git a/src/ContaoCommunityAlliance/DcGeneral/Contao/View/Contao2BackendView/TreeSelect.php b/src/ContaoCommunityAlliance/DcGeneral/Contao/View/Contao2BackendView/TreeSelect.php index <HASH>..<HASH> 100644 --- a/src/ContaoCommunityAlliance/DcGeneral/Contao/View/Contao2BackendView/TreeSelect.php +++ b/src/ContaoCom...
Remove the old EventDispatcher.
diff --git a/dpxdt/server/frontend.py b/dpxdt/server/frontend.py index <HASH>..<HASH> 100644 --- a/dpxdt/server/frontend.py +++ b/dpxdt/server/frontend.py @@ -123,6 +123,9 @@ def view_build(): # Count totals for each run state within that release. for candidate_id, status, count in stats_counts: + if...
Fix another bug in the caching code
diff --git a/src/Sulu/Component/Content/Mapper/ContentMapper.php b/src/Sulu/Component/Content/Mapper/ContentMapper.php index <HASH>..<HASH> 100644 --- a/src/Sulu/Component/Content/Mapper/ContentMapper.php +++ b/src/Sulu/Component/Content/Mapper/ContentMapper.php @@ -808,14 +808,14 @@ class ContentMapper implements Cont...
refactored var name
diff --git a/src/helpers.php b/src/helpers.php index <HASH>..<HASH> 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -149,7 +149,7 @@ function base64_decrypt($data, $key = false){ if($key){ $data = str_rot_pass($data, $key, true); } else if(Config::get('encryption_key')){ - $data = str_rot_pass($data, C...
base<I>_decrypt was doing encryption instead of decryption
diff --git a/fireplace/card.py b/fireplace/card.py index <HASH>..<HASH> 100644 --- a/fireplace/card.py +++ b/fireplace/card.py @@ -1,5 +1,5 @@ from itertools import chain -from hearthstone.enums import CardType, PlayReq, Race, Rarity, Zone +from hearthstone.enums import CardType, PlayReq, Race, Rarity, Step, Zone fro...
Do not trigger draw scripts during Mulligan
diff --git a/lib/knode.js b/lib/knode.js index <HASH>..<HASH> 100644 --- a/lib/knode.js +++ b/lib/knode.js @@ -324,7 +324,8 @@ exports.KNode.prototype._iterativeFind = function(key, mode, cb) { } if (closestNode == previousClosestNode || shortlist.length >= constants.K) { - //...
clarified that find node has to be performed
diff --git a/core/src/test/java/com/google/errorprone/dataflow/nullnesspropagation/testdata/NullnessPropagationTransferCases8.java b/core/src/test/java/com/google/errorprone/dataflow/nullnesspropagation/testdata/NullnessPropagationTransferCases8.java index <HASH>..<HASH> 100644 --- a/core/src/test/java/com/google/error...
Test assignment to catch() variable. RELNOTES: none ------------- Created by MOE: <URL>
diff --git a/src/DB/Entity/LazyLoading.php b/src/DB/Entity/LazyLoading.php index <HASH>..<HASH> 100644 --- a/src/DB/Entity/LazyLoading.php +++ b/src/DB/Entity/LazyLoading.php @@ -9,7 +9,7 @@ namespace Jasny\DB\Entity; * @license https://raw.github.com/jasny/db/master/LICENSE MIT * @link https://jasny.github.com/...
LazyLoading doesn't automatically mean an Entity is SelfAware
diff --git a/sbgn-converter/src/main/java/org/biopax/paxtools/io/sbgn/SBGNLayoutManager.java b/sbgn-converter/src/main/java/org/biopax/paxtools/io/sbgn/SBGNLayoutManager.java index <HASH>..<HASH> 100644 --- a/sbgn-converter/src/main/java/org/biopax/paxtools/io/sbgn/SBGNLayoutManager.java +++ b/sbgn-converter/src/main/j...
Fix for width and height of compartment nodes.
diff --git a/colorise/__init__.py b/colorise/__init__.py index <HASH>..<HASH> 100644 --- a/colorise/__init__.py +++ b/colorise/__init__.py @@ -23,9 +23,9 @@ import colorise.cluts import colorise.parser __author__ = 'Alexander Bock' -__version__ = '0.1.4' +__version__ = '1.0.0' __license__ = 'MIT' -__date__ = '2015...
Updated version number to reflect changes on this branch
diff --git a/src/Database/Expression/CaseExpression.php b/src/Database/Expression/CaseExpression.php index <HASH>..<HASH> 100644 --- a/src/Database/Expression/CaseExpression.php +++ b/src/Database/Expression/CaseExpression.php @@ -24,7 +24,7 @@ use Closure; /** * This class represents a SQL Case statement * - * @d...
Fix QueryExpression::case suggestion in deprecated
diff --git a/src/Helpers/Mixed.php b/src/Helpers/Mixed.php index <HASH>..<HASH> 100644 --- a/src/Helpers/Mixed.php +++ b/src/Helpers/Mixed.php @@ -38,10 +38,20 @@ class Mixed { return call_user_func_array( [$entity, $method], $arguments ); } - if ( is_string( $entity ) && class_exists( $entity ) ) { + if ( s...
reduce complexity of Mixed::value()
diff --git a/src/sap.ui.fl/src/sap/ui/fl/apply/_internal/flexObjects/CompVariant.js b/src/sap.ui.fl/src/sap/ui/fl/apply/_internal/flexObjects/CompVariant.js index <HASH>..<HASH> 100644 --- a/src/sap.ui.fl/src/sap/ui/fl/apply/_internal/flexObjects/CompVariant.js +++ b/src/sap.ui.fl/src/sap/ui/fl/apply/_internal/flexObje...
[INTERNAL] sap.ui.fl: preparation change for fl restructuring To be able to change the variant api calls in sapui5.runtime we required to prepare this function first. Change-Id: I0e<I>c1a6cf1b<I>f9d<I>d<I>f<I>d<I>d9 JIRA: TEAM<I>-<I>
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,17 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Thanks to Kenneth Reitz, I stole the template for this +import os try: from setuptools import setup except ImportError: from distutils.core import...
Actually require requirements I installed limbo on a new server, and realized that it didn't require all of its dependencies closes #<I>
diff --git a/client/interfaces.go b/client/interfaces.go index <HASH>..<HASH> 100644 --- a/client/interfaces.go +++ b/client/interfaces.go @@ -227,6 +227,7 @@ type InstanceServer interface { DeleteNetwork(name string) (err error) // Network ACL functions ("network_acl" API extension) + GetNetworkACLs() (acls []ap...
client/interfaces: Adds GetNetworkACLs
diff --git a/lib/ronin/address.rb b/lib/ronin/address.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/address.rb +++ b/lib/ronin/address.rb @@ -34,7 +34,7 @@ module Ronin property :id, Serial # The class name of the Address - property :type, Discriminator + property :type, Discriminator, :required => t...
Add a :required => true to Address.type, to match it's migration.
diff --git a/mock.py b/mock.py index <HASH>..<HASH> 100644 --- a/mock.py +++ b/mock.py @@ -56,7 +56,7 @@ except ImportError: return f return inner else: - if sys.version_info[:2] >= (3, 3): + if sys.version_info[:2] >= (3, 2): wraps = original_wraps else: def wraps(fu...
Fix for wraps - __wrapped__ was added in <I> not <I>
diff --git a/lib/project_euler_cli/archive_viewer.rb b/lib/project_euler_cli/archive_viewer.rb index <HASH>..<HASH> 100644 --- a/lib/project_euler_cli/archive_viewer.rb +++ b/lib/project_euler_cli/archive_viewer.rb @@ -14,7 +14,7 @@ class ArchiveViewer puts - Problem.total.downto(Problem.total - 9) { |i| pu...
Fix error introduced by removing parentheses in call to downto
diff --git a/samples/add_item.py b/samples/add_item.py index <HASH>..<HASH> 100644 --- a/samples/add_item.py +++ b/samples/add_item.py @@ -82,9 +82,10 @@ def main(): itemParams.tags = "tags" itemParams.snippet = "Test File" itemParams.typeKeywords = "Data,Image,png" - i...
Update add_item.py For adding an item of type "Image" or " Tile Package" (tested with those, but probably others) , a file path parameter is needed. ItemParameter fileName is not being used.
diff --git a/hollow/src/main/java/com/netflix/hollow/api/producer/HollowProducer.java b/hollow/src/main/java/com/netflix/hollow/api/producer/HollowProducer.java index <HASH>..<HASH> 100644 --- a/hollow/src/main/java/com/netflix/hollow/api/producer/HollowProducer.java +++ b/hollow/src/main/java/com/netflix/hollow/api/pr...
make HollowProducer's writeEngine and objectMapper methods public
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ for many purposes for example implement __hash__ for your complex object very fast. freeze_stable and flatten are usable for testing and analysis.""", keywords = "freeze state hash sort compare unittest", ...
* removed download link since it freeze is hosted on pypi
diff --git a/lib/gravatarify/base.rb b/lib/gravatarify/base.rb index <HASH>..<HASH> 100644 --- a/lib/gravatarify/base.rb +++ b/lib/gravatarify/base.rb @@ -48,7 +48,7 @@ module Gravatarify # defined. def subdomain(str); subdomains[str.hash % subdomains.size] || 'www' end - # Helper method to escape st...
removed FIXME and added more descriptive rdoc
diff --git a/pkg/policy/identifier.go b/pkg/policy/identifier.go index <HASH>..<HASH> 100644 --- a/pkg/policy/identifier.go +++ b/pkg/policy/identifier.go @@ -67,8 +67,8 @@ func NewEndpointSet(capacity int) *EndpointSet { // signals to the provided WaitGroup when epFunc has been executed for each // endpoint. func (...
pkg/policy: use Read mutex instead of Write mutex The shared region the mutex is protecting is not being modified so there is no point in having a Lock instead of a RLock
diff --git a/WeaveAPI/src/weave/api/WeavePath.js b/WeaveAPI/src/weave/api/WeavePath.js index <HASH>..<HASH> 100644 --- a/WeaveAPI/src/weave/api/WeavePath.js +++ b/WeaveAPI/src/weave/api/WeavePath.js @@ -76,7 +76,7 @@ function WeavePath(args) // private variables var stack = []; // stack of argument counts from pus...
fixed bug that was created in recent commit
diff --git a/lib/aws/version.rb b/lib/aws/version.rb index <HASH>..<HASH> 100644 --- a/lib/aws/version.rb +++ b/lib/aws/version.rb @@ -1,3 +1,3 @@ module Aws - VERSION = '2.0.0.rc8' + VERSION = '2.0.0.rc9' end
Tag release <I>.rc9 References: #<I>, #<I>, #<I>, #<I>, #<I>, aws/aws-sdk-ruby#<I>, aws/aws-sdk-ruby#<I>
diff --git a/great_expectations/cli/datasource.py b/great_expectations/cli/datasource.py index <HASH>..<HASH> 100644 --- a/great_expectations/cli/datasource.py +++ b/great_expectations/cli/datasource.py @@ -155,7 +155,12 @@ You can add a datasource later by editing the great_expectations.yml file. data_source_...
Converted the logic of creating a SparkDF datasource in the CLI to use the new (module/class) convention
diff --git a/tests/Client/ApcuClientTest.php b/tests/Client/ApcuClientTest.php index <HASH>..<HASH> 100644 --- a/tests/Client/ApcuClientTest.php +++ b/tests/Client/ApcuClientTest.php @@ -9,6 +9,10 @@ class ApcuClientTest extends TestCase { public function testInstantiation(): void { + $enabled = ini_g...
Update ApcuClientTest to check for apc.enable_cli=1 and clear the cache
diff --git a/classes/phing/util/FileUtils.php b/classes/phing/util/FileUtils.php index <HASH>..<HASH> 100644 --- a/classes/phing/util/FileUtils.php +++ b/classes/phing/util/FileUtils.php @@ -99,6 +99,9 @@ class FileUtils { $in->close(); if ( $out !== null ) $ou...
Refs #<I> - preserve file mode (patch by Merkas)
diff --git a/javascript/safari-driver/inject/page.js b/javascript/safari-driver/inject/page.js index <HASH>..<HASH> 100644 --- a/javascript/safari-driver/inject/page.js +++ b/javascript/safari-driver/inject/page.js @@ -78,9 +78,18 @@ safaridriver.inject.page.init = function() { safaridriver.inject.page.LOG_.info('Se...
JasonLeyba: The SafariDriver should try to hide the fact that it overrides window.{alert,confirm,prompt}. r<I>
diff --git a/src/helpers/default-config.js b/src/helpers/default-config.js index <HASH>..<HASH> 100644 --- a/src/helpers/default-config.js +++ b/src/helpers/default-config.js @@ -26,5 +26,5 @@ module.exports = { rps: true, statusCodes: true, }, - ignoreStartsWith: '', + ignoreStartsWith: '/admin', };
Set ignoreStartsWith to /admin Set ignoreStartsWith to /admin to align with README. ignoreStartsWith set to empty string effectively ignored all routes.
diff --git a/src/django_like/__init__.py b/src/django_like/__init__.py index <HASH>..<HASH> 100644 --- a/src/django_like/__init__.py +++ b/src/django_like/__init__.py @@ -11,7 +11,7 @@ connection.operators['ilike'] = connection.operators['icontains'] def get_prep_lookup(self, lookup_type, value): try: - ...
A forgot a return :-)
diff --git a/src/Naderman/Composer/AWS/AwsClient.php b/src/Naderman/Composer/AWS/AwsClient.php index <HASH>..<HASH> 100644 --- a/src/Naderman/Composer/AWS/AwsClient.php +++ b/src/Naderman/Composer/AWS/AwsClient.php @@ -206,7 +206,12 @@ class AwsClient } if (!function_exists('AWS\manifest')) ...
Changed AWS require behaviour to mimic composer autoload_static which stops the file from being included twice
diff --git a/jawr/jawr-core/src/main/java/net/jawr/web/resource/bundle/factory/PropertiesBasedBundlesHandlerFactory.java b/jawr/jawr-core/src/main/java/net/jawr/web/resource/bundle/factory/PropertiesBasedBundlesHandlerFactory.java index <HASH>..<HASH> 100644 --- a/jawr/jawr-core/src/main/java/net/jawr/web/resource/bund...
Fix issues with child bundles being included instead of parent bundle because parent bundleId was being used.
diff --git a/cloudconfig/containerinit/container_userdata_test.go b/cloudconfig/containerinit/container_userdata_test.go index <HASH>..<HASH> 100644 --- a/cloudconfig/containerinit/container_userdata_test.go +++ b/cloudconfig/containerinit/container_userdata_test.go @@ -133,6 +133,8 @@ bootcmd: - |- printf '%s\n' '...
cloudconfig/containerinit: Fixed userdata tests to include ifup -a || true
diff --git a/core/client/views/blog.js b/core/client/views/blog.js index <HASH>..<HASH> 100644 --- a/core/client/views/blog.js +++ b/core/client/views/blog.js @@ -35,6 +35,7 @@ initialize: function (options) { this.$('.content-list-content').scrollClass({target: '.content-list', offset: 10}); ...
Fix duplication of entries in infinite scroll Fixes #<I> - Switched to render each new item as its added to the collection when retrieving via scroll checks. - Added check to remove all subviews whenever `render` is called on `ContentList` as a preventative measure. - Cached the jquery reference to the ordered list i...
diff --git a/generators/app/templates/tasks/karma.js b/generators/app/templates/tasks/karma.js index <HASH>..<HASH> 100644 --- a/generators/app/templates/tasks/karma.js +++ b/generators/app/templates/tasks/karma.js @@ -23,9 +23,15 @@ module.exports = { autoWatch: false, // List of browsers to execute tests ...
plugin: execute client tests on headless Chrome
diff --git a/tasks/blanket_mocha.js b/tasks/blanket_mocha.js index <HASH>..<HASH> 100644 --- a/tasks/blanket_mocha.js +++ b/tasks/blanket_mocha.js @@ -24,14 +24,7 @@ var helpers = require('../support/mocha-helpers'); module.exports = function(grunt) { - var ok = true; - var status, coverageThreshold, m...
Allow coverage to be run multiple times cleanly Currently if this is run as a part of a watch task, the statement count will carry over from the previous run which will throw off the coverage percentage over time. The same applies to the ok status. This will define both status and totals on a per run basis so each ru...