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

Update dependency @tinacms/cli to ^0.62.0 #107

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 25, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@tinacms/cli ^0.60.0 -> ^0.62.0 age adoption passing confidence

Release Notes

tinacms/tinacms

v0.62.3

Compare Source

Patch Changes

v0.62.2

Compare Source

Patch Changes

v0.62.1

Compare Source

Patch Changes

v0.62.0

Compare Source

Minor Changes
  • 0fb26ac: Updated to use new init for iframe way of editing.
Patch Changes

v0.61.27

Compare Source

Patch Changes

v0.61.26

Compare Source

Patch Changes

v0.61.25

Compare Source

Patch Changes

v0.61.24

Compare Source

Patch Changes

v0.61.23

Compare Source

Patch Changes

v0.61.22

Compare Source

Patch Changes

v0.61.21

Compare Source

Patch Changes

v0.61.20

Compare Source

Patch Changes

v0.61.19

Compare Source

Patch Changes

v0.61.18

Compare Source

Patch Changes

v0.61.17

Compare Source

Patch Changes

v0.61.16

Compare Source

Patch Changes

v0.61.15

Compare Source

Patch Changes

v0.61.14

Compare Source

Patch Changes

v0.61.13

Compare Source

Patch Changes
  • 9183157: This allows us to use a leaner define function for the standalone config. Right now we're balancing a lot on the defineSchema/defineConfig types and have a few overlapping things like client, which accepts both an optional object with referenceDepth config as well as the autogenerated http client.

    One thing it does that's a bit different is it uses the apiUrl from the client generation function and sends it through as a global constant to the Vite app, this avoids the need for the generated client.

  • 4adf126: Add support for experimental iframe mode

  • Updated dependencies [9183157]

  • Updated dependencies [4adf126]

  • Updated dependencies [f8b8937]

v0.61.12

Compare Source

Patch Changes

v0.61.11

Compare Source

Patch Changes

v0.61.10

Compare Source

Patch Changes

v0.61.9

Compare Source

Patch Changes

v0.61.8

Compare Source

Patch Changes
  • b1f141e: Fixes an issue where JSX inside the tina schema would break compilation for users using a later version of esbuild.

v0.61.7

Compare Source

Patch Changes

v0.61.6

Compare Source

Patch Changes

v0.61.5

Compare Source

Patch Changes

v0.61.4

Compare Source

Patch Changes

v0.61.3

Compare Source

Patch Changes

v0.61.2

Compare Source

Patch Changes

v0.61.1

Compare Source

Patch Changes

v0.61.0

Compare Source

Minor Changes
  • 870a32f: This PR adds the new generated client, a new build command and introduces a new path of working with tina.

v0.60.28

Compare Source

Patch Changes

v0.60.27

Compare Source

Patch Changes

v0.60.26

Compare Source

Patch Changes

v0.60.25

Compare Source

Patch Changes
  • 0bc1807: Fixed issue where too many saves at one time would cause server to crash

v0.60.24

Compare Source

Patch Changes

v0.60.23

Compare Source

Patch Changes

v0.60.22

Compare Source

Patch Changes

v0.60.21

Compare Source

Patch Changes

v0.60.20

Compare Source

Patch Changes

v0.60.19

Compare Source

Patch Changes

v0.60.18

Compare Source

Patch Changes
  • 79d112d: Update cli to accept tinaCloudMediaStore flag and add to metadata during schema compilation
  • 91d6e67: revert platform aware paths in schema introduced in tinacms/tinacms@558cc43
  • b124032: Adds local server routes for handling media
  • 91d6e67: Fix issues with experimentalData on windows related to path separator inconsistency and interference with the .tina/generated folder
  • Updated dependencies [79d112d]
  • Updated dependencies [3f46c67]
  • Updated dependencies [db91685]
  • Updated dependencies [91d6e67]

v0.60.17

Compare Source

Patch Changes

v0.60.16

Compare Source

Patch Changes

v0.60.15

Compare Source

Patch Changes
  • ceb8269: Fix issue where _app override from tina init was improperly formatted

v0.60.14

Compare Source

Patch Changes

v0.60.13

Compare Source

Patch Changes
  • 9d28ea2: hide some existing start:server logging behind --verbose flag. format some messages to make them easier to read

v0.60.12

Compare Source

Patch Changes

v0.60.11

Compare Source

Patch Changes

v0.60.10

Compare Source

Patch Changes
  • 6154d12: Check for appropriate versions of react and react-dom before initializing with tinacms init
  • 8c23d69: Adds an MDX example when you run @​tinacms/cli init
  • abf25c6: The schema can now to used on the frontend (optional for now but will be the main path moving forward).
How to migrate.

If you gone though the tinacms init process there should be a file called .tina/components/TinaProvider. In that file you can import the schema from schema.ts and add it to the TinaCMS wrapper component.

import TinaCMS from 'tinacms'
import schema, { tinaConfig } from '../schema.ts'

// Importing the TinaProvider directly into your page will cause Tina to be added to the production bundle.
// Instead, import the tina/provider/index default export to have it dynamially imported in edit-moode
/**
 *
 * @​private Do not import this directly, please import the dynamic provider instead
 */
const TinaProvider = ({ children }) => {
  return (
    <TinaCMS {...tinaConfig} schema={schema}>
      {children}
    </TinaCMS>
  )
}

export default TinaProvider

v0.60.9

Compare Source

Patch Changes

v0.60.8

Compare Source

Patch Changes
  • 919f5cb: use standard next script names

v0.60.7

Compare Source

Patch Changes

v0.60.6

Compare Source

Patch Changes
  • 9862211: Use esbuild to build the schema instead of typescript.

    This allows the user to

    • use non typescript files like JS, JSX, TS
    • Import from outside of the tina folder

    The downside

    • Now type errors will still pass (The schema will compile) and one will get an error at runtime instead of compile time
  • Updated dependencies [c730fa1]

  • Updated dependencies [cd0f6f0]

v0.60.5

Compare Source

Patch Changes
  • 399fbf4: Fix an issue where builds weren't happening during CI, this is only an issue for the experimental data layer

v0.60.4

Compare Source

Patch Changes

v0.60.3

Compare Source

Patch Changes

v0.60.2

Compare Source

Patch Changes

v0.60.1

Compare Source

Patch Changes

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@vercel
Copy link

vercel bot commented Apr 25, 2023

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

Name Status Preview Comments Updated (UTC)
next-saas-starter ❌ Failed (Inspect) May 30, 2023 3:02pm

@renovate
Copy link
Contributor Author

renovate bot commented Jun 12, 2023

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (^0.62.0). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/tinacms-cli-0.x branch June 12, 2023 11:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant