mirror of
https://github.com/opentofu/opentofu.org.git
synced 2026-01-11 19:56:26 +00:00
1.9.0 release updates (#347)
* Release blog post Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com> * Fixing graphs Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com> * Fixed registry graph Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com> * Deprecation notice Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com> * Blog post preview Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com> * Repo update Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com> * Temporarily removing blog post Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com> * Removing announcement bar Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com> --------- Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com>
This commit is contained in:
parent
08a91a4c4d
commit
b6766f07e2
15 changed files with 19018 additions and 15 deletions
4
.gitmodules
vendored
4
.gitmodules
vendored
|
|
@ -14,3 +14,7 @@
|
|||
path = opentofu-repo/v1.8
|
||||
url = https://github.com/opentofu/opentofu
|
||||
branch = v1.8
|
||||
[submodule "opentofu-repo/v1.9"]
|
||||
path = opentofu-repo/v1.9
|
||||
url = https://github.com/opentofu/opentofu
|
||||
branch = v1.9
|
||||
|
|
@ -11,7 +11,7 @@ Since the [1.7 release](/blog/opentofu-1-7-0), the OpenTofu community and core t
|
|||
- Since Terraform doesn't support these new language features, [OpenTofu now supports the `.tofu` file extension](/docs/intro/whats-new/#override-files-for-opentofu-keeping-compatibility). When a file with the `.tofu` extension is present, OpenTofu will ignore the identically named `.tf` file. Using this new file extension, module authors can use the new features of OpenTofu and still keep older code around for compatibility.
|
||||
- You can now use [provider mocking](/docs/intro/whats-new/#provider-mocking-in-tofu-test) as well as [resource overrides](/docs/intro/whats-new/#resource-overrides-in-tofu-test) with `tofu test`. This allows for more flexible testing similar to traditional software testing methods.
|
||||
|
||||
You can find the full list of improvements and changes on the [What's new in OpenTofu 1.8?](/docs/intro/whats-new/) page.
|
||||
You can find the full list of improvements and changes on the [What's new in OpenTofu 1.8?](/docs/v1.8/intro/whats-new/) page.
|
||||
|
||||
## Growth continues: ~30% increase in registry traffic
|
||||
|
||||
|
|
|
|||
|
|
@ -101,13 +101,12 @@ const config: Config = {
|
|||
},
|
||||
docs: {
|
||||
includeCurrentVersion: false,
|
||||
lastVersion: 'v1.8',
|
||||
lastVersion: 'v1.9',
|
||||
docVersionRootComponent: "@theme/DocVersionRoot",
|
||||
versions: {
|
||||
"v1.6": {
|
||||
label: "1.6.x",
|
||||
path: "v1.6",
|
||||
banner: "none",
|
||||
},
|
||||
"v1.7": {
|
||||
label: "1.7.x",
|
||||
|
|
@ -116,6 +115,11 @@ const config: Config = {
|
|||
},
|
||||
"v1.8": {
|
||||
label: "1.8.x",
|
||||
path: "v1.8",
|
||||
banner: "none",
|
||||
},
|
||||
"v1.9": {
|
||||
label: "1.9.x",
|
||||
path: "",
|
||||
},
|
||||
"main": {
|
||||
|
|
@ -205,14 +209,6 @@ const config: Config = {
|
|||
autoCollapseCategories: true,
|
||||
},
|
||||
},
|
||||
announcementBar: {
|
||||
id: "opentofu-ga",
|
||||
content:
|
||||
'OpenTofu 1.9.0-beta1 is released! <a href="/blog/opentofu-1-9-0-beta1/">Check it out here.</a>',
|
||||
backgroundColor: "#ffda18",
|
||||
textColor: "#1b1d20",
|
||||
isCloseable: false,
|
||||
},
|
||||
algolia: {
|
||||
appId: "0AUNALFPJF",
|
||||
apiKey: "5a83e1af5126db1360bdc84bfefb20b8",
|
||||
|
|
@ -277,9 +273,13 @@ const config: Config = {
|
|||
position: "left",
|
||||
items: [
|
||||
{
|
||||
label: "v1.8.x (current)",
|
||||
label: "v1.9.x (current)",
|
||||
href: "/docs/"
|
||||
},
|
||||
{
|
||||
label: "v1.8.x",
|
||||
href: "/docs/v1.8/"
|
||||
},
|
||||
{
|
||||
label: "v1.7.x",
|
||||
href: "/docs/v1.7/"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit dd2c75fe7f738a766452d0a79b9a3ae7d275bf1a
|
||||
Subproject commit f83849e95a7219ab6675a875d9e4ba4cefe0bfa3
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit e3c4f2846f9879694ae7610c2b5f1ed765321962
|
||||
Subproject commit fca884e4fc0011c6c0dca13f512ff184b297ad57
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 9b2833f786b6d95193e5283f99ddf7002b7d7a28
|
||||
Subproject commit ac48a80b9939fbd281c247092afe1cd262282174
|
||||
1
opentofu-repo/v1.9
Submodule
1
opentofu-repo/v1.9
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 0d57aa4f35998bf2847ac3acb343f9e16b5c2995
|
||||
BIN
static/img/blog/jetbrains-opentofu-support.png
Normal file
BIN
static/img/blog/jetbrains-opentofu-support.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 151 KiB |
BIN
static/img/blog/opentofu-1-9-0.png
Normal file
BIN
static/img/blog/opentofu-1-9-0.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 733 KiB |
6501
static/img/blog/opentofu-downloads-by-os-january-2025.svg
Normal file
6501
static/img/blog/opentofu-downloads-by-os-january-2025.svg
Normal file
File diff suppressed because it is too large
Load diff
|
After Width: | Height: | Size: 447 KiB |
6116
static/img/blog/opentofu-downloads-january-2025.svg
Normal file
6116
static/img/blog/opentofu-downloads-january-2025.svg
Normal file
File diff suppressed because it is too large
Load diff
|
After Width: | Height: | Size: 434 KiB |
6371
static/img/blog/opentofu-registry-january-2025.svg
Normal file
6371
static/img/blog/opentofu-registry-january-2025.svg
Normal file
File diff suppressed because it is too large
Load diff
|
After Width: | Height: | Size: 441 KiB |
1
versioned_docs/version-v1.9
Symbolic link
1
versioned_docs/version-v1.9
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../opentofu-repo/v1.9/website/docs
|
||||
8
versioned_sidebars/version-v1.9-sidebars.json
Normal file
8
versioned_sidebars/version-v1.9-sidebars.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"docs": [
|
||||
{
|
||||
"type": "autogenerated",
|
||||
"dirName": "."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
[
|
||||
"v1.9",
|
||||
"v1.8",
|
||||
"v1.7",
|
||||
"v1.6",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue