From 248176360e1bc84256ae456bf28e4e58997f9649 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Aug 2024 09:46:58 -0700 Subject: [PATCH] Bump the prod-dependencies group with 4 updates (#213) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the prod-dependencies group with 4 updates: [@observablehq/plot](https://github.com/observablehq/plot), [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table), [jotai](https://github.com/pmndrs/jotai) and [winston](https://github.com/winstonjs/winston). Updates `@observablehq/plot` from 0.6.15 to 0.6.16
Release notes

Sourced from @​observablehq/plot's releases.

v0.6.16

Please see the 0.6.16 release notes for examples and more!

New features

Bug fixes and other improvements

New contributors

Full Changelog: https://github.com/observablehq/plot/compare/v0.6.15...v0.6.16

Changelog

Sourced from @​observablehq/plot's changelog.

0.6.16

Released August 6, 2024.

The new waffle mark 🧇 displays a quantity (or quantitative extent) for a given category; unlike a bar, a waffle is subdivided into cells that allow easier counting, making waffles useful for reading and comparing exact quantities. Plot’s waffle mark is highly configurable: it supports stacking, positive and negative values, rounded corners, partial cells for fractional counts, automatic row or column size determination (with optional override), and more!

Plot.plot({
  fx: {interval: 10},
  color: {legend: true},
marks: [Plot.waffleY(olympians, Plot.groupZ({y: "count"},
{fill: "sex", sort: "sex", fx: "weight",
unit: 10}))]
})

All marks now support GeoJSON data and GeoJSON property shorthand, making it easier to work with GeoJSON. For example, below the data counties is a GeoJSON FeatureCollection, and unemployment refers to a property on each feature; the fill option is thus shorthand for (d) => d.properties.unemployment. The geo mark now also supports the tip option (via an implicit centroid transform), making it easier to use Plot’s interactive tooltips.

Plot.plot({
  projection: "albers-usa",
  color: {
    type: "quantile",
    n: 9,
    scheme: "blues",
    label: "Unemployment (%)",
    legend: true
  },
  marks: [
    Plot.geo(counties, {
      fill: "unemployment",
title: (d) => `${d.properties.name} ${d.properties.unemployment}%`,
      tip: true
    })
  ]
})

All marks now also support column name channel shorthand when using Apache Arrow tables as data, and we’ve added detection of Arrow date-type columns. (Arrow represents temporal data using BigInt rather than Date.)

Plot.dot(gistemp, {x: "Date", y:
"Anomaly"}).plot() // gistemp is an Arrow Table!

The rect-like marks (rect, bar, cell, and frame) now support individual rounding options for each side (rx1, ry1, etc.) and corner (rx1y1, rx2y1, etc.). This allows you to round just the top side of rects. You can even use a negative corner radius on the bottom side for seamless stacking, as in the histogram of Olympic athletes below.

... (truncated)

Commits

Updates `@tanstack/react-table` from 8.19.3 to 8.20.1
Release notes

Sourced from @​tanstack/react-table's releases.

v8.20.1

Version 8.20.1 - 8/3/24, 10:29 PM

Changes

Fix

Docs

Packages

v8.20.0

Version 8.20.0 - 8/3/24, 9:32 PM

Changes

Feat

Docs

Packages

v8.19.4

Version 8.19.4 - 8/3/24, 8:50 PM

Changes

Fix

... (truncated)

Commits

Updates `jotai` from 2.9.1 to 2.9.2
Release notes

Sourced from jotai's releases.

v2.9.2

A small improvement in atomFamily for edge use cases.

What's Changed

New Contributors

Full Changelog: https://github.com/pmndrs/jotai/compare/v2.9.1...v2.9.2

Commits

Updates `winston` from 3.13.1 to 3.14.1
Release notes

Sourced from winston's releases.

v3.14.1

https://github.com/winstonjs/winston/compare/v3.14.0...v3.14.1

v3.14.0

https://github.com/winstonjs/winston/compare/v3.13.1...v3.14.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 8 ++++---- yarn.lock | 50 +++++++++++++++++++++++++------------------------- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/package.json b/package.json index 844aac754..7c01c9724 100644 --- a/package.json +++ b/package.json @@ -75,11 +75,11 @@ "dependencies": { "@monaco-editor/loader": "^1.4.0", "@monaco-editor/react": "^4.6.0", - "@observablehq/plot": "^0.6.15", + "@observablehq/plot": "^0.6.16", "@react-hook/resize-observer": "^2.0.2", "@table-nav/core": "^0.0.7", "@table-nav/react": "^0.0.7", - "@tanstack/react-table": "^8.19.3", + "@tanstack/react-table": "^8.20.1", "@types/color": "^3.0.6", "@xterm/addon-fit": "^0.10.0", "@xterm/addon-serialize": "^0.13.0", @@ -95,7 +95,7 @@ "htl": "^0.3.1", "html-to-image": "^1.11.11", "immer": "^10.1.1", - "jotai": "^2.9.1", + "jotai": "^2.9.2", "monaco-editor": "^0.50.0", "overlayscrollbars": "^2.10.0", "overlayscrollbars-react": "^0.5.6", @@ -116,7 +116,7 @@ "tinycolor2": "^1.6.0", "use-device-pixel-ratio": "^1.1.2", "uuid": "^10.0.0", - "winston": "^3.13.1" + "winston": "^3.14.1" }, "packageManager": "yarn@4.3.1" } diff --git a/yarn.lock b/yarn.lock index e7210948b..53fdf3e0a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2878,14 +2878,14 @@ __metadata: languageName: node linkType: hard -"@observablehq/plot@npm:^0.6.15": - version: 0.6.15 - resolution: "@observablehq/plot@npm:0.6.15" +"@observablehq/plot@npm:^0.6.16": + version: 0.6.16 + resolution: "@observablehq/plot@npm:0.6.16" dependencies: d3: "npm:^7.9.0" interval-tree-1d: "npm:^1.0.0" isoformat: "npm:^0.2.0" - checksum: 10c0/ed05ea3708b1b44fbfbc67006158bd1ede4a4caaaaf995d44932d7d0f0ad9fe779f2daaf6d84949218a5aa3dee3791a784b1db1447c214d38dd2d67bc671e26b + checksum: 10c0/e4a1f6b9b16fe0b17abc592e50de80ec1edbf3b8447ce3951068dc7e321fd2f5b8079e2fa169628bcbf605b2ca2ac5222991f3ff477b269bdae530ef6d700108 languageName: node linkType: hard @@ -3826,22 +3826,22 @@ __metadata: languageName: node linkType: hard -"@tanstack/react-table@npm:^8.19.3": - version: 8.19.3 - resolution: "@tanstack/react-table@npm:8.19.3" +"@tanstack/react-table@npm:^8.20.1": + version: 8.20.1 + resolution: "@tanstack/react-table@npm:8.20.1" dependencies: - "@tanstack/table-core": "npm:8.19.3" + "@tanstack/table-core": "npm:8.20.1" peerDependencies: react: ">=16.8" react-dom: ">=16.8" - checksum: 10c0/c3835d84f13874482d7e646c67d6b213065cf7b39e6d1ba4fe9a6876ad913a4863bbfbc9f93e4cc59a86ab292d228b16be4c27cf4786bc9f49366c4f9895b616 + checksum: 10c0/dc0bac56425de05bb51dca32d488a6ca4f2395375f8c02b1c0082ee0f654841efa1263b357c62864f7c44ed39c0be1fb547aa7350ee7e39be5c7dd19b4155260 languageName: node linkType: hard -"@tanstack/table-core@npm:8.19.3": - version: 8.19.3 - resolution: "@tanstack/table-core@npm:8.19.3" - checksum: 10c0/c88a37ac4733b64c4466c42703ae4cff84e07ff0d46948e2938a050fa2d058c730ed80f36765394f505b1ccc5e0cc331b72af9e9fa6549897c8d145cfaebae20 +"@tanstack/table-core@npm:8.20.1": + version: 8.20.1 + resolution: "@tanstack/table-core@npm:8.20.1" + checksum: 10c0/540a4df688cad9261f77ca454aab62720615569805b5396bd012b411bb65dbb3fdf38f2a0b91a60b2e0def139d1517ad9a3f28f2cede5317d70ad1ad0dd1c5a3 languageName: node linkType: hard @@ -8997,9 +8997,9 @@ __metadata: languageName: node linkType: hard -"jotai@npm:^2.9.1": - version: 2.9.1 - resolution: "jotai@npm:2.9.1" +"jotai@npm:^2.9.2": + version: 2.9.2 + resolution: "jotai@npm:2.9.2" peerDependencies: "@types/react": ">=17.0.0" react: ">=17.0.0" @@ -9008,7 +9008,7 @@ __metadata: optional: true react: optional: true - checksum: 10c0/cf3eb74d3400098d65d24f8ded83535917624c8048e2f92a73de3189a2f697f5058542cc95bd1961ca22ef721a908db580daac659c16cc18173b80b3563e4d7c + checksum: 10c0/a54e708d192f18c4a4e26920ad63aead67469345f18a6cb87349a0d6cd73ccbaacb150f3c7f8cf1a162f1ea7d0da80885d57ac2554ea2f9818b54aa0c3a37b63 languageName: node linkType: hard @@ -12594,7 +12594,7 @@ __metadata: "@eslint/js": "npm:^9.8.0" "@monaco-editor/loader": "npm:^1.4.0" "@monaco-editor/react": "npm:^4.6.0" - "@observablehq/plot": "npm:^0.6.15" + "@observablehq/plot": "npm:^0.6.16" "@react-hook/resize-observer": "npm:^2.0.2" "@storybook/addon-essentials": "npm:^8.2.8" "@storybook/addon-interactions": "npm:^8.2.8" @@ -12605,7 +12605,7 @@ __metadata: "@storybook/test": "npm:^8.2.8" "@table-nav/core": "npm:^0.0.7" "@table-nav/react": "npm:^0.0.7" - "@tanstack/react-table": "npm:^8.19.3" + "@tanstack/react-table": "npm:^8.20.1" "@types/color": "npm:^3.0.6" "@types/css-tree": "npm:^2" "@types/electron": "npm:^1.6.10" @@ -12638,7 +12638,7 @@ __metadata: htl: "npm:^0.3.1" html-to-image: "npm:^1.11.11" immer: "npm:^10.1.1" - jotai: "npm:^2.9.1" + jotai: "npm:^2.9.2" less: "npm:^4.2.0" monaco-editor: "npm:^0.50.0" overlayscrollbars: "npm:^2.10.0" @@ -12677,7 +12677,7 @@ __metadata: vite-plugin-svgr: "npm:^4.2.0" vite-tsconfig-paths: "npm:^5.0.1" vitest: "npm:^2.0.5" - winston: "npm:^3.13.1" + winston: "npm:^3.14.1" languageName: unknown linkType: soft @@ -13687,9 +13687,9 @@ __metadata: languageName: node linkType: hard -"winston@npm:^3.13.1": - version: 3.13.1 - resolution: "winston@npm:3.13.1" +"winston@npm:^3.14.1": + version: 3.14.1 + resolution: "winston@npm:3.14.1" dependencies: "@colors/colors": "npm:^1.6.0" "@dabh/diagnostics": "npm:^2.0.2" @@ -13702,7 +13702,7 @@ __metadata: stack-trace: "npm:0.0.x" triple-beam: "npm:^1.3.0" winston-transport: "npm:^4.7.0" - checksum: 10c0/986a542f17b71935b88c14465939bf7eaf64d8d13c18792f74b0eb19b31abdaf472df92049a1d7882405076aba95de13cdb5b3243d0c04c4f9632fac85f57788 + checksum: 10c0/2d0f75a8110c00be97f71adee9f1afdba40a329659b98c6169062171304e34fe78877a9983a9dbd5755bbed3515a51f91cf582004e3781f1eb54de5b507e5207 languageName: node linkType: hard