Skip to content

Commit 72dcd0d

Browse files
slorberJosh-CenaJoey Cloverreece-whiteShreesh09
authored
chore: release Docusaurus 3.1.1 (#9793)
Co-authored-by: Joshua Chen <sidachen2003@gmail.com> Co-authored-by: Joey Clover <joey@popos.local> Co-authored-by: reece-white <93522192+reece-white@users.noreply.github.com> Co-authored-by: Shreesh Nautiyal <114166000+Shreesh09@users.noreply.github.com> Co-authored-by: Nick Gerleman <nick@nickgerleman.com> Co-authored-by: Chongyi Zheng <git@zcy.dev> Co-authored-by: MCR Studio <99176216+mcrstudio@users.noreply.github.com> Co-authored-by: sebastienlorber <lorber.sebastien@gmail.com> Co-authored-by: Sébastien Lorber <slorber@users.noreply.github.com> Co-authored-by: Ivan Mar (sOkam!) <7308253+heysokam@users.noreply.github.com> Co-authored-by: c0h1b4 <dwidman@gmail.com> Co-authored-by: Janessa Garrow <janessa.garrow@gmail.com> Co-authored-by: ozaki <29860391+OzakIOne@users.noreply.github.com> Co-authored-by: axmmisaka <6500159+axmmisaka@users.noreply.github.com> Co-authored-by: Tatsunori Uchino <tats.u@live.jp> Co-authored-by: Simen Bekkhus <sbekkhus91@gmail.com> Co-authored-by: Sanjaiyan Parthipan <parthipankalayini@gmail.com> Co-authored-by: Jack Robson <143492403+jack-robson@users.noreply.github.com> Co-authored-by: dawei-wang <dawei-wang@users.noreply.github.com> Co-authored-by: eitsupi <50911393+eitsupi@users.noreply.github.com> fix(create-docusaurus): fix readme docusaurus 2 ref (#9487) fix(theme): fix firefox CSS :has() support bug (#9530) fix(theme): docs html sidebar items should always be visible (#9531) fix: v3 admonitions should support v2 title syntax for nested admonitions (#9535) fix(theme-classic): fixed wrong cursor on dropdown menu in navbar, when window is small (#9398) fix(theme): upgrade prism-react-renderer, fix html script and style tag highlighting (#9567) fix: add v2 retrocompatible support for quoted admonitions (#9570) fix(i18n): complete translations for theme-common.json Brazilian Portuguese (pt-BR) (#9477) fix(content-blog): add baseUrl for author.image_url (#9581) fix(type-aliases): add `title` prop for imported inline SVG React components (#9612) fix(utils): Markdown link replacement with <> but no spaces (#9617) fix(live-codeblock): stabilize react-live transformCode callback, fix editor/preview desync (#9631) fix(cli): output help when no conventional config + no subcommand (#9648) fix CI job (#9604) fix Lint Autofix workflow (#9632) fix(pwa-plugin): upgrade workbox (#9668) fix(create-docusaurus): fix init template code blocks, and little improvements (#9696) fix(theme): allow empty code blocks and live playgrounds (#9704) fix(core): various broken anchor link fixes (#9732) fix: remove old useless mdx typedefs (#9733) fix(theme-common): fix missing code block MagicComments style in Visual Basic (.NET) 16 (#9727) fix(core): conditionally include `hostname` parameter when using… (#9407) fix(create-docusaurus): fix typo in init template sample docs (#9783) fix(mdx-loader): allow spaces before `mdx-code-block` info string (#9776) fix(core): links with target "_blank" should no be checked by the broken link checker (#9788) fix(core): broken links optimization behaves differently than non-optimized logic (#9791)
1 parent 7b1b890 commit 72dcd0d

File tree

112 files changed

+3779
-347
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+3779
-347
lines changed

.eslintrc.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,10 @@ module.exports = {
203203
})),
204204
],
205205
'no-template-curly-in-string': WARNING,
206-
'no-unused-expressions': [WARNING, {allowTaggedTemplates: true}],
206+
'no-unused-expressions': [
207+
WARNING,
208+
{allowTaggedTemplates: true, allowShortCircuit: true},
209+
],
207210
'no-useless-escape': WARNING,
208211
'no-void': [ERROR, {allowAsStatement: true}],
209212
'prefer-destructuring': WARNING,

admin/new.docusaurus.io/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.docusaurus.io",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"private": true,
55
"scripts": {
66
"start": "npx --package netlify-cli netlify dev"

argos/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "argos",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "Argos visual diff tests",
55
"license": "MIT",
66
"private": true,

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.1.0",
2+
"version": "3.1.1",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"useNx": false,

packages/create-docusaurus/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-docusaurus",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "Create Docusaurus apps easily.",
55
"type": "module",
66
"repository": {
@@ -22,8 +22,8 @@
2222
},
2323
"license": "MIT",
2424
"dependencies": {
25-
"@docusaurus/logger": "3.1.0",
26-
"@docusaurus/utils": "3.1.0",
25+
"@docusaurus/logger": "3.1.1",
26+
"@docusaurus/utils": "3.1.1",
2727
"commander": "^5.1.0",
2828
"fs-extra": "^11.1.1",
2929
"lodash": "^4.17.21",

packages/create-docusaurus/templates/classic-typescript/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docusaurus-2-classic-typescript-template",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
@@ -15,18 +15,18 @@
1515
"typecheck": "tsc"
1616
},
1717
"dependencies": {
18-
"@docusaurus/core": "3.1.0",
19-
"@docusaurus/preset-classic": "3.1.0",
18+
"@docusaurus/core": "3.1.1",
19+
"@docusaurus/preset-classic": "3.1.1",
2020
"@mdx-js/react": "^3.0.0",
2121
"clsx": "^2.0.0",
2222
"prism-react-renderer": "^2.3.0",
2323
"react": "^18.0.0",
2424
"react-dom": "^18.0.0"
2525
},
2626
"devDependencies": {
27-
"@docusaurus/module-type-aliases": "3.1.0",
28-
"@docusaurus/tsconfig": "3.1.0",
29-
"@docusaurus/types": "3.1.0",
27+
"@docusaurus/module-type-aliases": "3.1.1",
28+
"@docusaurus/tsconfig": "3.1.1",
29+
"@docusaurus/types": "3.1.1",
3030
"typescript": "~5.2.2"
3131
},
3232
"browserslist": {

packages/create-docusaurus/templates/classic/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docusaurus-2-classic-template",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
@@ -14,17 +14,17 @@
1414
"write-heading-ids": "docusaurus write-heading-ids"
1515
},
1616
"dependencies": {
17-
"@docusaurus/core": "3.1.0",
18-
"@docusaurus/preset-classic": "3.1.0",
17+
"@docusaurus/core": "3.1.1",
18+
"@docusaurus/preset-classic": "3.1.1",
1919
"@mdx-js/react": "^3.0.0",
2020
"clsx": "^2.0.0",
2121
"prism-react-renderer": "^2.3.0",
2222
"react": "^18.0.0",
2323
"react-dom": "^18.0.0"
2424
},
2525
"devDependencies": {
26-
"@docusaurus/module-type-aliases": "3.1.0",
27-
"@docusaurus/types": "3.1.0"
26+
"@docusaurus/module-type-aliases": "3.1.1",
27+
"@docusaurus/types": "3.1.1"
2828
},
2929
"browserslist": {
3030
"production": [

packages/create-docusaurus/templates/shared/docs/tutorial-basics/create-a-blog-post.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ tags: [greetings]
2828

2929
Congratulations, you have made your first post!
3030

31-
Feel free to play around and edit this post as much you like.
31+
Feel free to play around and edit this post as much as you like.
3232
```
3333

3434
A new blog post is now available at [http://localhost:3000/blog/greetings](http://localhost:3000/blog/greetings).

packages/docusaurus-cssnano-preset/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@docusaurus/cssnano-preset",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "Advanced cssnano preset for maximum optimization.",
55
"main": "lib/index.js",
66
"license": "MIT",

packages/docusaurus-logger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@docusaurus/logger",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "An encapsulated logger for semantically formatting console messages.",
55
"main": "./lib/index.js",
66
"repository": {

0 commit comments

Comments
 (0)