March 12, 2024  | WorkOS, the modern API for auth and user identity.workos.com Sponsor WorkOS enables B2B SaaS companies to accelerate enterprise adoption with identity management and complex features like Single Sign-On, SCIM, and User Management. Built for developers tired of using legacy providers like Auth0, WorkOS delivers a unified platform with modern APIs and a predictable pricing model that will scale seamlessly with your enterprise motion. |
| Rolldown: Rust-based web bundler by team of Viterolldown.rs github.com/yyx990803 github.com/Brooooooklyn github.com/hyf0 github.com/underfin @vite@webtoo.ls “Rolldown is a JavaScript bundler written in Rust intended to serve as the future bundler used in Vite. It provides Rollup-compatible APIs and plugin interface, but will be more similar to esbuild in scope.”
“Work in Progress: Rolldown is currently in active development and not usable for production yet. but we are open sourcing it now so we can start collaborating with community contributors.”
Vite is currently using two bundlers: esbuild for development and Rollup for production. They are moving to a single bundler so that the output for development and production is consistent and to avoid duplicating bundler work. |
| | | CISA announces initiative to fortify security of open source package registriessocket.dev @sarahgooding@fosstodon.org @SocketSecurity@fosstodon.org “The Cybersecurity and Infrastructure Security Agency (CISA), the U.S.’ lead cyber defense agency, is collaborating with the open source ecosystem on new initiatives to secure the critical infrastructure that powers modern digital life.”
CISA recommends best practices such as multi-factor authentication, a way to report vulnerabilities, etc.
“Five of the most widely used package registries have agreed to take steps towards securing their operations, guided by this new ‘Principles for Package Repository Security’ framework.”
- The Rust Foundation
- The Python Software Foundation
- Packagist and Composer
- npm
- Maven Central (maintained by Sonatype)
|
| New JavaScript features in Safari 17.4: Promise.withResolvers(), Object.groupBy(), Map.groupBy()webkit.org @jensimmons@front-end.social @jondavis@mastodon.social github.com/WebKit With Safari joining the ranks, the following stage 4 features are now supported by virtually all browsers:
Promise.withResolvers() looks like this:
const { promise, resolve, reject } = Promise.withResolvers();
Array grouping looks like this:
assert.deepEqual(
Object.groupBy(['a', 1, 'b', true, 8], x => typeof x),
{
string: [ 'a', 'b' ],
number: [ 1, 8 ],
boolean: [ true ],
}
);
assert.deepEqual(
Map.groupBy(['a', 1, 'b', true, 8], x => typeof x),
new Map([
[ 'string', [ 'a', 'b' ] ],
[ 'number', [ 1, 8 ] ],
[ 'boolean', [ true ] ]
])
);
|
| | | What do you think of this issue?If you have any comments or feedback, just reply to this email! | | This email was sent to {{ email | default }}. You can unsubscribe from this list here or update your preferences. | |
|