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
103 changes: 99 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,106 @@
# Changelog

## dev
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.0.8

### New features

- Added the `listToMD5` function
- Added the `curlAndExtract` function to download and extract `tar` and `zip` files during the nf-test setup stage.

## 0.0.7

### Added

- Added the OutputSanitizer class with the sanitizeOutput() method to process and clean output channels, supporting options like unstableKeys to handle unstable file outputs by @nvnieuwk

### Fixed

- nfcoreLibraryLinker: exit gracefully when directories don't exist by @prototaxites

## 0.0.6

### Added

- Add stdout and stderr helper function for better snapshot by @maxulysse

### Fixed

- improve docs by @maxulysse

## 0.0.5

### Added

- Add functions for managing dependencies on nf-core modules by @prototaxites

### Fixed

- Fix rendering of cloning code blocks by @TCLamnidis

### New Contributors

- @prototaxites
- @TCLamnidis

## 0.0.4

### Added

- Add listToMD5 by @nvnieuwk in #26

### Fixed

- Improve user eligibility for getAllFilesInDir() docs by @jfy133
- fix missing ',' in docs code by @Joon-Klaps
- fix listToMD5 by @maxulysse
- Improve remove from yaml map by @maxulysse

### New Contributors

- @jfy133
- @Joon-Klaps
- @itrujnara

## 0.0.3

### Added

- Add wrapper functions for getAllFilesFromDir with named parameters by @lukfor
- add include in getAllFilesFromDir by @maxulysse
- add removeFromYamlMap by @maxulysse

### Fixed

- Move all docs in its own folder by @maxulysse

### New Contributors

- @lukfor

## 0.0.2

### Added

- Add maven to gitpod install by @nvnieuwk
- Add getRelativePath() function by @maxulysse

### New Contributors

- @nvnieuwk

## 0.0.1

First release of nft-utils 🍏🚀

### Added

- add removeNextflowVersion function by @maxulysse
- Add getAllFilesFromDir function by @maxulysse
- Add docs by @maxulysse

### Fixes
### New Contributors

Fixes are written here
- @adamrtalbot
- @maxulysse
2 changes: 1 addition & 1 deletion dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.nf-core</groupId>
<artifactId>nft-utils</artifactId>
<name>nft-utils</name>
<version>0.0.7</version>
<version>0.0.8</version>
<description>nf-test plugin that adds commonly used utility functions</description>
<url>https://github.com/nf-core/nft-utils</url>
<licenses>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To start using the plugin please add it to your `nf-test.config` file:
```groovy title="nf-test.config"
config {
plugins {
load "nft-utils@0.0.7"
load "nft-utils@0.0.8"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.nf-core</groupId>
<artifactId>nft-utils</artifactId>
<version>0.0.7</version>
<version>0.0.8</version>
<packaging>jar</packaging>

<name>nft-utils</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/nf-test-plugin
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
moduleName=nft-utils
moduleVersion=0.0.7
moduleVersion=0.0.8
moduleAuthors=nf-core
extensionMethods=nf_core.nf.test.utils.Methods
Loading