1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
# CHANGELOG.md
## (unreleased)
## 0.6.0
New Features:
- Iterate Bliss data from memory within a slice
- Support `blissdata` 2.0
## 0.5.1
Bug fixes:
- `ContextIterator` was not a proper generator API
## 0.5.0
- `iter_bliss_data` and `iter_bliss_scan_data` are context iterators: context managers that yield an iterator
but can also be used as a normal iterator, similar to python's `open` which can be used as a context manager
that yields a file object or as a normal file object.
## 0.4.4
Bug fixes:
- Support Python 3.12
## 0.4.3
Bug fixes:
- Support pip 24.1
## 0.4.2
Bug fixes:
- `iter_bliss_scan_data_from_memory` was yielding lima data wrong
## 0.4.1
Bug fixes:
- The blissdata<1 dependency does not have redis
## 0.4.0
New Features:
- Support Bliss 2.0
## 0.3.0
Breaking changes:
- Replaced the `bliss` extra install option with `online`
Bug fixes:
- Check for empty-directory when calling os.makedirs
## 0.2.7
New Features:
- `StackDatasetWriter`: write HDF5 dataset with one extra dimension than `DatasetWriter`
Bug fixes:
- `iter_bliss_scan_data_from_memory` capture lima exceptions
## 0.2.6
Changes:
- `get_data` support non-HDF5 URL's without scheme
## 0.2.5
Changes:
- `iter_bliss_scan_data_from_memory` retry getting the lima proxy
Bug fixes:
- `create_nexus_group` bug when no directory is provided
- `iter_bliss_scan_data_from_memory` check lima acquisition number
## 0.2.4
Bug fixes:
- `DatasetWriter` time based flushing fix alignment
## 0.2.3
Changes:
- retry getting the Redis node when getting data from memory
- `DatasetWriter` optional time-based flushing
Bug fixes:
- fix `blissdata` bug
## 0.2.2
Changes:
- add `h5exists`
- `DatasetWriter` fill value is NaN
- `DatasetWriter` support dataset attributes
Bug fixes:
- `DatasetWriter` for small datasets without chunking failed
## 0.2.1
Bug fixes:
- missing `blissdata` dependency
## 0.2.0
Changes:
- use `blissdata` to iterate over scan data
## 0.1.1
New Features:
- `DatasetWriter`: works as a context manager
## 0.1.0
New Features:
- `iter_bliss_data`: iterator for online Bliss data
- `get_data`: get online Bliss data
- `DatasetWriter`: write HDF5 dataset with chunk guessing and alignment
- `last_lima_image`: last image of a running scan
|