Skip to content

Commit

Permalink
Release 1.0.3 (210724)
Browse files Browse the repository at this point in the history
  • Loading branch information
xispa committed Jul 24, 2021
1 parent 4256106 commit c7a8ebd
Show file tree
Hide file tree
Showing 51 changed files with 609 additions and 651 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ include LICENSE
include *.rst
include *.md
exclude MANIFEST.in
recursive-include docs *
recursive-exclude static *
recursive-include src/senaite/queue *
recursive-exclude src/senaite/queue *.pyc *.mo
Expand Down
6 changes: 5 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
Changelog
=========

1.0.3 (unreleased)
1.0.3 (2021-07-24)
------------------

- #21 Improve the reindex security objects process
- Skip guard checks when current thread is a consumer
- Make the creation of WS with WST assignment more efficient
- Pin cryptography==3.1.1
- Fix client's queue tasks in "queued" status are not updated when "running"


Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.


Expand Down Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0.2'
version = '1.0.3'
# The full version, including alpha/beta/rc tags.
release = '1.0.2'
release = '1.0.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2018-2019 by it's authors.
# Copyright 2018-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

from setuptools import setup, find_packages
Expand Down Expand Up @@ -49,11 +49,10 @@
include_package_data=True,
zip_safe=False,
install_requires=[
"cryptography==3.1.1",
"setuptools",
"senaite.jsonapi",
"senaite.lims>=1.3.4",
"senaite.lims<2.0.0",
"senaite.lims>=1.3.5",
"senaite.lims<1.4.0",
# cryptography >= 3.4 does not support Python 2.x anymore
"cryptography<3.4",
"requests",
],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

try:
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

import logging
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/adapters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

from Products.Archetypes.interfaces.base import IBaseObject
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/adapters/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

from senaite.queue import api
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/adapters/guards.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

from senaite.queue import api
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/adapters/listing.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

from senaite.core.listing.interfaces import IListingView
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

from Acquisition import aq_base # noqa
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/browser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.
2 changes: 1 addition & 1 deletion src/senaite/queue/browser/controlpanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

import base64
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/browser/viewlets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

import itertools
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/browser/views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.
2 changes: 1 addition & 1 deletion src/senaite/queue/browser/views/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

from operator import itemgetter
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/browser/views/worksheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

from Products.Archetypes.config import REFERENCE_CATALOG
Expand Down
4 changes: 1 addition & 3 deletions src/senaite/queue/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.


# This import is required for registering the routes
from senaite.queue.client import routes
5 changes: 2 additions & 3 deletions src/senaite/queue/client/consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.


import threading
import time
import requests
Expand Down Expand Up @@ -189,4 +188,4 @@ def warn(message):


def error(message):
return msg(message, mode="error")
return msg(message, mode="error")
2 changes: 1 addition & 1 deletion src/senaite/queue/client/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

import time
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/client/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

import copy
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/client/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

from Products.Five.browser import BrowserView
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/queue/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright 2019-2020 by it's authors.
# Copyright 2019-2021 by it's authors.
# Some rights reserved, see README and LICENSE.

from bika.lims.interfaces import IBikaLIMS
Expand Down
Loading

0 comments on commit c7a8ebd

Please sign in to comment.