fix(deps): update dependency @tinacms/cli to v1.6.2 [security] #69
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:
1.5.25
->1.6.2
GitHub Vulnerability Alerts
CVE-2024-45391
Impact
Tina search token leaked via lock file (tina-lock.json) in TinaCMS. Sites building with @tinacms/cli < 1.6.2 that use a search token are impacted.
If your Tina-enabled website has search setup, you should rotate that key immediately.
Patches
This issue has been patched in @tinacms/[email protected]
Workarounds
Upgrading, and rotating search token is required for the proper fix.
References
https://github.com/tinacms/tinacms/pull/4758
Release Notes
tinacms/tinacms (@tinacms/cli)
v1.6.2
Patch Changes
acf8430
: Add rollup option to ignore "MODULE_LEVEL_DIRECTIVE"110f1ce
: Fix tina-lock.json to not include search configuration, including search indexer token27bfe84
: CLI - Adds client caching and cli flag to disable: --no-client-build-cache6ccda6c
]33eaa81
]f088b97
]f59d67b
]daeeebf
]27bfe84
]v1.6.1
Patch Changes
#5276
f90ef4d
Thanks @Ben0189! - Updates minor and patch dependencies#5248
97d38ab
Thanks @kldavis4! - Adds additional validation of the local tina schema and the remote version to prevent inconsistent behavior when changes are not committed to the remote GitHub repository. Related issue: https://github.com/tinacms/tinacms/issues/5221Updated dependencies [
f90ef4d
,ac2003f
,03bb823
,60fb710
,f3aa146
]:v1.6.0
Minor Changes
324950a
: Updates Plate Editor to latest version 36.Typescript
to version^5
tinatailwind
config (packages/@​tinacms/cli/src/next/vite/tailwind.ts
)lodash
deps with either the specific function i.e.lodash.set
or implements them in a utility fileplate-headless
) for latest version^36
Patch Changes
324950a
]f378f11
]ceb0c07
]v1.5.53
Patch Changes
d9b23fc
: Improve reference field selectorc6e9afb
]d9b23fc
]613e9c5
]1c69338
]a1a767d
]v1.5.52
Patch Changes
4128128
]v1.5.51
Patch Changes
cb83dc2
]1b3584c
]v1.5.50
Patch Changes
f567fc8
: More React 18 upgrades and fixese58b951
: update vulnerable packages so npm audit does not complain9076d09
: update next js version from 12 to 14 in tinacms packagesf567fc8
]957fa26
]e58b951
]957fa26
]9076d09
]v1.5.49
Patch Changes
2940594
]82ab066
]v1.5.48
Patch Changes
a9b461c
]3034430
]171f5a5
]fd216f3
]d004af2
]20f972a
]2a36b65
]f26b40d
]v1.5.47
Patch Changes
0503072
: update ts, remove rimraf, fix types0ba0e59
: Fix remix visual editing errordc632f3
: cli - fix broken link to do with client variables not being configured properly. (Link to https://tina.io/docs/tina-cloud/overview/)1104006
: Update tailwind to v3.4.4 + fix media manager height overflow on mobile screensdffa355
: Remove yarn for pnpm76c1a2e
]04f0bf3
]0503072
]1104006
]dffa355
]v1.5.46
Compare Source
Patch Changes
2e3393e
]v1.5.45
Compare Source
Patch Changes
66f7e20
]b3ad50a
]v1.5.44
Compare Source
Patch Changes
141e78c
]v1.5.43
Compare Source
Patch Changes
216cfff
: Add fetch options to generated clientee135ef
: Feat: add support for preview indexing and overriding upstream branch in separate content repo builds216cfff
]v1.5.42
Compare Source
Patch Changes
de271d6
: Update CLI build command to support separate content repo schema synchronizationc8ceba4
]v1.5.41
Compare Source
Patch Changes
04704e3
]v1.5.40
Compare Source
Patch Changes
67e7a2d
]v1.5.39
Compare Source
Patch Changes
0639228
: Add mongodb to deps when using the mongo adapterv1.5.38
Compare Source
Patch Changes
1e5c94f
]v1.5.37
Compare Source
Patch Changes
4202c10
]7779cdb
]64f8fa0
]548fe6d
]031ce05
]50b20f8
]v1.5.36
Compare Source
Patch Changes
9e1a22a
]v1.5.35
Compare Source
Patch Changes
476b9df
]v1.5.34
Compare Source
Patch Changes
39ce3a5
: Fix the name of the read only token in the init processv1.5.33
Compare Source
Patch Changes
a65ca13
: ## TinaCMS Self hosted UpdatesChanges in the database file
Deprecations and Additions
onPut
,onDelete
, andlevel
arguments increateDatabase
.databaseAdapter
to replacelevel
.gitProvider
to substituteonPut
andonDelete
.tinacms-gitprovider-github
, exporting theGitHubProvider
class.gitProvider
added to@tinacms/graphql
.Updated
database.ts
ExampleMigrating
database.ts
a. Replacing
onPut
andonDelete
withgitProvider
onPut
andonDelete
withgitProvider
, using the providedGitHubProvider
for GitHub.GitProvider
interface for different git providers.If you are not using Github as your git provider, you can implement the
GitProvider
interface to use your own git provider.b. Renaming
level
todatabaseAdapter
level
todatabaseAdapter
for clarity.c.
createLocalDatabase
FunctioncreateLocalDatabase
function.d. Consolidated Example
database.{ts,js}
File:Summary of Authentication Updates in Config
a. AuthProvider and AbstractAuthProvider
authProvider
indefineConfig
.AbstractAuthProvider
for extending new auth providers.admin.auth
toadmin.authHooks
.admin.auth
.b. Auth Provider in Internal Client and Config
authProvider
class.c. Migration for Authentication
TinaCMS Self Hosted backend updates
New: TinaNodeBackend is exported from
@tinacms/datalayer
. This is used to host the TinaCMS backend in a single function.New:
LocalBackendAuthProvider
is exported from@tinacms/datalayer
. This is used to host the TinaCMS backend locally.New:
AuthJsBackendAuthProvider
is exported fromtinacms-authjs
. This is used to host the TinaCMS backend with AuthJS.Migrating the TinaCMS backend
Now, instead of hosting the in /tina/api/gql.ts file, the entire TinaCMS backend (including auth) will be hosted in a single backend function.
/api/tina/[...routes].{ts,js}
These changes are put in place to make self hosted TinaCMS easier to use and more flexible.
Please check out the docs for more information on self hosted TinaCMS.
a65ca13
]v1.5.32
Compare Source
Patch Changes
7eb8dca
: Log the output location of the SPA html filea937aab
: Add support for build.basePath to be an environment variable131b4dc
]93bfc80
]1fc2c4a
]693cf5b
]afd1c7c
]a937aab
]8b8a6c9
]661239b
]630ab94
]v1.5.31
Compare Source
Patch Changes
a58c5b1
: Update dev & build commands to log and exit on indexing errorsb6fbab8
]9391473
]8574146
]4ae43fd
]a58c5b1
]6861b5e
]aec44a7
]v1.5.30
Compare Source
Patch Changes
cb98719
: fix: add tina-lock file to external content directories when localContentPath is set0ec28c6
: Update message to use defineSchema when frags is too large3b214ec
: Fixes issue when an existing database contains sha metadata for partial reindexing and the sha is missing from the repository1770027
]c244d96
]e69a3ef
]c925786
]8414562
]3b214ec
]9f01550
]8bd85b1
]v1.5.29
Compare Source
Patch Changes
7e4de0b
]099bf56
]1144af0
]c92de7b
]v1.5.28
Compare Source
Patch Changes
1563ce5
]e83ba88
]v1.5.27
Compare Source
Patch Changes
193d98d
: Adds ability to specify branch name in the request for the autogenerated clientad22e09
: Consolidate tailwind usage8db979b
: Add support for "static" setting in Tina media, which preprocesses the available media files and disables uploads and deletions of media from the CMS.121bd9f
: Absorb @tinacms/toolkit into tinacmsfix: Use clean page-sizes on media manager (to make pagination more obvious)
Fix issue with uploading media in a folder with tina cloud
Updated dependencies [
9c27087
]Updated dependencies [
65d0a70
]Updated dependencies [
133e97d
]Updated dependencies [
f02b436
]Updated dependencies [
37cf8bd
]Updated dependencies [
ad22e09
]Updated dependencies [
8db979b
]Updated dependencies [
7991e09
]Updated dependencies [
30c7eac
]Updated dependencies [
121bd9f
]v1.5.26
Compare Source
Patch Changes
0d8a196
]bc81244
]Configuration
📅 Schedule: Branch creation - "" (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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.