From 6c9ceeb74da5035c79a5c78ebb52dbf2dd75f3c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Mar 2026 01:18:50 +0000 Subject: [PATCH] Version Packages --- .changeset/aligned-timeline-boundaries.md | 5 ----- .changeset/api-bbox-support.md | 10 ---------- .changeset/millesecond-fix.md | 5 ----- .changeset/spurious-extremes.md | 5 ----- .changeset/ticon-constituent-updates.md | 5 ----- packages/api/CHANGELOG.md | 15 +++++++++++++++ packages/api/package.json | 4 ++-- packages/cli/CHANGELOG.md | 8 ++++++++ packages/cli/package.json | 6 +++--- packages/neaps/CHANGELOG.md | 13 +++++++++++++ packages/neaps/package.json | 4 ++-- packages/tide-predictor/CHANGELOG.md | 14 ++++++++++++++ packages/tide-predictor/package.json | 2 +- 13 files changed, 58 insertions(+), 38 deletions(-) delete mode 100644 .changeset/aligned-timeline-boundaries.md delete mode 100644 .changeset/api-bbox-support.md delete mode 100644 .changeset/millesecond-fix.md delete mode 100644 .changeset/spurious-extremes.md delete mode 100644 .changeset/ticon-constituent-updates.md diff --git a/.changeset/aligned-timeline-boundaries.md b/.changeset/aligned-timeline-boundaries.md deleted file mode 100644 index e0f65066..00000000 --- a/.changeset/aligned-timeline-boundaries.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@neaps/tide-predictor": patch ---- - -Align timeline predictions to clock boundaries based on `timeFidelity`. For example, with the default timeFidelity of 600 seconds, predictions now fall on :00, :10, :20, :30, :40, :50 past the hour regardless of the requested start time. The start time will always snap to the previous clock boundary, and the end time will snap to the next clock boundary. diff --git a/.changeset/api-bbox-support.md b/.changeset/api-bbox-support.md deleted file mode 100644 index af37a41e..00000000 --- a/.changeset/api-bbox-support.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@neaps/api": minor -"neaps": patch ---- - -Add `bbox` query parameter to `GET /stations` for filtering stations by bounding box. Pass a comma-separated string `minLon,minLat,maxLon,maxLat` to return only stations within that geographic area. - -Also allows reserved characters (e.g. commas) in the `query` parameter, enabling searches like `"San Francisco, CA"`. - -Bump `@neaps/tide-database` dependency to `0.7`. diff --git a/.changeset/millesecond-fix.md b/.changeset/millesecond-fix.md deleted file mode 100644 index ab8fada2..00000000 --- a/.changeset/millesecond-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@neaps/tide-predictor": patch ---- - -Fix incorrect division for milleseconds in JD function (Thanks @dartheditous) diff --git a/.changeset/spurious-extremes.md b/.changeset/spurious-extremes.md deleted file mode 100644 index 6d63b603..00000000 --- a/.changeset/spurious-extremes.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@neaps/tide-predictor": minor ---- - -Filter spurious extremes from tide predictions using prominence threshold and minimum temporal gap criteria. diff --git a/.changeset/ticon-constituent-updates.md b/.changeset/ticon-constituent-updates.md deleted file mode 100644 index 53d15761..00000000 --- a/.changeset/ticon-constituent-updates.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@neaps/tide-predictor": patch ---- - -Update T3, R3, 3N2, and 3L2 constituent definitions from TICON manual diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index 687d3c73..c01a3556 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -1,5 +1,20 @@ # @neaps/api +## 0.5.0 + +### Minor Changes + +- [`1af0c22`](https://github.com/openwatersio/neaps/commit/1af0c22bb2181915d879821c17ed909731d2f1d2) Thanks [@bkeepers](https://github.com/bkeepers)! - Add `bbox` query parameter to `GET /stations` for filtering stations by bounding box. Pass a comma-separated string `minLon,minLat,maxLon,maxLat` to return only stations within that geographic area. + + Also allows reserved characters (e.g. commas) in the `query` parameter, enabling searches like `"San Francisco, CA"`. + + Bump `@neaps/tide-database` dependency to `0.7`. + +### Patch Changes + +- Updated dependencies [[`1af0c22`](https://github.com/openwatersio/neaps/commit/1af0c22bb2181915d879821c17ed909731d2f1d2)]: + - neaps@0.6.1 + ## 0.4.0 ### Minor Changes diff --git a/packages/api/package.json b/packages/api/package.json index 12377665..f2d2ce6d 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@neaps/api", - "version": "0.4.0", + "version": "0.5.0", "description": "HTTP JSON API for tide predictions", "repository": { "type": "git", @@ -33,7 +33,7 @@ "cors": "^2.8.5", "express": "^4.18.2", "express-openapi-validator": "^5.1.6", - "neaps": "^0.6.0" + "neaps": "^0.6.1" }, "devDependencies": { "@types/compression": "^1.7.5", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index ef27f187..e8e936a8 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # @neaps/cli +## 0.1.1 + +### Patch Changes + +- Updated dependencies [[`1af0c22`](https://github.com/openwatersio/neaps/commit/1af0c22bb2181915d879821c17ed909731d2f1d2)]: + - @neaps/api@0.5.0 + - neaps@0.6.1 + ## 0.1.0 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 23bfb6b7..ffa1475f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@neaps/cli", - "version": "0.1.0", + "version": "0.1.1", "description": "Command line interface for Neaps tide prediction", "keywords": [ "tides", @@ -39,12 +39,12 @@ "test": "vitest" }, "dependencies": { - "@neaps/api": "^0.4.0", + "@neaps/api": "^0.5.0", "@neaps/tide-database": "0.7", "chalk": "^5.6.2", "cli-table3": "^0.6.5", "commander": "^14.0.3", - "neaps": "^0.6.0" + "neaps": "^0.6.1" }, "devDependencies": { "@types/node": "^25.0.2", diff --git a/packages/neaps/CHANGELOG.md b/packages/neaps/CHANGELOG.md index 00600a46..1b098d9f 100644 --- a/packages/neaps/CHANGELOG.md +++ b/packages/neaps/CHANGELOG.md @@ -1,5 +1,18 @@ # neaps +## 0.6.1 + +### Patch Changes + +- [`1af0c22`](https://github.com/openwatersio/neaps/commit/1af0c22bb2181915d879821c17ed909731d2f1d2) Thanks [@bkeepers](https://github.com/bkeepers)! - Add `bbox` query parameter to `GET /stations` for filtering stations by bounding box. Pass a comma-separated string `minLon,minLat,maxLon,maxLat` to return only stations within that geographic area. + + Also allows reserved characters (e.g. commas) in the `query` parameter, enabling searches like `"San Francisco, CA"`. + + Bump `@neaps/tide-database` dependency to `0.7`. + +- Updated dependencies [[`6feeca0`](https://github.com/openwatersio/neaps/commit/6feeca09bed1be0dde7b529965427655db004fbe), [`ccb662f`](https://github.com/openwatersio/neaps/commit/ccb662ff1742fcd504b8dcbdf876781a96ca4e71), [`c1f0144`](https://github.com/openwatersio/neaps/commit/c1f014473b63d0720f0f313b4c9d6b1b50d00a72), [`764b8c0`](https://github.com/openwatersio/neaps/commit/764b8c0dd0fb07bad272fcc4a39f6bd1af97814a)]: + - @neaps/tide-predictor@0.9.0 + ## 0.6.0 ### Minor Changes diff --git a/packages/neaps/package.json b/packages/neaps/package.json index 2127a200..e37a175f 100644 --- a/packages/neaps/package.json +++ b/packages/neaps/package.json @@ -1,6 +1,6 @@ { "name": "neaps", - "version": "0.6.0", + "version": "0.6.1", "description": "Tide predictions", "keywords": [ "tides", @@ -35,6 +35,6 @@ }, "dependencies": { "@neaps/tide-database": "0.7", - "@neaps/tide-predictor": "^0.8.0" + "@neaps/tide-predictor": "^0.9.0" } } diff --git a/packages/tide-predictor/CHANGELOG.md b/packages/tide-predictor/CHANGELOG.md index 42be8aad..4bbd5f61 100644 --- a/packages/tide-predictor/CHANGELOG.md +++ b/packages/tide-predictor/CHANGELOG.md @@ -1,5 +1,19 @@ # @neaps/tide-predictor +## 0.9.0 + +### Minor Changes + +- [#220](https://github.com/openwatersio/neaps/pull/220) [`c1f0144`](https://github.com/openwatersio/neaps/commit/c1f014473b63d0720f0f313b4c9d6b1b50d00a72) Thanks [@bkeepers](https://github.com/bkeepers)! - Filter spurious extremes from tide predictions using prominence threshold and minimum temporal gap criteria. + +### Patch Changes + +- [#234](https://github.com/openwatersio/neaps/pull/234) [`6feeca0`](https://github.com/openwatersio/neaps/commit/6feeca09bed1be0dde7b529965427655db004fbe) Thanks [@bkeepers](https://github.com/bkeepers)! - Align timeline predictions to clock boundaries based on `timeFidelity`. For example, with the default timeFidelity of 600 seconds, predictions now fall on :00, :10, :20, :30, :40, :50 past the hour regardless of the requested start time. The start time will always snap to the previous clock boundary, and the end time will snap to the next clock boundary. + +- [#257](https://github.com/openwatersio/neaps/pull/257) [`ccb662f`](https://github.com/openwatersio/neaps/commit/ccb662ff1742fcd504b8dcbdf876781a96ca4e71) Thanks [@bkeepers](https://github.com/bkeepers)! - Fix incorrect division for milleseconds in JD function (Thanks @dartheditous) + +- [#253](https://github.com/openwatersio/neaps/pull/253) [`764b8c0`](https://github.com/openwatersio/neaps/commit/764b8c0dd0fb07bad272fcc4a39f6bd1af97814a) Thanks [@bkeepers](https://github.com/bkeepers)! - Update T3, R3, 3N2, and 3L2 constituent definitions from TICON manual + ## 0.8.0 ### Minor Changes diff --git a/packages/tide-predictor/package.json b/packages/tide-predictor/package.json index 748601a0..6d867228 100644 --- a/packages/tide-predictor/package.json +++ b/packages/tide-predictor/package.json @@ -1,6 +1,6 @@ { "name": "@neaps/tide-predictor", - "version": "0.8.0", + "version": "0.9.0", "description": "Tide predictor", "repository": { "type": "git",