Re: RES: Subversion 1.6.13 Released

2010-10-26 Thread Andrey Repin
Greetings, Cooke, Mark!

  I am using SSPI alongside David's 1.6.13 builds (thanks again,
 David!)
  on apache on a windoze server box with no problems.
 
  From recent list traffic, issues with large commits failing seem to
 be
  related to timeout issues, search through the recent list for
 timeout
  and see if any of the suggestions there can help you.
 
 Which Apache version/SSPI module/SVN server and client you're 
 using? For my own convenience.
 
 Apache latest 2.2.17 with open-ssl support, SSPI was I think the latest
 I could find (the windoze file properties dialog reports the module file
 version as 1.0.4.0), svn server is David Darj's 1.6.13 and client is
 latest TortoiseSVN Release 1.6.11 (2 October 2010).

Ok, I'm using both server and client 1.6.13, Apache 2.2.16 and mod_auth_sspi
1.0.0.5 (Unfortunately, the link to original post
http://www.nosq.com/blog/2008/06/fixing-mod_auth_sspi-and-ie-losing-post-data/
appears to be broken, but I do have direct DL link:
http://dev.nosq.com/downloads/mod_auth_sspi/mod_auth_sspi_1.0.5b-vc9-2.2.11.zip 
)

One last bit: Tried with 1.6.1 client and server - same issue. :(
Attached a log of that connection...

Clocks are in sync

[]$cmdtime3.exe 192.168.1.12 192.168.1.12 192.168.1.12 192.168.1.12

* CmdTime 3.0 (c) Jury Gerasimov, 2000-2002.
* Adjusting time via Internet Time Servers.
* Contact author: http://www.softshape.com

Connecting 192.168.1.12...  OK.
Connecting 192.168.1.12...  OK.
Connecting 192.168.1.12...  OK.
Connecting 192.168.1.12...  OK.

Current time   : 2010-10-26 16:38:40
Suggested time : 2010-10-26 16:38:40
Inaccuracy : 00:00:00


--
WBR,
 Andrey Repin (anrdae...@freemail.ru) 26.10.2010, 16:25

Sorry for my terrible english...

error.log
Description: Binary data


connect.log
Description: Binary data


RES: Subversion 1.6.13 Released

2010-10-25 Thread Luiz Guilherme Kimel
In case you are using LDAP authentication against an Microsoft Active
Directory, please check your date and time settings including timezone. Your
apache server (where your svn server is running behind) is an authentication
client for the Windows Server and if there is a small difference between
their clocks then authentication may present this exact behavior.



-Mensagem original-
De: Cooke, Mark [mailto:mark.co...@siemens.com] 
Enviada em: segunda-feira, 25 de outubro de 2010 03:43
Para: users
Cc: Andrey Repin; David Darj
Assunto: RE: Subversion 1.6.13 Released

 -Original Message-
 From: David Darj [mailto:z...@alagazam.net] 
 Sent: 24 October 2010 22:48
 To: users
 Cc: Andrey Repin
 Subject: Re: Subversion 1.6.13 Released
 
   On 2010-10-24 20:12, Andrey Repin wrote:
  Greetings, David Darj!
 
  David, I have a strange issue with binaries you provided.
  I'm using SVN repository served by Apache under Win32.
 
  In attachment is a httpd-modules-svn.conf - module loading.
  Enabling it... here:
 
  VirtualHost *
   ServerName svn.darkdragon
   ServerAlias svn.rootdir.org
 
   DocumentRoot C:/home/svn
   AddDefaultCharset utf-8
 
   ErrorLog C:/home/svn/.log/error_log
   CustomLog C:/home/svn/.log/access_log common env=!SVN-ACTION
   CustomLog C:/home/svn/.log/svn_access_log svn env=SVN-ACTION
 
   IfModule rewrite_module
  some rewrite rules, they are convoluted and pretty much 
 meaningless
   /IfModule
 
   Location /
  #AllowOverride Limit AuthConfig
  #Options None
   Order allow,deny
   Allow from 192.168.1.10
 
   IfModule dav_svn_module
   DAV svn
   SVNParentPath C:/home/svn
   /IfModule
 
   IfModule sspi_auth_module
   Allow from all
 
   AuthName Subversion repository
   AuthType SSPI
   SSPIAuth On
   SSPIAuthoritative On
   SSPIOfferBasic On
   SSPIOmitDomain On
   SSPIUsernameCase lower
   SSPIBasicPreferred Off
 
   # only developers may access the repository
   Require group DAEMON1\CVS
 
   # And they should obey to SVN user permissions file
   IfModule authz_svn_module
   AuthzSVNAccessFile C:/home/svn/.registry
   /IfModule
   /IfModule
   /Location
  /VirtualHost
 
 
  Everything works fine, when I operate with small files.
  But once I start submittings megabytes of data (~500 files, 
 ~10Mb size total),
  Subversion start to break on authorization, randomly asking 
 for password or
  username, again and again.
 
  I don't quite know, if it is specific to your builds, or is a bug in
  Subversion. I'll be glad to present any additional info.
 
 
  --
  WBR,
Andrey Repin (anrdae...@freemail.ru) 24.10.2010,21:54
 
  Sorry for my terrible english...
 
 Hi Andrey
 
 I have no problem committing several hundreds om MB.
 I got no possibility to test with SSPI authentication though. Can you 
 test without it and see if it works?
 
 /David
 
 
I am using SSPI alongside David's 1.6.13 builds (thanks again, David!)
on apache on a windoze server box with no problems.

From recent list traffic, issues with large commits failing seem to be
related to timeout issues, search through the recent list for timeout
and see if any of the suggestions there can help you.

Good luck!

~ mark c



Re: RES: Subversion 1.6.13 Released

2010-10-25 Thread Andrey Repin
Greetings, Luiz Guilherme Kimel!

 In case you are using LDAP authentication

I'm using NTLM auth against that machine local accounting.

 against an Microsoft Active Directory, please check your date and time
 settings including timezone.

I'm playing EVE at the same time :) It's client tools are very sensitive to
timezone settings, so they are right (and time difference between workstation
and server never more than 30 seconds).

 Your apache server (where your svn server is running behind) is an
 authentication client for the Windows Server and if there is a small
 difference between their clocks then authentication may present this exact
 behavior.  

If only it was initial auth issue, but it starting commit right away, and
break in between.

 I have no problem committing several hundreds om MB.
 I got no possibility to test with SSPI authentication though. Can you 
 test without it and see if it works?

The lines where it asking for username, it's when it falling back to Basic
auth.

 I am using SSPI alongside David's 1.6.13 builds (thanks again, David!)
 on apache on a windoze server box with no problems.

 From recent list traffic, issues with large commits failing seem to be
 related to timeout issues, search through the recent list for timeout
 and see if any of the suggestions there can help you.

Which Apache version/SSPI module/SVN server and client you're using? For my
own convenience.


--
WBR,
 Andrey Repin (anrdae...@freemail.ru) 25.10.2010, 16:58

Sorry for my terrible english...



RE: RES: Subversion 1.6.13 Released

2010-10-25 Thread Cooke, Mark
 -Original Message-
 From: Andrey Repin [mailto:anrdae...@freemail.ru] 
 Sent: 25 October 2010 14:03
 To: users@subversion.apache.org
 Subject: Re: RES: Subversion 1.6.13 Released
 
  I am using SSPI alongside David's 1.6.13 builds (thanks again,
David!)
  on apache on a windoze server box with no problems.
 
  From recent list traffic, issues with large commits failing seem to
