Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:certtools/intelmq into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronkaplan committed Mar 1, 2024
2 parents 631d897 + 6d3bdbc commit b747a29
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@



3.3.0
3.3.0 (2024-03-01)
------------------

### Configuration
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ 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.3.0 Feature release
3.3.0 Feature release (2024-03-01)
---------------------

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ intelmq (3.3.0-1) stable; urgency=medium

* 3.3.0 Feature release

-- Sebastian Wagner <[email protected]> Tue, 05 Sep 2023 15:05:07 +0200
-- Aaron Kaplan <[email protected]> Fr, 01 Mar 2024 14:19:00 +0100

intelmq (3.2.1-2) stable; urgency=medium

Expand Down
15 changes: 7 additions & 8 deletions docs/dev/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ different.
- Check the upgrade functions in `intelmq/lib/upgrades.py`.
- Close the milestone on GitHub and move any open issues to the next
one.
- `docs/user/installation.rst`: Update supported operating systems.
- `docs/admin/installation/linux-packages.md`: Update supported operating systems.

## Documentation

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

- `intelmq_manager/version.py`: Update the version.
- `intelmq_manager/static/images/js/about.js`: Update the version.
- `intelmq_manager/static/js/about.js`: Update the version.

## Commit, push, review and merge

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

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

## Tag and release

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

Expand Down
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

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


# Introduction

**IntelMQ** is a solution for IT security teams (CERTs & CSIRTs, SOCs
Expand Down
2 changes: 1 addition & 1 deletion intelmq/bots/parsers/shadowserver/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def parse_line(self, row, report):
event.add('feed.name', self.feedname, overwrite=self.overwrite)

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

extra = {} # The Json-Object which will be populated with the
# fields that could not be added to the standard intelmq fields
Expand Down
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, 3, 0, '')
__version_info__ = (3, 3, 0)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit b747a29

Please sign in to comment.