Skip to content

Commit

Permalink
Merge branch '5.10.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
lunkwill42 committed May 16, 2024
2 parents 1c497c4 + d5ecc6c commit 2206edf
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 13 deletions.
40 changes: 38 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,47 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

## [Unreleased]
## [5.10.0] - 2024-05-16


### Removed

- Removed references to IRC support channel from documentation, as the channel
is closing down ([#2907](https://github.com/Uninett/nav/issues/2907))

### Deprecated

- Support for Python versions older than 3.9 will be dropped in NAV 5.11.

### Added

- New ipdevpoll plugin to fetch ARP cache data from Palo Alto firewall APIs
([#2613](https://github.com/Uninett/nav/issues/2613))
- Introduced `towncrier` to aid in collaborative NAV changelog authoring
([#2869](https://github.com/Uninett/nav/issues/2869))
- Add library utilities to produce QR codes to arbitrary URLs, for use in
upcoming features ([#2887](https://github.com/Uninett/nav/issues/2887))
- Added towncrier to automatically produce changelog

### Changed

- Change the Docker Compose-based development environment to use more build
caching and avoid running too many things as root
([#2859](https://github.com/Uninett/nav/issues/2859))
- Changed required PostgreSQL version to 11

### Fixed

- Avoid running command line scripts twice on every invocation ([#2877](https://github.com/Uninett/nav/issues/2877), [#2878](https://github.com/Uninett/nav/pull/2878))
- Avoid running command line scripts twice on every invocation
([#2877](https://github.com/Uninett/nav/issues/2877),
[#2878](https://github.com/Uninett/nav/pull/2878))
- Fixed `full-nav-restore.sh` developer helper script that broke after Docker
Compose development was reorganized
([#2888](https://github.com/Uninett/nav/issues/2888))
- Fix missing delete icon in form selector labels
([#2898](https://github.com/Uninett/nav/issues/2898))



## [5.9.1] - 2024-03-15

Expand Down
1 change: 0 additions & 1 deletion changelog.d/+pg11.changed

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+py37-deprecation.deprecated.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+towncrier-changelog.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2613.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2859.changed

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2869.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2887.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2888.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2898.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2907.removed.md

This file was deleted.

2 changes: 1 addition & 1 deletion version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ get_version() {
}

get_version_from_changelog() {
head -n10 CHANGELOG.md | awk '/^## \[[0-9]/ { print $2 }' | tr -d '[]'
head -n15 CHANGELOG.md | awk '/^## \[[0-9]/ { print $2 }' | tr -d '[]'
}

git_tag_exists() {
Expand Down

0 comments on commit 2206edf

Please sign in to comment.