be
  related to timeout issues, search through the recent list for
timeout
  and see if any of the suggestions there can help you.
 
 Which Apache version/SSPI module/SVN server and client you're 
 using? For my own convenience.
 
Apache latest 2.2.17 with open-ssl support, SSPI was I think the latest
I could find (the windoze file properties dialog reports the module file
version as 1.0.4.0), svn server is David Darj's 1.6.13 and client is
latest TortoiseSVN Release 1.6.11 (2 October 2010).

~ mark c


Re: RES: RES: Subversion 1.6.13 Released

2010-10-25 Thread Andrey Repin
Greetings, Luiz Guilherme Kimel!

 I'm using CollabNetSubversion-client-1.6.11-4.win32. Its changlog says:

 Changes to included binaries:
   * Subversion upgraded to 1.6.11
   * Apache upgraded to 2.2.15
   * Openssl upgraded to 0.9.8n
   * Neon upgraded to 0.29.3

 I had similar problem with SharePoint and .net web applications running
 under IIS 6 with basic authentication against an active directory. Pages
 would ask for authentication many times until completely loaded. Users could
 access it, pressing ok to the authentication dialog as many times as asked
 by the browser. It took me sometime to figure out the timezone difference
 between servers, since users could authenticate after all. It was a very
 annoying problem. I hope you find your way out of it.

It is certainly not the timezone settings. Both machines are set to the same
TZ and clocks usually differs by a fraction of second.


--
WBR,
 Andrey Repin (anrdae...@freemail.ru) 26.10.2010, 9:17

Sorry for my terrible english...



Re: Subversion 1.6.13 Released

2010-10-24 Thread Nico Kadel-Garcia
On Sun, Oct 24, 2010 at 6:50 AM, Andrey Repin anrdae...@freemail.ru wrote:
 Greetings, All!

 Sorry... Did I miss something? I see, CollabNet only providing bare client
 and big pack.
 If I need Subversion without Apache, should I look elsewhere? I already have
 Apache installation, which isn't easy to maintain.
 And I don't want to screw it any further installing yet another all-in-one
 monstrocity. (Been there, done that mistake in the past)

 Erm... actually, forget that. I don't have account and don't see the need for
 registration just to be able to download one file.

It's not for you: it's for them. I don't work for them, but I've
certainly seen software projects where the investors, or business
partners, or middle management types in sales, wanted metrics on
downloads to point to and say this many people grabbed the download,
and they followed up with this many actual sales. I'll hardly
begrudge them that, since they do seem to be contributing heavily to
the open source version's features and design. It's also so common, I
find it worthwhile to maintain a throwaway email account for just such
uses, and there are even some *fascinating* anti-spam tools that
generate and expire one-use email accounts you can consider using if
it's irksome enough in the long run.


Re: Subversion 1.6.13 Released

2010-10-24 Thread Andrey Repin
Greetings, Nico Kadel-Garcia!

 the open source version's features and design. It's also so common, I
 find it worthwhile to maintain a throwaway email account for just such

Which often banned on the holder's mail server... Been there, too.
But as I said, if there's no required download at all, I'm not interested in
registration either way. My only concern for now is strange interaction of
subversion client compiled by David Darj with server using NTLM
authentication. It listing and retrieving files without a problem, but failing
at commit. Both read and write access require proper authentication.
Just want to confirm if it is compilation, configuration or something else.


--
WBR,
 Andrey Repin (anrdae...@freemail.ru) 24.10.2010, 21:32

Sorry for my terrible english...



Re: Subversion 1.6.13 Released

2010-10-24 Thread Andrey Repin
Greetings, David Darj!

David, I have a strange issue with binaries you provided.
I'm using SVN repository served by Apache under Win32.

In attachment is a httpd-modules-svn.conf - module loading.
Enabling it... here:

VirtualHost *
ServerName svn.darkdragon
ServerAlias svn.rootdir.org

DocumentRoot C:/home/svn
AddDefaultCharset utf-8

ErrorLog C:/home/svn/.log/error_log
CustomLog C:/home/svn/.log/access_log common env=!SVN-ACTION
CustomLog C:/home/svn/.log/svn_access_log svn env=SVN-ACTION

IfModule rewrite_module
some rewrite rules, they are convoluted and pretty much meaningless
/IfModule

Location /
#AllowOverride Limit AuthConfig
#Options None
Order allow,deny
Allow from 192.168.1.10

IfModule dav_svn_module
DAV svn
SVNParentPath C:/home/svn
/IfModule

IfModule sspi_auth_module
Allow from all

AuthName Subversion repository
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIOfferBasic On
SSPIOmitDomain On
SSPIUsernameCase lower
SSPIBasicPreferred Off

# only developers may access the repository
Require group DAEMON1\CVS

# And they should obey to SVN user permissions file
IfModule authz_svn_module
AuthzSVNAccessFile C:/home/svn/.registry
/IfModule
/IfModule
/Location
/VirtualHost


Everything works fine, when I operate with small files.
But once I start submittings megabytes of data (~500 files, ~10Mb size total),
Subversion start to break on authorization, randomly asking for password or
username, again and again.

I don't quite know, if it is specific to your builds, or is a bug in
Subversion. I'll be glad to present any additional info.


--
WBR,
 Andrey Repin (anrdae...@freemail.ru) 24.10.2010, 21:54

Sorry for my terrible english...

httpd-modules-svn.conf
Description: Binary data


Re: Subversion 1.6.13 Released

2010-10-24 Thread Andrey Repin
Greetings, All!

Quick add:

Transmitting file data ..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
Authentication realm: http://svn.darkdragon:80 Subversion repository
Username: anrdaemon
Password for 'anrdaemon': **
..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
Authentication realm: http://svn.darkdragon:80 Subversion repository
Username: anrdaemon
Password for 'anrdaemon': **
..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
Authentication realm: http://svn.darkdragon:80 Subversion repository
Username: anrdaemon
Password for 'anrdaemon': **
..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
..
Authentication realm: http://svn.darkdragon:80 Subversion repository
Password for 'AnrDaemon': **
..
Committed revision 49.

