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

Upgrade npm deps to latest, Rust to 1.84.0, emsdk to 3.1.68, artichoke to latest, and cargo deps to latest #1177

Merged
merged 8 commits into from
Jan 12, 2025

Conversation

lopopolo
Copy link
Member

Per the Rust 1.84.0 release notes:

The wasm32-unknown-emscripten target's binary release of the standard library is now built with the latest emsdk 3.1.68, which fixes an ABI-incompatibility with Emscripten >= 3.1.42. If you are locally using a version of emsdk with an incompatible ABI (e.g. before 3.1.42 or a future one), you should build your code with -Zbuild-std to ensure that std uses the correct ABI.

Additionally, pull in artichoke/artichoke#2794 from upstream artichoke to ensure artichoke-backend links correctly on Rust 1.84.0.

```console
$ cargo update
    Updating git repository `https://github.com/artichoke/artichoke.git`
    Updating crates.io index
     Locking 55 packages to latest compatible versions
    Updating aho-corasick v1.1.2 -> v1.1.3
    Updating bindgen v0.69.1 -> v0.69.5
    Updating bitflags v2.4.1 -> v2.7.0
    Updating bstr v1.10.0 -> v1.11.3
    Updating bumpalo v3.14.0 -> v3.16.0
    Updating bytecount v0.6.7 -> v0.6.8
    Updating cc v1.0.83 -> v1.2.9
    Updating clang-sys v1.6.1 -> v1.8.1
    Updating const_fn v0.4.9 -> v0.4.11
    Updating core-foundation-sys v0.8.6 -> v0.8.7
      Adding either v1.13.0
    Updating focaccia v1.4.0 -> v1.6.0
    Updating getrandom v0.2.11 -> v0.2.15
    Updating glob v0.3.1 -> v0.3.2
    Updating iana-time-zone v0.1.58 -> v0.1.61
    Updating intaglio v1.9.1 -> v1.10.0
      Adding itertools v0.12.1
    Updating jobserver v0.1.27 -> v0.1.32
    Updating js-sys v0.3.66 -> v0.3.76
    Updating lazy_static v1.4.0 -> v1.5.0
    Updating libc v0.2.162 -> v0.2.169
    Updating libloading v0.7.4 -> v0.8.6
    Updating libm v0.2.8 -> v0.2.11
    Updating log v0.4.20 -> v0.4.22
    Updating memchr v2.7.1 -> v2.7.4
    Updating once_cell v1.19.0 -> v1.20.2
    Removing peeking_take_while v0.1.2
    Updating proc-macro2 v1.0.71 -> v1.0.93
    Updating quote v1.0.33 -> v1.0.38
    Updating raw-parts v2.0.0 -> v2.2.0
    Updating regex v1.10.2 -> v1.11.1
    Updating regex-automata v0.4.3 -> v0.4.9
    Updating regex-syntax v0.8.2 -> v0.8.5
    Updating serde v1.0.193 -> v1.0.217
    Updating serde_derive v1.0.193 -> v1.0.217
    Updating simdutf8 v0.1.4 -> v0.1.5
    Updating strftime-ruby v1.0.1 -> v1.1.0
    Updating syn v2.0.43 -> v2.0.96
    Updating tzdb v0.6.0 -> v0.6.1
      Adding tzdb_data v0.1.3
    Updating unicode-ident v1.0.12 -> v1.0.14
    Updating wasm-bindgen v0.2.89 -> v0.2.99
    Updating wasm-bindgen-backend v0.2.89 -> v0.2.99
    Updating wasm-bindgen-macro v0.2.89 -> v0.2.99
    Updating wasm-bindgen-macro-support v0.2.89 -> v0.2.99
    Updating wasm-bindgen-shared v0.2.89 -> v0.2.99
    Removing winapi v0.3.9
    Removing winapi-i686-pc-windows-gnu v0.4.0
    Removing winapi-x86_64-pc-windows-gnu v0.4.0
    Updating windows-core v0.51.1 -> v0.52.0
    Updating windows-targets v0.48.5 -> v0.52.6
    Updating windows_aarch64_gnullvm v0.48.5 -> v0.52.6
    Updating windows_aarch64_msvc v0.48.5 -> v0.52.6
    Updating windows_i686_gnu v0.48.5 -> v0.52.6
      Adding windows_i686_gnullvm v0.52.6
    Updating windows_i686_msvc v0.48.5 -> v0.52.6
    Updating windows_x86_64_gnu v0.48.5 -> v0.52.6
    Updating windows_x86_64_gnullvm v0.48.5 -> v0.52.6
    Updating windows_x86_64_msvc v0.48.5 -> v0.52.6
```
@lopopolo lopopolo added A-deps Area: Source and library dependencies. O-wasm-emscripten Target: Support for building the `wasm32-unknown-emscripten` target. A-build-target Area: Support for builds of specific targets. labels Jan 12, 2025
@lopopolo lopopolo changed the title Upgrade npm deps to latest, Rust to 1.84.0, emsdk to 3.1.68, and cargo deps to latest Upgrade npm deps to latest, Rust to 1.84.0, emsdk to 3.1.68, artichoke to latest, and cargo deps to latest Jan 12, 2025
@lopopolo lopopolo added the A-artichoke Area: Version bumps for Artichoke Ruby dependency. label Jan 12, 2025
```
6 | / compile_error!(
7 | |     "iana-time-zone is currently implemented for Linux, Window, MacOS, FreeBSD, NetBSD, \
8 | |     OpenBSD, Dragonfly, WebAssembly (browser), iOS, Illumos, Android, AIX, Solaris and Haiku.",
9 | | );
  | |_^
```

See:

- strawlab/iana-time-zone#130
@lopopolo lopopolo force-pushed the dev/lopopolo-rev-rev-rev branch from 2c32af0 to 7b6758c Compare January 12, 2025 21:41
@lopopolo lopopolo merged commit 4c9fac2 into trunk Jan 12, 2025
12 checks passed
@lopopolo lopopolo deleted the dev/lopopolo-rev-rev-rev branch January 12, 2025 21:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-artichoke Area: Version bumps for Artichoke Ruby dependency. A-build-target Area: Support for builds of specific targets. A-deps Area: Source and library dependencies. O-wasm-emscripten Target: Support for building the `wasm32-unknown-emscripten` target.
Development

Successfully merging this pull request may close these issues.

1 participant