bun v0.1.7 #999
Jarred-Sumner
announced in
Announcements
bun v0.1.7
#999
Replies: 2 comments 11 replies
-
after upgrading from v0.1.6 to v0.1.7 I started getting the good old |
Beta Was this translation helpful? Give feedback.
10 replies
-
How often can we expect a raise in requirement on GLIBC? I ask, because on Ubuntu 18.04 lts you need to manually build it as 2.27 is latest package. I can upgrade to 20 lts but will I have to constantly do it to run bun? No problem for production as I use container and can set it up as I wish, but for development its annoying. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
To upgrade:
To install:
curl https://bun.sh/install | bash
If you have any problems upgrading
Run the install script (you can run it multiple times):
curl https://bun.sh/install | bash
What's new
bun init
quickly start a new, empty project that uses Bun (similar to npm init).bun init
is a new subcommand inbun
.bun install
now supports private npm registries & scoped (authenticated) packagesThank you @soneymathew for your help with this.
bun install
now supports lifecycle hooks for project-level package.json (not dependencies)It runs postinstall scripts for your app's package.json, but ignores dependencies lifecycle hooks. This lets you use
husky
,lint-staged
, and other postinstall-dependent packages toolsMore new stuff:
express
is partially supported, thanks to @zhuzilin and @evanwashere. There is a lot more work to be done - it's not fast yet and it logs a spurious error on request, but it is better than not workingbun create
now lets you specify a start command so that you can say how to run the program in the outputprocess.revision
has the git sha that bun was built withBug fixes
bun:ffi
and a couple other places thanks to @sno2Buffer.isBuffer
no longer checks thatthis
is theBuffer
constructorBun.Transpiler
no longer does bun-specific transforms when it shouldn'tlatin1
andbinary
encodings in bun'sBuffer
implementationMisc:
New Contributors
Full Changelog: bun-v0.1.6...bun-v0.1.7
This discussion was created from the release bun v0.1.7.
Beta Was this translation helpful? Give feedback.
All reactions