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

Release/10.7.0 #5188

Merged
merged 329 commits into from
Jan 15, 2024
Merged

Release/10.7.0 #5188

merged 329 commits into from
Jan 15, 2024
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Oct 31, 2023

  1. GitGraph: Refactor hasOverlappingCommits function

    Changed argument names from commit1 and commit2 to
    commitA and commitB respectively to prevent confusion
    with seq number values.
    
    Replaced Array filter method with array some method
    so that as soon as one overlap is found, function is
    finished.
    
    Used Object.entries instead of Object.keys to reduce
    number of variables needed and make function easier
    to read.
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    6dc8e58 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    33050e1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4787bb0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    60bb7b5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9469f75 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    69ec4a0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8c43d22 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9f8457d View commit details
    Browse the repository at this point in the history
  9. GitGraph: refactored overlapping fn for efficiency/performance

    On previous rewrite, I had created new functions within the
    overlapping functions but these were being recreated on each
    iteration of Object.some(). I moved them outside this for
    clarity and so they're not recreated each iteration.
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    461a293 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    902a9dd View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    dba7197 View commit details
    Browse the repository at this point in the history
  12. GitGraph: rename overlap check to shouldRerouteArrow

    The function also now does an additional check to see
    if source branch in overlap check is on main.
    
    As we're no longer purely checking for an overlap and
    the only use of this function is to reroute the arrows
    to avoid running over commits, this more literal name
    should be clearer.
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    7c87df7 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    3ba33c8 View commit details
    Browse the repository at this point in the history
  14. GitGraph: removed check of branch with main from arrow reroute fn

    Checking if branch was same as main turned out to be redundant
    for now, since there don't seem to be any cases where routing
    curves into main.
    
    This fixes issue found in review by @nirname and avoids a
    situation where branching from the same commit results in
    unnecessary rerouting.
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    3e18e76 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    25a678c View commit details
    Browse the repository at this point in the history
  16. GitGraph: fixed an e2e branch for vertical branch

    Fix for error spotted by @mathbraga
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    b0b2768 View commit details
    Browse the repository at this point in the history
  17. GitGraph: e2e tests, added commit IDs to test graphs

    Followed practice of other tests so that commit IDs are
    stabilised (i.e., not randomly generated) and therefore
    don't show repeatedly in Cypress diff output screenshots
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    2acad55 View commit details
    Browse the repository at this point in the history
  18. GitGraph: Added e2e tests for deferred branch use.

    In these tests, a new branch is created but then a commit is made
    on the main branch before the new branch gets a commit. This
    important to see what happens with rerouting of arrows.
    
    Suggested by @nirname in PR review of #4927.
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    adfe172 View commit details
    Browse the repository at this point in the history
  19. GitGraph: added branch checking to rerouting

    Hypothesised that working out which branch needed checking for
    overlapping commits might be missing, so added that as a
    nested ternary and passed result as new argument to rerouting
    check.
    
    If commits are found on the branch which will be getting the
    curve (whichever branch is lower or more to the right of main
    than the other, for now), then the arrow will be rerouted.
    
    I may refactor in a follow-up commit and I think there's scope
    to simplify the logic but this is a test for now.
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    0555368 View commit details
    Browse the repository at this point in the history
  20. GitGraph: added 2x e2e tests for branches not used immediately

    My focus earlier on had been on relationship to `main` branch
    so this is to ensure that we have some tests that cover
    relationship between a pair of branches that doesn't
    include `main`.
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    f7d83e2 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    31a8e04 View commit details
    Browse the repository at this point in the history
  22. GitGraph: Moved branch curve check to within reroute check fn

    Based on review by @nirname. I had originally been trying
    to minimise number of new arguments being passed to
    rerouting check but as the branch curve check is not used
    elsewhere and is part of the same rerouting check it makes
    sense for them to be together.
    
    Position information now passed to rerouting fn instead.
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    bf52e76 View commit details
    Browse the repository at this point in the history
  23. GitGraph: added commit IDs to e2e test to remove false positives

    Should stop randomised commit IDs from showing arbitrary
    differences between test runs.
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    d80e1a2 View commit details
    Browse the repository at this point in the history
  24. GitGraph: simplified branch check in arrow rerouting fn

    Wanted to avoid repetition given that the originally nested
    ternaries had the same structure
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    a9c5d90 View commit details
    Browse the repository at this point in the history
  25. GitGraph: made reroute fn more readable

    Pre-commit lint hook had made the use of ternaries harder to read
    than I'd originally intended so I introduced an additional
    variable which explains what is being checked and keeps ternaries
    from becoming obscured.
    guypursey committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    57a9d73 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2023

  1. Configuration menu
    Copy the full SHA
    379722d View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. review fixes

    ad1992 committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    6e6e92a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6a5b7c4 View commit details
    Browse the repository at this point in the history
  3. move decodeEntities to utils

    ad1992 committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    58bad98 View commit details
    Browse the repository at this point in the history
  4. add comment for ts ignore

    ad1992 committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    a818f3e View commit details
    Browse the repository at this point in the history
  5. Update index.md

    fix typo
    StefonSimmons committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    4ba3e2c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b5fd8fb View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. review fixes

    ad1992 committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    dff1343 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    23cbf50 View commit details
    Browse the repository at this point in the history
  3. fix

    ad1992 committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    78c1a3d View commit details
    Browse the repository at this point in the history
  4. fix

    ad1992 committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    dff8b78 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    51d076a View commit details
    Browse the repository at this point in the history
  6. Update demos/sequence.html

    ad1992 committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    396ea3c View commit details
    Browse the repository at this point in the history
  7. Merge pull request #5018 from mermaid-js/master

    Sync `master` branch to `develop`
    aloisklink committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    7a3ce3e View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Merge pull request #5002 from ad1992/bug/4983-fix-getMessageAPI

    fix: getMessageAPI so it considers entity codes
    sidharthv96 committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    eb4bd31 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6e74e91 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5015 from mermaid-js/renovate/patch-all-patch

    chore(deps): update all patch dependencies (patch)
    sidharthv96 committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    30646d8 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Configuration menu
    Copy the full SHA
    c9ace33 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5014 from Abrifq/patch-2

    Update XYChart's nav link in the docs template
    aloisklink committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    71478f5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f6b1e04 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #4930 from Mister-Hope/patch-2

    feat(gantt): update styles
    sidharthv96 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    c2e26ba View commit details
    Browse the repository at this point in the history
  5. Merge pull request #4824 from JackuB/patch-1

    Docs: add Mermaid for Slack integration
    sidharthv96 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    d1fba9c View commit details
    Browse the repository at this point in the history
  6. fix: Ignore unknown arrow type values

    Co-authored-by: Alois Klink <alois@aloisklink.com>
    sidharthv96 and aloisklink committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    4952b13 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8f57202 View commit details
    Browse the repository at this point in the history
  8. Merge branch 'develop' into refactor/unifyEdgeMarkers

    * develop: (155 commits)
      chore(deps): update all patch dependencies
      chore: release v10.6.1
      fix(flow): fix invalid ellipseText regex
      review fixes
      Update XYChart's nav link in the docs template
      add comment for ts ignore
      move decodeEntities to utils
      review fixes
      chore(deps): update all minor dependencies
      chore: Point to correct changelog
      add spec
      fix: getMessageAPI so it considers entity codes
      chore(deps): update all patch dependencies
      Update integrations-community.md
      docs: upate the list of tools with native support of mermaid
      Fix typo in build-docs.yml
      Updated mermaid version
      Limiting the number of edges that are allowed in the flowchart
      Update README.md
      Update README.md
      ...
    sidharthv96 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    e46626d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fadae38 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Configuration menu
    Copy the full SHA
    09d9c31 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5012 from StefonSimmons/patch-1

    Update index.md
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    c8a826d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5021 from nashtechlabs/docs/patch-1

    Add new Atlassian integrations
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    3038ce5 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #4973 from SahilNagpure07/patch-1

    docs: Update classDiagram.md
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    79bae62 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #4947 from SusheelThapa/patch

    Chore: Typo fixed in multiple files
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    ac595eb View commit details
    Browse the repository at this point in the history
  6. fix typo

    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    adfb60e View commit details
    Browse the repository at this point in the history
  7. Merge pull request #4893 from 0xflotus/patch-1

    docs: fixed typo
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    3cf0a2b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    051260e View commit details
    Browse the repository at this point in the history
  9. Fix typo

    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    72038a6 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #4933 from REVERB283/bug/4716_fix_target_blank_get…

    …ting_sanitized
    
    fix: target blank removed from anchor tag
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    ee49c4b View commit details
    Browse the repository at this point in the history
  11. Merge branch 'develop' into pr/csholmq/4958

    * develop: (21 commits)
      Fix typo
      fix typo
      Add new Atlassian integrations
      chore(deps): update all patch dependencies
      chore: release v10.6.1
      fix(flow): fix invalid ellipseText regex
      review fixes
      Update XYChart's nav link in the docs template
      Update index.md
      add comment for ts ignore
      move decodeEntities to utils
      review fixes
      chore(deps): update all minor dependencies
      chore: Point to correct changelog
      add spec
      fix: getMessageAPI so it considers entity codes
      Update classDiagram.md
      Chore: Typo fixed in multiple files
      feat(gantt): update styles
      docs(integrations): add Mermaid for Slack
      ...
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    8d6317b View commit details
    Browse the repository at this point in the history
  12. Fix lint

    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    4a92fc5 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #4958 from csholmq/fix/tooltip

    fix(tooltip): remove redundant scroll offset
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    1571b25 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    f47e920 View commit details
    Browse the repository at this point in the history
  15. Update docs

    deining committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    fe32bcb View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    6fb5641 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    01bbcc5 View commit details
    Browse the repository at this point in the history
  18. update edge ids

    jgreywolf committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    a8fe640 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    e8ad72a View commit details
    Browse the repository at this point in the history
  20. Merge pull request #5026 from deining/bump-gitHub-workflows

    Bump GitHub workflow actions to latest versions
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    c89557d View commit details
    Browse the repository at this point in the history
  21. Update packages/mermaid/src/diagrams/class/classRenderer-v2.ts

    Co-authored-by: Sidharth Vinod <sidharthv96@gmail.com>
    jgreywolf and sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    0f2b941 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    07dcb64 View commit details
    Browse the repository at this point in the history
  23. Merge pull request #5025 from deining/clarify-docu

    Documentation: clarify sentence
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    92f1644 View commit details
    Browse the repository at this point in the history
  24. Merge pull request #5028 from mermaid-js/3952-lexical-ids

    3952 lexical ids
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    a177141 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    3c13386 View commit details
    Browse the repository at this point in the history
  26. Merge pull request #4952 from ajdamico/patch-1

    add links to make it easier
    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    b12b8a9 View commit details
    Browse the repository at this point in the history
  27. Fix docs

    sidharthv96 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    aa5d586 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2023

  1. Configuration menu
    Copy the full SHA
    b134766 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0bcd5d2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    52ed387 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8b0a5be View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2023

  1. Configuration menu
    Copy the full SHA
    56c3809 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. Configuration menu
    Copy the full SHA
    adff22c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fb031ee View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. Merge pull request #5033 from mermaid-js/renovate/patch-all-patch

    Update all patch dependencies (patch)
    sidharthv96 committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    6d0d8ac View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5017 from ad1992/bug/4946-fix-svg-order-sequence-…

    …participant
    
    fix: render the participants in same order as they are created
    sidharthv96 committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    5fdbf5d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4961 from claesgill/upd_readme_toc

    Updated README with expandable table of content.
    sidharthv96 committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    33e94d3 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #4934 from RounakJoshi09/bug/#3251_linkStyle-can't…

    …-specify-ids
    
    bug/#3251_linkStyle-can't-specify-ids Fixed
    sidharthv96 committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    0c0f7a7 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5013 from SteffenLm/bug/5009_static_class_attribu…

    …te_not_rendered
    
    Fix - static class attributes are not rendered underlined
    aloisklink committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    c56025e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    52603d7 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2023

  1. Merge branch 'develop' into other/remove-pr-labeler-action

    * develop: (164 commits)
      Update all patch dependencies
      Fix docs
      Update packages/mermaid/src/docs/community/questions-and-suggestions.md
      Update packages/mermaid/src/diagrams/class/classRenderer-v2.ts
      update edge ids
      draw top actors with lines  first followed by messages
      Bump GitHub workflow actions to latest versions
      Update docs
      Documentation: clarify sentence
      Fix lint
      Fix typo
      fix typo
      Add new Atlassian integrations
      chore(deps): update all patch dependencies
      Update demos/sequence.html
      chore: release v10.6.1
      fix
      fix
      fix: render the participants in same order as they are created
      fix(flow): fix invalid ellipseText regex
      ...
    sidharthv96 committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    862d20c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4868 from mermaid-js/other/remove-pr-labeler-action

    Use `release-drafter/release-drafter` GitHub Action to label our PRs
    sidharthv96 committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    e8ee5f5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3df7cf2 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #4927 from guypursey/bug/4912_gitgraph-merge-routi…

    …ng-colouring
    
    Bug/4912 GitGraph routing and colouring for merges and cherry-picks
    nirname committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    d7f59c1 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Configuration menu
    Copy the full SHA
    a47a9e4 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Error Hash Removed

    RounakJoshi09 committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    aadf533 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c19fa12 View commit details
    Browse the repository at this point in the history
  3. Remove unnecessary code

    mathbraga committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    453c16d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7e77433 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2023

  1. Configuration menu
    Copy the full SHA
    42ac630 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2023

  1. Configuration menu
    Copy the full SHA
    a1c0761 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5047 from mermaid-js/renovate/all-minor

    Update all minor dependencies (minor)
    sidharthv96 committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    36247bc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ba0fee View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5046 from mermaid-js/renovate/patch-all-patch

    Update all patch dependencies (patch)
    sidharthv96 committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    4a4e614 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ad6c761 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c0a43f5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    63c2d36 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fc3018e View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Configuration menu
    Copy the full SHA
    d61bfde View commit details
    Browse the repository at this point in the history
  2. Merge branch 'feature/4935_subgraph-title-margin-config-option' of ht…

    …tps://github.com/mathbraga/mermaid into feature/4935_subgraph-title-margin-config-option
    mathbraga committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    a935380 View commit details
    Browse the repository at this point in the history
  3. Resolve lint issue

    mathbraga committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    d79671e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    997a377 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fd208dd View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

  1. Configuration menu
    Copy the full SHA
    9ae00eb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5055 from omer-priel/bug/5053_tests-failed-becaus…

    …e-test-timeout
    
    update testTimeout from 5 seconds to 10 seconds
    aloisklink committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    f604017 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2023

  1. Configuration menu
    Copy the full SHA
    78e118c View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into develop

    * master:
      fix broken link
      add latest blog post
      fix linting
      fix: set proper shiki theme for light and dark modes
      fix: change shiki theme to github-light
      add latest blog post
      add latest blog post
    sidharthv96 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    8f733c6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    55ce05f View commit details
    Browse the repository at this point in the history
  4. Merge branch 'develop' into 5064_EdgeOffsetEdgeCase

    * develop:
      fix broken link
      add latest blog post
      fix linting
      fix: set proper shiki theme for light and dark modes
      fix: change shiki theme to github-light
      add latest blog post
      add latest blog post
    sidharthv96 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    c0fcf4f View commit details
    Browse the repository at this point in the history
  5. chore: Update pnpm-lock

    sidharthv96 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    26df818 View commit details
    Browse the repository at this point in the history
  6. fix Types

    sidharthv96 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    7b0f6c1 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b5ba095 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #5065 from mermaid-js/5064_EdgeOffsetEdgeCase

    fix: #5064 Handle case when line has only one point
    sidharthv96 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    61747b6 View commit details
    Browse the repository at this point in the history
  9. v10.6.2-rc.1

    sidharthv96 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    5b705cf View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    1ff7218 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2023

  1. Merge pull request #4915 from Patronud/develop

    prevent-inherited-lineheights-on-edgeterminal-4083
    sidharthv96 committed Nov 25, 2023
    Configuration menu
    Copy the full SHA
    65ee65b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3489fc4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    904be16 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2023

  1. Configuration menu
    Copy the full SHA
    ce875c9 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2023

  1. Configuration menu
    Copy the full SHA
    2cc4f23 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5070 from mermaid-js/renovate/patch-all-patch

    chore(deps): update all patch dependencies (patch)
    sidharthv96 committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    8406583 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    952f2fb View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5071 from mermaid-js/renovate/all-minor

    chore(deps): update all minor dependencies (minor)
    sidharthv96 committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    62b991b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1d5378a View commit details
    Browse the repository at this point in the history
  6. remove unused variable

    ad1992 committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    4a4d715 View commit details
    Browse the repository at this point in the history
  7. add test

    ad1992 committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    7e11938 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    282da45 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #5063 from bonyuta0204/bug/4736_zero_size_image_fl…

    …owchart
    
    fix: flowchart image without text
    sidharthv96 committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    7ca76b0 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #4837 from mermaid-js/refactor/unifyEdgeMarkers

    refactor: Unify the edgeMarker adding logic
    aloisklink committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    25e9bb3 View commit details
    Browse the repository at this point in the history
  11. review fixes

    ad1992 committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    4dbfa2f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    d3d4948 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2023

  1. Configuration menu
    Copy the full SHA
    a807a58 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7979b28 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'feature/4935_subgraph-title-margin-config-option' of ht…

    …tps://github.com/mathbraga/mermaid into feature/4935_subgraph-title-margin-config-option
    mathbraga committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    8e794e3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5718be5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fe4485c View commit details
    Browse the repository at this point in the history
  6. Update docs

    ad1992 committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    18bc2af View commit details
    Browse the repository at this point in the history
  7. Merge branch 'develop' into pr/iwestlin/4288

    * develop: (596 commits)
      chore(deps): update all minor dependencies
      chore(deps): update all patch dependencies
      fix: flowchart image without text
      fix Types
      chore: Update pnpm-lock
      chore: Add tests for calculateDeltaAndAngle
      fix: #5064 Handle case when line has only one point
      reset the testTimeout to 5 seconds and change it directly in the test
      update testTimeout from 5 seconds to 10 seconds
      Update all patch dependencies
      fix broken link
      add latest blog post
      Update all minor dependencies
      Update all patch dependencies
      Fix docs
      Update packages/mermaid/src/docs/community/questions-and-suggestions.md
      Update packages/mermaid/src/diagrams/class/classRenderer-v2.ts
      update edge ids
      draw top actors with lines  first followed by messages
      Bump GitHub workflow actions to latest versions
      ...
    sidharthv96 committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    1f4e335 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    0620c6d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    403ac4b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9c2dae9 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    89b3923 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    4ed7b2b View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    005c998 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #5006 from lchenay/patch-1

    fix case that generate broken link on docs
    aloisklink committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    72d2d04 View commit details
    Browse the repository at this point in the history
  15. Merge pull request #4288 from iwestlin/fix/pie-chart-viewbox

    fix: Adjust piechart viewbox for mobile devices with small width
    sidharthv96 committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    1564358 View commit details
    Browse the repository at this point in the history
  16. Merge pull request #5041 from mathbraga/feature/4935_subgraph-title-m…

    …argin-config-option
    
    Feature/4935 subgraph title margin config option
    sidharthv96 committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    252a8a7 View commit details
    Browse the repository at this point in the history
  17. Merge pull request #5076 from ad1992/aakansha/bug/5075-fix-getDiagram…

    …FromText-api
    
    fix: clean comments in text in getDiagramFromText API so flowchart works well
    sidharthv96 committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    4499926 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    f35fb39 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    ae7003a View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    fdf9988 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2023

  1. Merge pull request #5085 from d-faure/PmWiki-integration

    Referenced the PmWiki's Cookbook recipe enabling MermaidJs schematics…
    sidharthv96 committed Nov 29, 2023
    Configuration menu
    Copy the full SHA
    f81e4d4 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2023

  1. Configuration menu
    Copy the full SHA
    c6bf908 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    31a1de1 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. Configuration menu
    Copy the full SHA
    8de1bde View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f806de3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d22ee8d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    93a920c View commit details
    Browse the repository at this point in the history
  5. chore: Rename test

    sidharthv96 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    761fa27 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5098 from mermaid-js/4578-generic-class-in-namespace

    Fix issue with generic class not rendering
    sidharthv96 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    886405b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e87243c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    160c7d3 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #5099 from mermaid-js/renovate/all-minor

    chore(deps): update all minor dependencies (minor)
    sidharthv96 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    87a0ab3 View commit details
    Browse the repository at this point in the history
  10. Merge branch 'develop' into release/10.6.2

    * develop: (47 commits)
      chore(deps): update all minor dependencies
      chore: Rename test
      test: Add unit test for generic classname and namespace
      Split type from generic class name
      Referenced the PmWiki's Cookbook recipe enabling MermaidJs schematics in wiki pages
      test(e2e): fix pie chart E2E tests for PR #4288
      Add dummy commit to trigger GH checks
      chore: Revert unnecessary export
      refactor: Remove unnecessary calculations
      chore: Fix computeWidth function
      chore: Cleanup setupGraphViewbox
      Update docs
      update mermaidAPI to cleanup the text before passing to getDiagramFromText
      Add test for subgraphs with title margins and edge labels
      Modify margin logic to avoid creating unnecessary space in subgraph
      review fixes
      add test
      remove unused variable
      fix: clean comments in text in getDiagramFromText API so flowchart works well
      chore(deps): update all minor dependencies
      ...
    sidharthv96 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    1165fb1 View commit details
    Browse the repository at this point in the history
  11. v10.6.2-rc.2

    sidharthv96 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    60ea9a2 View commit details
    Browse the repository at this point in the history
  12. update docs

    sidharthv96 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    80fa3e9 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    798f9f8 View commit details
    Browse the repository at this point in the history
  14. Merge branch 'develop' into release/10.6.2

    * develop:
      chore: Downgrade node to 18.18.2
    sidharthv96 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    a24f96e View commit details
    Browse the repository at this point in the history
  15. Merge pull request #4944 from RounakJoshi09/bug/#4497_unable-to-cherr…

    …ypick-merge-commit
    
    Bug/#4497 Unable to Cherry Pick Merge Commit Solved
    aloisklink committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    6a31ae6 View commit details
    Browse the repository at this point in the history
  16. build: use tsx instead of ts-node-esm

    `ts-node-esm` v10.9.1 is not compatible with Node.JS v18.19.0.
    aloisklink committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    4a7e4a3 View commit details
    Browse the repository at this point in the history
  17. Merge pull request #5104 from aloisklink/chore/use-tsx-instead-of-ts-…

    …node-esm
    
    build: use `tsx` instead of `ts-node-esm`
    sidharthv96 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    5d56835 View commit details
    Browse the repository at this point in the history
  18. Changes to .prettierignore

    1. Added 'demos/dev/**' to be ignored by Prettier.
    2. Added '!/demos/dev/example.html' so that Prettier ensures no one changes the example.html in a way that doesn't obey the Prettier code formatting rules.
    FutzMonitor committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    11affc3 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    239fad9 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    1ecae7d View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Merge pull request #5109 from FutzMonitor/issue5108

    Changes to .prettierignore
    sidharthv96 committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    a9610d3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5102 from mermaid-js/5100_SankeyViewbox

    fix: #5100 Add viewbox to sankey
    nirname committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    fe07e9d View commit details
    Browse the repository at this point in the history
  3. Update docs

    jgreywolf committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    ca386ab View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e25515a View commit details
    Browse the repository at this point in the history
  5. Update packages/mermaid/src/diagrams/class/classDb.ts

    Co-authored-by: Sidharth Vinod <sidharthv96@gmail.com>
    jgreywolf and sidharthv96 committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    02b2d71 View commit details
    Browse the repository at this point in the history
  6. build(deps-dev): bump vite from 4.4.9 to 4.4.12

    Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.4.9 to 4.4.12.
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/v4.4.12/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v4.4.12/packages/vite)
    
    ---
    updated-dependencies:
    - dependency-name: vite
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    faf282b View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2023

  1. Merge pull request #5115 from mermaid-js/dependabot/npm_and_yarn/vite…

    …-4.4.12
    
    build(deps-dev): bump vite from 4.4.9 to 4.4.12
    sidharthv96 committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    cc4af0c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1d08155 View commit details
    Browse the repository at this point in the history
  3. Update docs

    Abrifq committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    f476c25 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2023

  1. Merge pull request #5120 from Abrifq/patch-3

    Update NiceGuy.io links in integrations-community.md
    sidharthv96 committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    4f9988a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3b7cabe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9b34adf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    69f3109 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d3257ce View commit details
    Browse the repository at this point in the history
  6. Merge branch 'develop' into release/10.6.2

    * develop:
      Update docs
      Update NiceGuy.io links in integrations-community.md
      build(deps-dev): bump vite from 4.4.9 to 4.4.12
      Changes to .prettierignore 1. Added 'demos/dev/**' to be ignored by Prettier. 2. Added '!/demos/dev/example.html' so that Prettier ensures no one changes the example.html in a way that doesn't obey the Prettier code formatting rules.
      build: use `tsx` instead of `ts-node-esm`
      fix: #5100 Add viewbox to sankey
      fix: Check if parentCommit is provided
      Condition of Parent Id Without Merge Commit Added
      Error Hash Removed
      Linting Issue Fixed
      Updated gitgraph.md
      Linting Issue Fixed
      Documentation Modified New Ex Added
      e2e test case added
      Merge Conflict Resolved
      Suggested Changes FOR PR DONE
      documentation added, Tests Fixed
      All Unit Tests Passing
      Unit Test Cases Added
      Parser and Logic For Parent Commit Added
    sidharthv96 committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    7c3bd9a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b60fc1b View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2023

  1. Merge pull request #5086 from mermaid-js/sidv/5042_maxEdges

    feat #5042: Add `flowchart.maxEdges` config.
    sidharthv96 committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    9f061c5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3bb005b View commit details
    Browse the repository at this point in the history
  3. Address potential undefined

    jgreywolf committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    b51ca4f View commit details
    Browse the repository at this point in the history
  4. Update docs

    jgreywolf committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    b92b344 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. Update generics docs

    jgreywolf committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    5a26edf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f1a10d1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5131 from mermaid-js/renovate/all-minor

    chore(deps): update all minor dependencies (minor)
    sidharthv96 committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    b7fa22d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6e64556 View commit details
    Browse the repository at this point in the history
  5. Update packages/mermaid/src/diagrams/class/classDb.ts

    Co-authored-by: Alois Klink <alois@mermaidchart.com>
    jgreywolf and aloisklink committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    24957f4 View commit details
    Browse the repository at this point in the history
  6. Update packages/mermaid/src/docs/syntax/classDiagram.md

    Co-authored-by: Alois Klink <alois@mermaidchart.com>
    jgreywolf and aloisklink committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    3dce04e View commit details
    Browse the repository at this point in the history
  7. Update packages/mermaid/src/diagrams/class/classDb.ts

    Co-authored-by: Alois Klink <alois@mermaidchart.com>
    jgreywolf and aloisklink committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    668bf32 View commit details
    Browse the repository at this point in the history
  8. Update docs

    jgreywolf committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    70b4a37 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a71bdbd View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Update classDiagram.md

    jgreywolf committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    237518b View commit details
    Browse the repository at this point in the history
  2. Update classDiagram.md

    jgreywolf committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    1babceb View commit details
    Browse the repository at this point in the history
  3. Update docs

    jgreywolf committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    7ec5bdc View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2023

  1. Fixed parser/tests

    jgreywolf committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    c5220bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2b4940d View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2023

  1. Merge pull request #5111 from mermaid-js/2408-support-style-for-class

    Added functionality to support style keyword
    jgreywolf committed Dec 20, 2023
    Configuration menu
    Copy the full SHA
    6028036 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2023

  1. update verbiage

    huynhicode committed Dec 28, 2023
    Configuration menu
    Copy the full SHA
    44dcac7 View commit details
    Browse the repository at this point in the history
  2. update verbiage

    huynhicode committed Dec 28, 2023
    Configuration menu
    Copy the full SHA
    5cec92c View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

  1. Configuration menu
    Copy the full SHA
    54db85b View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Configuration menu
    Copy the full SHA
    303e5be View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Configuration menu
    Copy the full SHA
    8383b1b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5180 from rlmark/develop

    Adds Unison programming language to community integrations list
    sidharthv96 committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    2b3dee6 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5172 from mermaid-js/renovate/all-minor

    chore(deps): update all minor dependencies (minor)
    sidharthv96 committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    34e0942 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. Configuration menu
    Copy the full SHA
    0ac3394 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'develop' into pr/rflban/4941

    * develop: (200 commits)
      chore(deps): update all minor dependencies
      adds corresponding change in docs/ecosystem
      Adds Unison programming language to community integrations list
      Fixed parser/tests
      Update docs
      Update classDiagram.md
      Update classDiagram.md
      Update docs
      Update packages/mermaid/src/diagrams/class/classDb.ts
      Update packages/mermaid/src/docs/syntax/classDiagram.md
      Update packages/mermaid/src/diagrams/class/classDb.ts
      chore(deps): update all minor dependencies
      Update generics docs
      Update docs
      Address potential undefined
      refactor: Move maxEdges out of flowchart config.
      refactor: Move maxEdges out of flowchart config.
      chore: Add maxEdges to secure list
      Update docs
      Update NiceGuy.io links in integrations-community.md
      ...
    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    1b20fe9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4941 from rflban/fix/1294_exhaustive-clear-sequen…

    …ceDb-variables
    
    fix/1294_exhaustive-clear-sequenceDb-variables
    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    54446f1 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'develop' into release/10.6.2

    * develop: (22 commits)
      chore(deps): update all minor dependencies
      adds corresponding change in docs/ecosystem
      Adds Unison programming language to community integrations list
      Fixed parser/tests
      Update docs
      Update classDiagram.md
      Update classDiagram.md
      Update docs
      Update packages/mermaid/src/diagrams/class/classDb.ts
      Update packages/mermaid/src/docs/syntax/classDiagram.md
      Update packages/mermaid/src/diagrams/class/classDb.ts
      chore(deps): update all minor dependencies
      Update generics docs
      Update docs
      Address potential undefined
      refactor: Move maxEdges out of flowchart config.
      refactor: Move maxEdges out of flowchart config.
      chore: Add maxEdges to secure list
      Update packages/mermaid/src/diagrams/class/classDb.ts
      Update docs
      ...
    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    977a3f2 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'master' into develop

    * master:
      add jetbrains blog post
      additional updates
      update latest news pages
      fix addl broken link
      fix link
      build: use `tsx` instead of `ts-node-esm`
      verbiage updates
      feat: Track outbound links in plausible
      update getting started page
      add blog post
      chore: Update promo link
      docs: Holiday promo v2
      Update packages/mermaid/src/docs/.vitepress/components/TopBar.vue
      update announcements page
      update announcement bar verbiage
    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    2516b20 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'develop' of github.com:mermaid-js/mermaid into develop

    * 'develop' of github.com:mermaid-js/mermaid:
      chore: Minor cleanup of imperativeState
      fix: replace functional approaches with oop
      chore: fix autogen docs
      chore(sequence): Update packages/mermaid/src/docs/syntax/sequenceDiagram.md
      chore(sequence): update doc for actors/participant creation/deletion fix
      chore: remove unused e2e tests file
      chore: add e2e test that shows db cleanup problem
      chore: add e2e test that shows db cleanup problem
      fix: add imperativeState and replace sequenceDb global variables with it
    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    1d4bb50 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'develop' into release/10.6.2

    * develop: (24 commits)
      chore: Minor cleanup of imperativeState
      add jetbrains blog post
      additional updates
      update latest news pages
      fix addl broken link
      fix link
      build: use `tsx` instead of `ts-node-esm`
      verbiage updates
      fix: replace functional approaches with oop
      feat: Track outbound links in plausible
      update getting started page
      add blog post
      chore: Update promo link
      docs: Holiday promo v2
      Update packages/mermaid/src/docs/.vitepress/components/TopBar.vue
      update announcements page
      update announcement bar verbiage
      chore: fix autogen docs
      chore(sequence): Update packages/mermaid/src/docs/syntax/sequenceDiagram.md
      chore(sequence): update doc for actors/participant creation/deletion fix
      ...
    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    26bab80 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    505689d View commit details
    Browse the repository at this point in the history
  9. Merge branch 'develop' into release/10.6.2

    * develop:
      docs: Remove broken integration
    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    85e7010 View commit details
    Browse the repository at this point in the history
  10. 10.6.2-rc.3

    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    6d1a38d View commit details
    Browse the repository at this point in the history
  11. Merge pull request #5169 from mermaid-js/open-arrows

    DOCS: update Flowchart page
    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    6ac8523 View commit details
    Browse the repository at this point in the history
  12. v10.7.0

    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    3e5b395 View commit details
    Browse the repository at this point in the history
  13. Merge branch 'develop' into release/10.7.0

    * develop:
      update verbiage
      update verbiage
    sidharthv96 committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    904a200 View commit details
    Browse the repository at this point in the history
  14. Update integrations-community.md (Add Codemia to the list of producti…

    …vity tools using Mermaid.)
    markqian committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    e7d239b View commit details
    Browse the repository at this point in the history
  15. Merge pull request #5189 from markqian/develop

    Update integrations-community.md (Add Codemia to the list of productivity tools using Mermaid)
    huynhicode committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    1c43e8e View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2024

  1. Fix typo

    sidharthv96 committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    0e105af View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b46da49 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    11542b3 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5197 from mermaid-js/revert-5041-feature/4935_sub…

    …graph-title-margin-config-option
    
    Revert 5041 feature/4935 subgraph title margin config option
    sidharthv96 committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    d91b3ce View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5198 from mermaid-js/revert-5017-bug/4946-fix-svg…

    …-order-sequence-participant
    
    Revert "fix: render the participants in same order as they are created"
    sidharthv96 committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    7508d9a View commit details
    Browse the repository at this point in the history
  6. Merge branches 'master' and 'release/10.7.0' of github.com:mermaid-js…

    …/mermaid into release/10.7.0
    
    * 'master' of github.com:mermaid-js/mermaid:
      add inadvertent tracking removal
      update announcement bar
    
    * 'release/10.7.0' of github.com:mermaid-js/mermaid:
    sidharthv96 committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    b3fa916 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'develop' of github.com:mermaid-js/mermaid into release/…

    …10.7.0
    
    * 'develop' of github.com:mermaid-js/mermaid:
      Revert "fix: render the participants in same order as they are created"
      Revert "Feature/4935 subgraph title margin config option"
      Update integrations-community.md (Add Codemia to the list of productivity tools using Mermaid.)
    sidharthv96 committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    54307bb View commit details
    Browse the repository at this point in the history
  8. docs: Add release version

    sidharthv96 committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    d972ddd View commit details
    Browse the repository at this point in the history