Skip to content

Commit 4317389

Browse files
committed
Invenio v0.99.5
1 parent c4d7717 commit 4317389

5 files changed

Lines changed: 53 additions & 34 deletions

File tree

ChangeLog

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
CDS Invenio v0.99.5 (released 2012-02-21)
2+
=========================================
3+
4+
2012-02-21 Tibor Simko <tibor.simko@cern.ch>
5+
6+
I18N: update PO files for the release of v0.99.5
7+
8+
2012-02-14 Jerome Caffaro <jerome.caffaro@cern.ch>
9+
10+
WebComment: improve sanity checks
11+
* When reporting, voting, or replying to a comment, or when accessing
12+
comment attachments, ensure that the comment belongs to the given
13+
record and is not deleted. (For example, this prevents malicious
14+
users from attempting to indirectly reach comments in restricted
15+
collections by URL mangling.)
16+
117
CDS Invenio v0.99.4 (released 2011-12-19)
218
=========================================
319

INSTALL

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,13 @@ Contents
183183
----------------
184184

185185
$ cd /usr/local/src/
186-
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz
187-
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.md5
188-
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.sig
189-
$ md5sum -v -c cds-invenio-0.99.4.tar.gz.md5
190-
$ gpg --verify cds-invenio-0.99.4.tar.gz.sig cds-invenio-0.99.4.tar.gz
191-
$ tar xvfz cds-invenio-0.99.4.tar.gz
192-
$ cd cds-invenio-0.99.4
186+
$ wget http://invenio-software.org/download/cds-invenio-0.99.5.tar.gz
187+
$ wget http://invenio-software.org/download/cds-invenio-0.99.5.tar.gz.md5
188+
$ wget http://invenio-software.org/download/cds-invenio-0.99.5.tar.gz.sig
189+
$ md5sum -v -c cds-invenio-0.99.5.tar.gz.md5
190+
$ gpg --verify cds-invenio-0.99.5.tar.gz.sig cds-invenio-0.99.5.tar.gz
191+
$ tar xvfz cds-invenio-0.99.5.tar.gz
192+
$ cd cds-invenio-0.99.5
193193
$ ./configure
194194
$ make
195195
$ make install
@@ -232,20 +232,20 @@ Contents
232232
CDS Invenio. (The built files will be installed into
233233
different "target" directories later.)
234234

235-
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz
236-
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.md5
237-
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.sig
235+
$ wget http://invenio-software.org/download/cds-invenio-0.99.5.tar.gz
236+
$ wget http://invenio-software.org/download/cds-invenio-0.99.5.tar.gz.md5
237+
$ wget http://invenio-software.org/download/cds-invenio-0.99.5.tar.gz.sig
238238

239239
Fetch CDS Invenio source tarball from the CDS Software
240240
Consortium distribution server, together with MD5 checksum
241241
and GnuPG cryptographic signature files useful for verifying
242242
the integrity of the tarball.
243243

244-
$ md5sum -v -c cds-invenio-0.99.4.tar.gz.md5
244+
$ md5sum -v -c cds-invenio-0.99.5.tar.gz.md5
245245

246246
Verify MD5 checksum.
247247

248-
$ gpg --verify cds-invenio-0.99.4.tar.gz.sig cds-invenio-0.99.4.tar.gz
248+
$ gpg --verify cds-invenio-0.99.5.tar.gz.sig cds-invenio-0.99.5.tar.gz
249249

250250
Verify GnuPG cryptographic signature. Note that you may
251251
first have to import my public key into your keyring, if you
@@ -257,11 +257,11 @@ Contents
257257
warning that may follow after the signature has been
258258
successfully verified.
259259

260-
$ tar xvfz cds-invenio-0.99.4.tar.gz
260+
$ tar xvfz cds-invenio-0.99.5.tar.gz
261261

262262
Untar the distribution tarball.
263263

264-
$ cd cds-invenio-0.99.4
264+
$ cd cds-invenio-0.99.5
265265

266266
Go to the source directory.
267267

Makefile.am

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## This file is part of CDS Invenio.
2-
## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 CERN.
2+
## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 CERN.
33
##
44
## CDS Invenio is free software; you can redistribute it and/or
55
## modify it under the terms of the GNU General Public License as
@@ -260,4 +260,7 @@ update-v0.99.2-tables:
260260
update-v0.99.3-tables:
261261
@echo "Nothing to do; table structure did not change between v0.99.3 and v0.99.4."
262262

263+
update-v0.99.4-tables:
264+
@echo "Nothing to do; table structure did not change between v0.99.4 and v0.99.5."
265+
263266
CLEANFILES = *~

NEWS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ releases. For more information about the current release, please
66
consult RELEASE-NOTES. For more information about changes, please
77
consult ChangeLog.
88

9+
CDS Invenio v0.99.5 -- released 2012-02-21
10+
------------------------------------------
11+
12+
*) improved sanity checks when reporting, voting, or replying to a
13+
comment, or when accessing comment attachments, preventing URL
14+
mangling attempts (WebComment)
15+
916
CDS Invenio v0.99.4 -- released 2011-12-19
1017
------------------------------------------
1118

RELEASE-NOTES

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,27 @@
11
--------------------------------------------------------------------
2-
CDS Invenio v0.99.4 is released
3-
December 19, 2011
2+
CDS Invenio v0.99.5 is released
3+
February 21, 2012
44
http://invenio-software.org/
55
--------------------------------------------------------------------
66

7-
CDS Invenio v0.99.4 was released on December 19, 2011.
7+
CDS Invenio v0.99.5 was released on February 21, 2012.
88

99
This is a minor bugfix release only. It is recommended to all CDS
10-
Invenio sites using v0.99.3 or previous releases.
10+
Invenio sites using v0.99.4 or previous releases.
1111

1212
What's new:
1313
-----------
1414

15-
*) fixed double stemming during indexing (BibRank)
16-
17-
*) fixed collection translation in admin UI (WebSearch)
18-
19-
*) fixed UP and DOWN functions for UTF-8 strings (BibConvert)
15+
*) improved sanity checks when reporting, voting, or replying to a
16+
comment, or when accessing comment attachments, preventing URL
17+
mangling attempts (WebComment)
2018

2119
Download:
2220
---------
2321

24-
<http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz>
25-
<http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.md5>
26-
<http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.sig>
22+
<http://invenio-software.org/download/cds-invenio-0.99.5.tar.gz>
23+
<http://invenio-software.org/download/cds-invenio-0.99.5.tar.gz.md5>
24+
<http://invenio-software.org/download/cds-invenio-0.99.5.tar.gz.sig>
2725

2826
Installation notes:
2927
-------------------
@@ -33,24 +31,19 @@ Please follow the INSTALL file bundled in the distribution tarball.
3331
Upgrade notes:
3432
--------------
3533

36-
If you are upgrading from CDS Invenio v0.99.3, then:
34+
If you are upgrading from CDS Invenio v0.99.4, then:
3735

3836
- please stop your bibsched queue and your Apache server
3937

4038
- install the update:
4139

42-
$ cd cds-invenio-0.99.4
40+
$ cd cds-invenio-0.99.5
4341
$ cp -a /opt/cds-invenio/etc /opt/cds-invenio/etc.OLD
4442
$ sh /opt/cds-invenio/etc/build/config.nice
4543
$ make install
4644
$ /opt/cds-invenio/bin/inveniocfg --update-all
4745
$ cp -a /opt/cds-invenio/etc.OLD /opt/cds-invenio/etc
4846

49-
- in order to apply the double-stemming fix for the indexer,
50-
reindexing of those indexes that use stemming is recommended:
51-
52-
$ bibindex -u admin --reindex
53-
5447
- restart your Apache server and your bibsched queue
5548

5649
- you are done

0 commit comments

Comments
 (0)