You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/content/CHANGELOG.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,9 @@ All notable changes to Rayforce-Py will be documented in this file.
14
14
15
15
-**`match_by_first` renamed to `key_columns`**: In `upsert()`, the parameter `match_by_first` has been renamed to `key_columns` for clarity.
16
16
17
-
-**Sorting API changed**: `xasc()` and `xdesc()` methods have been replaced with `order_by(*cols, desc=False)` which returns a query that must be executed. This allows chaining with other query operations. See [Order By documentation](./documentation/query-guide/order-by.md).
17
+
-**`Table.from_parted`** now accepts `name` instead of `symfile` argument.
18
+
19
+
-**Sorting API changed**: `xasc()` and `xdesc()` methods have been replaced with `order_by(*cols, desc=False)` which returns a query that must be executed. This allows chaining with other query operations. See [Order By documentation](https://py.rayforcedb.com/content/documentation/query-guide/order-by.md).
18
20
19
21
20
22
### New Features
@@ -31,14 +33,18 @@ All notable changes to Rayforce-Py will be documented in this file.
31
33
32
34
-**`dtypes` property**: Get column types as a dictionary with `table.dtypes`.
33
35
34
-
-**`drop()` method**: Remove columns with `table.drop("col1", "col2")`. See [Transform documentation](./documentation/data-types/table/transform.md).
36
+
-**`drop()` method**: Remove columns with `table.drop("col1", "col2")`. See [Transform documentation](https://py.rayforcedb.com/content/documentation/data-types/table/transform.html).
35
37
36
-
-**`rename()` method**: Rename columns with `table.rename({"old": "new"})`. See [Transform documentation](./documentation/data-types/table/transform.md).
38
+
-**`rename()` method**: Rename columns with `table.rename({"old": "new"})`. See [Transform documentation](https://py.rayforcedb.com/content/documentation/data-types/table/transform.html).
37
39
38
-
-**`cast()` method**: Change column types with `table.cast("col", I64)`. See [Transform documentation](./documentation/data-types/table/transform.md).
40
+
-**`cast()` method**: Change column types with `table.cast("col", I64)`. See [Transform documentation](https://py.rayforcedb.com/content/documentation/data-types/table/transform.html).
39
41
40
42
-**Chainable `order_by()`**: Sort results as part of query chain: `table.select(...).where(...).order_by("col").execute()`.
41
43
44
+
### Bug fixes
45
+
46
+
- Fix issue when applying a boolean vector filter for a table.
0 commit comments