1 hours ago
varlet

v3.13.1

更新内容请查看CHANGELOG。 Please refer to CHANGELOG for details.

2 hours ago
astro

@astrojs/check@0.9.7-beta.1

Patch Changes

2 hours ago
astro

astro@6.0.0-beta.2

Major Changes

  • #15192 ada2808 Thanks @gameroman! - Removes support for CommonJS config files - (v6 upgrade guidance)

  • #15266 f7c9365 Thanks @florian-lefebvre! - Allows Astro.csp and context.csp to be undefined instead of throwing errors when csp: true is not configured

    When using the experimental Content Security Policy feature in Astro 5.x, context.csp was always defined but would throw if experimental.csp was not enabled in the Astro config.

    For the stable version of this API in Astro 6, context.csp can now be undefined if CSP is not enabled and its methods will never throw.

    What should I do?

    If you were using experimental CSP runtime utilities, you must now access methods conditionally:

    -Astro.csp.insertDirective("default-src 'self'");
    +Astro.csp?.insertDirective("default-src 'self'");

Patch Changes

  • #15208 8dbdd8e Thanks @matthewp! - Makes session.driver optional in config schema, allowing adapters to provide default drivers

    Adapters like Cloudflare, Netlify, and Node provide default session drivers, so users can now configure session options (like ttl) without explicitly specifying a driver.

  • #15260 abca1eb Thanks @ematipico! - Fixes an issue where adding new pages weren't correctly shown when using the development server.

  • #15214 6bab8c9 Thanks @ematipico! - Fixes an issue where the internal perfomance timers weren't correctly updated to reflect new build pipeline.

  • #15259 8670a69 Thanks @ematipico! - Fixes an issue where styles weren't correctly reloaded when using the @astrojs/cloudflare adapter.

  • #15205 12adc55 Thanks @martrapp! - Fixes an issue where the astro:page-load event did not fire on initial page loads.

  • #15269 6f82aae Thanks @ematipico! - Fixes a regression where build.serverEntry stopped working as expected.

2 hours ago
astro

@astrojs/cloudflare@13.0.0-beta.1

Patch Changes

  • #15269 6f82aae Thanks @ematipico! - Fixes a regression where build.serverEntry stopped working as expected.

  • Updated dependencies []:

    • @astrojs/underscore-redirects@1.0.0
2 hours ago
rspack

v2.0.0-alpha.0

Note 💡

This is an early preview release intended for testing only. It introduces a number of breaking changes that are not yet final.

See https://github.com/web-infra-dev/rspack/discussions/9270 for all breaking changes.

What's Changed

Breaking Changes 🛠

Bug Fixes 🐞

Document Updates 📖

Full Changelog: https://github.com/web-infra-dev/rspack/compare/v1.7.3...v2.0.0-alpha.0

4 hours ago
astro

@astrojs/db@0.19.0

Minor Changes

  • #15069 d14dfc2 Thanks @webstackdev! - Adds a --db-app-token CLI flag to astro db commands execute, push, query, and verify

    The new Astro DB CLI flags allow you to provide a remote database app token directly instead of ASTRO_DB_APP_TOKEN. This ensures that no untrusted code (e.g. CI / CD workflows) has access to the secret that is only needed by the astro db commands.

    The following command can be used to safely push database configuration changes to your project database:

    astro db push --db-app-token <token>
    

    See the Astro DB integration documentation for more information.

4 hours ago
astro

astro@5.16.13

Patch Changes

  • #15182 cb60ee1 Thanks @florian-lefebvre! - Adds a new getFontBuffer() method to retrieve font file buffers when using the experimental Fonts API

    The getFontData() helper function from astro:assets was introduced in 5.14.0 to provide access to font family data for use outside of Astro. One of the goals of this API was to be able to retrieve buffers using URLs.

    However, it turned out to be impactical and even impossible during prerendering.

    Astro now exports a new getFontBuffer() helper function from astro:assets to retrieve font file buffers from URL returned by getFontData(). For example, when using satori to generate OpenGraph images:

    // src/pages/og.png.ts
    
    import type{ APIRoute } from "astro"
    -import { getFontData } from "astro:assets"
    +import { getFontData, getFontBuffer } from "astro:assets"
    import satori from "satori"
    
    export const GET: APIRoute = (context) => {
      const data = getFontData("--font-roboto")
    
      const svg = await satori(
        <div style={{ color: "black" }}>hello, world</div>,
        {
          width: 600,
          height: 400,
          fonts: [
            {
              name: "Roboto",
    -          data: await fetch(new URL(data[0].src[0].url, context.url.origin)).then(res => res.arrayBuffer()),
    +          data: await getFontBuffer(data[0].src[0].url),
              weight: 400,
              style: "normal",
            },
          ],
        },
      )
    
      // ...
    }

    See the experimental Fonts API documentation for more information.

