chore(deps): update all non-major dependencies #25
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^4.20231218.0
->^4.20240129.0
^0.31.0
->^0.32.0
^0.3.6
->^0.4.2
^1.251.0
->^1.251.1
^2.11.1
->^2.12.3
^8.3.4
->^8.3.7
^8.3.6
->^8.3.7
^5.17.4
->^5.17.19
^5.17.4
->^5.17.19
^5.17.4
->^5.17.19
^0.58.3
->^0.58.4
^0.0.10
->^0.2.3
^10.7.1
->^10.7.2
^10.7.1
->^10.7.2
^10.7.1
->^10.7.2
v5.2.0
->v5.4.0
^9.2.2
->^9.3.0
^16.3.1
->^16.4.1
^0.19.13
->^0.20.13
^0.29.0
->^0.29.3
^10.7.1
->^10.7.2
^1.8.22
->^1.8.27
^3.1.17
->^3.1.22
Release Notes
cloudflare/workerd (@cloudflare/workers-types)
v4.20240129.0
Compare Source
growthbook/growthbook (@growthbook/growthbook)
v0.32.0
Compare Source
document.body
was availablesetAttributes
,setAttributeOverrides
,setForcedVariations
,setURL
. No code changes are required since these all returnedvoid
prior to this.libsql/libsql-client-ts (@libsql/client)
v0.4.2
Compare Source
v0.4.1
Compare Source
v0.4.0
Compare Source
@libsql/client-wasm
package.newrelic/newrelic-browser-agent (@newrelic/browser-agent)
v1.251.1
Compare Source
Bug Fixes
TanStack/query (@tanstack/query-core)
v5.17.19
Compare Source
Version 5.17.19 - 1/20/2024, 2:40 PM
Changes
Fix
a7891b9
) by Nicolas JPackages
unocss/unocss (@unocss/reset)
v0.58.4
Compare Source
🚀 Features
important
option - by @xsjcTony in https://github.com/unocss/unocss/issues/3484 (0ba92)🐞 Bug Fixes
position
type for jsx - by @xsjcTony in https://github.com/unocss/unocss/issues/3528 (cb084)View changes on GitHub
vite-pwa/assets-generator (@vite-pwa/assets-generator)
v0.2.3
Compare Source
🚀 Features
View changes on GitHub
v0.2.2
Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.2.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.2.0
Compare Source
🚨 Breaking Changes
View changes on GitHub
v0.1.0
Compare Source
🚨 Breaking Changes
View changes on GitHub
v0.0.11
Compare Source
No significant changes
View changes on GitHub
amannn/action-semantic-pull-request (amannn/action-semantic-pull-request)
v5.4.0
Compare Source
Features
github.api_url
as default forgithubBaseUrl
(#243 by @fty4) (4d5734a)v5.3.0
Compare Source
Features
motdotla/dotenv (dotenv)
v16.4.1
Compare Source
path
option #797v16.4.0
Compare Source
error.code
to error messages around.env.vault
decryption handling #795.env.vault
file when filename(s) passed as an array #784drizzle-team/drizzle-kit-mirror (drizzle-kit)
v0.20.13
: 0.20.13Compare Source
v0.20.12
: 0.20.12Compare Source
Made
schemaTo
optional during the serialize step, preventing unnecessary drop+create foreign key statements from appearing.Fixed an issue: when using a barrel file, drizzle-kit was exporting duplicated tables, leading to an error with multiple indexes having the same name. It should now remove duplicates and function as expected
v0.20.11
: 0.20.11Compare Source
v0.20.10
: 0.20.10Compare Source
v0.20.9
: 0.20.9Compare Source
v0.20.8
: 0.20.8Compare Source
Bug Fixes
introspect
andpush
for PlanetScale. A newly added feature to PlanetScale was not functioning properly with the 'drizzle-kit introspect' and 'push' commands, failing to retrieve foreign keys from a database. This issue should now be resolvedNew Drivers
🎉 Expo SQLite Driver is available
For starting with Expo SQLite Driver, you need to install
expo-sqlite
anddrizzle-orm
packages.Then, you can use it like this:
If you want to use Drizzle Migrations, you need to update babel and metro configuration files.
babel-plugin-inline-import
package.babel.config.js
andmetro.config.js
files.babel.config.js
module.exports = function(api) { api.cache(true); return { presets: ['babel-preset-expo'], + plugins: [["inline-import", { "extensions": [".sql"] }]] }; };
metro.config.js
const { getDefaultConfig } = require('expo/metro-config'); /** @​type {import('expo/metro-config').MetroConfig} */ const config = getDefaultConfig(__dirname); +config.resolver.sourceExts.push('sql'); module.exports = config;
drizzle.config.ts
file in your project root folder.After creating schema file and drizzle.config.ts file, you can generate migrations like this:
Then you need to import
migrations.js
file in yourApp.tsx
file from./drizzle
folder and use hookuseMigrations
ormigrate
function.v0.20.7
: 0.20.7Compare Source
Bug fixes
Improvements
v0.20.6
Compare Source
v0.20.5
Compare Source
v0.20.4
Compare Source
v0.20.3
Compare Source
v0.20.2
Compare Source
v0.20.1
Compare Source
v0.20.0
: 0.20.0Compare Source
New Features
New way to define drizzle.config using
defineConfig
functionPossibility to access Cloudflare D1 with Drizzle Studio using wrangler.toml file
You can now use Drizzle Studio with your D1 database. Please note that it may be slow at times because Drizzle Studio utilizes Wrangler CLI calls to perform data selection, updates, deletions, and insertions. The speed of these operations depends on the performance of Wrangler CLI calls.
To use Drizzle Studio with the D1 database, you need to provide the file path to your
wrangler.toml
file and specify thedbName
you are using in Cloudflare D1And then run
drizzle-kit studio
Drizzle Studio is migrating to https://local.drizzle.studio/
Previously, Drizzle Studio used
127.0.0.1:4983
as the default host and port for the web page. Currently, Drizzle Studio will always be hosted onhttps://local.drizzle.studio/
, connecting to the backend at127.0.0.1:4983
. You can modify the host and port for the backend server by using the--host
and--port
options indrizzle-kit studio
.local.drizzle.studio
provides the ability to ship updates to the Drizzle Studio web UI immediately, eliminating the need for constantdrizzle-kit
upgradesbigint unsigned
supportThis option is now available in the introspect, push, and generate commands.
primaryKeys
andforeignKeys
now can have custom namesThis option is now available in the introspect, push, and generate commands.
Environment variables are now fetched automatically
As mentioned many times, you can finally skip fetching environment variables to use with the
drizzle.config
file. Drizzle Kit will handle this process automatically.Drizzle Studio Updates
public
will be the default, and the only choice.Improvements
libsql_wasm_func_table
from sqlite introspect and pushprimaryKey
columns order for composite constraintsBug Fixes
turso
orlibsql
driver user was seeing an error with nobetter-sqlite3
dependencytableFilters
to cli options in all push commandsConfiguration
📅 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.