Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

remult

Package Overview
Dependencies
Maintainers
0
Versions
631
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remult - npm Package Versions

13
63

0.27.24-next.0

Diff

noamhonig
published 0.27.23 •

Changelog

Source

[0.27.23] 2024-11-23

  • Added min, max and range validators by @YonatanKra
  • Quality of life improvements to admin by @jycouet & @ermincelikovic
    • In the office hour with @ermincelikovic (and cursor) we :
    • reduce the column size of numbers & align right
    • manage keyboard navigation in the grid
    • manage shortcuts
    • CTRL+Enter => Save the row
    • CTRL+Esc => Cancel the tow
    • CTRL+SHIFT+Enter => Save all rows
    • CTRL+SHIFT+Esc => Cancel all rows
  • Added EntityError - now when insert/update etc... fail they throw this specific error.
  • Log queries if they are greater than equals the threshold by @arikfr in https://github.com/remult/remult/pull/571
  • Fixed an issue with decorators and optional null field
  • fixed issue with aggregate in query
  • Fixed issue with subscribe to entity changes and relations
  • Remult create adjusted for Svelte 5 by @jycouet
noamhonig
published 0.27.23-next.5 •

noamhonig
published 0.27.23-next.4 •

noamhonig
published 0.27.23-next.3 •

noamhonig
published 0.27.23-next.2 •

noamhonig
published 0.27.23-next.1 •

noamhonig
published 0.27.23-next.0 •

noamhonig
published 0.27.22 •

Changelog

Source

[0.27.22] 2024-11-08

  • Improved support for sveltekit ssr. To configure:

    • To enable remult across all sveltekit route

      // src/hooks.server.ts
      import { api } from './server/api'
      export const handle = api
      
    • To Use remult in ssr PageLoad - this will leverage the event's fetch to load data on the server without reloading it on the frontend, and abiding to all api rules even when it runs on the server

      // src/routes/+page.ts
      import { remult } from 'remult'
      import type { PageLoad } from './$types'
      
      export const load = (async (event) => {
        // Instruct remult to use the special svelte fetch to fetch data on server side page load
        remult.useFetch(event.fetch)
        return repo(Task).find()
      }) satisfies PageLoad
      
noamhonig
published 0.27.22-next.1 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc