Skip to content

Bump satellite.js from 5.0.0 to 7.0.1 in /frontend#10

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/satellite.js-7.0.1
Open

Bump satellite.js from 5.0.0 to 7.0.1 in /frontend#10
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/satellite.js-7.0.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 20, 2026

Copy link
Copy Markdown

Bumps satellite.js from 5.0.0 to 7.0.1.

Release notes

Sourced from satellite.js's releases.

7.0.1

  • fix: propagate function return type did not have null in some of its overloads.

7.0.0

Highlights

🎉 Official docs site

🚀 Bulk Propagation API

Designed to bulk process many satellites and dates, this API is backed by C++ compiled to WASM, showing 3x to 12x improvement compared to propagate loop. See blog article: WASM: Making the Fastest SGP4 for the web for implementation details and benchmarks.

Note: since JavaScript engines are very good at optimization, speed up is not guaranteed in all cases.

☀️ Shadow calculation

Know if a satellite is lit or in the shadow; if in penumbra, know the fraction of Sun obscured by Earth, thus exactly how much light is coming to the satellite.

Breaking changes

  • BREAKING: Dropped support for Node.js of versions NOT listed here:

    • 20.19 and above
    • 22.13 and above
    • Major version 24 and newer
  • BREAKING: Dropped support for non-evergreen browsers.

  • BREAKING: Dropped AMD, CJS and minified builds. The library is now ESM only. If you're on Node.js that is listed above and use CJS, this doesn't affect you, because all current LTS Node.js support require(ESM) and this library works with that.

  • BREAKING: sunPos() now returns EciVec3<AU> as its rsun output, instead of number[]:

    // before
    const {
      rsun: [x, y, z], rtasc, decl
    } = sunPos(jday);
    // after
    const {
      rsun: { x, y, z }, rtasc, decl
    } = sunPos(jday);
  • BREAKING: The units of ndot and nddot fields on the SatRec object have changed:

    Field v6 v7
    ndot rev/day² rad/min²
    nddot rev/day³ rad/min³

    If you read these fields directly, you will need to adjust for the new units.

      import { constants } from 'satellite.js';

... (truncated)

Changelog

Sourced from satellite.js's changelog.

7.0.1 (2026-05-15)

  • Fix: propagate function did not have a null return type in its overloads.

7.0.0 (2026-03-24)

  • Feature: Official docs site. Because of that, Readme is now more concise.

  • Feature: Bulk Propagation API. Designed to bulk process many satellites and dates, this API is backed by C++ compiled to WASM, showing 3x to 12x improvement compared to propagate loop. See blog article: WASM: Making the Fastest SGP4 for the web for implementation details and benchmarks. Note: since JavaScript engines are very good at optimization, speed up is not guaranteed in all cases.

  • Feature: Shadow calculation. New shadowFraction function to know if a satellite is lit or in the shadow; if in penumbra, know the fraction of Sun obscured by Earth, thus exactly how much light is coming to the satellite.

  • BREAKING: Dropped support for Node.js of versions NOT listed here:

    • 20.19 and above
    • 22.13 and above
    • Major version 24 and newer
  • BREAKING: Dropped support for non-evergreen browsers.

  • BREAKING: Dropped AMD, CJS and minified builds. The library is now ESM only. If you're on Node.js that is listed above and use CJS, this doesn't affect you, because all current LTS Node.js support require(ESM) and this library works with that.

  • BREAKING: sunPos() now returns EciVec3<AU> as its rsun output, instead of number[]:

    // before
    const {
      rsun: [x, y, z], rtasc, decl
    } = sunPos(jday);
    // after
    const {
      rsun: { x, y, z }, rtasc, decl
    } = sunPos(jday);
  • BREAKING: The units of ndot and nddot fields on the SatRec object have changed:

    Field v6 v7
    ndot rev/day² rad/min²
    nddot rev/day³ rad/min³

    If you read these fields directly, you will need to adjust for the new units.

      import { constants } from 'satellite.js';
    const ndotRevPerDay2 = satrec.ndot * (constants.xpdotp * 1440);
    const nddotRevPerDay3 = satrec.nddot * (constants.xpdotp * 1440 * 1440);

6.0.2 (2026-01-07)

  • fix: twoline2satrec couldn't parse eccentricity padded with spaces instead of zeros (this only affects TLE generated by rare specialized software; see #153)

... (truncated)

Commits
  • 8346f34 Merge branch 'release/7.0.1'
  • e97be91 bump version
  • 55d2ab7 fix propagate overloads not having null return type
  • 443eff0 fix old api residuals in documentation
  • 8ad2a86 remove old benchmark results
  • 3b0617f clarify namespace import in readme
  • 35eab5c Merge branch 'develop'
  • d291e03 update changelog for 7.0.0
  • b4c5d19 bump version
  • 1614b88 simplify C settings fo vscode
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by 1valdis, a new releaser for satellite.js since your current version.


Dependabot compatibility score

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 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [satellite.js](https://github.com/shashwatak/satellite-js) from 5.0.0 to 7.0.1.
- [Release notes](https://github.com/shashwatak/satellite-js/releases)
- [Changelog](https://github.com/shashwatak/satellite-js/blob/develop/CHANGELOG.md)
- [Commits](shashwatak/satellite-js@5.0.0...7.0.1)

---
updated-dependencies:
- dependency-name: satellite.js
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 20, 2026
@dependabot dependabot Bot requested a review from yasvanth511 as a code owner June 20, 2026 00:56
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 20, 2026
@dependabot dependabot Bot changed the base branch from master to main June 20, 2026 01:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants