Skip to content

Commit

Permalink
Invenio-Search v0.1.4
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Kuncar <jiri.kuncar@cern.ch>
  • Loading branch information
jirikuncar committed Oct 2, 2015
1 parent e0e4833 commit b9525e1
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 25 deletions.
33 changes: 30 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,58 @@
Changes
=======

Version 0.1.4 (released 2015-10-02)
-----------------------------------

Incompatible changes
~~~~~~~~~~~~~~~~~~~~

- Removes search service plugins that are going to be re-implemented
using the new API. (#17) (addresses inveniosoftware/invenio#3233)
(#13)

Bug fixes
~~~~~~~~~

- Upgrades the minimum versions for invenio-base, invenio-ext,
invenio-query-parser, invenio-utils, invenio-upgrader and invenio-
testing.
- Removes dependencies to invenio.testsuite and replaces them with
invenio_testing.
- Removes dependencies to invenio.utils and replaces them with
invenio_utils.
- Removes dependencies to invenio.ext and replaces them with
invenio_ext.
- Removes calls to PluginManager consider_setuptools_entrypoints()
which was removed in PyTest 2.8.0.
- Adds missing `invenio_base` dependency.

Version 0.1.3 (released 2015-09-04)
-----------------------------------

- Fixes potential XSS issues by changing search flash messages
template so that they are not displayed as safe HTML by default.

- Adds missing `invenio_access` dependency and amends past upgrade
recipes following its separation into standalone package.

- Displaying HTML safe flash messages can be done by using one of
these flash contexts: 'search-results-after(html_safe)', 'websearch-
after-search-form(html_safe)' instead of the standard ones (which
are the same without '(html safe)' at the end).

Version 0.1.2 (released 2015-08-28)
-----------------------------------

- Adds missing invenio-knowledge dependency and updates module
imports.

Version 0.1.1 (released 2015-08-25)
-----------------------------------

- Adds missing `invenio_upgrader` dependency following its separation
into standalone package.

- Fixes import of invenio_upgrader.

Version 0.1.0 (released 2015-08-19)
-----------------------------------

- Initial public release.
39 changes: 21 additions & 18 deletions RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=======================
Invenio-Search v0.1.3
Invenio-Search v0.1.4
=======================

Invenio-Search v0.1.3 was released on September 4, 2015.
Invenio-Search v0.1.4 was released on October 2, 2015.

About
-----
Expand All @@ -11,35 +11,38 @@ Invenio module for information retrieval.

*This is an experimental developer preview release.*

Security fixes
--------------
Incompatible changes
--------------------

- Fixes potential XSS issues by changing search flash messages
template so that they are not displayed as safe HTML by default.
- Removes search service plugins that are going to be re-implemented
using the new API. (#17) (addresses inveniosoftware/invenio#3233)
(#13)

Bug fixes
---------

- Adds missing `invenio_access` dependency and amends past upgrade
recipes following its separation into standalone package.

Notes
-----

- Displaying HTML safe flash messages can be done by using one of
these flash contexts: 'search-results-after(html_safe)', 'websearch-
after-search-form(html_safe)' instead of the standard ones (which
are the same without '(html safe)' at the end).
- Upgrades the minimum versions for invenio-base, invenio-ext,
invenio-query-parser, invenio-utils, invenio-upgrader and invenio-
testing.
- Removes dependencies to invenio.testsuite and replaces them with
invenio_testing.
- Removes dependencies to invenio.utils and replaces them with
invenio_utils.
- Removes dependencies to invenio.ext and replaces them with
invenio_ext.
- Removes calls to PluginManager consider_setuptools_entrypoints()
which was removed in PyTest 2.8.0.
- Adds missing `invenio_base` dependency.

Installation
------------

$ pip install invenio-search==0.1.3
$ pip install invenio-search==0.1.4

Documentation
-------------

http://invenio-search.readthedocs.org/en/v0.1.3
http://invenio-search.readthedocs.org/en/v0.1.4

Happy hacking and thanks for flying Invenio-Search.

Expand Down
2 changes: 1 addition & 1 deletion invenio_search/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
and parsed by ``setup.py``.
"""

__version__ = "0.1.4.dev20150904"
__version__ = "0.1.4"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@

requirements = [
'Flask>=0.10.1',
'invenio-access>=0.1.0',
'invenio-access>=0.2.0',
'invenio-accounts>=0.1.2',
'invenio-base>=0.3.0',
'invenio-ext>=0.2.1',
'invenio-formatter>=0.2.1',
'invenio-ext>=0.3.0',
'invenio-formatter>=0.2.2.post1',
'invenio-knowledge>=0.1.0',
'invenio-query-parser>=0.3.0',
'invenio-upgrader>=0.1.2',
Expand Down

0 comments on commit b9525e1

Please sign in to comment.