ls -kgoA of committed directory in attachment...


--
WBR,
 Andrey Repin (anrdae...@freemail.ru) 24.10.2010, 22:18

Sorry for my terrible english...

files.list
Description: Binary data


Re: Subversion 1.6.13 Released

2010-10-24 Thread David Darj

 On 2010-10-24 20:12, Andrey Repin wrote:

Greetings, David Darj!

David, I have a strange issue with binaries you provided.
I'm using SVN repository served by Apache under Win32.

In attachment is a httpd-modules-svn.conf - module loading.
Enabling it... here:

VirtualHost *
 ServerName svn.darkdragon
 ServerAlias svn.rootdir.org

 DocumentRoot C:/home/svn
 AddDefaultCharset utf-8

 ErrorLog C:/home/svn/.log/error_log
 CustomLog C:/home/svn/.log/access_log common env=!SVN-ACTION
 CustomLog C:/home/svn/.log/svn_access_log svn env=SVN-ACTION

 IfModule rewrite_module
some rewrite rules, they are convoluted and pretty much meaningless
 /IfModule

 Location /
#AllowOverride Limit AuthConfig
#Options None
 Order allow,deny
 Allow from 192.168.1.10

 IfModule dav_svn_module
 DAV svn
 SVNParentPath C:/home/svn
 /IfModule

 IfModule sspi_auth_module
 Allow from all

 AuthName Subversion repository
 AuthType SSPI
 SSPIAuth On
 SSPIAuthoritative On
 SSPIOfferBasic On
 SSPIOmitDomain On
 SSPIUsernameCase lower
 SSPIBasicPreferred Off

 # only developers may access the repository
 Require group DAEMON1\CVS

 # And they should obey to SVN user permissions file
 IfModule authz_svn_module
 AuthzSVNAccessFile C:/home/svn/.registry
 /IfModule
 /IfModule
 /Location
/VirtualHost


Everything works fine, when I operate with small files.
But once I start submittings megabytes of data (~500 files, ~10Mb size total),
Subversion start to break on authorization, randomly asking for password or
username, again and again.

I don't quite know, if it is specific to your builds, or is a bug in
Subversion. I'll be glad to present any additional info.


--
WBR,
  Andrey Repin (anrdae...@freemail.ru) 24.10.2010,21:54

Sorry for my terrible english...


Hi Andrey

I have no problem committing several hundreds om MB.
I got no possibility to test with SSPI authentication though. Can you 
test without it and see if it works?


/David



RE: Subversion 1.6.13 Released

2010-10-07 Thread Cooke, Mark
 -Original Message-
 From: David Darj [mailto:z...@alagazam.net] 
 Sent: 06 October 2010 19:14
 To: Subversion Development; users; announce
 Subject: Re: Subversion 1.6.13 Released
 
 
   I'm happy to announce my release of Subversion 1.6.13 Win32 
 binaries and installer
 
 They are available at my website:http://alagazam.net
 and also on SourceForge: http://sourceforge.net/projects/win32svn/
 

Thanks very much (again) for these!  So far all is working fine.

~ mark c


Re: Subversion 1.6.13 Released

2010-10-06 Thread David Darj
 I'm happy to announce my release of Subversion 1.6.13 Win32 binaries 
and installer


They are available at my website:http://alagazam.net
and also on SourceForge: http://sourceforge.net/projects/win32svn/


Release notes for the 1.6.x release series may be found at:

http://subversion.apache.org/docs/release-notes/1.6.html

You can find the list of changes between 1.6.13 and earlier versions at:

http://svn.apache.org/repos/asf/subversion/tags/1.6.13/CHANGES

Questions, comments, and bug reports to us...@subversion.apache.org.

Regards,

David Darj
http://alagazam.net






Re: Subversion 1.6.13 Released

2010-10-04 Thread Thorsten Schöning
Guten Tag Nico Kadel-Garcia,
am Sonntag, 3. Oktober 2010 um 06:05 schrieben Sie:

 Do you have some reason to want to do it under Windows, besides
 personal familiarity?

I for example just started with Windows and have Bugzilla and
Subversion running on Windows integrated by using SCMBug. Windows
binaries for subversion just make the life a bit easier. In my
opinion it's no real solution to advise a virtual machine, there's a
lot of overhead in running and supporting an linux for just one
application. Patches, Backups etc. are just some.

Mit freundlichen Grüßen,

Thorsten Schöning

-- 
Thorsten Schöning
AM-SoFT IT-Systeme - Hameln | Potsdam | Leipzig
 
Telefon: Potsdam: 0331-743881-0
E-Mail:  tschoen...@am-soft.de
Web: http://www.am-soft.de

AM-SoFT GmbH IT-Systeme, Konsumhof 1-5, 14482 Potsdam
Amtsgericht Potsdam HRB 21278 P, Geschäftsführer: Andreas Muchow



Re: Subversion 1.6.13 Released

2010-10-04 Thread Nico Kadel-Garcia
2010/10/4 Thorsten Schöning tschoen...@am-soft.de:
 Guten Tag Nico Kadel-Garcia,
 am Sonntag, 3. Oktober 2010 um 06:05 schrieben Sie:

 Do you have some reason to want to do it under Windows, besides
 personal familiarity?

 I for example just started with Windows and have Bugzilla and
 Subversion running on Windows integrated by using SCMBug. Windows
 binaries for subversion just make the life a bit easier. In my
 opinion it's no real solution to advise a virtual machine, there's a
 lot of overhead in running and supporting an linux for just one
 application. Patches, Backups etc. are just some.

There's real value in working with familiar tools, certainly. But for
a single purpose service, such as Subversion, it's possible to lock
down a single service device far more thoroughly, and have much better
control of when the system gets updated, backed up, etc. And the
filesystem performance of separate storage, such as NFS versus CIFS,
tends to be a lot better. CIFS 2 might address this: I've not had the
chance to try it.


Re: Subversion 1.6.13 Released

2010-10-04 Thread BRM
Why not just install Apache2 on Windows and use the Apache2 DLLs for a WebDAV 
system?
Far easier to manage.

Ben



From: Sjoerd Kivits sjo...@separator-spareparts.de
To: users@subversion.apache.org
Sent: Sat, October 2, 2010 8:36:46 AM
Subject: RE: Subversion 1.6.13 Released

 RE: Subversion 1.6.13 Released 

Hi,

Is it possible to download windows binaries for subversion server somewhere?
I could only find packages including apache and so on...

Brg,

Sjoerd

-Oorspronkelijk bericht-
Van: hy...@hyrumwright.org namens Hyrum Wright
Verzonden: vr 1-10-2010 19:12
Aan: announce
Onderwerp: Subversion 1.6.13 Released

I'm happy to announce Subversion 1.6.13, available from:

http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2
http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz
http://subversion.tigris.org/downloads/subversion-1.6.13.zip
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip

This is a bugfix release, part of the 1.6.x release series.  Of note, this
release includes a fix which addresses CVE-2010-3315, a security issue when
using 'SVNPathAuthz short_circuit'.  More information can be found here:
http://subversion.apache.org/security/CVE-2010-3315-advisory.txt

The MD5 checksums are:

7ae1c827689f21cf975804005be30aeb  subversion-1.6.13.tar.bz2
8451f5d771edc0a0302bd9a52d54e150  subversion-1.6.13.tar.gz
dd4009b239a5354b434e5f66cddde145  subversion-1.6.13.zip
2a7d662bac872c61a5e11c89263d7f07  subversion-deps-1.6.13.tar.bz2
688bdb107731f9db2f3b6297b663a68d  subversion-deps-1.6.13.tar.gz
bb960d37f835e5e556e23e4eb85a9b08  subversion-deps-1.6.13.zip

The SHA1 checksums are:

185efd129c3c4b04f1544d62bb9a3fcd0f58ba29  subversion-1.6.13.tar.bz2
06d3afc49182c80ea712c13409c008d27a4e889b  subversion-1.6.13.tar.gz
6530528fae0335cd8495ebf1f2072e2dd9df2e31  subversion-1.6.13.zip
e51bffda416a3a9abe068aab6f90d174dedef352  subversion-deps-1.6.13.tar.bz2
1faa5ba0c87210f534ed445d061e4955396524d4  subversion-deps-1.6.13.tar.gz
945ef9f68998aedf320af50d220e47a470684a06  subversion-deps-1.6.13.zip

PGP Signatures are available at:

http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2.asc
http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz.asc
http://subversion.tigris.org/downloads/subversion-1.6.13.zip.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip.asc

For this release, the following people have provided PGP signatures:

   Senthil Kumaran S [1024D/6CCD4038] with fingerprint:
8035 16A5 1D6E 50E2 1ECD  DE56 F68D 46FB 6CCD 4038
   Philip Martin [2048R/ED1A599C] with fingerprint:
A844 790F B574 3606 EE95  9207 76D7 88E1 ED1A 599C
   Paul T. Burba [1024D/53FCDC55] with fingerprint:
E630 CF54 792C F913 B13C  32C5 D916 8930 53FC DC55
   Julian Foad [1024D/353E25BC] with fingerprint:
6604 5A4B 43BC F994   5728 351F 33E4 353E 25BC
   Bert Huijben [1024D/9821F7B2] with fingerprint:
2017 F51A 2572 0E78 8827  5329 FCFD 6305 9821 F7B2
   Hyrum K. Wright [1024D/4E24517C] with fingerprint:
3324 80DA 0F8C A37D AEE6  D084 0B03 AE6E 4E24 517C
   Stefan Sperling [1024D/F59D25F0] with fingerprint:
B1CF 1060 A1E9 34D1 9E86  D6D6 E5D3 0273 F59D 25F0
   Mark Phippard [1024D/035A96A9] with fingerprint:
D315 89DB E1C1 E9BA D218  39FD 265D F8A0 035A 96A9

Release notes for the 1.6.x release series may be found at:

http://subversion.apache.org/docs/release-notes/1.6.html

You can find the list of changes between 1.6.13 and earlier versions at:

http://svn.apache.org/repos/asf/subversion/tags/1.6.13/CHANGES

Questions, comments, and bug reports to us...@subversion.apache.org.

Thanks,
- The Subversion Team


 

Re: Subversion 1.6.13 Released

2010-10-03 Thread David Darj

 You can get my build on http://alagazam.net

/David

On 2010-10-02 14:36, Sjoerd Kivits wrote:


Hi,

Is it possible to download windows binaries for subversion server 
somewhere?

I could only find packages including apache and so on...

Brg,

Sjoerd

-Oorspronkelijk bericht-
Van: hy...@hyrumwright.org namens Hyrum Wright
Verzonden: vr 1-10-2010 19:12
Aan: announce
Onderwerp: Subversion 1.6.13 Released

I'm happy to announce Subversion 1.6.13, available from:

http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2
http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz
http://subversion.tigris.org/downloads/subversion-1.6.13.zip
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip

This is a bugfix release, part of the 1.6.x release series.  Of note, this
release includes a fix which addresses CVE-2010-3315, a security issue 
when

using 'SVNPathAuthz short_circuit'.  More information can be found here:
http://subversion.apache.org/security/CVE-2010-3315-advisory.txt

The MD5 checksums are:

7ae1c827689f21cf975804005be30aeb  subversion-1.6.13.tar.bz2
8451f5d771edc0a0302bd9a52d54e150  subversion-1.6.13.tar.gz
dd4009b239a5354b434e5f66cddde145  subversion-1.6.13.zip
2a7d662bac872c61a5e11c89263d7f07  subversion-deps-1.6.13.tar.bz2
688bdb107731f9db2f3b6297b663a68d  subversion-deps-1.6.13.tar.gz
bb960d37f835e5e556e23e4eb85a9b08  subversion-deps-1.6.13.zip

The SHA1 checksums are:

185efd129c3c4b04f1544d62bb9a3fcd0f58ba29  subversion-1.6.13.tar.bz2
06d3afc49182c80ea712c13409c008d27a4e889b  subversion-1.6.13.tar.gz
6530528fae0335cd8495ebf1f2072e2dd9df2e31  subversion-1.6.13.zip
e51bffda416a3a9abe068aab6f90d174dedef352  
subversion-deps-1.6.13.tar.bz2
1faa5ba0c87210f534ed445d061e4955396524d4  
subversion-deps-1.6.13.tar.gz

945ef9f68998aedf320af50d220e47a470684a06  subversion-deps-1.6.13.zip

PGP Signatures are available at:

http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2.asc
http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz.asc
http://subversion.tigris.org/downloads/subversion-1.6.13.zip.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip.asc

For this release, the following people have provided PGP signatures:

   Senthil Kumaran S [1024D/6CCD4038] with fingerprint:
8035 16A5 1D6E 50E2 1ECD  DE56 F68D 46FB 6CCD 4038
   Philip Martin [2048R/ED1A599C] with fingerprint:
A844 790F B574 3606 EE95  9207 76D7 88E1 ED1A 599C
   Paul T. Burba [1024D/53FCDC55] with fingerprint:
E630 CF54 792C F913 B13C  32C5 D916 8930 53FC DC55
   Julian Foad [1024D/353E25BC] with fingerprint:
6604 5A4B 43BC F994   5728 351F 33E4 353E 25BC
   Bert Huijben [1024D/9821F7B2] with fingerprint:
2017 F51A 2572 0E78 8827  5329 FCFD 6305 9821 F7B2
   Hyrum K. Wright [1024D/4E24517C] with fingerprint:
3324 80DA 0F8C A37D AEE6  D084 0B03 AE6E 4E24 517C
   Stefan Sperling [1024D/F59D25F0] with fingerprint:
B1CF 1060 A1E9 34D1 9E86  D6D6 E5D3 0273 F59D 25F0
   Mark Phippard [1024D/035A96A9] with fingerprint:
D315 89DB E1C1 E9BA D218  39FD 265D F8A0 035A 96A9

Release notes for the 1.6.x release series may be found at:

http://subversion.apache.org/docs/release-notes/1.6.html

You can find the list of changes between 1.6.13 and earlier versions at:

http://svn.apache.org/repos/asf/subversion/tags/1.6.13/CHANGES

Questions, comments, and bug reports to us...@subversion.apache.org.

Thanks,
- The Subversion Team






Re: Subversion 1.6.13 Released

2010-10-03 Thread Itamar O
On Sun, Oct 3, 2010 at 10:11 AM, David Darj z...@alagazam.net wrote:

  You can get my build on http://alagazam.net

 /David


David,
Thanks for the binaries.
Any chance you get build also x64 packages?
(especially bindings and .so modules)

Thanks,
Itamar.



 On 2010-10-02 14:36, Sjoerd Kivits wrote:


 Hi,

 Is it possible to download windows binaries for subversion server
 somewhere?
 I could only find packages including apache and so on...

 Brg,

 Sjoerd

 -Oorspronkelijk bericht-
 Van: hy...@hyrumwright.org namens Hyrum Wright
 Verzonden: vr 1-10-2010 19:12
 Aan: announce
 Onderwerp: Subversion 1.6.13 Released

 I'm happy to announce Subversion 1.6.13, available from:

 http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2
 http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz
 http://subversion.tigris.org/downloads/subversion-1.6.13.zip
 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2
 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz
 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip

 This is a bugfix release, part of the 1.6.x release series.  Of note, this
 release includes a fix which addresses CVE-2010-3315, a security issue when
 using 'SVNPathAuthz short_circuit'.  More information can be found here:
 http://subversion.apache.org/security/CVE-2010-3315-advisory.txt

 The MD5 checksums are:

 7ae1c827689f21cf975804005be30aeb  subversion-1.6.13.tar.bz2
 8451f5d771edc0a0302bd9a52d54e150  subversion-1.6.13.tar.gz
 dd4009b239a5354b434e5f66cddde145  subversion-1.6.13.zip
 2a7d662bac872c61a5e11c89263d7f07  subversion-deps-1.6.13.tar.bz2
 688bdb107731f9db2f3b6297b663a68d  subversion-deps-1.6.13.tar.gz
 bb960d37f835e5e556e23e4eb85a9b08  subversion-deps-1.6.13.zip

 The SHA1 checksums are:

 185efd129c3c4b04f1544d62bb9a3fcd0f58ba29  subversion-1.6.13.tar.bz2
 06d3afc49182c80ea712c13409c008d27a4e889b  subversion-1.6.13.tar.gz
 6530528fae0335cd8495ebf1f2072e2dd9df2e31  subversion-1.6.13.zip
 e51bffda416a3a9abe068aab6f90d174dedef352
 subversion-deps-1.6.13.tar.bz2
 1faa5ba0c87210f534ed445d061e4955396524d4  subversion-deps-1.6.13.tar.gz
 945ef9f68998aedf320af50d220e47a470684a06  subversion-deps-1.6.13.zip

 PGP Signatures are available at:

 http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2.asc
 http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz.asc
 http://subversion.tigris.org/downloads/subversion-1.6.13.zip.asc

 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2.asc

 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz.asc
 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip.asc

 For this release, the following people have provided PGP signatures:

Senthil Kumaran S [1024D/6CCD4038] with fingerprint:
 8035 16A5 1D6E 50E2 1ECD  DE56 F68D 46FB 6CCD 4038
Philip Martin [2048R/ED1A599C] with fingerprint:
 A844 790F B574 3606 EE95  9207 76D7 88E1 ED1A 599C
Paul T. Burba [1024D/53FCDC55] with fingerprint:
 E630 CF54 792C F913 B13C  32C5 D916 8930 53FC DC55
Julian Foad [1024D/353E25BC] with fingerprint:
 6604 5A4B 43BC F994   5728 351F 33E4 353E 25BC
Bert Huijben [1024D/9821F7B2] with fingerprint:
 2017 F51A 2572 0E78 8827  5329 FCFD 6305 9821 F7B2
Hyrum K. Wright [1024D/4E24517C] with fingerprint:
 3324 80DA 0F8C A37D AEE6  D084 0B03 AE6E 4E24 517C
Stefan Sperling [1024D/F59D25F0] with fingerprint:
 B1CF 1060 A1E9 34D1 9E86  D6D6 E5D3 0273 F59D 25F0
Mark Phippard [1024D/035A96A9] with fingerprint:
 D315 89DB E1C1 E9BA D218  39FD 265D F8A0 035A 96A9

 Release notes for the 1.6.x release series may be found at:

 http://subversion.apache.org/docs/release-notes/1.6.html

 You can find the list of changes between 1.6.13 and earlier versions at:

 http://svn.apache.org/repos/asf/subversion/tags/1.6.13/CHANGES

 Questions, comments, and bug reports to us...@subversion.apache.org.

 Thanks,
 - The Subversion Team






Re: Subversion 1.6.13 Released

2010-10-03 Thread David Darj

 On 2010-10-03 20:03, Itamar O wrote:
On Sun, Oct 3, 2010 at 10:11 AM, David Darj z...@alagazam.net 
mailto:z...@alagazam.net wrote:


You can get my build on http://alagazam.net

/David


David,
Thanks for the binaries.
Any chance you get build also x64 packages?
(especially bindings and .so modules)

Thanks,
Itamar.


Sorry...but I havn't even tried building x64 packages.
Maybe some time in the future I give it a try..but for now my spare time 
doesn't allow it.


/David


Re: Subversion 1.6.13 Released

2010-10-03 Thread Nico Kadel-Garcia
On Sun, Oct 3, 2010 at 2:03 PM, Itamar O itamar...@gmail.com wrote:
 On Sun, Oct 3, 2010 at 10:11 AM, David Darj z...@alagazam.net wrote:

 You can get my build on http://alagazam.net

 /David

 David,
 Thanks for the binaries.
 Any chance you get build also x64 packages?
 (especially bindings and .so modules)

 Thanks,
 Itamar.

