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: contentful/rich-text
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f6d076a33c217fa56054407e607d034ecaa6020c
Choose a base ref
...
head repository: contentful/rich-text
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: be7ebb0ce035f7646370ac1dab0233cbdac01b1e
Choose a head ref
  • 18 commits
  • 35 files changed
  • 6 contributors

Commits on Nov 2, 2020

  1. Copy the full SHA
    3446a33 View commit details
  2. fix: 🐛 skip lib check for TS

    anho committed Nov 2, 2020
    Copy the full SHA
    e8bf2ba View commit details
  3. Merge pull request #180 from contentful/fix-rollup-for-types

    fix: 🐛 configure rollup copy correctly
    anho authored Nov 2, 2020
    Copy the full SHA
    7d696fe View commit details
  4. v14.1.1

    Danil Zakablukovskii committed Nov 2, 2020
    Copy the full SHA
    d964137 View commit details
  5. v14.1.2

    Danil Zakablukovskii committed Nov 2, 2020
    Copy the full SHA
    35fb04f View commit details

Commits on Apr 8, 2021

  1. Copy the full SHA
    cf3ec7d View commit details

Commits on Apr 12, 2021

  1. Merge pull request #211 from sahanatroam/patch-2

    feature: bump peer dependency version to allow for React  v17
    Danil Z authored Apr 12, 2021
    Copy the full SHA
    812a861 View commit details
  2. v14.1.3

    Danil Zakablukovskii committed Apr 12, 2021
    Copy the full SHA
    6d28c01 View commit details

Commits on Apr 29, 2021

  1. feat: {wip} update slate.js adapter

    Chris Sloop committed Apr 29, 2021
    Copy the full SHA
    c281aea View commit details

Commits on Apr 30, 2021

  1. feat: fix test types

    Chris Sloop committed Apr 30, 2021
    Copy the full SHA
    0c86f93 View commit details
  2. feat: update contentful-to-slatejs-adapter

    Chris Sloop committed Apr 30, 2021
    Copy the full SHA
    89a32f4 View commit details
  3. feat: update contentful-to-slatejs adapter

    Chris Sloop committed Apr 30, 2021
    Copy the full SHA
    33a3b6d View commit details

Commits on May 4, 2021

  1. Merge pull request #223 from contentful/SHE-10/update-slatejs-adapter

    feat: [] update slate.js adapter
    Chris Sloop authored May 4, 2021
    Copy the full SHA
    f80a670 View commit details
  2. v14.2.0

    Chris Sloop committed May 4, 2021
    Copy the full SHA
    ae09421 View commit details

Commits on May 5, 2021

  1. Copy the full SHA
    0ba8197 View commit details

Commits on Jun 15, 2021

  1. feat: add table markup support

    Chris Sloop committed Jun 15, 2021
    Copy the full SHA
    c6ae127 View commit details
  2. Merge pull request #239 from contentful/table-markup-support

    feat: add table markup support
    Chris Sloop authored Jun 15, 2021
    Copy the full SHA
    4ba5d86 View commit details
  3. v15.0.0

    Chris Sloop committed Jun 15, 2021
    Copy the full SHA
    be7ebb0 View commit details
Showing with 32,781 additions and 5,754 deletions.
  1. +22 −0 CHANGELOG.md
  2. +1 −1 lerna.json
  3. +14 −0 packages/contentful-slatejs-adapter/CHANGELOG.md
  4. +26,344 −3,848 packages/contentful-slatejs-adapter/package-lock.json
  5. +6 −4 packages/contentful-slatejs-adapter/package.json
  6. +169 −164 packages/contentful-slatejs-adapter/src/__test__/contentful-to-slatejs-adapter.test.ts
  7. +0 −59 packages/contentful-slatejs-adapter/src/__test__/slate-helpers.ts
  8. +38 −73 packages/contentful-slatejs-adapter/src/contentful-to-slatejs-adapter.ts
  9. +1 −1 packages/contentful-slatejs-adapter/src/helpers.ts
  10. +4 −4 packages/contentful-slatejs-adapter/src/schema.ts
  11. +52 −42 packages/contentful-slatejs-adapter/src/slatejs-to-contentful-adapter.ts
  12. +32 −3 packages/contentful-slatejs-adapter/src/types/index.ts
  13. +1 −0 packages/contentful-slatejs-adapter/tsconfig.json
  14. +2 −2 packages/rich-text-from-markdown/package.json
  15. +2 −2 packages/rich-text-html-renderer/package.json
  16. +2 −2 packages/rich-text-links/package.json
  17. +2 −2 packages/rich-text-plain-text-renderer/package.json
  18. +8 −0 packages/rich-text-react-renderer/CHANGELOG.md
  19. +4 −4 packages/rich-text-react-renderer/package.json
  20. +4,885 −1,533 packages/rich-text-types/package-lock.json
  21. +1 −1 packages/rich-text-types/package.json
  22. +7 −5 packages/rich-text-types/rollup.config.js
  23. +4 −0 packages/rich-text-types/src/blocks.ts
  24. +2 −2 packages/rich-text-types/src/helpers.ts
  25. +18 −0 packages/rich-text-types/src/nodeTypes.ts
  26. +6 −2 packages/rich-text-types/src/schemaConstraints.ts
  27. +580 −0 packages/rich-text-types/src/schemas/__test__/__snapshots__/schemas.test.ts.snap
  28. +4 −0 packages/rich-text-types/src/schemas/generated/document.json
  29. +4 −0 packages/rich-text-types/src/schemas/generated/list-item.json
  30. +4 −0 packages/rich-text-types/src/schemas/generated/ordered-list.json
  31. +158 −0 packages/rich-text-types/src/schemas/generated/table-cell.json
  32. +185 −0 packages/rich-text-types/src/schemas/generated/table-row.json
  33. +212 −0 packages/rich-text-types/src/schemas/generated/table.json
  34. +4 −0 packages/rich-text-types/src/schemas/generated/unordered-list.json
  35. +3 −0 packages/rich-text-types/tools/jsonSchemaGen.ts
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [14.2.0](https://github.com/contentful/rich-text/compare/v14.1.3...v14.2.0) (2021-05-04)


### Features

* {wip} update slate.js adapter ([c281aea](https://github.com/contentful/rich-text/commit/c281aea))
* fix test types ([0c86f93](https://github.com/contentful/rich-text/commit/0c86f93))
* update contentful-to-slatejs adapter ([33a3b6d](https://github.com/contentful/rich-text/commit/33a3b6d))
* update contentful-to-slatejs-adapter ([89a32f4](https://github.com/contentful/rich-text/commit/89a32f4))





## [14.1.3](https://github.com/contentful/rich-text/compare/v14.1.2...v14.1.3) (2021-04-12)

**Note:** Version bump only for package root
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "2.7.2",
"version": "14.1.0",
"version": "15.0.0",
"packages": [
"packages/contentful-slatejs-adapter",
"packages/rich-text-from-markdown",
14 changes: 14 additions & 0 deletions packages/contentful-slatejs-adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [14.2.0](https://github.com/contentful/rich-text/compare/v14.1.3...v14.2.0) (2021-05-04)


### Features

* {wip} update slate.js adapter ([c281aea](https://github.com/contentful/rich-text/commit/c281aea))
* fix test types ([0c86f93](https://github.com/contentful/rich-text/commit/0c86f93))
* update contentful-to-slatejs adapter ([33a3b6d](https://github.com/contentful/rich-text/commit/33a3b6d))
* update contentful-to-slatejs-adapter ([89a32f4](https://github.com/contentful/rich-text/commit/89a32f4))
Loading