diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/src/Update/Updates.php b/src/Update/Updates.php
index <HASH>..<HASH> 100644
--- a/src/Update/Updates.php
+++ b/src/Update/Updates.php
@@ -480,6 +480,7 @@ class Updates {
unset($files[$key]);
}
}
+ $this->updater->getFileSystem()->chmod('docroot/sites/default', 0755);
$this->upd... | Fixes #<I>: File permission error during upgrade to <I>-beta2. (#<I>) |
diff --git a/cobald_tests/controller/test_switch.py b/cobald_tests/controller/test_switch.py
index <HASH>..<HASH> 100644
--- a/cobald_tests/controller/test_switch.py
+++ b/cobald_tests/controller/test_switch.py
@@ -6,7 +6,7 @@ from cobald.controller.linear import LinearController
from cobald.controller.switch import D... | renamted test from TestLinearController to TestSwitchController |
diff --git a/cobe/scoring.py b/cobe/scoring.py
index <HASH>..<HASH> 100644
--- a/cobe/scoring.py
+++ b/cobe/scoring.py
@@ -70,11 +70,23 @@ class CobeScorer(Scorer):
info += -math.log(p, 2)
- n_edges = len(reply.edges)
- if n_edges > 8:
- info /= math.sqrt(n_edges - 1)
- ... | Tweak CobeScorer to behave more like cobe <I>
Use a context count that is more similar to the old count,
by taking spacing and extra <I> edges into account. |
diff --git a/clearly/client.py b/clearly/client.py
index <HASH>..<HASH> 100644
--- a/clearly/client.py
+++ b/clearly/client.py
@@ -197,7 +197,7 @@ class ClearlyClient:
pass
@set_user_friendly_errors
- def stats(self) -> None:
+ def metrics(self) -> None:
"""List some metrics about the... | rene\ame stats to metrics |
diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -37,16 +37,18 @@ function createFunctions(Reflux, PromiseFactory) {
}
if (canHandlePromise) {
- var removeSuccess = me.completed.listen(function(argsArr) {
+ ... | Support multiple arguments (as array) in Promise's |
diff --git a/routing/router_test.go b/routing/router_test.go
index <HASH>..<HASH> 100644
--- a/routing/router_test.go
+++ b/routing/router_test.go
@@ -2,6 +2,7 @@ package routing
import (
"bytes"
+ "errors"
"fmt"
"image/color"
"math"
@@ -2978,13 +2979,14 @@ func TestRouterPaymentStateMachine(t *testing.T) {
... | routing: fix use of T.Fatal() in test goroutine |
diff --git a/undertow/src/main/java/org/wildfly/extension/undertow/ListenerService.java b/undertow/src/main/java/org/wildfly/extension/undertow/ListenerService.java
index <HASH>..<HASH> 100644
--- a/undertow/src/main/java/org/wildfly/extension/undertow/ListenerService.java
+++ b/undertow/src/main/java/org/wildfly/exten... | Use buffersize that is configured/calculated for buffer pool |
diff --git a/lib/aims/geometry.rb b/lib/aims/geometry.rb
index <HASH>..<HASH> 100644
--- a/lib/aims/geometry.rb
+++ b/lib/aims/geometry.rb
@@ -402,9 +402,9 @@ module Aims
nz_sign = (0 < nz) ? 1 : -1
new_atoms = []
- nx.abs.times do |i|
- ny.abs.times do |j|
- nz.abs.ti... | Fixed bug when repeat is not an integer |
diff --git a/lib/sugarcrm/associations/association_cache.rb b/lib/sugarcrm/associations/association_cache.rb
index <HASH>..<HASH> 100644
--- a/lib/sugarcrm/associations/association_cache.rb
+++ b/lib/sugarcrm/associations/association_cache.rb
@@ -19,8 +19,10 @@ module SugarCRM; module AssociationCache
# Updates an... | don't update association collection if relationship already exists
associating a contact to an account twice shouldn't increase account.contacts.size each time |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -103,7 +103,7 @@ http://api.mongodb.org/python/current/installation.html#osx
kwargs = {}
-version = "4.5.1"
+version = "5.0.dev1"
with open('README.rst') as f:
kwargs['long_description'] = f.read()
diff --git a/to... | Bump master version to <I>.dev1 |
diff --git a/lib/nydp/pair.rb b/lib/nydp/pair.rb
index <HASH>..<HASH> 100644
--- a/lib/nydp/pair.rb
+++ b/lib/nydp/pair.rb
@@ -161,13 +161,7 @@ class Nydp::Pair
end
def to_s
- if (car == nil)
- "nil"
- elsif car.is_a?(String)
- car.inspect
- elsif car.is_a?(Nydp::Fn)
- car.to_s
- elsi... | pair: fix #to_s after making nicer broke it. It's still nicer though. |
diff --git a/fetcher/nvd/json/nvd.go b/fetcher/nvd/json/nvd.go
index <HASH>..<HASH> 100644
--- a/fetcher/nvd/json/nvd.go
+++ b/fetcher/nvd/json/nvd.go
@@ -3,6 +3,7 @@ package json
import (
"encoding/json"
"fmt"
+ "sort"
"strings"
"time"
@@ -31,6 +32,10 @@ func FetchConvert(metas []models.FeedMeta) (cves []mo... | fix(fetch-nvd): prevent overwriting with old cve-details on redis (#<I>) |
diff --git a/cherrypy/_cpcompat_subprocess.py b/cherrypy/_cpcompat_subprocess.py
index <HASH>..<HASH> 100644
--- a/cherrypy/_cpcompat_subprocess.py
+++ b/cherrypy/_cpcompat_subprocess.py
@@ -883,7 +883,7 @@ class Popen(object):
startupinfo.dwFlags |= _subprocess.STARTF_USESHOWWINDOW
s... | Python <I> str.format does not support unindexed parameters
The code using Python <I>+ only code was used on Windows only.
--HG--
branch : subprocess-py<I>-win<I>-fix |
diff --git a/pkg/controller/service/servicecontroller.go b/pkg/controller/service/servicecontroller.go
index <HASH>..<HASH> 100644
--- a/pkg/controller/service/servicecontroller.go
+++ b/pkg/controller/service/servicecontroller.go
@@ -498,6 +498,11 @@ func (s *ServiceController) needsUpdate(oldService *api.Service, new... | A load balancer should be updated if a service's UID has changed.
The load balancer's name is determined by the service's UID. If the
service's UID has changed (presumably due to a delete and recreate),
then we need to recreate the load balancer as well to avoid eventually
leaking the old one. |
diff --git a/lib/Alchemy/Phrasea/Filesystem/FilesystemService.php b/lib/Alchemy/Phrasea/Filesystem/FilesystemService.php
index <HASH>..<HASH> 100644
--- a/lib/Alchemy/Phrasea/Filesystem/FilesystemService.php
+++ b/lib/Alchemy/Phrasea/Filesystem/FilesystemService.php
@@ -45,7 +45,7 @@ class FilesystemService
... | Change right mask to asset dir PHRAS-<I>
Change right mask to asset dir PHRAS-<I> |
diff --git a/pysat/_instrument.py b/pysat/_instrument.py
index <HASH>..<HASH> 100644
--- a/pysat/_instrument.py
+++ b/pysat/_instrument.py
@@ -1074,7 +1074,7 @@ class Instrument(object):
output_str += 'Cleaning Level: ' + self.clean_level + '\n'
output_str += 'Data Padding: ' + self.pad.__repr__() + '... | TST: use str instead of repr in str
Use dictionary str representation. |
diff --git a/src/EvalFile_Command.php b/src/EvalFile_Command.php
index <HASH>..<HASH> 100644
--- a/src/EvalFile_Command.php
+++ b/src/EvalFile_Command.php
@@ -57,15 +57,16 @@ class EvalFile_Command extends WP_CLI_Command {
WP_CLI::get_runner()->load_wordpress();
}
- self::execute_eval( $file );
+ self::execu... | Do not strip $args, as it is needed |
diff --git a/neural/afni.py b/neural/afni.py
index <HASH>..<HASH> 100644
--- a/neural/afni.py
+++ b/neural/afni.py
@@ -86,7 +86,7 @@ def dset_info(dset):
for d in details_regex:
m = re.findall(details_regex[d],raw_info)
if len(m):
- setattr(info,d,m[0].group(1))
+ setattr(in... | align_epi_anat seems to be deleting more than it should... |
diff --git a/modeldict/base.py b/modeldict/base.py
index <HASH>..<HASH> 100644
--- a/modeldict/base.py
+++ b/modeldict/base.py
@@ -5,8 +5,9 @@ import base64
class PersistedDict(object):
"""
Dictionary that calls out to its persistant data store when items are
- created or deleted. Caches data in process ... | Change docstring for class to actually make sense. |
diff --git a/src/LaravelAnalyticsServiceProvider.php b/src/LaravelAnalyticsServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/LaravelAnalyticsServiceProvider.php
+++ b/src/LaravelAnalyticsServiceProvider.php
@@ -75,6 +75,8 @@ class LaravelAnalyticsServiceProvider extends ServiceProvider
'use_obj... | Set the google cache path to the Laravel storage dir
Keeps temporary files inside the storage directory. Useful for servers with open_basedir restrictions. |
diff --git a/server/Top.rb b/server/Top.rb
index <HASH>..<HASH> 100755
--- a/server/Top.rb
+++ b/server/Top.rb
@@ -25,7 +25,6 @@ require 'Measure.rb'
require 'Actuator.rb'
require 'Publish.rb'
require 'globals.rb'
-require 'sql.rb'
# List of library include
require 'yaml'
@@ -122,6 +121,7 @@ class Top
}
... | Include sql.rb only if database is present in config |
diff --git a/src/android/LocationManager.java b/src/android/LocationManager.java
index <HASH>..<HASH> 100644
--- a/src/android/LocationManager.java
+++ b/src/android/LocationManager.java
@@ -1267,7 +1267,9 @@ public class LocationManager extends CordovaPlugin implements BeaconConsumer {
private void _handleExcepti... | Android - Fixed IDE (Android Studio) warning where toString() was implicitly called on an array (the stack trace elements of exceptions'). |
diff --git a/graylog2-server/src/main/java/org/graylog2/database/PersistedServiceImpl.java b/graylog2-server/src/main/java/org/graylog2/database/PersistedServiceImpl.java
index <HASH>..<HASH> 100644
--- a/graylog2-server/src/main/java/org/graylog2/database/PersistedServiceImpl.java
+++ b/graylog2-server/src/main/java/o... | Ensure we use a mutable map to persist data |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ CHANGES = open(os.path.join(here, 'HISTORY.rst')).read()
requires = [
'pyramid',
- 'skosprovider>=0.2.0dev'
+ 'skosprovider>=0.2.0a1'
]
tests_requires = [
@@ -26,7 +26,7 @@ setup(
long_descr... | Mark as version <I>a1 |
diff --git a/tornado/test/twisted_test.py b/tornado/test/twisted_test.py
index <HASH>..<HASH> 100644
--- a/tornado/test/twisted_test.py
+++ b/tornado/test/twisted_test.py
@@ -24,6 +24,7 @@ import shutil
import signal
import tempfile
import threading
+import warnings
try:
import fcntl
@@ -444,7 +445,11 @@ cla... | Fix a DeprecationWarning in twisted_test with Twisted <I>. |
diff --git a/salt/config.py b/salt/config.py
index <HASH>..<HASH> 100644
--- a/salt/config.py
+++ b/salt/config.py
@@ -1722,9 +1722,10 @@ def get_id(root_dir=None, minion_id=False, cache=True):
with salt.utils.fopen('/etc/hosts') as hfl:
for line in hfl:
names = line.split()
- ... | More concise fix for empty /etc/hosts line check |
diff --git a/clarent/certificate.py b/clarent/certificate.py
index <HASH>..<HASH> 100644
--- a/clarent/certificate.py
+++ b/clarent/certificate.py
@@ -104,7 +104,9 @@ class SecureCiphersContextFactory(object):
# Since we can multiplex everything over a single connection, this
# doesn't really matter as much. Also, GC... | Clarify ciphersuite choices |
diff --git a/manifest.php b/manifest.php
index <HASH>..<HASH> 100755
--- a/manifest.php
+++ b/manifest.php
@@ -36,7 +36,7 @@ return array(
'taoLti' => '>=3.2.2',
'taoLtiBasicOutcome' => '>=2.6',
'taoResultServer' => '>=4.2.0',
- 'taoDelivery' => '>=7.0.0'
+ 'taoDelivery' => '>=7... | Require correct taoDelivery version |
diff --git a/tickets/views.py b/tickets/views.py
index <HASH>..<HASH> 100644
--- a/tickets/views.py
+++ b/tickets/views.py
@@ -50,4 +50,5 @@ class TicketCreateView(CreateView):
ticket.creator = self.request.user
ticket.save()
self.success_url = reverse('tickets:detail', args=[ticket.id])
+ ... | add ticket created success message to ticket create view |
diff --git a/tensor2tensor/utils/learning_rate.py b/tensor2tensor/utils/learning_rate.py
index <HASH>..<HASH> 100644
--- a/tensor2tensor/utils/learning_rate.py
+++ b/tensor2tensor/utils/learning_rate.py
@@ -52,6 +52,14 @@ def learning_rate_factor(name, step_num, hparams):
return tf.math.cos(
step * np.pi ... | Cosine learning rate decay with multiple cycles.
PiperOrigin-RevId: <I> |
diff --git a/lockfile.js b/lockfile.js
index <HASH>..<HASH> 100644
--- a/lockfile.js
+++ b/lockfile.js
@@ -33,20 +33,21 @@ process.on('uncaughtException', function H (er) {
exports.unlock = function (path, cb) {
// best-effort. unlocking an already-unlocked lock is a noop
- fs.unlink(path, function (unlinkEr) {... | unlock: Close before unlinking
the unlink() triggers watches to try to acquire a lock,
but the fd might not be closed yet, leading to a race condition where
the new lock gets fs.close'd instead of the old one. |
diff --git a/tests/parser/functions/test_send.py b/tests/parser/functions/test_send.py
index <HASH>..<HASH> 100644
--- a/tests/parser/functions/test_send.py
+++ b/tests/parser/functions/test_send.py
@@ -1,6 +1,3 @@
-from web3.exceptions import ValidationError
-
-
def test_send(assert_tx_failed, get_contract):
sen... | bug: Raises TransactionFailed instead of ValidationError |
diff --git a/web/concrete/src/File/FileList.php b/web/concrete/src/File/FileList.php
index <HASH>..<HASH> 100644
--- a/web/concrete/src/File/FileList.php
+++ b/web/concrete/src/File/FileList.php
@@ -171,8 +171,7 @@ class FileList extends DatabaseItemList implements PermissionableListItemInterfa
*/
public fun... | Files: allow filtering by date ranges of date added
Former-commit-id: e<I>ed5ccb<I>c8b<I>f<I>a6 |
diff --git a/cmd/boulder-publisher/main.go b/cmd/boulder-publisher/main.go
index <HASH>..<HASH> 100644
--- a/cmd/boulder-publisher/main.go
+++ b/cmd/boulder-publisher/main.go
@@ -2,6 +2,7 @@ package notmain
import (
"flag"
+ "fmt"
"os"
"runtime"
@@ -87,6 +88,9 @@ func main() {
cmd.FailOnError(err, "failed... | Publisher: abort if conflicting chains configured (#<I>)
Fixes #<I> |
diff --git a/src/main/java/hudson/plugins/emailext/ExtendedEmailPublisher.java b/src/main/java/hudson/plugins/emailext/ExtendedEmailPublisher.java
index <HASH>..<HASH> 100644
--- a/src/main/java/hudson/plugins/emailext/ExtendedEmailPublisher.java
+++ b/src/main/java/hudson/plugins/emailext/ExtendedEmailPublisher.java
@... | this is probably better way to make this fool-proof. |
diff --git a/modules/router5.js b/modules/router5.js
index <HASH>..<HASH> 100644
--- a/modules/router5.js
+++ b/modules/router5.js
@@ -145,6 +145,7 @@ class Router5 {
} else {
// Initialise router with provided start state
this.lastKnownState = startState
+ browser.replaceS... | fix: replace history state on start when supplying a starting state |
diff --git a/src/Token.php b/src/Token.php
index <HASH>..<HASH> 100644
--- a/src/Token.php
+++ b/src/Token.php
@@ -41,6 +41,7 @@ class Token
->setSecret($secret)
->setExpiration(Carbon::parse($expiration)->getTimestamp())
->setIssuer($issuer)
+ ->setIssuedAt(time())
... | Added issued at claim to the Token create method. |
diff --git a/spec/mongoid/slug_spec.rb b/spec/mongoid/slug_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/mongoid/slug_spec.rb
+++ b/spec/mongoid/slug_spec.rb
@@ -55,7 +55,6 @@ module Mongoid
entity = Entity.create(:_id => UUID.generate, :name => 'Adele', :user_edited_variation => 'adele')
entity.to_p... | remove failing history transfer specs after history transfer removal |
diff --git a/lib/github_api/request.rb b/lib/github_api/request.rb
index <HASH>..<HASH> 100644
--- a/lib/github_api/request.rb
+++ b/lib/github_api/request.rb
@@ -1,6 +1,7 @@
# encoding: utf-8
module Github
+
# Defines HTTP verbs
module Request
@@ -27,7 +28,7 @@ module Github
request(:delete, path, p... | Use response wrapper when returning from request. |
diff --git a/CHANGES.rst b/CHANGES.rst
index <HASH>..<HASH> 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,14 @@
Change Log
----------
+0.9999
+~~~~~~
+
+Released on XXX, 2014
+
+* XXX
+
+
0.999
~~~~~
diff --git a/html5lib/__init__.py b/html5lib/__init__.py
index <HASH>..<HASH> 100644
--- a/html5lib/__in... | And back to dev for <I>. |
diff --git a/cihai/__about__.py b/cihai/__about__.py
index <HASH>..<HASH> 100644
--- a/cihai/__about__.py
+++ b/cihai/__about__.py
@@ -1,6 +1,6 @@
__title__ = 'cihai'
__package_name__ = 'cihai'
-__version__ = '0.8.0'
+__version__ = '0.8.1'
__description__ = 'Library for CJK (chinese, japanese, korean) language data.... | Release <I>
This release loosen version requirements for dependency packages. This
should make a life bit easier in downstream packages.
There were issues with a pyyaml version release that broke compatibility
with Python <I>. This should handle that.
Also update Sphinx <I> to <I>, and releases <I> to <I> |
diff --git a/src/main/java/org/vesalainen/parser/util/Input.java b/src/main/java/org/vesalainen/parser/util/Input.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/vesalainen/parser/util/Input.java
+++ b/src/main/java/org/vesalainen/parser/util/Input.java
@@ -836,10 +836,9 @@ public abstract class Input<I,B exte... | Removed deprecation from fieldRef |
diff --git a/featuretests/cmd_juju_dumplogs_test.go b/featuretests/cmd_juju_dumplogs_test.go
index <HASH>..<HASH> 100644
--- a/featuretests/cmd_juju_dumplogs_test.go
+++ b/featuretests/cmd_juju_dumplogs_test.go
@@ -61,6 +61,7 @@ func (s *dumpLogsCommandSuite) TestRun(c *gc.C) {
Location: "location",
Level: ... | Featuretests: Fix log message output
Fix the message log output with in the feature tests for dumplogs. |
diff --git a/spec/integration/qless_spec.rb b/spec/integration/qless_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/integration/qless_spec.rb
+++ b/spec/integration/qless_spec.rb
@@ -1169,7 +1169,7 @@ module Qless
(bjob.heartbeat + 11).should > Time.now.to_i
expect {
ajob.heartbeat
- ... | Fix specs failing due to error message changes. |
diff --git a/heroku-api/src/main/java/com/heroku/api/Release.java b/heroku-api/src/main/java/com/heroku/api/Release.java
index <HASH>..<HASH> 100644
--- a/heroku-api/src/main/java/com/heroku/api/Release.java
+++ b/heroku-api/src/main/java/com/heroku/api/Release.java
@@ -20,6 +20,7 @@ public class Release implements Ser... | Added slug to Release model |
diff --git a/src/Injectors/user.php b/src/Injectors/user.php
index <HASH>..<HASH> 100644
--- a/src/Injectors/user.php
+++ b/src/Injectors/user.php
@@ -9,5 +9,6 @@ return [
[
'text' => __('laralum_notifications::general.create_notification'),
'url' => route('laralum::notifications.create'),
+ ... | Added permission to user.php injection |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -31,7 +31,7 @@ setup(
license="New BSD",
install_requires=["emoji", "grapheme", "requests"],
classifiers=[
- "Development Status :: 3 - Beta",
+ "Development Status :: 3 - Alpha",
"Environ... | Beta isn't valid, revert
`Classifier 'Development Status :: 3 - Beta' is not a valid classifier.` |
diff --git a/src/org/zaproxy/zap/authentication/ManualAuthenticationMethodType.java b/src/org/zaproxy/zap/authentication/ManualAuthenticationMethodType.java
index <HASH>..<HASH> 100644
--- a/src/org/zaproxy/zap/authentication/ManualAuthenticationMethodType.java
+++ b/src/org/zaproxy/zap/authentication/ManualAuthenticat... | Fix NPE when saving manual authentication data
Change ManualAuthenticationMethodType to skip session's encoding if
none was set, preventing the NullPointerException.
Fix #<I> - Error whilst using Api - ERROR ExtensionUserManagement -
Unable to persist Users |
diff --git a/tests/lib/Utf8Tools.spec.js b/tests/lib/Utf8Tools.spec.js
index <HASH>..<HASH> 100644
--- a/tests/lib/Utf8Tools.spec.js
+++ b/tests/lib/Utf8Tools.spec.js
@@ -41,6 +41,11 @@ describe('Utf8Tools', function() {
isValid: false,
decoded: '48656c6c6f0020576f726c6421',
... | Add Philipp's exploit as test vector |
diff --git a/app/models/manager_refresh/save_inventory.rb b/app/models/manager_refresh/save_inventory.rb
index <HASH>..<HASH> 100644
--- a/app/models/manager_refresh/save_inventory.rb
+++ b/app/models/manager_refresh/save_inventory.rb
@@ -15,7 +15,10 @@ module ManagerRefresh
end
def save_collection(pare... | Allow only DtoCollection in ManagerRefresh::Saveinventory
Allow only DtoCollection in ManagerRefresh::Saveinventory
(transferred from ManageIQ/manageiq@<I>c1a<I>fec<I>c6dfc<I>ed<I>fe<I>edcb<I>) |
diff --git a/libkbfs/kbfs_ops_concur_test.go b/libkbfs/kbfs_ops_concur_test.go
index <HASH>..<HASH> 100644
--- a/libkbfs/kbfs_ops_concur_test.go
+++ b/libkbfs/kbfs_ops_concur_test.go
@@ -716,8 +716,6 @@ func TestKBFSOpsConcurBlockSyncTruncate(t *testing.T) {
// overwrites, plus one write that blocks until the dirty bc... | kbfs_ops_concur_test: with KBFS-<I> fixed, reenable test
Issue: KBFS-<I> |
diff --git a/lintly/parsers.py b/lintly/parsers.py
index <HASH>..<HASH> 100644
--- a/lintly/parsers.py
+++ b/lintly/parsers.py
@@ -229,7 +229,7 @@ class CfnLintParser(BaseLintParser):
violation = Violation(line=int(line_number),
column=int(column),
- ... | Remove backticks from the code field. |
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adap... | accept option for recreate db for postgres (same as mysql now) |
diff --git a/src/Site/Key.php b/src/Site/Key.php
index <HASH>..<HASH> 100644
--- a/src/Site/Key.php
+++ b/src/Site/Key.php
@@ -16,7 +16,7 @@
namespace Zest\Site;
-use Zest\Contracts\Site\key as KeyContract;
+use Zest\Contracts\Site\Key as KeyContract;
class Key implements keyContract
{ | Changes the interface statment to use (#<I>) |
diff --git a/djcelery/loaders.py b/djcelery/loaders.py
index <HASH>..<HASH> 100644
--- a/djcelery/loaders.py
+++ b/djcelery/loaders.py
@@ -21,7 +21,10 @@ class DjangoLoader(BaseLoader):
return settings
def on_task_init(self, task_id, task):
+ # the parent process may have established these,
+ ... | Need to close cache connection at start of task, as it may be left over from the parent process. Thanks to DctrWatson and otherjacob. |
diff --git a/spec/integration/basic/bulk_action/rails_admin_basic_bulk_action_spec.rb b/spec/integration/basic/bulk_action/rails_admin_basic_bulk_action_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/integration/basic/bulk_action/rails_admin_basic_bulk_action_spec.rb
+++ b/spec/integration/basic/bulk_action/rails_admin... | add an example to send the request which has empty bulk_ids |
diff --git a/matchpy/matching/many_to_one.py b/matchpy/matching/many_to_one.py
index <HASH>..<HASH> 100644
--- a/matchpy/matching/many_to_one.py
+++ b/matchpy/matching/many_to_one.py
@@ -299,7 +299,7 @@ class _MatchIter:
self.constraints |= restore_constraints
self.patterns |= restore_patterns... | Fixed a bug in the ManyToOneMatcher. |
diff --git a/src/main/java/com/cloudbees/jenkins/support/impl/AboutJenkins.java b/src/main/java/com/cloudbees/jenkins/support/impl/AboutJenkins.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/cloudbees/jenkins/support/impl/AboutJenkins.java
+++ b/src/main/java/com/cloudbees/jenkins/support/impl/AboutJenkins.ja... | JENKINS-<I> - Added "Slave Version" using `Launcher.VERSION` to master node |
diff --git a/fitsio/fitslib.py b/fitsio/fitslib.py
index <HASH>..<HASH> 100644
--- a/fitsio/fitslib.py
+++ b/fitsio/fitslib.py
@@ -135,7 +135,6 @@ def write(filename, data, extname=None, units=None, compress=None, header=None,
A list of strings representing units for each column.
"""
- fits = FITS(f... | fixed bug where file was being opened twice |
diff --git a/lib/application.js b/lib/application.js
index <HASH>..<HASH> 100644
--- a/lib/application.js
+++ b/lib/application.js
@@ -44,9 +44,9 @@ framework.extend(Application.prototype, new function() {
upload: 'incoming/'
}
- // Contains the various registered application storages for caching
- this.s... | Added Application::(driver|storage) |
diff --git a/astropy_helpers/test_helpers.py b/astropy_helpers/test_helpers.py
index <HASH>..<HASH> 100644
--- a/astropy_helpers/test_helpers.py
+++ b/astropy_helpers/test_helpers.py
@@ -137,7 +137,8 @@ class AstropyTest(Command, object):
else:
ignore_python_version = '3'
... | Changes to test_helpers.py from astropy/astropy#<I> |
diff --git a/route.go b/route.go
index <HASH>..<HASH> 100644
--- a/route.go
+++ b/route.go
@@ -90,6 +90,13 @@ func (r Route) matchesAccept(mimeTypesWithQuality string) bool {
// Return whether the mimeTypes match to what this Route can consume.
func (r Route) matchesContentType(mimeTypes string) bool {
+
+ // idemp... | fix for regression introduced in #<I> |
diff --git a/lib/injectedlogger/delegator.rb b/lib/injectedlogger/delegator.rb
index <HASH>..<HASH> 100644
--- a/lib/injectedlogger/delegator.rb
+++ b/lib/injectedlogger/delegator.rb
@@ -126,14 +126,25 @@ module InjectedLogger
if prefix and not prefix.empty?
prefix_s += " " + prefix
e... | logger: add support for :log with blocks |
diff --git a/parameters.py b/parameters.py
index <HASH>..<HASH> 100644
--- a/parameters.py
+++ b/parameters.py
@@ -475,6 +475,7 @@ class CmdLineParser(ArgumentParser):
except:
raise Exception("No handler for command %s" % result.operation)
+ self.preops(result, err... | including a new call in the self service mechanism to address the global options |
diff --git a/script/upload.py b/script/upload.py
index <HASH>..<HASH> 100755
--- a/script/upload.py
+++ b/script/upload.py
@@ -108,6 +108,9 @@ def parse_args():
def get_atom_shell_build_version():
+ if os.environ.has_key('CI'):
+ # In CI we just build as told.
+ return ATOM_SHELL_VERSION
if PLATFORM == '... | Don't check build version in CI |
diff --git a/src/Resolvers/ResolverBase.php b/src/Resolvers/ResolverBase.php
index <HASH>..<HASH> 100644
--- a/src/Resolvers/ResolverBase.php
+++ b/src/Resolvers/ResolverBase.php
@@ -73,7 +73,7 @@ class ResolverBase
{
// can we do this easier?
if (strpos($path, self::CHILDPATH_VARIABLE_OPEN) === ... | Fix the property resolver and add test to avoid making that mistake again. |
diff --git a/lib/ddbcli/cli/options.rb b/lib/ddbcli/cli/options.rb
index <HASH>..<HASH> 100644
--- a/lib/ddbcli/cli/options.rb
+++ b/lib/ddbcli/cli/options.rb
@@ -7,7 +7,7 @@ def parse_options
options.access_key_id = ENV['AWS_ACCESS_KEY_ID']
options.secret_access_key = ENV['AWS_SECRET_ACCESS_KEY']
options.... | support the AWS_DEFAULT_REGION environment variable |
diff --git a/tests/ArraysTest.php b/tests/ArraysTest.php
index <HASH>..<HASH> 100644
--- a/tests/ArraysTest.php
+++ b/tests/ArraysTest.php
@@ -309,61 +309,5 @@ class ArraysTest extends PHPUnit_Framework_TestCase
}
}
-/*
-$(document).ready(function() {
-
- module("Arrays");
-
- test("first", function() {... | Remove unnecessity code of test |
diff --git a/src/org/mozilla/javascript/JavaMembers.java b/src/org/mozilla/javascript/JavaMembers.java
index <HASH>..<HASH> 100644
--- a/src/org/mozilla/javascript/JavaMembers.java
+++ b/src/org/mozilla/javascript/JavaMembers.java
@@ -603,8 +603,9 @@ class JavaMembers
Object v = ht.get(beanProperty... | Fix propagated from <I>R2 release branch. |
diff --git a/azurerm/internal/services/compute/validation.go b/azurerm/internal/services/compute/validation.go
index <HASH>..<HASH> 100644
--- a/azurerm/internal/services/compute/validation.go
+++ b/azurerm/internal/services/compute/validation.go
@@ -168,9 +168,9 @@ func validateDiskSizeGB(v interface{}, _ string) (war... | azurerm_managed_disk - increase the maximum disk_size_gb to <I> GB. (#<I>)
Azure Ultra SSD Managed Disk (storage_account_type UltraSSD_LRS) supports more than <I> GB.
This code fix this limitation, allowing the max of <I> for Ultra SSD.
Fixes #<I> |
diff --git a/templates/js/atk4_univ.js b/templates/js/atk4_univ.js
index <HASH>..<HASH> 100644
--- a/templates/js/atk4_univ.js
+++ b/templates/js/atk4_univ.js
@@ -145,7 +145,6 @@ $.each({
},
reloadArgs: function(url,key,value){
var u=$.atk4.addArgument(url,key+'='+value);
- console.log(url);
this.jquery.atk4... | add onKey method for capturing certain keycode |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -51,7 +51,7 @@ function check(port, host) {
return deferred.promise;
}
- if (!is.hostAddress(host)) {
+ if (is.nullOrUndefined(host)) {
debug('set host address to default 127.0.0.1');
ho... | Swapped is.hostAddress for is.nullOrUndefined. |
diff --git a/src/semantic_version/__init__.py b/src/semantic_version/__init__.py
index <HASH>..<HASH> 100644
--- a/src/semantic_version/__init__.py
+++ b/src/semantic_version/__init__.py
@@ -2,7 +2,7 @@
# Copyright (c) 2012 Raphaël Barrois
-__version__ = '1.1.0-alpha'
+__version__ = '1.1.0-beta'
from .base im... | Version bump.
Features ready, doc to write. |
diff --git a/archivex.go b/archivex.go
index <HASH>..<HASH> 100644
--- a/archivex.go
+++ b/archivex.go
@@ -342,6 +342,10 @@ func (t *TarFile) Close() error {
func getSubDir(dir string, rootDir string, includeCurrentFolder bool) (subDir string) {
subDir = strings.Replace(dir, rootDir, "", 1)
+ // Remove leading sla... | When using AddAll with includeCurrentFolder=false, remove leading slashes from subdirectories within the archive. |
diff --git a/blueprints/ember-token-auth/index.js b/blueprints/ember-token-auth/index.js
index <HASH>..<HASH> 100644
--- a/blueprints/ember-token-auth/index.js
+++ b/blueprints/ember-token-auth/index.js
@@ -1,5 +1,7 @@
module.exports = {
+ normalizeEntityName: function() {},
+
afterInstall: function() {
retur... | blueprint ember-token-auth should install ember-oauth2 |
diff --git a/src/Model/Project.php b/src/Model/Project.php
index <HASH>..<HASH> 100644
--- a/src/Model/Project.php
+++ b/src/Model/Project.php
@@ -135,6 +135,18 @@ class Project extends Resource
}
/**
+ * @inheritdoc
+ */
+ public function operationAvailable($op)
+ {
+ if (!parent::oper... | Ensure project has full representation when checking operationAvailable() |
diff --git a/core/lib/refinery/crud.rb b/core/lib/refinery/crud.rb
index <HASH>..<HASH> 100644
--- a/core/lib/refinery/crud.rb
+++ b/core/lib/refinery/crud.rb
@@ -175,13 +175,15 @@ module Refinery
# If we have already found a set then we don't need to again
find_all_#{plural_name} if @#{plural... | Extracted paginate_per_page helper for crudify from complex logic. |
diff --git a/lib/celluloid/logging/incident_reporter.rb b/lib/celluloid/logging/incident_reporter.rb
index <HASH>..<HASH> 100644
--- a/lib/celluloid/logging/incident_reporter.rb
+++ b/lib/celluloid/logging/incident_reporter.rb
@@ -1,18 +1,29 @@
+require 'logger'
module Celluloid
# Subscribes to log incident topics ... | use a Logger to write incident events
Includes a custom formatter that uses the event time instead of the time
given by Logger, which is likely to be inaccurate as most events
actually happened in the past.
The actual format of the log output is the same as the default. |
diff --git a/htmresearch/frameworks/pytorch/modules/k_winners.py b/htmresearch/frameworks/pytorch/modules/k_winners.py
index <HASH>..<HASH> 100644
--- a/htmresearch/frameworks/pytorch/modules/k_winners.py
+++ b/htmresearch/frameworks/pytorch/modules/k_winners.py
@@ -32,6 +32,42 @@ from htmresearch.frameworks.pytorch.fu... | Added generic get entropy function |
diff --git a/src/actions/general.js b/src/actions/general.js
index <HASH>..<HASH> 100644
--- a/src/actions/general.js
+++ b/src/actions/general.js
@@ -56,6 +56,12 @@ export function getLicenseConfig() {
);
}
+export function getClientConfigAndLicense() {
+ return async (dispatch, getState) => {
+ awai... | Add action to get both client and license config at the same time |
diff --git a/Bool/Bool.php b/Bool/Bool.php
index <HASH>..<HASH> 100644
--- a/Bool/Bool.php
+++ b/Bool/Bool.php
@@ -50,11 +50,13 @@ class Bool implements BuilderInterface
*/
public function addToBool(BuilderInterface $bool, $type = self::MUST)
{
- if (in_array($type, [ self::MUST, self::MUST_NOT, ... | refactored Bool::addToBool method |
diff --git a/module/image-set.js b/module/image-set.js
index <HASH>..<HASH> 100644
--- a/module/image-set.js
+++ b/module/image-set.js
@@ -629,7 +629,8 @@ export class ImageSet {
// Build the form data
const formData = cls.behaviours.formData[this._behaviours.formData](
this,
- ... | Default form data behaviour now includes version as a parameter for image sets |
diff --git a/src/Native5/UI/ScriptPathResolver.php b/src/Native5/UI/ScriptPathResolver.php
index <HASH>..<HASH> 100644
--- a/src/Native5/UI/ScriptPathResolver.php
+++ b/src/Native5/UI/ScriptPathResolver.php
@@ -75,12 +75,14 @@ class ScriptPathResolver
$searchFolder = 'scripts';
} else if(preg_matc... | Fixed issue with Image Path Resolution in Client Library |
diff --git a/salt/modules/status.py b/salt/modules/status.py
index <HASH>..<HASH> 100644
--- a/salt/modules/status.py
+++ b/salt/modules/status.py
@@ -139,6 +139,8 @@ def uptime():
The uptime function was changed to return a dictionary of easy-to-read
key/value pairs containing uptime information, ins... | status.uptime - readded fallback to uptime binary, atleast we get something on the BSDs too now |
diff --git a/percy/percy.test.js b/percy/percy.test.js
index <HASH>..<HASH> 100644
--- a/percy/percy.test.js
+++ b/percy/percy.test.js
@@ -18,7 +18,10 @@ jest.setTimeout(600000)
const PERCY_EXTRA_WAIT = 5000
const percySnapshotWithWait = async (page, name) => {
await page.waitForTimeout(PERCY_EXTRA_WAIT)
- await ... | ci(percy): hide refresh button that won't let itself be standardized |
diff --git a/packages/blueprint/lib/RouterBuilder.js b/packages/blueprint/lib/RouterBuilder.js
index <HASH>..<HASH> 100644
--- a/packages/blueprint/lib/RouterBuilder.js
+++ b/packages/blueprint/lib/RouterBuilder.js
@@ -122,7 +122,7 @@ RouterBuilder.prototype.addSpecification = function (spec, currPath) {
var res... | Added support for controller method returning arrays |
diff --git a/exchange/bitswap/strategy/strategy.go b/exchange/bitswap/strategy/strategy.go
index <HASH>..<HASH> 100644
--- a/exchange/bitswap/strategy/strategy.go
+++ b/exchange/bitswap/strategy/strategy.go
@@ -72,6 +72,8 @@ func (s *strategist) Seed(int64) {
// TODO
}
+// MessageReceived performs book-keeping. Re... | clarify MessageReceived contract
License: MIT |
diff --git a/src/Providers/AuthorizationServiceProvider.php b/src/Providers/AuthorizationServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/Providers/AuthorizationServiceProvider.php
+++ b/src/Providers/AuthorizationServiceProvider.php
@@ -54,23 +54,23 @@ class AuthorizationServiceProvider extends ServiceProvide... | Updating the LogViewer abilities to match with the permissions |
diff --git a/lib/Skeleton/Core/Web/Media.php b/lib/Skeleton/Core/Web/Media.php
index <HASH>..<HASH> 100644
--- a/lib/Skeleton/Core/Web/Media.php
+++ b/lib/Skeleton/Core/Web/Media.php
@@ -148,7 +148,7 @@ class Media {
}
unset($path_parts[0]);
- $package_path = $package->asset_path . '/' . $filetype . '... | Fix building skeleton package asset path |
diff --git a/lib/Pagon/Middleware/Booster.php b/lib/Pagon/Middleware/Booster.php
index <HASH>..<HASH> 100644
--- a/lib/Pagon/Middleware/Booster.php
+++ b/lib/Pagon/Middleware/Booster.php
@@ -12,8 +12,12 @@ class Booster extends Middleware
{
$app = $this->app;
- // configure timezone
- if (... | Move encoding set to Booster |
diff --git a/lib/jekyll-admin/server.rb b/lib/jekyll-admin/server.rb
index <HASH>..<HASH> 100644
--- a/lib/jekyll-admin/server.rb
+++ b/lib/jekyll-admin/server.rb
@@ -52,14 +52,13 @@ module JekyllAdmin
end
def sanitized_path(path)
- path = path.to_s.gsub(%r!\A#{Regexp.escape(JekyllAdmin.site.source)}!,... | DRY up removing the site source |
diff --git a/LiipImagineBundle.php b/LiipImagineBundle.php
index <HASH>..<HASH> 100644
--- a/LiipImagineBundle.php
+++ b/LiipImagineBundle.php
@@ -40,13 +40,13 @@ class LiipImagineBundle extends Bundle
{
parent::build($container);
+ $container->addCompilerPass(new NonFunctionalFilterExceptionPass... | pr/<I>: Move 'NonFunctionalFilterExceptionPass' to be called first |
diff --git a/server/src/auth/auth0.js b/server/src/auth/auth0.js
index <HASH>..<HASH> 100644
--- a/server/src/auth/auth0.js
+++ b/server/src/auth/auth0.js
@@ -45,7 +45,7 @@ function auth0(horizon, raw_options) {
https.request({ host, path: '/userinfo',
headers: { Authorization: `Bearer ${acces... | fixing user id extraction from auth0 info (#<I>) |
diff --git a/core.js b/core.js
index <HASH>..<HASH> 100644
--- a/core.js
+++ b/core.js
@@ -197,7 +197,7 @@ class Location extends EventEmitter {
}
// triggers navigation
get href() { return this._url.href || ''; }
- set href(href) { this._url = new url.URL(href, this._url.href); this.update(); }
+ set href(h... | Make Location href setting respect the base url |
diff --git a/src/actions/breakpoints/breakpointPositions.js b/src/actions/breakpoints/breakpointPositions.js
index <HASH>..<HASH> 100644
--- a/src/actions/breakpoints/breakpointPositions.js
+++ b/src/actions/breakpoints/breakpointPositions.js
@@ -2,6 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed... | Add flow type to breakpointPositions (#<I>) |
diff --git a/src/session.js b/src/session.js
index <HASH>..<HASH> 100644
--- a/src/session.js
+++ b/src/session.js
@@ -148,6 +148,13 @@ ghostdriver.Session = function(desiredCapabilities) {
args.splice(0, 3);
}
+ // Our callbacks assume that the only thing affecting the page state
+ ... | Stop the page before trying to load a new URL, otherwise our callbacks get confused. |
diff --git a/class.simple_mail.php b/class.simple_mail.php
index <HASH>..<HASH> 100755
--- a/class.simple_mail.php
+++ b/class.simple_mail.php
@@ -546,7 +546,7 @@ class SimpleMail
public function formatHeader($email, $name = null)
{
$email = $this->filterEmail((string) $email);
- if (empty(tri... | Fix issue with calling `trim` and expecting a return value in PHP < <I> |
diff --git a/lib/create-clusters.js b/lib/create-clusters.js
index <HASH>..<HASH> 100644
--- a/lib/create-clusters.js
+++ b/lib/create-clusters.js
@@ -8,6 +8,7 @@ function createClusters(selection, g) {
svgClusters = selection.selectAll("g.cluster")
.data(clusters, function(v) { return v; });
+ svgCl... | Remove contents of cluster on change
Fixes #<I> |
diff --git a/tools/java/src/com/twitter/bazel/checkstyle/JavaCheckstyle.java b/tools/java/src/com/twitter/bazel/checkstyle/JavaCheckstyle.java
index <HASH>..<HASH> 100644
--- a/tools/java/src/com/twitter/bazel/checkstyle/JavaCheckstyle.java
+++ b/tools/java/src/com/twitter/bazel/checkstyle/JavaCheckstyle.java
@@ -95,7 ... | disable checkstyle for kafka-spout |
diff --git a/lib/Array/prototype/common-left.js b/lib/Array/prototype/common-left.js
index <HASH>..<HASH> 100644
--- a/lib/Array/prototype/common-left.js
+++ b/lib/Array/prototype/common-left.js
@@ -4,13 +4,11 @@
var every = Array.prototype.every
, call = Function.prototype.call
- , assertNotNul... | Input arguments are already validated by sortMethod |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.