Good. I requested that RPMforge update a day or two ago, and they're
available at RPMforge for RHEL 5: the dependency chain has become too
large and awkward for RHEL 4 to continue trying to backport it to an
OS 5 years old. Note that if you use RPMforge and have a system that's
installed with x86_64 RHEL, you'll wnat to remove the i386 versions of
subversion before trying to upgrade with RPMforge, because RPMforge
doesn't follow RedHat's practice of providing both i386 and x86_64
unnecessarily in the x86_64 repository. If you don't do this, the
conflict between RedHat's last i386 version, which 1.4.x based, will
cause weird conflicts with the x86_64, 1.6.13 release published last
night.

Anyone using Subversion on RHEL, I urge you to make sure you've
updated to RHEL 5 and to use the RPMforge repository. RedHat has no
intentions of upgrading their subversion on the older releases, and
the updates are well worth the effort for performance and security
reasons, and for compatibility of Samba shared working copies with
TortoiseSVN.


RE: Subversion 1.6.13 Released

2010-10-02 Thread Sjoerd Kivits

Hi,

Is it possible to download windows binaries for subversion server somewhere?
I could only find packages including apache and so on...

Brg,

Sjoerd

-Oorspronkelijk bericht-
Van: hy...@hyrumwright.org namens Hyrum Wright
Verzonden: vr 1-10-2010 19:12
Aan: announce
Onderwerp: Subversion 1.6.13 Released
 
I'm happy to announce Subversion 1.6.13, available from:

http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2
http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz
http://subversion.tigris.org/downloads/subversion-1.6.13.zip
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip

This is a bugfix release, part of the 1.6.x release series.  Of note, this
release includes a fix which addresses CVE-2010-3315, a security issue when
using 'SVNPathAuthz short_circuit'.  More information can be found here:
http://subversion.apache.org/security/CVE-2010-3315-advisory.txt

The MD5 checksums are:

7ae1c827689f21cf975804005be30aeb  subversion-1.6.13.tar.bz2
8451f5d771edc0a0302bd9a52d54e150  subversion-1.6.13.tar.gz
dd4009b239a5354b434e5f66cddde145  subversion-1.6.13.zip
2a7d662bac872c61a5e11c89263d7f07  subversion-deps-1.6.13.tar.bz2
688bdb107731f9db2f3b6297b663a68d  subversion-deps-1.6.13.tar.gz
bb960d37f835e5e556e23e4eb85a9b08  subversion-deps-1.6.13.zip

The SHA1 checksums are:

185efd129c3c4b04f1544d62bb9a3fcd0f58ba29  subversion-1.6.13.tar.bz2
06d3afc49182c80ea712c13409c008d27a4e889b  subversion-1.6.13.tar.gz
6530528fae0335cd8495ebf1f2072e2dd9df2e31  subversion-1.6.13.zip
e51bffda416a3a9abe068aab6f90d174dedef352  subversion-deps-1.6.13.tar.bz2
1faa5ba0c87210f534ed445d061e4955396524d4  subversion-deps-1.6.13.tar.gz
945ef9f68998aedf320af50d220e47a470684a06  subversion-deps-1.6.13.zip

PGP Signatures are available at:

http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2.asc
http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz.asc
http://subversion.tigris.org/downloads/subversion-1.6.13.zip.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip.asc

For this release, the following people have provided PGP signatures:

   Senthil Kumaran S [1024D/6CCD4038] with fingerprint:
8035 16A5 1D6E 50E2 1ECD  DE56 F68D 46FB 6CCD 4038
   Philip Martin [2048R/ED1A599C] with fingerprint:
A844 790F B574 3606 EE95  9207 76D7 88E1 ED1A 599C
   Paul T. Burba [1024D/53FCDC55] with fingerprint:
E630 CF54 792C F913 B13C  32C5 D916 8930 53FC DC55
   Julian Foad [1024D/353E25BC] with fingerprint:
6604 5A4B 43BC F994   5728 351F 33E4 353E 25BC
   Bert Huijben [1024D/9821F7B2] with fingerprint:
2017 F51A 2572 0E78 8827  5329 FCFD 6305 9821 F7B2
   Hyrum K. Wright [1024D/4E24517C] with fingerprint:
3324 80DA 0F8C A37D AEE6  D084 0B03 AE6E 4E24 517C
   Stefan Sperling [1024D/F59D25F0] with fingerprint:
B1CF 1060 A1E9 34D1 9E86  D6D6 E5D3 0273 F59D 25F0
   Mark Phippard [1024D/035A96A9] with fingerprint:
D315 89DB E1C1 E9BA D218  39FD 265D F8A0 035A 96A9

Release notes for the 1.6.x release series may be found at:

http://subversion.apache.org/docs/release-notes/1.6.html

You can find the list of changes between 1.6.13 and earlier versions at:

http://svn.apache.org/repos/asf/subversion/tags/1.6.13/CHANGES

Questions, comments, and bug reports to us...@subversion.apache.org.

Thanks,
- The Subversion Team




Re: Subversion 1.6.13 Released

2010-10-02 Thread Nico Kadel-Garcia
On Sat, Oct 2, 2010 at 8:36 AM, Sjoerd Kivits
sjo...@separator-spareparts.de wrote:

 Hi,

 Is it possible to download windows binaries for subversion server somewhere?
 I could only find packages including apache and so on...

CygWin includes the necessary tools for both the repositories and the
services, although I'd be very cautious about handling of case on
Windows based filesystems under CygWin.

In fact, a light Linux environment is so cheap and so lightweight,
that running one solely for Subversion access, even in a virtual
instance, seems quite reasonable.

Do you have some reason to want to do it under Windows, besides
personal familiarity?


Re: Subversion 1.6.13 Released

2010-10-02 Thread Daniel Becroft
On Sat, Oct 2, 2010 at 10:36 PM, Sjoerd Kivits 
sjo...@separator-spareparts.de wrote:


 Hi,

 Is it possible to download windows binaries for subversion server
 somewhere?
 I could only find packages including apache and so on...

 Brg,

 Sjoerd

