Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): Update non-major #46

Merged
merged 1 commit into from
Aug 17, 2023
Merged

fix(deps): Update non-major #46

merged 1 commit into from
Aug 17, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 7, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sanity/client (source) 6.4.0 -> 6.4.7 age adoption passing confidence
@sanity/vision (source) 3.14.5 -> 3.15.1 age adoption passing confidence
@types/react (source) 18.2.18 -> 18.2.20 age adoption passing confidence
@​vercel/og 0.5.10 -> 0.5.11 age adoption passing confidence
autoprefixer ^10.4.14 -> ^10.4.15 age adoption passing confidence
eslint (source) ^8.46.0 -> ^8.47.0 age adoption passing confidence
eslint-config-next (source) 13.4.12 -> 13.4.17 age adoption passing confidence
next (source) 13.4.12 -> 13.4.17 age adoption passing confidence
next-sanity 5.1.6 -> 5.4.1 age adoption passing confidence
postcss (source) ^8.4.27 -> ^8.4.28 age adoption passing confidence
prettier (source) ^3.0.1 -> ^3.0.2 age adoption passing confidence
prettier-plugin-tailwindcss ^0.4.1 -> ^0.5.3 age adoption passing confidence
sanity (source) 3.14.5 -> 3.15.1 age adoption passing confidence

Release Notes

sanity-io/client (@​sanity/client)

v6.4.7

Compare Source

Bug Fixes
  • don't set signal on fetch unless provided to client.fetch (#​298) (e1d5210)

v6.4.6

Compare Source

Bug Fixes
  • client.fetch: allow setting perspective and resultSourceMap on fetch (18eedfd)

v6.4.5

Compare Source

Bug Fixes

v6.4.4

Compare Source

Bug Fixes

v6.4.3

Compare Source

Bug Fixes
  • add react-server export condition (3a81261)

v6.4.2

Compare Source

Bug Fixes

v6.4.1

Compare Source

Bug Fixes
  • add node.module export condition (6ec1d7e)
sanity-io/sanity (@​sanity/vision)

v3.15.1

Compare Source

Installation and upgrading

To initiate a new Studio without installing the CLI globally:

npm create sanity@latest

To upgrade a v3 Studio, run this command in its folder:

npm install sanity@latest

