mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-12 10:04:14 +02:00
Begin v2.55.0 development.
This commit is contained in:
parent
1e5f46b7d9
commit
4125f726a8
@ -188,7 +188,7 @@ pgbackrest/test/test.pl --code-count
|
||||
|
||||
Commit and push to integration:
|
||||
```
|
||||
git commit -m "Begin v2.15 development."
|
||||
git commit -m "Begin v2.15.0 development."
|
||||
git push origin integration
|
||||
```
|
||||
|
||||
|
@ -1,4 +1,10 @@
|
||||
[
|
||||
{
|
||||
"commit": "1e5f46b7d9626eadfcf99d08cb984a74085ee0c8",
|
||||
"date": "2024-10-21 08:57:43 +0300",
|
||||
"subject": "v2.54.0: Target Time for Versioned Storage",
|
||||
"body": "NOTE TO PACKAGERS: This is last feature release to support the autoconf/make build. Please migrate to meson if you have not already done so. 2.54.X patch releases (if any) will continue to support autoconf/make.\n\nBug Fixes:\n\n* Fix PostgreSQL query performance for large datasets. (Fixed by Thibault Vincent, David Steele. Reviewed by David Christensen, Antoine Millet. Reported by Antoine Millet.)\n\nFeatures:\n\n* Allow repositories on versioned storage to be read at a target time. (Reviewed by Stefan Fercot, David Christensen.)\n* Allow requested standby backup to proceed with no standby. (Reviewed by Stefan Fercot.)\n\nImprovements:\n\n* Summarize backup reference list for info command text output. (Contributed by Stefan Fercot. Reviewed by David Steele.)\n* Refresh web-id token for each S3 authentication. (Contributed by Brent Graveland. Reviewed by David Steele.)\n* Correctly display current values for indexed options in help. (Reviewed by David Christensen.)\n* Save backup.info only when contents have changed. (Reviewed by Stefan Fercot.)\n* Remove limitation on reading files in parallel during restore. (Reviewed by David Christensen.)\n* Improve SFTP error messages. (Contributed by Reid Thompson. Reviewed by David Steele.)\n\nDocumentation Features:\n\n* Add performance tuning section to user guide. (Reviewed by Stefan Fercot.)\n\nDocumentation Improvements:\n\n* Clarify source for data_directory. (Contributed by Stefan Fercot. Reviewed by David Steele. Suggested by Matthias.)\n* Better logic for deciding when a summary should be lower-cased. (Suggested by Daniel Westermann.)"
|
||||
},
|
||||
{
|
||||
"commit": "7effca0d0995844b3b3b89d568c3c8cee7b9ef1e",
|
||||
"date": "2024-10-20 20:28:54 +0300",
|
||||
|
@ -1,5 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE doc SYSTEM "doc.dtd" [
|
||||
<!ENTITY v2.55.0 SYSTEM "release/2025/2.55.0.xml">
|
||||
<!ENTITY v2.54.0 SYSTEM "release/2024/2.54.0.xml">
|
||||
<!ENTITY v2.53.1 SYSTEM "release/2024/2.53.1.xml">
|
||||
<!ENTITY v2.53 SYSTEM "release/2024/2.53.xml">
|
||||
@ -127,6 +128,7 @@
|
||||
</intro>
|
||||
|
||||
<release-list>
|
||||
&v2.55.0;
|
||||
&v2.54.0;
|
||||
&v2.53.1;
|
||||
&v2.53;
|
||||
|
2
doc/xml/release/2025/2.55.0.xml
Normal file
2
doc/xml/release/2025/2.55.0.xml
Normal file
@ -0,0 +1,2 @@
|
||||
<release date="XXXX-XX-XX" version="2.55dev" title="UNDER DEVELOPMENT">
|
||||
</release>
|
@ -4,7 +4,7 @@
|
||||
project(
|
||||
'pgbackrest',
|
||||
['c'],
|
||||
version: '2.54.0',
|
||||
version: '2.55dev',
|
||||
license: 'MIT',
|
||||
meson_version: '>=0.47',
|
||||
default_options: [
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Initialize configuration
|
||||
# ----------------------------------------------------------------------------------------------------------------------------------
|
||||
AC_PREREQ([2.71])
|
||||
AC_INIT([pgBackRest], [2.54.0])
|
||||
AC_INIT([pgBackRest], [2.55dev])
|
||||
AC_CONFIG_SRCDIR([version.h])
|
||||
AC_CONFIG_AUX_DIR(build)
|
||||
|
||||
|
20
src/configure
vendored
20
src/configure
vendored
@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.71 for pgBackRest 2.54.0.
|
||||
# Generated by GNU Autoconf 2.71 for pgBackRest 2.55dev.
|
||||
#
|
||||
#
|
||||
# Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
|
||||
@ -607,8 +607,8 @@ MAKEFLAGS=
|
||||
# Identity of this package.
|
||||
PACKAGE_NAME='pgBackRest'
|
||||
PACKAGE_TARNAME='pgbackrest'
|
||||
PACKAGE_VERSION='2.54.0'
|
||||
PACKAGE_STRING='pgBackRest 2.54.0'
|
||||
PACKAGE_VERSION='2.55dev'
|
||||
PACKAGE_STRING='pgBackRest 2.55dev'
|
||||
PACKAGE_BUGREPORT=''
|
||||
PACKAGE_URL=''
|
||||
|
||||
@ -1272,7 +1272,7 @@ if test "$ac_init_help" = "long"; then
|
||||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures pgBackRest 2.54.0 to adapt to many kinds of systems.
|
||||
\`configure' configures pgBackRest 2.55dev to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
@ -1319,7 +1319,7 @@ fi
|
||||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of pgBackRest 2.54.0:";;
|
||||
short | recursive ) echo "Configuration of pgBackRest 2.55dev:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
@ -1414,7 +1414,7 @@ fi
|
||||
test -n "$ac_init_help" && exit $ac_status
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
pgBackRest configure 2.54.0
|
||||
pgBackRest configure 2.55dev
|
||||
generated by GNU Autoconf 2.71
|
||||
|
||||
Copyright (C) 2021 Free Software Foundation, Inc.
|
||||
@ -1570,7 +1570,7 @@ cat >config.log <<_ACEOF
|
||||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by pgBackRest $as_me 2.54.0, which was
|
||||
It was created by pgBackRest $as_me 2.55dev, which was
|
||||
generated by GNU Autoconf 2.71. Invocation command line was
|
||||
|
||||
$ $0$ac_configure_args_raw
|
||||
@ -4982,7 +4982,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
||||
# report actual input values of CONFIG_FILES etc. instead of their
|
||||
# values after options handling.
|
||||
ac_log="
|
||||
This file was extended by pgBackRest $as_me 2.54.0, which was
|
||||
This file was extended by pgBackRest $as_me 2.55dev, which was
|
||||
generated by GNU Autoconf 2.71. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
@ -5046,7 +5046,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
|
||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||
ac_cs_config='$ac_cs_config_escaped'
|
||||
ac_cs_version="\\
|
||||
pgBackRest config.status 2.54.0
|
||||
pgBackRest config.status 2.55dev
|
||||
configured by $0, generated by GNU Autoconf 2.71,
|
||||
with options \\"\$ac_cs_config\\"
|
||||
|
||||
@ -5750,4 +5750,4 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
|
||||
printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
|
||||
fi
|
||||
|
||||
# Generated from src/build/configure.ac sha1 70a06187d7c69bc3b9a4f28c1c1b964de1a94b0f
|
||||
# Generated from src/build/configure.ac sha1 214ce99de821e4ce47d99d52133e048d35db5477
|
||||
|
@ -33,6 +33,6 @@ will be invalid unless migration functions are written.
|
||||
/***********************************************************************************************************************************
|
||||
Software version
|
||||
***********************************************************************************************************************************/
|
||||
#define PROJECT_VERSION "2.54.0"
|
||||
#define PROJECT_VERSION "2.55dev"
|
||||
|
||||
#endif
|
||||
|
@ -651,6 +651,10 @@ doc/xml/release/2024/2.54.0.xml:
|
||||
class: doc/source
|
||||
type: xml
|
||||
|
||||
doc/xml/release/2025/2.55.0.xml:
|
||||
class: doc/source
|
||||
type: xml
|
||||
|
||||
doc/xml/release/contributor.xml:
|
||||
class: doc/source
|
||||
type: xml
|
||||
|
Loading…
Reference in New Issue
Block a user