Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: decaporg/decap-cms
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: decap-cms@3.5.0
Choose a base ref
...
head repository: decaporg/decap-cms
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: decap-cms@3.6.0
Choose a head ref
  • 5 commits
  • 39 files changed
  • 6 contributors

Commits on Jan 17, 2025

  1. feat(nested collections): allow non-index files (#7359)

    * feat(nested collections): allow non-index files
    
    This commit fixes #4972 to allow nested folders with additional content
    beyond an index file.
    
    Side effect: To keep the feature simple, this will now show index files
    as pages within a folder in NetlifyCMS. This enables creating additional
    files alongside the given index, but is a change in behavior from the
    current implementation.
    
    Co-authored-by: Eric Gade <105373963+eric-gade@users.noreply.github.com>
    
    * test(e2e): adapt to new way nested collections work
    
     We use regexps as otherwise .contains("Sub Directory") would also match "Another Sub Directory"
    
    ---------
    
    Co-authored-by: Andrew Dunkman <adunkman@gmail.com>
    Co-authored-by: Eric Gade <105373963+eric-gade@users.noreply.github.com>
    Co-authored-by: Anze Demsar <anze.demsar@p-m.si>
    4 people authored Jan 17, 2025
    Configuration menu
    Copy the full SHA
    47a2f70 View commit details
    Browse the repository at this point in the history
  2. fix(markdown): convert inline CSS from Google Docs to Markdown (#7351)

    Extends the HTML to Markdown conversion to better support bold and
    italic formatting from Google Docs, which generates inline styles on a
    `span` element instead of strong/b/em/i type elements.
    
    Co-authored-by: Anze Demsar <anze.demsar@p-m.si>
    domcleal and demshy authored Jan 17, 2025
    Configuration menu
    Copy the full SHA
    8b8e873 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2025

  1. feat: visual editing (click-to-edit) (#7374)

    * refactor: clean up controlRef handling
    
    * feat: add click-to-edit
    
    * test: update snapshots
    
    ---------
    
    Co-authored-by: Anze Demsar <anze.demsar@p-m.si>
    fgnass and demshy authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    989c2dd View commit details
    Browse the repository at this point in the history
  2. fix(widgetsFor): return widgets for variable type lists (#7296)

    When using a Variable Type list widget and a custom preview component,
    the `widgetsFor` helper would only return a `data` list with each of the
    items in the list, not a `widgets` list, e.g.
    
        {"data" =>
            {"markdown" => "# Title"}
            {"type" => "block_body"}
        }
        {"widgets" => undefined} 🚫
    
    The `widgets` list should also be supplied, particularly for nested
    Markdown widgets, so a fully formatted preview can be rendered:
    
        {"data" =>
            {"markdown" => "# Title"}
            {"type" => "block_body"}
        }
        {"widgets" =>
            {"markdown" => Object} ✅
        }
    
    This extends support in `widgetsFor` to detect variable type list
    widgets and correctly construct the `widgets` return value.
    
    As reported at #2307 (comment)
    
    Co-authored-by: Anze Demsar <anze.demsar@p-m.si>
    domcleal and demshy authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    9be2693 View commit details
    Browse the repository at this point in the history
  3. chore(release): publish

     - decap-cms@3.6.0
     - decap-cms-app@3.6.0
     - decap-cms-core@3.6.0
     - decap-cms-lib-util@3.2.0
     - decap-cms-widget-list@3.3.0
     - decap-cms-widget-markdown@3.3.0
     - decap-cms-widget-object@3.3.0
     - decap-server@3.2.0
    demshy committed Jan 29, 2025
    Configuration menu
    Copy the full SHA
    e216545 View commit details
    Browse the repository at this point in the history
Loading