Skip to content

Commit fe7f8ad

Browse files
author
ncronjob-dev Bot
committed
Update Changelog.md for 2.7.2 release
1 parent bdf488e commit fe7f8ad

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ All notable changes to **NCronJob** will be documented in this file. The project
66

77
## [Unreleased]
88

9+
## [2.7.2] - 2024-06-01
10+
911
### Added
12+
1013
- Ability to add a timezone for a "minimal job".
1114
- Run jobs automatically when a job either succeeded or failed allowing to model a job pipeline. By [@linkdotnet](https://github.com/linkdotnet).
15+
1216
```csharp
1317
builder.Services.AddNCronJob(options =>
1418
{
@@ -18,12 +22,15 @@ builder.Services.AddNCronJob(options =>
1822
faulted: s => s.RunJob<Notify>("Another Optional Parameter"));
1923
});
2024
```
25+
2126
- Minimal API for instant jobs and job dependencies. By [@linkdotnet](https://github.com/linkdotnet).
27+
2228
```csharp
2329
public void MyOtherMethod() => jobRegistry.RunInstantJob((MyOtherService service) => service.Do());
2430
```
2531

2632
### Changed
33+
2734
- Replace `Microsoft.Extensions.Hosting` with `Microsoft.Extensions.Hosting.Abstractions` for better compatibility. Reported by [@chrisls121](https://github.com/chrisls121) in [#74](https://github.com/NCronJob-Dev/NCronJob/issues/74). Implemented by [@linkdotnet](https://github.com/linkdotnet).
2835
2936
## [2.6.1] - 2024-05-25
@@ -281,7 +288,8 @@ services.AddNCronJob(options =>
281288
- Parameterized jobs - instant as well as cron jobs!
282289
- Integrated in ASP.NET - Access your DI container like you would in any other service
283290

284-
[unreleased]: https://github.com/NCronJob-Dev/NCronJob/compare/2.6.1...HEAD
291+
[unreleased]: https://github.com/NCronJob-Dev/NCronJob/compare/2.7.2...HEAD
292+
[2.7.2]: https://github.com/NCronJob-Dev/NCronJob/compare/2.6.1...2.7.2
285293
[2.6.1]: https://github.com/NCronJob-Dev/NCronJob/compare/2.6.0...2.6.1
286294
[2.6.0]: https://github.com/NCronJob-Dev/NCronJob/compare/2.5.0...2.6.0
287295
[2.5.0]: https://github.com/NCronJob-Dev/NCronJob/compare/2.4.6...2.5.0

0 commit comments

Comments
 (0)