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: NEWS.md
+23-3Lines changed: 23 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,30 @@
1
1
# frictionless (development version)
2
2
3
+
## For users
4
+
5
+
*`read_resource()` now supports reading from remote zip files, thanks to support in {vroom} (1.3.0) (#291).
3
6
*`resources()` is soft-deprecated, please use `resource_names()` instead (#282).
4
7
*`get_schema()` is soft-deprecated, please use `schema()` instead (#282).
5
-
* Internal properties (`package$directory` and `resource$read_from`) are now attributes rather than properties. This keeps them clearly separated from public Data Package properties. `read_from` is also renamed to `data_location` (#289).
6
-
*`read_resource()` now supports reading from remote zip files, thanks to support in {vroom} (1.3.0) (#291).
7
-
* frictionless now relies on R >= 4.1.0 (because of an indirect {vroom} dependency) (#291).
8
+
9
+
## Changes for developers
10
+
11
+
* Internal frictionless properties are now _attributes_, to better separate them from public Data Package properties (#289). If you use these internal properties, then update:
12
+
13
+
```R
14
+
package$directory
15
+
r<-frictionless:::get_resource(package, "resource_name") # Internal function
0 commit comments