Skip to content

Commit c5d57f7

Browse files
authored
1.10.0 (#1549)
* 1.10.0 * update version badges * fix Arquero capitalization * fix release note links
1 parent cd7f2f4 commit c5d57f7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/files.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ For missing files, `file.lastModified` is undefined. The `file.mimeType` is dete
101101
[xlsx]: ./lib/xlsx
102102
[zip]: ./lib/zip
103103

104-
The contents of a file often dictate the appropriate method — for example, an Excel XLSX file is almost always read with `file.xlsx`. When multiple methods are valid, choose based on your needs. For example, you can load a CSV file using `file.arquero` to load it into [arquero](./lib/arquero)<a href="https://github.com/observablehq/framework/pull/1509" class="observablehq-version-badge" data-version="prerelease" title="Added in #1509"></a>, or even using `file.text` to implement parsing yourself.
104+
The contents of a file often dictate the appropriate method — for example, an Excel XLSX file is almost always read with `file.xlsx`. When multiple methods are valid, choose based on your needs. For example, you can load a CSV file using `file.arquero` to load it into [Arquero](./lib/arquero)<a href="https://github.com/observablehq/framework/releases/tag/v1.10.0" class="observablehq-version-badge" data-version="^1.10.0" title="Added in 1.10.0"></a>, or even using `file.text` to implement parsing yourself.
105105

106106
In addition to the above, you can get the resolved absolute URL of the file using `file.href`: <a href="https://github.com/observablehq/framework/releases/tag/v1.5.0" class="observablehq-version-badge" data-version="^1.5.0" title="Added in 1.5.0"></a>
107107

docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Or with Yarn:
160160

161161
You should see something like this:
162162

163-
<pre data-copy="none"><b class="green">Observable Framework</b> v1.9.0
163+
<pre data-copy="none"><b class="green">Observable Framework</b> v1.10.0
164164
↳ <u><a href="http://127.0.0.1:3000/" style="color: inherit;">http://127.0.0.1:3000/</a></u></pre>
165165

166166
<div class="note">

docs/inputs/table.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const selection = view(Inputs.table(penguins, {required: false}));
4949
selection // Try selecting rows above!
5050
```
5151

52-
The _required_ option determines the selection when no items are selected from the table: if it is true (default), the selection contains the full dataset; otherwise, the selection is empty. The _select_ option <a href="https://github.com/observablehq/framework/pull/1541" class="observablehq-version-badge" data-version="prerelease" title="Added in #1541"></a> disables user selection of rows, hiding the checkboxes in the first column.
52+
The _required_ option determines the selection when no items are selected from the table: if it is true (default), the selection contains the full dataset; otherwise, the selection is empty. The _select_ option <a href="https://github.com/observablehq/framework/releases/tag/v1.10.0" class="observablehq-version-badge" data-version="^1.10.0" title="Added in 1.10.0"></a> disables user selection of rows, hiding the checkboxes in the first column.
5353

5454
The table input assumes that all values in a given column are the same type, and chooses a suitable formatter based on the first non-null value in each column.
5555

@@ -180,7 +180,7 @@ The available table input options are:
180180
- _maxHeight_ - the maximum table height, if any; defaults to (_rows_ + 1) \* 22 - 1
181181
- _layout_ - the [table layout](https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout); defaults to fixed for ≤12 columns
182182
- _required_ - if true, the table’s value is all _data_ if no selection; defaults to true
183-
- _select_ <a href="https://github.com/observablehq/framework/pull/1541" class="observablehq-version-badge" data-version="prerelease" title="Added in #1541"></a> - if true, allows the user to modify the table’s value by selecting rows; defaults to true
183+
- _select_ <a href="https://github.com/observablehq/framework/releases/tag/v1.10.0" class="observablehq-version-badge" data-version="^1.10.0" title="Added in 1.10.0"></a> - if true, allows the user to modify the table’s value by selecting rows; defaults to true
184184
- _multiple_ - if true, allow multiple rows to be selected; defaults to true
185185

186186
If _width_ is _auto_, the table width will be based on the table contents; note that this may cause the table to resize as rows are lazily rendered.

docs/lib/arquero.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ dt.fold(aq.all(), {as: ["city", "sun"]})
8585
.objects()
8686
```
8787

88-
To load an Arquero table from an Apache Arrow, Apache Parquet, CSV, TSV, or JSON file, use [`file.arquero`](../files#arquero) <a href="https://github.com/observablehq/framework/pull/1509" class="observablehq-version-badge" data-version="prerelease" title="Added in #1509"></a>:
88+
To load an Arquero table from an Apache Arrow, Apache Parquet, CSV, TSV, or JSON file, use [`file.arquero`](../files#arquero) <a href="https://github.com/observablehq/framework/releases/tag/v1.10.0" class="observablehq-version-badge" data-version="^1.10.0" title="Added in 1.10.0"></a>:
8989

9090
```js run=false
9191
const flights = FileAttachment("flights-200k.arrow").arquero();

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@observablehq/framework",
33
"license": "ISC",
4-
"version": "1.9.0",
4+
"version": "1.10.0",
55
"type": "module",
66
"publishConfig": {
77
"access": "public"

0 commit comments

Comments
 (0)