krontab/CHANGELOG.md

149 lines
4.6 KiB
Markdown
Raw Normal View History

2020-01-08 14:28:57 +06:00
# Changelog
2021-05-29 17:25:40 +06:00
## 0.6.1
2021-05-29 17:30:28 +06:00
* Versions
2021-06-03 12:16:39 +06:00
* `Klock`: `2.1.0` -> `2.1.2`
2021-06-03 12:52:39 +06:00
* Rewriting of default mechanism of `KronScheduler`s
2021-05-29 17:30:28 +06:00
2021-05-07 12:59:13 +06:00
## 0.6.0
2021-05-07 13:33:35 +06:00
* Versions
2021-05-25 15:47:47 +06:00
* `Kotlin`: `1.4.32` -> `1.5.10`
2021-05-15 01:35:10 +06:00
* `Coroutines`: `1.4.3` -> `1.5.0`
2021-05-07 13:33:35 +06:00
* `Klock`: `2.0.7` -> `2.1.0`
2021-03-29 21:30:24 +06:00
## 0.5.2
2021-03-29 21:32:39 +06:00
* Versions
* `Kotlin`: `1.4.31` -> `1.4.32`
2021-04-24 01:47:29 +06:00
* Supporting of weekdays
* Supporting of timezones
* Any `KronScheduler` now can be used for calling `next` with `DateTimeTz`
2021-04-24 01:53:57 +06:00
* New type `KronSchedulerTz`
2021-04-24 16:58:25 +06:00
* `SchedulerFlow` has been deprecated
* New extension `asTzFlow` and small changes in `asFlow` logic
2021-04-24 18:33:37 +06:00
* `merge` extensions now return `CollectionKronScheduler` instead of just `KronScheduler`
2021-03-29 21:32:39 +06:00
2021-03-13 20:19:03 +06:00
## 0.5.1
2021-03-13 20:22:55 +06:00
* Versions
* `Kotlin`: `1.4.21` -> `1.4.31`
* `Coroutines`: `1.4.2` -> `1.4.3`
* `Klock`: `2.0.3` -> `2.0.7`
* `Androidx Work`: `2.4.0` -> `2.5.0`
2021-01-02 21:55:06 +06:00
## 0.5.0 Years
2021-01-02 19:42:10 +06:00
**BREAKING CHANGES**
* `CronDateTimeScheduler` has been marked as `internal` and no longer accessible outside of internal functions
* Old methods `merge` and `plus` related to `CronDateTimeScheduler` has been marked as `deprecated` and changed their
parameters types - it is `KronScheduler` now
* New methods `merge` has been added
2021-01-02 21:55:06 +06:00
* **`KronScheduler#next` method now is nullable. Use `nextOrRelative`/`nextOrNow` to get next time certainly**
* **Years was added as optional part of krontab template and opportunity in `SchedulerBuilder`**
* New builder `YearsBuilder`
* `SchedulerFlow#collectSafely` will be normally (without exceptions) finish when `next` of scheduler will return
null
* `KronScheduler#doOnce` will run code immediately in case when `next` is returning null value
* `KrontabTemplateWrapper` has been added
* New extension `KrontabTemplate#toKronScheduler` (works as `toSchedule`)
2021-01-03 20:01:25 +06:00
* **Fixed issue related to the fact that `toNearDateTime` of `CronDateTime` incorrectly handled months**
2021-01-02 23:56:31 +06:00
* **Android target has been added**
2021-01-01 20:50:31 +06:00
## 0.4.2
2021-01-01 20:58:45 +06:00
* Versions
* `Kotlin`: `1.4.20` -> `1.4.21`
* `Klock`: `2.0.1` -> `2.0.3`
2021-01-01 20:51:09 +06:00
* `CronDateTimeScheduler` now is deprecated and will be set up as `internal` in future
2020-12-06 00:01:02 +06:00
## 0.4.1
2020-12-04 22:59:30 +06:00
2020-12-06 01:03:24 +06:00
* Versions:
* `Coroutines`: `1.4.1` -> `1.4.2`
* `Klock`: `2.0.0` -> `2.0.1`
2020-12-06 01:44:24 +06:00
* `CronDateTimeScheduler` now is public
* New functions for `CronDateTimeScheduler`
2020-12-06 01:00:57 +06:00
* Add `CollectionKronScheduler`. It will give opportunity to unite several schedulers in one
2020-11-21 14:48:57 +06:00
## 0.4.0
2020-11-21 14:58:19 +06:00
**BREAKING CHANGES**
Package of project has been changed. Migration:
* Replace in your dependencies `com.insanusmokrassar:krontab` by `dev.inmo:krontab`
* Replace in your project all imports `com.insanusmokrassar.krontab` by `dev.inmo.krontab`
2020-11-21 15:08:17 +06:00
* Versions:
* `Kotlin`: `1.4.10` -> `1.4.20`
* `Klock`: `1.12.1` -> `2.0.0`
2020-11-21 14:48:57 +06:00
## 0.3.3
2020-10-10 22:53:18 +06:00
2020-11-09 23:22:34 +06:00
* Versions:
* `Coroutines`: `1.3.9` -> `1.4.1`
2020-11-21 14:48:57 +06:00
## 0.3.2
2020-10-10 20:03:52 +06:00
2020-10-10 21:39:00 +06:00
* Function `TimeBuilder#each` was added (works as `at`)
2020-10-10 21:12:32 +06:00
* Add opportunity to use `first` shortcuts:
* Value property `TimeBuilder#first` for including via functions like `TimeBuilder#at`
* Shortcut for kron string format `f` or `F`
* Add opportunity to use `last` shortcuts:
* Value property `TimeBuilder#last` for including via functions like `TimeBuilder#at`
* Shortcut for kron string format `l` or `L`
2020-11-21 14:48:57 +06:00
## 0.3.1
2020-10-08 14:54:42 +06:00
* Versions:
* `Kotlin`: `1.4.0` -> `1.4.10`
* `Klock`: `1.12.0` -> `1.12.1`
2020-11-09 23:15:04 +06:00
## 0.3.0
2020-01-08 14:28:57 +06:00
2020-11-09 23:15:04 +06:00
* Versions:
* `Kotlin`: `1.3.72` -> `1.4.0`
* `Coroutines`: `1.3.8` -> `1.3.9`
* `Klock`: `1.11.14` -> `1.12.0`
* Typealias `KrontabTemplate` was added
* Extension `KrontabTemplate#toSchedule` was added
2020-01-13 09:29:35 +06:00
2020-07-24 11:43:45 +06:00
### 0.2.4
2020-07-24 11:50:17 +06:00
* Updates in libraries:
* Klock `1.11.3` -> `1.11.14`
* Coroutines `1.3.7` -> `1.3.8`
2020-07-24 14:18:57 +06:00
* Ranges support were included. Now it is possible to correctly use syntax `0-5` in strings schedules
2020-07-24 11:50:17 +06:00
2020-11-21 14:48:57 +06:00
## 0.2.3
2020-06-03 18:59:58 +06:00
* Updates in libraries:
* Kotlin `1.3.70` -> `1.3.72`
* Coroutines `1.3.5` -> `1.3.7`
* Klock `1.10.0` -> `1.11.3`
* A lot of KDocs added and fixed
2020-06-03 21:39:52 +06:00
* `EverySecondScheduler` changed its building logic - now it is lazy with builder using
* `KronScheduler#doOnce` was optimized: now it will be explicitly called once and return result of its calculations
* `KronScheduler#doWhile` was rewritten to use `KronScheduler#doOnce` for calculations of `block` result
* New `buildSchedule(String)` function as a shortcut for `createSimpleScheduler(String)`
2020-06-03 18:59:58 +06:00
2020-11-21 14:48:57 +06:00
## 0.2.2
2020-03-22 18:35:06 +06:00
* Updates in libraries:
* Kotlin `1.3.61` -> `1.3.70`
* Coroutines `1.3.3` -> `1.3.5`
* Klock `1.8.6` -> `1.10.0`
2020-11-21 14:48:57 +06:00
## 0.2.1
2020-01-13 10:15:01 +06:00
* Added support of flows: now any `KronScheduler` can be convert to `Flow<DateTime>` using `asFlow` extension
2020-11-09 23:15:04 +06:00
## 0.2.0
* Updated way of publishing (for more info look at the [git](https://git.insanusmokrassar.com/InsanusMokrassar/krontab))
* Updates in libraries:
* Coroutines `1.3.2` -> `1.3.3`
* Klock `1.7.3` -> `1.8.6`