I get mine from SlikSVN (http://www.sliksvn.com/en/home/). They might take a
little while until the new installer is put up.

Cheers,
Daniel B.

-Oorspronkelijk bericht-
 Van: hy...@hyrumwright.org namens Hyrum Wright
 Verzonden: vr 1-10-2010 19:12
 Aan: announce
 Onderwerp: Subversion 1.6.13 Released


 I'm happy to announce Subversion 1.6.13, available from:

 http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2
 http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz
 http://subversion.tigris.org/downloads/subversion-1.6.13.zip
 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2
 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz
 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip

 This is a bugfix release, part of the 1.6.x release series.  Of note, this
 release includes a fix which addresses CVE-2010-3315, a security issue when
 using 'SVNPathAuthz short_circuit'.  More information can be found here:
 http://subversion.apache.org/security/CVE-2010-3315-advisory.txt

 The MD5 checksums are:

 7ae1c827689f21cf975804005be30aeb  subversion-1.6.13.tar.bz2
 8451f5d771edc0a0302bd9a52d54e150  subversion-1.6.13.tar.gz
 dd4009b239a5354b434e5f66cddde145  subversion-1.6.13.zip
 2a7d662bac872c61a5e11c89263d7f07  subversion-deps-1.6.13.tar.bz2
 688bdb107731f9db2f3b6297b663a68d  subversion-deps-1.6.13.tar.gz
 bb960d37f835e5e556e23e4eb85a9b08  subversion-deps-1.6.13.zip

 The SHA1 checksums are:

 185efd129c3c4b04f1544d62bb9a3fcd0f58ba29  subversion-1.6.13.tar.bz2
 06d3afc49182c80ea712c13409c008d27a4e889b  subversion-1.6.13.tar.gz
 6530528fae0335cd8495ebf1f2072e2dd9df2e31  subversion-1.6.13.zip
 e51bffda416a3a9abe068aab6f90d174dedef352
 subversion-deps-1.6.13.tar.bz2
 1faa5ba0c87210f534ed445d061e4955396524d4  subversion-deps-1.6.13.tar.gz
 945ef9f68998aedf320af50d220e47a470684a06  subversion-deps-1.6.13.zip

 PGP Signatures are available at:

 http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2.asc
 http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz.asc
 http://subversion.tigris.org/downloads/subversion-1.6.13.zip.asc

 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2.asc

 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz.asc
 http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip.asc

 For this release, the following people have provided PGP signatures:

Senthil Kumaran S [1024D/6CCD4038] with fingerprint:
 8035 16A5 1D6E 50E2 1ECD  DE56 F68D 46FB 6CCD 4038
Philip Martin [2048R/ED1A599C] with fingerprint:
 A844 790F B574 3606 EE95  9207 76D7 88E1 ED1A 599C
Paul T. Burba [1024D/53FCDC55] with fingerprint:
 E630 CF54 792C F913 B13C  32C5 D916 8930 53FC DC55
Julian Foad [1024D/353E25BC] with fingerprint:
 6604 5A4B 43BC F994   5728 351F 33E4 353E 25BC
Bert Huijben [1024D/9821F7B2] with fingerprint:
 2017 F51A 2572 0E78 8827  5329 FCFD 6305 9821 F7B2
Hyrum K. Wright [1024D/4E24517C] with fingerprint:
 3324 80DA 0F8C A37D AEE6  D084 0B03 AE6E 4E24 517C
Stefan Sperling [1024D/F59D25F0] with fingerprint:
 B1CF 1060 A1E9 34D1 9E86  D6D6 E5D3 0273 F59D 25F0
Mark Phippard [1024D/035A96A9] with fingerprint:
 D315 89DB E1C1 E9BA D218  39FD 265D F8A0 035A 96A9

 Release notes for the 1.6.x release series may be found at:

 http://subversion.apache.org/docs/release-notes/1.6.html

 You can find the list of changes between 1.6.13 and earlier versions at:

 http://svn.apache.org/repos/asf/subversion/tags/1.6.13/CHANGES

 Questions, comments, and bug reports to us...@subversion.apache.org.

 Thanks,
 - The Subversion Team





Subversion 1.6.13 Released

2010-10-01 Thread Hyrum K. Wright
[ Please note: I prior version of this mail referred to the incorrect
CVE number. ]

I'm happy to announce Subversion 1.6.13, available from:

http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2
http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz
http://subversion.tigris.org/downloads/subversion-1.6.13.zip
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip

This is a bugfix release, part of the 1.6.x release series.  Of note, this
release includes a fix which addresses CVE-2010-3315, a security issue when
using 'SVNPathAuthz short_circuit'.  More information can be found here:
http://subversion.apache.org/security/CVE-2010-3315-advisory.txt

The MD5 checksums are:

7ae1c827689f21cf975804005be30aeb  subversion-1.6.13.tar.bz2
8451f5d771edc0a0302bd9a52d54e150  subversion-1.6.13.tar.gz
dd4009b239a5354b434e5f66cddde145  subversion-1.6.13.zip
2a7d662bac872c61a5e11c89263d7f07  subversion-deps-1.6.13.tar.bz2
688bdb107731f9db2f3b6297b663a68d  subversion-deps-1.6.13.tar.gz
bb960d37f835e5e556e23e4eb85a9b08  subversion-deps-1.6.13.zip

The SHA1 checksums are:

185efd129c3c4b04f1544d62bb9a3fcd0f58ba29  subversion-1.6.13.tar.bz2
06d3afc49182c80ea712c13409c008d27a4e889b  subversion-1.6.13.tar.gz
6530528fae0335cd8495ebf1f2072e2dd9df2e31  subversion-1.6.13.zip
e51bffda416a3a9abe068aab6f90d174dedef352  subversion-deps-1.6.13.tar.bz2
1faa5ba0c87210f534ed445d061e4955396524d4  subversion-deps-1.6.13.tar.gz
945ef9f68998aedf320af50d220e47a470684a06  subversion-deps-1.6.13.zip

PGP Signatures are available at:

http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2.asc
http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz.asc
http://subversion.tigris.org/downloads/subversion-1.6.13.zip.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.gz.asc
http://subversion.tigris.org/downloads/subversion-deps-1.6.13.zip.asc

For this release, the following people have provided PGP signatures:

   Senthil Kumaran S [1024D/6CCD4038] with fingerprint:
8035 16A5 1D6E 50E2 1ECD  DE56 F68D 46FB 6CCD 4038
   Philip Martin [2048R/ED1A599C] with fingerprint:
A844 790F B574 3606 EE95  9207 76D7 88E1 ED1A 599C
   Paul T. Burba [1024D/53FCDC55] with fingerprint:
E630 CF54 792C F913 B13C  32C5 D916 8930 53FC DC55
   Julian Foad [1024D/353E25BC] with fingerprint:
6604 5A4B 43BC F994   5728 351F 33E4 353E 25BC
   Bert Huijben [1024D/9821F7B2] with fingerprint:
2017 F51A 2572 0E78 8827  5329 FCFD 6305 9821 F7B2
   Hyrum K. Wright [1024D/4E24517C] with fingerprint:
3324 80DA 0F8C A37D AEE6  D084 0B03 AE6E 4E24 517C
   Stefan Sperling [1024D/F59D25F0] with fingerprint:
B1CF 1060 A1E9 34D1 9E86  D6D6 E5D3 0273 F59D 25F0
   Mark Phippard [1024D/035A96A9] with fingerprint:
D315 89DB E1C1 E9BA D218  39FD 265D F8A0 035A 96A9

Release notes for the 1.6.x release series may be found at:

http://subversion.apache.org/docs/release-notes/1.6.html

You can find the list of changes between 1.6.13 and earlier versions at:

http://svn.apache.org/repos/asf/subversion/tags/1.6.13/CHANGES

Questions, comments, and bug reports to us...@subversion.apache.org.

Thanks,
- The Subversion Team


RE: Subversion 1.6.13 Released

2010-10-01 Thread Bob Archer
Is 3242 actually included in this? The release notes show:

* permissions fixes when doing reintegrate merges (related to issue #3242)

but doesn't actually list Subversion demands unnecessary access to parent 
directories of operations in the list. (#3242) The tracker shows 1.6.13 was 
the target milestone.

BOb


 -Original Message-
 From: hy...@hyrumwright.org [mailto:hy...@hyrumwright.org] On
 Behalf Of Hyrum K. Wright
 Sent: Friday, October 01, 2010 1:08 PM
 To: Subversion Development; users; announce
 Subject: Subversion 1.6.13 Released
 
 [ Please note: I prior version of this mail referred to the
 incorrect
 CVE number. ]
 
 I'm happy to announce Subversion 1.6.13, available from:
 
 http://subversion.tigris.org/downloads/subversion-
 1.6.13.tar.bz2
 http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz
 http://subversion.tigris.org/downloads/subversion-1.6.13.zip
 http://subversion.tigris.org/downloads/subversion-deps-
 1.6.13.tar.bz2
 http://subversion.tigris.org/downloads/subversion-deps-
 1.6.13.tar.gz
 http://subversion.tigris.org/downloads/subversion-deps-
 1.6.13.zip
 
 This is a bugfix release, part of the 1.6.x release series.  Of
 note, this
 release includes a fix which addresses CVE-2010-3315, a security
 issue when
 using 'SVNPathAuthz short_circuit'.  More information can be found
 here:
 http://subversion.apache.org/security/CVE-2010-3315-advisory.txt
 
 The MD5 checksums are:
 
 7ae1c827689f21cf975804005be30aeb  subversion-1.6.13.tar.bz2
 8451f5d771edc0a0302bd9a52d54e150  subversion-1.6.13.tar.gz
 dd4009b239a5354b434e5f66cddde145  subversion-1.6.13.zip
 2a7d662bac872c61a5e11c89263d7f07  subversion-deps-
 1.6.13.tar.bz2
 688bdb107731f9db2f3b6297b663a68d  subversion-deps-1.6.13.tar.gz
 bb960d37f835e5e556e23e4eb85a9b08  subversion-deps-1.6.13.zip
 
 The SHA1 checksums are:
 
 185efd129c3c4b04f1544d62bb9a3fcd0f58ba29  subversion-
 1.6.13.tar.bz2
 06d3afc49182c80ea712c13409c008d27a4e889b  subversion-
 1.6.13.tar.gz
 6530528fae0335cd8495ebf1f2072e2dd9df2e31  subversion-1.6.13.zip
 e51bffda416a3a9abe068aab6f90d174dedef352  subversion-deps-
 1.6.13.tar.bz2
 1faa5ba0c87210f534ed445d061e4955396524d4  subversion-deps-
 1.6.13.tar.gz
 945ef9f68998aedf320af50d220e47a470684a06  subversion-deps-
 1.6.13.zip
 
 PGP Signatures are available at:
 
 http://subversion.tigris.org/downloads/subversion-
 1.6.13.tar.bz2.asc
 http://subversion.tigris.org/downloads/subversion-
 1.6.13.tar.gz.asc
 http://subversion.tigris.org/downloads/subversion-
 1.6.13.zip.asc
 http://subversion.tigris.org/downloads/subversion-deps-
 1.6.13.tar.bz2.asc
 http://subversion.tigris.org/downloads/subversion-deps-
 1.6.13.tar.gz.asc
 http://subversion.tigris.org/downloads/subversion-deps-
 1.6.13.zip.asc
 
 For this release, the following people have provided PGP
 signatures:
 
Senthil Kumaran S [1024D/6CCD4038] with fingerprint:
 8035 16A5 1D6E 50E2 1ECD  DE56 F68D 46FB 6CCD 4038
Philip Martin [2048R/ED1A599C] with fingerprint:
 A844 790F B574 3606 EE95  9207 76D7 88E1 ED1A 599C
Paul T. Burba [1024D/53FCDC55] with fingerprint:
 E630 CF54 792C F913 B13C  32C5 D916 8930 53FC DC55
Julian Foad [1024D/353E25BC] with fingerprint:
 6604 5A4B 43BC F994   5728 351F 33E4 353E 25BC
Bert Huijben [1024D/9821F7B2] with fingerprint:
 2017 F51A 2572 0E78 8827  5329 FCFD 6305 9821 F7B2
Hyrum K. Wright [1024D/4E24517C] with fingerprint:
 3324 80DA 0F8C A37D AEE6  D084 0B03 AE6E 4E24 517C
Stefan Sperling [1024D/F59D25F0] with fingerprint:
 B1CF 1060 A1E9 34D1 9E86  D6D6 E5D3 0273 F59D 25F0
Mark Phippard [1024D/035A96A9] with fingerprint:
 D315 89DB E1C1 E9BA D218  39FD 265D F8A0 035A 96A9
 
 Release notes for the 1.6.x release series may be found at:
 
 http://subversion.apache.org/docs/release-notes/1.6.html
 
 You can find the list of changes between 1.6.13 and earlier
 versions at:
 
 http://svn.apache.org/repos/asf/subversion/tags/1.6.13/CHANGES
 
 Questions, comments, and bug reports to
 us...@subversion.apache.org.
 
 Thanks,
 - The Subversion Team


Re: Subversion 1.6.13 Released

2010-10-01 Thread Mark Phippard
On Fri, Oct 1, 2010 at 1:54 PM, Bob Archer bob.arc...@amsi.com wrote:
 Is 3242 actually included in this? The release notes show:

 * permissions fixes when doing reintegrate merges (related to issue #3242)

 but doesn't actually list Subversion demands unnecessary access to parent 
 directories of
 operations in the list. (#3242) The tracker shows 1.6.13 was the target 
 milestone.

Hasn't 3242 become a bit of a catch-all issue whenever we find
occurrences of this class of problem?  I recall the original fixes
came a couple 1.6.x releases ago and this was just another one.


-- 
Thanks

Mark Phippard
http://markphip.blogspot.com/