Skip to content

Commit

Permalink
Merge pull request #4264 from EnterpriseDB/release/2023-06-19
Browse files Browse the repository at this point in the history
Release: 2023-06-19
  • Loading branch information
drothery-edb authored Jun 19, 2023
2 parents 8c53173 + 568c818 commit cfe042b
Show file tree
Hide file tree
Showing 14 changed files with 294 additions and 416 deletions.
1 change: 1 addition & 0 deletions docker/docker-compose.quickstart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ services:
- ../scripts:/app/scripts:ro
- ../src:/app/src:ro
- ../static:/app/static:ro
- ../tools/automation:/app/tools/automation
- ../build-sources.json:/app/build-sources.json:ro
- ../gatsby-node.js:/app/gatsby-node.js:ro
- ../gatsby-config.js:/app/gatsby-config.js:ro
Expand Down
14 changes: 7 additions & 7 deletions install_template/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion install_template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"dependencies": {
"nunjucks": "^3.2.4",
"prettier": "^2.8.8",
"yaml": "^2.2.2"
"yaml": "^2.3.1"
}
}
364 changes: 130 additions & 234 deletions package-lock.json

Large diffs are not rendered by default.

25 changes: 14 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
"update-icons": "node scripts/createIconNames.js && prettier --write src/components/icon/iconNames.js"
},
"dependencies": {
"@enterprisedb/icons": "^1.24.0",
"@enterprisedb/icons": "^1.25.1",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"algoliasearch": "^4.17.0",
"algoliasearch": "^4.17.2",
"balance-text": "^3.3.1",
"bl": "5.0.0",
"bootstrap": "^4.6.2",
"gatsby": "^4.25.6",
"gatsby": "^4.25.7",
"gatsby-cli": "^4.25.0",
"gatsby-plugin-algolia": "^0.26.0",
"gatsby-plugin-catch-links": "^4.25.0",
Expand All @@ -68,17 +68,17 @@
"graceful-fs": "^4.2.11",
"hast-util-to-string": "^1.0.4",
"is-absolute-url": "^4.0.1",
"markdown-to-jsx": "^7.2.0",
"markdown-to-jsx": "^7.2.1",
"mdast-util-to-string": "^2.0.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-bootstrap": "^1.6.6",
"react-bootstrap": "^1.6.7",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-instantsearch-dom": "^6.39.1",
"react-instantsearch-dom": "^6.40.0",
"rehype-parse": "^7.0.1",
"remark-admonitions": "github:josh-heyer/remark-admonitions",
"sass": "^1.62.0",
"sass": "^1.63.4",
"truncate-utf8-bytes": "^1.0.2",
"unist-util-visit-parents": "^3.1.1"
},
Expand All @@ -87,7 +87,7 @@
"hast-util-is-element": "^2.1.3",
"hast-util-to-text": "^3.1.2",
"husky": "^7.0.4",
"prettier": "^2.8.7",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"react-refresh": "^0.14.0",
"rehype-format": "^3.1.0",
Expand All @@ -100,9 +100,12 @@
"to-vfile": "^6.1.0"
},
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"trim": ">=0.0.3"
"react": "^18.2.0",
"react-dom": "^18.2.0",
"trim": ">=0.0.3",
"json5": ">=1.0.2",
"loader-utils": ">=1.4.1",
"nth-check": ">=2.0.1"
},
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ You can create faraway replicas in different active regions in your cloud. There
- 1–25 weeks
- 1–6 months

1. To turn on the ability to log in to Postgres using your AWS IAM credentials, enable Identity and Access Management (IAM) Authentication. See [Authentication](/biganimal/latest/getting_started/creating_a_cluster/#authentication).
1. To turn on the ability to log in to Postgres using your AWS IAM credentials, enable Identity and Access Management (IAM) Authentication. See [Access](/biganimal/latest/getting_started/creating_a_cluster/#access).

1. Select **Create Replica**.

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ toml==0.10.2
# via pytest
tomli==1.0.4
# via pep517
wheel==0.36.2
wheel==0.38.1
# via pip-tools

# The following packages are considered to be unsafe in a requirements file:
Expand Down
104 changes: 46 additions & 58 deletions scripts/fileProcessor/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions scripts/fileProcessor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"author": "",
"license": "ISC",
"dependencies": {
"arg": "^5.0.1",
"globby": "^12.0.1",
"arg": "^5.0.2",
"globby": "^12.2.0",
"is-absolute-url": "^4.0.1",
"js-yaml": "^4.1.0",
"remark-admonitions": "github:josh-heyer/remark-admonitions",
Expand All @@ -23,6 +23,9 @@
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"prettier": "^2.3.2"
"prettier": "^2.8.8"
},
"overrides": {
"trim": ">=0.0.3"
}
}
Loading

2 comments on commit cfe042b

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://edb-docs.netlify.app as production
πŸš€ Deployed on https://6490c57bbb4a66359c46acf6--edb-docs.netlify.app

Please sign in to comment.