5 hours ago
Babylon.js

8.47.0

Changes:

  • #17707: Particles input
  • #17706: [InspectorV2] ErrorBoundary to prevent whole inspector crash. Gracefully handle null name/id
  • #17628: Add CPU/GPU/NPE properties and reorganize code
  • #3751: update what's new.md
  • #17698: Initial implementation of Area Lights emission texture.
  • #17705: [InspectorV2] Remove high contrast header
  • #17704: [InspectorV2] Animation Curve Editor
  • #17703: Inspector v2: misc frame graph improvements
  • #17701: Materialupdate
  • #17700: Fix BS tests locally
See More
  • #17699: Fix materials alphamode clone
  • #17560: WebGPU support for atmosphere add-on
  • #17697: Add apply torque physics v2
  • #17696: ConvertCubeMapTextureToSphericalPolynomial: Fix wrong calculated polynomials
  • #17695: Fix copy-paste error in voxel shadow shader
  • #17690: [InspectorV2] Slider and PropertyLine style updates
  • #17693: fix(ImageProcessingBlock): use 1.0 for alpha when vec3 input with convertInputToLinearSpace
  • #17694: Fix texture invert part

This list of changes was auto generated.

8 hours ago
rollup

v4.56.0

4.56.0

2026-01-22

Features

  • Track object property inclusions of dynamic namespace members (#6230)

Bug Fixes

  • Handle methods that access dynamically imported namespace members via this (#6230)

Pull Requests

  • #6230: Refine namespace handling (@lukastaegert)
10 hours ago
router

v1.154.7

Version 1.154.7 - 1/22/26, 2:40 AM (Manual Release)

Changes

Other

  • (19a92c5) by Birk Skyum

Packages

  • @tanstack/history@1.154.7
  • @tanstack/router-core@1.154.7
  • @tanstack/solid-router@1.154.7
  • @tanstack/react-router@1.154.7
  • @tanstack/vue-router@1.154.7
  • @tanstack/solid-router-ssr-query@1.154.7
  • @tanstack/react-router-ssr-query@1.154.7
  • @tanstack/vue-router-ssr-query@1.154.7
  • @tanstack/router-ssr-query-core@1.154.7
  • @tanstack/zod-adapter@1.154.7
  • @tanstack/valibot-adapter@1.154.7
  • @tanstack/arktype-adapter@1.154.7
  • @tanstack/router-devtools@1.154.7
  • @tanstack/solid-router-devtools@1.154.7
  • @tanstack/react-router-devtools@1.154.7
  • @tanstack/vue-router-devtools@1.154.7
  • @tanstack/router-devtools-core@1.154.7
  • @tanstack/router-generator@1.154.7
  • @tanstack/virtual-file-routes@1.154.7
  • @tanstack/router-cli@1.154.7
  • @tanstack/router-plugin@1.154.7
  • @tanstack/router-vite-plugin@1.154.7
  • @tanstack/eslint-plugin-router@1.154.7
  • @tanstack/solid-start@1.154.7
  • @tanstack/solid-start-client@1.154.7
  • @tanstack/solid-start-server@1.154.7
  • @tanstack/vue-start@1.154.7
  • @tanstack/vue-start-client@1.154.7
  • @tanstack/vue-start-server@1.154.7
  • @tanstack/start-client-core@1.154.7
  • @tanstack/start-server-core@1.154.7
  • @tanstack/start-storage-context@1.154.7
  • @tanstack/start-fn-stubs@1.154.7
  • @tanstack/react-start@1.154.7
  • @tanstack/react-start-client@1.154.7
  • @tanstack/react-start-server@1.154.7
  • @tanstack/start-plugin-core@1.154.7
  • @tanstack/start-static-server-functions@1.154.7
  • @tanstack/router-utils@1.154.7
  • @tanstack/nitro-v2-vite-plugin@1.154.7