🐛 Notable bugfixes

  • Fixes an issue where package managers were pulling wrong version of the get-it package which is a sub-dependency of the @sanity/client package
  • Fixes an issue that would sometimes cause document lists to not refresh properly after adding or removing a document
  • Fixes issues where timeouts were being cancelled (thanks @​balexand!)
  • Fixes an issue where certain GROQ-filters used for access control rules would crash the studio

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Bjørge Næss | chore: upgrade typescript to 5.x (#​4809) | f7d7b8b
Cody Olsen | fix: ensure @sanity/client pulls in the right get-it version (#​4811) | 41662a3
Bjørge Næss | fix: delay refetching for listener events arriving with visibility != query (#​4795) | d06b0e0
Brian Alexander | fix(core): timeouts randomly being cancelled (#​4815) | 390c8e5
Espen Hovlandsdal | fix(core): parenthesis around GROQ-filters crashing ACL checks (#​4820) | 281ac7a

v3.15.0

Compare Source

Installation and upgrading

To initiate a new Studio without installing the CLI globally:

npm create sanity@latest

To upgrade a v3 Studio, run this command in its folder:

npm install sanity@latest

✨ Highlights

  • Adds new token login method for rare cases when the more secure cookie approach is not viable/wanted
  • Enables specifying authentication options using an object instead of createAuthStore()
  • Adds new is_defined filter to GraphQL APIs, mirroring the defined() function in GROQ. GraphQL APIs will have to be re-deployed to enable the new filter.

🐛 Notable bugfixes

  • Improves performance when fetching projects list as part of the sanity init CLI command
  • Fixes an issue that would give intermittent validation errors for valid string values when using a regex with global flag
  • Fixes an issue where references to undeclared document types would never load
  • Improves error UIs for reference values
  • Improves the changes pane to show path line and change indicator correctly for the following field types:
    • Array of strings (array of type string)
    • Array of tags (array of type string with layout: 'tags')
    • Array of strings (array of type string with options.list)
    • Array of emails (array of type email)

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Espen Hovlandsdal | feat(auth): allow using explicit token mode for authentication (#​4772) | ccfe3e7
Binoy Patel | chore(deps): remove unused typedoc dependency (#​4771) | 35a14fc
renovate[bot] | chore(deps): update dependency esbuild-register to ^3.4.2 (#​4759) | 1066301
renovate[bot] | chore(deps): update dependency @​vitejs/plugin-react to ^4.0.4 (#​4757) | 76f7eda
renovate[bot] | chore(deps): update dependency vite to ^4.4.8 (#​4762) | eda3446
renovate[bot] | chore(deps): update dependency rxjs to ^7.8.1 (#​4760) | aefd3fc
renovate[bot] | fix(deps): update dependency esbuild to v0.18.17 (#​4766) | d39a4a3
renovate[bot] | chore(deps): update dependency styled-components to ^5.3.11 (#​4761) | 7bec1e7
renovate[bot] | chore(deps): update dessant/lock-threads action to v4.0.1 (#​4763) | c42ee06
renovate[bot] | chore(deps): update peter-evans/create-pull-request digest to 1534078 (#​4753) | 10f5672
renovate[bot] | chore(deps): update dependency esbuild to ^0.18.17 (#​4758) | 9284c4a
Espen Hovlandsdal | chore(deps): update dependency @​sanity/client to v6.3.0 | cc5d0c2
Espen Hovlandsdal | fix(cli): improve performance of projects list | c0a7911
github-actions | chore(deps): dedupe yarn.lock | d221922
Bjørge Næss | fix(validation): reset regex state between validation checks (#​4777) | 4b7d80c
Espen Hovlandsdal | feat(auth): allow specifying options without createAuthStore() (#​4773) | d9a88a5
Michael | feat(graphql): adds is_defined filter (#​4767) | 1b23692
Michael | chore: graphql cli to use latest API version (#​4769) | c559d5f
Espen Hovlandsdal | fix(cli): correct URL for the sanity manage command (#​4783) | 12af996
Bjørge Næss | fix(form): move availability checks to reference value preview (#​4768) | f48430c
Bjørge Næss | fix(form): improve message when reference points to undeclared document type (#​4768) | 366a9f1
Bjørge Næss | fix(form): improve microcopy of reference strength mismatch warning (#​4768) | b1c0856
renovate[bot] | chore(deps): update dependency @​sanity/uuid to ^3.0.2 (#​4789) | 3f30312
renovate[bot] | chore(deps): update dependency @​sanity/pkg-utils to ^2.3.10 (#​4785) | 0526a42
renovate[bot] | chore(lockfile): update dependency sanity-plugin-mux-input to v2.2.1 (#​4792) | c036f1d
renovate[bot] | chore(deps): update dependency @​sanity/client to ^6.4.0 (#​4791) | d336fbe
renovate[bot] | chore(deps): update dependency @​sanity/ui-workshop to ^1.2.9 (#​4787) | dd595cd
renovate[bot] | chore(deps): update dependency @​sanity/ui to ^1.7.4 (#​4786) | c34c65a
Herman Wikner | dev(test-studio): group tsdoc types in structure (#​4803) | 8f28935
renovate[bot] | fix(deps): Update dependency mendoza to v3 (#​4802) | e2fd12a
renovate[bot] | chore(lockfile): Update dependency groq-js to v1.1.11 (#​4800) | ea55198
renovate[bot] | chore(lockfile): Update dependency get-it to v8.4.1 (#​4799) | 30884b5
RitaDias | fix(core): fix issue with change indicator and path lines (#​4685) | 70f635e
renovate[bot] | chore(lockfile): Update dependency vite to v4.4.9 (#​4801) | 55a60ad

postcss/autoprefixer (autoprefixer)

v10.4.15

Compare Source

  • Fixed ::backdrop prefixes (by 一丝).
  • Fixed docs (by Christian Oliff).
eslint/eslint (eslint)

v8.47.0

Compare Source

Features
  • 53d7508 feat: update regex for methods with thisArg (#​17439) (Francesco Trotta)
Bug Fixes
  • 631648e fix: do not report on shadowed constructors in no-new-wrappers (#​17447) (Francesco Trotta)
Documentation
Chores
vercel/next.js (eslint-config-next)

v13.4.17

Compare Source

Core Changes
  • fix(next/image): empty blur image when animated #​54028
  • Do not output pages 404 in tree view if app not-found is used: #​54051
  • Fix scroll bailout logic when targeting fixed/sticky elements: #​53873
  • Debug tracing: add updated modules and page to HMR span: #​53698
  • fix(next-swc): coerce mdxrs default options: #​54068
  • fix: don't add forceConsistentCasingInFileNames to tsconfig when ts version >= 5.0: #​51564
  • fix(47299): allow testing pages with metadata in jsdom test environment: #​53578
  • upgrade edge-runtime dependency: #​54117
  • Fix root not-found page tree loader structure: #​54080
  • chore: remove as any type cast: #​54074
  • chore: refactor to use fs.promises.rm(): #​54076
  • Refactor layout router creation in app-render: #​54126
  • chore(image): remove apple silicon workaround for versions older than [email protected]: #​54125
  • fix routing bug when bfcache is hit following an mpa navigation: #​54081
  • Tracing: add opt-in flag to send a subset of development traces to url: #​53880
  • fix(edge): override init when cloning with NextRequest: #​54108
  • OpenTel: remove the internal (ipc) fetched from traces in a non-verbose mode: #​54083
  • cleanup: remove unnecessary effect dep: #​54134
  • Next build: use exported handle_issues from turbopack: #​52972
  • node-web-streams: remove tee shim, use ReadableStream.tee: #​54079
  • fix: cookies().has() breaks in app-route: #​54112
  • Revert "fix(47299): allow testing pages with metadata in jsdom test environment": #​54160
Documentation Changes
  • fix missing ' in data-fetching/fetching-caching-and-revalidating: #​54058
Example Changes
  • Update Docker example to remove HOSTNAME: #​54102
Misc Changes
  • chore: hide "same on new version" without link: #​54048
  • chore(ci): small notes for the build steps: #​54073
  • chore: update lock bot wording: #​54099
  • Update swc_core to v0.79.59: #​54082
  • install-native.mjs: include packageManager field: #​54132
Credits

Huge thanks to @​balazsorban44, @​huozhi, @​ztanner, @​williamli, @​wbinnssmith, @​kwonoj, @​stefanprobst, @​feugy, @​timneutkens, @​kdy1, @​Kikobeats, @​styfle, @​dvoytenko, @​MaxLeiter, and @​devjiwonchoi for helping!

v13.4.16

Compare Source

Core Changes
  • Concept: test mode for Playwright and similar integration tools: #​52520
  • Turbopack: fix hiding node_modules warnings in error overlay.: #​54022
  • ci(next-swc): print glibc version when build: #​54026
  • Adjust internal action proxy export: #​54004
Documentation Changes
  • Update 05-client-side-rendering.mdx with latest tanstack query version: #​54009
  • Open Graph Image font declaration moved to correct place: #​53998
  • Update opengraph-image.mdx: Fix typo: #​54020
Misc Changes
  • Remove extra label from runner: #​54002
  • add standalone testcase for ipv6 hostnames: #​53999
  • release: add release log generation script: #​54006
  • test(ci): refine test suite name unique: #​54013
  • Leverage previous swc build images: #​54027
  • chore: mark build folder indexable: #​54029
  • Move turbo outside of build for docker swc builds: #​54035
Credits

Huge thanks to @​ijjk, @​ztanner, @​huozhi, @​lacymorrow, @​dvoytenko, @​kylemcd, @​kwonoj, @​tibi1220, @​wbinnssmith, and @​shuding for helping!

v13.4.15

Compare Source

Core Changes
  • Fix action failures due to state tree encoding: #​53655
  • Initial HMR Nexturbo API implementation: #​52950
  • Turbopack: add edge app routes : #​53387
  • Turbopack: Hide Turbo Engine internals: #​53007
  • add unit test case for next.rs api: #​53679
  • Fix not-found rendering in production with edge: #​53687
  • fix(next/image): don't call ReactDOM.preload if missing, such as jest: #​53443
  • Add docs page for uncaught DynamicServerErrors: #​53402
  • Consolidate Server and Routing process into one process: #​53523
  • fix: Update outdated transform imports lucide-react: #​53697
  • Update font data: #​53759
  • Add warnings for static generation bail outs: #​53761
  • Sort root entries per pageExtensions config for consistency: #​53769
  • improve error message for conflicting parallel segments: #​53803
  • Add changeFrequency and priority attributes to sitemaps: #​48484
  • Ensure we set cache-control: no-cache for actions: #​53824
  • Reuse RenderWorker type: #​53782
  • fix: normalize backslash in getStaticPaths() for windows: #​53876
  • Delete errorneous empty content length header: #​53843
  • Turbopack: more tests and bugfixes for next.rs api: #​53809
  • Add @heroicons/react to modularizeImports: #​53902
  • Turbopack: Fix debugging in napi for next-api: #​53889
  • Fix/match resource: #​53796
  • Use summary_large_image as twitter card if images present by default: #​53919
  • Turbopack: Emit whether server or client assets changed: #​53879
  • Limit sharp's concurrency: #​53385
  • enable @​vercel/og support for turbopack: #​53917
  • feat(image): DataURL placeholder support for : #​53442
  • Recover not found errors from flight data to render with proper boundary: #​53703
  • Update React to 18.3.0-canary-1a001dac6-20230812: #​53881
  • add "expect" to list of forbidden IPC headers: #​53947
  • Update swc runners config: #​53939
  • Better IPv6 support for next-server: #​53131
Documentation Changes
  • Update 11-middleware.mdx: Added Switcher: #​53977
  • Fix doc grammatical errors: #​53672
  • Fix a link in incrementalCacheHandlerPath.mdx: #​53718
  • Fix typo in data fetching documentation: #​53772
  • Docs: Add option for fetching data using route handlers - from the client: #​53793
  • docs: Add more information about Server Actions: #​53805
  • docs: document cache tagging mechanism: #​53806
  • chore(docs): add missing "try it out": #​53815
  • docs: Opting out of scrolling with next/link and useRouter.: #​53804
  • chore(docs): note cache-control header for preview/draft mode: #​53825
  • Include instructions for bun package manager: #​53590
  • Docs: Update confusing wording in intercepting routes: #​53854
  • (docs) Fixes Server Actions example: #​53920
  • fix typo: #​53908
  • Docs: fix pnpm command for saving dev deps (#​53937): #​53938
  • The extra word 'the' has been deleted: #​53951
Example Changes
  • [Examples] Update Example Prepr CMS: #​49224
  • Update to with-supertokens example app: #​53434
  • docs(with-stripe-typescript): Update README demo link: #​53662
  • (example) update github-pages example: #​52168
  • chore: add light/dark mode theme detection to image component example: #​53760
Misc Changes
Credits

Huge thanks to @​iamarpitpatidar, @​pythagoras-yamamoto, @​alexkirsz, @​sokra, @​jsteele-stripe, @​tknickman, @​gaojude, @​styfle, @​janicklas-ralph, @​huozhi, @​ijjk, @​vinaykulk621, @​balazsorban44, @​ztanner, @​timneutkens, @​ericfennis, @​JohnAdib, @​MiLk, @​kwonoj, @​delbaoliveira, @​leerob, @​LuudJanssen, @​lucasconstantino, @​davecarlson, @​colinhacks, @​shuding, @​jridgewell, @​jantimon, @​Banbarashik, @​ForsakenHarmony, @​kdy1, @​dvoytenko, @​arturbien, @​gnoff, @​hsrvms, and @​DuCanhGH, @​tim-hanssen, @​Aryan9592, and @​rishabhpoddar for helping!

v13.4.13

Compare Source

Core Changes
  • Improve internal web stream utils: #​53004
  • fix: Add Next-Url to http vary in consideration of intercept routes.: #​52746
  • update Turbopack: #​53098
  • Add app, error, and document entrypoints: #​53013
  • Turbopack: use edge environment in server-side rendering of client components too: #​53099
  • refactor(codemod): replace chalk with picocolors: #​53115
  • move webpack specific logic into a separate file: #​53114
  • feat(turbopack): emit MODULE_FEATURE telemetry from turbopack: #​52356
  • Fix not found hangs the build with overridden node env: #​53106
  • chore: update warning message from yarn add sharp to npm i sharp: #​53130
  • fix(edge): allow Request cloning via NextRequest: #​53157
  • chore: extract common get-validated-args: #​53165
  • Fix minimal basePath handling: #​53174
  • Updates @​typescript-eslint/parser to 6.1.0: #​52848
  • fix(next/image): washed out blur placeholder: #​52583
  • Handle basePath app-dir minimal case: #​53189
Documentation Changes
  • (Docs) add missing import.: #​52992
  • Fix formData code snippet in route handler docs: #​52532
  • docs: remove unneeded good to know section during installation: #​53078
  • docs: fix typo in 08-parallel-routes.mdx: #​53069
  • chore(docs): Extend the options for custom server init: #​52851
  • (Docs) Add missing import for useRef(): #​53015
  • (Docs) Remove FormData type on formData defined in .js file: #​53014
  • docs: fix codeblock for redirect: #​53120
  • chore(docs): client-side data fetching loading state: #​53164
Example Changes
  • feat: remove unused global variable: #​51767
Misc Changes
  • chore(ci): always run validate-docs-links action: #​53022
  • update install-native postinstall to use pnpm: #​53080
  • chore(ci): make validate-docs-links required: #​53123
  • chore(test): fix flaky tsconfig.json test: #​53132
  • chore(ci): fix validate-docs-links for non-PR: #​53129
  • Temporarily skip flakey action revalidate: #​53134
Credits

Huge thanks to @​vinaykulk621, @​Lantianyou, @​styfle, @​shuding, @​joulev, @​AkifumiSato, @​trigaten, @​HurSungYun, @​DevLab2425, @​sokra, @​alexkirsz, @​ztanner, @​leerob, @​SukkaW, @​kwonoj, @​huozhi, @​ijjk, @​balazsorban44, @​daniel-web-developer, @​ky1ejs, and @​arturbien for helping!

sanity-io/next-sanity (next-sanity)

v5.4.1

Compare Source

Bug Fixes

v5.4.0

Compare Source

Features
  • add experimental LiveQuery component (0eb5c9b)
Bug Fixes
  • studio: add use client to next-sanity/studio/loading (1a9e002)

v5.3.0

Compare Source

Features
  • preview: lazy load LiveQueryProvider with next/dynamic (8ecb50e), closes #​516
Bug Fixes

v5.2.7

Compare Source

Bug Fixes

v5.2.6

Compare Source

Bug Fixes

v5.2.5

Compare Source

Bug Fixes

v5.2.4

Compare Source

Bug Fixes
  • webhooks: make webhook response type configurable (bb4898b)

v5.2.3

Compare Source

Bug Fixes
  • styled-components getting mangled in next dev (ac4a288), closes #​515

v5.2.2

Compare Source

Bug Fixes

v5.2.1

Compare Source

Bug Fixes

v5.2.0

Compare Source

Features

[v5.1.7](https://togithub.com/sanity-io/next-sanity/blob/HEAD


Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate using a curated preset maintained by Sanity. View repository job log here

@vercel
Copy link

vercel bot commented Aug 7, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
sanity-template-vercel-visual-editing ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 17, 2023 9:36pm

@socket-security
Copy link

socket-security bot commented Aug 7, 2023

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Packages Version New capabilities Transitives Size Publisher
@vercel/og 0.5.11 network, environment +1 10.2 MB vercel-release-bot
eslint 8.47.0 filesystem, environment +1 2.93 MB eslintbot

🚮 Removed packages: [email protected], [email protected], [email protected], [email protected], [email protected]

@renovate renovate bot changed the title fix(deps): Update dependency next-sanity to v5.2.0 chore(deps): update non-major Aug 7, 2023
@renovate renovate bot changed the title chore(deps): update non-major fix(deps): Update non-major Aug 7, 2023
@stipsan stipsan merged commit b85e87e into main Aug 17, 2023
3 checks passed
@stipsan stipsan deleted the renovate/non-major branch August 17, 2023 22:54
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 18, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant