Skip to content

Commit b747a29

Browse files
committed
Merge branch 'develop' of github.com:certtools/intelmq into develop
2 parents 631d897 + 6d3bdbc commit b747a29

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

CHANGELOG.md

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

88

99

10-
3.3.0
10+
3.3.0 (2024-03-01)
1111
------------------
1212

1313
### Configuration

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This file lists all changes which have an affect on the administration of IntelM
1010
Please refer to the change log for a full list of changes.
1111

1212

13-
3.3.0 Feature release
13+
3.3.0 Feature release (2024-03-01)
1414
---------------------
1515

1616
### Documentation

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ intelmq (3.3.0-1) stable; urgency=medium
22

33
* 3.3.0 Feature release
44

5-
-- Sebastian Wagner <sebix@sebix.at> Tue, 05 Sep 2023 15:05:07 +0200
5+
-- Aaron Kaplan <aaron@lo-res.org> Fr, 01 Mar 2024 14:19:00 +0100
66

77
intelmq (3.2.1-2) stable; urgency=medium
88

docs/dev/release.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ different.
1717
- Check the upgrade functions in `intelmq/lib/upgrades.py`.
1818
- Close the milestone on GitHub and move any open issues to the next
1919
one.
20-
- `docs/user/installation.rst`: Update supported operating systems.
20+
- `docs/admin/installation/linux-packages.md`: Update supported operating systems.
2121

2222
## Documentation
2323

@@ -39,22 +39,21 @@ Eventually adapt the default log levels if necessary. Should be INFO for stable
3939
### IntelMQ Manager
4040

4141
- `intelmq_manager/version.py`: Update the version.
42-
- `intelmq_manager/static/images/js/about.js`: Update the version.
42+
- `intelmq_manager/static/js/about.js`: Update the version.
4343

4444
## Commit, push, review and merge
4545

46-
Commit your changes in a separate branch, the final commit message
47-
should start with `REL:`. Push and create a pull request to maintenance
48-
and after that from maintenance to master. Someone else should review
49-
the changes. Eventually fix them, make sure the `REL:` is the last
50-
commit, you can also push that one at last, after the reviews.
46+
Commit your changes in a separate branch, the final commit message should start
47+
with `REL:`. Push and create a pull request to the `develop` branch. Someone
48+
else should review the changes. Eventually fix them, make sure the `REL:` is
49+
the last commit, you can also push that one at last, after the reviews.
5150

5251
Why a separate branch? Because if problems show up, you can still
5352
force-push to that one, keeping the release commit the latest one.
5453

5554
## Tag and release
5655

57-
Tag the commit with `git tag -s version HEAD`, merge it into master,
56+
Tag the commit with `git tag -s version HEAD`, merge it into `develop`,
5857
push the branches *and* the tag. The tag is just `a.b.c`, not prefixed
5958
with `v` (that was necessary only with SVN a long time ago...).
6059

docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
![IntelMQ](docs/static/images/Logo_Intel_MQ.svg)
1111

12+
1213
# Introduction
1314

1415
**IntelMQ** is a solution for IT security teams (CERTs & CSIRTs, SOCs

intelmq/bots/parsers/shadowserver/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def parse_line(self, row, report):
120120
event.add('feed.name', self.feedname, overwrite=self.overwrite)
121121

122122
# set feed.documentation to a report url
123-
event.add('feed.documentation', conf.get('url'))
123+
event.add('feed.documentation', conf.get('url'), overwrite=False)
124124

125125
extra = {} # The Json-Object which will be populated with the
126126
# fields that could not be added to the standard intelmq fields

intelmq/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
#
33
# SPDX-License-Identifier: AGPL-3.0-or-later
44

5-
__version_info__ = (3, 3, 0, '')
5+
__version_info__ = (3, 3, 0)
66
__version__ = '.'.join(map(str, __version_info__))

0 commit comments

Comments
 (0)