Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.19.1 #7974

Closed
wants to merge 34 commits into from
Closed

Release 0.19.1 #7974

wants to merge 34 commits into from

Commits on Oct 17, 2024

  1. Configuration menu
    Copy the full SHA
    7a27cf2 View commit details
    Browse the repository at this point in the history
  2. Release the codegen types

    jleibs committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    f130123 View commit details
    Browse the repository at this point in the history
  3. More speculative links

    jleibs committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    5bc11e1 View commit details
    Browse the repository at this point in the history
  4. Give Video its own category

    jleibs committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    934276f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a3f726f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ad8d5a2 View commit details
    Browse the repository at this point in the history
  7. Bump versions to 0.19.0

    rerun-bot committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    5efb166 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2024

  1. Fix wasm-bindgen patch (#7970)

    ### What
    
    - Fixes the patch for `wasm-bindgen` output in `build-wasm.mjs`
    - The names of some variables changed (e.g. `cachedUint8Memory0` became
    `cachedUint8ArrayMemory0`)
    - Added an auto-generated file which stores one hash per file from the
    _unpatched_ output of `wasm-bindgen`
    - If the hash changes, that means the output has changed and the build
    will fail
    - We currently build the JS package on every PR, so we'll find out then
    and there
    - Note that the viewer we upload to GCS is _not_ patched, only the JS
    package (used in rerun.io/docs and notebooks) is patched.
    
    ### Checklist
    * [x] I have read and agree to [Contributor
    Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
    the [Code of
    Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)
    * [x] I've included a screenshot or gif (if applicable)
    * [x] I have tested the web demo (if applicable):
    * Using examples from latest `main` build:
    [rerun.io/viewer](https://rerun.io/viewer/pr/7970?manifest_url=https://app.rerun.io/version/main/examples_manifest.json)
    * Using full set of examples from `nightly` build:
    [rerun.io/viewer](https://rerun.io/viewer/pr/7970?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json)
    * [x] The PR title and labels are set such as to maximize their
    usefulness for the next release's CHANGELOG
    * [x] If applicable, add a new check to the [release
    checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)!
    * [x] If have noted any breaking changes to the log API in
    `CHANGELOG.md` and the migration guide
    
    - [PR Build Summary](https://build.rerun.io/pr/7970)
    - [Recent benchmark results](https://build.rerun.io/graphs/crates.html)
    - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html)
    
    To run all checks from `main`, comment on the PR with `@rerun-bot
    full-check`.
    jprochazk authored and jleibs committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    695dec0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    70e960c View commit details
    Browse the repository at this point in the history
  3. update hashes

    jprochazk committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    0b62434 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    08593ea View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. Configuration menu
    Copy the full SHA
    e002aad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0e15d47 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cb1ec0d View commit details
    Browse the repository at this point in the history
  4. Use the new env in github

    jleibs authored and jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    16373b2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c464912 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    7f4164a View commit details
    Browse the repository at this point in the history
  7. Missing pixi setup

    jleibs authored and jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    8bf6e17 View commit details
    Browse the repository at this point in the history
  8. Repair the lock file

    jleibs authored and jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    476e486 View commit details
    Browse the repository at this point in the history
  9. Just use the needed environment

    jleibs authored and jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    02941cc View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    410d1f7 View commit details
    Browse the repository at this point in the history
  11. Fix pixi.lock

    jleibs authored and jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    ed38397 View commit details
    Browse the repository at this point in the history
  12. Update "Migration Guides" redirect to point to 0.19. (#7837)

    Update "Migration Guides" redirect to point to 0.19, so visitors see the
    0.19 guide first instead of the 0.18 guide.
    kpreid authored and jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    2e5baad View commit details
    Browse the repository at this point in the history
  13. Dataframe v2: reference docs (#7820)

    Add a reference page for the dataframe APIs.
    
    It's still very barebones at this point because #7819 makes it very
    difficult to write snippets for this.
    
    But it is literally infinitely better than what's there right now:
    nothing.
    
    - DNM: requires #7817 
    - Closes #7828
    teh-cmc authored and jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    a9b334c View commit details
    Browse the repository at this point in the history
  14. update lockfile

    jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    1f79bec View commit details
    Browse the repository at this point in the history
  15. fix version

    jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    8320555 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    f02b334 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    07641ca View commit details
    Browse the repository at this point in the history
  18. update lockfile

    jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    b14bb79 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    14d3dbf View commit details
    Browse the repository at this point in the history
  20. add setuptools>75 to pixi

    jprochazk committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    82ae2c6 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    a0c9d14 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. Bump versions to 0.19.1

    rerun-bot committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    f98d7ec View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d44b701 View commit details
    Browse the repository at this point in the history