Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,39 @@ This file lists all changes between IntelMQ releases.
Please refer to the [NEWS](NEWS.md) for a list of changes which have an affect on the administration of IntelMQ and contains steps that you need to be aware off for the upgrade.


3.5.1 Patch release (unreleased)
--------------------------------

### Configuration

### Core

### Development

### Data Format

### Bots
#### Collectors

#### Parsers

#### Experts

#### Outputs

### Documentation

### Packaging

### Tests

### Tools

### Contrib

### Known issues


3.5.0 Feature release (2025-11-01)
----------------------------------

Expand Down
16 changes: 16 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,22 @@ This file lists all changes which have an affect on the administration of IntelM
Please refer to the change log for a full list of changes.


3.5.1 Patch release (unreleased)
--------------------------------

### Requirements

### Tools

### Data Format

### Configuration

### Libraries

### Postgres databases


3.5.0 Feature release (2025-11-01)
----------------------------------

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 (3.5.1~alpha1-1) UNRELEASED; urgency=medium

* Start new version

-- Sebastian Wagner <sebix@sebix.at> Sat, 01 Nov 2025 10:26:54 +0100

intelmq (3.5.0-1) stable; urgency=medium

* 3.5.0 Feature release
Expand Down
1 change: 1 addition & 0 deletions intelmq/lib/upgrades.py
Original file line number Diff line number Diff line change
Expand Up @@ -1059,6 +1059,7 @@ def v350_new_fields(configuration, harmonization, dry_run, **kwargs):
((3, 3, 1), ()),
((3, 4, 0), (v340_deprecations, )),
((3, 5, 0), (v350_blueliv_removal, v350_new_fields)),
((3, 5, 1), ()),
])

ALWAYS = (harmonization,)
2 changes: 1 addition & 1 deletion intelmq/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
#
# SPDX-License-Identifier: AGPL-3.0-or-later

__version_info__ = (3, 5, 0)
__version_info__ = (3, 5, 1, 'alpha1')
__version__ = '.'.join(map(str, __version_info__))
Loading