{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":649467913,"defaultBranch":"main","name":"ratatui-website","ownerLogin":"ratatui-org","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2023-06-04T23:35:54.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/125200832?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1721079228.0","currentOid":""},"activityList":{"items":[{"before":"18aa1c1f322f5246a7d268c36b6d14b56c535674","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/npm-dependencies-081b6016ae","pushedAt":"2024-07-15T21:33:48.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"joshka","name":"Josh McKinney","path":"/joshka","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/381361?s=80&v=4"}},{"before":"9c2265fbd135006fe990026f0f9ff4df93d3c864","after":"c79a1dd808b81626fddc23d6d1018d4c2963cb69","ref":"refs/heads/main","pushedAt":"2024-07-15T21:33:46.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"joshka","name":"Josh McKinney","path":"/joshka","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/381361?s=80&v=4"},"commit":{"message":"chore(deps): bump the npm-dependencies group with 3 updates (#658)\n\nBumps the npm-dependencies group with 3 updates:\r\n[@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check),\r\n[@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight)\r\nand [prettier](https://github.com/prettier/prettier).\r\n\r\nUpdates `@astrojs/check` from 0.7.0 to 0.8.1\r\n
\r\nRelease notes\r\n

Sourced from @​astrojs/check's\r\nreleases.

\r\n
\r\n

@​astrojs/check@​0.8.1

\r\n

Patch Changes

\r\n\r\n

@​astrojs/check@​0.8.0

\r\n

Minor Changes

\r\n\r\n

Patch Changes

\r\n\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from @​astrojs/check's\r\nchangelog.

\r\n
\r\n

0.8.1

\r\n

Patch Changes

\r\n\r\n

0.8.0

\r\n

Minor Changes

\r\n\r\n

Patch Changes

\r\n\r\n
\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\nUpdates `@astrojs/starlight` from 0.25.0 to 0.25.1\r\n
\r\nRelease notes\r\n

Sourced from @​astrojs/starlight's\r\nreleases.

\r\n
\r\n

@​astrojs/starlight@​0.25.1

\r\n

Patch Changes

\r\n\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from @​astrojs/starlight's\r\nchangelog.

\r\n
\r\n

0.25.1

\r\n

Patch Changes

\r\n\r\n
\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\nUpdates `prettier` from 3.3.2 to 3.3.3\r\n
\r\nRelease notes\r\n

Sourced from prettier's\r\nreleases.

\r\n
\r\n

3.3.3

\r\n

🔗 Changelog

\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from prettier's\r\nchangelog.

\r\n
\r\n

3.3.3

\r\n

diff

\r\n

Add parentheses for nullish coalescing in ternary (#16391\r\nby @​cdignam-segment)

\r\n

This change adds clarity to operator precedence.

\r\n\r\n
// Input\r\nfoo ? bar ?? foo : baz;\r\nfoo ?? bar ? a : b;\r\na ? b : foo ?? bar;\r\n

// Prettier 3.3.2
\r\nfoo ? bar ?? foo : baz;
\r\nfoo ?? bar ? a : b;
\r\na ? b : foo ?? bar;

\r\n

// Prettier 3.3.3
\r\nfoo ? (bar ?? foo) : baz;
\r\n(foo ?? bar) ? a : b;
\r\na ? b : (foo ?? bar);
\r\n

\r\n

Add parentheses for decorator expressions (#16458\r\nby @​y-schneider)

\r\n

Prevent parentheses around member expressions or tagged template\r\nliterals from being removed to follow the stricter parsing rules of\r\nTypeScript 5.5.

\r\n\r\n
// Input\r\n@(foo`tagged template`)\r\nclass X {}\r\n

// Prettier 3.3.2
\r\n@​footagged\r\ntemplate
\r\nclass X {}

\r\n

// Prettier 3.3.3
\r\n@(footagged template)
\r\nclass X {}
\r\n

\r\n

Support @let declaration syntax (#16474\r\nby @​sosukesuzuki)

\r\n

Adds support for Angular v18 @let declaration\r\nsyntax.

\r\n

Please see the following code example. The @let\r\ndeclaration allows you to define local variables within the\r\ntemplate:

\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): bump the npm-dependencies group with 3 updates (#658)"}},{"before":"e17e45c67b13678c8f1db120de2fa4f4cbde5b03","after":null,"ref":"refs/heads/dependabot/cargo/cargo-dependencies-d0899d5aa2","pushedAt":"2024-07-15T21:03:32.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"joshka","name":"Josh McKinney","path":"/joshka","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/381361?s=80&v=4"}},{"before":"c4971c8cff3f5af26c7e2bf096eaa8210fbb73b3","after":"9c2265fbd135006fe990026f0f9ff4df93d3c864","ref":"refs/heads/main","pushedAt":"2024-07-15T21:03:30.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"joshka","name":"Josh McKinney","path":"/joshka","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/381361?s=80&v=4"},"commit":{"message":"chore(deps): bump clap from 4.5.8 to 4.5.9 in the cargo-dependencies group (#659)\n\nBumps the cargo-dependencies group with 1 update:\r\n[clap](https://github.com/clap-rs/clap).\r\n\r\nUpdates `clap` from 4.5.8 to 4.5.9\r\n
\r\nRelease notes\r\n

Sourced from clap's\r\nreleases.

\r\n
\r\n

v4.5.9

\r\n

[4.5.9] - 2024-07-09

\r\n

Fixes

\r\n
    \r\n
  • (error) When defining a custom help flag, be sure to\r\nsuggest it like we do the built-in one
  • \r\n
\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from clap's\r\nchangelog.

\r\n
\r\n

[4.5.9] - 2024-07-09

\r\n

Fixes

\r\n
    \r\n
  • (error) When defining a custom help flag, be sure to\r\nsuggest it like we do the built-in one
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.5.8&new-version=4.5.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): bump clap from 4.5.8 to 4.5.9 in the cargo-dependencies …"}},{"before":null,"after":"e17e45c67b13678c8f1db120de2fa4f4cbde5b03","ref":"refs/heads/dependabot/cargo/cargo-dependencies-d0899d5aa2","pushedAt":"2024-07-15T09:39:05.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"chore(deps): bump clap in the cargo-dependencies group\n\nBumps the cargo-dependencies group with 1 update: [clap](https://github.com/clap-rs/clap).\n\n\nUpdates `clap` from 4.5.8 to 4.5.9\n- [Release notes](https://github.com/clap-rs/clap/releases)\n- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.8...v4.5.9)\n\n---\nupdated-dependencies:\n- dependency-name: clap\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: cargo-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): bump clap in the cargo-dependencies group"}},{"before":null,"after":"18aa1c1f322f5246a7d268c36b6d14b56c535674","ref":"refs/heads/dependabot/npm_and_yarn/npm-dependencies-081b6016ae","pushedAt":"2024-07-15T09:10:32.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"chore(deps): bump the npm-dependencies group with 3 updates\n\nBumps the npm-dependencies group with 3 updates: [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check), [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) and [prettier](https://github.com/prettier/prettier).\n\n\nUpdates `@astrojs/check` from 0.7.0 to 0.8.1\n- [Release notes](https://github.com/withastro/language-tools/releases)\n- [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md)\n- [Commits](https://github.com/withastro/language-tools/commits/@astrojs/check@0.8.1/packages/astro-check)\n\nUpdates `@astrojs/starlight` from 0.25.0 to 0.25.1\n- [Release notes](https://github.com/withastro/starlight/releases)\n- [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)\n- [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.25.1/packages/starlight)\n\nUpdates `prettier` from 3.3.2 to 3.3.3\n- [Release notes](https://github.com/prettier/prettier/releases)\n- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/prettier/prettier/compare/3.3.2...3.3.3)\n\n---\nupdated-dependencies:\n- dependency-name: \"@astrojs/check\"\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: npm-dependencies\n- dependency-name: \"@astrojs/starlight\"\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: npm-dependencies\n- dependency-name: prettier\n dependency-type: direct:development\n update-type: version-update:semver-patch\n dependency-group: npm-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): bump the npm-dependencies group with 3 updates"}},{"before":"4329942a75f14c997eda150540ec2e3f153ed3ca","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/npm-dependencies-6f6b708976","pushedAt":"2024-07-08T12:01:58.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"}},{"before":"3a618b5283d3a4e1b7c4057c1e5d7f8bfcd11a44","after":"c4971c8cff3f5af26c7e2bf096eaa8210fbb73b3","ref":"refs/heads/main","pushedAt":"2024-07-08T12:01:56.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"},"commit":{"message":"chore(deps): bump the npm-dependencies group with 7 updates (#657)\n\nBumps the npm-dependencies group with 7 updates:\r\n\r\n| Package | From | To |\r\n| --- | --- | --- |\r\n|\r\n[@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight)\r\n| `0.24.5` | `0.25.0` |\r\n| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) |\r\n`4.11.3` | `4.11.5` |\r\n| [marked](https://github.com/markedjs/marked) | `13.0.1` | `13.0.2` |\r\n|\r\n[starlight-links-validator](https://github.com/HiDeoo/starlight-links-validator)\r\n| `0.9.0` | `0.9.1` |\r\n| [typescript](https://github.com/Microsoft/TypeScript) | `5.5.2` |\r\n`5.5.3` |\r\n| [playwright](https://github.com/microsoft/playwright) | `1.45.0` |\r\n`1.45.1` |\r\n|\r\n[prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports)\r\n| `3.2.4` | `4.0.0` |\r\n\r\nUpdates `@astrojs/starlight` from 0.24.5 to 0.25.0\r\n
\r\nRelease notes\r\n

Sourced from @​astrojs/starlight's\r\nreleases.

\r\n
\r\n

@​astrojs/starlight@​0.25.0

\r\n

Minor Changes

\r\n
    \r\n
  • \r\n

    #2025\r\n47f32c1\r\nThanks @​HiDeoo! -\r\nRemoves the / search shortcut for accessibility\r\nreasons.

    \r\n

    ⚠️ Potentially breaking change: The\r\nsearch.shortcutLabel UI string has been removed. If you\r\nwere using this string in your custom UI, you will need to update your\r\ncode.

    \r\n
  • \r\n
  • \r\n

    #2064\r\nc5b47cb\r\nThanks @​SnowDingo! -\r\nImproves styling of Markdown tables to work better in different\r\ncontexts, including against different background colours like when used\r\nin asides.

    \r\n
  • \r\n
  • \r\n

    #2031\r\n2bab648\r\nThanks @​delucis!\r\n- Makes sidebar entry parsing stricter in Starlight config

    \r\n

    ⚠️ Potentially breaking change: Previously Starlight\r\nwould accept a sidebar entry that matched one of its expected shapes,\r\neven if it included additional properties. For example, including both\r\nlink and items was considered valid, with\r\nitems being ignored. Now, it is an error to include more\r\nthan one of link, items, or\r\nautogenerate in a sidebar entry.

    \r\n

    If you see errors after updating, look for sidebar entries in the\r\nStarlight configuration in astro.config.mjs that include\r\ntoo many keys and remove the one that was previously ignored.

    \r\n
  • \r\n
  • \r\n

    #1874\r\neeba06e\r\nThanks @​lorenzolewis!\r\n- Adds a new syntax for specifying sidebar link items for internal\r\nlinks

    \r\n

    You can now specify an internal page using only its slug, either as a\r\nstring, or as an object with a slug property:

    \r\n
    starlight({\r\n  title: 'Docs with easier sidebars',\r\n  sidebar: ['getting-started', { slug: 'guides/installation' }],\r\n});\r\n
    \r\n

    Starlight will use the linked page’s frontmatter to configure the\r\nsidebar link.

    \r\n
  • \r\n
\r\n

Patch Changes

\r\n
    \r\n
  • #2081\r\nf0181d2\r\nThanks @​andrii-bodnar!\r\n- Updates the Ukrainian UI translations
  • \r\n
\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from @​astrojs/starlight's\r\nchangelog.

\r\n
\r\n

0.25.0

\r\n

Minor Changes

\r\n
    \r\n
  • \r\n

    #2025\r\n47f32c1\r\nThanks @​HiDeoo! -\r\nRemoves the / search shortcut for accessibility\r\nreasons.

    \r\n

    ⚠️ Potentially breaking change: The\r\nsearch.shortcutLabel UI string has been removed. If you\r\nwere using this string in your custom UI, you will need to update your\r\ncode.

    \r\n
  • \r\n
  • \r\n

    #2064\r\nc5b47cb\r\nThanks @​SnowDingo! -\r\nImproves styling of Markdown tables to work better in different\r\ncontexts, including against different background colours like when used\r\nin asides.

    \r\n
  • \r\n
  • \r\n

    #2031\r\n2bab648\r\nThanks @​delucis!\r\n- Makes sidebar entry parsing stricter in Starlight config

    \r\n

    ⚠️ Potentially breaking change: Previously Starlight\r\nwould accept a sidebar entry that matched one of its expected shapes,\r\neven if it included additional properties. For example, including both\r\nlink and items was considered valid, with\r\nitems being ignored. Now, it is an error to include more\r\nthan one of link, items, or\r\nautogenerate in a sidebar entry.

    \r\n

    If you see errors after updating, look for sidebar entries in the\r\nStarlight configuration in astro.config.mjs that include\r\ntoo many keys and remove the one that was previously ignored.

    \r\n
  • \r\n
  • \r\n

    #1874\r\neeba06e\r\nThanks @​lorenzolewis!\r\n- Adds a new syntax for specifying sidebar link items for internal\r\nlinks

    \r\n

    You can now specify an internal page using only its slug, either as a\r\nstring, or as an object with a slug property:

    \r\n
    starlight({\r\n  title: 'Docs with easier sidebars',\r\n  sidebar: ['getting-started', { slug: 'guides/installation' }],\r\n});\r\n
    \r\n

    Starlight will use the linked page’s frontmatter to configure the\r\nsidebar link.

    \r\n
  • \r\n
\r\n

Patch Changes

\r\n
    \r\n
  • #2081\r\nf0181d2\r\nThanks @​andrii-bodnar!\r\n- Updates the Ukrainian UI translations
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 1c70df6\r\n[ci] release (#2082)
  • \r\n
  • eeba06e\r\nFeat: Autogenerate sidebar labels (#1874)
  • \r\n
  • c5b47cb\r\nImproved table element styles & fixed table styles inside asides (#2064)
  • \r\n
  • 47f32c1\r\nRemove / search shortcut (#2025)
  • \r\n
  • 2bab648\r\nError for sidebar entries that match multiple entry schemas (#2031)
  • \r\n
  • f0181d2\r\ni18n(uk): update packages/starlight/translations/uk.json\r\n(#2081)
  • \r\n
  • a96d3e8\r\ntest: extend default coverage.exclude (#2079)
  • \r\n
  • a37f935\r\nTweak E2E tests (#2075)
  • \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `astro` from 4.11.3 to 4.11.5\r\n
\r\nRelease notes\r\n

Sourced from astro's\r\nreleases.

\r\n
\r\n

astro@4.11.5

\r\n

Patch Changes

\r\n
    \r\n
  • #11408\r\nb9e906f\r\nThanks @​matthewp! - Revert\r\nchange to how boolean attributes work
  • \r\n
\r\n

astro@4.11.4

\r\n

Patch Changes

\r\n
    \r\n
  • \r\n

    #11362\r\n93993b7\r\nThanks @​ematipico! -\r\nFixes an issue where creating manually the i18n middleware could break\r\nthe logic of the functions of the virtual module\r\nastro:i18n

    \r\n
  • \r\n
  • \r\n

    #11349\r\n98d9ce4\r\nThanks @​ematipico! -\r\nFixes an issue where Astro didn't throw an error when\r\nAstro.rewrite was used without providing the experimental\r\nflag

    \r\n
  • \r\n
  • \r\n

    #11352\r\na55ee02\r\nThanks @​ematipico! -\r\nFixes an issue where the rewrites didn't update the status code when\r\nusing manual i18n routing.

    \r\n
  • \r\n
  • \r\n

    #11388\r\n3a223b4\r\nThanks @​mingjunlu! -\r\nAdjusts the color of punctuations in error overlay.

    \r\n
  • \r\n
  • \r\n

    #11369\r\ne6de11f\r\nThanks @​bluwy! -\r\nFixes attribute rendering for non-boolean attributes with boolean\r\nvalues

    \r\n
  • \r\n
\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from astro's\r\nchangelog.

\r\n
\r\n

4.11.5

\r\n

Patch Changes

\r\n
    \r\n
  • #11408\r\nb9e906f\r\nThanks @​matthewp! - Revert\r\nchange to how boolean attributes work
  • \r\n
\r\n

4.11.4

\r\n

Patch Changes

\r\n
    \r\n
  • \r\n

    #11362\r\n93993b7\r\nThanks @​ematipico! -\r\nFixes an issue where creating manually the i18n middleware could break\r\nthe logic of the functions of the virtual module\r\nastro:i18n

    \r\n
  • \r\n
  • \r\n

    #11349\r\n98d9ce4\r\nThanks @​ematipico! -\r\nFixes an issue where Astro didn't throw an error when\r\nAstro.rewrite was used without providing the experimental\r\nflag

    \r\n
  • \r\n
  • \r\n

    #11352\r\na55ee02\r\nThanks @​ematipico! -\r\nFixes an issue where the rewrites didn't update the status code when\r\nusing manual i18n routing.

    \r\n
  • \r\n
  • \r\n

    #11388\r\n3a223b4\r\nThanks @​mingjunlu! -\r\nAdjusts the color of punctuations in error overlay.

    \r\n
  • \r\n
  • \r\n

    #11369\r\ne6de11f\r\nThanks @​bluwy! -\r\nFixes attribute rendering for non-boolean attributes with boolean\r\nvalues

    \r\n
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 75d118b\r\n[ci] release (#11409)
  • \r\n
  • b9e906f\r\nRevert "Fix attribute rendering for boolean values (#11369)"\r\n(#11408)
  • \r\n
  • 571e184\r\n[ci] release (#11351)
  • \r\n
  • d958e08\r\n[ci] format
  • \r\n
  • a55ee02\r\nfix(rewrite): correctly update the status code during a rewrite (#11352)
  • \r\n
  • 93993b7\r\nfix(i18n): update strategy when defining manually astro i18n middleware\r\n(#11362)
  • \r\n
  • 3a223b4\r\nfix(overlay): adjust the color of punctuations (#11388)
  • \r\n
  • e60aab9\r\nfix(deps): update all non-major dependencies (#11383)
  • \r\n
  • e6de11f\r\nFix attribute rendering for boolean values (#11369)
  • \r\n
  • 9176cf1\r\n[docs] update compressHTML entry for readability (#11345)
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `marked` from 13.0.1 to 13.0.2\r\n
\r\nRelease notes\r\n

Sourced from marked's\r\nreleases.

\r\n
\r\n

v13.0.2

\r\n

13.0.2\r\n(2024-07-04)

\r\n

Bug Fixes

\r\n
    \r\n
  • fix list item with blank first line (#3351)\r\n(d28e4c6)
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • a3887a1\r\nchore(release): 13.0.2 [skip ci]
  • \r\n
  • d28e4c6\r\nfix: fix list item with blank first line (#3351)
  • \r\n
  • b17ff8b\r\nchore: fix rules scripts (#3358)
  • \r\n
  • 600df67\r\nchore(deps-dev): Bump @​typescript-eslint/eslint-plugin\r\nfrom 7.13.0 to 7.14.1 ...
  • \r\n
  • e705568\r\nchore(deps-dev): Bump @​typescript-eslint/parser from\r\n7.13.1 to 7.14.1 (#3357)
  • \r\n
  • 2b7f714\r\nchore(deps-dev): Bump eslint-plugin-promise from 6.2.0 to 6.4.0 (#3356)
  • \r\n
  • 1ee6327\r\nchore: add only test scripts (#3355)
  • \r\n
  • 42954aa\r\nchore(deps-dev): Bump marked-highlight from 2.1.2 to 2.1.3 (#3347)
  • \r\n
  • 976da5c\r\nchore(deps-dev): Bump\r\n@​semantic-release/release-notes-generator from 14.0.0\r\nt...
  • \r\n
  • 30f29b0\r\nchore(deps-dev): Bump typescript from 5.4.5 to 5.5.2 (#3345)
  • \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `starlight-links-validator` from 0.9.0 to 0.9.1\r\n
\r\nRelease notes\r\n

Sourced from starlight-links-validator's\r\nreleases.

\r\n
\r\n

v0.9.1

\r\n

   🐞 Bug Fixes

\r\n
    \r\n
  • Fixes a potential validation issue that could lead to a failing\r\nbuild with no reports being displayed  -  by @​HiDeoo (719c8)
  • \r\n
\r\n
    View\r\nchanges on GitHub
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 1954152\r\nchore: release v0.9.1
  • \r\n
  • 409d081\r\nMerge pull request #45\r\nfrom HiDeoo/hd-invalid-asset-url-error
  • \r\n
  • 719c891\r\nfix: Fixes a potential validation issue that could lead to a failing\r\nbuild wi...
  • \r\n
  • ff9e824\r\ndocs: fix package name
  • \r\n
  • 24d2cad\r\nMerge pull request #43\r\nfrom HiDeoo/hd-docs-improvements
  • \r\n
  • 36da21b\r\ndocs: update @hideoo/starlight-plugins-docs-components
  • \r\n
  • 30d0ed8\r\ndocs: update readme files
  • \r\n
  • d24e93a\r\ndocs: add resources page
  • \r\n
  • 5cfe398\r\ndocs: update getting starteed guide
  • \r\n
  • 41829de\r\ndocs: update index cards
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `typescript` from 5.5.2 to 5.5.3\r\n
\r\nRelease notes\r\n

Sourced from typescript's\r\nreleases.

\r\n
\r\n

TypeScript 5.5.3

\r\n

For release notes, check out the release\r\nannouncement.

\r\n

For the complete list of fixed issues, check out the

\r\n
    \r\n
  • fixed\r\nissues query for TypeScript v5.5.3 (Stable).
  • \r\n
  • fixed\r\nissues query for TypeScript v5.5.2 (Stable).
  • \r\n
  • fixed\r\nissues query for TypeScript v5.5.1 (RC).
  • \r\n
  • fixed\r\nissues query for TypeScript v5.5.0 (Beta).
  • \r\n
\r\n

Downloads are available on:

\r\n
    \r\n
  • npm
  • \r\n
  • NuGet\r\npackage
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • f0e9921\r\nBump version to 5.5.3 and LKG
  • \r\n
  • 738bd60\r\nCherry-pick #58966\r\nto release-5.5 (#59002)
  • \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `playwright` from 1.45.0 to 1.45.1\r\n
\r\nRelease notes\r\n

Sourced from playwright's\r\nreleases.

\r\n
\r\n

v1.45.1

\r\n

Highlights

\r\n

microsoft/playwright#31473\r\n- [REGRESSION]: Playwright raises an error ENOENT: no such file or\r\ndirectory, open 'test-results/.playwright-artifacts-0/hash.zip' with\r\nElectron\r\nmicrosoft/playwright#31442\r\n- [REGRESSION]: Locators of elements changing from/to hidden have\r\noperations hanging when using --disable-web-security\r\nmicrosoft/playwright#31431\r\n- [REGRESSION]: NewTab doesn't work properly with Chrome with\r\n--disable-web-security\r\nmicrosoft/playwright#31425\r\n- [REGRESSION]: beforeEach hooks are not skipped when describe condition\r\ndepends on fixtures\r\nmicrosoft/playwright#31491\r\n- [REGRESSION]: @playwright/experimental-ct-react doesn't\r\nwork with VSCode extension and PNPM

\r\n

Browser Versions

\r\n
    \r\n
  • Chromium 127.0.6533.5
  • \r\n
  • Mozilla Firefox 127.0
  • \r\n
  • WebKit 17.4
  • \r\n
\r\n

This version was also tested against the following stable\r\nchannels:

\r\n
    \r\n
  • Google Chrome 126
  • \r\n
  • Microsoft Edge 126
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • e8989f8\r\nchore: mark v1.45.1 (#31516)
  • \r\n
  • 1d94caa\r\ncherry-pick(#31496):\r\ndocs(release-notes): fix .NET snippets
  • \r\n
  • 5be5168\r\ncherry-pick(#31504):\r\nfix(ct): export package.json
  • \r\n
  • 0fe7a10\r\ncherry-pick(#31437):\r\nfix(electron): tracing with @​playwright/test
  • \r\n
  • 4ec4ccf\r\ncherry-pick(#31401):\r\nchore: .NET generator fixes
  • \r\n
  • 3b4d32e\r\ncherry-pick(#31458):\r\nfix(utility): create utility world when web security is ...
  • \r\n
  • 4ccaef6\r\ncherry-pick(#31426):\r\nfix(runner): do not run beforeEach hooks upon skip modifier
  • \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `prettier-plugin-organize-imports` from 3.2.4 to 4.0.0\r\n
\r\nRelease notes\r\n

Sourced from prettier-plugin-organize-imports's\r\nreleases.

\r\n
\r\n

4.0.0

\r\n

Version 4.0.0 upgrades/replaces the Volar packages used\r\nfor Vue support, to use the latest vue-tsc package that's\r\npart of Volar 2. To migrate, you just have to remove\r\n@volar/vue-typescript and if you're using it, also\r\n@volar/vue-language-plugin-pug, and replace it with\r\nvue-tsc and @vue/language-plugin-pug\r\nrespectively. There are no breaking changes other than this.

\r\n

Thanks @​johnsoncodehk\r\nfor contributing this :tada:

\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from prettier-plugin-organize-imports's\r\nchangelog.

\r\n
\r\n

Version 4.0.0 upgrades/replaces the Volar packages used\r\nfor Vue support, to use the latest vue-tsc package that's\r\npart of Volar 2. To migrate, you just have to remove\r\n@volar/vue-typescript and if you're using it, also\r\n@volar/vue-language-plugin-pug, and replace it with\r\nvue-tsc and @vue/language-plugin-pug\r\nrespectively. There are no breaking changes other than this.

\r\n

Version 3.2.4 implements a fix to skip when formatting\r\nranges (i.e. if the plugin is requested to format a range, it doesn't do\r\nanything because it would lack the full file context).

\r\n

Version 3.2.3 updates the readme with instructions for\r\nPrettier 3.

\r\n

Version 3.2.2 fixes a performance regression introduced\r\nin 3.2.0.

\r\n

Version 3.2.1 fixes the implementation of the language\r\nservice host's getCurrentDirectory method to return the\r\ndirectory containing the tsconfig, rather than using\r\nts.sys.getCurrentDirectory (which returns\r\nprocess.cwd()). This should prevent issues with resolving\r\ncompiler plugins with Volar (which is used for Vue support).

\r\n

Version 3.2.0 adds and fixes support for pug templates\r\nin Vue files (via @volar/vue-language-plugin-pug). Please\r\nbe aware that you'll need to update your version of the\r\n@volar/vue-typescript peer dependency from 0.x\r\nto 1.x.

\r\n

Version 3.1.0 adds an option to skip destructive code\r\nactions like removing unused imports.

\r\n

Version 3.0.3 fixes a performance regression introduced\r\nin 3.0.2.

\r\n

Version 3.0.2 fixes a regression introduced by adding\r\nsome file-system related methods to the language service host (to fix a\r\nbug), which revealed that another method's implementation was\r\nincorrect.

\r\n

Version 3.0.1 bumps the\r\n@volar/vue-typescript version to fix more edge cases, e. g.\r\nnot removing imports when a component is used via kebab-case naming.\r\n@volar/vue-typescript is now defined as an optional peer\r\ndependency and you'll need to install version 0.39 or\r\nlater. Furthermore a fix has been added that should help support more\r\nmodule resolution algorithms.

\r\n

Version 3.0.0 switches to a different package for Vue\r\nsupport, which fixes some more issues, e. g. support for setup scripts.\r\nNo breaking changes otherwise.

\r\n

Version 2.3.4 fixes an issue with Vue v2 files.

\r\n

Version 2.3.3 fixes a bug where default imports were\r\nremoved erroneously.

\r\n

Version 2.3.1 adds debug logs and fixes Vue.js\r\nsupport.

\r\n

Version 2.2.0 adds a compiler options cache to improve\r\nperformance.

\r\n

Version 2.1.0 adds support for Vue.js (.vue\r\nfiles).

\r\n

Version 2.0.0 adds support for the parsers\r\nbabel (i. e. JavaScript) and babel-ts which\r\nare only available since Prettier v2 (and thus the peer dependency has\r\nreceived a major bump).

\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 8ae2ddd\r\n4.0.0
  • \r\n
  • 0e19fb8\r\ndocs: changelog in separate file, add 4.0.0 changelog
  • \r\n
  • 3929ec3\r\nfix: re-add @vue/language-plugin-pug as optional peer\r\ndep
  • \r\n
  • 235be2f\r\nfeat!: upgrade to Volar v2 (#129)
  • \r\n
  • 9609e4e\r\ndocs(readme): update badge
  • \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): bump the npm-dependencies group with 7 updates (#657)"}},{"before":null,"after":"4329942a75f14c997eda150540ec2e3f153ed3ca","ref":"refs/heads/dependabot/npm_and_yarn/npm-dependencies-6f6b708976","pushedAt":"2024-07-08T09:59:11.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"chore(deps): bump the npm-dependencies group with 7 updates\n\nBumps the npm-dependencies group with 7 updates:\n\n| Package | From | To |\n| --- | --- | --- |\n| [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.24.5` | `0.25.0` |\n| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.11.3` | `4.11.5` |\n| [marked](https://github.com/markedjs/marked) | `13.0.1` | `13.0.2` |\n| [starlight-links-validator](https://github.com/HiDeoo/starlight-links-validator) | `0.9.0` | `0.9.1` |\n| [typescript](https://github.com/Microsoft/TypeScript) | `5.5.2` | `5.5.3` |\n| [playwright](https://github.com/microsoft/playwright) | `1.45.0` | `1.45.1` |\n| [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `3.2.4` | `4.0.0` |\n\n\nUpdates `@astrojs/starlight` from 0.24.5 to 0.25.0\n- [Release notes](https://github.com/withastro/starlight/releases)\n- [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)\n- [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.25.0/packages/starlight)\n\nUpdates `astro` from 4.11.3 to 4.11.5\n- [Release notes](https://github.com/withastro/astro/releases)\n- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)\n- [Commits](https://github.com/withastro/astro/commits/astro@4.11.5/packages/astro)\n\nUpdates `marked` from 13.0.1 to 13.0.2\n- [Release notes](https://github.com/markedjs/marked/releases)\n- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)\n- [Commits](https://github.com/markedjs/marked/compare/v13.0.1...v13.0.2)\n\nUpdates `starlight-links-validator` from 0.9.0 to 0.9.1\n- [Release notes](https://github.com/HiDeoo/starlight-links-validator/releases)\n- [Commits](https://github.com/HiDeoo/starlight-links-validator/compare/v0.9.0...v0.9.1)\n\nUpdates `typescript` from 5.5.2 to 5.5.3\n- [Release notes](https://github.com/Microsoft/TypeScript/releases)\n- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)\n- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.5.2...v5.5.3)\n\nUpdates `playwright` from 1.45.0 to 1.45.1\n- [Release notes](https://github.com/microsoft/playwright/releases)\n- [Commits](https://github.com/microsoft/playwright/compare/v1.45.0...v1.45.1)\n\nUpdates `prettier-plugin-organize-imports` from 3.2.4 to 4.0.0\n- [Release notes](https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases)\n- [Changelog](https://github.com/simonhaenisch/prettier-plugin-organize-imports/blob/master/changelog.md)\n- [Commits](https://github.com/simonhaenisch/prettier-plugin-organize-imports/compare/v3.2.4...v4.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: \"@astrojs/starlight\"\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: npm-dependencies\n- dependency-name: astro\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: npm-dependencies\n- dependency-name: marked\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: npm-dependencies\n- dependency-name: starlight-links-validator\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: npm-dependencies\n- dependency-name: typescript\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: npm-dependencies\n- dependency-name: playwright\n dependency-type: direct:development\n update-type: version-update:semver-patch\n dependency-group: npm-dependencies\n- dependency-name: prettier-plugin-organize-imports\n dependency-type: direct:development\n update-type: version-update:semver-major\n dependency-group: npm-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): bump the npm-dependencies group with 7 updates"}},{"before":"c4d248f72b6ea1784a1060be98cf04e779e4ad3b","after":null,"ref":"refs/heads/dependabot/cargo/cargo-dependencies-8f77c3942f","pushedAt":"2024-07-08T09:50:19.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"joshka","name":"Josh McKinney","path":"/joshka","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/381361?s=80&v=4"}},{"before":"1f38e1bcdfdd5295de5f4bdfd9f7e98c88aecb54","after":"3a618b5283d3a4e1b7c4057c1e5d7f8bfcd11a44","ref":"refs/heads/main","pushedAt":"2024-07-08T09:50:17.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"joshka","name":"Josh McKinney","path":"/joshka","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/381361?s=80&v=4"},"commit":{"message":"chore(deps): bump the cargo-dependencies group with 2 updates (#656)\n\nBumps the cargo-dependencies group with 2 updates:\r\n[serde](https://github.com/serde-rs/serde) and\r\n[serde_json](https://github.com/serde-rs/json).\r\n\r\nUpdates `serde` from 1.0.203 to 1.0.204\r\n
\r\nRelease notes\r\n

Sourced from serde's\r\nreleases.

\r\n
\r\n

v1.0.204

\r\n
    \r\n
  • Apply #[diagnostic::on_unimplemented] attribute on Rust 1.78+ to\r\nsuggest adding serde derive or enabling a "serde" feature flag\r\nin dependencies (#2767,\r\nthanks @​weiznich)
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 18dcae0\r\nRelease 1.0.204
  • \r\n
  • 58c307f\r\nAlphabetize list of rustc-check-cfg
  • \r\n
  • 8cc4809\r\nMerge pull request #2769\r\nfrom dtolnay/onunimpl
  • \r\n
  • 1179158\r\nUpdate ui test with diagnostic::on_unimplemented from PR 2767
  • \r\n
  • 91aa40e\r\nAdd ui test of unsatisfied serde trait bound
  • \r\n
  • 595019e\r\nCut test_suite from workspace members in old toolchain CI jobs
  • \r\n
  • b0d7917\r\nPull in trybuild 'following types implement trait' fix
  • \r\n
  • 8e6637a\r\nMerge pull request #2767\r\nfrom weiznich/feature/diagnostic_on_unimplemented
  • \r\n
  • 694fe05\r\nUse the #[diagnostic::on_unimplemented] attribute when\r\npossible
  • \r\n
  • f3dfd2a\r\nSuppress dead code warning in test of unit struct remote derive
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `serde_json` from 1.0.119 to 1.0.120\r\n
\r\nRelease notes\r\n

Sourced from serde_json's\r\nreleases.

\r\n
\r\n

v1.0.120

\r\n
    \r\n
  • Correctly specify required version of indexmap\r\ndependency (#1152,\r\nthanks @​cforycki)
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • bcedc3d\r\nRelease 1.0.120
  • \r\n
  • 962c0fb\r\nMerge pull request #1152\r\nfrom cforycki/fix/index-map-minimal-version
  • \r\n
  • 3480fed\r\nfix: indexmap minimal version with Map::shift_insert()
  • \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): bump the cargo-dependencies group with 2 updates (#656)"}},{"before":null,"after":"c4d248f72b6ea1784a1060be98cf04e779e4ad3b","ref":"refs/heads/dependabot/cargo/cargo-dependencies-8f77c3942f","pushedAt":"2024-07-08T09:38:06.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"chore(deps): bump the cargo-dependencies group with 2 updates\n\nBumps the cargo-dependencies group with 2 updates: [serde](https://github.com/serde-rs/serde) and [serde_json](https://github.com/serde-rs/json).\n\n\nUpdates `serde` from 1.0.203 to 1.0.204\n- [Release notes](https://github.com/serde-rs/serde/releases)\n- [Commits](https://github.com/serde-rs/serde/compare/v1.0.203...v1.0.204)\n\nUpdates `serde_json` from 1.0.119 to 1.0.120\n- [Release notes](https://github.com/serde-rs/json/releases)\n- [Commits](https://github.com/serde-rs/json/compare/v1.0.119...v1.0.120)\n\n---\nupdated-dependencies:\n- dependency-name: serde\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: cargo-dependencies\n- dependency-name: serde_json\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: cargo-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): bump the cargo-dependencies group with 2 updates"}},{"before":"d7fd9f0cc4cf74bda49383517d67d6967e60ac1f","after":null,"ref":"refs/heads/kd/update-test-code","pushedAt":"2024-07-06T01:28:36.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"}},{"before":"7ee1e084106fb23b8500b355954c6fd576b43b29","after":"1f38e1bcdfdd5295de5f4bdfd9f7e98c88aecb54","ref":"refs/heads/main","pushedAt":"2024-07-06T01:28:34.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"},"commit":{"message":"fix: Update test code in tutorial (#655)","shortMessageHtmlLink":"fix: Update test code in tutorial (#655)"}},{"before":null,"after":"d7fd9f0cc4cf74bda49383517d67d6967e60ac1f","ref":"refs/heads/kd/update-test-code","pushedAt":"2024-07-06T01:25:41.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"},"commit":{"message":"fix: Update test code in tutorial","shortMessageHtmlLink":"fix: Update test code in tutorial"}},{"before":"58a052e78225c4456b9b7bec569da9b1e1b303c3","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/npm-dependencies-94da8d687a","pushedAt":"2024-07-01T13:01:41.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"}},{"before":"5112c9be002b073293bf98c55091219b86972b19","after":"7ee1e084106fb23b8500b355954c6fd576b43b29","ref":"refs/heads/main","pushedAt":"2024-07-01T13:01:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"},"commit":{"message":"chore(deps): bump the npm-dependencies group with 4 updates (#653)\n\nBumps the npm-dependencies group with 4 updates:\r\n[@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight),\r\n[astro](https://github.com/withastro/astro/tree/HEAD/packages/astro),\r\n[marked](https://github.com/markedjs/marked) and\r\n[playwright](https://github.com/microsoft/playwright).\r\n\r\nUpdates `@astrojs/starlight` from 0.24.4 to 0.24.5\r\n
\r\nRelease notes\r\n

Sourced from @​astrojs/starlight's\r\nreleases.

\r\n
\r\n

@​astrojs/starlight@​0.24.5

\r\n

Patch Changes

\r\n
    \r\n
  • \r\n

    #2062\r\n5ac0ac6\r\nThanks @​evadecker! -\r\nIncrease theme and language select inline padding

    \r\n
  • \r\n
  • \r\n

    #2056\r\n87e9ad0\r\nThanks @​HiDeoo! -\r\nFixes an issue preventing remark plugins injected by Starlight plugins\r\nto handle Markdown text and leaf directives.

    \r\n
  • \r\n
  • \r\n

    #2063\r\n3ee1a94\r\nThanks @​delucis!\r\n- Translate fileTree.directory and aside.* UI\r\nstring into Norwegian (Bokmål).

    \r\n
  • \r\n
  • \r\n

    #2054\r\ndbfd3ee\r\nThanks @​HiDeoo! -\r\nFixes an issue when using the <StarlightPage>\r\ncomponent in a custom page with a user-defined srcDir\r\nconfiguration.

    \r\n
  • \r\n
\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from @​astrojs/starlight's\r\nchangelog.

\r\n
\r\n

0.24.5

\r\n

Patch Changes

\r\n
    \r\n
  • \r\n

    #2062\r\n5ac0ac6\r\nThanks @​evadecker! -\r\nIncrease theme and language select inline padding

    \r\n
  • \r\n
  • \r\n

    #2056\r\n87e9ad0\r\nThanks @​HiDeoo! -\r\nFixes an issue preventing remark plugins injected by Starlight plugins\r\nto handle Markdown text and leaf directives.

    \r\n
  • \r\n
  • \r\n

    #2063\r\n3ee1a94\r\nThanks @​delucis!\r\n- Translate fileTree.directory and aside.* UI\r\nstring into Norwegian (Bokmål).

    \r\n
  • \r\n
  • \r\n

    #2054\r\ndbfd3ee\r\nThanks @​HiDeoo! -\r\nFixes an issue when using the <StarlightPage>\r\ncomponent in a custom page with a user-defined srcDir\r\nconfiguration.

    \r\n
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 1d32c8b\r\n[ci] release (#2059)
  • \r\n
  • 151e980\r\n[ci] format
  • \r\n
  • 5ac0ac6\r\nfix: Add inline padding to Select (#2062)
  • \r\n
  • 3ee1a94\r\nUpdates Norwegian UI strings based on #1611\r\n(#2063)
  • \r\n
  • dbfd3ee\r\nFix usage of \\<StarlightPage> with a custom\r\nsrcDir configuration (#2054)
  • \r\n
  • 87e9ad0\r\nLet remark plugins injected by Starlight plugins handle Markdown text\r\nand lea...
  • \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `astro` from 4.11.0 to 4.11.3\r\n
\r\nRelease notes\r\n

Sourced from astro's\r\nreleases.

\r\n
\r\n

astro@4.11.3

\r\n

Patch Changes

\r\n
    \r\n
  • \r\n

    #11347\r\n33bdc54\r\nThanks @​bluwy! -\r\nFixes installed packages detection when running astro\r\ncheck

    \r\n
  • \r\n
  • \r\n

    #11327\r\n0df8142\r\nThanks @​ematipico! -\r\nFixes an issue with the container APIs where a runtime error was thrown\r\nduring the build, when using pnpm as package manager.

    \r\n
  • \r\n
\r\n

astro@4.11.2

\r\n

Patch Changes

\r\n
    \r\n
  • \r\n

    #11335\r\n4c4741b\r\nThanks @​ematipico! -\r\nReverts #11292,\r\nwhich caused a regression to the input type

    \r\n
  • \r\n
  • \r\n

    #11326\r\n41121fb\r\nThanks @​florian-lefebvre!\r\n- Fixes a case where running astro sync when using the\r\nexperimental astro:env feature would fail if environment\r\nvariables were missing

    \r\n
  • \r\n
  • \r\n

    #11338\r\n9752a0b\r\nThanks @​zaaakher! - Fixes\r\nsvg icon margin in devtool tooltip title to look coherent in\r\nrtl and ltr layouts

    \r\n
  • \r\n
  • \r\n

    #11331\r\nf1b78a4\r\nThanks @​bluwy! -\r\nRemoves resolve package and simplify internal resolve\r\ncheck

    \r\n
  • \r\n
  • \r\n

    #11339\r\n8fdbf0e\r\nThanks @​matthewp! - Remove\r\nnon-fatal errors from telemetry

    \r\n

    Previously we tracked non-fatal errors in telemetry to get a good\r\nidea of the types of errors that occur in astro dev.\r\nHowever this has become noisy over time and results in a lot of data\r\nthat isn't particularly useful. This removes those non-fatal errors from\r\nbeing tracked.

    \r\n
  • \r\n
\r\n

astro@4.11.1

\r\n

Patch Changes

\r\n
    \r\n
  • \r\n

    #11308\r\n44c61dd\r\nThanks @​ematipico! -\r\nFixes an issue where custom 404.astro and\r\n500.astro were not returning the correct status code when\r\nrendered inside a rewriting cycle.

    \r\n
  • \r\n
  • \r\n

    #11302\r\n0622567\r\nThanks @​martrapp! - Fixes\r\nan issue with the view transition router when redirecting to an URL with\r\ndifferent origin.

    \r\n
  • \r\n
  • \r\n

    Updated dependencies [b6afe6a,\r\n41064ce]:

    \r\n
      \r\n
    • @​astrojs/markdown-remark@​5.1.1
    • \r\n
    • @​astrojs/internal-helpers@​0.4.1
    • \r\n
    \r\n
  • \r\n
\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from astro's\r\nchangelog.

\r\n
\r\n

4.11.3

\r\n

Patch Changes

\r\n
    \r\n
  • \r\n

    #11347\r\n33bdc54\r\nThanks @​bluwy! -\r\nFixes installed packages detection when running astro\r\ncheck

    \r\n
  • \r\n
  • \r\n

    #11327\r\n0df8142\r\nThanks @​ematipico! -\r\nFixes an issue with the container APIs where a runtime error was thrown\r\nduring the build, when using pnpm as package manager.

    \r\n
  • \r\n
\r\n

4.11.2

\r\n

Patch Changes

\r\n
    \r\n
  • \r\n

    #11335\r\n4c4741b\r\nThanks @​ematipico! -\r\nReverts #11292,\r\nwhich caused a regression to the input type

    \r\n
  • \r\n
  • \r\n

    #11326\r\n41121fb\r\nThanks @​florian-lefebvre!\r\n- Fixes a case where running astro sync when using the\r\nexperimental astro:env feature would fail if environment\r\nvariables were missing

    \r\n
  • \r\n
  • \r\n

    #11338\r\n9752a0b\r\nThanks @​zaaakher! - Fixes\r\nsvg icon margin in devtool tooltip title to look coherent in\r\nrtl and ltr layouts

    \r\n
  • \r\n
  • \r\n

    #11331\r\nf1b78a4\r\nThanks @​bluwy! -\r\nRemoves resolve package and simplify internal resolve\r\ncheck

    \r\n
  • \r\n
  • \r\n

    #11339\r\n8fdbf0e\r\nThanks @​matthewp! - Remove\r\nnon-fatal errors from telemetry

    \r\n

    Previously we tracked non-fatal errors in telemetry to get a good\r\nidea of the types of errors that occur in astro dev.\r\nHowever this has become noisy over time and results in a lot of data\r\nthat isn't particularly useful. This removes those non-fatal errors from\r\nbeing tracked.

    \r\n
  • \r\n
\r\n

4.11.1

\r\n

Patch Changes

\r\n
    \r\n
  • \r\n

    #11308\r\n44c61dd\r\nThanks @​ematipico! -\r\nFixes an issue where custom 404.astro and\r\n500.astro were not returning the correct status code when\r\nrendered inside a rewriting cycle.

    \r\n
  • \r\n
  • \r\n

    #11302\r\n0622567\r\nThanks @​martrapp! - Fixes\r\nan issue with the view transition router when redirecting to an URL with\r\ndifferent origin.

    \r\n
  • \r\n
  • \r\n

    Updated dependencies [b6afe6a,\r\n41064ce]:

    \r\n
      \r\n
    • @​astrojs/markdown-remark@​5.1.1
    • \r\n
    • @​astrojs/internal-helpers@​0.4.1
    • \r\n
    \r\n
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • d7ae91c\r\n[ci] release (#11346)
  • \r\n
  • 33bdc54\r\nFix getPackage resolve path (#11347)
  • \r\n
  • 0df8142\r\nfix(container): breakdown files to avoid importing vite (#11327)
  • \r\n
  • d9e6190\r\n[ci] release (#11336)
  • \r\n
  • f1b78a4\r\nRemove resolve package and refactor db & studio exports (#11331)
  • \r\n
  • 9752a0b\r\n[ui] fix margin around devtool tooltip icon in rtl (#11338)
  • \r\n
  • 8fdbf0e\r\nRemove non-fatal errors from telemetry (#11339)
  • \r\n
  • 16af927\r\n[ci] format
  • \r\n
  • 02c37c7\r\nrefactor(plugin-content): code refactor (#11312)
  • \r\n
  • 86515f4\r\n[ci] format
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `marked` from 13.0.0 to 13.0.1\r\n
\r\nRelease notes\r\n

Sourced from marked's\r\nreleases.

\r\n
\r\n

v13.0.1

\r\n

13.0.1\r\n(2024-06-24)

\r\n

Bug Fixes

\r\n
    \r\n
  • fix this type in extension methods (#3339)\r\n(520b9ad)
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • aaee616\r\nchore(release): 13.0.1 [skip ci]
  • \r\n
  • 520b9ad\r\nfix: fix this type in extension methods (#3339)
  • \r\n
  • 642c30c\r\ndocs: add useNewRenderer note (#3340)
  • \r\n
  • fa2ef9d\r\nchore(deps-dev): Bump @​typescript-eslint/parser from\r\n7.12.0 to 7.13.1 (#3333)
  • \r\n
  • abb5204\r\nchore(docs): add removed option smartLists (#3332)
  • \r\n
  • f751911\r\nchore(deps-dev): Bump @​typescript-eslint/eslint-plugin\r\nfrom 7.12.0 to 7.13.0 ...
  • \r\n
  • c9cc3ae\r\nchore(deps-dev): Bump marked-highlight from 2.1.1 to 2.1.2 (#3328)
  • \r\n
  • 70bb55e\r\ndocs: fix docs (#3325)
  • \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `playwright` from 1.44.1 to 1.45.0\r\n
\r\nRelease notes\r\n

Sourced from playwright's\r\nreleases.

\r\n
\r\n

v1.45.0

\r\n

Clock

\r\n

Utilizing the new Clock API allows\r\nto manipulate and control time within tests to verify time-related\r\nbehavior. This API covers many common scenarios, including:

\r\n
    \r\n
  • testing with predefined time;
  • \r\n
  • keeping consistent time and timers;
  • \r\n
  • monitoring inactivity;
  • \r\n
  • ticking through time manually.
  • \r\n
\r\n
// Initialize clock and let the page load\r\nnaturally.\r\nawait page.clock.install({ time: new Date('2024-02-02T08:00:00') });\r\nawait page.goto('http://localhost:3333');\r\n

// Pretend that the user closed the laptop lid and opened it again at\r\n10am,
\r\n// Pause the time once reached that point.
\r\nawait page.clock.pauseAt(new Date('2024-02-02T10:00:00'));

\r\n

// Assert the page state.
\r\nawait expect(page.getByTestId('current-time')).toHaveText('2/2/2024,\r\n10:00:00 AM');

\r\n

// Close the laptop lid again and open it at 10:30am.
\r\nawait page.clock.fastForward('30:00');
\r\nawait expect(page.getByTestId('current-time')).toHaveText('2/2/2024,\r\n10:30:00 AM');
\r\n

\r\n

See the clock guide\r\nfor more details.

\r\n

Test runner

\r\n
    \r\n
  • \r\n

    New CLI option --fail-on-flaky-tests that sets exit code\r\nto 1 upon any flaky tests. Note that by default, the test\r\nrunner exits with code 0 when all failed tests recovered\r\nupon a retry. With this option, the test run will fail in such case.

    \r\n
  • \r\n
  • \r\n

    New enviroment variable PLAYWRIGHT_FORCE_TTY controls\r\nwhether built-in list, line and\r\ndot reporters assume a live terminal. For example, this\r\ncould be useful to disable tty behavior when your CI environment does\r\nnot handle ANSI control sequences well. Alternatively, you can enable\r\ntty behavior even when to live terminal is present, if you plan to\r\npost-process the output and handle control sequences.

    \r\n
    # Avoid TTY features that output ANSI control\r\nsequences\r\nPLAYWRIGHT_FORCE_TTY=0 npx playwright test\r\n

    Enable TTY features, assuming a terminal width 80

    \r\n

    PLAYWRIGHT_FORCE_TTY=80 npx playwright test
    \r\n

    \r\n
  • \r\n
  • \r\n

    New options testConfig.respectGitIgnore\r\nand testProject.respectGitIgnore\r\ncontrol whether files matching .gitignore patterns are\r\nexcluded when searching for tests.

    \r\n
  • \r\n
  • \r\n

    New property timeout is now available for custom expect\r\nmatchers. This property takes into account\r\nplaywright.config.ts and\r\nexpect.configure().

    \r\n
    import { expect as baseExpect } from\r\n'@playwright/test';\r\n

    export const expect = baseExpect.extend({
    \r\nasync toHaveAmount(locator: Locator, expected: number, options?: {\r\ntimeout?: number }) {
    \r\n// When no timeout option is specified, use the config timeout.
    \r\nconst timeout = options?.timeout ?? this.timeout;
    \r\n

    \r\n
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 4f3f6ee\r\ncherry-pick(#31421):\r\ndocs: release notes for 1.45
  • \r\n
  • d557b7b\r\ncherry-pick(#31420):\r\ndocs(java): correctly parse time (#31422)
  • \r\n
  • 1368bca\r\ncherry-pick(#31419):\r\ndocs: deprecate handle option in\r\nexposeBinding
  • \r\n
  • 6c3fc49\r\ncherry-pick(#31404):\r\nfeat(chromium): roll to r1124
  • \r\n
  • 4ae151f\r\ncherry-pick(#31340):\r\ndocs: add guide for print dialogs
  • \r\n
  • a11585f\r\ncherry-pick(#31331):\r\ndocs(test-parameterize): improve forEach example
  • \r\n
  • afcf8d2\r\ncherry-pick(#31350):\r\ndocs: fix typo in 1.45 release notes
  • \r\n
  • 599d074\r\ncherry-pick(#31356):\r\nfix(clock): throw for invalid date
  • \r\n
  • 2451791\r\ncherry-pick(#31357):\r\nfix(clock): under reused context
  • \r\n
  • 56ca1e1\r\ncherry-pick(#31369):\r\ndocs: use long for time in milliseconds (#31371)
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): bump the npm-dependencies group with 4 updates (#653)"}},{"before":"da44c99f9115e478c032e636fcb5ee21c8b92825","after":null,"ref":"refs/heads/dependabot/cargo/cargo-dependencies-3285a75a90","pushedAt":"2024-07-01T13:00:56.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"}},{"before":"4e9fae4a3c037a027c94b758026d47ebb74a627b","after":"5112c9be002b073293bf98c55091219b86972b19","ref":"refs/heads/main","pushedAt":"2024-07-01T13:00:53.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"},"commit":{"message":"chore(deps): bump the cargo-dependencies group with 4 updates (#652)\n\nBumps the cargo-dependencies group with 4 updates:\r\n[clap](https://github.com/clap-rs/clap),\r\n[log](https://github.com/rust-lang/log),\r\n[serde_json](https://github.com/serde-rs/json) and\r\n[tui-input](https://github.com/sayanarijit/tui-input).\r\n\r\nUpdates `clap` from 4.5.7 to 4.5.8\r\n
\r\nRelease notes\r\n

Sourced from clap's\r\nreleases.

\r\n
\r\n

v4.5.8

\r\n

[4.5.8] - 2024-06-28

\r\n

Fixes

\r\n
    \r\n
  • Reduce extra flushes
  • \r\n
\r\n
\r\n
\r\n
\r\nChangelog\r\n

Sourced from clap's\r\nchangelog.

\r\n
\r\n

[4.5.8] - 2024-06-28

\r\n

Fixes

\r\n
    \r\n
  • Reduce extra flushes
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `log` from 0.4.21 to 0.4.22\r\n
\r\nChangelog\r\n

Sourced from log's\r\nchangelog.

\r\n
\r\n

[0.4.22] - 2024-06-27

\r\n

What's Changed

\r\n
    \r\n
  • Add some clarifications to the library docs by @​KodrAus in rust-lang/log#620
  • \r\n
  • Add links to colog crate by @​chrivers in rust-lang/log#621
  • \r\n
  • adding line_number test + updating some testing infrastructure by @​DIvkov575 in rust-lang/log#619
  • \r\n
  • Clarify the actual set of functions that can race in _racy variants\r\nby @​KodrAus in rust-lang/log#623
  • \r\n
  • Replace deprecated std::sync::atomic::spin_loop_hint() by @​Catamantaloedis\r\nin rust-lang/log#625
  • \r\n
  • Check usage of max_level features by @​Thomasdezeeuw\r\nin rust-lang/log#627
  • \r\n
  • Remove unneeded import by @​Thomasdezeeuw\r\nin rust-lang/log#628
  • \r\n
  • Loosen orderings for logger initialization in rust-lang/log#632.\r\nOriginally by @​pwoolcoc in rust-lang/log#599
  • \r\n
  • Use Location::caller() for file and line info in rust-lang/log#633.\r\nOriginally by @​Cassy343 in rust-lang/log#520
  • \r\n
\r\n

New Contributors

\r\n
    \r\n
  • @​chrivers\r\nmade their first contribution in rust-lang/log#621
  • \r\n
  • @​DIvkov575\r\nmade their first contribution in rust-lang/log#619
  • \r\n
  • @​Catamantaloedis\r\nmade their first contribution in rust-lang/log#625
  • \r\n
\r\n

Full Changelog: https://github.com/rust-lang/log/compare/0.4.21...0.4.22

\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • d5ba2cf\r\nMerge pull request #634\r\nfrom rust-lang/cargo/0.4.22
  • \r\n
  • d1a8306\r\nprepare for 0.4.22 release
  • \r\n
  • 46894ef\r\nMerge pull request #633\r\nfrom rust-lang/feat/panic-info
  • \r\n
  • e0d389c\r\nMerge pull request #632\r\nfrom rust-lang/feat/loosen-atomics
  • \r\n
  • c9e5e13\r\nuse Location::caller() for file and line info
  • \r\n
  • 507b672\r\nloosen orderings for logger initialization
  • \r\n
  • c879b01\r\nMerge pull request #628\r\nfrom Thomasdezeeuw/fix-warnings
  • \r\n
  • 405fdb4\r\nMerge pull request #627\r\nfrom Thomasdezeeuw/check-features
  • \r\n
  • 1307ade\r\nRemove unneeded import
  • \r\n
  • 710560e\r\nDon't use --all-features in CI
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `serde_json` from 1.0.117 to 1.0.119\r\n
\r\nRelease notes\r\n

Sourced from serde_json's\r\nreleases.

\r\n
\r\n

v1.0.119

\r\n
    \r\n
  • Add serde_json::Map::shift_insert (#1149,\r\nthanks @​joshka)
  • \r\n
\r\n

v1.0.118

\r\n
    \r\n
  • Implement Hash for serde_json::Value (#1127,\r\nthanks @​edwardycl)
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • b48b9a3\r\nRelease 1.0.119
  • \r\n
  • 8878cd7\r\nMake shift_insert available for inlining like other Map methods
  • \r\n
  • 352b7ab\r\nDocument the cfg required for Map::shift_insert to exist
  • \r\n
  • c17e63f\r\nMerge pull request #1149\r\nfrom joshka/master
  • \r\n
  • 309ef6b\r\nAdd Map::shift_insert()
  • \r\n
  • a9e089a\r\nMerge pull request #1146\r\nfrom haouvw/master
  • \r\n
  • a83fe96\r\nchore: remove repeat words
  • \r\n
  • c4f24f3\r\nRelease 1.0.118
  • \r\n
  • 51d94eb\r\nCombine Map's Hash into one impl
  • \r\n
  • 5e7bedc\r\nTouch up PR 1127
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\nUpdates `tui-input` from 0.8.0 to 0.9.0\r\n
\r\nRelease notes\r\n

Sourced from tui-input's\r\nreleases.

\r\n
\r\n

v0.9.0

\r\n
    \r\n
  • termion update: termion: 2.0 -> 4.0
  • \r\n
  • Other dependencies minor and patch updates.
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 114a5d6\r\nReadme cleanup
  • \r\n
  • eeb94ed\r\nTermion major dependency update
  • \r\n
  • See full diff in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore major version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's major version (unless you unignore this specific\r\ndependency's major version or upgrade to it yourself)\r\n- `@dependabot ignore minor version` will close this\r\ngroup update PR and stop Dependabot creating any more for the specific\r\ndependency's minor version (unless you unignore this specific\r\ndependency's minor version or upgrade to it yourself)\r\n- `@dependabot ignore ` will close this group update PR\r\nand stop Dependabot creating any more for the specific dependency\r\n(unless you unignore this specific dependency or upgrade to it yourself)\r\n- `@dependabot unignore ` will remove all of the ignore\r\nconditions of the specified dependency\r\n- `@dependabot unignore ` will\r\nremove the ignore condition of the specified dependency and ignore\r\nconditions\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): bump the cargo-dependencies group with 4 updates (#652)"}},{"before":null,"after":"58a052e78225c4456b9b7bec569da9b1e1b303c3","ref":"refs/heads/dependabot/npm_and_yarn/npm-dependencies-94da8d687a","pushedAt":"2024-07-01T09:45:57.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"chore(deps): bump the npm-dependencies group with 4 updates\n\nBumps the npm-dependencies group with 4 updates: [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight), [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [marked](https://github.com/markedjs/marked) and [playwright](https://github.com/microsoft/playwright).\n\n\nUpdates `@astrojs/starlight` from 0.24.4 to 0.24.5\n- [Release notes](https://github.com/withastro/starlight/releases)\n- [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)\n- [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.24.5/packages/starlight)\n\nUpdates `astro` from 4.11.0 to 4.11.3\n- [Release notes](https://github.com/withastro/astro/releases)\n- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)\n- [Commits](https://github.com/withastro/astro/commits/astro@4.11.3/packages/astro)\n\nUpdates `marked` from 13.0.0 to 13.0.1\n- [Release notes](https://github.com/markedjs/marked/releases)\n- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)\n- [Commits](https://github.com/markedjs/marked/compare/v13.0.0...v13.0.1)\n\nUpdates `playwright` from 1.44.1 to 1.45.0\n- [Release notes](https://github.com/microsoft/playwright/releases)\n- [Commits](https://github.com/microsoft/playwright/compare/v1.44.1...v1.45.0)\n\n---\nupdated-dependencies:\n- dependency-name: \"@astrojs/starlight\"\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: npm-dependencies\n- dependency-name: astro\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: npm-dependencies\n- dependency-name: marked\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: npm-dependencies\n- dependency-name: playwright\n dependency-type: direct:development\n update-type: version-update:semver-minor\n dependency-group: npm-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): bump the npm-dependencies group with 4 updates"}},{"before":null,"after":"da44c99f9115e478c032e636fcb5ee21c8b92825","ref":"refs/heads/dependabot/cargo/cargo-dependencies-3285a75a90","pushedAt":"2024-07-01T09:24:46.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"chore(deps): bump the cargo-dependencies group with 4 updates\n\nBumps the cargo-dependencies group with 4 updates: [clap](https://github.com/clap-rs/clap), [log](https://github.com/rust-lang/log), [serde_json](https://github.com/serde-rs/json) and [tui-input](https://github.com/sayanarijit/tui-input).\n\n\nUpdates `clap` from 4.5.7 to 4.5.8\n- [Release notes](https://github.com/clap-rs/clap/releases)\n- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.7...v4.5.8)\n\nUpdates `log` from 0.4.21 to 0.4.22\n- [Release notes](https://github.com/rust-lang/log/releases)\n- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/rust-lang/log/compare/0.4.21...0.4.22)\n\nUpdates `serde_json` from 1.0.117 to 1.0.119\n- [Release notes](https://github.com/serde-rs/json/releases)\n- [Commits](https://github.com/serde-rs/json/compare/v1.0.117...v1.0.119)\n\nUpdates `tui-input` from 0.8.0 to 0.9.0\n- [Release notes](https://github.com/sayanarijit/tui-input/releases)\n- [Commits](https://github.com/sayanarijit/tui-input/compare/v0.8.0...v0.9.0)\n\n---\nupdated-dependencies:\n- dependency-name: clap\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: cargo-dependencies\n- dependency-name: log\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: cargo-dependencies\n- dependency-name: serde_json\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: cargo-dependencies\n- dependency-name: tui-input\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: cargo-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): bump the cargo-dependencies group with 4 updates"}},{"before":"e3bfa8179e95af84f0e8c55a3ecef766a6976553","after":null,"ref":"refs/heads/jm/ratatui-0.27.0","pushedAt":"2024-06-28T03:53:55.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"joshka","name":"Josh McKinney","path":"/joshka","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/381361?s=80&v=4"}},{"before":"dd958873f93af824e707618f5e41df10bb4f1cf5","after":"4e9fae4a3c037a027c94b758026d47ebb74a627b","ref":"refs/heads/main","pushedAt":"2024-06-28T03:53:53.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"joshka","name":"Josh McKinney","path":"/joshka","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/381361?s=80&v=4"},"commit":{"message":"Bump Ratatui to 0.27.0 (#650)\n\n- Update code to use 0.27 idioms for importing backend and various bug\r\nfixes\r\n- Removed a bunch of glob imports (left most of the examples alone in\r\nthis for now)\r\n- This may cause some doc errors, so it's worth doing another review at\r\nsome point.\r\n\r\nFixes: https://github.com/ratatui-org/ratatui-website/issues/649","shortMessageHtmlLink":"Bump Ratatui to 0.27.0 (#650)"}},{"before":"10af51e188401f936c88ee7cbf3b82bcf5a84ffb","after":"e3bfa8179e95af84f0e8c55a3ecef766a6976553","ref":"refs/heads/jm/ratatui-0.27.0","pushedAt":"2024-06-28T03:50:32.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"joshka","name":"Josh McKinney","path":"/joshka","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/381361?s=80&v=4"},"commit":{"message":"Bump Ratatui to 0.27.0\n\n- Update code to use 0.27 way of importing backend and various bug fixes","shortMessageHtmlLink":"Bump Ratatui to 0.27.0"}},{"before":null,"after":"10af51e188401f936c88ee7cbf3b82bcf5a84ffb","ref":"refs/heads/jm/ratatui-0.27.0","pushedAt":"2024-06-28T03:39:31.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"joshka","name":"Josh McKinney","path":"/joshka","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/381361?s=80&v=4"},"commit":{"message":"Bump Ratatui to 0.27.0\n\n- Update code to use 0.27 way of importing backend and various bug fixes","shortMessageHtmlLink":"Bump Ratatui to 0.27.0"}},{"before":"db3b74ac0a5ba82ffd0e74a77bc1b6701fff5cd6","after":null,"ref":"refs/heads/kd/update-terminal-and-event-handler","pushedAt":"2024-06-27T01:47:04.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"}},{"before":"51e7f842c773a36c3a482f2c3d2f0a8b00d43ab5","after":"dd958873f93af824e707618f5e41df10bb4f1cf5","ref":"refs/heads/main","pushedAt":"2024-06-27T01:47:03.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"},"commit":{"message":"feat: Update terminal-and-event-handler.md (#647)","shortMessageHtmlLink":"feat: Update terminal-and-event-handler.md (#647)"}},{"before":"1fe77d599b62ec2e8fa4246c13f085db589b28b7","after":"db3b74ac0a5ba82ffd0e74a77bc1b6701fff5cd6","ref":"refs/heads/kd/update-terminal-and-event-handler","pushedAt":"2024-06-27T01:46:14.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"},"commit":{"message":"chore: format","shortMessageHtmlLink":"chore: format"}},{"before":null,"after":"1fe77d599b62ec2e8fa4246c13f085db589b28b7","ref":"refs/heads/kd/update-terminal-and-event-handler","pushedAt":"2024-06-27T01:35:40.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"kdheepak","name":"Dheepak Krishnamurthy","path":"/kdheepak","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1813121?s=80&v=4"},"commit":{"message":"feat: Update terminal-and-event-handler.md","shortMessageHtmlLink":"feat: Update terminal-and-event-handler.md"}},{"before":"e3a6c959320488ba4c6f4c2f7a72110d86dd24b5","after":null,"ref":"refs/heads/docs/0.27.0-highlights","pushedAt":"2024-06-24T10:58:51.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"orhun","name":"Orhun Parmaksız","path":"/orhun","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24392180?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEgCUezAA","startCursor":null,"endCursor":null}},"title":"Activity · ratatui-org/ratatui-website"}