Skip to content

Commit

Permalink
REL: release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Wagner committed Oct 15, 2019
1 parent bde7636 commit ced415d
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 29 deletions.
17 changes: 10 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@ CHANGELOG
==========


2.1.0 (unreleased)
2.1.0 (2019-10-15)
-----------------

### Configuration

### Core
- `intelmq.lib.harmonization`:
- Use correct parent classes.
Expand Down Expand Up @@ -39,8 +37,6 @@ CHANGELOG
- add `file_name_from_response` to extract a file name from a Response object for downloaded files.
- `intelmq.lib.upgrades`: Added `v210_deprecations` for deprecated parameters.

### Development

### Harmonization
- Add extra to reports.

Expand Down Expand Up @@ -91,8 +87,6 @@ CHANGELOG
- `intelmq.tests.bots.outputs.amqptopic.test_output`: Added.
- Move the documentation of most bots from separate README files to the central Bots.md and feeds.yaml files.

### Packaging

### Tests
- Travis:
- Use UTC timezone.
Expand All @@ -115,6 +109,15 @@ CHANGELOG
* EventDB: Scripts for applying malware name mapping and domain suffixes to an EventDB.

### Known issues
- MongoDB authentication: compatibility on different MongoDB and pymongo versions (#1439)
- ctl: shell colorizations are logged (#1436)
- http stream collector: retry on regular connection problems? (#1435)
- tests: capture logging with context manager (#1342)
- Bots started with IntelMQ-Manager stop when the webserver is restarted. (#952)
- n6 parser: mapping is modified within each run (#905)
- reverse DNS: Only first record is used (#877)
- Corrupt dump files when interrupted during writing (#870)


2.0.2 (2019-10-14)
-----------------
Expand Down
12 changes: 2 additions & 10 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,10 @@ NEWS

See the changelog for a full list of changes.

2.1.0 Feature release (unreleased)
2.1.0 Feature release (2019-10-15)
----------------------------------

### Requirements

### Tools

### Harmonization
Run `intelmqctl upgrade-config` and `intelmqctl check` after the upgrade.

### Configuration
#### Shadowserver Parser
Expand All @@ -26,10 +22,6 @@ The PostgreSQL Output Bot has been integrated into the new and generic SQL Outpu
* new: `engine` = `postgresql`
IntelMQ versions 2.x will be compatible with previous configurations. `intelmqctl upgrade-config` migrates configurations.

### Libraries

### Postgres databases


2.0.2 Bugfix release (2019-10-14)
---------------------------------
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
intelmq (2.1.0-1) stable; urgency=medium

* Update to 2.1.0

-- Wagner Sebastian <[email protected]> Tue, 15 Oct 2019 12:22:55 +0200

intelmq (2.0.2-1) stable; urgency=medium

* Update to 2.0.2.
Expand Down
2 changes: 1 addition & 1 deletion docs/Release.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- [Prepare new version](#prepare-new-version)


General assumption: You are working on branch maintenance, the next version is a bug fix release. For feature releaese it is slightly different.
General assumption: You are working on branch maintenance, the next version is a bug fix release. For feature releaeses it is slightly different.

## Check before

Expand Down
6 changes: 3 additions & 3 deletions intelmq/lib/upgrades.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
'v200_defaults_ssl_ca_certificate',
'v111_defaults_process_manager',
'v202_fixes',
'v210_deprecations_1',
'v210_deprecations',
]


Expand Down Expand Up @@ -246,7 +246,7 @@ def v202_fixes(defaults, runtime, dry_run):
return changed, defaults, runtime


def v210_deprecations_1(defaults, runtime, dry_run):
def v210_deprecations(defaults, runtime, dry_run):
"""
Migrating configuration.
"""
Expand Down Expand Up @@ -284,5 +284,5 @@ def v210_deprecations_1(defaults, runtime, dry_run):
v200_defaults_ssl_ca_certificate)),
((2, 0, 1), ()),
((2, 0, 2), (v202_fixes, )),
((2, 1, 0), (v210_deprecations_1, )),
((2, 1, 0), (v210_deprecations, )),
])
12 changes: 6 additions & 6 deletions intelmq/tests/bots/collectors/mail/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"""
import os


from imbox.parser import parse_email
with open(os.path.join(os.path.dirname(__file__), 'foobarzip.eml')) as handle:
EMAIL_ZIP_FOOBAR = parse_email(handle.read())
with open(os.path.join(os.path.dirname(__file__), 'foobartxt.eml')) as handle:
EMAIL_TXT_FOOBAR = parse_email(handle.read())
if os.getenv('INTELMQ_TEST_EXOTIC'):
from imbox.parser import parse_email
with open(os.path.join(os.path.dirname(__file__), 'foobarzip.eml')) as handle:
EMAIL_ZIP_FOOBAR = parse_email(handle.read())
with open(os.path.join(os.path.dirname(__file__), 'foobartxt.eml')) as handle:
EMAIL_TXT_FOOBAR = parse_email(handle.read())


class MockedImbox():
Expand Down
2 changes: 1 addition & 1 deletion intelmq/tests/lib/test_upgrades.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def test_v202_fixes(self):

def test_v210_deprecations(self):
""" Test v210_deprecations """
result = upgrades.v210_deprecations_1({}, V210, True)
result = upgrades.v210_deprecations({}, V210, True)
self.assertTrue(result[0])
self.assertEqual(V210_EXP, result[2])

Expand Down
2 changes: 1 addition & 1 deletion intelmq/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = (2, 1, 0, 'alpha', 1)
__version_info__ = (2, 1, 0)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit ced415d

Please sign in to comment.