Skip to content

Commit 6599b48

Browse files
authored
Merge pull request #92 from ARMmaster17/89-standalonepipeline-has-dependency-on-redis
Removed StandalonePipeline dependency on redis package
2 parents 4ad73a8 + 2fe55a3 commit 6599b48

File tree

11 files changed

+26
-16
lines changed

11 files changed

+26
-16
lines changed

.github/SECURITY.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
## Supported Versions
44

5-
While developing the initial alpha release (v1.0.0), only the latest build from the `main` branch will recieve security updates.
6-
Older revisions will not recieve backported updates.
5+
Only the latest minor version of WaterGrid will be supported for security updates.
6+
Older revisions will not receive backported updates.
77

88
| Version | Supported |
9-
| ------- | ------------------ |
10-
| 0.x.x | :white_check_mark: |
9+
|---------|--------------------|
10+
| 1.1.x | :white_check_mark: |
11+
| 1.0.x | :x: |
12+
| 0.x.x | :x: |
1113

1214
## Reporting a Vulnerability
1315

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
## [Unreleased]
44

55
### Added
6-
- Support for Python 3.6 through 3.10. (#90)
76

87
### Changed
98

@@ -15,6 +14,17 @@
1514

1615
### Security
1716

17+
## [1.1.1] - 2022-05-05
18+
19+
### Added
20+
21+
- Support for Python 3.6 through 3.10. (#90)
22+
23+
### Fixed
24+
25+
- `StandalonePipeline` no longer has a dependency on `redis`. SA and HA
26+
pipeline class references must now use the fully-qualified class name. (#89)
27+
1828
## [1.1.0] - 2022-05-01
1929

2030
### Added
@@ -62,7 +72,8 @@ now be installed separately through `watergrid[...]` metapackages. (#54)
6272
- Staggered node startup no longer causes mid-interval pipeline runs on other nodes in HA mode.
6373

6474

65-
[Unreleased]: https://github.com/ARMmaster17/watergrid-python/compare/1.1.0...HEAD
75+
[Unreleased]: https://github.com/ARMmaster17/watergrid-python/compare/1.1.1...HEAD
76+
[1.1.1]: https://github.com/ARMmaster17/watergrid-python/compare/1.1.0...1.1.1
6677
[1.1.0]: https://github.com/ARMmaster17/watergrid-python/compare/1.0.1...1.1.0
6778
[1.0.1]: https://github.com/ARMmaster17/watergrid-python/compare/1.0.0...1.0.1
6879
[1.0.0]: https://github.com/ARMmaster17/watergrid-python/releases/tag/1.0.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Creating an ETL pipeline with Watergrid is very easy.
3333
1. Paste the following code into a file named `main.py`:
3434

3535
```python
36-
from watergrid.pipelines import StandalonePipeline
36+
from watergrid.pipelines.standalone_pipeline import StandalonePipeline
3737
from watergrid.steps import Step
3838
from watergrid.context import DataContext
3939

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = "Joshua Zenn (ARMmaster17)"
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = "1.1.0"
25+
release = "1.1.1"
2626

2727

2828
# -- General configuration ---------------------------------------------------

docs/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Create a file called ``main.py`` and paste the following code into it:
1717

1818
.. code-block:: python
1919
20-
from watergrid.pipelines import StandalonePipeline
20+
from watergrid.pipelines.standalone_pipeline import StandalonePipeline
2121
from watergrid.steps import Step
2222
from watergrid.context import DataContext
2323

docs/pipelines/ha_pipeline.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Steps
1313

1414
.. code-block:: python
1515
16-
from watergrid.pipelines import HAPipeline
16+
from watergrid.pipelines.ha_pipeline import HAPipeline
1717
from watergrid.steps import Step
1818
from watergrid.context import DataContext
1919
from watergrid.locks import RedisPipelineLock

docs/pipelines/standalone_pipeline.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Steps
1313

1414
.. code-block:: python
1515
16-
from watergrid.pipelines import StandalonePipeline
16+
from watergrid.pipelines.standalone_pipeline import StandalonePipeline
1717
from watergrid.steps import Step
1818
from watergrid.context import DataContext
1919

test/ha_pipeline_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from watergrid.context import DataContext
55
from watergrid.locks import MockPipelineLock
6-
from watergrid.pipelines import HAPipeline
6+
from watergrid.pipelines.ha_pipeline import HAPipeline
77
from watergrid.steps import Step
88

99

test/redis_pipeline_lock_tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import time
22
import unittest
3-
from time import sleep
43

54
from watergrid.locks import RedisPipelineLock
65

test/standalone_pipeline_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import unittest
22

3-
from watergrid.pipelines import StandalonePipeline
3+
from watergrid.pipelines.standalone_pipeline import StandalonePipeline
44

55

66
class StandalonePipelineTestCases(unittest.TestCase):

0 commit comments

Comments
 (0)