Skip to content

Commit 034ef3e

Browse files
[release] 0.2.135 (#14882)
# Security Assessment This change has low security impact as: - there are no functional changes herein - all changes since the last release have an approved security impact assessment. --------- Co-authored-by: ehigham <8223952+ehigham@users.noreply.github.com> Co-authored-by: Edmund Higham <edhigham@gmail.com>
1 parent 278cd33 commit 034ef3e

File tree

4 files changed

+60
-2
lines changed

4 files changed

+60
-2
lines changed

hail/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $(error "git rev-parse --short=12 HEAD" failed to produce output)
1111
endif
1212

1313
HAIL_MAJOR_MINOR_VERSION := 0.2
14-
HAIL_PATCH_VERSION := 134
14+
HAIL_PATCH_VERSION := 135
1515
HAIL_PIP_VERSION := $(HAIL_MAJOR_MINOR_VERSION).$(HAIL_PATCH_VERSION)
1616
HAIL_VERSION := $(HAIL_PIP_VERSION)-$(SHORT_REVISION)
1717

hail/build.mill

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import mill.util.Jvm
1414

1515
object Settings {
1616
val hailMajorMinorVersion = "0.2"
17-
val hailPatchVersion = "134"
17+
val hailPatchVersion = "135"
1818
}
1919

2020
object Deps {

hail/python/hail/docs/change_log.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,24 @@ supports.
5252
policy. Their functionality or even existence may change without notice. Please contact us if you
5353
critically depend on experimental functionality.**
5454

55+
## Version 0.2.135
56+
57+
Released 2025-06-26
58+
59+
### New Features
60+
61+
- (hail#14923) add methods for (multivariate) hypergeometric distribution
62+
- (hail#14876) Progress bar for 'batch' backend now shows current cost
63+
- (hail#14829) 'batch' backend can now submit queries to an existing batch job
64+
65+
### Bug Fixes
66+
67+
- (hail#14905) Fix an error when importing PLINK files with very large numbers of variants
68+
- (hail#14913) Fix a bug that appears as a MatchError of class TDict
69+
- (hail#14907) Fix a bug that caused FileNotFound exceptions when converting between tables and spark dataframes.
70+
- (hail#14869) Fix a bug in the optimizer that incorrectly removed round-trip casts, eg float->int->float
71+
- (hail#14857) Fix a rare bug in the optimizer that produces invalid IR and most likely manifests as `assertion failed: type mismatchwhich`. This bug can only occur in certain cases at the very beginning of a hail session (right after hl.init).
72+
5573
## Version 0.2.134
5674

5775
Released 2025-02-25

hail/python/hailtop/batch/docs/change_log.rst

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,46 @@ versions. In particular, Hail officially supports:
1515
Change Log
1616
==========
1717

18+
**Version 0.2.135**
19+
20+
- (`#14927 <https://github.com/hail-is/hail/pull/14927>`__)
21+
Worker image and derived docker images upgraded to ubuntu 24.04.
22+
- (`#14925 <https://github.com/hail-is/hail/pull/14925>`__)
23+
UI filtering improvements to user table
24+
- (`#14916 <https://github.com/hail-is/hail/pull/14916>`__)
25+
Improved logging around JVM initialization failures
26+
- (`#14880 <https://github.com/hail-is/hail/pull/14880>`__)
27+
Truncate job names when used as a directory name under /io
28+
- (`#14919 <https://github.com/hail-is/hail/pull/14919>`__)
29+
Fixes a bug that made workers seem unresponsive and prevented jobs from
30+
being marked complete.
31+
- (`#14912 <https://github.com/hail-is/hail/pull/14912>`__)
32+
hailctl batch init now creates buckets in the default region with a 7 day
33+
lifecycle policy instead of 30 day.
34+
- (`#14895 <https://github.com/hail-is/hail/pull/14895>`__)
35+
Add support for multiple configuration profiles
36+
- (`#14848 <https://github.com/hail-is/hail/pull/14848>`__)
37+
Use the default region when a user doesn't specify a region
38+
- (`#14908 <https://github.com/hail-is/hail/pull/14908>`__)
39+
Adds default_region API endpoint
40+
- (`#14901 <https://github.com/hail-is/hail/pull/14901>`__)
41+
Fixes bug where remove_tmpdir jobs were not run in the regions the user
42+
specified.
43+
- (`#14810 <https://github.com/hail-is/hail/pull/14810>`__)
44+
Adds SESSION_MAX_AGE_SECS to configure session timeout duration
45+
- (`#14849 <https://github.com/hail-is/hail/pull/14849>`__)
46+
Temporary buckets are initialized with soft delete disabled.
47+
- (`#14876 <https://github.com/hail-is/hail/pull/14876>`__)
48+
Batch progress bar now displays accrued cost
49+
- (`#14878 <https://github.com/hail-is/hail/pull/14878>`__)'
50+
Login UI requires ToS acceptance.
51+
- (`#14844 <https://github.com/hail-is/hail/pull/14844>`__)
52+
Adds support for n1 machines with T4 GPUs in GCP
53+
- (`#14833 <https://github.com/hail-is/hail/pull/14833>`__)
54+
Various openapi documentation additions and fixes.
55+
- (`#14841 <https://github.com/hail-is/hail/pull/14841>`__)
56+
Fixed a regression preventing hyphens in usernames.
57+
1858
**Version 0.2.132**
1959

2060
- (`#14576 <https://github.com/hail-is/hail/pull/14576>`__) Fixed bug where

0 commit comments

Comments
 (0)