From 87fc15f238b1dac348ede381f3436488a73db52e Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Wed, 21 Jan 2015 22:30:09 +0000 Subject: Bump version post-release --- Bugzilla/Constants.pm | 2 +- docs/bugzilla.ent.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index bd5b2dabc..15ef9e271 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -182,7 +182,7 @@ use Memoize; # CONSTANTS # # Bugzilla version -use constant BUGZILLA_VERSION => "4.4.7"; +use constant BUGZILLA_VERSION => "4.4.7+"; # Location of the remote and local XML files to track new releases. use constant REMOTE_FILE => 'http://updates.bugzilla.org/bugzilla-update.xml'; diff --git a/docs/bugzilla.ent.tmpl b/docs/bugzilla.ent.tmpl index dcf5ec140..20ac43b24 100644 --- a/docs/bugzilla.ent.tmpl +++ b/docs/bugzilla.ent.tmpl @@ -1,4 +1,4 @@ - + -- cgit v1.2.3-65-gdbad From 25c0962c1de8b0f4bea113494432397bf255bb24 Mon Sep 17 00:00:00 2001 From: Albert Ting Date: Thu, 22 Jan 2015 12:10:44 +0000 Subject: Bug 1116614: checksetup "use lib" called too late. r=gerv, a=glob. --- checksetup.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/checksetup.pl b/checksetup.pl index bcc1ad8ea..ab7ea9f7a 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -15,12 +15,13 @@ use strict; use 5.008001; use File::Basename; +BEGIN { chdir dirname($0); } +use lib qw(. lib); + use Getopt::Long qw(:config bundling); use Pod::Usage; use Safe; -BEGIN { chdir dirname($0); } -use lib qw(. lib); use Bugzilla::Constants; use Bugzilla::Install::Requirements; use Bugzilla::Install::Util qw(install_string get_version_and_os -- cgit v1.2.3-65-gdbad From 6d5669f771a49a7c791f8e61642d1c80ca1631c9 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Fri, 23 Jan 2015 17:13:32 +0000 Subject: Bug 1124716: regression caused by bug 1090275 to whitelist webservice methods causes test failures with t/012throwables.t r=dylan,a=glob --- Bugzilla/WebService/Server/JSONRPC.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/WebService/Server/JSONRPC.pm b/Bugzilla/WebService/Server/JSONRPC.pm index aba5d310b..0a0afd400 100644 --- a/Bugzilla/WebService/Server/JSONRPC.pm +++ b/Bugzilla/WebService/Server/JSONRPC.pm @@ -381,7 +381,7 @@ sub _argument_type_check { # Only allowed methods to be used from our whitelist if (none { $_ eq $method} $pkg->PUBLIC_METHODS) { - ThrowUserError('unknown_method', { method => $self->bz_method_name }); + ThrowCodeError('unknown_method', { method => $self->_bz_method_name }); } # This is the best time to do login checks. -- cgit v1.2.3-65-gdbad From 3eff1f347834cefa08d7bcb04f0fc275d9ad15c8 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 27 Jan 2015 15:43:02 +0000 Subject: Bug 1125186: Release notes for 4.4.8 r=justdave,a=dkl --- template/en/default/pages/release-notes.html.tmpl | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/template/en/default/pages/release-notes.html.tmpl b/template/en/default/pages/release-notes.html.tmpl index bafd9184a..3b7cc2994 100644 --- a/template/en/default/pages/release-notes.html.tmpl +++ b/template/en/default/pages/release-notes.html.tmpl @@ -45,6 +45,17 @@

Updates in this 4.4.x Release

+

4.4.8

+ +

This releases contains the following [% terms.bug %] fix:

+ + +

4.4.7

This release contains fixes for a couple of security issues. -- cgit v1.2.3-65-gdbad From c3ce73ba59181e7b50858448a42cdbaa983bcc21 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 27 Jan 2015 15:53:10 +0000 Subject: Bumped version to 4.4.8 --- Bugzilla/Constants.pm | 2 +- docs/bugzilla.ent.tmpl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 15ef9e271..7da3697aa 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -182,7 +182,7 @@ use Memoize; # CONSTANTS # # Bugzilla version -use constant BUGZILLA_VERSION => "4.4.7+"; +use constant BUGZILLA_VERSION => "4.4.8"; # Location of the remote and local XML files to track new releases. use constant REMOTE_FILE => 'http://updates.bugzilla.org/bugzilla-update.xml'; diff --git a/docs/bugzilla.ent.tmpl b/docs/bugzilla.ent.tmpl index 20ac43b24..f7a88faf1 100644 --- a/docs/bugzilla.ent.tmpl +++ b/docs/bugzilla.ent.tmpl @@ -1,5 +1,5 @@ - - + + -- cgit v1.2.3-65-gdbad