lasseklovstad / gata

0 stars 0 forks source link

chore(deps): update npm non-major dependencies #159

Closed renovate[bot] closed 4 months ago

renovate[bot] commented 4 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
drizzle-kit 0.22.1 -> 0.22.2 age adoption passing confidence
drizzle-orm (source) 0.31.0 -> 0.31.1 age adoption passing confidence
isbot (source) 5.1.8 -> 5.1.9 age adoption passing confidence
miniflare (source) 3.20240524.1 -> 3.20240524.2 age adoption passing confidence
slate-react 0.104.0 -> 0.105.0 age adoption passing confidence
wrangler (source) 3.58.0 -> 3.59.0 age adoption passing confidence

Release Notes

drizzle-team/drizzle-kit-mirror (drizzle-kit) ### [`v0.22.2`](https://togithub.com/drizzle-team/drizzle-kit-mirror/compare/v0.22.1...c0b07b840f515eac92f5aaeecf744824fd35348c) [Compare Source](https://togithub.com/drizzle-team/drizzle-kit-mirror/compare/v0.22.1...v0.22.2)
drizzle-team/drizzle-orm (drizzle-orm) ### [`v0.31.1`](https://togithub.com/drizzle-team/drizzle-orm/releases/tag/0.31.1) [Compare Source](https://togithub.com/drizzle-team/drizzle-orm/compare/0.31.0...0.31.1) ### New Features #### Live Queries 🎉 > ### For a full explanation about Drizzle + Expo welcome to [discussions](https://togithub.com/drizzle-team/drizzle-orm/discussions/2447) As of `v0.31.1` Drizzle ORM now has native support for Expo SQLite Live Queries! We've implemented a native `useLiveQuery` React Hook which observes necessary database changes and automatically re-runs database queries. It works with both SQL-like and Drizzle Queries: ```tsx import { useLiveQuery, drizzle } from 'drizzle-orm/expo-sqlite'; import { openDatabaseSync } from 'expo-sqlite/next'; import { users } from './schema'; import { Text } from 'react-native'; const expo = openDatabaseSync('db.db'); const db = drizzle(expo); const App = () => { // Re-renders automatically when data changes const { data } = useLiveQuery(db.select().from(users)); // const { data, error, updatedAt } = useLiveQuery(db.query.users.findFirst()); // const { data, error, updatedAt } = useLiveQuery(db.query.users.findMany()); return {JSON.stringify(data)}; }; export default App; ``` We've intentionally not changed the API of ORM itself to stay with conventional React Hook API, so we have `useLiveQuery(databaseQuery)` as opposed to `db.select().from(users).useLive()` or `db.query.users.useFindMany()` We've also decided to provide `data`, `error` and `updatedAt` fields as a result of hook for concise explicit error handling following practices of `React Query` and `Electric SQL`
omrilotan/isbot (isbot) ### [`v5.1.9`](https://togithub.com/omrilotan/isbot/blob/HEAD/CHANGELOG.md#519) [Compare Source](https://togithub.com/omrilotan/isbot/compare/v5.1.8...v5.1.9) - \[Pattern] A more careful match for RSS substring
cloudflare/workers-sdk (miniflare) ### [`v3.20240524.2`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/miniflare/CHANGELOG.md#3202405242) [Compare Source](https://togithub.com/cloudflare/workers-sdk/compare/miniflare@3.20240524.1...miniflare@3.20240524.2) ##### Patch Changes - [#​5922](https://togithub.com/cloudflare/workers-sdk/pull/5922) [`bdbb7f8`](https://togithub.com/cloudflare/workers-sdk/commit/bdbb7f890d3fa5b6fa7ac79a3bb650ece9417fb2) Thanks [@​dario-piotrowicz](https://togithub.com/dario-piotrowicz)! - fix: Allow the magic proxy to handle functions returning functions Previously functions returning functions would not be handled by the magic proxy, the changes here enable the above, allowing for code such as the following: ```js const mf = new Miniflare(/* ... */); const { functionsFactory } = await mf.getBindings(); const fn = functionsFactory.getFunction(); const functionResult = fn(); ``` This also works with the native workers RPC mechanism, allowing users to return functions in their RPC code.
ianstormtaylor/slate (slate-react) ### [`v0.105.0`](https://togithub.com/ianstormtaylor/slate/releases/tag/slate-react%400.105.0) [Compare Source](https://togithub.com/ianstormtaylor/slate/compare/slate-react@0.104.0...slate-react@0.105.0) ##### Minor Changes - [#​5654](https://togithub.com/ianstormtaylor/slate/pull/5654) [`2a8b4e95`](https://togithub.com/ianstormtaylor/slate/commit/2a8b4e958bd02f3b70da51c3880fd764270424ad) Thanks [@​alex-starostin](https://togithub.com/alex-starostin)! - Make capitalizing work for iOS
cloudflare/workers-sdk (wrangler) ### [`v3.59.0`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3590) [Compare Source](https://togithub.com/cloudflare/workers-sdk/compare/wrangler@3.58.0...wrangler@3.59.0) ##### Minor Changes - [#​5963](https://togithub.com/cloudflare/workers-sdk/pull/5963) [`bf803d7`](https://togithub.com/cloudflare/workers-sdk/commit/bf803d74c2bd1fc9f6e090bad08db09c6ff88246) Thanks [@​Skye-31](https://togithub.com/Skye-31)! - Feature: Add support for hiding the `"unsafe" fields are experimental` warning using an environment variable By setting `WRANGLER_DISABLE_EXPERIMENTAL_WARNING` to any truthy value, these warnings will be hidden. ##### Patch Changes - Updated dependencies \[[`bdbb7f8`](https://togithub.com/cloudflare/workers-sdk/commit/bdbb7f890d3fa5b6fa7ac79a3bb650ece9417fb2)]: - miniflare@3.20240524.2

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

â™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Mend Renovate. View repository job log here.